[
  {
    "path": ".gitignore",
    "content": "*.py[cod]\n\n# C extensions\n*.so\n\n# Packages\n*.egg\n*.egg-info\ndist\nbuild\neggs\nparts\nbin\nvar\nsdist\ndevelop-eggs\n.installed.cfg\nlib\nlib64\n\n# Installer logs\npip-log.txt\n\n# Unit test / coverage reports\n.coverage\n.tox\nnosetests.xml\n\n# Translations\n*.mo\n\n# Mr Developer\n.mr.developer.cfg\n.project\n.cproject\ncmake_install.cmake\n.pydevproject\n*.swp\nCATKIN_IGNORE\ncatkin\ncatkin_generated\ndevel\n\ncpp\ndocs\nmsg_gen\nsrv_gen\n*.smoketest\n*.cfgc\n*_msgs/src/\n*/src/**/cfg\n*/*/src/**/*\n\n*.pyc\n"
  },
  {
    "path": ".travis.yml",
    "content": "# Generic .travis.yml file for running continuous integration on Travis-CI for\n# any ROS package.\n#\n# Available here:\n#   - http://felixduvallet.github.io/ros-travis-integration\n#   - https://github.com/felixduvallet/ros-travis-integration\n#\n# This installs ROS on a clean Travis-CI virtual machine, creates a ROS\n# workspace, resolves all listed dependencies, and sets environment variables\n# (setup.bash). Then, it compiles the entire ROS workspace (ensuring there are\n# no compilation errors), and runs all the tests. If any of the compilation/test\n# phases fail, the build is marked as a failure.\n#\n# We handle two types of package dependencies specified in the package manifest:\n#   - system dependencies that can be installed using `rosdep`, including other\n#     ROS packages and system libraries. These dependencies must be known to\n#     `rosdistro` and get installed using apt-get.\n#   - package dependencies that must be checked out from source. These are handled by\n#     `wstool`, and should be listed in a file named dependencies.rosinstall.\n#\n# There are two variables you may want to change:\n#   - ROS_DISTRO (default is indigo). Note that packages must be available for\n#     ubuntu 14.04 trusty.\n#   - ROSINSTALL_FILE (default is dependencies.rosinstall inside the repo\n#     root). This should list all necessary repositories in wstool format (see\n#     the ros wiki). If the file does not exists then nothing happens.\n#\n# See the README.md for more information.\n#\n# Author: Felix Duvallet <felixd@gmail.com>\n\n# NOTE: The build lifecycle on Travis.ci is something like this:\n#    before_install\n#    install\n#    before_script\n#    script\n#    after_success or after_failure\n#    after_script\n#    OPTIONAL before_deploy\n#    OPTIONAL deploy\n#    OPTIONAL after_deploy\n\n################################################################################\n\n# Use ubuntu trusty (14.04) with sudo privileges.\ndist: trusty\nsudo: required\nlanguage:\n  - generic\ncache:\n  - apt\n\n# Configuration variables. All variables are global now, but this can be used to\n# trigger a build matrix for different ROS distributions if desired.\nenv:\n  global:\n    - ROS_DISTRO=indigo\n    - ROS_CI_DESKTOP=\"`lsb_release -cs`\"  # e.g. [precise|trusty|...]\n    - CI_SOURCE_PATH=$(pwd)\n    - ROSINSTALL_FILE=$CI_SOURCE_PATH/dependencies.rosinstall\n    - CATKIN_OPTIONS=$CI_SOURCE_PATH/catkin.options\n    - ROS_PARALLEL_JOBS='-j8 -l6'\n    # Set the python path manually to include /usr/-/python2.7/dist-packages\n    # as this is where apt-get installs python packages.\n    - PYTHONPATH=$PYTHONPATH:/usr/lib/python2.7/dist-packages:/usr/local/lib/python2.7/dist-packages\n\n################################################################################\n\n# Install system dependencies, namely a very barebones ROS setup.\nbefore_install:\n  - sudo sh -c \"echo \\\"deb http://packages.ros.org/ros/ubuntu $ROS_CI_DESKTOP main\\\" > /etc/apt/sources.list.d/ros-latest.list\"\n  - sudo apt-key adv --keyserver hkp://ha.pool.sks-keyservers.net:80 --recv-key 421C365BD9FF1F717815A3895523BAEEB01FA116\n  - sudo apt-get update -qq\n  - sudo apt-get install -y python-catkin-pkg python-rosdep python-wstool ros-$ROS_DISTRO-catkin\n  - source /opt/ros/$ROS_DISTRO/setup.bash\n  # Prepare rosdep to install dependencies.\n  - sudo rosdep init\n  - rosdep update\n\n# Create a catkin workspace with the package under integration.\ninstall:\n  - mkdir -p ~/catkin_ws/src\n  - cd ~/catkin_ws/src\n  - catkin_init_workspace\n  # Create the devel/setup.bash (run catkin_make with an empty workspace) and\n  # source it to set the path variables.\n  - cd ~/catkin_ws\n  - catkin_make\n  - source devel/setup.bash\n  # Add the package under integration to the workspace using a symlink.\n  - cd ~/catkin_ws/src\n  - ln -s $CI_SOURCE_PATH .\n\n# Install all dependencies, using wstool first and rosdep second.\n# wstool looks for a ROSINSTALL_FILE defined in the environment variables.\nbefore_script:\n  # source dependencies: install using wstool.\n  - cd ~/catkin_ws/src\n  - wstool init\n  - if [[ -f $ROSINSTALL_FILE ]] ; then wstool merge $ROSINSTALL_FILE ; fi\n  - wstool up\n  # package depdencies: install using rosdep.\n  - cd ~/catkin_ws\n  - rosdep install -y --from-paths src --ignore-src --rosdistro $ROS_DISTRO\n\n# Compile and test (mark the build as failed if any step fails). If the\n# CATKIN_OPTIONS file exists, use it as an argument to catkin_make, for example\n# to blacklist certain packages.\n#\n# NOTE on testing: `catkin_make run_tests` will show the output of the tests\n# (gtest, nosetest, etc..) but always returns 0 (success) even if a test\n# fails. Running `catkin_test_results` aggregates all the results and returns\n# non-zero when a test fails (which notifies Travis the build failed).\nscript:\n  - source /opt/ros/$ROS_DISTRO/setup.bash\n  - cd ~/catkin_ws\n  - catkin_make $( [ -f $CATKIN_OPTIONS ] && cat $CATKIN_OPTIONS )\n  # Run the tests, ensuring the path is set correctly.\n  - source devel/setup.bash\n  - catkin_make run_tests && catkin_test_results\n"
  },
  {
    "path": ".vscode/settings.json",
    "content": "{\n    \"python.linting.pylintEnabled\": true,\n    \"python.linting.enabled\": true\n}"
  },
  {
    "path": "BUILD-DOCKER-IMAGE.sh",
    "content": "#!/bin/bash\n# Generates a docker image with the relevant settings for the DOCKER_PROJECT.\n# Context-sensitive behaviour: If the <user> parameter \"gitlab-ci\" is used, \n# the script builds the image without trying to download it.\n#\n# Usage: ./BUILD-DOCKER-IMAGE.bash <optional: user>\n#\n# @param <user> [optional parameter] for docker container naming during spin-up and to set different behavior.\n#                  Default value: $USER - the image is pulled from repo, or built as fallback.\n#                  If <user> is \"gitlab-ci\" the image is directly build from scratch - as if done in gitlab-ci.\n################################################################################\n\n# Set the Docker container name from a project name (first argument).\n# If no argument is given, use the current user name as the project name.\nDOCKER_PROJECT=$1\nif [ -z \"${DOCKER_PROJECT}\" ]; then\n  DOCKER_PROJECT=${USER}\nfi\nDOCKER_CONTAINER=\"${DOCKER_PROJECT}_ros_ur_1\"\necho \"$0: DOCKER_PROJECT=${DOCKER_PROJECT}\"\necho \"$0: DOCKER_CONTAINER=${DOCKER_CONTAINER}\"\n\n# Stop and remove the Docker container.\nEXISTING_DOCKER_CONTAINER_ID=`docker ps -aq -f name=${DOCKER_CONTAINER}`\nif [ ! -z \"${EXISTING_DOCKER_CONTAINER_ID}\" ]; then\n  echo \"Stop the container ${DOCKER_CONTAINER} with ID: ${EXISTING_DOCKER_CONTAINER_ID}.\"\n  docker stop ${EXISTING_DOCKER_CONTAINER_ID}\n  echo \"Remove the container ${DOCKER_CONTAINER} with ID: ${EXISTING_DOCKER_CONTAINER_ID}.\"\n  docker rm ${EXISTING_DOCKER_CONTAINER_ID}\nfi\n\ndocker-compose -p ${DOCKER_PROJECT} -f ./docker/docker-compose.yml build\n"
  },
  {
    "path": "LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2018-2023 Cristian Beltran\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "Universal Robot UR/URe\n===\n<img src=\"https://github.com/cambel/ur3/blob/noetic-devel/wiki/ur3e.gif?raw=true\" alt=\"UR3e & Robotiq Hand-e\" width=\"250\"><img src=\"https://github.com/cambel/ur3/blob/noetic-devel/wiki/ur3.gif?raw=true\" alt=\"UR3 & Robotiq 85\" width=\"250\">\n\n\nCustom ROS packages for the UR3 Robot with a gripper Robotiq 85 and the UR3e robot with a gripper Robotiq Hand-e. \nTested on ROS Noetic Ubuntu 20.04 with Python 3.8.\n\nFor ROS Melodic see the `melodic-devel` branch.\n\n## Installation \n\n### [With docker](https://github.com/cambel/ur3/wiki/Install-with-Docker)\n\n### [Compile from source](https://github.com/cambel/ur3/wiki/Compile-from-source)\n\n## Examples\n\n### Visualization of Universal Robot in RViz\n\nTo visualize the model of the robot with a gripper, launch the following:\n  ```\n   roslaunch ur_gripper_description display_with_gripper_hande.launch ur_robot:=ur5e\n  ```\nYou can then use the sliders to change the joint values and the gripper values. \nChange the value of ur_robot to any other valid robot (ur3e, ur5e, ...)\n\n### Simulation in Gazebo 9\n<img src=\"https://github.com/cambel/ur3/blob/noetic-devel/wiki/ur3-e.png?raw=true\" width=\"500\">\n\nTo simulate the robot launch the following:\n  ```\n   roslaunch ur_gripper_gazebo ur_gripper_85_cubes.launch ur_robot:=ur3 grasp_plugin:=1\n  ```\nor using ur3e:\n  ```\n   roslaunch ur_gripper_gazebo ur_gripper_hande_cubes.launch ur_robot:=ur3e grasp_plugin:=1\n  ```\n\nYou can then send commands to the joints or to the gripper.\n\nAn example of sending joints values to the robot can be executed as follows:\n  ```\n   rosrun ur_control sim_controller_examples.py -m\n  ```\nTo change the values of the joints, the file `sim_controller_examples.py` must be modified.\n\nSimilarly, the script include examples to control the robot's end-effector position, gripper and an example of performing grasping.\nExecute the following command to see the available examples.\n  ```\n   rosrun ur_control sim_controller_examples.py --help\n  ```\n\nFor testing the grasping examples you need to explicitly specify that the gripper is going to be loaded, e.g.,\n  ```\n   rosrun ur_control sim_controller_examples.py --gripper --grasp_naive\n  ```\n\nThe grasp_plugin example uses this [plugin](https://github.com/pal-robotics/gazebo_ros_link_attacher), and requires gazebo to be launched with the grasp_plugin parameter as `True`.\n\nAn easy way to control the robot using the keyboard can be found in the script:\n  ```\n   rosrun ur_control joint_position_keyboard.py\n  ```\nPress SPACE to get a list of all valid commands to control either each independent joint or the end effector position x,y,z and rotations.\nTo have access to the gripper controller include the option `--gripper`\n\nAnother option of easy control is using `rqt`\n\n## MoveIt\nTo test the MoveIt configuration with any UR/URe robot, start one of the gazebo environments, such as:\n```\nroslaunch ur_gripper_gazebo ur_gripper_hande_cubes.launch ur_robot:=ur3e grasp_plugin:=1\n```\n\nThen load the MoveIt configuration\n```\nroslaunch ur_hande_moveit_config start_moveit.launch\n```\n\nThen execute the tutorial\n```\nrosrun ur_control moveit_tutorial.py --tutorial\n```\n"
  },
  {
    "path": "RUN-DOCKER.sh",
    "content": "#!/bin/bash\n\n################################################################################\nexport DOCKER_RUNTIME=nvidia\n\n# Set the Docker container name from a project name (first argument).\n# If no argument is given, use the current user name as the project name.\nPROJECT=$1\nif [ -z \"${PROJECT}\" ]; then\n  PROJECT=${USER}\nfi\nCONTAINER=\"${PROJECT}_ros_ur_1\"\necho \"$0: PROJECT=${PROJECT}\"\necho \"$0: CONTAINER=${CONTAINER}\"\n\n# Run the Docker container in the background.\n# Any changes made to './docker/docker-compose.yml' will recreate and overwrite the container.\ndocker-compose -p ${PROJECT} -f ./docker/docker-compose.yml up -d\n\n################################################################################\n\n# Display GUI through X Server by granting full access to any external client.\nxhost +\n\n################################################################################\n\n# Enter the Docker container with a Bash shell (with or without a custom).\ndocker exec -it ${CONTAINER} bash\n"
  },
  {
    "path": "dependencies.rosinstall",
    "content": "- git:\n    local-name: robotiq\n    uri: https://github.com/cambel/robotiq.git\n    version: noetic-devel\n- git:  \n    local-name: gazebo_ros_link_attacher\n    uri: https://github.com/pal-robotics/gazebo_ros_link_attacher.git\n    version: melodic-devel\n- git:  \n    local-name: robotiq_urcap_control\n    uri: https://github.com/cambel/ros_robotiq_urcap_control.git\n    version: master\n- git:  \n    local-name: Universal_Robots_ROS_Driver\n    uri: https://github.com/UniversalRobots/Universal_Robots_ROS_Driver.git\n    version: master\n- git:  \n    local-name: trac_ik\n    uri: https://bitbucket.org/traclabs/trac_ik.git\n    version: master\n- git:  \n    local-name: universal_robot\n    uri: https://github.com/fmauch/universal_robot.git\n    version: calibration_devel\n- git:\n    local-name: ur_msgs\n    uri:  https://github.com/ros-industrial/ur_msgs.git\n    version: melodic-devel"
  },
  {
    "path": "docker/Dockerfile",
    "content": "# Docker for ur3 repo\n# ros-noetic-base, gazebo11, python3 libraries \n# Python3 3 version\n\nFROM osrf/ros:noetic-desktop-full\nLABEL maintainer Cristian Beltran \"beltran@hlab.sys.es.osaka-u.ac.jp\"\n\nENV ROS_DISTRO noetic\n\n# install universal robot ros packages\nRUN apt-get update && apt-get install -y \\\n    # ROS utils \n    ros-$ROS_DISTRO-gazebo-ros-pkgs \\\n    ros-$ROS_DISTRO-spacenav-node \\\n    ros-$ROS_DISTRO-rqt-common-plugins \\\n    ros-$ROS_DISTRO-rqt-joint-trajectory-controller \\\n    ros-$ROS_DISTRO-rqt-tf-tree \\\n    ros-$ROS_DISTRO-rqt-multiplot \\\n    ros-$ROS_DISTRO-moveit \\\n    # install catkin\n    ros-$ROS_DISTRO-catkin \\\n    python3-catkin-tools \\\n    # utils\n    git \\\n    locate \\\n    aptitude \\\n    vim htop \\\n    curl wget \\\n    spacenavd \\\n    python-is-python3 \\\n    python3-pip \\\n    && rm -rf /var/lib/apt/lists/*\n\n### Ros Workspace ###\n# Set up the workspace\nRUN /bin/bash -c \"source /opt/ros/$ROS_DISTRO/setup.bash \\\n               && mkdir -p ~/ros_ws/src \\\n               && cd ~/ros_ws/src \\\n               && git clone https://github.com/cambel/ur3.git ros-ur -b noetic-devel\"\n\n# Updating ROSDEP and installing dependencies\nRUN cd ~/ros_ws \\\n    && rosinstall ~/ros_ws/src /opt/ros/$ROS_DISTRO src/ros-ur/dependencies.rosinstall \\\n    && apt-get update \\\n    && rosdep fix-permissions \\\n    && rosdep update \\\n    && rosdep install --from-paths src --ignore-src --rosdistro=$ROS_DISTRO -y \\\n    && rm -rf /var/lib/apt/lists/*\n\nENV PYTHONIOENCODING UTF-8\n\n## Python3 libraries ##\nRUN python3 -m pip install pip --upgrade && \\\n    pip install matplotlib==2.2.3 spicy protobuf pyyaml pyquaternion rospkg \\\n    lxml tqdm catkin-pkg empy PyVirtualDisplay defusedxml gym psutil pyprind\n\n# # Compiling ros workspace\nRUN /bin/bash -c \"source /opt/ros/$ROS_DISTRO/setup.bash \\\n               && cd ~/ros_ws/ \\\n               && rm -rf build \\\n               && catkin build\"\n\n################################################\n# Custom python3 libs\n################################################\n# ur_ikfast\n# RUN /bin/bash -c \"cd ~/ \\\n#                && mkdir pylibs && cd pylibs \\\n#                && git clone https://github.com/cambel/ur_ikfast.git \\\n#                && cd ur_ikfast && pip install -e .\"\n\n# Download gazebo models only once\nRUN mkdir -p ~/.gazebo\nRUN git clone https://github.com/osrf/gazebo_models ~/.gazebo/models\n\nENV NVIDIA_VISIBLE_DEVICES ${NVIDIA_VISIBLE_DEVICES:-all}\nENV NVIDIA_DRIVER_CAPABILITIES ${NVIDIA_DRIVER_CAPABILITIES:+$NVIDIA_DRIVER_CAPABILITIES,}graphics\n\n# setup environment\nEXPOSE 11345\n\nRUN echo 'source /opt/ros/$ROS_DISTRO/setup.bash' >> ~/.bashrc\nRUN echo 'source ~/ros_ws/devel/setup.bash' >> ~/.bashrc\n\nRUN echo 'source /usr/share/gazebo/setup.sh' >> ~/.bashrc\nRUN echo 'export GAZEBO_RESOURCE_PATH=$GAZEBO_RESOURCE_PATH:~/ros_ws/src/ros-universal-robots/ur_gripper_gazebo/models/' >> ~/.bashrc\n"
  },
  {
    "path": "docker/bashrc",
    "content": ""
  },
  {
    "path": "docker/build_container.sh",
    "content": "#!/bin/bash\n# Generates a docker image with the relevant settings for the DOCKER_PROJECT.\n# Context-sensitive behaviour: If the <user> parameter \"gitlab-ci\" is used, \n# the script builds the image without trying to download it.\n#\n# Usage: ./BUILD-DOCKER-IMAGE.bash <optional: user>\n#\n# @param <user> [optional parameter] for docker container naming during spin-up and to set different behavior.\n#                  Default value: $USER - the image is pulled from repo, or built as fallback.\n#                  If <user> is \"gitlab-ci\" the image is directly build from scratch - as if done in gitlab-ci.\n################################################################################\n\n# Set the Docker container name from a project name (first argument).\n# If no argument is given, use the current user name as the project name.\nDOCKER_PROJECT=$1\nif [ -z \"${DOCKER_PROJECT}\" ]; then\n  DOCKER_PROJECT=${USER}\nfi\nDOCKER_CONTAINER=\"${PROJECT}-ros_ur3-1\"\necho \"$0: DOCKER_PROJECT=${DOCKER_PROJECT}\"\necho \"$0: DOCKER_CONTAINER=${DOCKER_CONTAINER}\"\n\n# Stop and remove the Docker container.\nEXISTING_DOCKER_CONTAINER_ID=`docker ps -aq -f name=${DOCKER_CONTAINER}`\nif [ ! -z \"${EXISTING_DOCKER_CONTAINER_ID}\" ]; then\n  echo \"Stop the container ${DOCKER_CONTAINER} with ID: ${EXISTING_DOCKER_CONTAINER_ID}.\"\n  docker stop ${EXISTING_DOCKER_CONTAINER_ID}\n  echo \"Remove the container ${DOCKER_CONTAINER} with ID: ${EXISTING_DOCKER_CONTAINER_ID}.\"\n  docker rm ${EXISTING_DOCKER_CONTAINER_ID}\nfi\n\ndocker compose -p ${DOCKER_PROJECT} -f ./docker-compose.yml build\n"
  },
  {
    "path": "docker/docker-compose.yml",
    "content": "version: \"2.4\"\n\n################################################################################\n\nservices:\n  ros_ur:\n    hostname: localhost\n    runtime: ${DOCKER_RUNTIME}\n    privileged: true\n    working_dir: /root/\n    environment:\n      # Pass host user information.\n      - HOST_USER=${USER}\n      - HOST_UID=1000\n      - HOST_GID=1000\n      # Display X Server GUI.\n      - DISPLAY\n      - QT_X11_NO_MITSHM=1\n      # Configure Nvidia Docker interface.\n      - NVIDIA_VISIBLE_DEVICES=all\n      - NVIDIA_DRIVER_CAPABILITIES=all\n      - NVIDIA_REQUIRE_CUDA=cuda>=9.0\n      - DOCKER_RUNTIME=${DOCKER_RUNTIME}\n      # Needs to be explicitly define\n      - ROS_HOSTNAME=localhost\n    image: ros-ur:noetic\n    tty: true\n    build:\n      context: ../\n      dockerfile: ./docker/Dockerfile\n      args:\n        - DOCKERFILE_COMMIT_SHORT_SHA\n    volumes:\n      # Map ROS workspace folders.\n      - ../:/root/ros_ws/src/ros-ur\n      # Grant display access to X Server.\n      - /tmp/.X11-unix:/tmp/.X11-unix\n      # Grant bus access to FlexBE App.\n      - /var/run/dbus/system_bus_socket:/var/run/dbus/system_bus_socket\n      # Grant access to serial usb ports for u2d2\n      - /dev/:/dev/\n    network_mode: host\n    command: tail -f /dev/null\n\n"
  },
  {
    "path": "docker/launch_container.sh",
    "content": "#!/bin/bash\n\n################################################################################\n\n# Set the Docker container name from a project name (first argument).\n# If no argument is given, use the current user name as the project name.\nPROJECT=$1\nif [ -z \"${PROJECT}\" ]; then\n  PROJECT=${USER}\nfi\nCONTAINER=\"${PROJECT}-ros_ur3-1\"\necho \"$0: PROJECT=${PROJECT}\"\necho \"$0: CONTAINER=${CONTAINER}\"\n\n# Run the Docker container in the background.\n# Any changes made to './docker/docker-compose.yml' will recreate and overwrite the container.\ndocker compose -p ${PROJECT} -f ./docker-compose.yml up -d\n\n################################################################################\n\n# Display GUI through X Server by granting full access to any external client.\nxhost +\n\n################################################################################\n\n# Enter the Docker container with a Bash shell (with or without a custom).\ndocker exec -it ${CONTAINER} bash"
  },
  {
    "path": "ur.code-workspace",
    "content": "{\n\t\"folders\": [\n\t\t{\n\t\t\t\"path\": \".\"\n\t\t},\n\t],\n\t\"settings\": {\n\t\t\"files.insertFinalNewline\": true,\n\t\t\"files.exclude\": {\n\t\t\t\"**/**.pyc\": true,\n\t\t\t\"**/build\": true,\n\t\t\t\"**/devel\": true,\n\t\t\t\"**/logs\": true,\n\t\t\t\"**/.catkin_tools\": true,\n\t\t},\n\t\t\"cSpell.words\": [\n\t\t\t\"interp\",\n\t\t\t\"mtype\",\n\t\t\t\"openai\",\n\t\t\t\"pyquaternion\",\n\t\t\t\"rospy\",\n\t\t\t\"spalg\"\n\t\t],\n\t\t\"python.analysis.extraPaths\": [\n\t\t\t\"./ur_control/src\",\n\t\t\t\"./ur_gripper_gazebo/src\",\n\t\t\t\"./ur3e_openai/src\",\n\t\t\t\"./ur3e_rl/src\",\n\t\t],\n\t\t\"python.analysis.autoImportCompletions\": true,\n\t\t\"python.autoComplete.extraPaths\": [\n\t\t\t\"/root/ros_ws/devel/lib/python3/dist-packages\",\n\t\t\t\"/opt/ros/noetic/lib/python3/dist-packages\",\n\t\t],\n\t\t\"[python]\": {\n\t\t\t\"editor.defaultFormatter\": \"ms-python.autopep8\"\n\t\t},\n\t\t\"autopep8.args\": [\n\t\t\t\"--max-line-length\",\n\t\t\t\"200\",\n\t\t\t\"--experimental\"\n\t\t],\n\t}\n}\n"
  },
  {
    "path": "ur_control/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.1.3)\nproject(ur_control)\n\nfind_package(catkin REQUIRED COMPONENTS\n  control_msgs\n  controller_manager\n  effort_controllers\n  gripper_action_controller\n  joint_state_controller\n  joint_trajectory_controller\n  std_srvs\n  geometry_msgs\n  robot_state_publisher\n  sensor_msgs\n  trajectory_msgs\n  trac_ik_python\n)\n\ncatkin_python_setup()\n\ncatkin_package()\n\ninclude_directories(${catkin_INCLUDE_DIRS})\n"
  },
  {
    "path": "ur_control/config/gripper_controller.yaml",
    "content": "# Gripper controller\ngripper_controller:\n    type: position_controllers/GripperActionController\n    gripper_type: '85'\n    joint: finger_joint\n    action_monitor_rate: 20\n    goal_tolerance: 0.002\n    max_effort: 100\n    stall_velocity_threshold: 0.001\n    stall_timeout: 1.0"
  },
  {
    "path": "ur_control/config/ur_controllers.yaml",
    "content": "# Joint state controller\njoint_state_controller:\n  publish_rate: 125\n  type: joint_state_controller/JointStateController\n\nscaled_pos_joint_traj_controller:\n  type: position_controllers/JointTrajectoryController\n  joints:\n     - shoulder_pan_joint\n     - shoulder_lift_joint\n     - elbow_joint\n     - wrist_1_joint\n     - wrist_2_joint\n     - wrist_3_joint\n  constraints:\n    # Default is 0\n    goal_time: 0.1\n    # Default is 0.01\n    stopped_velocity_tolerance: 0.01\n    shoulder_pan_joint:\n      trajectory: 0\n      goal: 0.01\n    shoulder_lift_joint:\n      trajectory: 0\n      goal: 0.01\n    elbow_joint:\n      trajectory: 0\n      goal: 0.01\n    wrist_1_joint:\n      trajectory: 0\n      goal: 0.01\n    wrist_2_joint:\n      trajectory: 0\n      goal: 0.01\n    wrist_3_joint:\n      trajectory: 0\n      goal: 0.01\n\n#Position controller\nshoulder_pan_joint:\n  type: position_controllers/JointPositionController\n  joint: shoulder_pan_joint\nshoulder_lift_joint:\n  type: position_controllers/JointPositionController\n  joint: shoulder_lift_joint\nelbow_joint:\n  type: position_controllers/JointPositionController\n  joint: elbow_joint\nwrist_1_joint:\n  type: position_controllers/JointPositionController\n  joint: wrist_1_joint\nwrist_2_joint:\n  type: position_controllers/JointPositionController\n  joint: wrist_2_joint\nwrist_3_joint:\n  type: position_controllers/JointPositionController\n  joint: wrist_3_joint"
  },
  {
    "path": "ur_control/config/ur_e_controllers.yaml",
    "content": "# Joint state controller\njoint_state_controller:\n  publish_rate: 500\n  type: joint_state_controller/JointStateController\n\nscaled_pos_joint_traj_controller:\n  type: position_controllers/JointTrajectoryController\n  joints:\n     - shoulder_pan_joint\n     - shoulder_lift_joint\n     - elbow_joint\n     - wrist_1_joint\n     - wrist_2_joint\n     - wrist_3_joint\n  constraints:\n    # Default is 0\n    goal_time: 0.1\n    # Default is 0.01\n    stopped_velocity_tolerance: 0.01\n    shoulder_pan_joint:\n      trajectory: 0\n      goal: 0.01\n    shoulder_lift_joint:\n      trajectory: 0\n      goal: 0.01\n    elbow_joint:\n      trajectory: 0\n      goal: 0.01\n    wrist_1_joint:\n      trajectory: 0\n      goal: 0.01\n    wrist_2_joint:\n      trajectory: 0\n      goal: 0.01\n    wrist_3_joint:\n      trajectory: 0\n      goal: 0.01\n\n#Position controller\nshoulder_pan_joint:\n  type: position_controllers/JointPositionController\n  joint: shoulder_pan_joint\nshoulder_lift_joint:\n  type: position_controllers/JointPositionController\n  joint: shoulder_lift_joint\nelbow_joint:\n  type: position_controllers/JointPositionController\n  joint: elbow_joint\nwrist_1_joint:\n  type: position_controllers/JointPositionController\n  joint: wrist_1_joint\nwrist_2_joint:\n  type: position_controllers/JointPositionController\n  joint: wrist_2_joint\nwrist_3_joint:\n  type: position_controllers/JointPositionController\n  joint: wrist_3_joint"
  },
  {
    "path": "ur_control/launch/ur_controllers.launch",
    "content": "<?xml version=\"1.0\"?>\n<launch>\n  <!-- Launch file parameters -->\n  <arg name=\"debug\"     default=\"true\" />\n\n  <arg if=      \"$(arg debug)\"  name=\"DEBUG\" value=\"screen\"/>\n  <arg unless = \"$(arg debug)\"  name=\"DEBUG\" value=\"log\"/>\n\n  <arg name=\"gripper_robotiq_85\"     default=\"false\" />\n  <arg name=\"gripper_robotiq_hande\"  default=\"false\" />\n  <arg if=\"$(eval gripper_robotiq_85 or gripper_robotiq_hande)\"  name=\"gripper_controller\" value=\"gripper_controller\"/>\n  <arg unless=\"$(eval gripper_robotiq_85 or gripper_robotiq_hande)\"  name=\"gripper_controller\" value=\"\"/>\n\n  <!-- Controllers config -->\n  <rosparam file=\"$(find ur_control)/config/ur_controllers.yaml\" command=\"load\" />\n\n  <group if=\"$(arg gripper_robotiq_85)\">\n    <rosparam file=\"$(find robotiq_control)/config/gripper_85_controller.yaml\" command=\"load\" />\n  </group>\n  <group if=\"$(arg gripper_robotiq_hande)\">\n    <rosparam file=\"$(find robotiq_control)/config/gripper_hande_controller.yaml\" command=\"load\" />\n  </group>\n\n  <!-- Load controllers -->\n  <node name=\"robot_controllers\" pkg=\"controller_manager\" type=\"spawner\" respawn=\"false\"\n        output=\"$(arg DEBUG)\"\n        args=\"joint_state_controller scaled_pos_joint_traj_controller gripper_controller\"/>\n\n  <!-- TF -->\n  <node pkg=\"robot_state_publisher\" type=\"robot_state_publisher\" name=\"robot_state_publisher\"> \n    <param name=\"publish_frequency\"  type=\"double\" value=\"50\" />\n  </node>\n</launch>\n"
  },
  {
    "path": "ur_control/launch/ur_e_controllers.launch",
    "content": "<?xml version=\"1.0\"?>\n<launch>\n  <!-- Launch file parameters -->\n  <arg name=\"debug\"                  default=\"true\" />\n  <arg name=\"gripper_robotiq_85\"     default=\"false\" />\n  <arg name=\"gripper_robotiq_hande\"  default=\"false\" />\n  <arg if=\"$(eval gripper_robotiq_85 or gripper_robotiq_hande)\"  name=\"gripper_controller\" value=\"gripper_controller\"/>\n  <arg unless=\"$(eval gripper_robotiq_85 or gripper_robotiq_hande)\"  name=\"gripper_controller\" value=\"\"/>\n\n  <arg if=      \"$(arg debug)\"  name=\"DEBUG\" value=\"screen\"/>\n  <arg unless = \"$(arg debug)\"  name=\"DEBUG\" value=\"log\"/>\n\n  <!-- Controllers config -->\n  <rosparam file=\"$(find ur_control)/config/ur_e_controllers.yaml\" command=\"load\"/>\n\n  <group if=\"$(arg gripper_robotiq_85)\">\n    <rosparam file=\"$(find ur_control)/config/gripper_85_controller.yaml\" command=\"load\" />\n  </group>\n  <group if=\"$(arg gripper_robotiq_hande)\">\n    <rosparam file=\"$(find robotiq_control)/config/gripper_hande_controller.yaml\" command=\"load\" />\n  </group>\n  <!-- stuff that will only be evaluated if foo is true -->\n\n  <!-- Load controllers -->\n  <node name=\"robot_controllers\" pkg=\"controller_manager\" type=\"spawner\" respawn=\"false\"\n        output=\"$(arg DEBUG)\"\n        args=\"joint_state_controller scaled_pos_joint_traj_controller $(arg gripper_controller)\"/>\n\n  <!-- TF -->\n  <node pkg=\"robot_state_publisher\" type=\"robot_state_publisher\" name=\"state_publisher\"> \n    <param name=\"publish_frequency\"  type=\"double\" value=\"500\" />\n  </node>\n</launch>\n"
  },
  {
    "path": "ur_control/package.xml",
    "content": "<?xml version=\"1.0\"?>\n<package>\n  <name>ur_control</name>\n  <version>0.1.0</version>\n  <description>The ur_control package</description>\n  <author email=\"cristianbehe@gmail.com\">Cristian Beltran</author>\n  <maintainer email=\"cristianbehe@gmail.com\">Cristian Beltran</maintainer>\n  <license>MIT</license>\n\n  <buildtool_depend>catkin</buildtool_depend>\n  <build_depend>control_msgs</build_depend>\n  <build_depend>controller_manager</build_depend>\n  <build_depend>effort_controllers</build_depend>\n  <build_depend>gripper_action_controller</build_depend>\n  <build_depend>joint_state_controller</build_depend>\n  <build_depend>joint_trajectory_controller</build_depend>\n  <build_depend>robot_state_publisher</build_depend>\n  <build_depend>std_srvs</build_depend>\n  <build_depend>sensor_msgs</build_depend>\n  <build_depend>trajectory_msgs</build_depend>\n  <build_depend>geometry_msgs</build_depend>\n  <build_depend>trac_ik_python</build_depend>\n  \n  <run_depend>control_msgs</run_depend>\n  <run_depend>controller_manager</run_depend>\n  <run_depend>effort_controllers</run_depend>\n  <run_depend>gripper_action_controller</run_depend>\n  <run_depend>joint_state_controller</run_depend>\n  <run_depend>joint_trajectory_controller</run_depend>\n  <run_depend>robot_state_publisher</run_depend>\n  <run_depend>std_srvs</run_depend>\n  <run_depend>sensor_msgs</run_depend>\n  <run_depend>trajectory_msgs</run_depend>\n  <run_depend>geometry_msgs</run_depend>\n  <run_depend>trac_ik_python</run_depend>\n\n</package>\n"
  },
  {
    "path": "ur_control/scripts/cartesian_compliance_controller_examples.py",
    "content": "#!/usr/bin/env python\n\n# The MIT License (MIT)\n#\n# Copyright (c) 2023 Cristian Beltran\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to deal\n# in the Software without restriction, including without limitation the rights\n# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n# copies of the Software, and to permit persons to whom the Software is\n# furnished to do so, subject to the following conditions:\n#\n# The above copyright notice and this permission notice shall be included in all\n# copies or substantial portions of the Software.\n#\n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n# SOFTWARE.\n#\n# Author: Cristian Beltran\n\nimport sys\nimport signal\nfrom ur_control import spalg, utils, traj_utils, constants\nfrom ur_control.fzi_cartesian_compliance_controller import CompliantController\nimport argparse\nimport rospy\nimport numpy as np\n\nnp.set_printoptions(suppress=True)\nnp.set_printoptions(linewidth=np.inf)\n\n\ndef signal_handler(sig, frame):\n    print('You pressed Ctrl+C!')\n    sys.exit(0)\n\n\nsignal.signal(signal.SIGINT, signal_handler)\n\n\ndef move_joints():\n    q = [1.3506, -1.6493, 1.9597, -1.8814, -1.5652, 1.3323]\n    q = [1.4414, -1.7303, 2.145, -1.9863, -1.5656, 1.4397]\n    q = [1.0497, -1.5863, 2.0175, -2.005, -1.5681, 1.0542]\n    q = [1.4817, -2.0874, 1.7722, -1.2554, -1.5669, 0.0189]\n    arm.set_joint_positions(positions=q, target_time=3, wait=True)\n\n\ndef move_cartesian():\n    q = [1.3524, -1.5555, 1.7697, -1.7785, -1.5644, 1.3493]\n    arm.set_joint_positions(positions=q, target_time=3, wait=True)\n\n    # arm.set_position_control_mode(False)\n    # arm.set_control_mode(mode=\"spring-mass-damper\")\n    arm.set_position_control_mode(True)\n    arm.set_control_mode(mode=\"parallel\")\n    arm.set_solver_parameters(error_scale=0.5, iterations=1)\n    arm.update_stiffness([1500, 1500, 1500, 100, 100, 100])\n\n    # selection_matrix = [0.5, 0.5, 1, 0.5, 0.5, 0.5]\n    selection_matrix = np.ones(6)\n    arm.update_selection_matrix(selection_matrix)\n\n    p_gains = [0.05, 0.05, 0.05, 1.5, 1.5, 1.5]\n    d_gains = [0.005, 0.005, 0.005, 0, 0, 0]\n    arm.update_pd_gains(p_gains, d_gains=d_gains)\n\n    ee = arm.end_effector()\n\n    p1 = ee.copy()\n    p1[2] -= 0.03\n\n    p2 = p1.copy()\n    p2[2] += 0.005\n\n    trajectory = p1\n    # trajectory = np.stack((p1, p2))\n    target_force = np.zeros(6)\n\n    def f(x): return rospy.loginfo_throttle(0.25, f\"error: {np.round(trajectory[:3] - x[:3], 4)}\")\n    arm.zero_ft_sensor()\n    res = arm.execute_compliance_control(trajectory, target_wrench=target_force, max_force_torque=[50., 50., 50., 5., 5., 5.],\n                                         duration=5, func=f, scale_up_error=True, max_scale_error=3.0, auto_stop=False)\n    print(\"EE total displacement\", np.round(ee - arm.end_effector(), 4))\n    print(\"Pose error\", np.round(trajectory[:3] - arm.end_effector()[:3], 4))\n\n\ndef move_force():\n    \"\"\" Linear push. Move until the target force is felt and stop. \"\"\"\n    arm.zero_ft_sensor()\n\n    arm.set_control_mode(\"parallel\")\n    selection_matrix = [1, 1, 0, 1, 1, 1]\n    arm.update_selection_matrix(selection_matrix)\n\n    # arm.set_control_mode(\"spring-mass-damper\")\n\n    arm.set_solver_parameters(error_scale=0.5, iterations=1)\n    arm.update_stiffness([1500, 1500, 1500, 100, 100, 100])\n\n    p_gains = [0.05, 0.05, 0.1, 1.5, 1.5, 1.5]\n    d_gains = [0.005, 0.005, 0.005, 0, 0, 0]\n    arm.update_pd_gains(p_gains, d_gains)\n\n    ee = arm.end_effector()\n\n    target_force = [0, 0, -5, 0, 0, 0]  # express in the end_effector_link\n    # account for the direction of the force?\n    stop_at_wrench = np.copy(target_force)\n    stop_at_wrench *= -1\n    # transform = arm.end_effector(tip_link=\"b_bot_tool0\")\n    # tf = spalg.convert_wrench(target_force, transform)\n    # print(transform)\n    # print(\"TF\", tf[:3])\n\n    res = arm.execute_compliance_control(ee, target_wrench=target_force,\n                                         max_force_torque=[30., 30., 30., 4., 4., 4.], duration=15,\n                                         stop_at_wrench=stop_at_wrench,\n                                         stop_on_target_force=True)\n    print(res)\n    print(\"EE change\", ee - arm.end_effector())\n\n\ndef slicing():\n    \"\"\" Push down while oscillating in X-axis or Y-axis \"\"\"\n    arm.zero_ft_sensor()\n\n    selection_matrix = [1, 1, 0, 1, 1, 1]\n    arm.update_selection_matrix(selection_matrix)\n\n    pd_gains = [0.03, 0.03, 0.03, 1.0, 1.0, 1.0]\n    arm.update_pd_gains(pd_gains)\n\n    ee = arm.end_effector()\n\n    trajectory = traj_utils.compute_sinusoidal_trajectory(ee, dimension=1, period=3, amplitude=0.02, num_of_points=100)\n    target_force = [0, 0, -3, 0, 0, 0]  # express in the end_effector_link\n\n    res = arm.execute_compliance_control(trajectory, target_wrench=target_force,\n                                         max_force_torque=[50., 50., 50., 5., 5., 5.], duration=20)\n    print(res)\n    print(\"EE change\", ee - arm.end_effector())\n\n\ndef admittance_control():\n    \"\"\" Spring-mass-damper force control \"\"\"\n    rospy.loginfo(\"START ADMITTANCE\")\n\n    arm.set_control_mode(mode=\"spring-mass-damper\")\n\n    ee = arm.end_effector()\n    target_force = np.zeros(6)\n    arm.execute_compliance_control(ee, target_wrench=target_force,\n                                   max_force_torque=[50., 50., 50., 5., 5., 5.], duration=10,\n                                   stop_on_target_force=False)\n\n    rospy.loginfo(\"STOP ADMITTANCE\")\n\n\ndef free_drive():\n    rospy.loginfo(\"START FREE DRIVE\")\n    rospy.sleep(0.5)\n    arm.zero_ft_sensor()\n    # arm.set_control_mode(\"parallel\")\n    arm.set_control_mode(\"spring-mass-damper\")\n    # arm.set_hand_frame_control(False)\n    # arm.set_end_effector_link(\"b_bot_tool0\")\n    # selection_matrix = [0., 0., 0., 1., 1., 1.]\n    # selection_matrix = [1., 1., 1., 0., 0., 0.]\n    # arm.update_selection_matrix(selection_matrix)\n    # 0.8 is vibrating\n    arm.set_solver_parameters(error_scale=1.0, iterations=1.0)\n    # pd_gains = [0.03, 0.03, 0.03, 1.0, 1.0, 1.0]\n    # pd_gains = [0.06, 0.06, 0.06, 1.5, 1.5, 1.5] # stiff\n    pd_gains = [0.1, 0.1, 0.1, 2.0, 2.0, 3.0]  # flex\n    d_gains = [0.0, 0.0, 0.0, 0, 0, 0]\n    # d_gains = [0.01, 0.01, 0.01, 0.01, 0.01, 0.01]\n    # d_gains = [0.001, 0.001, 0.001, 0.001, 0.001, 0.001]  # good with p0.1 e_s0.8 ite1.0\n    # d_gains = [0.0001, 0.0001, 0.0001, 0, 0, 0]\n    # pd_gains = [0.08, 0.08, 0.08, 1.5, 1.5, 1.5]\n    arm.update_pd_gains(pd_gains, d_gains)\n    # arm.update_stiffness([10, 10, 10, 10, 10, 10])\n    # arm.update_stiffness([1000, 1000, 1000, 50, 50, 20])\n    # arm.update_stiffness([250, 250, 250, 5, 5, 5])  # 10 for pos can make it drift\n    arm.update_stiffness([100, 100, 100, 5, 5, 5])  # 10 for pos can make it drift\n\n\n# mapping parameter space vs vibration\n# how to reduce vibration...\n# TODO: rotation is wrong!\n# add wrench feedback\n#\n\n    ee = arm.end_effector()\n\n    target_force = np.zeros(6)\n    target_force[1] += 0\n\n    res = arm.execute_compliance_control(ee, target_wrench=target_force,\n                                         max_force_torque=[50., 50., 50., 5., 5., 5.], duration=60,\n                                         stop_on_target_force=False)\n    print(res)\n    print(\"EE change\", ee - arm.end_effector())\n    rospy.loginfo(\"STOP FREE DRIVE\")\n\n\ndef test():\n    # start here\n    move_joints()\n\n    for _ in range(3):\n        # Move down (cut)\n        arm.move_relative(transformation=[0, 0, -0.03, 0, 0, 0], relative_to_tcp=False, duration=0.5, wait=True)\n\n        # Move back up and to the next initial pose\n        arm.move_relative(transformation=[0, 0, 0.03, 0, 0, 0], relative_to_tcp=False, duration=0.25, wait=True)\n        arm.move_relative(transformation=[0, 0.01, 0, 0, 0, 0], relative_to_tcp=False, duration=0.25, wait=True)\n\n\ndef enable_compliance_control():\n    q = [1.3524, -1.5555, 1.7697, -1.7785, -1.5644, 1.3493]\n    arm.set_joint_positions(q, t=1, wait=True)\n\n    arm.zero_ft_sensor()\n\n    # arm.set_control_mode(mode=\"parallel\")\n    arm.set_control_mode(mode=\"spring-mass-damper\")\n    # arm.set_position_control_mode(True)\n    # arm.update_selection_matrix(np.array([0.1]*6))\n\n    arm.activate_cartesian_controller()\n    arm.set_cartesian_target_pose(arm.end_effector(tip_link=\"b_bot_gripper_tip_link\"))\n\n    for _ in range(30):\n        print(\"current target pose\", arm.current_target_pose[:3])\n        print(\"error\", arm.current_target_pose[:3] - arm.end_effector(tip_link=\"b_bot_gripper_tip_link\")[:3])\n        rospy.sleep(1)\n\n    arm.activate_joint_trajectory_controller()\n\n\ndef main():\n    \"\"\" Main function to be run. \"\"\"\n    parser = argparse.ArgumentParser(description='Test force control')\n    parser.add_argument('-m', '--move_joints', action='store_true',\n                        help='move to joint configuration')\n    parser.add_argument('-mc', '--move_cartesian', action='store_true',\n                        help='move to cartesian configuration')\n    parser.add_argument('-mf', '--move_force', action='store_true',\n                        help='move towards target force')\n    parser.add_argument('-fd', '--free_drive', action='store_true',\n                        help='move the robot freely')\n    parser.add_argument('-a', '--admittance', action='store_true',\n                        help='Spring-mass-damper force control demo')\n    parser.add_argument('-s', '--slicing', action='store_true',\n                        help='Push down while oscillating on X-axis')\n    parser.add_argument('-t', '--test', action='store_true',\n                        help='Test')\n    parser.add_argument('-teleop', '--teleoperation', action='store_true',\n                        help='Enable cartesian controllers for teleoperation')\n    parser.add_argument('--namespace', type=str,\n                        help='Namespace of arm', default=None)\n    args = parser.parse_args()\n\n    rospy.init_node('ur3e_compliance_control')\n\n    ns = \"None\"\n    joints_prefix = None\n    tcp_link = 'gripper_tip_link'\n    # tcp_link = 'wrist_3_link'\n    # tcp_link = 'tool0'\n\n    if args.namespace:\n        ns = args.namespace\n        joints_prefix = args.namespace + '_'\n\n    global arm\n    arm = CompliantController(namespace=ns,\n                              joint_names_prefix=joints_prefix,\n                              ee_link=tcp_link,\n                              ft_topic='wrench',\n                              gripper_type=None)\n    \n    arm.dashboard_services.activate_ros_control_on_ur()\n\n    if args.move_joints:\n        move_joints()\n\n    if args.move_cartesian:\n        move_cartesian()\n    if args.move_force:\n        move_force()\n    if args.admittance:\n        admittance_control()\n    if args.free_drive:\n        free_drive()\n    if args.slicing:\n        slicing()\n    if args.test:\n        test()\n    if args.teleoperation:\n        enable_compliance_control()\n    # if args.hand_frame_control:\n    #     move_hand_frame_control()\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "ur_control/scripts/compliance_controller_examples.py",
    "content": "#!/usr/bin/env python\n\n# The MIT License (MIT)\n#\n# Copyright (c) 2018-2021 Cristian Beltran\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to deal\n# in the Software without restriction, including without limitation the rights\n# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n# copies of the Software, and to permit persons to whom the Software is\n# furnished to do so, subject to the following conditions:\n#\n# The above copyright notice and this permission notice shall be included in all\n# copies or substantial portions of the Software.\n#\n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n# SOFTWARE.\n#\n# Author: Cristian Beltran\n\nimport sys\nimport signal\nfrom ur_control import utils, traj_utils\nfrom ur_control.hybrid_controller import ForcePositionController\nfrom ur_control.compliance_controller import CompliantController\nimport argparse\nimport rospy\nimport numpy as np\nnp.set_printoptions(suppress=True)\nnp.set_printoptions(linewidth=np.inf)\n\n\ndef signal_handler(sig, frame):\n    print('You pressed Ctrl+C!')\n    sys.exit(0)\n\n\nsignal.signal(signal.SIGINT, signal_handler)\n\n\ndef move_joints(wait=True):\n    # desired joint configuration 'q'\n    q = [1.57, -1.57, 1.26, -1.57, -1.57, 0]\n\n    # go to desired joint configuration\n    # in t time (seconds)\n    # wait is for waiting to finish the motion before executing\n    # anything else or ignore and continue with whatever is next\n    arm.set_joint_positions(positions=q, wait=wait, target_time=2.0)\n\n\ndef spiral_trajectory():\n    \"\"\"\n        Force/Position control. Follow a spiral trajectory on the world's YZ plan while controlling force on Z \n    \"\"\"\n    initial_q = [1.57, -1.57, 1.26, -1.57, -1.57, 0]\n\n    arm.set_joint_positions(positions=initial_q, wait=True, target_time=2)\n\n    plane = \"YZ\"\n    radius = 0.02\n    radius_direction = \"+Z\"\n    revolutions = 3\n\n    steps = 100 # Number of waypoints of the spiral trajectory\n    duration = 30.0 # Duration of the trajectory, affects speed\n\n    arm.zero_ft_sensor()\n\n    initial_pose = arm.end_effector()\n    trajectory = traj_utils.compute_trajectory(initial_pose, plane, radius, radius_direction,\n                                               steps, revolutions, trajectory_type=\"spiral\", from_center=True,\n                                               wiggle_direction=\"X\", wiggle_angle=np.deg2rad(0.0), wiggle_revolutions=1.0)\n    execute_trajectory(trajectory, duration=duration, use_force_control=True)\n\n\ndef circular_trajectory():\n    \"\"\"\n        Force/Position control. Follow a circular trajectory on the world's YZ plan while controlling force on Z \n    \"\"\"\n    initial_q = [1.57, -1.57, 1.26, -1.57, -1.57, 0]\n    \n    arm.set_joint_positions(positions=initial_q, wait=True, target_time=1)\n\n    plane = \"YZ\"\n    radius = 0.02\n    radius_direction = \"+Z\"\n    revolutions = 1\n\n    steps = 100 # Number of waypoints of the circular trajectory\n    duration = 30.0 # Duration of the trajectory, affects speed\n\n    arm.zero_ft_sensor()\n\n    initial_pose = arm.end_effector()\n    trajectory = traj_utils.compute_trajectory(initial_pose, plane, radius, radius_direction,\n                                               steps, revolutions, trajectory_type=\"circular\", from_center=False,\n                                               wiggle_direction=\"X\", wiggle_angle=np.deg2rad(0.0), wiggle_revolutions=10.0)\n    execute_trajectory(trajectory, duration=duration, use_force_control=True)\n\n\ndef execute_trajectory(trajectory, duration, use_force_control=False, termination_criteria=None):\n    if use_force_control:\n        pf_model = init_force_control([1., 1., 1., 1., 1., 1.])\n        target_force = np.array([0., 0., 0., 0., 0., 0.])\n        max_force_torque = np.array([50.0, 50., 50., 5., 5., 5.])\n\n        def termination_criteria(current_pose, standby): return False # Dummy function\n\n        full_force_control(target_force, trajectory, pf_model, timeout=duration,\n                           relative_to_ee=False, max_force_torque=max_force_torque, termination_criteria=termination_criteria)\n\n    else:\n        joint_trajectory = []\n        for point in trajectory:\n            joint_trajectory.append(arm._solve_ik(point))\n        arm.set_joint_trajectory(trajectory=joint_trajectory, target_time=duration)\n\n\ndef init_force_control(selection_matrix, dt=0.02):\n    Kp = np.array([2., 2., 2., 1., 1., 1.])\n    Kp_pos = Kp\n    Kd_pos = Kp * 0.01\n    Ki_pos = Kp * 0.0\n    position_pd = utils.PID(Kp=Kp_pos, Ki=Ki_pos, Kd=Kd_pos, dynamic_pid=True)\n\n    # Force PID gains\n    Kp = np.array([0.05, 0.05, 0.05, 0.05, 0.05, 0.05])\n    Kp_force = Kp\n    Kd_force = Kp * 0.0\n    Ki_force = Kp * 0.01\n    force_pd = utils.PID(Kp=Kp_force, Kd=Kd_force, Ki=Ki_force)\n    pf_model = ForcePositionController(\n        position_pd=position_pd, force_pd=force_pd, alpha=np.diag(selection_matrix), dt=dt)\n\n    return pf_model\n\n\ndef full_force_control(\n        target_force=None, target_positions=None, model=None,\n        selection_matrix=[1., 1., 1., 1., 1., 1.],\n        relative_to_ee=False, timeout=10.0, max_force_torque=[200., 200., 200., 5., 5., 5.],\n        termination_criteria=None):\n    \"\"\" \n      Use with caution!! \n      target_force: list[6], target force for each direction x,y,z,ax,ay,az\n      target_position: list[7], target position for each direction x,y,z + quaternion\n      selection_matrix: list[6], define which direction is controlled by position(1.0) or force(0.0)\n      relative_to_ee: bool, whether to use the base_link of the robot as frame or the ee_link (+ ee_transform)\n      timeout: float, duration in seconds of the force control\n      termination_criteria: func, optional condition that would stop the compliance controller\n    \"\"\"\n    arm.zero_ft_sensor()  # offset the force sensor\n    arm.relative_to_ee = relative_to_ee\n\n    if model is None:\n        pf_model = init_force_control(selection_matrix)\n    else:\n        pf_model = model\n        pf_model.selection_matrix = np.diag(selection_matrix)\n\n    max_force_torque = np.array(max_force_torque)\n\n    target_force = np.array([0., 0., 0., 0., 0., 0.]\n                            ) if target_force is None else target_force\n\n    target_positions = arm.end_effector(\n    ) if target_positions is None else np.array(target_positions)\n\n    pf_model.set_goals(force=target_force)\n\n    return arm.set_hybrid_control_trajectory(target_positions, pf_model, max_force_torque=max_force_torque,\n                                             timeout=timeout, stop_on_target_force=False,\n                                             termination_criteria=termination_criteria)\n\ndef force_control():\n    \"\"\" \n        Simple example of compliance control\n        selection_matrix: list[6]. define which direction is controlled by position(1.0) or force(0.0) goal. \n                          Values in between make the controller attempt to achieve both position and force goals.\n    \"\"\"\n    arm.zero_ft_sensor()\n\n    timeout = 10.0  # Duration of the active control, does not affect speed.\n\n    selection_matrix = [1., 1., 0., 1., 1., 1.]\n    target_force = np.array([0., 0., 5., 0., 0., 0.])\n\n    full_force_control(\n        target_force, selection_matrix=selection_matrix, timeout=timeout)\n\n\ndef main():\n    \"\"\" Main function to be run. \"\"\"\n    parser = argparse.ArgumentParser(description='Test force control')\n    parser.add_argument('-m', '--move', action='store_true',\n                        help='move to joint configuration')\n    parser.add_argument('-f', '--force', action='store_true',\n                        help='Force control demo')\n    parser.add_argument('--circle', action='store_true',\n                        help='Circular rotation around a target pose')\n    parser.add_argument('--spiral', action='store_true',\n                        help='Spiral rotation around a target pose')\n    parser.add_argument('--namespace', type=str, \n                        help='Namespace of arm', default=None)\n    args = parser.parse_args()\n\n    rospy.init_node('ur3e_compliance_control')\n\n    ns = ''\n    joints_prefix = None\n    tcp_link = None\n\n    if args.namespace:\n        ns = args.namespace\n        joints_prefix = args.namespace + '_'\n\n    global arm\n    arm = CompliantController(namespace=ns,\n                              joint_names_prefix=joints_prefix)\n\n    if args.move:\n        move_joints()\n    if args.circle:\n        circular_trajectory()\n    if args.spiral:\n        spiral_trajectory()\n    if args.force:\n        force_control()\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "ur_control/scripts/controller_examples.py",
    "content": "#! /usr/bin/env python\n\n# The MIT License (MIT)\n#\n# Copyright (c) 2018-2021 Cristian Beltran\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to deal\n# in the Software without restriction, including without limitation the rights\n# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n# copies of the Software, and to permit persons to whom the Software is\n# furnished to do so, subject to the following conditions:\n#\n# The above copyright notice and this permission notice shall be included in all\n# copies or substantial portions of the Software.\n#\n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n# SOFTWARE.\n#\n# Author: Cristian Beltran\n\nimport numpy as np\nimport tf\nfrom ur_control import transformations, traj_utils, conversions\nfrom ur_control.arm import Arm\nfrom ur_control.constants import GripperType\nimport argparse\nimport random\nimport rospy\nimport timeit\n\nnp.set_printoptions(suppress=True)\nnp.set_printoptions(linewidth=np.inf)\n\n\ndef move_joints(wait=True):\n    # desired joint configuration 'q'\n    q = [1.8391, -1.5659, 1.4889, -1.6421, -1.6115, 0.2656]\n\n    # go to desired joint configuration\n    # in t time (seconds)\n    # wait is for waiting to finish the motion before executing\n    # anything else or ignore and continue with whatever is next\n    arm.set_joint_positions(positions=q, wait=wait, target_time=0.5)\n\n\ndef follow_trajectory():\n    traj = [\n        [2.4463, -1.8762, -1.6757, 0.3268, 2.2378, 3.1960],\n        [2.5501, -1.9786, -1.5293, 0.2887, 2.1344, 3.2062],\n        [2.5501, -1.9262, -1.3617, 0.0687, 2.1344, 3.2062],\n        [2.4463, -1.8162, -1.5093, 0.1004, 2.2378, 3.1960],\n        [2.3168, -1.7349, -1.6096, 0.1090, 2.3669, 3.1805],\n        [2.3168, -1.7997, -1.7772, 0.3415, 2.3669, 3.1805],\n        [2.3168, -1.9113, -1.8998, 0.5756, 2.3669, 3.1805],\n        [2.4463, -1.9799, -1.7954, 0.5502, 2.2378, 3.1960],\n        [2.5501, -2.0719, -1.6474, 0.5000, 2.1344, 3.2062],\n    ]\n    for t in traj:\n        arm.set_joint_positions(positions=t, wait=True, target_time=1.0)\n\n\ndef move_endeffector():\n    # get current position of the end effector\n    cpose = arm.end_effector()\n    # define the desired translation/rotation\n    deltax = np.array([0., 0., 0.04, 0., 0., 0.])\n    # add translation/rotation to current position\n    cpose = transformations.transform_pose(cpose, deltax, rotated_frame=True)\n    # execute desired new pose\n    # may fail if IK solution is not found\n    arm.set_target_pose(pose=cpose, wait=True, target_time=1.0)\n\n\ndef move_gripper():\n    print(\"closing\")\n    arm.gripper.close()\n    rospy.sleep(1.0)\n    print(\"opening\")\n    arm.gripper.open()\n    rospy.sleep(1.0)\n    print(\"moving\")\n    arm.gripper.command(0.5, percentage=True)  # in percentage (80%)\n    # 0.0 is full close, 1.0 is full open\n    rospy.sleep(1.0)\n    print(\"moving\")\n    arm.gripper.command(0.01)  # in meters\n    # 0.05 is full open, 0.0 is full close\n    # max gap for the Robotiq Hand-e is 0.05 meters\n\n    print(\"current gripper position\", round(arm.gripper.get_position(), 4), \"meters\")\n\n\ndef grasp_naive():\n    # probably won't work\n    arm.gripper.open()\n    q1 = [1.82224, -1.59475,  1.68247, -1.80611, -1.60922,  0.24936]\n    arm.set_joint_positions(positions=q1, wait=True, target_time=1.0)\n\n    q2 = [1.82225, -1.55525,  1.86741, -2.03039, -1.60938,  0.24935]\n    arm.set_joint_positions(positions=q2, wait=True, target_time=1.0)\n\n    arm.gripper.command(0.036)\n    rospy.sleep(0.5)\n\n    q1 = [1.82224, -1.59475,  1.68247, -1.80611, -1.60922,  0.24936]\n    arm.set_joint_positions(positions=q1, wait=True, target_time=1.0)\n\n\ndef grasp_plugin():\n    arm.gripper.open()\n    q1 = [1.82224, -1.59475,  1.68247, -1.80611, -1.60922,  0.24936]\n    arm.set_joint_positions(positions=q1, wait=True, target_time=1.0)\n\n    q2 = [1.82225, -1.55525,  1.86741, -2.03039, -1.60938,  0.24935]\n    arm.set_joint_positions(positions=q2, wait=True, target_time=1.0)\n\n    arm.gripper.command(0.039)\n    # attach the object \"link\" to the robot \"model_name\"::\"link_name\"\n    arm.gripper.grab(link_name=\"cube3::link\")\n\n    q1 = [1.82224, -1.59475,  1.68247, -1.80611, -1.60922,  0.24936]\n    arm.set_joint_positions(positions=q1, wait=True, target_time=1.0)\n    rospy.sleep(2.0)  # release after 2 secs\n\n    # dettach the object \"link\" to the robot \"model_name\"::\"link_name\"\n    arm.gripper.open()\n    arm.gripper.release(link_name=\"cube3::link\")\n\n\ndef get_random_valid_direction(plane):\n    if plane == \"XZ\":\n        return random.choice([\"+X\", \"-X\", \"+Z\", \"-Z\"])\n    elif plane == \"YZ\":\n        return random.choice([\"+Y\", \"-Y\", \"+Z\", \"-Z\"])\n    elif plane == \"XY\":\n        return random.choice([\"+X\", \"-X\", \"+Y\", \"-Y\"])\n    else:\n        raise ValueError(\"Invalid value for plane: %s\" % plane)\n\n\ndef circular_trajectory():\n    \"\"\" Simple circular trajectory from initial pose. 5cm of radius\"\"\"\n    initial_q = [1.8391, -1.5659, 1.4889, -1.6421, -1.6115, 0.2656]\n    arm.set_joint_positions(positions=initial_q, wait=True, target_time=2)\n\n    duration = 5.0\n    steps = 100\n    plane = \"XY\"\n    direction = get_random_valid_direction(plane)\n    dummy_trajectory = traj_utils.compute_trajectory(initial_pose=[0, 0, 0., 0, 0, 0, 1.],\n                                                     plane=plane, radius=0.05,\n                                                     radius_direction=direction, steps=steps, revolutions=1,\n                                                     from_center=False, trajectory_type=\"circular\")\n\n    listener = tf.TransformListener()\n    # convert dummy_trajectory (initial pose frame id) to robot's base frame\n    try:\n        listener.waitForTransform(\"base_link\", \"wrist_3_link\", rospy.Time(0), rospy.Duration(1))\n        transform2target = listener.fromTranslationRotation(*listener.lookupTransform(\"base_link\", \"wrist_3_link\", rospy.Time(0)))\n    except Exception as e:\n        print(e)\n        return False\n\n    actual_trajectory = []\n    for p in dummy_trajectory:\n        ps = conversions.to_pose_stamped(\"base_link\", p)\n        next_pose = conversions.from_pose_to_list(conversions.transform_pose(\"base_link\", transform2target, ps).pose)\n        print(\"next_pose\", np.round(next_pose[:3].tolist(), 4))\n        actual_trajectory.append(next_pose)\n\n        arm.set_target_pose(pose=next_pose, target_time=duration/steps, wait=False)\n        rospy.sleep(duration/steps)\n\n    arm.set_pose_trajectory(trajectory=actual_trajectory, target_time=duration)\n\n\ndef main():\n    \"\"\" Main function to be run. \"\"\"\n    parser = argparse.ArgumentParser(description='Test force control')\n    parser.add_argument('-m', '--move', action='store_true',\n                        help='move to joint configuration')\n    parser.add_argument('-t', '--move_traj', action='store_true',\n                        help='move following a trajectory of joint configurations')\n    parser.add_argument('-e', '--move_ee', action='store_true',\n                        help='move to a desired end-effector position')\n    parser.add_argument('-g', '--gripper', action='store_true',\n                        help='Move gripper')\n    parser.add_argument('--grasp_naive', action='store_true',\n                        help='Test simple grasping (cube_tasks world)')\n    parser.add_argument('--grasp_plugin', action='store_true',\n                        help='Test grasping plugin (cube_tasks world)')\n    parser.add_argument('--circle', action='store_true',\n                        help='Circular rotation around a target pose')\n\n    args = parser.parse_args()\n\n    rospy.init_node('ur3e_script_control')\n\n    global arm\n    arm = Arm(gripper_type=GripperType.GENERIC)\n\n    real_start_time = timeit.default_timer()\n    ros_start_time = rospy.get_time()\n\n    if args.move:\n        move_joints()\n    if args.move_traj:\n        follow_trajectory()\n    if args.move_ee:\n        move_endeffector()\n    if args.gripper:\n        move_gripper()\n    if args.grasp_naive:\n        grasp_naive()\n    if args.grasp_plugin:\n        grasp_plugin()\n    if args.circle:\n        circular_trajectory()\n\n    print(\"real time\", round(timeit.default_timer() - real_start_time, 3))\n    print(\"ros time\", round(rospy.get_time() - ros_start_time, 3))\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "ur_control/scripts/ft_filter.py",
    "content": "#!/usr/bin/env python\n\n# The MIT License (MIT)\n#\n# Copyright (c) 2018-2023 Cristian Beltran\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to deal\n# in the Software without restriction, including without limitation the rights\n# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n# copies of the Software, and to permit persons to whom the Software is\n# furnished to do so, subject to the following conditions:\n#\n# The above copyright notice and this permission notice shall be included in all\n# copies or substantial portions of the Software.\n#\n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n# SOFTWARE.\n#\n# Author: Cristian Beltran\n\nimport argparse\nimport collections\nimport numpy as np\n\nimport rospy\nfrom std_srvs.srv import Empty, EmptyResponse, SetBool, SetBoolResponse\nfrom geometry_msgs.msg import WrenchStamped\n\nfrom ur_control import spalg, utils, filters, conversions\n\n\nclass FTsensor(object):\n\n    def __init__(self, in_topic, namespace=\"\", out_topic=None,\n                 sampling_frequency=500, cutoff=10,\n                 order=2, data_window=10,\n                 republish=False):\n\n        self.ns = namespace\n        self.enable_publish = republish\n        self.enable_filtering = True\n\n        self.in_topic = utils.solve_namespace(namespace + \"/\" + in_topic)\n        if out_topic:\n            self.out_topic = utils.solve_namespace(namespace + \"/\" + out_topic)\n            self.out_tcp_topic = utils.solve_namespace(namespace + \"/\" + out_topic) + \"tcp\"\n        else:\n            self.out_topic = utils.solve_namespace(self.in_topic + 'filtered')\n            self.out_tcp_topic = self.in_topic + \"tcp\"\n\n        rospy.loginfo(\"Publishing filtered FT to %s\" % self.out_topic)\n\n        # Load previous offset to zero filtered signal\n        self.wrench_offset = rospy.get_param('%sft_offset' % self.out_topic, None)\n        self.wrench_offset = np.zeros(6) if self.wrench_offset is None else self.wrench_offset\n\n        # Publisher to outward topic\n        self.pub = rospy.Publisher(self.out_topic, WrenchStamped, queue_size=1)\n        # Publish a wrench transformed/converted to a TCP point\n        self.pub_tcp = rospy.Publisher(self.out_tcp_topic, WrenchStamped, queue_size=1)\n\n        # Service for zeroing the filtered signal\n        rospy.Service(self.out_topic + \"zero_ftsensor\", Empty, self._srv_zeroing)\n        rospy.Service(self.out_topic + \"enable_publish\", SetBool, self._srv_publish)\n        rospy.Service(self.out_topic + \"enable_filtering\", SetBool, self._srv_filtering)\n\n        # Low pass filter\n        self.filter = filters.ButterLowPass(cutoff, sampling_frequency, order)\n\n        self.data_window = data_window\n        assert (self.data_window >= 5)\n        self.data_queue = collections.deque(maxlen=self.data_window)\n\n        # Subscribe to incoming topic\n        rospy.Subscriber(self.in_topic, WrenchStamped, self.raw_wrench_cb, queue_size=1)\n\n        rospy.loginfo('FT filter successfully initialized')\n        rospy.sleep(1)  # wait some time to fill the filter\n\n    def add_wrench_observation(self, wrench):\n        self.data_queue.append(np.array(wrench))\n\n    def raw_wrench_cb(self, msg):\n        if rospy.is_shutdown():\n            return\n        self._active = True\n        current_wrench = conversions.from_wrench(msg.wrench)\n        self.add_wrench_observation(current_wrench)\n        if self.enable_publish:\n            if self.enable_filtering:\n                current_wrench = self.get_filtered_wrench()\n\n            if current_wrench is not None:\n                data = current_wrench - self.wrench_offset\n                msg = WrenchStamped()\n                msg.wrench = conversions.to_wrench(data)\n                self.pub.publish(msg)\n\n                if rospy.has_param(self.out_tcp_topic+\"/pose_sensor_to_tcp\"):\n                    # Convert torques to force at a TCP point\n                    pose_sensor_to_tcp = rospy.get_param(self.out_tcp_topic+\"/pose_sensor_to_tcp\")\n                    tcp_wrench = data.copy()\n                    tcp_wrench[:3] += spalg.sensor_torque_to_tcp_force(tcp_position=pose_sensor_to_tcp, sensor_torques=current_wrench[3:])\n                    tcp_wrench[3:] = np.zeros(3)\n                    msg = WrenchStamped()\n                    msg.wrench = conversions.to_wrench(tcp_wrench)\n                    self.pub_tcp.publish(msg)\n\n    # function to filter out high frequency signal\n    def get_filtered_wrench(self):\n        if len(self.data_queue) < self.data_window:\n            return None\n        wrench_filtered = self.filter(np.array(self.data_queue))\n        return wrench_filtered[-1, :]\n\n    def update_wrench_offset(self):\n        current_wrench = self.get_filtered_wrench()\n        if current_wrench is not None:\n            self.wrench_offset = current_wrench\n            if self.wrench_offset is not None:\n                rospy.set_param('%sft_offset' % self.out_topic, self.wrench_offset.tolist())\n\n    def set_enable_publish(self, enable):\n        self.enable_publish = enable\n\n    def set_enable_filtering(self, enable):\n        self.enable_filtering = enable\n\n    def _srv_zeroing(self, req):\n        self.update_wrench_offset()\n        return EmptyResponse()\n\n    def _srv_publish(self, req):\n        self.set_enable_publish(req.data)\n        return SetBoolResponse(success=True)\n\n    def _srv_filtering(self, req):\n        self.set_enable_filtering(req.data)\n        return SetBoolResponse(success=True)\n\n\ndef main():\n    \"\"\" Main function to be run. \"\"\"\n    parser = argparse.ArgumentParser(description='Filter FT signal')\n    parser.add_argument('-ns', '--namespace', type=str, help='Namespace', required=False, default=\"\")\n    parser.add_argument('-t', '--ft_topic', type=str, help='FT sensor data topic', required=True)\n    parser.add_argument('-ot', '--out_topic', type=str, help='Topic where filtered data will be published')\n    parser.add_argument('-z', '--zero', action='store_true', help='Zero FT signal')\n\n    args, _ = parser.parse_known_args()\n\n    rospy.init_node('ft_filter')\n\n    out_topic = None if not args.out_topic else args.out_topic\n\n    ft_sensor = FTsensor(namespace=args.namespace, in_topic=args.ft_topic, out_topic=out_topic, republish=True)\n    if args.zero:\n        ft_sensor.update_wrench_offset()\n\n    rospy.spin()\n\n\nmain()\n"
  },
  {
    "path": "ur_control/scripts/getch.py",
    "content": "import sys\nimport termios\nimport tty\nfrom select import select\n\n\ndef getch(timeout=0.01):\n    \"\"\"\n    Retrieves a character from stdin.\n\n    Returns None if no character is available within the timeout.\n    Blocks if timeout < 0.\n    \"\"\"\n    # If this is being piped to, ignore non-blocking functionality\n    if not sys.stdin.isatty():\n        return sys.stdin.read(1)\n    fileno = sys.stdin.fileno()\n    old_settings = termios.tcgetattr(fileno)\n    ch = None\n    try:\n        tty.setraw(fileno)\n        rlist = [fileno]\n        if timeout >= 0:\n            [rlist, _, _] = select(rlist, [], [], timeout)\n        if fileno in rlist:\n            ch = sys.stdin.read(1)\n    except Exception as ex:\n        print((\"getch\", ex))\n        raise OSError\n    finally:\n        termios.tcsetattr(fileno, termios.TCSADRAIN, old_settings)\n    return ch"
  },
  {
    "path": "ur_control/scripts/imu.py",
    "content": "#!/usr/bin/env python\n\n# The MIT License (MIT)\n#\n# Copyright (c) 2018-2021 Cristian Beltran\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to deal\n# in the Software without restriction, including without limitation the rights\n# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n# copies of the Software, and to permit persons to whom the Software is\n# furnished to do so, subject to the following conditions:\n#\n# The above copyright notice and this permission notice shall be included in all\n# copies or substantial portions of the Software.\n#\n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n# SOFTWARE.\n#\n# Author: Cristian Beltran\n\nimport argparse\nimport rospy\n\nimport numpy as np\nfrom ur_control import conversions, utils\n\nfrom sensor_msgs.msg import Imu\n\n\nclass ImuFake(object):\n\n    def __init__(self, topic, namespace=\"\", frequency=500):\n\n        self.ns = namespace\n\n        self.topic = utils.solve_namespace(namespace + \"/\" + topic)\n\n        # Publisher to outward topic\n        self.pub = rospy.Publisher(self.topic, Imu, queue_size=10)\n\n        prefix = \"\" if not namespace else namespace + \"_\"\n        base_link = \"base_link\"\n\n        gravity_on_base_link = np.array([0, 0, 9.81])\n\n        rate = rospy.Rate(frequency)\n\n        while not rospy.is_shutdown():\n            msg = Imu()\n            msg.header.frame_id = prefix + base_link\n            msg.header.stamp = rospy.Time.now()\n            msg.linear_acceleration = conversions.to_vector3(gravity_on_base_link)\n            self.pub.publish(msg)\n            try:\n                rate.sleep()\n            except rospy.ROSInterruptException:\n                pass\n\n\ndef main():\n    \"\"\" Main function to be run. \"\"\"\n    parser = argparse.ArgumentParser(description='Filter FT signal')\n    parser.add_argument('-ns', '--namespace', type=str, help='Namespace', required=False, default=\"\")\n    \n    args, unknown = parser.parse_known_args()\n\n    rospy.init_node('imu_fake')\n\n    ft_sensor = ImuFake(topic=\"imu\", namespace=args.namespace)\n    \n    rospy.spin()\n\n\nmain()\n"
  },
  {
    "path": "ur_control/scripts/joint_position_keyboard.py",
    "content": "#!/usr/bin/env python\n\n# The MIT License (MIT)\n#\n# Copyright (c) 2018-2021 Cristian Beltran\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to deal\n# in the Software without restriction, including without limitation the rights\n# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n# copies of the Software, and to permit persons to whom the Software is\n# furnished to do so, subject to the following conditions:\n#\n# The above copyright notice and this permission notice shall be included in all\n# copies or substantial portions of the Software.\n#\n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n# SOFTWARE.\n#\n# Author: Cristian Beltran\n\n\"\"\"\nUR Joint Position Example: keyboard\n\"\"\"\nimport argparse\n\nimport rospy\n\nfrom ur_control.arm import Arm\nfrom ur_control import transformations\n\nimport getch\n\nimport numpy as np\n\nfrom ur_control.constants import GripperType\nnp.set_printoptions(linewidth=np.inf)\nnp.set_printoptions(suppress=True)\n\n\ndef map_keyboard():\n    def print_robot_state():\n        print(\"Joint angles:\", np.round(arm.joint_angles(), 4).tolist())\n        print(\"EE Pose:\", np.round(arm.end_effector(), 5).tolist())\n        print(\"EE Pose (euler):\", np.round(arm.end_effector(rot_type=\"euler\"), 5).tolist())\n        if arm.gripper:\n            print(\"Gripper angle:\", np.round(arm.gripper.get_position(), 4))\n            print(\"Gripper position:\", np.round(arm.gripper.opening_width, 4))\n            print(\"Gripper percentage:\", np.round(arm.gripper.get_opening_percentage(), 4))\n\n    def set_j(joint_name, sign):\n        global delta_q\n        current_position = arm.joint_angles()\n        current_position[joint_name] += delta_q * sign\n        arm.set_joint_positions(positions=current_position, target_time=0.25)\n\n    def update_d(delta, increment):\n        if delta == 'q':\n            global delta_q\n            delta_q += np.deg2rad(increment)\n            print((\"delta_q\", np.rad2deg(delta_q)))\n        if delta == 'x':\n            global delta_x\n            delta_x += increment\n            print((\"delta_x\", delta_x))\n\n    def set_pose_ik(dim, sign):\n        global delta_x\n        global delta_q\n\n        x = arm.end_effector()\n        delta = np.zeros(6)\n\n        if dim <= 2:  # position\n            delta[dim] += delta_x * sign\n        else:  # rotation\n            delta[dim] += delta_q * sign\n\n        xc = transformations.transform_pose(x, delta, rotated_frame=relative_to_tcp)\n        arm.set_target_pose(pose=xc, target_time=0.25)\n\n    def open_gripper():\n        arm.gripper.open()\n\n    def close_gripper():\n        arm.gripper.close()\n\n    def move_gripper(delta):\n        cpose = arm.gripper.get_position()\n        cpose += delta\n        arm.gripper.command(cpose)\n\n    global delta_q\n    global delta_x\n    delta_q = np.deg2rad(1.0)\n    delta_x = 0.005\n\n    bindings = {\n        #   key: (function, args, description)\n        'z': (set_j, [0, 1], \"shoulder_pan_joint increase\"),\n        'v': (set_j, [0, -1], \"shoulder_pan_joint decrease\"),\n        'x': (set_j, [1, 1], \"shoulder_lift_joint increase\"),\n        'c': (set_j, [1, -1], \"shoulder_lift_joint decrease\"),\n        'a': (set_j, [2, 1], \"elbow_joint increase\"),\n        'f': (set_j, [2, -1], \"elbow_joint decrease\"),\n        's': (set_j, [3, 1], \"wrist_1_joint increase\"),\n        'd': (set_j, [3, -1], \"wrist_1_joint decrease\"),\n        'q': (set_j, [4, 1], \"wrist_2_joint increase\"),\n        'r': (set_j, [4, -1], \"wrist_2_joint decrease\"),\n        'w': (set_j, [5, 1], \"wrist_3_joint increase\"),\n        'e': (set_j, [5, -1], \"wrist_3_joint decrease\"),\n        'p': (print_robot_state, [], \"right: printing\"),\n        # Task Space\n        'h': (set_pose_ik, [0, 1], \"x increase\"),\n        'k': (set_pose_ik, [0, -1], \"x decrease\"),\n        'y': (set_pose_ik, [1, 1], \"y increase\"),\n        'i': (set_pose_ik, [1, -1], \"y decrease\"),\n        'u': (set_pose_ik, [2, 1], \"z increase\"),\n        'j': (set_pose_ik, [2, -1], \"z decrease\"),\n        'n': (set_pose_ik, [3, 1], \"ax increase\"),\n        'm': (set_pose_ik, [3, -1], \"ax decrease\"),\n        ',': (set_pose_ik, [4, 1], \"ay increase\"),\n        '.': (set_pose_ik, [4, -1], \"ay decrease\"),\n        'o': (set_pose_ik, [5, 1], \"az increase\"),\n        'l': (set_pose_ik, [5, -1], \"az decrease\"),\n\n        # Increase or decrease delta\n        '1': (update_d, ['q', 0.25], \"delta_q increase\"),\n        '2': (update_d, ['q', -0.25], \"delta_q decrease\"),\n        '6': (update_d, ['x', 0.0001], \"delta_x increase\"),\n        '7': (update_d, ['x', -0.0001], \"delta_x decrease\"),\n\n        # Gripper\n        '5': (move_gripper, [0.005], \"open gripper a bit\"),\n        't': (open_gripper, [], \"open gripper\"),\n        'g': (close_gripper, [], \"close gripper\"),\n        'b': (move_gripper, [-0.005], \"close gripper a bit\"),\n    }\n    done = False\n    print(\"Controlling joints. Press ? for help, Esc to quit.\")\n    while not done and not rospy.is_shutdown():\n        c = getch.getch()\n        if c:\n            # catch Esc or ctrl-c\n            if c in ['\\x1b', '\\x03']:\n                done = True\n                rospy.signal_shutdown(\"Example finished.\")\n            elif c in bindings:\n                cmd = bindings[c]\n                # expand binding to something like \"set_j(right, 's0', 0.1)\"\n                cmd[0](*cmd[1])\n                print((\"command: %s\" % (cmd[2], )))\n            else:\n                print(\"key bindings: \")\n                print(\"  Esc: Quit\")\n                print(\"  ?: Help\")\n                for key, val in sorted(\n                        list(bindings.items()), key=lambda x: x[1][2]):\n                    print((\"  %s: %s\" % (key, val[2])))\n\n\ndef main():\n    \"\"\"Joint Position Example: Keyboard Control\n\n    Use your dev machine's keyboard to control joint positions.\n\n    Each key corresponds to increasing or decreasing the angle\n    of a joint on one of Baxter's arms. Each arm is represented\n    by one side of the keyboard and inner/outer key pairings\n    on each row for each joint.\n    \"\"\"\n    epilog = \"\"\"\nSee help inside the example with the '?' key for key bindings.\n    \"\"\"\n    arg_fmt = argparse.RawDescriptionHelpFormatter\n    parser = argparse.ArgumentParser(\n        formatter_class=arg_fmt, description=main.__doc__, epilog=epilog)\n    parser.add_argument(\n        '--relative', action='store_true', help='Motion Relative to ee')\n    parser.add_argument(\n        '--namespace', type=str, help='Namespace of arm (useful when having multiple arms)', default=None)\n    parser.add_argument(\n        '--gripper', type=str, help='Load gripper controller, indicate the gripper type (ROBOTIQ or GENERIC)', default=\"\")\n    parser.add_argument(\n        '--tcp', type=str, help='Tool Center Point or End-Effector frame for IK without joint prefix', default='tool0')\n\n    args = parser.parse_args(rospy.myargv()[1:])\n\n    rospy.init_node(\"joint_position_keyboard\", log_level=rospy.INFO)\n\n    global relative_to_tcp\n    relative_to_tcp = args.relative\n\n    tcp_link = args.tcp\n    joints_prefix = args.namespace + '_' if args.namespace else None\n\n    if args.gripper:\n        if str(args.gripper).lower() == \"robotiq\":\n            gripper = GripperType.ROBOTIQ\n        elif str(args.gripper).lower() == \"generic\":\n            gripper = GripperType.GENERIC\n        else:\n            raise ValueError(f\"Invalid gripper type `{args.gripper}`. Supported types: ROBOTIQ or GENERIC\")\n    else:\n        gripper = None\n\n    global arm\n    arm = Arm(namespace=args.namespace,\n              gripper_type=gripper,\n              joint_names_prefix=joints_prefix,\n              ee_link=tcp_link)\n\n    map_keyboard()\n    print(\"Done.\")\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "ur_control/scripts/joint_position_mouse6d.py",
    "content": "#!/usr/bin/env python\n\n# The MIT License (MIT)\n#\n# Copyright (c) 2018-2021 Cristian Beltran\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to deal\n# in the Software without restriction, including without limitation the rights\n# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n# copies of the Software, and to permit persons to whom the Software is\n# furnished to do so, subject to the following conditions:\n#\n# The above copyright notice and this permission notice shall be included in all\n# copies or substantial portions of the Software.\n#\n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n# SOFTWARE.\n#\n# Author: Cristian Beltran\n\n\"\"\"\nUR Joint Position Example: 3Dconnexion mouse\n\nrequires ros-$ROS-VERSION-spacenav-node\nand to launch roslaunch spacenav_node classic.launch\n#TODO launch automatically\n\"\"\"\nimport argparse\n\nimport rospy\n\nfrom ur_control.arm import Arm\nfrom ur_control.mouse_6d import Mouse6D\nfrom ur_control import transformations\n\nfrom ur_ikfast import ur_kinematics\n\nimport numpy as np\n\nnp.set_printoptions(suppress=True)\nur3e_arm = ur_kinematics.URKinematics('ur3e')\nmouse6d = Mouse6D()\n\naxes = 'rxyz'\n\n\ndef e2q(e):\n    return transformations.quaternion_from_euler(e[0], e[1], e[2], axes=axes)\n\n\ndef print_robot_state():\n    print((\"Joint angles:\", np.round(arm.joint_angles(), 3)))\n    print((\"End Effector:\", np.round(arm.end_effector(rot_type='euler'), 3)))\n\n\ndef start_control(motion_type=\"linear\"):\n    print(\"Start moving. type\", motion_type)\n    rate = rospy.Rate(125)\n    delta_x = 0.01\n    delta_q = np.deg2rad(1)\n    while not rospy.is_shutdown():\n        x = arm.end_effector()\n        xd = np.array(mouse6d.twist)\n\n        xd[:3] = [delta_x*np.sign(xd[i]) if abs(xd[i]) > 0.15 else 0.0 for i in range(3)]\n        xd[3:] = [delta_q*np.sign(xd[3+i]) if abs(xd[3+i]) > 0.15 else 0.0 for i in range(3)]\n        if motion_type == \"rotated\":\n            xd[2] *= -1\n        elif motion_type == \"linear\":\n            pass\n        else:\n            print(\"motion_type not supported\", motion_type)\n            break\n\n        x = transformations.pose_from_angular_velocity(x, xd, dt=0.25)\n        if mouse6d.joy_buttons[0] == 1:\n            print_robot_state()\n\n        arm.set_target_pose_flex(pose=x, t=0.25)\n        rate.sleep()\n\n\ndef main():\n    \"\"\" 3D mouse Control \"\"\"\n    arg_fmt = argparse.RawDescriptionHelpFormatter\n    parser = argparse.ArgumentParser(\n        formatter_class=arg_fmt, description=main.__doc__)\n    parser.add_argument('-r', action='store_true', help='move using relative rotation of end-effector')\n    parser.add_argument(\n        '--robot', action='store_true', help='for the real robot')\n    parser.add_argument(\n        '--beta', action='store_true', help='for the real robot. beta driver')\n    args = parser.parse_args(rospy.myargv()[1:])\n\n    rospy.init_node(\"joint_position_keyboard\")\n\n    global arm\n    arm = Arm(ft_sensor=False)\n\n    start_control()\n    print(\"Done.\")\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "ur_control/scripts/moveit_tutorial.py",
    "content": "#!/usr/bin/env python\n\n# The MIT License (MIT)\n#\n# Copyright (c) 2018-2021 Cristian Beltran\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to deal\n# in the Software without restriction, including without limitation the rights\n# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n# copies of the Software, and to permit persons to whom the Software is\n# furnished to do so, subject to the following conditions:\n#\n# The above copyright notice and this permission notice shall be included in all\n# copies or substantial portions of the Software.\n#\n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n# SOFTWARE.\n#\n# Author: Cristian Beltran\n\nimport argparse\nimport sys\nimport copy\nimport rospy\nimport moveit_commander\nimport moveit_msgs.msg\nimport geometry_msgs.msg\nfrom math import pi\nfrom std_msgs.msg import String\nfrom moveit_commander.conversions import pose_to_list\n\nimport signal\n\n\ndef signal_handler(sig, frame):\n    print('You pressed Ctrl+C!')\n    sys.exit(0)\n\n\nsignal.signal(signal.SIGINT, signal_handler)\n\n\ndef all_close(goal, actual, tolerance):\n    \"\"\"\n    Convenience method for testing if a list of values are within a tolerance of their counterparts in another list\n    @param: goal       A list of floats, a Pose or a PoseStamped\n    @param: actual     A list of floats, a Pose or a PoseStamped\n    @param: tolerance  A float\n    @returns: bool\n    \"\"\"\n    all_equal = True\n    if type(goal) is list:\n        for index in range(len(goal)):\n            if abs(actual[index] - goal[index]) > tolerance:\n                return False\n\n    elif type(goal) is geometry_msgs.msg.PoseStamped:\n        return all_close(goal.pose, actual.pose, tolerance)\n\n    elif type(goal) is geometry_msgs.msg.Pose:\n        return all_close(pose_to_list(goal), pose_to_list(actual), tolerance)\n\n    return True\n\n\nclass MoveGroupPythonIntefaceTutorial(object):\n    \"\"\"MoveGroupPythonIntefaceTutorial\"\"\"\n\n    def __init__(self):\n        super(MoveGroupPythonIntefaceTutorial, self).__init__()\n\n        # BEGIN_SUB_TUTORIAL setup\n        ##\n        # First initialize `moveit_commander`_ and a `rospy`_ node:\n        moveit_commander.roscpp_initialize(sys.argv)\n        rospy.init_node('move_group_python_interface_tutorial', anonymous=True)\n\n        # Instantiate a `RobotCommander`_ object. Provides information such as the robot's\n        # kinematic model and the robot's current joint states\n        robot = moveit_commander.RobotCommander()\n\n        # Instantiate a `PlanningSceneInterface`_ object.  This provides a remote interface\n        # for getting, setting, and updating the robot's internal understanding of the\n        # surrounding world:\n        scene = moveit_commander.PlanningSceneInterface()\n\n        # Instantiate a `MoveGroupCommander`_ object.  This object is an interface\n        # to a planning group (group of joints).  In this tutorial the group is the primary\n        # arm joints in the ur3e robot, so we set the group's name to \"ur3e_arm\".\n        # If you are using a different robot, change this value to the name of your robot\n        # arm planning group.\n        # This interface can be used to plan and execute motions:\n        group_name = \"arm\"\n        move_group = moveit_commander.MoveGroupCommander(group_name)\n\n        # Create a `DisplayTrajectory`_ ROS publisher which is used to display\n        # trajectories in Rviz:\n        display_trajectory_publisher = rospy.Publisher('/move_group/display_planned_path',\n                                                       moveit_msgs.msg.DisplayTrajectory,\n                                                       queue_size=20)\n\n        # END_SUB_TUTORIAL\n\n        # Misc variables\n        self.box_name = ''\n        self.robot = robot\n        self.scene = scene\n        self.move_group = move_group\n        self.display_trajectory_publisher = display_trajectory_publisher\n        self.planning_frame = move_group.get_planning_frame()\n        self.eef_link = move_group.get_end_effector_link()\n        self.group_names = robot.get_group_names()\n\n    def display_basic_info(self):\n            # BEGIN_SUB_TUTORIAL basic_info\n        ##\n        # Getting Basic Information\n        # ^^^^^^^^^^^^^^^^^^^^^^^^^\n        # We can get the name of the reference frame for this robot:\n        print(\"============ Planning frame: %s\" % self.planning_frame)\n\n        # We can also print the name of the end-effector link for this group:\n        print(\"============ End effector link: %s\" % self.eef_link)\n\n        # We can get a list of all the groups in the robot:\n        print(\"============ Available Planning Groups:\", self.group_names)\n\n        # Sometimes for debugging it is useful to print the entire state of the\n        # robot:\n        print(\"============ Printing robot state\")\n        print(self.robot.get_current_state())\n        print(\"\")\n        # END_SUB_TUTORIAL\n\n    def go_to_joint_state(self):\n        # Copy class variables to local variables to make the web tutorials more clear.\n        # In practice, you should use the class variables directly unless you have a good\n        # reason not to.\n        move_group = self.move_group\n\n        # BEGIN_SUB_TUTORIAL plan_to_joint_state\n        ##\n        # Planning to a Joint Goal\n        # ^^^^^^^^^^^^^^^^^^^^^^^^\n        # The ur3e's zero configuration is at a `singularity <https://www.quora.com/Robotics-What-is-meant-by-kinematic-singularity>`_ so the first\n        # thing we want to do is move it to a slightly better configuration.\n        # We can get the joint values from the group and adjust some of the values:\n        joint_goal = move_group.get_current_joint_values()\n        joint_goal[0] = 1.57\n        joint_goal[1] = -1.57\n        joint_goal[2] = 1.30\n        joint_goal[3] = -1.57\n        joint_goal[4] = -1.57\n        joint_goal[5] = 0\n\n        # The go command can be called with joint values, poses, or without any\n        # parameters if you have already set the pose or joint target for the group\n        move_group.go(joint_goal, wait=True)\n\n        # Calling ``stop()`` ensures that there is no residual movement\n        move_group.stop()\n\n        # END_SUB_TUTORIAL\n\n        # For testing:\n        print(\"Current pose\", move_group.get_current_pose().pose)\n        current_joints = move_group.get_current_joint_values()\n        return all_close(joint_goal, current_joints, 0.01)\n\n    def go_to_pose_goal(self):\n        # Copy class variables to local variables to make the web tutorials more clear.\n        # In practice, you should use the class variables directly unless you have a good\n        # reason not to.\n        move_group = self.move_group\n\n        # BEGIN_SUB_TUTORIAL plan_to_pose\n        ##\n        # Planning to a Pose Goal\n        # ^^^^^^^^^^^^^^^^^^^^^^^\n        # We can plan a motion for this group to a desired pose for the\n        # end-effector:\n        pose_goal = move_group.get_current_pose().pose\n        pose_goal.position.y += -0.1\n\n        move_group.set_pose_target(pose_goal)\n\n        # Now, we call the planner to compute the plan and execute it.\n        plan = move_group.go(wait=True)\n        # Calling `stop()` ensures that there is no residual movement\n        move_group.stop()\n        # It is always good to clear your targets after planning with poses.\n        # Note: there is no equivalent function for clear_joint_value_targets()\n        move_group.clear_pose_targets()\n\n        # END_SUB_TUTORIAL\n\n        # For testing:\n        # Note that since this section of code will not be included in the tutorials\n        # we use the class variable rather than the copied state variable\n        current_pose = self.move_group.get_current_pose().pose\n        return all_close(pose_goal, current_pose, 0.01)\n\n    def plan_cartesian_path(self, scale=1):\n        # Copy class variables to local variables to make the web tutorials more clear.\n        # In practice, you should use the class variables directly unless you have a good\n        # reason not to.\n        move_group = self.move_group\n\n        # BEGIN_SUB_TUTORIAL plan_cartesian_path\n        ##\n        # Cartesian Paths\n        # ^^^^^^^^^^^^^^^\n        # You can plan a Cartesian path directly by specifying a list of waypoints\n        # for the end-effector to go through. If executing  interactively in a\n        # Python shell, set scale = 1.0.\n        ##\n        waypoints = []\n\n        wpose = move_group.get_current_pose().pose\n        wpose.position.z -= scale * 0.1  # First move up (z)\n        wpose.position.y += scale * 0.2  # and sideways (y)\n        waypoints.append(copy.deepcopy(wpose))\n\n        wpose.position.x += scale * 0.1  # Second move forward/backwards in (x)\n        waypoints.append(copy.deepcopy(wpose))\n\n        wpose.position.y -= scale * 0.1  # Third move sideways (y)\n        waypoints.append(copy.deepcopy(wpose))\n\n        # We want the Cartesian path to be interpolated at a resolution of 1 cm\n        # which is why we will specify 0.01 as the eef_step in Cartesian\n        # translation.  We will disable the jump threshold by setting it to 0.0,\n        # ignoring the check for infeasible jumps in joint space, which is sufficient\n        # for this tutorial.\n        (plan, fraction) = move_group.compute_cartesian_path(\n            waypoints,   # waypoints to follow\n            0.01,        # eef_step\n            0.0)         # jump_threshold\n\n        # Note: We are just planning, not asking move_group to actually move the robot yet:\n        return plan, fraction\n\n        # END_SUB_TUTORIAL\n\n    def display_trajectory(self, plan):\n        # Copy class variables to local variables to make the web tutorials more clear.\n        # In practice, you should use the class variables directly unless you have a good\n        # reason not to.\n        robot = self.robot\n        display_trajectory_publisher = self.display_trajectory_publisher\n\n        # BEGIN_SUB_TUTORIAL display_trajectory\n        ##\n        # Displaying a Trajectory\n        # ^^^^^^^^^^^^^^^^^^^^^^^\n        # You can ask RViz to visualize a plan (aka trajectory) for you. But the\n        # group.plan() method does this automatically so this is not that useful\n        # here (it just displays the same trajectory again):\n        ##\n        # A `DisplayTrajectory`_ msg has two primary fields, trajectory_start and trajectory.\n        # We populate the trajectory_start with our current robot state to copy over\n        # any AttachedCollisionObjects and add our plan to the trajectory.\n        display_trajectory = moveit_msgs.msg.DisplayTrajectory()\n        display_trajectory.trajectory_start = robot.get_current_state()\n        display_trajectory.trajectory.append(plan)\n        # Publish\n        display_trajectory_publisher.publish(display_trajectory)\n\n        # END_SUB_TUTORIAL\n\n    def execute_plan(self, plan):\n        # Copy class variables to local variables to make the web tutorials more clear.\n        # In practice, you should use the class variables directly unless you have a good\n        # reason not to.\n        move_group = self.move_group\n\n        # BEGIN_SUB_TUTORIAL execute_plan\n        ##\n        # Executing a Plan\n        # ^^^^^^^^^^^^^^^^\n        # Use execute if you would like the robot to follow\n        # the plan that has already been computed:\n        move_group.execute(plan, wait=True)\n\n        # **Note:** The robot's current joint state must be within some tolerance of the\n        # first waypoint in the `RobotTrajectory`_ or ``execute()`` will fail\n        # END_SUB_TUTORIAL\n\n    def wait_for_state_update(self, box_is_known=False, box_is_attached=False, timeout=4):\n        # Copy class variables to local variables to make the web tutorials more clear.\n        # In practice, you should use the class variables directly unless you have a good\n        # reason not to.\n        box_name = self.box_name\n        scene = self.scene\n\n        # BEGIN_SUB_TUTORIAL wait_for_scene_update\n        ##\n        # Ensuring Collision Updates Are Receieved\n        # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n        # If the Python node dies before publishing a collision object update message, the message\n        # could get lost and the box will not appear. To ensure that the updates are\n        # made, we wait until we see the changes reflected in the\n        # ``get_attached_objects()`` and ``get_known_object_names()`` lists.\n        # For the purpose of this tutorial, we call this function after adding,\n        # removing, attaching or detaching an object in the planning scene. We then wait\n        # until the updates have been made or ``timeout`` seconds have passed\n        start = rospy.get_time()\n        seconds = rospy.get_time()\n        while (seconds - start < timeout) and not rospy.is_shutdown():\n            # Test if the box is in attached objects\n            attached_objects = scene.get_attached_objects([box_name])\n            is_attached = len(attached_objects.keys()) > 0\n\n            # Test if the box is in the scene.\n            # Note that attaching the box will remove it from known_objects\n            is_known = box_name in scene.get_known_object_names()\n\n            # Test if we are in the expected state\n            if (box_is_attached == is_attached) and (box_is_known == is_known):\n                return True\n\n            # Sleep so that we give other threads time on the processor\n            rospy.sleep(0.1)\n            seconds = rospy.get_time()\n\n        # If we exited the while loop without returning then we timed out\n        return False\n        # END_SUB_TUTORIAL\n\n    def add_box(self, timeout=4):\n        # Copy class variables to local variables to make the web tutorials more clear.\n        # In practice, you should use the class variables directly unless you have a good\n        # reason not to.\n        box_name = self.box_name\n        scene = self.scene\n\n        # BEGIN_SUB_TUTORIAL add_box\n        ##\n        # Adding Objects to the Planning Scene\n        # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n        # First, we will create a box in the planning scene at the location of the left finger:\n        box_pose = geometry_msgs.msg.PoseStamped()\n        box_pose.header.frame_id = \"gripper_tip_link\"\n        box_pose.pose.orientation.w = 1.0\n        box_pose.pose.position.z = 0.0  # slightly above the end effector\n        box_name = \"box_name\"\n        scene.add_box(box_name, box_pose, size=(0.04, 0.04, 0.04))\n\n        # END_SUB_TUTORIAL\n        # Copy local variables back to class variables. In practice, you should use the class\n        # variables directly unless you have a good reason not to.\n        self.box_name = box_name\n        return self.wait_for_state_update(box_is_known=True, timeout=timeout)\n\n    def add_box2(self, timeout=4):\n        # Copy class variables to local variables to make the web tutorials more clear.\n        # In practice, you should use the class variables directly unless you have a good\n        # reason not to.\n        box_name = self.box_name\n        scene = self.scene\n\n        # BEGIN_SUB_TUTORIAL add_box\n        ##\n        # Adding Objects to the Planning Scene\n        # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n        # First, we will create a box in the planning scene at the location of the left finger:\n        box_pose = geometry_msgs.msg.PoseStamped()\n        box_pose.header.frame_id = \"base_link\"\n        box_pose.pose.orientation.w = 1.0\n        box_pose.pose.position.x = 0.93  # slightly above the end effector\n        box_pose.pose.position.y = 0.25  # slightly above the end effector\n        box_pose.pose.position.z = 1.02  # slightly above the end effector\n        box_name = \"box_name\"\n        scene.add_box(box_name, box_pose, size=(0.03, 0.03, 0.03))\n\n        # END_SUB_TUTORIAL\n        # Copy local variables back to class variables. In practice, you should use the class\n        # variables directly unless you have a good reason not to.\n        self.box_name = box_name\n        return self.wait_for_state_update(box_is_known=True, timeout=timeout)\n\n    def attach_box(self, timeout=4):\n        # Copy class variables to local variables to make the web tutorials more clear.\n        # In practice, you should use the class variables directly unless you have a good\n        # reason not to.\n        box_name = self.box_name\n        robot = self.robot\n        scene = self.scene\n        eef_link = self.eef_link\n        group_names = self.group_names\n\n        # BEGIN_SUB_TUTORIAL attach_object\n        ##\n        # Attaching Objects to the Robot\n        # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n        # Next, we will attach the box to the ur3e wrist. Manipulating objects requires the\n        # robot be able to touch them without the planning scene reporting the contact as a\n        # collision. By adding link names to the ``touch_links`` array, we are telling the\n        # planning scene to ignore collisions between those links and the box. For the ur3e\n        # robot, we set ``grasping_group = 'hand'``. If you are using a different robot,\n        # you should change this value to the name of your end effector group name.\n        grasping_group = 'gripper'\n        touch_links = robot.get_link_names(group=grasping_group)\n        scene.attach_box(eef_link, box_name, touch_links=touch_links)\n        # END_SUB_TUTORIAL\n\n        # We wait for the planning scene to update.\n        return self.wait_for_state_update(box_is_attached=True, box_is_known=False, timeout=timeout)\n\n    def detach_box(self, name=None, timeout=4):\n        # Copy class variables to local variables to make the web tutorials more clear.\n        # In practice, you should use the class variables directly unless you have a good\n        # reason not to.\n        box_name = self.box_name if name is None else name\n        scene = self.scene\n        eef_link = self.eef_link\n\n        # BEGIN_SUB_TUTORIAL detach_object\n        ##\n        # Detaching Objects from the Robot\n        # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n        # We can also detach and remove the object from the planning scene:\n        scene.remove_attached_object(eef_link, name=box_name)\n        # END_SUB_TUTORIAL\n\n        # We wait for the planning scene to update.\n        return self.wait_for_state_update(box_is_known=True, box_is_attached=False, timeout=timeout)\n\n    def remove_box(self, name=None, timeout=4):\n        # Copy class variables to local variables to make the web tutorials more clear.\n        # In practice, you should use the class variables directly unless you have a good\n        # reason not to.\n        box_name = self.box_name if name is None else name\n        scene = self.scene\n\n        # BEGIN_SUB_TUTORIAL remove_object\n        ##\n        # Removing Objects from the Planning Scene\n        # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n        # We can remove the box from the world.\n        scene.remove_world_object(box_name)\n\n        # **Note:** The object must be detached before we can remove it from the world\n        # END_SUB_TUTORIAL\n\n        # We wait for the planning scene to update.\n        return self.wait_for_state_update(box_is_attached=False, box_is_known=False, timeout=timeout)\n\n\ndef main():\n    \"\"\"Moveit Control Example\n\n    Test several functionalities of MoveIt with the Python interface.\n    \"\"\"\n    arg_fmt = argparse.RawDescriptionHelpFormatter\n    parser = argparse.ArgumentParser(\n        formatter_class=arg_fmt, description=main.__doc__)\n    parser.add_argument(\n        '-j', '--move-joints', action='store_true', help='Movement using joint state goal')\n    parser.add_argument(\n        '-p', '--move-pose',   action='store_true', help='Movement using a pose goal')\n    parser.add_argument(\n        '-a', '--add-box',     action='store_true', help='Add & Attach a box to the gripper')\n    parser.add_argument(\n        '-r', '--remove-box',  action='store_true', help='Detach & Remove box')\n    parser.add_argument(\n        '-d', '--detach-box',  action='store_true', help='Detach box')\n    parser.add_argument(\n        '--tutorial',         action='store_true', help='Execute original tutorial sequence')\n    args = parser.parse_args(rospy.myargv()[1:])\n\n    tutorial = MoveGroupPythonIntefaceTutorial()\n    rospy.sleep(1)\n    if args.move_joints:\n        tutorial.display_basic_info()\n        tutorial.go_to_joint_state()\n    elif args.move_pose:\n        tutorial.display_basic_info()\n        tutorial.go_to_pose_goal()\n    elif args.add_box:\n        tutorial.add_box2()\n    elif args.remove_box:\n        tutorial.remove_box()\n    elif args.detach_box:\n        tutorial.detach_box()\n    elif args.tutorial:\n        try:\n            print(\"\")\n            print(\"----------------------------------------------------------\")\n            print(\"Welcome to the MoveIt MoveGroup Python Interface Tutorial\")\n            print(\"----------------------------------------------------------\")\n            print(\"Press Ctrl-D to exit at any time\")\n            print(\"\")\n            print(\"============ Press `Enter` to begin the tutorial by setting up the moveit_commander ...\")\n            input()\n            tutorial.display_basic_info()\n            print(\"============ Press `Enter` to execute a movement using a joint state goal ...\")\n            input()\n            tutorial.go_to_joint_state()\n\n            print(\"============ Press `Enter` to execute a movement using a pose goal ...\")\n            input()\n            tutorial.go_to_pose_goal()\n\n            print(\"============ Press `Enter` to plan and display a Cartesian path ...\")\n            input()\n            cartesian_plan, fraction = tutorial.plan_cartesian_path()\n\n            print(\"============ Press `Enter` to display a saved trajectory (this will replay the Cartesian path)  ...\")\n            input()\n            tutorial.display_trajectory(cartesian_plan)\n\n            print(\"============ Press `Enter` to execute a saved path ...\")\n            input()\n            tutorial.execute_plan(cartesian_plan)\n\n            print(\"============ Press `Enter` to add a box to the planning scene ...\")\n            input()\n            tutorial.add_box()\n\n            print(\"============ Press `Enter` to attach a Box to the ur3e robot ...\")\n            input()\n            tutorial.attach_box()\n\n            print(\"============ Press `Enter` to plan and execute a path with an attached collision object ...\")\n            input()\n            cartesian_plan, fraction = tutorial.plan_cartesian_path(scale=-1)\n            tutorial.execute_plan(cartesian_plan)\n\n            print(\"============ Press `Enter` to detach the box from the ur3e robot ...\")\n            input()\n            tutorial.detach_box()\n\n            print(\"============ Press `Enter` to remove the box from the planning scene ...\")\n            input()\n            tutorial.remove_box()\n\n            print(\"============ Python tutorial demo complete!\")\n        except rospy.ROSInterruptException:\n            return\n        except KeyboardInterrupt:\n            return\n\n\nif __name__ == '__main__':\n    main()\n\n# BEGIN_TUTORIAL\n# .. _moveit_commander:\n# http://docs.ros.org/melodic/api/moveit_commander/html/namespacemoveit__commander.html\n##\n# .. _MoveGroupCommander:\n# http://docs.ros.org/melodic/api/moveit_commander/html/classmoveit__commander_1_1move__group_1_1MoveGroupCommander.html\n##\n# .. _RobotCommander:\n# http://docs.ros.org/melodic/api/moveit_commander/html/classmoveit__commander_1_1robot_1_1RobotCommander.html\n##\n# .. _PlanningSceneInterface:\n# http://docs.ros.org/melodic/api/moveit_commander/html/classmoveit__commander_1_1planning__scene__interface_1_1PlanningSceneInterface.html\n##\n# .. _DisplayTrajectory:\n# http://docs.ros.org/melodic/api/moveit_msgs/html/msg/DisplayTrajectory.html\n##\n# .. _RobotTrajectory:\n# http://docs.ros.org/melodic/api/moveit_msgs/html/msg/RobotTrajectory.html\n##\n# .. _rospy:\n# http://docs.ros.org/melodic/api/rospy/html/\n# CALL_SUB_TUTORIAL imports\n# CALL_SUB_TUTORIAL setup\n# CALL_SUB_TUTORIAL basic_info\n# CALL_SUB_TUTORIAL plan_to_joint_state\n# CALL_SUB_TUTORIAL plan_to_pose\n# CALL_SUB_TUTORIAL plan_cartesian_path\n# CALL_SUB_TUTORIAL display_trajectory\n# CALL_SUB_TUTORIAL execute_plan\n# CALL_SUB_TUTORIAL add_box\n# CALL_SUB_TUTORIAL wait_for_scene_update\n# CALL_SUB_TUTORIAL attach_object\n# CALL_SUB_TUTORIAL detach_object\n# CALL_SUB_TUTORIAL remove_object\n# END_TUTORIAL\n"
  },
  {
    "path": "ur_control/scripts/wrench_republish.py",
    "content": "#!/usr/bin/env python\n\n# The MIT License (MIT)\n#\n# Copyright (c) 2018-2021 Cristian Beltran\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to deal\n# in the Software without restriction, including without limitation the rights\n# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n# copies of the Software, and to permit persons to whom the Software is\n# furnished to do so, subject to the following conditions:\n#\n# The above copyright notice and this permission notice shall be included in all\n# copies or substantial portions of the Software.\n#\n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n# SOFTWARE.\n#\n# Author: Cristian Beltran\n\nimport argparse\nimport rospy\n\nimport numpy as np\nfrom ur_control import utils, arm, conversions\n\nfrom geometry_msgs.msg import WrenchStamped\n\n\nclass FTsensor(object):\n\n    def __init__(self):\n        robot_name = \"b_bot\"\n        tcp_link = \"knife_center\"\n        self.arm = arm.Arm(ft_topic=\"wrench\", namespace=robot_name,\n                           joint_names_prefix=robot_name+'_', robot_urdf=robot_name,\n                           robot_urdf_package='trufus_scene_description',\n                           ee_link=tcp_link)\n\n        self.in_topic = '/wrench'\n        self.out_topic = '/test/wrench'\n\n        rospy.loginfo(\"Publishing filtered FT to %s\" % self.out_topic)\n\n        # Publisher to outward topic\n        self.pub = rospy.Publisher(self.out_topic, WrenchStamped, queue_size=10)\n\n        # Subscribe to incoming topic\n        rospy.Subscriber(self.in_topic, WrenchStamped, self.cb_raw)\n\n        rospy.loginfo('Pub successfully initialized')\n\n    def cb_raw(self, msg):\n        if rospy.is_shutdown():\n            return\n        msg_out = WrenchStamped()\n        msg_out.wrench = conversions.to_wrench(self.arm.get_ee_wrench(base_frame_control=True))\n        self.pub.publish(msg_out)\n\ndef main():\n    \"\"\" Main function to be run. \"\"\"\n\n    rospy.init_node('ft_filter')\n\n    FTsensor()\n\n    rospy.spin()\n\n\nmain()\n"
  },
  {
    "path": "ur_control/setup.py",
    "content": "#!/usr/bin/env python\n\nfrom distutils.core import setup\nfrom catkin_pkg.python_setup import generate_distutils_setup\n\nd = generate_distutils_setup(\n    packages=['ur_control'],\n    package_dir={'': 'src'}\n)\n\nsetup(**d)\n"
  },
  {
    "path": "ur_control/src/ur_control/__init__.py",
    "content": "\n"
  },
  {
    "path": "ur_control/src/ur_control/arm.py",
    "content": "# The MIT License (MIT)\n#\n# Copyright (c) 2018-2023 Cristian Beltran\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to deal\n# in the Software without restriction, including without limitation the rights\n# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n# copies of the Software, and to permit persons to whom the Software is\n# furnished to do so, subject to the following conditions:\n#\n# The above copyright notice and this permission notice shall be included in all\n# copies or substantial portions of the Software.\n#\n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n# SOFTWARE.\n#\n# Author: Cristian Beltran\n\nimport collections\nimport numpy as np\n\nimport rospy\nfrom geometry_msgs.msg import WrenchStamped\nfrom std_srvs.srv import Empty, SetBool, Trigger\n\nfrom ur_control import utils, spalg, conversions, transformations\nfrom ur_control.exceptions import InverseKinematicsException\nfrom ur_control.controllers_connection import ControllersConnection\nfrom ur_control.controllers import JointTrajectoryController\nfrom ur_control.grippers import GripperController, RobotiqGripper\nfrom ur_control.constants import BASE_LINK, EE_LINK, JOINT_TRAJECTORY_CONTROLLER, FT_SUBSCRIBER,  \\\n    ExecutionResult, IKSolverType, GripperType, \\\n    get_arm_joint_names\nfrom ur_control.ur_services import URServices\n\ntry:\n    from ur_ikfast import ur_kinematics as ur_ikfast\nexcept ImportError:\n    print(\"Import ur_ikfast not available, IKFAST would not be supported without it\")\nfrom ur_pykdl import ur_kinematics\nfrom trac_ik_python.trac_ik import IK as TRACK_IK_SOLVER\n\ncprint = utils.TextColors()\n\n\nclass Arm(object):\n    \"\"\" Universal Robots arm controller \"\"\"\n\n    def __init__(self,\n                 namespace: str = None,\n                 ik_solver: IKSolverType = IKSolverType.TRAC_IK,\n                 gripper_type: GripperType = GripperType.GENERIC,\n                 ft_topic: str = None,\n                 base_link: str = None,\n                 ee_link: str = None,\n                 joint_names_prefix: str = None):\n        \"\"\" \n\n        Parameters\n        ----------\n        namespace : optional\n            ROS namespace of the robot e.g., '/ns/robot_description'\n        ik_solver : optional\n            inverse kinematic solver to be used\n        gripper_type : optional\n            gripper control approach. Generic or specific for real Robotiq gripper\n        ft_topic: optional\n            topic from which to read the wrench\n        base_link: optional\n            robot base frame. Excluding the prefix used in 'joint_names_prefix'\n        ee_link: optional\n            end-effector frame. Excluding the prefix used in 'joint_names_prefix'\n        joint_names_prefix: optional\n            optionally specify a prefix when multiple robots are defined. For example,\n            if 'a_bot' is defined, all joints will be consider like 'a_bot_link_name'\n\n        Raises\n        ------\n        ValueError\n            If a non-supported gripper type or ik solver is defined\n\n        \"\"\"\n\n        self.ns = utils.solve_namespace(namespace)\n\n        base_link = utils.resolve_parameter(value=base_link, default_value=BASE_LINK)\n        ee_link = utils.resolve_parameter(value=ee_link, default_value=EE_LINK)\n\n        # Support for joint prefixes\n        self.joint_names_prefix = utils.resolve_parameter(joint_names_prefix, '')\n        self.base_link = base_link if joint_names_prefix is None else joint_names_prefix + base_link\n        self.ee_link = ee_link if joint_names_prefix is None else joint_names_prefix + ee_link\n\n        self.ik_solver = ik_solver\n\n        self.ft_topic = utils.resolve_parameter(value=ft_topic, default_value=FT_SUBSCRIBER)\n        self.current_ft_value = np.zeros(6)\n        self.wrench_queue = collections.deque(maxlen=25)  # store history of FT data\n\n        # self.max_joint_speed = np.deg2rad([100, 100, 100, 200, 200, 200]) # deg/s -> rad/s\n        self.max_joint_speed = np.deg2rad([191, 191, 191, 371, 371, 371])\n\n        cprint.ok(\"Initializing ur robot with parameters\")\n        cprint.ok(\"gripper: {}, ft_sensor_topic: {}, \\nbase_link: {}, ee_link: {}\"\n                  .format(gripper_type, self.ft_topic, self.base_link, self.ee_link))\n\n        self.__init_controllers__(gripper_type, joint_names_prefix)\n        self.__init_ik_solver__(self.base_link, self.ee_link)\n\n        self.__init_ft_sensor__()\n\n        self.controller_manager = ControllersConnection(self.ns)\n        self.dashboard_services = URServices(self.ns)\n\n### private methods ###\n\n    def __init_controllers__(self, gripper_type, joint_names_prefix=None):\n        self.joint_names = None if joint_names_prefix is None else get_arm_joint_names(joint_names_prefix)\n\n        self.joint_traj_controller = JointTrajectoryController(publisher_name=JOINT_TRAJECTORY_CONTROLLER,\n                                                               namespace=self.ns,\n                                                               joint_names=self.joint_names,\n                                                               timeout=1.0)\n\n        self.gripper = None\n\n        if not gripper_type:\n            rospy.logwarn(\"Loading without gripper\")\n            return\n\n        if gripper_type == GripperType.GENERIC:\n            self.gripper = GripperController(namespace=self.ns, prefix=self.joint_names_prefix, timeout=2.0)\n        elif gripper_type == GripperType.ROBOTIQ:\n            self.gripper = RobotiqGripper(namespace=self.ns, prefix=self.joint_names_prefix, timeout=2.0)\n        else:\n            raise ValueError(\"Invalid gripper type %s\" % gripper_type)\n\n    def __init_ik_solver__(self, base_link, ee_link):\n        # Instantiate KDL kinematics solver to compute forward kinematics\n        if rospy.has_param(\"robot_description\"):\n            self.kdl = ur_kinematics(base_link=base_link, ee_link=ee_link)\n        else:\n            raise ValueError(\"robot_description not found in the parameter server\")\n\n        # Instantiate Inverse kinematics solver\n        if self.ik_solver == IKSolverType.IKFAST:\n            # IKfast libraries\n            try:\n                # TODO use the parameter robot_description\n                self.arm_ikfast = ur_ikfast.URKinematics(self._robot_urdf)\n            except Exception:\n                raise ValueError(\"IK solver set to IKFAST but no ikfast found for: %s. \" % self._robot_urdf)\n        elif self.ik_solver == IKSolverType.TRAC_IK:\n            try:\n                self.trac_ik = TRACK_IK_SOLVER(base_link=base_link, tip_link=ee_link, solve_type=\"Distance\")\n            except Exception as e:\n                rospy.logerr(\"Could not instantiate TRAC_IK\" + str(e))\n        elif self.ik_solver == IKSolverType.KDL:\n            pass\n        else:\n            raise Exception(\"unsupported ik_solver\", self.ik_solver)\n\n    def __init_ft_sensor__(self):\n        # Publisher of wrench\n        ft_namespace = self.ns + self.ft_topic + '/filtered'\n        if not utils.topic_exist(ft_namespace):\n            rospy.logwarn(\"Filtered FT topic not found. Using raw sensor directly.\")\n            # Try the raw FT topic\n            ft_namespace = self.ns + self.ft_topic\n            rospy.Subscriber(ft_namespace, WrenchStamped, self.__ft_callback__)\n            self._zero_ft_filtered = lambda: None\n            self._ft_filtered = lambda: None\n        else:\n            rospy.Subscriber(ft_namespace, WrenchStamped, self.__ft_callback__)\n\n            self._zero_ft_filtered = rospy.ServiceProxy('%s/%s/filtered/zero_ftsensor' % (self.ns, self.ft_topic), Empty)\n            self._zero_ft_filtered.wait_for_service(rospy.Duration(2.0))\n\n            if not rospy.has_param(\"use_gazebo_sim\"):\n                self._zero_ft = rospy.ServiceProxy('%s/ur_hardware_interface/zero_ftsensor' % self.ns, Trigger)\n                self._zero_ft.wait_for_service(rospy.Duration(2.0))\n\n            self._ft_filtered = rospy.ServiceProxy('%s/%s/filtered/enable_filtering' % (self.ns, self.ft_topic), SetBool)\n            self._ft_filtered.wait_for_service(rospy.Duration(1.0))\n\n            # Check that the FT topic is publishing\n            if not utils.wait_for(lambda: self.current_ft_value is not None, timeout=2.0):\n                rospy.logerr('Timed out waiting for {0} topic'.format(ft_namespace))\n\n    def __ft_callback__(self, msg):\n        self.current_ft_value = conversions.from_wrench(msg.wrench)\n        self.wrench_queue.append(self.current_ft_value)\n\n### Data access methods ###\n\n    def inverse_kinematics(self,\n                           pose: np.ndarray,\n                           seed: np.ndarray = None,\n                           attempts: int = 0,\n                           verbose: bool = True) -> np.ndarray:\n        \"\"\"\n        return a joint configuration for a given Cartesian pose of the end-effector\n        (ee_link) if any.\n\n        Parameters\n        ----------\n        pose : \n            Cartesian pose of the end-effector defined as ee_link\n        seed : optional\n            if given, attempt to return a joint configuration closer to the seed\n        attempts : int, optional\n            number of attempts to find a IK solution. It may be useful for sample\n            based solvers such as TRAC-IK. It would not change the result of an\n            analytical solvers such as IKFast.\n        verbose : bool, optional\n            print a warning message when IK solutions are not found\n\n        Returns\n        -------\n        res : ndarray\n            Joint configuration if any or None\n\n        Raises\n        ------\n        ValueError\n            If the rot_type is different from 'quaternion' or 'euler'\n        \"\"\"\n        q_guess_ = seed if seed is not None else self.joint_angles()\n\n        if self.ik_solver == IKSolverType.IKFAST:\n            # TODO: transform pose to the default tip used by IKFast (tool0)\n            ik = self.arm_ikfast.inverse(pose, q_guess=q_guess_)\n        elif self.ik_solver == IKSolverType.TRAC_IK:\n            ik = self.trac_ik.get_ik(q_guess_, *pose)\n        elif self.ik_solver == IKSolverType.KDL:\n            ik = self.kdl.inverse_kinematics(pose[:3], pose[3:], seed=q_guess_)\n\n        if ik is None:\n            if attempts > 0:\n                return self.inverse_kinematics(pose, seed, attempts-1)\n            if verbose:\n                rospy.logwarn(f\"{self.ik_solver}: solution not found!\")\n            raise InverseKinematicsException(f\"{self.ik_solver}: solution not found!\")\n        return ik\n\n    def end_effector(self,\n                     joint_angles=None,\n                     rot_type='quaternion',\n                     tip_link=None) -> np.ndarray:\n        \"\"\" \n        Return the Cartesian pose of the end-effector in the robot base frame (base_link).\n\n        Parameters\n        ----------\n        joint_angles : ndarray, optional\n            If not given, the current joint configuration will be used.\n            If provided, the joint configuration is expected in the order given by constants.JOINT_ORDER\n        rot_type : str, optional\n            Rotation representation to be returned.\n            Valid types \"quaternion\" or \"euler\"\n        tip_link : str, optional\n            Return the Cartesian pose of the tip_link if provided.\n            Otherwise, use the default ee_link\n\n        Returns\n        -------\n        res : ndarray\n            The Cartesian pose in the form of \n            quaternion: [x, y, z, aw, ax, ay, az] or\n            euler: [x, y, z, roll, pitch, yaw]\n            in radians.\n\n        Raises\n        ------\n        ValueError\n            If the rot_type is different from 'quaternion' or 'euler'\n        \"\"\"\n\n        joint_angles = self.joint_angles() if joint_angles is None else joint_angles\n\n        if rot_type == 'quaternion':\n            # forward kinematics\n            return self.kdl.forward(joint_angles, tip_link)\n\n        elif rot_type == 'euler':\n            x = self.end_effector(joint_angles, tip_link=tip_link)\n            euler = np.array(transformations.euler_from_quaternion(x[3:], axes='sxyz'))\n            return np.concatenate((x[:3], euler))\n        elif rot_type == 'ortho6':\n            x = self.end_effector(joint_angles, tip_link=tip_link)\n            ortho6 = np.array(transformations.ortho6_from_quaternion(x[3:]))\n            return np.concatenate((x[:3], ortho6))\n        else:\n            raise ValueError(\"Rotation Type not supported\", rot_type)\n\n    def joint_angle(self, joint: str) -> float:\n        \"\"\"\n        Return the requested joint angle in radians.\n        \"\"\"\n        joint_idx = self.joint_traj_controller.valid_joint_names.index(joint)\n        return self.joint_traj_controller.get_joint_positions()[joint_idx]\n\n    def joint_angles(self) -> np.ndarray:\n        \"\"\"\n        Returns the current joint positions in radians and \n        in the order given by constants.JOINT_ORDER.\n        \"\"\"\n        return self.joint_traj_controller.get_joint_positions()\n\n    def joint_velocity(self, joint: str) -> float:\n        \"\"\"\n        Return the requested joint velocity in radians/secs.\n        \"\"\"\n        joint_idx = self.joint_traj_controller.valid_joint_names.index(joint)\n        return self.joint_traj_controller.get_joint_velocities()[joint_idx]\n\n    def joint_velocities(self) -> np.ndarray:\n        \"\"\"\n        Returns the current joint velocities.\n        \"\"\"\n        return self.joint_traj_controller.get_joint_velocities()\n\n    def joint_effort(self, joint: str) -> float:\n        \"\"\"\n        Return the requested joint effort.\n        \"\"\"\n        joint_idx = self.joint_traj_controller.valid_joint_names.index(joint)\n        return self.joint_traj_controller.get_joint_efforts()[joint_idx]\n\n    def joint_efforts(self) -> np.ndarray:\n        \"\"\"\n        Returns the current joint efforts.\n        \"\"\"\n        return self.joint_traj_controller.get_joint_efforts()\n\n    def get_wrench_history(self, hist_size=24, hand_frame_control=False):\n        if self.current_ft_value is None:\n            raise Exception(\"FT Sensor not initialized\")\n\n        ft_hist = np.array(self.wrench_queue)[:hist_size]\n\n        if hand_frame_control:\n            q_hist = self.joint_traj_controller.get_joint_positions_hist()[:hist_size]\n            poses_hist = [self.end_effector(q, tip_link=self.ee_link) for q in q_hist]\n            wrench_hist = [spalg.convert_wrench(wft, p).tolist() for p, wft in zip(poses_hist, ft_hist)]\n        else:\n            wrench_hist = ft_hist\n\n        return np.array(wrench_hist)\n\n    def get_wrench(self,\n                   base_frame_control=False,\n                   hand_frame_control=False) -> np.ndarray:\n        \"\"\" \n        Returns the wrench (force/torque) in task-space.\n        By default, return the wrench as read from the sensor topic.\n\n        Parameters\n        ----------\n        base_frame_control : bool, optional\n            If True, returns the wrench with respect to the robot base frame\n        hand_frame_control : bool, optional\n            If True, returns the wrench with respect to the end-effector frame\n            If both base_frame_control and hand_frame_control are set to True.\n            the former is considered.\n        Returns\n        -------\n        res : np.ndarray\n            Returns the wrench in the requested frame\n        \"\"\"\n        if self.current_ft_value is None:\n            # No values have been received from sensor's topic\n            return np.zeros(6)\n\n        wrench_force = self.current_ft_value\n        if not hand_frame_control and not base_frame_control:\n            return wrench_force\n\n        if base_frame_control:\n            # Transform force/torque from sensor to robot base frame\n            transform = self.end_effector(tip_link=self.joint_names_prefix + \"wrist_3_link\")\n            ee_wrench_force = spalg.convert_wrench(wrench_force, transform)\n\n            return ee_wrench_force\n        else:\n            # Transform force/torque from sensor to end effector frame\n            transform = self.end_effector(tip_link=self.ee_link)\n            ee_wrench_force = spalg.convert_wrench(wrench_force, transform)\n\n            return ee_wrench_force\n\n### Control Methods ###\n\n    def set_joint_positions(self,\n                            target_time: float,\n                            positions: np.ndarray,\n                            velocities: np.ndarray = None,\n                            accelerations: np.ndarray = None,\n                            wait: bool = False) -> ExecutionResult:\n        \"\"\"\n        Run the joint trajectory controller towards a single waypoint starting now.\n\n        Parameters\n        ----------\n        target_time : float\n            time at which target joint should be reach. It can be understood as the \n            duration of the trajectory.\n        positions : numpy.ndarray\n            target joint configuration in the order given by constants.JOINT_ORDER\n        velocities : numpy.ndarray, optional\n            target joint velocities\n        accelerations : numpy.ndarray, optional\n            target joint accelerations\n        wait : bool, optional\n            whether to block code execution until the trajectory is completed or not.\n\n        Returns\n        -------\n        res : bool\n            True if the trajectory is succesful when waiting for the execution to be \n            completed. Otherwise returns true if the trajectory was started.\n        \"\"\"\n        self.joint_traj_controller.add_point(positions=positions,\n                                             velocities=velocities,\n                                             accelerations=accelerations,\n                                             target_time=target_time)\n        if wait:\n            self.joint_traj_controller.start(delay=0, wait=True)\n        else:\n            self.joint_traj_controller.start_no_action_server()\n\n        # Always clear the trajectory goal\n        self.joint_traj_controller.clear_points()\n\n        if wait:\n            res = self.joint_traj_controller.get_result()\n            return ExecutionResult.DONE if res.error_code == 0 else ExecutionResult.CONTROLLER_FAILED\n        return ExecutionResult.DONE\n\n    def set_joint_trajectory(self,\n                             target_time: float,\n                             trajectory: np.ndarray,\n                             velocities: np.ndarray = None,\n                             accelerations: np.ndarray = None) -> ExecutionResult:\n        \"\"\"\n        Start the joint trajectory controller with a multi-waypoint trajectory.\n\n        Parameters\n        ----------\n        target_time : float\n            time at which target joint should be reach. It can be understood as the \n            duration of the trajectory.\n        positions : 2-D numpy.ndarray\n            list of target joint configuration for each waypoint in the order given by constants.JOINT_ORDER\n        velocities : 2-D numpy.ndarray, optional\n            list of target joint velocities for each waypoint\n        accelerations : 2-D numpy.ndarray, optional\n            list of target joint accelerations for each waypoint\n        wait : bool, optional\n            whether to block code execution until the trajectory is completed or not.\n\n        Returns\n        -------\n        res : bool\n            True if the trajectory is succesfully executed.\n        \"\"\"\n        dt = target_time/len(trajectory)\n\n        for i, q in enumerate(trajectory):\n            self.joint_traj_controller.add_point(positions=q,\n                                                 target_time=(i+1) * dt,\n                                                 velocities=velocities,\n                                                 accelerations=accelerations)\n        self.joint_traj_controller.start(delay=0, wait=True)\n        self.joint_traj_controller.clear_points()\n\n        res = self.joint_traj_controller.get_result()\n        return ExecutionResult.DONE if res.error_code == 0 else ExecutionResult.CONTROLLER_FAILED\n\n    def set_target_pose(self,\n                        target_time: float,\n                        pose: np.ndarray,\n                        wait: bool = False) -> ExecutionResult:\n        \"\"\"\n        Reach a given target cartesian pose with the end-effector (ee_link)\n\n        Parameters\n        ----------\n        target_time : float\n            time at which target joint should be reach. It can be understood as the \n            duration of the trajectory.\n        pose : numpy.ndarray\n            Cartesian target pose. Only the quaternion representation is supported\n             in the form: [x, y, z, aw, ax, ay, az]\n        wait : bool, optional\n            whether to block code execution until the trajectory is completed or not.\n\n        Returns\n        -------\n        res : bool\n            True if the trajectory is succesfully executed.\n        \"\"\"\n        q = self.inverse_kinematics(pose)\n        if q is None:\n            rospy.logdebug(\"IK not found\")\n            raise InverseKinematicsException(\"IK solver failed to find a solution\")\n        else:\n            return self.set_joint_positions(positions=q, target_time=target_time, wait=wait)\n\n    def set_pose_trajectory(self,\n                            target_time: float,\n                            trajectory: np.ndarray) -> ExecutionResult:\n        \"\"\"\n        Reach a given target cartesian pose with the end-effector (ee_link)\n\n        Parameters\n        ----------\n        target_time : float\n            time at which target joint should be reach. It can be understood as the \n            duration of the trajectory.\n        pose : numpy.ndarray\n            Cartesian target pose. Only the quaternion representation is supported\n             in the form: [x, y, z, aw, ax, ay, az]\n        wait : bool, optional\n            whether to block code execution until the trajectory is completed or not.\n\n        Returns\n        -------\n        res : bool or str\n            True if the trajectory is succesfully executed.\n            If the IK solver fails, return \"ik_not_found\"\n        \"\"\"\n        joint_trajectory = []\n        previous_q = self.joint_angles()\n        for i, pose in enumerate(trajectory):\n            q = self.inverse_kinematics(pose, seed=previous_q)\n            if q is None:\n                raise InverseKinematicsException(\"IK solver failed to find a solution\")\n\n            previous_q = q\n            joint_trajectory.append(q)\n        return self.set_joint_trajectory(trajectory=joint_trajectory, target_time=target_time)\n\n    def move_relative(self,\n                      target_time: float,\n                      transformation: np.array,\n                      relative_to_tcp: bool = True,\n                      wait: bool = True) -> ExecutionResult:\n        \"\"\" \n        Move end-effector (ee_link) relative to its current position\n\n        Parameters\n        ----------\n        target_time : float\n            time at which target joint should be reach. It can be understood as the \n            duration of the trajectory.\n        pose : numpy.ndarray\n            Cartesian target pose. Only the quaternion representation is supported\n             in the form: [x, y, z, aw, ax, ay, az]\n        relative_to_tcp : bool, optional\n            if True, consider the current position relative to the end-effector frame.\n            if False, consider the current position relative to the robot base frame.\n        wait : bool, optional\n            whether to block code execution until the trajectory is completed or not.\n\n        Returns\n        -------\n        res : bool or str\n            True if the trajectory is succesfully executed.\n            If the IK solver fails, return \"ik_not_found\"\n        \"\"\"\n        new_pose = transformations.transform_pose(self.end_effector(), transformation, rotated_frame=relative_to_tcp)\n        return self.set_target_pose(pose=new_pose, target_time=target_time, wait=wait)\n\n### FT sensor control ###\n\n    def zero_ft_sensor(self):\n        \"\"\" \n        Reset force-torque sensor readings to zeros.\n        \"\"\"\n        if not rospy.has_param(\"use_gazebo_sim\"):\n            # First try to zero FT from ur_driver\n            self._zero_ft()\n            rospy.sleep(0.5)\n        # Then update filtered one\n        self._zero_ft_filtered()\n\n    def set_ft_filtering(self, active=True):\n        \"\"\" \n        Enable/disable a low-pass filter.\n        If active, the readings returned from self.get_wrench will have been filtered.\n        otherwise, the raw data from the sensor's topic will be returned.\n\n        The filtering is done in an external topic. See scripts/ft_filter.py\n        \"\"\"\n        self._ft_filtered(active)\n"
  },
  {
    "path": "ur_control/src/ur_control/compliance_controller.py",
    "content": "# Copyright (c) 2018-2021, Cristian Beltran.  All rights reserved.\n#\n# Cristian Beltran and its licensors retain all intellectual property\n# and proprietary rights in and to this software, related documentation\n# and any modifications thereto.  Any use, reproduction, disclosure or\n# distribution of this software and related documentation without an express\n# license agreement from Cristian Beltran is strictly prohibited.\n\nimport rospy\nimport numpy as np\nimport types\n\nfrom ur_control.arm import Arm\nfrom ur_control import transformations, spalg, utils\nfrom ur_control.constants import ExecutionResult\n\n\n# Returns the new average\n# after including x\ndef getAvg(prev_avg, x, n):\n    return ((prev_avg *\n             n + x) /\n            (n + 1))\n\n\nclass CompliantController(Arm):\n    def __init__(self,\n                 model,\n                 **kwargs):\n        \"\"\" Compliant controllertrajectory_time_compensation\n        \"\"\"\n        Arm.__init__(self, **kwargs)\n\n        self.model = model\n\n        # read publish rate if it does exist, otherwise set publish rate\n        js_rate = utils.read_parameter(self.ns + 'joint_state_controller/publish_rate', 500.0)\n        self.rate = rospy.Rate(js_rate)\n\n    def set_hybrid_control_trajectory(self, trajectory, max_force_torque, timeout=5.0,\n                                      stop_on_target_force=False, termination_criteria=None,\n                                      displacement_epsilon=0.002, check_displacement_time=2.0,\n                                      verbose=True, debug=False, time_compensation=True):\n        \"\"\" Move the robot according to a hybrid controller model\n            trajectory: array[array[7]] or array[7], can define a single target pose or a trajectory of multiple poses.\n            model: force control model, see hybrid_controller.py \n            max_force_torque: array[6], max force/torque allowed before stopping controller\n            timeout: float, maximum duration of controller's operation\n            stop_on_target_force: bool: stop once the model's target force has been achieved, stopping controller when all non-zero target forces/torques are reached\n            termination_criteria: lambda/function, special termination criteria based on current pose of the robot w.r.t the robot's base\n            displacement_epsilon: float,  minimum displacement necessary to consider the robot in standby \n            check_displacement_time: float,  time interval to check whether the displacement has been larger than displacement_epsilon\n        \"\"\"\n\n        reduced_speed = np.deg2rad([100, 100, 100, 250, 250, 250])\n\n        xb = self.end_effector()\n        failure_counter = 0\n\n        ptp_index = 0\n        q_last = self.joint_angles()\n\n        trajectory_time_compensation = self.model.dt * 10. if time_compensation else 0.0 # Hyperparameter\n\n        if trajectory.ndim == 1:  # just one point\n            ptp_timeout = timeout\n            self.model.set_goals(position=trajectory)\n        else:  # trajectory\n            ptp_timeout = timeout / float(len(trajectory)) - trajectory_time_compensation\n            self.model.set_goals(position=trajectory[ptp_index])\n\n        log = {ExecutionResult.SPEED_LIMIT_EXCEEDED: 0, ExecutionResult.IK_NOT_FOUND: 0}\n\n        result = ExecutionResult.DONE\n\n        standby_timer = rospy.get_time()\n        standby_last_pose = self.end_effector()\n        standby = False\n\n        if debug:\n            avg_step_time = 0.0\n            step_num = 0\n\n        # Timeout for motion\n        initime = rospy.get_time()\n        sub_inittime = rospy.get_time()\n        while not rospy.is_shutdown() \\\n                and (rospy.get_time() - initime) < timeout:\n            if debug:\n                start_time = rospy.get_time()\n\n            # Transform wrench to the base_link frame\n            Wb = self.get_wrench(base_frame_control=True)\n            # Current position in task-space\n            xb = self.end_effector()\n\n            if termination_criteria is not None:\n                assert isinstance(termination_criteria, types.LambdaType), \"Invalid termination criteria, expecting lambda/function with one argument[current pose array[7]]\"\n                if termination_criteria(xb, standby):\n                    rospy.loginfo(\"Termination criteria returned True, stopping force control\")\n                    result = ExecutionResult.TERMINATION_CRITERIA\n                    break\n\n            if (rospy.get_time() - sub_inittime) > ptp_timeout:\n                sub_inittime = rospy.get_time()\n                ptp_index += 1\n                if ptp_index >= len(trajectory):\n                    self.model.set_goals(position=trajectory[-1])\n                elif not trajectory.ndim == 1:  # For some reason the timeout validation is not robust enough\n                    self.model.set_goals(position=trajectory[ptp_index])\n\n            Fb = -1 * Wb # Move in the opposite direction of the force\n            if stop_on_target_force and np.all(np.abs(Fb)[self.model.target_force != 0] > np.abs(self.model.target_force)[self.model.target_force != 0]):\n                rospy.loginfo('Target F/T reached {}'.format(np.round(Wb, 3)) + ' Stopping!')\n                self.set_target_pose(pose=xb, target_time=self.model.dt)\n                result = ExecutionResult.STOP_ON_TARGET_FORCE\n                break\n\n            # Safety limits: max force\n            if np.any(np.abs(Wb) > max_force_torque):\n                rospy.logerr('Maximum force/torque exceeded {}'.format(np.round(Wb, 3)))\n                self.set_target_pose(pose=xb, target_time=self.model.dt)\n                result = ExecutionResult.FORCE_TORQUE_EXCEEDED\n                break\n\n            # Current Force in task-space\n            dxf = self.model.control_position_orientation(Fb, xb)  # angular velocity\n\n            xc = transformations.pose_from_angular_velocity(xb, dxf, dt=self.model.dt)\n\n            # Avoid extra acceleration when a point failed due to IK or other violation\n            # So, this corrects the allowed time for the next point\n            dt = self.model.dt * (failure_counter+1)\n\n            result = self._actuate(xc, dt, q_last, reduced_speed)\n\n\n            if result != ExecutionResult.DONE:\n                failure_counter += 1\n                if result == ExecutionResult.IK_NOT_FOUND:\n                    log[ExecutionResult.IK_NOT_FOUND] += 1\n                if result == ExecutionResult.SPEED_LIMIT_EXCEEDED:\n                    log[ExecutionResult.SPEED_LIMIT_EXCEEDED] += 1\n                continue  # Don't wait since there is not motion\n            else:\n                failure_counter = 0\n                q_last = self.joint_angles()\n\n            # Compensate the time allocated to the next command when there are failures\n            # Especially important for following a motion trajectory\n            for _ in range(failure_counter+1):\n                self.rate.sleep()\n\n            standby_time = (rospy.get_time() - standby_timer)\n            if standby_time > check_displacement_time:\n                displacement_dt = np.linalg.norm(standby_last_pose[:3] - self.end_effector()[:3])\n                standby = displacement_dt < displacement_epsilon\n                if standby:\n                    rospy.logwarn(\"No more than %s displacement in the last %s seconds\" % (round(displacement_dt, 6), check_displacement_time))\n                last_pose = self.end_effector()\n                standby_timer = rospy.get_time()\n                standby_last_pose = self.end_effector()\n\n            if debug:\n                step_time = rospy.get_time() - start_time\n                avg_step_time = step_time if avg_step_time == 0 else getAvg(avg_step_time, step_time, step_num)\n                step_num += 1\n\n        if verbose:\n            rospy.logwarn(\"Total # of commands ignored: %s\" % log)\n        return result\n\n    def _actuate(self, pose, dt, q_last, reduced_speed, attempts=5):\n        \"\"\"\n            Evaluate IK solution several times if it fails.\n            Similarly, evaluate that the IK solution is viable\n        \"\"\"\n        result = None\n        q = self.inverse_kinematics(pose, attempts=0, verbose=False)\n        if q is None:\n            if attempts > 0:\n                return self._actuate(pose, dt, q_last, reduced_speed, attempts-1)\n            rospy.logwarn(\"IK not found\")\n            result = ExecutionResult.IK_NOT_FOUND\n        else:\n            q_speed = (q_last - q)/dt\n            if np.any(np.abs(q_speed) > reduced_speed):\n                if attempts > 0:\n                    return self._actuate(pose, dt, q_last, reduced_speed, attempts-1)\n                rospy.logwarn_once(\"Exceeded reduced max speed %s deg/s, Ignoring command\" % np.round(np.rad2deg(q_speed), 0))\n                result = ExecutionResult.SPEED_LIMIT_EXCEEDED\n            else:\n                result = self.set_joint_positions(positions=q, target_time=dt)\n                self.rate.sleep()\n        return result\n\n    # TODO(cambel): organize this code to avoid this repetition of code\n    def set_hybrid_control(self, model, max_force_torque, timeout=5.0, stop_on_target_force=False):\n        \"\"\" Move the robot according to a hybrid controller model\"\"\"\n\n        reduced_speed = np.deg2rad([100, 100, 100, 150, 150, 150])\n        q_last = self.joint_angles()\n\n        # Timeout for motion\n        initime = rospy.get_time()\n        xb = self.end_effector()\n        failure_counter = 0\n\n        while not rospy.is_shutdown() \\\n                and (rospy.get_time() - initime) < timeout:\n\n            # Transform wrench to the base_link frame\n            Wb = self.get_wrench()\n\n            # Current Force in task-space\n            Fb = -1 * Wb\n            # Safety limits: max force\n            if np.any(np.abs(Fb) > max_force_torque):\n                rospy.logerr('Maximum force/torque exceeded {}'.format(np.round(Wb, 3)))\n                self.set_target_pose(pose=xb, target_time=model.dt)\n                return ExecutionResult.FORCE_TORQUE_EXCEEDED\n\n            if stop_on_target_force and np.any(np.abs(Fb)[model.target_force != 0] > model.target_force[model.target_force != 0]):\n                rospy.loginfo('Target F/T reached {}'.format(np.round(Wb, 3)) + ' Stopping!')\n                self.set_target_pose(pose=xb, target_time=model.dt)\n                return ExecutionResult.STOP_ON_TARGET_FORCE\n\n            # Current position in task-space\n            xb = self.end_effector()\n\n            dxf = model.control_position_orientation(Fb, xb)  # angular velocity\n\n            # Limit linear/angular velocity\n            dxf[:3] = np.clip(dxf[:3], -0.5, 0.5)\n            dxf[3:] = np.clip(dxf[3:], -5., 5.)\n\n            xc = transformations.pose_from_angular_velocity(xb, dxf, dt=model.dt)\n\n            # Avoid extra acceleration when a point failed due to IK or other violation\n            # So, this corrects the allowed time for the next point\n            dt = model.dt * (failure_counter+1)\n\n            q = self.inverse_kinematics(xc)\n            if q is None:\n                rospy.logwarn(\"IK not found\")\n                result = ExecutionResult.IK_NOT_FOUND\n            else:\n                q_speed = (q_last - q)/dt\n                if np.any(np.abs(q_speed) > reduced_speed):\n                    rospy.logwarn(\"Exceeded reduced max speed %s deg/s, Ignoring command\" % np.round(np.rad2deg(q_speed), 0))\n                    result = ExecutionResult.SPEED_LIMIT_EXCEEDED\n                else:\n                    result = self.set_joint_positions(positions=q, target_time=dt)\n\n            if result != ExecutionResult.DONE:\n                failure_counter += 1\n                continue  # Don't wait since there is not motion\n            else:\n                failure_counter = 0\n\n            # Compensate the time allocated to the next command when there are failures\n            for _ in range(failure_counter+1):\n                self.rate.sleep()\n\n            q_last = self.joint_angles()\n        return ExecutionResult.DONE\n"
  },
  {
    "path": "ur_control/src/ur_control/constants.py",
    "content": "from enum import Enum\n\n\nclass IKSolverType(Enum):\n    KDL = 'kdl'\n    TRAC_IK = 'Trac-IK'\n    IKFAST = 'IKFast'\n\n\nclass GripperType(Enum):\n    GENERIC = 'generic'\n    ROBOTIQ = 'robotiq'\n\n\nclass ExecutionResult(Enum):\n    DONE = 'success'\n    CONTROLLER_FAILED = 'controller_failed'\n    FORCE_TORQUE_EXCEEDED = 'force_exceeded'\n    STOP_ON_TARGET_FORCE = 'stop_on_target_force'\n    IK_NOT_FOUND = 'ik_not_found'\n    SPEED_LIMIT_EXCEEDED = 'speed_limit_exceeded'\n    TERMINATION_CRITERIA = 'termination_criteria_achieved'\n\n\nCARTESIAN_COMPLIANCE_CONTROLLER = 'cartesian_compliance_controller'\nJOINT_TRAJECTORY_CONTROLLER = 'scaled_pos_joint_traj_controller'\nJOINT_SUBSCRIBER = '/arm_controller/state'\nJOINT_STATE_SUBSCRIBER = 'joint_states'\nFT_SUBSCRIBER = 'wrench'\n\n\n# Set constants for joints\nSHOULDER_PAN_JOINT = 'shoulder_pan_joint'\nSHOULDER_LIFT_JOINT = 'shoulder_lift_joint'\nELBOW_JOINT = 'elbow_joint'\nWRIST_1_JOINT = 'wrist_1_joint'\nWRIST_2_JOINT = 'wrist_2_joint'\nWRIST_3_JOINT = 'wrist_3_joint'\n\nBASE_LINK = 'base_link'\nEE_LINK = 'tool0'\nFT_LINK = 'tool0'\n\nJOINT_ORDER = [\n    SHOULDER_PAN_JOINT, SHOULDER_LIFT_JOINT, ELBOW_JOINT, WRIST_1_JOINT,\n    WRIST_2_JOINT, WRIST_3_JOINT\n]\n\n\ndef get_arm_joint_names(prefix):\n    return [prefix + joint for joint in JOINT_ORDER]\n"
  },
  {
    "path": "ur_control/src/ur_control/controllers.py",
    "content": "#!/usr/bin/env python\nimport actionlib\nimport copy\nimport collections\nimport rospy\nfrom ur_control import utils, constants\nimport numpy as np\nfrom std_msgs.msg import Float64\nfrom controller_manager_msgs.srv import ListControllers\n# Joint trajectory action\nfrom sensor_msgs.msg import JointState\nfrom trajectory_msgs.msg import JointTrajectory, JointTrajectoryPoint\nfrom control_msgs.msg import FollowJointTrajectoryAction, FollowJointTrajectoryGoal, FollowJointTrajectoryResult\n\n\nclass JointControllerBase(object):\n    \"\"\"\n    Base class for the Joint Position Controllers. It subscribes to the C{joint_states} topic by default.\n    \"\"\"\n\n    def __init__(self, namespace, timeout, joint_names=None):\n        \"\"\"\n        JointControllerBase constructor. It subscribes to the C{joint_states} topic and informs after \n        successfully reading a message from the topic.\n        @type namespace: string\n        @param namespace: Override ROS namespace manually. Useful when controlling several robots \n        @type  timeout: float\n        @param timeout: Time in seconds that will wait for the controller\n        from the same node.\n        \"\"\"\n        self.valid_joint_names = constants.JOINT_ORDER if joint_names is None else joint_names\n\n        self.ns = utils.solve_namespace(namespace)\n        self._jnt_positions_hist = collections.deque(maxlen=24)\n        # Set-up publishers/subscribers\n        self._js_sub = rospy.Subscriber('joint_states', JointState, self.joint_states_cb, queue_size=1)\n        retry = False\n        rospy.logdebug('Waiting for [%sjoint_states] topic' % self.ns)\n        start_time = rospy.get_time()\n        while not hasattr(self, '_joint_names'):\n            if (rospy.get_time() - start_time) > timeout and not retry:\n                # Re-try with namespace\n                self._js_sub = rospy.Subscriber('%sjoint_states' % self.ns, JointState, self.joint_states_cb, queue_size=1)\n                start_time = rospy.get_time()\n                retry = True\n                continue\n            elif (rospy.get_time() - start_time) > timeout and retry:\n                rospy.logerr('Timed out waiting for joint_states topic')\n                return\n            rospy.sleep(0.01)\n            if rospy.is_shutdown():\n                return\n\n        if rospy.has_param(f\"{self.ns}joint_state_controller/publish_rate\"):\n            self.rate = utils.read_parameter(f\"{self.ns}joint_state_controller/publish_rate\", 500)\n        elif rospy.has_param(f\"/joint_state_controller/publish_rate\"):\n            self.rate = utils.read_parameter(f\"/joint_state_controller/publish_rate\", 500)\n\n        self._num_joints = len(self._joint_names)\n        rospy.logdebug('Topic [%sjoint_states] found' % self.ns)\n\n    def disconnect(self):\n        \"\"\"\n        Disconnects from the joint_states topic. Useful to ligthen the use of system resources.\n        \"\"\"\n        self._js_sub.unregister()\n\n    def get_joint_efforts(self):\n        \"\"\"\n        Returns the current joint efforts of the UR robot.\n        @rtype: numpy.ndarray\n        @return: Current joint efforts of the UR robot.\n        \"\"\"\n        return np.array(self._current_jnt_efforts)\n\n    def get_joint_positions(self):\n        \"\"\"\n        Returns the current joint positions of the UR robot.\n        @rtype: numpy.ndarray\n        @return: Current joint positions of the UR robot.\n        \"\"\"\n        return np.array(self._current_jnt_positions)\n\n    def get_joint_positions_hist(self):\n        \"\"\"\n        Returns the current joint positions of the UR robot.\n        @rtype: numpy.ndarray\n        @return: Current joint positions of the UR robot.\n        \"\"\"\n        return list(self._jnt_positions_hist)\n\n    def get_joint_velocities(self):\n        \"\"\"\n        Returns the current joint velocities of the UR robot.\n        @rtype: numpy.ndarray\n        @return: Current joint velocities of the UR robot.\n        \"\"\"\n        return np.array(self._current_jnt_velocities)\n\n    def joint_states_cb(self, msg):\n        \"\"\"\n        Callback executed every time a message is publish in the C{joint_states} topic.\n        @type  msg: sensor_msgs/JointState\n        @param msg: The JointState message published by the RT hardware interface.\n        \"\"\"\n        position = []\n        velocity = []\n        effort = []\n        name = []\n        for joint_name in self.valid_joint_names:\n            if joint_name in msg.name:\n                idx = msg.name.index(joint_name)\n                name.append(msg.name[idx])\n                if msg.effort:\n                    effort.append(msg.effort[idx])\n                if msg.velocity:\n                    velocity.append(msg.velocity[idx])\n                position.append(msg.position[idx])\n        if set(name) == set(self.valid_joint_names):\n            self._current_jnt_positions = np.array(position)\n            self._jnt_positions_hist.append(self._current_jnt_positions)\n            self._current_jnt_velocities = np.array(velocity)\n            self._current_jnt_efforts = np.array(effort)\n            self._joint_names = list(name)\n\n\nclass JointPositionController(JointControllerBase):\n    \"\"\"\n    Interface class to control the UR robot using a Joint Position Control approach. \n    If you C{set_joint_positions} to a value very far away from the current robot position, \n    it will move at its maximum speed/acceleration and will even move the base of the robot, so, B{use with caution}.\n    \"\"\"\n\n    def __init__(self, namespace='', timeout=5.0, joint_names=None):\n        \"\"\"\n        C{JointPositionController} constructor. It creates the required publishers for controlling \n        the UR robot. Given that it inherits from C{JointControllerBase} it subscribes \n        to C{joint_states} by default.\n        @type namespace: string\n        @param namespace: Override ROS namespace manually. Useful when controlling several robots \n        from the same node.\n        @type  timeout: float\n        @param timeout: Time in seconds that will wait for the controller\n        \"\"\"\n        super(JointPositionController, self).__init__(namespace, timeout=timeout, joint_names=joint_names)\n        if not hasattr(self, '_joint_names'):\n            raise rospy.ROSException('JointPositionController timed out waiting joint_states topic: {0}'.format(namespace))\n        self._cmd_pub = dict()\n        for joint in self._joint_names:\n            print(('%s%scommand' % (self.ns, joint)))\n            self._cmd_pub[joint] = rospy.Publisher('%s%scommand' % (self.ns, joint), Float64, queue_size=3)\n        # Wait for the joint position controllers\n        controller_list_srv = self.ns + 'controller_manager/list_controllers'\n        rospy.logdebug('Waiting for the joint position controllers...')\n        rospy.wait_for_service(controller_list_srv, timeout=timeout)\n        list_controllers = rospy.ServiceProxy(controller_list_srv, ListControllers)\n        expected_controllers = (joint_names if joint_names is not None else constants.JOINT_ORDER)\n        start_time = rospy.get_time()\n        while not rospy.is_shutdown():\n            if (rospy.get_time() - start_time) > timeout:\n                raise rospy.ROSException('JointPositionController timed out waiting for the controller_manager: {0}'.format(namespace))\n            rospy.sleep(0.01)\n            found = 0\n            try:\n                res = list_controllers()\n                for state in res.controller:\n                    if state.name in expected_controllers:\n                        found += 1\n            except:\n                pass\n            if found == len(expected_controllers):\n                break\n        rospy.loginfo('JointPositionController initialized. ns: {0}'.format(namespace))\n\n    def set_joint_positions(self, jnt_positions):\n        \"\"\"\n        Sets the joint positions of the robot. The values are send directly to the robot. If the goal \n        is too far away from the current robot position, it will move at its maximum speed/acceleration \n        and will even move the base of the robot, so, B{use with caution}.\n        @type jnt_positions: list\n        @param jnt_positions: Joint positions command.\n        \"\"\"\n        if not self.valid_jnt_command(jnt_positions):\n            rospy.logwarn('A valid joint positions command should have %d elements' % (self._num_joints))\n            return\n        # Publish the point for each joint\n        for name, q in zip(self._joint_names, jnt_positions):\n            try:\n                self._cmd_pub[name].publish(q)\n            except:\n                print(\"some error\")\n                pass\n\n    def valid_jnt_command(self, command):\n        \"\"\"\n        It validates that the length of a joint command is equal to the number of joints\n        @type command: list\n        @param command: Joint command to be validated\n        @rtype: bool\n        @return: True if the joint command is valid\n        \"\"\"\n        return (len(command) == self._num_joints)\n\n\nclass JointTrajectoryController(JointControllerBase):\n    \"\"\"\n    This class creates a C{SimpleActionClient} that connects to the \n    C{trajectory_controller/follow_joint_trajectory} action server. Using this \n    interface you can control the robot by adding points to the trajectory. Each point \n    requires the goal position and the goal time. The velocity and acceleration are optional.\n\n    The controller is templated to work with multiple trajectory representations. By default, \n    a B{linear} interpolator is provided, but it's possible to support other representations. \n    The interpolator uses the following interpolation strategies depending on the waypoint \n    specification:\n\n      - B{Linear}: Only position is specified. Guarantees continuity at the position level. \n        B{Discouraged} because it yields trajectories with discontinuous velocities at the waypoints.\n      - B{Cubic}: Position and velocity are specified. Guarantees continuity at the velocity level.\n      - B{Quintic}: Position, velocity and acceleration are specified: Guarantees continuity at \n        the acceleration level.\n    \"\"\"\n\n    def __init__(self, publisher_name='arm_controller', namespace='', timeout=5.0, joint_names=None):\n        \"\"\"\n        JointTrajectoryController constructor. It creates the C{SimpleActionClient}.\n        @type namespace: string\n        @param namespace: Override ROS namespace manually. Useful when controlling several \n        robots from the same node.\n        @type  timeout: float\n        @param timeout: Time in seconds that will wait for the controller\n        \"\"\"\n        super(JointTrajectoryController, self).__init__(namespace, timeout=timeout, joint_names=joint_names)\n\n        trajectory_publisher_topic = self.ns + publisher_name + '/command'\n        self.trajectory_pub = rospy.Publisher(trajectory_publisher_topic, JointTrajectory, queue_size=10)\n\n        action_server = self.ns + publisher_name + '/follow_joint_trajectory'\n        self._client = actionlib.SimpleActionClient(action_server, FollowJointTrajectoryAction)\n        self._goal = FollowJointTrajectoryGoal()\n        rospy.logdebug('Waiting for [%s] action server' % action_server)\n        topics = [item for sublist in rospy.get_published_topics() for item in sublist]\n        if action_server+\"/goal\" not in topics:\n            raise rospy.ROSException(\"Action server not found\")\n        server_up = self._client.wait_for_server(timeout=rospy.Duration(timeout))\n        if not server_up:\n            rospy.logerr('Timed out waiting for Joint Trajectory'\n                         ' Action Server to connect. Start the action server'\n                         ' before running this node.')\n            raise rospy.ROSException('JointTrajectoryController timed out: {0}'.format(action_server))\n        rospy.logdebug('Successfully connected to [%s]' % action_server)\n        # Get a copy of joint_names\n        if not hasattr(self, '_joint_names'):\n            raise rospy.ROSException('JointTrajectoryController timed out waiting joint_states topic: {0}'.format(self.ns))\n        self._goal.trajectory.joint_names = copy.deepcopy(self._joint_names)\n        rospy.loginfo('JointTrajectoryController initialized. ns: {0}'.format(self.ns))\n\n    def add_point(self, target_time, positions, velocities=None, accelerations=None):\n        \"\"\"\n        Adds a point to the trajectory. Each point must be specified by the goal position and \n        the goal time. The velocity and acceleration are optional.\n        @type  positions: list\n        @param positions: The goal position in the joint space\n        @type  target_time: float\n        @param target_time: The time B{from start} when the robot should arrive at the goal position.\n        @type  velocities: list\n        @param velocities: The velocity of arrival at the goal position. If not given zero \n        velocity is assumed.\n        @type  accelerations: list\n        @param accelerations: The acceleration of arrival at the goal position. If not given \n        zero acceleration is assumed.\n        \"\"\"\n        point = JointTrajectoryPoint()\n        point.positions = copy.deepcopy(positions)\n        if type(velocities) == type(None):\n            point.velocities = [0] * self._num_joints\n        else:\n            point.velocities = copy.deepcopy(velocities)\n        if type(accelerations) == type(None):\n            point.accelerations = [0] * self._num_joints\n        else:\n            point.accelerations = copy.deepcopy(accelerations)\n        point.time_from_start = rospy.Duration(target_time)\n        self._goal.trajectory.points.append(point)\n\n    def clear_points(self):\n        \"\"\"\n        Clear all points in the trajectory.\n        \"\"\"\n        self._goal.trajectory.points = []\n\n    def get_num_points(self):\n        \"\"\"\n        Returns the number of points currently added to the trajectory\n        @rtype: int\n        @return: Number of points currently added to the trajectory\n        \"\"\"\n        return len(self._goal.trajectory.points)\n\n    def get_result(self) -> FollowJointTrajectoryResult:\n        \"\"\"\n        Returns the result B{after} the execution of the trajectory. Possible values:\n          - FollowJointTrajectoryResult.SUCCESSFUL = 0\n          - FollowJointTrajectoryResult.INVALID_GOAL = -1\n          - FollowJointTrajectoryResult.INVALID_JOINTS = -2\n          - FollowJointTrajectoryResult.OLD_HEADER_TIMESTAMP = -3\n          - FollowJointTrajectoryResult.PATH_TOLERANCE_VIOLATED = -4\n          - FollowJointTrajectoryResult.GOAL_TOLERANCE_VIOLATED = -5\n        @rtype: int\n        @return: result B{after} the execution of the trajectory\n        \"\"\"\n        return self._client.get_result()\n\n    def get_state(self):\n        \"\"\"\n        Returns the status B{during} the execution of the trajectory. Possible values:\n          - GoalStatus.PENDING=0\n          - GoalStatus.ACTIVE=1\n          - GoalStatus.PREEMPTED=2\n          - GoalStatus.SUCCEEDED=3\n          - GoalStatus.ABORTED=4\n          - GoalStatus.REJECTED=5\n          - GoalStatus.PREEMPTING=6\n          - GoalStatus.RECALLING=7\n          - GoalStatus.RECALLED=8\n          - GoalStatus.LOST=9\n        @rtype: int\n        @return: result B{after} the execution of the trajectory\n        \"\"\"\n        return self._client.get_state()\n\n    def set_trajectory(self, trajectory):\n        \"\"\"\n        Sets the goal trajectory directly. B{It only copies} the C{trajectory.points} field. \n        @type  trajectory: trajectory_msgs/JointTrajectory\n        @param trajectory: The goal trajectory\n        \"\"\"\n        self._goal.trajectory.points = copy.deepcopy(trajectory.points)\n\n    def start(self, delay=0.1, wait=False):\n        \"\"\"\n        Starts the trajectory. It sends the C{FollowJointTrajectoryGoal} to the action server.\n        @type  delay: float\n        @param delay: Delay (in seconds) before executing the trajectory\n        \"\"\"\n        num_points = len(self._goal.trajectory.points)\n        rospy.logdebug('Executing Joint Trajectory with {0} points'.format(num_points))\n        start_time = rospy.Time() if delay == 0 else rospy.Time.now() + rospy.Duration(delay)\n        self._goal.trajectory.header.stamp = start_time\n        if wait:\n            self._client.send_goal_and_wait(self._goal)\n        else:\n            self._client.send_goal(self._goal)\n\n    def stop(self):\n        \"\"\"\n        Stops an active trajectory. If there is not active trajectory an error will be shown in the console.\n        \"\"\"\n        self._client.cancel_goal()\n\n    def wait(self, timeout=15.0):\n        \"\"\"\n        Waits synchronously (with a timeout) until the trajectory action server gives a result.\n        @type  timeout: float\n        @param timeout: The amount of time we will wait\n        @rtype: bool\n        @return: True if the server connected in the allocated time. False on timeout\n        \"\"\"\n        return self._client.wait_for_result(timeout=rospy.Duration(timeout))\n\n    def start_no_action_server(self):\n        \"\"\"\n        Start the trajectory without expecting any feedback from the action server.\n        \"\"\"\n        self.trajectory_pub.publish(self._goal.trajectory)\n"
  },
  {
    "path": "ur_control/src/ur_control/controllers_connection.py",
    "content": "#!/usr/bin/env python\n\nimport rospy\nfrom controller_manager_msgs.srv import SwitchController, SwitchControllerRequest, \\\n    LoadController, UnloadController, ListControllers\nfrom ur_control.utils import solve_namespace\n\n\nclass ControllersConnection():\n    def __init__(self, namespace=None):\n        self.controllers_list = []\n\n        self.ns = solve_namespace(namespace)[1:]\n\n        if namespace:\n            prefix = namespace + 'controller_manager/'\n        else:\n            prefix = '/controller_manager/'\n\n        # Only for osx sim\n        if rospy.has_param(\"use_gazebo_sim\"):\n            prefix = '/controller_manager/'\n\n        self.switch_service = rospy.ServiceProxy(prefix + 'switch_controller', SwitchController)\n        self.load_service = rospy.ServiceProxy(prefix + 'load_controller', LoadController)\n        self.unload_service = rospy.ServiceProxy(prefix + 'unload_controller', UnloadController)\n        self.list_controllers_service = rospy.ServiceProxy(prefix + 'list_controllers', ListControllers)\n        self.list_controllers_service.wait_for_service(1.0)\n\n    def get_loaded_controllers(self):\n        self.controllers_list = []\n        try:\n            result = self.list_controllers_service()\n            for controller in result.controller:\n                self.controllers_list.append(controller.name)\n        except:\n            pass\n\n    def get_controller_state(self, controller_name):\n        try:\n            result = self.list_controllers_service()\n            for controller in result.controller:\n                if controller.name == controller_name:\n                    return controller.state\n        except:\n            pass\n        rospy.logerr(\"Controller %s not found\" % controller_name)\n        return None\n\n    def load_controllers(self, controllers_list):\n        self.get_loaded_controllers()\n        self.load_service.wait_for_service(0.1)\n        for controller in controllers_list:\n            if controller not in self.controllers_list:\n                result = self.load_service(controller)\n                rospy.loginfo('Loading controller %s. Result=%s' % (controller, result))\n                if result:\n                    self.controllers_list.append(controller)\n\n    def unload_controllers(self, controllers_list):\n        try:\n            self.unload_service.wait_for_service(0.1)\n            for controller in controllers_list:\n                result = self.unload_service(controller)\n                rospy.loginfo('Unloading controller %s. Result=%s' % (controller, result))\n                if result:\n                    self.controllers_list.remove(controller)\n        except Exception as e:\n            rospy.logerr(\"Unload controllers service call failed: %s\" % e)\n\n    def check_controllers_state(self, on_controllers, off_controllers):\n        for c in on_controllers:\n            if self.get_controller_state(c) != \"running\":\n                return False\n\n        for c in off_controllers:\n            if self.get_controller_state(c) != \"stopped\":\n                return False\n        return True\n\n    def switch_controllers(self, controllers_on, controllers_off,\n                           strictness=1):\n        \"\"\"\n        Give the controllers you want to switch on or off.\n        :param controllers_on: [\"name_controller_1\", \"name_controller2\",...,\"name_controller_n\"]\n        :param controllers_off: [\"name_controller_1\", \"name_controller2\",...,\"name_controller_n\"]\n        :return:\n        \"\"\"\n\n        if rospy.has_param(\"use_gazebo_sim\"):\n            controllers_on = [self.ns + controller for controller in controllers_on]\n            controllers_off = [self.ns + controller for controller in controllers_off]\n\n        try:\n            self.switch_service.wait_for_service(0.1)\n            switch_request_object = SwitchControllerRequest()\n            switch_request_object.start_controllers = controllers_on\n            switch_request_object.stop_controllers = controllers_off\n            switch_request_object.strictness = strictness\n\n            if self.check_controllers_state(controllers_on, controllers_off):\n                return True\n\n            switch_result = self.switch_service(switch_request_object)\n            \"\"\"\n            [controller_manager_msgs/SwitchController]\n            int32 BEST_EFFORT=1\n            int32 STRICT=2\n            string[] start_controllers\n            string[] stop_controllers\n            int32 strictness\n            ---\n            bool ok\n            \"\"\"\n            rospy.logdebug(\"Switch Result==>\" + str(switch_result.ok))\n\n            if not switch_result.ok:  # Return if service failed\n                return False\n\n            # Check that the controllers are running before returning\n            start_time = rospy.get_time()\n            while (rospy.get_time() - start_time) < 5.0 and not rospy.is_shutdown():\n                all_running = True\n                for controller in controllers_on:\n                    if self.get_controller_state(controller) != \"running\":\n                        all_running = False\n                        break\n                if all_running:\n                    break\n\n            return switch_result.ok\n\n        except Exception as e:\n            rospy.logerr(\"Switch controllers service call failed: %s\" % e)\n\n            return None\n\n    def reset_controllers(self):\n        \"\"\"\n        We turn on and off the given controllers\n        :param controllers_reset: [\"name_controller_1\", \"name_controller2\",...,\"name_controller_n\"]\n        :return:\n        \"\"\"\n\n        reset_result = False\n\n        result_off_ok = self.switch_controllers(controllers_on=[], controllers_off=self.controllers_list)\n\n        rospy.logdebug(\"Deactivated Controllers\")\n\n        if result_off_ok:\n            rospy.logdebug(\"Activating Controllers\")\n            result_on_ok = self.switch_controllers(\n                controllers_on=self.controllers_list, controllers_off=[])\n            if result_on_ok:\n                rospy.logdebug(\"Controllers Reset==>\" +\n                               str(self.controllers_list))\n                reset_result = True\n            else:\n                rospy.logdebug(\"result_on_ok==>\" + str(result_on_ok))\n        else:\n            rospy.logdebug(\"result_off_ok==>\" + str(result_off_ok))\n\n        return reset_result\n\n    def update_controllers_list(self, new_controllers_list):\n\n        self.controllers_list = new_controllers_list\n"
  },
  {
    "path": "ur_control/src/ur_control/conversions.py",
    "content": "#! /usr/bin/env python\n\nimport numpy as np\n\nfrom ur_control import transformations as tr\n\n# Messages\nfrom geometry_msgs.msg import (Point, Quaternion, Pose, PoseStamped, Vector3, Transform,\n                               Wrench)\nfrom sensor_msgs.msg import RegionOfInterest\n\nimport pyquaternion\n\n# OpenRAVE types <--> Numpy types\n\n\ndef from_dict(transform_dict):\n    \"\"\"\n  Converts a dictionary with the fields C{rotation} and C{translation}\n  into a homogeneous transformation of type C{np.array}.\n  @type transform_dict:  dict\n  @param transform_dict: The dictionary to be converted.\n  @rtype: np.array\n  @return: The resulting numpy array\n  \"\"\"\n    T = tr.rotation_matrix_from_quaternion(np.array(transform_dict['rotation']))\n    T[:3, 3] = np.array(transform_dict['translation'])\n    return T\n\n\n# PyKDL types <--> Numpy types\ndef from_kdl_vector(vector):\n    \"\"\"\n  Converts a C{PyKDL.Vector} with fields into a numpy array.\n  @type  vector: PyKDL.Vector\n  @param vector: The C{PyKDL.Vector} to be converted\n  @rtype: np.array\n  @return: The resulting numpy array\n  \"\"\"\n    return np.array([vector.x(), vector.y(), vector.z()])\n\n\ndef from_kdl_twist(twist):\n    \"\"\"\n  Converts a C{PyKDL.Twist} with fields into a numpy array.\n  @type  twist: PyKDL.Twist\n  @param twist: The C{PyKDL.Twist} to be converted\n  @rtype: np.array\n  @return: The resulting numpy array\n  \"\"\"\n    array = np.zeros(6)\n    array[:3] = from_kdl_vector(twist.vel)\n    array[3:] = from_kdl_vector(twist.rot)\n    return array\n\n\n# ROS types <--> Numpy types\ndef from_point(msg):\n    \"\"\"\n  Converts a C{geometry_msgs/Point} ROS message into a numpy array.\n  @type  msg: geometry_msgs/Point\n  @param msg: The ROS message to be converted\n  @rtype: np.array\n  @return: The resulting numpy array\n  \"\"\"\n    return from_vector3(msg)\n\n\ndef from_pose(msg):\n    \"\"\"\n  Converts a C{geometry_msgs/Pose} ROS message into a numpy array (Homogeneous transformation 4x4).\n  @type  msg: geometry_msgs/Pose\n  @param msg: The ROS message to be converted\n  @rtype: np.array\n  @return: The resulting numpy array\n  \"\"\"\n    T = tr.rotation_matrix_from_quaternion(from_quaternion(msg.orientation))\n    T[:3, 3] = from_point(msg.position)\n    return T\n\n\ndef from_pose_to_list(msg):\n    \"\"\"\n  Converts a C{geometry_msgs/Pose} ROS message into a numpy array (7 elements, xyz+xyzw).\n  @type  msg: geometry_msgs/Pose\n  @param msg: The ROS message to be converted\n  @rtype: np.array\n  @return: The resulting numpy array\n  \"\"\"\n    return np.concatenate([from_point(msg.position), from_quaternion(msg.orientation)])\n\n\ndef from_quaternion(msg):\n    \"\"\"\n  Converts a C{geometry_msgs/Quaternion} ROS message into a numpy array.\n  @type  msg: geometry_msgs/Quaternion\n  @param msg: The ROS message to be converted\n  @rtype: np.array\n  @return: The resulting numpy array\n  \"\"\"\n    return np.array([msg.x, msg.y, msg.z, msg.w], dtype=float)\n\n\ndef from_roi(msg):\n    top_left = np.array([msg.x_offset, msg.y_offset])\n    bottom_right = top_left + np.array([msg.width, msg.height])\n    return [top_left, bottom_right]\n\n\ndef from_transform(msg):\n    \"\"\"\n  Converts a C{geometry_msgs/Transform} ROS message into a numpy array.\n  @type  msg: geometry_msgs/Transform\n  @param msg: The ROS message to be converted\n  @rtype: np.array\n  @return: The resulting numpy array\n  \"\"\"\n    T = tr.rotation_matrix_from_quaternion(from_quaternion(msg.rotation))\n    T[:3, 3] = from_vector3(msg.translation)\n    return T\n\n\ndef from_vector3(msg):\n    \"\"\"\n  Converts a C{geometry_msgs/Vector3} ROS message into a numpy array.\n  @type  msg: geometry_msgs/Vector3\n  @param msg: The ROS message to be converted\n  @rtype: np.array\n  @return: The resulting numpy array\n  \"\"\"\n    return np.array([msg.x, msg.y, msg.z], dtype=float)\n\n\ndef from_wrench(msg):\n    \"\"\"\n  Converts a C{geometry_msgs/Wrench} ROS message into a numpy array.\n  @type  msg: geometry_msgs/Wrench\n  @param msg: The ROS message to be converted\n  @rtype: np.array\n  @return: The resulting numpy array\n  \"\"\"\n    array = np.zeros(6)\n    array[:3] = from_vector3(msg.force)\n    array[3:] = from_vector3(msg.torque)\n    return array\n\n\ndef to_quaternion(array):\n    \"\"\"\n  Converts a numpy array into a C{geometry_msgs/Quaternion} ROS message.\n  @type  array: np.array\n  @param array: The position as numpy array\n  @rtype: geometry_msgs/Quaternion\n  @return: The resulting ROS message\n  \"\"\"\n    return Quaternion(*array)\n\n\ndef to_point(array):\n    \"\"\"\n  Converts a numpy array into a C{geometry_msgs/Point} ROS message.\n  @type  array: np.array\n  @param array: The position as numpy array\n  @rtype: geometry_msgs/Point\n  @return: The resulting ROS message\n  \"\"\"\n    return Point(*array)\n\n\ndef to_pose(T):\n    \"\"\"\n  Converts a homogeneous transformation (4x4) into a C{geometry_msgs/Pose} ROS message.\n  @type  T: np.array\n  @param T: The homogeneous transformation\n  @rtype: geometry_msgs/Pose\n  @return: The resulting ROS message\n  \"\"\"\n    T = np.array(T, dtype=float)\n    if len(T) == 6:\n        pos = Point(*T[:3])\n        quat = Quaternion(*tr.quaternion_from_euler(*T[3:]))\n    elif len(T) == 7:\n        pos = Point(*T[:3])\n        quat = to_quaternion(T[3:])\n    else:\n        pos = Point(*T[:3, 3])\n        quat = Quaternion(*tr.rotation_matrix_from_quaternion(T))\n    return Pose(pos, quat)\n\n\ndef to_roi(top_left, bottom_right):\n    msg = RegionOfInterest()\n    msg.x_offset = round(top_left[0])\n    msg.y_offset = round(top_left[1])\n    msg.width = round(abs(bottom_right[0] - top_left[0]))\n    msg.height = round(abs(bottom_right[1] - top_left[1]))\n    return msg\n\n\ndef to_transform(T):\n    \"\"\"\n  Converts a homogeneous transformation (4x4) into a C{geometry_msgs/Transform}\n  ROS message.\n  @type  T: np.array\n  @param T: The homogeneous transformation\n  @rtype: geometry_msgs/Transform\n  @return: The resulting ROS message\n  \"\"\"\n    if len(T) == 7:\n        translation = Vector3(*T[:3])\n        rotation = to_quaternion(T[3:])\n    else:\n        translation = Vector3(*T[:3, 3])\n        rotation = Quaternion(*tr.rotation_matrix_from_quaternion(T))\n    return Transform(translation, rotation)\n\n\ndef to_vector3(array):\n    \"\"\"\n  Converts a numpy array into a C{geometry_msgs/Vector3} ROS message.\n  @type  array: np.array\n  @param array: The vector as numpy array\n  @rtype: geometry_msgs/Vector3\n  @return: The resulting ROS message\n  \"\"\"\n    return Vector3(*array)\n\n\ndef to_wrench(array):\n    \"\"\"\n  Converts a numpy array into a C{geometry_msgs/Wrench} ROS message.\n  @type  array: np.array\n  @param array: The wrench as numpy array\n  @rtype: geometry_msgs/Wrench\n  @return: The resulting ROS message\n  \"\"\"\n    msg = Wrench()\n    msg.force = to_vector3(array[:3])\n    msg.torque = to_vector3(array[3:])\n    return msg\n\n\n# RViz types <--> Numpy types\ndef from_rviz_vector(value, dtype=float):\n    \"\"\"\n  Converts a RViz property vector in the form C{X;Y;Z} into a numpy array.\n  @type  value: str\n  @param value: The RViz property vector\n  @type  dtype: type\n  @param dtype: The type of mapping to be done. Typically C{float} or C{int}.\n  @rtype: array\n  @return: The resulting numpy array\n  \"\"\"\n    strlst = value.split(';')\n    return np.array(list(map(dtype, strlst)))\n\n\ndef angleAxis_from_euler(euler):\n    roll, pitch, yaw = euler\n    yaw_matrix = np.matrix([[np.cos(yaw), -np.sin(yaw), 0],\n                            [np.sin(yaw), np.cos(yaw), 0], [0, 0, 1]])\n\n    pitch_matrix = np.matrix([[np.cos(pitch), 0,\n                               np.sin(pitch)], [0, 1, 0],\n                              [-np.sin(pitch), 0,\n                               np.cos(pitch)]])\n\n    roll_matrix = np.matrix([[1, 0, 0], [0, np.cos(roll), -np.sin(roll)],\n                             [0, np.sin(roll), np.cos(roll)]])\n\n    R = yaw_matrix * pitch_matrix * roll_matrix\n\n    theta = np.arccos(((R[0, 0] + R[1, 1] + R[2, 2]) - 1) / 2)\n    if theta == 0:\n        return [0., 0., 0.]\n\n    multi = 1 / (2 * np.sin(theta))\n\n    rx = multi * (R[2, 1] - R[1, 2]) * theta\n    ry = multi * (R[0, 2] - R[2, 0]) * theta\n    rz = multi * (R[1, 0] - R[0, 1]) * theta\n    return [rx, ry, rz]\n\n\ndef euler_transformation_matrix(euler):\n    \"\"\" Euler's transformation matrix \"\"\"\n    r, p, y = euler\n    T = np.array([[1, 0, np.sin(p)], [0, np.cos(r), -np.sin(r) * np.cos(p)],\n                  [0, np.sin(r), np.cos(r) * np.cos(p)]])\n    return T\n\n\ndef transform_end_effector(pose, extra_pose, rot_type='quaternion', inverse=False):\n    \"\"\"\n    Transform end effector pose\n      pose: current pose [x, y, z, ax, ay, az, w]\n      extra_pose: additional transformation [x, y, z, ax, ay, az, w]\n      matrix: if true: return (translation, rotation matrix)\n              else: return translation + quaternion list\n    \"\"\"\n    extra_translation = np.array(extra_pose[:3]).reshape(3, 1)\n    extra_rot = tr.vector_to_pyquaternion(extra_pose[3:]).rotation_matrix\n\n    c_trans = np.array(pose[:3]).reshape(3, 1)\n    c_rot = tr.vector_to_pyquaternion(pose[3:]).rotation_matrix\n    # BE CAREFUL!! Pose from KDL is ax ay az aw\n    #              Pose from IKfast is aw ax ay az\n\n    n_rot = np.matmul(c_rot, extra_rot)\n\n    if inverse:\n        n_trans = np.matmul(n_rot, extra_translation) + c_trans\n    else:\n        n_trans = np.matmul(c_rot, extra_translation) + c_trans\n\n    if rot_type == 'matrix':\n        return n_trans.flatten(), n_rot\n\n    quat_rot = np.roll(pyquaternion.Quaternion(matrix=n_rot).normalised.elements, -1)\n    if rot_type == 'euler':\n        euler = np.array(tr.euler_from_quaternion(quat_rot, axes='rxyz'))\n        return np.concatenate((n_trans.flatten(), euler))\n    elif rot_type == 'quaternion':\n        return np.concatenate((n_trans.flatten(), quat_rot))\n\n\ndef inverse_transformation(pose, transform):\n    inv_ee_transform = np.copy(transform)\n    inv_ee_transform[:3] *= -1\n    inv_ee_transform[3:] = tr.quaternion_inverse(transform[3:])\n\n    return np.array(transform_end_effector(pose, inv_ee_transform, inverse=True))\n\n\ndef to_float(val):\n    if isinstance(val, float):\n        return val\n    elif isinstance(val, str):\n        return (float(eval(val)))\n    elif isinstance(val, list):\n        return [to_float(o) for o in val]\n    else:\n        return (float(val))\n\n\ndef to_pose_stamped(frame_id, pose):\n    ps = PoseStamped()\n    ps.header.frame_id = frame_id\n    ps.pose = to_pose(pose)\n    return ps\n\n\ndef transform_pose(target_frame, transform_matrix, ps):\n    # def transformPose(self, target_frame, ps):\n    \"\"\"\n    :param target_frame: the tf target frame, a string\n    :param ps: the geometry_msgs.msg.PoseStamped message\n    :return: new geometry_msgs.msg.PoseStamped message, in frame target_frame\n    :raises: any of the exceptions that :meth:`~tf.Transformer.lookupTransform` can raise\n\n    Transforms a geometry_msgs PoseStamped message to frame target_frame, returns a new PoseStamped message.\n    \"\"\"\n    # mat44 is frame-to-frame transform as a 4x4\n    mat44 = transform_matrix\n\n    # pose44 is the given pose as a 4x4\n    pose44 = np.dot(xyz_to_mat44(ps.pose.position), xyzw_to_mat44(ps.pose.orientation))\n\n    # txpose is the new pose in target_frame as a 4x4\n    txpose = np.dot(mat44, pose44)\n\n    # xyz and quat are txpose's position and orientation\n    xyz = tuple(tr.translation_from_matrix(txpose))[:3]\n    quat = tuple(tr.rotation_matrix_from_quaternion(txpose))\n\n    # assemble return value PoseStamped\n    r = PoseStamped()\n    r.header.stamp = ps.header.stamp\n    r.header.frame_id = target_frame\n    r.pose = Pose(Point(*xyz), Quaternion(*quat))\n    return r\n\n\ndef xyz_to_mat44(pos):\n    return tr.translation_matrix((pos.x, pos.y, pos.z))\n\n\ndef xyzw_to_mat44(ori):\n    return tr.rotation_matrix_from_quaternion((ori.x, ori.y, ori.z, ori.w))\n"
  },
  {
    "path": "ur_control/src/ur_control/exceptions.py",
    "content": "class InverseKinematicsException(Exception):\n    \"IK solver failed to find a solution\"\n    pass\n"
  },
  {
    "path": "ur_control/src/ur_control/filters.py",
    "content": "# ROS utilities used by the CRI group\n#! /usr/bin/env python\nimport math\nimport numpy as np\nimport scipy.signal\n\n\ndef best_fit_foaw(y, fs, m, d):\n  \"\"\"\n  First-Order Adaptive Windowing (FOAW)\n\n  Yet another differentiation filter.\n\n  @type  y: list\n  @param y: the values of the time history of the signal.\n  @type  fs: float\n  @param fs: The sampling frequency (Hz) of the signal to be filtered\n  \"\"\"\n  T = 1.0/fs\n  result = np.zeros(len(y))\n  for k in range(len(y)):\n    slope = 0\n    for n in range(1, min(m,k)):\n      # Calculate slope over interval (best-fit-FOAW)\n      b = ( ( n*sum([y[k-i]     for i in range(n+1)])\n            - 2*sum([y[k-i]*i   for i in range(n+1)]) )\n          / (T*n*(n+1)*(n+2)/6) )\n      # Check the linear estimate of each middle point\n      outside = False\n      for j in range(1,n):\n        ykj = y[k]-(b*j*T)\n        # Compare to the measured value within the noise margin\n        # If it's outside noise margin, return last estimate\n        #~ if abs(y[k-j] - ykj) > 2*d:\n        if ykj < (y[k-j]-d) or ykj > (y[k-j]+d):\n          outside = True\n          break\n      if outside: break\n      slope = b\n    result[k] = slope\n  return result\n\ndef butter_lowpass(cutoff, fs, order=5):\n  \"\"\"\n  Butterworth lowpass digital filter design.\n\n  Check C{scipy.signal.butter} for further details.\n\n  @type  cutoff: float\n  @param cutoff: Cut-off frequency in Hz\n  @type  fs: float\n  @param fs: The sampling frequency (Hz) of the signal to be filtered\n  @type  order: int\n  @param order: The order of the filter.\n  @rtype: b, a\n  @return: Numerator (b) and denominator (a) polynomials of the IIR\n  filter.\n  \"\"\"\n  nyq = 0.5 * fs\n  normal_cutoff = cutoff / nyq\n  b, a = scipy.signal.butter(order, normal_cutoff, btype='low', analog=False)\n  return b, a\n\ndef lowpass_fo(cutoff, fs):\n  \"\"\"\n  First-order Lowpass digital filter design.\n\n  @type  cutoff: float\n  @param cutoff: Cut-off frequency in Hz\n  @type  fs: float\n  @param fs: The sampling frequency (Hz) of the signal to be filtered\n  @rtype: b, a\n  @return: Numerator (b) and denominator (a) polynomials of the IIR\n  filter.\n  \"\"\"\n  import control.matlab\n  F = control.matlab.tf(1,np.array([1/(2*np.pi*cutoff),1]))\n  Fz = control.matlab.c2d(F, 1/fs, 'zoh')\n  b = Fz.num[0][0][-1]\n  a = Fz.den[0][0]\n  return b, a\n\ndef savitzky_golay(y, window_size, order, deriv=0, rate=1):\n  \"\"\"\n  Smooth (and optionally differentiate) data with a Savitzky-Golay filter.\n\n  The Savitzky-Golay filter removes high frequency noise from data.\n  It has the advantage of preserving the original shape and\n  features of the signal better than other types of filtering\n  approaches, such as moving averages techniques.\n\n  Notes\n  =====\n  The Savitzky-Golay is a type of low-pass filter, particularly suited\n  for smoothing noisy data. The main idea behind this approach is to\n  make for each point a least-square fit with a polynomial of high order\n  over a odd-sized window centered at the point.\n\n  Example\n  =======\n\n    >>> import criros\n    >>> import numpy as np\n    >>> import matplotlib.pyplot as plt\n\n    >>> t = np.linspace(-4, 4, 500)\n    >>> y = np.exp( -t**2 ) + np.random.normal(0, 0.05, t.shape)\n    >>> ysg = criros.filters.savitzky_golay(y, window_size=31, order=4)\n    >>> plt.plot(t, y, label='Noisy signal')\n    >>> plt.plot(t, np.exp(-t**2), 'k', lw=1.5, label='Original signal')\n    >>> plt.plot(t, ysg, 'r', label='Filtered signal')\n    >>> plt.legend()\n    >>> plt.grid(True)\n    >>> plt.show()\n\n  @type  y: array_like, shape (N,)\n  @param y: the values of the time history of the signal.\n  @type  window_size: int\n  @param window_size: the length of the window. Must be an odd integer number.\n  @type  order: int\n  @param order: the order of the polynomial used in the filtering. Must be less than C{window_size} - 1.\n  @type  deriv: int\n  @param deriv: the order of the derivative to compute (default = 0 means only smoothing)\n  @rtype: ndarray, shape (N)\n  @return: the smoothed signal (or it's n-th derivative).\n  \"\"\"\n  import numpy as np\n  from math import factorial\n\n  try:\n    window_size = np.abs(np.int(window_size))\n    order = np.abs(np.int(order))\n  except ValueError as msg:\n    raise ValueError(\"window_size and order have to be of type int\")\n  if window_size % 2 != 1 or window_size < 1:\n    raise TypeError(\"window_size size must be a positive odd number\")\n  if window_size < order + 2:\n    raise TypeError(\"window_size is too small for the polynomials order\")\n  order_range = list(range(order+1))\n  half_window = (window_size -1) // 2\n  # precompute coefficients\n  b = np.mat([[k**i for i in order_range] for k in range(-half_window, half_window+1)])\n  m = np.linalg.pinv(b).A[deriv] * rate**deriv * factorial(deriv)\n  # pad the signal at the extremes with\n  # values taken from the signal itself\n  firstvals = y[0] - np.abs( y[1:half_window+1][::-1] - y[0] )\n  lastvals = y[-1] + np.abs(y[-half_window-1:-1][::-1] - y[-1])\n  y = np.concatenate((firstvals, y, lastvals))\n  return np.convolve( m[::-1], y, mode='valid')\n\ndef smooth_diff(n):\n  \"\"\"\n  A smoothed differentiation filter (digital differentiator).\n\n  Such a filter has the following advantages:\n\n  First, the filter involves both the smoothing operation and\n  differentiation operation. It can be regarded as a low-pass\n  differentiation filter (digital differentiator).\n  It is well known that the common differentiation operation amplifies\n  the high-frequency noises. Therefore, the smoothed differentiation\n  filter would be valuable in experimental (noisy) data processing.\n\n  Secondly, the filter coefficients are all convenient integers (simple\n  units) except for an integer scaling factor, as may be especially\n  significant in some applications such as those in some single-chip\n  microcomputers or digital signal processors.\n\n  Example\n  =======\n\n    >>> import math\n    >>> import criros\n    >>> import scipy.signal\n    >>> import numpy as np\n    >>> import matplotlib.pyplot as plt\n\n    >>> fs = 1. # Hz\n    >>> samples = 250*fs\n    >>> t = np.linspace(0, 3. / fs, num=samples)\n    >>> noise = np.random.normal(0, 0.05, t.shape)\n    >>> pos = np.sin(2*np.pi*fs*t)\n    >>> vel = np.diff(pos+noise) * fs\n    >>> smooth_window = 21\n    >>> b = -criros.filters.smooth_diff(smooth_window)\n    >>> vel_smooth = scipy.signal.lfilter(b, 1., pos+noise) * fs\n    >>> plt.figure(), plt.subplot(211), plt.grid(True)\n    >>> plt.plot(t, pos, 'k', lw=2.0, label='Original signal')\n    >>> plt.plot(t, pos+noise, 'r', label='Noisy signal')\n    >>> plt.legend(loc='best')\n    >>> plt.ylabel(r'Position')\n    >>> plt.subplot(212), plt.grid(True)\n    >>> plt.plot(t[1:], vel, label='np.diff')\n    >>> left_off = int(math.ceil(smooth_window / 2.0))\n    >>> right_off = int(smooth_window - left_off)\n    >>> plt.plot(t[left_off:-right_off], vel_smooth[smooth_window:], lw=2.0, label='smooth_diff')\n    >>> plt.legend(loc='best')\n    >>> plt.ylabel(r'Velocity')\n    >>> plt.show()\n\n  References\n  ==========\n    1.  Usui, S.; Amidror, I., I{Digital Low-Pass Differentiation for\n        Biological Signal-Processing}. IEEE Transactions on Biomedical\n        Engineering 1982, 29, (10), 686-693.\n    2.  Luo, J. W.; Bai, J.; He, P.; Ying, K., I{Axial strain calculation\n        using a low-pass digital differentiator in ultrasound\n        elastography}. IEEE Transactions on Ultrasonics Ferroelectrics\n        and Frequency Control 2004, 51, (9), 1119-1127.\n  @type  n: int\n  @param n: filter length (positive integer larger no less than 2)\n  @rtype: ndarray, shape (n)\n  @return: filter coefficients (anti-symmetry)\n  \"\"\"\n  if n >= 2 and math.floor(n) == math.ceil(n):\n    if n % 2 == 1:                    # is odd\n      m = math.trunc((n-1) / 2.0);\n      h = np.concatenate( (-np.ones(m), [0], np.ones(m)) ) / (m * (m+1))\n    else:                             # is even\n      m = math.trunc(n / 2.0);\n      h = np.concatenate( (-np.ones(m), np.ones(m)) ) /m**2\n  else:\n    raise TypeError(\"The input parameter (n) should be a positive integer larger no less than 2.\")\n  return h\n\nclass ButterLowPass:\n  \"\"\"\n  Butterworth lowpass digital filter design.\n\n  Check C{scipy.signal.butter} for further details.\n  \"\"\"\n  def __init__( self, cutoff, fs, order=5 ):\n    \"\"\"\n    C{ButterLowPass} constructor\n\n    @type  cutoff: float\n    @param cutoff: Cut-off frequency in Hz\n    @type  fs: float\n    @param fs: The sampling frequency (Hz) of the signal to be filtered\n    @type  order: int\n    @param order: The order of the filter.\n    \"\"\"\n    nyq = 0.5 * fs\n    normal_cutoff = cutoff / nyq\n    self.b, self.a = scipy.signal.butter(order, normal_cutoff, btype='low', analog=False)\n\n  def __call__( self, x ):\n    \"\"\"\n    Filters the input array across its C{axis=0} (each column is\n    considered as an independent signal). Uses initial conditions (C{zi})\n    for the filter delays.\n\n    @type x: array\n    @param x: An N-dimensional input array.\n    @rtype: array\n    @return: The output of the digital filter.\n    \"\"\"\n    if not hasattr(self, 'zi'):\n      cols = x.shape[1]\n      zi = scipy.signal.lfiltic( self.b, self.a, [] ).tolist() * cols\n      self.zi = np.array(scipy.signal.lfiltic( self.b, self.a, [] ).tolist() * cols)\n      self.zi.shape = (-1, cols)\n    (filtered, self.zi) = scipy.signal.lfilter(self.b, self.a, x, zi=self.zi, axis=0 )\n    return filtered\n\n\nclass LowPassFO:\n  \"\"\"\n  Causal implementation of a 1st-order Lowpass digital filter.\n  \"\"\"\n  def __init__( self, cutoff, fs):\n    \"\"\"\n    C{LowPassFO} constructor\n\n    @type  cutoff: float\n    @param cutoff: Cut-off frequency in Hz\n    @type  fs: float\n    @param fs: The sampling frequency (Hz) of the signal to be filtered\n    @type  order: int\n    @param order: The order of the filter.\n    \"\"\"\n    self.b, self.a = lowpass_fo(cutoff, fs)\n\n  def __call__( self, x ):\n    \"\"\"\n    Filters the input array across its C{axis=0} (each column is\n    considered as an independent signal). Uses initial conditions (C{zi})\n    for the filter delays.\n\n    @type x: array\n    @param x: An N-dimensional input array.\n    @rtype: array\n    @return: The output of the digital filter.\n    \"\"\"\n    if not hasattr(self, 'zi'):\n      cols = x.shape[1]\n      zi = scipy.signal.lfiltic( self.b, self.a, [] ).tolist() * cols\n      self.zi = np.array(scipy.signal.lfiltic( self.b, self.a, [] ).tolist() * cols)\n      self.zi.shape = (-1, cols)\n    (filtered, self.zi) = scipy.signal.lfilter(self.b, self.a, x, zi=self.zi, axis=0 )\n    return filtered\n"
  },
  {
    "path": "ur_control/src/ur_control/fzi_cartesian_compliance_controller.py",
    "content": "# The MIT License (MIT)\n#\n# Copyright (c) 2023 Cristian Beltran\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to deal\n# in the Software without restriction, including without limitation the rights\n# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n# copies of the Software, and to permit persons to whom the Software is\n# furnished to do so, subject to the following conditions:\n#\n# The above copyright notice and this permission notice shall be included in all\n# copies or substantial portions of the Software.\n#\n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n# SOFTWARE.\n#\n# Author: Cristian Beltran\n\nimport collections\nimport threading\nimport types\nimport rospy\nimport numpy as np\n\nfrom ur_control.arm import Arm\nfrom ur_control import conversions\nfrom ur_control.constants import JOINT_TRAJECTORY_CONTROLLER, CARTESIAN_COMPLIANCE_CONTROLLER, ExecutionResult\n\nfrom geometry_msgs.msg import WrenchStamped, PoseStamped\n\nimport dynamic_reconfigure.client\n\n\ndef is_more_extreme(value, target):\n    if (np.all(value > 0) and np.all(target > 0)):\n        return np.all(value > target)\n    elif (np.all(value < 0) and np.all(target < 0)):\n        return np.all(value < target)\n    return False\n\n\ndef convert_selection_matrix_to_parameters(selection_matrix):\n    return {\n        \"stiffness\":\n        {\n            \"sel_x\": selection_matrix[0],\n            \"sel_y\": selection_matrix[1],\n            \"sel_z\": selection_matrix[2],\n            \"sel_ax\": selection_matrix[3],\n            \"sel_ay\": selection_matrix[4],\n            \"sel_az\": selection_matrix[5],\n        }\n    }\n\n\ndef convert_stiffness_to_parameters(stiffness):\n    return {\n        \"stiffness\":\n        {\n            \"trans_x\": stiffness[0],\n            \"trans_y\": stiffness[1],\n            \"trans_z\": stiffness[2],\n            \"rot_x\": stiffness[3],\n            \"rot_y\": stiffness[4],\n            \"rot_z\": stiffness[5],\n        }\n    }\n\n\ndef convert_pd_gains_to_parameters(p_gains, d_gains=[0, 0, 0, 0, 0, 0]):\n    return {\n        \"trans_x\": {\"p\": p_gains[0], \"d\": d_gains[0]},\n        \"trans_y\": {\"p\": p_gains[1], \"d\": d_gains[1]},\n        \"trans_z\": {\"p\": p_gains[2], \"d\": d_gains[2]},\n        \"rot_x\": {\"p\": p_gains[3], \"d\": d_gains[3]},\n        \"rot_y\": {\"p\": p_gains[4], \"d\": d_gains[4]},\n        \"rot_z\": {\"p\": p_gains[5], \"d\": d_gains[5]}\n    }\n\n\ndef switch_cartesian_controllers(func):\n    '''Decorator that switches from cartesian to joint trajectory controllers and back'''\n\n    def wrap(*args, **kwargs):\n        if not args[0].auto_switch_controllers:\n            return func(*args, **kwargs)\n\n        args[0].activate_cartesian_controller()\n\n        try:\n            res = func(*args, **kwargs)\n        except Exception as e:\n            rospy.logerr(\"Exception: %s\" % e)\n            res = ExecutionResult.DONE\n\n        args[0].activate_joint_trajectory_controller()\n\n        return res\n    return wrap\n\n\nclass CompliantController(Arm):\n    def __init__(self,\n                 **kwargs):\n        \"\"\" Compliant controller using FZI Cartesian Compliance controllers \"\"\"\n        Arm.__init__(self, **kwargs)\n\n        self.is_gazebo_sim = False\n        if rospy.has_param(\"use_gazebo_sim\"):\n            self.is_gazebo_sim = True\n\n        self.rate = rospy.Rate(self.joint_traj_controller.rate)\n        self.min_dt = 1. / self.joint_traj_controller.rate\n\n        self.auto_switch_controllers = True  # Safety switching back to safe controllers\n\n        self.current_target_pose = np.zeros(7)\n        self.current_wrench_pose = np.zeros(6)\n\n        # Monitor external goals\n        rospy.Subscriber('%s%s/target_frame' % (self.ns, CARTESIAN_COMPLIANCE_CONTROLLER), PoseStamped, self.target_pose_cb)\n        rospy.Subscriber('%s%s/target_wrench' % (self.ns, CARTESIAN_COMPLIANCE_CONTROLLER), WrenchStamped, self.target_wrench_cb)\n\n        self.cartesian_target_pose_pub = rospy.Publisher('%s%s/target_frame' % (self.ns, CARTESIAN_COMPLIANCE_CONTROLLER), PoseStamped, queue_size=10.0)\n        self.cartesian_target_wrench_pub = rospy.Publisher('%s%s/target_wrench' % (self.ns, CARTESIAN_COMPLIANCE_CONTROLLER), WrenchStamped, queue_size=10.0)\n\n        self.dyn_config_clients = {\n            \"trans_x\": dynamic_reconfigure.client.Client(\"%s%s/pd_gains/trans_x\" % (self.ns, CARTESIAN_COMPLIANCE_CONTROLLER), timeout=10),\n            \"trans_y\": dynamic_reconfigure.client.Client(\"%s%s/pd_gains/trans_y\" % (self.ns, CARTESIAN_COMPLIANCE_CONTROLLER), timeout=10),\n            \"trans_z\": dynamic_reconfigure.client.Client(\"%s%s/pd_gains/trans_z\" % (self.ns, CARTESIAN_COMPLIANCE_CONTROLLER), timeout=10),\n            \"rot_x\": dynamic_reconfigure.client.Client(\"%s%s/pd_gains/rot_x\" % (self.ns, CARTESIAN_COMPLIANCE_CONTROLLER), timeout=10),\n            \"rot_y\": dynamic_reconfigure.client.Client(\"%s%s/pd_gains/rot_y\" % (self.ns, CARTESIAN_COMPLIANCE_CONTROLLER), timeout=10),\n            \"rot_z\": dynamic_reconfigure.client.Client(\"%s%s/pd_gains/rot_z\" % (self.ns, CARTESIAN_COMPLIANCE_CONTROLLER), timeout=10),\n\n            \"stiffness\": dynamic_reconfigure.client.Client(\"%s%s/stiffness\" % (self.ns, CARTESIAN_COMPLIANCE_CONTROLLER), timeout=10),\n\n            \"hand_frame_control\": dynamic_reconfigure.client.Client(\"%s%s/force\" % (self.ns, CARTESIAN_COMPLIANCE_CONTROLLER), timeout=10),\n\n            \"solver\": dynamic_reconfigure.client.Client(\"%s%s/solver\" % (self.ns, CARTESIAN_COMPLIANCE_CONTROLLER), timeout=10),\n\n            \"end_effector_link\": dynamic_reconfigure.client.Client(\"%s%s\" % (self.ns, CARTESIAN_COMPLIANCE_CONTROLLER), timeout=10),\n        }\n        self.param_update_queue = collections.deque(maxlen=15)\n        self.update_thread = None\n        self.update_lock = threading.Lock()\n        self.update_condition = threading.Condition()\n        self.update_thread_stopped = False\n        self.async_mode = False\n\n        self.set_hand_frame_control(False)\n        self.set_end_effector_link(self.ee_link)\n        self.min_scale_error = 1.5\n\n        rospy.on_shutdown(self.activate_joint_trajectory_controller)\n\n    def __del__(self):\n        # wake up thread and stop it\n        if hasattr(self, 'update_condition'):\n            with self.update_condition:\n                self.update_thread_stopped = True\n                self.update_condition.notify_all()\n\n    def target_pose_cb(self, data):\n        self.current_target_pose = conversions.from_pose_to_list(data.pose)\n\n    def target_wrench_cb(self, data):\n        self.current_target_wrench = conversions.from_wrench(data.wrench)\n\n    def activate_cartesian_controller(self):\n        return self.controller_manager.switch_controllers(controllers_on=[CARTESIAN_COMPLIANCE_CONTROLLER],\n                                                          controllers_off=[JOINT_TRAJECTORY_CONTROLLER])\n\n    def activate_joint_trajectory_controller(self):\n        return self.controller_manager.switch_controllers(controllers_on=[JOINT_TRAJECTORY_CONTROLLER],\n                                                          controllers_off=[CARTESIAN_COMPLIANCE_CONTROLLER])\n\n    def set_cartesian_target_wrench(self, wrench: list):\n        # Publish the target wrench\n        try:\n            target_wrench = WrenchStamped()\n            target_wrench.header.frame_id = self.base_link\n            target_wrench.wrench = conversions.to_wrench(wrench)\n            self.cartesian_target_wrench_pub.publish(target_wrench)\n        except Exception as e:\n            rospy.logerr(\"Fail to set_target_wrench(): %s\" % e)\n\n    def set_cartesian_target_pose(self, pose: list):\n        # Publish the target pose\n        try:\n            target_pose = conversions.to_pose_stamped(self.base_link, pose)\n            self.cartesian_target_pose_pub.publish(target_pose)\n        except Exception as e:\n            rospy.logerr(\"Fail to set_target_pose(): %s\" % e)\n\n    def publish_parameter_update(self, parameters):\n        try:\n            for param in parameters.keys():\n                self.dyn_config_clients[param].update_configuration(parameters[param])\n        except Exception as e:\n            rospy.logerr_throttle(1, f\"failed publish_parameter_update {e}\")\n            pass\n\n    def __update_controller_parameter_loop__(self):\n        while not rospy.is_shutdown():\n            if self.update_thread_stopped:\n                return\n\n            # Sleep until new request is available\n            if not self.param_update_queue:\n                with self.update_condition:\n                    self.update_condition.wait(timeout=0.5)\n                return\n            else:\n                # Lock queue update\n                with self.update_lock:\n                    parameters = self.param_update_queue.pop()\n                if parameters:\n                    self.publish_parameter_update(parameters)\n                    parameters = None\n\n    def update_controller_parameters(self, parameters: dict):\n        if self.async_mode:\n            with self.update_lock:\n                self.param_update_queue.append(parameters)\n            if self.update_thread is None or not self.update_thread.is_alive():\n                del self.update_thread\n                self.update_thread = threading.Thread(target=self.__update_controller_parameter_loop__)\n                self.update_thread.start()\n            with self.update_condition:\n                self.update_condition.notify()\n        else:\n            self.publish_parameter_update(parameters)\n\n    def update_selection_matrix(self, selection_matrix):\n        parameters = convert_selection_matrix_to_parameters(selection_matrix)\n        self.update_controller_parameters(parameters)\n\n    def update_pd_gains(self, p_gains, d_gains=[0, 0, 0, 0, 0, 0]):\n        parameters = convert_pd_gains_to_parameters(p_gains, d_gains)\n        self.update_controller_parameters(parameters)\n\n    def update_stiffness(self, stiffness):\n        parameters = convert_stiffness_to_parameters(stiffness)\n        self.update_controller_parameters(parameters)\n\n    def set_control_mode(self, mode=\"parallel\"):\n        parameters = {\"stiffness\": {}}\n        if mode == \"parallel\":\n            parameters[\"stiffness\"].update({\"use_parallel_force_position_control\": True})\n        elif mode == \"spring-mass-damper\":\n            parameters[\"stiffness\"].update({\"use_parallel_force_position_control\": False})\n        else:\n            raise ValueError(\"Unknown control mode %s\" % mode)\n        self.update_controller_parameters(parameters)\n\n    def set_position_control_mode(self, enable=True):\n        parameters = convert_selection_matrix_to_parameters(np.ones(6))\n        parameters[\"stiffness\"].update({\"use_parallel_force_position_control\": enable})\n        self.update_controller_parameters(parameters)\n\n    def set_hand_frame_control(self, enable):\n        parameters = {\"hand_frame_control\": {\"hand_frame_control\": enable}}\n        self.update_controller_parameters(parameters)\n\n    def set_end_effector_link(self, end_effector_link):\n        \"\"\" Change the end_effector_link used in the Cartesian Compliance Controllers\"\"\"\n        parameters = {\"end_effector_link\": {\"end_effector_link\": end_effector_link}}\n        self.update_controller_parameters(parameters)\n\n    def set_solver_parameters(self, error_scale=None, iterations=None, publish_state_feedback=None):\n        parameters = {\"solver\": {}}\n        if error_scale:\n            error_scale = error_scale if not self.is_gazebo_sim else error_scale * 0.01\n            parameters[\"solver\"].update({\"error_scale\": round(error_scale, 4)})\n        if iterations:\n            parameters[\"solver\"].update({\"iterations\": iterations})\n        if publish_state_feedback:\n            parameters[\"solver\"].update({\"publish_state_feedback\": publish_state_feedback})\n        self.update_controller_parameters(parameters)\n\n    def wait_for_robot_to_stop(self, wait_time=5):\n        remaining_time = wait_time\n        start_time = rospy.get_time()\n\n        prev_state = self.joint_angles()\n\n        no_motion_count = 0\n\n        rate = rospy.Rate(500)\n\n        while remaining_time > 0 and no_motion_count < 3:\n            rate.sleep()\n            remaining_time = wait_time - (rospy.get_time() - start_time)\n            curr_state = self.joint_angles()\n            if np.allclose(prev_state, curr_state, atol=0.0001):\n                no_motion_count += 1\n            else:\n                no_motion_count = 0\n\n    @switch_cartesian_controllers\n    def execute_compliance_control(self, trajectory: np.array, target_wrench: np.array, max_force_torque: list,\n                                   duration: float, stop_on_target_force=False, termination_criteria=None,\n                                   auto_stop=True, func=None, scale_up_error=False, max_scale_error=None,\n                                   relative_to_ee=False, stop_at_wrench=None):\n\n        # Space out the trajectory points\n        trajectory = trajectory.reshape((-1, 7))  # Assuming this format [x,y,z,qx,qy,qz,qw]\n        step_duration = max(self.min_dt, duration / float(trajectory.shape[0]))\n        trajectory_index = 0\n\n        # loop throw target trajectory\n        initial_time = rospy.get_time()\n        step_initial_time = rospy.get_time()\n\n        result = ExecutionResult.DONE\n        if stop_on_target_force and stop_at_wrench is None:\n            raise ValueError(\"'stop_at_wrench' not specify when requesting 'stop_on_target_force'\")\n\n        if stop_on_target_force:\n            stop_at_wrench = np.array(stop_at_wrench)\n            stop_target_wrench_mask = np.flatnonzero(stop_at_wrench)\n            rospy.loginfo_throttle(1, 'TARGET F/T {}'.format(np.round(stop_at_wrench[stop_target_wrench_mask], 2)))\n\n        # Publish target wrench only once\n        self.set_cartesian_target_wrench(target_wrench)\n\n        # Publish first trajectory point\n        self.set_cartesian_target_pose(trajectory[trajectory_index])\n\n        if scale_up_error and max_scale_error:\n            self.sliding_error(trajectory[trajectory_index], max_scale_error)\n\n        while not rospy.is_shutdown() and (rospy.get_time() - initial_time) < duration:\n\n            current_wrench = self.get_wrench(base_frame_control=True)\n\n            if termination_criteria is not None:\n                assert isinstance(termination_criteria, types.LambdaType), \"Invalid termination criteria, expecting lambda/function with one argument[current pose array[7]]\"\n                if termination_criteria(self.end_effector()):\n                    rospy.loginfo(\"Termination criteria returned True, stopping force control\")\n                    result = ExecutionResult.TERMINATION_CRITERIA\n                    break\n\n            rospy.loginfo_throttle(1, 'F/T {}'.format(np.round(current_wrench[:3], 2)))\n            if stop_on_target_force and is_more_extreme(current_wrench[stop_target_wrench_mask], stop_at_wrench[stop_target_wrench_mask]):\n                rospy.loginfo('Target F/T reached {}'.format(np.round(current_wrench, 2)) + ' Stopping!')\n                result = ExecutionResult.STOP_ON_TARGET_FORCE\n                break\n\n            # Safety limits: max force\n            if np.any(np.abs(current_wrench) > max_force_torque):\n                rospy.logerr('Maximum force/torque exceeded {}'.format(np.round(current_wrench, 3)))\n                result = ExecutionResult.FORCE_TORQUE_EXCEEDED\n                break\n\n            if (rospy.get_time() - step_initial_time) > step_duration:\n                step_initial_time = rospy.get_time()\n                trajectory_index += 1\n                if trajectory_index >= trajectory.shape[0]:\n                    break\n                # push next point to the controller\n                self.set_cartesian_target_pose(trajectory[trajectory_index])\n\n                if scale_up_error and max_scale_error:\n                    self.sliding_error(trajectory[trajectory_index], max_scale_error)\n\n            if func:\n                func(self.end_effector())\n\n            self.rate.sleep()\n\n        if auto_stop:\n            # Stop moving\n            # set position control only, then fix the pose to the current one\n            self.set_cartesian_target_pose(self.end_effector())\n            self.set_position_control_mode()\n            self.wait_for_robot_to_stop(wait_time=5)\n\n        return result\n\n    def sliding_error(self, target_pose, max_scale_error):\n        # Scale error_scale as position error decreases until a max scale error\n        position_error = np.linalg.norm(target_pose[:3] - self.end_effector()[:3])\n        # from position_error < 0.01m increase scale error\n        factor = 1 - np.tanh(100 * position_error)\n        # scale_error = np.interp(factor, [0, 1], [0.01, max_scale_error])\n        scale_error = np.interp(factor, [0, 1], [self.min_scale_error, max_scale_error])\n        self.set_solver_parameters(error_scale=np.round(scale_error, 3))\n"
  },
  {
    "path": "ur_control/src/ur_control/grippers.py",
    "content": "# Gripper action\nimport actionlib\nimport numpy as np\nimport rospy\nfrom sensor_msgs.msg import JointState\nfrom control_msgs.msg import GripperCommandAction, GripperCommandGoal\n\nfrom ur_control import utils\n# Link attacher\ntry:\n    from gazebo_ros_link_attacher.srv import Attach, AttachRequest\nexcept ImportError:\n    print(\"Grasping pluging can't be loaded\")\n\ntry:\n    import robotiq_msgs.msg\nexcept ImportError:\n    print(\"Robotiq gripper can't be load. robotiq_msgs required.\")\n\n\nclass GripperControllerBase():\n    def __init__(self, namespace='', node_name='', prefix=None, timeout=5.0) -> None:\n        self.ns = utils.solve_namespace(namespace)\n        self.prefix = prefix if prefix is not None else ''\n        self.valid_joint_names = []\n        if rospy.has_param(self.ns + node_name + \"/joint\"):\n            self.valid_joint_names = [rospy.get_param(self.ns + node_name + \"/joint\")]\n        elif rospy.has_param(self.ns + node_name + \"/joints\"):\n            self.valid_joint_names = rospy.get_param(self.ns + node_name + \"/joints\")\n        elif rospy.has_param(self.ns + node_name + \"/joint_name\"):\n            self.valid_joint_names = rospy.get_param(self.ns + node_name + \"/joint_name\")\n            if isinstance(self.valid_joint_names, str):\n                self.valid_joint_names = [prefix + self.valid_joint_names]\n        else:\n            rospy.logerr(\"Couldn't find valid joints params in %s\" % (self.ns + node_name))\n            return\n\n        self._js_sub = rospy.Subscriber('/joint_states', JointState, self.joint_states_cb, queue_size=1)\n\n        retry = False\n        rospy.logdebug('Waiting for [%sjoint_states] topic' % self.ns)\n        start_time = rospy.get_time()\n        while not hasattr(self, '_joint_names'):\n            if (rospy.get_time() - start_time) > timeout and not retry:\n                # Re-try with namespace\n                self._js_sub = rospy.Subscriber('%sjoint_states' % self.ns, JointState, self.joint_states_cb, queue_size=1)\n                start_time = rospy.get_time()\n                retry = True\n                continue\n            elif (rospy.get_time() - start_time) > timeout and retry:\n                rospy.logerr('Timed out waiting for gripper joint_states topic')\n                return\n            rospy.sleep(0.01)\n            if rospy.is_shutdown():\n                return\n\n    def open(self):\n        raise NotImplementedError()\n\n    def close(self):\n        raise NotImplementedError()\n\n    def get_position(self):\n        return self._current_jnt_positions[0]\n\n    def get_velocity(self):\n        return self._current_jnt_velocities[0]\n\n    def get_opening_percentage(self):\n        raise NotImplementedError()\n\n    def joint_states_cb(self, msg):\n        \"\"\"\n        Callback executed every time a message is publish in the C{joint_states} topic.\n        @type  msg: sensor_msgs/JointState\n        @param msg: The JointState message published by the RT hardware interface.\n        \"\"\"\n\n        position = []\n        velocity = []\n        effort = []\n        name = []\n\n        for joint_name in self.valid_joint_names:\n            if joint_name in msg.name:\n                idx = msg.name.index(joint_name)\n                name.append(msg.name[idx])\n                effort.append(msg.effort[idx])\n                velocity.append(msg.velocity[idx])\n                position.append(msg.position[idx])\n\n        if set(name) == set(self.valid_joint_names):\n            self._current_jnt_positions = np.array(position)\n            self._current_jnt_velocities = np.array(velocity)\n            self._current_jnt_efforts = np.array(effort)\n            self._joint_names = list(name)\n\n\nclass GripperController(GripperControllerBase):\n    def __init__(self, namespace='', prefix=None, timeout=5.0, attach_link='robot::wrist_3_link'):\n        node_name = \"gripper_controller\"\n        super().__init__(namespace, node_name, prefix, timeout)\n        self.gripper_type = str(rospy.get_param(self.ns + node_name + \"/gripper_type\"))\n\n        if self.gripper_type == \"hand-e\":\n            self._max_gap = 0.025 * 2.0\n            self._to_open = 0.0\n            self._to_close = self._max_gap\n        elif self.gripper_type == \"85\":\n            self._max_gap = 0.085\n            self._to_open = self._max_gap\n            self._to_close = 0.001\n            self._max_angle = 0.8028\n        elif self.gripper_type == \"140\":\n            self._max_gap = 0.140\n            self._to_open = self._max_gap\n            self._to_close = 0.001\n            self._max_angle = 0.69\n\n        attach_plugin = rospy.get_param(\"grasp_plugin\", default=False)\n        if attach_plugin:\n            try:\n                # gazebo_ros link attacher\n                self.attach_link = attach_link\n                self.attach_srv = rospy.ServiceProxy('/link_attacher_node/attach', Attach)\n                self.detach_srv = rospy.ServiceProxy('/link_attacher_node/detach', Attach)\n                rospy.logdebug('Waiting for service: {0}'.format(self.attach_srv.resolved_name))\n                rospy.logdebug('Waiting for service: {0}'.format(self.detach_srv.resolved_name))\n                self.attach_srv.wait_for_service()\n                self.detach_srv.wait_for_service()\n            except Exception:\n                rospy.logerr(\"Fail to load grasp plugin services. Make sure to launch the right Gazebo world!\")\n        # Gripper action server\n        action_server = self.ns + node_name + '/gripper_cmd'\n        self._client = actionlib.SimpleActionClient(action_server, GripperCommandAction)\n        self._goal = GripperCommandGoal()\n        rospy.logdebug('Waiting for [%s] action server' % action_server)\n        server_up = self._client.wait_for_server(timeout=rospy.Duration(timeout))\n        if not server_up:\n            rospy.logerr('Timed out waiting for Gripper Command'\n                         ' Action Server to connect. Start the action server'\n                         ' before running this node.')\n            raise rospy.ROSException('GripperCommandAction timed out: {0}'.format(action_server))\n        rospy.logdebug('Successfully connected to [%s]' % action_server)\n        rospy.loginfo('GripperCommandAction initialized. ns: {0}'.format(self.ns))\n\n    def close(self, wait=True):\n        return self.command(0.0, percentage=True, wait=wait)\n\n    def percentage_command(self, value, wait=True):\n        return self.command(value, percentage=True, wait=wait)\n\n    def command(self, value, percentage=False, wait=True):\n        \"\"\" assume command given in percentage otherwise meters \n            percentage bool: If True value value assumed to be from 0.0 to 1.0\n                                     where 1.0 is open and 0.0 is close\n                             If False value value assume to be from 0.0 to max_gap\n        \"\"\"\n        if value == \"close\":\n            return self.close()\n        elif value == \"open\":\n            return self.open()\n\n        if self.gripper_type == \"85\" or self.gripper_type == \"140\":\n            if percentage:\n                value = np.clip(value, 0.0, 1.0)\n                cmd = (value) * self._max_gap\n            else:\n                cmd = np.clip(value, 0.0, self._max_gap)\n                cmd = (value)\n            angle = self._distance_to_angle(cmd)\n            self._goal.command.position = angle\n        if self.gripper_type == \"hand-e\":\n            cmd = 0.0\n            if percentage:\n                value = np.clip(value, 0.0, 1.0)\n                cmd = (1.0 - value) * self._max_gap / 2.0\n            else:\n                cmd = np.clip(value, 0.0, self._max_gap)\n                cmd = (self._max_gap - value) / 2.0\n            self._goal.command.position = cmd\n        if wait:\n            self._client.send_goal_and_wait(self._goal, execute_timeout=rospy.Duration(2))\n            rospy.sleep(0.05)\n        else:\n            self._client.send_goal(self._goal)\n        return True\n\n    def _distance_to_angle(self, distance):\n        distance = np.clip(distance, 0, self._max_gap)\n        angle = (self._max_gap - distance) * self._max_angle / self._max_gap\n        return angle\n\n    def _angle_to_distance(self, angle):\n        angle = np.clip(angle, 0, self._max_angle)\n        distance = (self._max_angle - angle) * self._max_gap / self._max_angle\n        return distance\n\n    def get_result(self):\n        return self._client.get_result()\n\n    def get_state(self):\n        return self._client.get_state()\n\n    def grab(self, link_name):\n        parent = self.attach_link.split('::')\n        child = link_name.split('::')\n        req = AttachRequest()\n        req.model_name_1 = parent[0]\n        req.link_name_1 = parent[1]\n        req.model_name_2 = child[0]\n        req.link_name_2 = child[1]\n        res = self.attach_srv.call(req)\n        return res.ok\n\n    def open(self, wait=True):\n        return self.command(1.0, percentage=True, wait=wait)\n\n    def release(self, link_name):\n        parent = self.attach_link.rsplit('::')\n        child = link_name.rsplit('::')\n        req = AttachRequest()\n        req.model_name_1 = parent[0]\n        req.link_name_1 = parent[1]\n        req.model_name_2 = child[0]\n        req.link_name_2 = child[1]\n        res = self.detach_srv.call(req)\n        return res.ok\n\n    def stop(self):\n        self._client.cancel_goal()\n\n    def wait(self, timeout=15.0):\n        return self._client.wait_for_result(timeout=rospy.Duration(timeout))\n\n    def get_position(self):\n        \"\"\"\n        Returns the current joint positions of the gripper.\n        @rtype: numpy.ndarray\n        @return: Current joint positions of the gripper.\n        \"\"\"\n        if self.gripper_type == \"hand-e\":\n            return self._max_gap - (self._current_jnt_positions[0] * 2.0)\n        else:\n            return self._angle_to_distance(self._current_jnt_positions[0])\n\n    def get_opening_percentage(self):\n        return self.get_position() / self._max_gap\n\n\nclass RobotiqGripper(GripperControllerBase):\n    def __init__(self, namespace=\"\", prefix=\"\", timeout=2):\n        node_name = \"gripper_action_controller\"\n        super().__init__(namespace, node_name, prefix, timeout)\n        self.ns = namespace\n\n        self.opening_width = 0.0\n\n        self.gripper = actionlib.SimpleActionClient(self.ns + \"gripper_action_controller\", robotiq_msgs.msg.CModelCommandAction)\n        self.sub_gripper_status_ = rospy.Subscriber(\"/%s/gripper_status\" % self.ns, robotiq_msgs.msg.CModelCommandFeedback, self._gripper_status_callback)\n\n        if rospy.has_param(self.ns + \"gripper_action_controller/joint_name\"):\n            self.gripper_type = rospy.get_param(self.ns + \"gripper_action_controller/joint_name\")\n            self._max_gap = float(rospy.get_param(self.ns + \"gripper_action_controller/max_gap\"))\n            self._max_angle = float(rospy.get_param(self.ns + \"gripper_action_controller/counts_to_meters\"))\n        else:\n            rospy.logwarn(\"Robotiq gripper parameters not found. Assuming Robotiq Gripper 85\")\n            self.gripper_type = \"finger_joint\"\n            self._max_gap = 0.085\n            self._max_angle = 0.8\n\n        if self.gripper_type == \"robotiq_hande_joint_finger\":\n            self._max_gap = self._max_gap\n            self._to_open = 0.0\n            self._to_close = self._max_gap\n        elif self.gripper_type == \"finger_joint\":\n            self._to_open = self._max_gap\n            self._to_close = 0.001\n\n        success = self.gripper.wait_for_server(rospy.Duration(timeout))\n        if success:\n            rospy.loginfo(\"=== Connected to ROBOTIQ gripper ===\")\n        else:\n            rospy.logerr(\"Unable to connect to ROBOTIQ gripper\")\n\n    def _gripper_status_callback(self, msg):\n        self.opening_width = msg.position  # [m]\n\n    def get_opening_percentage(self):\n        return self.opening_width / self._max_gap\n\n    def close(self, force=40.0, velocity=1.0, wait=True):\n        return self.command(\"close\", force=force, velocity=velocity, wait=wait)\n\n    def open(self, velocity=1.0, wait=True, opening_width=None):\n        command = opening_width if opening_width else \"open\"\n        return self.command(command, wait=wait, velocity=velocity)\n\n    def convert_percentage_to_width(self, width):\n        if self.gripper_type == \"finger_joint\":\n            width = np.clip(width, 0.0, self._max_gap)\n            percentage = width / self._max_gap\n        if self.gripper_type == \"hand-e\":\n            raise ValueError(\"Unimplemented\")\n        return percentage\n\n    def convert_width_to_percentage(self, percentage):\n        if self.gripper_type == \"finger_joint\":\n            percentage = np.clip(percentage, 0.0, 1.0)\n            width = (percentage) * self._max_gap\n        if self.gripper_type == \"hand-e\":\n            percentage = np.clip(percentage, 0.0, 1.0)\n            width = (1.0 - percentage) * self._max_gap / 2.0\n        return width\n\n    def percentage_command(self, value, wait=True):\n        \"\"\"\n        0.0 = Fully Close\n        1.0 = Fully Open\n        \"\"\"\n        value = np.clip(value, 0.0, 1.0)\n        cmd = (value) * self._max_gap\n        return self.command(cmd, wait=wait)\n\n    def command(self, command, force=40.0, velocity=1.0, wait=True):\n        \"\"\"\n        command: \"open\", \"close\" or opening width\n        force: Gripper force in N. From 40 to 100\n        velocity: Gripper speed. From 0.013 to 0.1\n        attached_last_object: bool, Attach/detach last attached object if set to True\n\n        Use a slow closing speed when using a low gripper force, or the force might be unexpectedly high.\n        \"\"\"\n        goal = robotiq_msgs.msg.CModelCommandGoal()\n        goal.velocity = velocity\n        goal.force = force\n        if command == \"close\":\n            goal.position = 0.0\n        elif command == \"open\":\n            goal.position = 0.140\n        else:\n            goal.position = command     # This sets the opening width directly\n\n        self.gripper.send_goal(goal)\n        rospy.logdebug(\"Sending command \" + str(command) + \" to gripper: \" + self.ns)\n        if wait:\n            self.gripper.wait_for_result(rospy.Duration(5.0))  # Default wait time: 5 s\n            result = self.gripper.get_result()\n            return True if result else False\n        else:\n            return True\n"
  },
  {
    "path": "ur_control/src/ur_control/hybrid_controller.py",
    "content": "# Copyright (c) 2018-2021, Cristian Beltran.  All rights reserved.\n#\n# Cristian Beltran and its licensors retain all intellectual property\n# and proprietary rights in and to this software, related documentation\n# and any modifications thereto.  Any use, reproduction, disclosure or\n# distribution of this software and related documentation without an express\n# license agreement from Cristian Beltran is strictly prohibited.\n\nimport rospy\nfrom ur_control import utils, conversions, spalg\nimport numpy as np\n\n\nclass ForcePositionController(object):\n    def __init__(self,\n                 position_pd,\n                 force_pd,\n                 alpha=None,\n                 dt=0.002):\n        \"\"\" Force-Position controller\n            alpha: [list] tradeoff between position and force signal for each direction\n             \"\"\"\n        self.position_pd = position_pd\n        self.force_pd = force_pd\n\n        self.alpha = np.array(alpha)\n        self.dt = dt\n\n        self.error_data = list()  # data for graph\n        self.update_data = list()  # data for graph\n\n        self.safety_mode = False\n\n        self.reset()\n\n    def set_goals(self, position=None, force=None):\n        \"\"\"\n           Define a goal for the position and force directions\n           position: array(3)\n           force: array(3)\n        \"\"\"\n        # The position goal is the distance from\n        # the current position\n        if position is not None:\n            assert not np.isscalar(position), \"Invalid target position\"\n            self.target_position = position\n        # TODO: The force will be constant for now\n        if force is not None:\n            self.target_force = force\n\n    def reset(self):\n        \"\"\" reset targets and PID params \"\"\"\n        self.qc = None\n        self.target_position = None\n        self.safety_mode = False\n        self.position_pd.reset()\n        self.force_pd.reset()\n        self.error_data = list()\n        self.update_data = list()\n\n    def control_position(self, fc, xv):\n        \"\"\" Obtains the next action from the hybrid controller\n            fc: list, current wrench\n            xv: list, virtual trajectory tranlsation + euler\n            :return: list, angular velocity\n        \"\"\"\n        # Force PD compensator\n        Fe = -1.*self.target_force - fc  # error\n        dxf_force = self.force_pd.update(error=Fe, dt=self.dt)\n\n        # Position PD compensator\n        xe = self.target_position - xv\n        dxf_pos = self.position_pd.update(error=xe, dt=self.dt)\n\n        # Sum step from force and step from position PDs\n        dxf_pos = np.dot(self.alpha, dxf_pos)\n        dxf_force = np.dot((np.identity(3) - self.alpha), dxf_force)\n        return dxf_pos + dxf_force, dxf_pos, dxf_force\n\n    def control_position_orientation(self, fc, xv):\n        \"\"\" Obtains the next action from the hybrid controller\n            fc: list, current wrench\n            xv: list, virtual trajectory translation + quaternion\n            :return: list, angular velocity \n        \"\"\"\n        # Force PD compensator\n        # print(\"fc\", fc, \" ===  self.target_force\", self.target_force)\n        Fe = -1*self.target_force - fc  # error\n        dxf_force = self.force_pd.update(error=Fe, dt=self.dt)\n\n        # Position PD compensator\n        error = spalg.translation_rotation_error(self.target_position, xv)\n        dxf_pos = self.position_pd.update(error=error, dt=self.dt)\n\n        # self.error_data.append([error, Fe])\n        # self.update_data.append([dxf_pos, dxf_force])\n\n        # Sum step from force and step from position PDs\n        dxf_pos = np.dot(self.alpha, dxf_pos)\n        dxf_force = np.dot((np.identity(6) - self.alpha), dxf_force)\n        return dxf_pos + dxf_force\n\n    def control_velocity(self, fc, xv):\n        \"\"\" Obtains the next action from hybrid controller \n            fc: list, current wrench\n            xv: list, virtual trajectory\n            :return: list, velocity (linear + angular)\n        \"\"\"\n        # Force PD compensator\n        Fe = (-1.*(self.target_force) - fc)  # error\n        dxf_force = self.force_pd.update(error=Fe, dt=self.dt)\n\n        # Position PD compensator\n        xe = self.target_position - xv\n        dxf_pos = self.position_pd.update(error=xe, dt=self.dt)\n\n        # convert euler angle error to angular velocity\n        T = conversions.euler_transformation_matrix(xv[3:])\n        dxf_force[3:] = np.dot(T, dxf_force[3:])\n        dxf_pos[3:] = np.dot(T, dxf_pos[3:])\n\n        # Sum step from force and step from position PDs\n        dxf_pos = np.dot(self.alpha, dxf_pos)\n        dxf_force = np.dot((np.identity(6) - self.alpha), dxf_force)\n        return dxf_pos + dxf_force, dxf_pos, dxf_force\n"
  },
  {
    "path": "ur_control/src/ur_control/impedance_control.py",
    "content": "# Copyright (c) 2018-2021, Cristian Beltran.  All rights reserved.\n#\n# Cristian Beltran and its licensors retain all intellectual property\n# and proprietary rights in and to this software, related documentation\n# and any modifications thereto.  Any use, reproduction, disclosure or\n# distribution of this software and related documentation without an express\n# license agreement from Cristian Beltran is strictly prohibited.\n#\n# Author: Cristian Beltran\n\nimport numpy as np\nimport rospy\n\n\nclass AdmittanceModel():\n    \"\"\"\n        Admittance controller\n        3 different implementation are available\n    \"\"\"\n    def __repr__(self):\n        return \"AdmittanceModel()\"\n    def __str__(self):\n        return \"Method: %s m: %s k: %s b: %s dt: %s\" % (self.method, self.m, self.k, self.b, self.dt)\n\n    def __init__(self, inertia, stiffness, damper, dt, method=\"discretization\"):\n        \"\"\"init controller\"\"\"\n\n        self.method = method\n        self.set_constants(inertia, stiffness, damper, dt, reset=True)\n\n    def reset(self):\n        if self.method == \"traditional\":\n            # [dx(t-1), dx(t-2)]\n            self.dx_hist = [0, 0]\n\n        elif self.method == \"discretization\":\n            # [x(t-1), x(t-2)]\n            self.dx_hist = [0.0, 0.0]\n            # [f(t-1), f(t-2)]\n            self.fc_hist = [0.0, 0.0]\n\n        elif self.method == \"integration\":\n            # position [(t-1)]\n            self.position = 0.0\n            # velocity [(t-1)]\n            self.velocity = 0.0\n            # acceleration [(t-1)]\n            self.accelaration = 0.0\n            # force [(t-1)]\n            self.force = 0.0\n        else:\n            raise AttributeError(\"Method not supported\")\n\n    def set_constants(self, inertia, stiffness, damper, dt, reset=False):\n        \"\"\" set impedance parameters \"\"\"\n        self.m = inertia\n        self.k = stiffness\n        self.b = damper\n        self.T = self.dt = dt\n\n        # compute once only\n        if self.method == \"traditional\":\n            self.T_2 = self.T**2\n            self.b_t = self.b*self.T\n            self.denominator = self.m + self.b_t + self.k*self.T_2\n        if self.method == \"discretization\":\n            self.T_2 = self.T**2\n            self.km_term = (2*self.k*self.T_2 - 8*self.m)\n            self.mbk_term1 = (4*self.m - 2*self.b*self.T + self.k*self.T_2)\n            self.mbk_term2 = (4*self.m + 2*self.b*self.T + self.k*self.T_2)\n        elif self.method == \"integration\":\n            self.m_inv = np.reciprocal(self.m)\n\n        if reset:\n            self.reset()\n\n    def control(self, fc):\n        \"\"\" compute impedance step \"\"\"\n        if self.method == \"traditional\":\n            return self.traditional_control(fc)\n        elif self.method == \"discretization\":\n            return self.discretization_control(fc)\n        elif self.method == \"integration\":\n            return self.integration_control(fc)\n\n    def traditional_control(self, fc):\n        \"\"\"\n        Implementation based on:\n        A Tutorial Survey and Comparison of Impedance Control on Robotic Manipulation\n\n        dx = (f*T^2 + B*T*dx(k-1) + M(2dx(k-1) - dx(k-2))) / (M+B*T+K*T^2)\n        \"\"\"\n        deltax = (fc*self.T_2 + self.b_t*self.dx_hist[0] + self.m*(2*self.dx_hist[0]-self.dx_hist[1])) / self.denominator\n        self.dx_hist = [deltax, self.dx_hist[0]]\n        return deltax\n\n    def discretization_control(self, fc):\n        \"\"\"\n        Discretization method using Tustin's approximation\n        Sharon, N. Hogan, and D. E. Hardt, The macro/micro manipulator:\n        An improved architecture for robot control, Robot. Comput. Integr.\n        Manuf., vol. 10, no. 3, pp. 209222, Jun. 1993\n        x(k) = [Ts^2*f(k)+2Ts^2*f(k−1)+Ts^2f(k−2)−(2KTs^2 −\n                8M)x(k−1)−(4M−2BTs+KTs^2)x(k−2))]/(4M+2BTs+KTs^2)\n        \"\"\"\n        x = self.dx_hist\n        f = self.fc_hist\n\n        deltax = (self.T_2*fc + 2*self.T_2*f[0] + self.T_2*f[1] -\n                  self.km_term*x[0] - (self.mbk_term1)*x[1]) / self.mbk_term2\n        self.dx_hist = [deltax, x[0]]\n        self.fc_hist = [fc, f[0]]\n        return deltax\n\n    def integration_control(self, fc):\n        \"\"\"\n        F. Caccavale, C. Natale, B. Siciliano, and L. Villani, Integration for\n        the next generation, IEEE Robot. Autom. Mag., vol. 12, no. 3, pp.\n        5364, Sep. 2005.\n        \"\"\"\n        delta_acc = self.m_inv*(fc - self.k*self.position - self.b*self.velocity)\n        delta_vel = (self.T/2)*(delta_acc + self.accelaration) + self.velocity\n        delta_pos = (self.T/2)*(delta_vel + self.velocity) + self.position\n        self.position = delta_pos\n        self.accelaration = delta_vel\n        self.accelaration = delta_acc\n        return delta_pos"
  },
  {
    "path": "ur_control/src/ur_control/math_utils.py",
    "content": "import numpy as np\nimport quaternion\n\n\ndef orientation_error_as_rotation_vector(quat_target, quat_source):\n    \"\"\"\n    Compute the orientation error between two quaternions as a rotation vector.\n\n    Args:\n        quat_target (np.ndarray): The target quaternion.\n        quat_source (np.ndarray): The source quaternion.\n\n    Returns:\n        np.ndarray: The rotation vector representing the orientation error.\n    \"\"\"\n    qt = to_np_quaternion(quat_target)\n    qs = to_np_quaternion(quat_source)\n    return quaternion.as_rotation_vector(qt*qs.conjugate())\n\n\ndef quaternions_orientation_error(quat_target, quat_source):\n    \"\"\"\n    Compute the orientation error between two quaternions.\n\n    Args:\n        quat_target (np.ndarray): The target quaternion.\n        quat_source (np.ndarray): The source quaternion.\n\n    Returns:\n        np.ndarray: The quaternion representing the orientation error.\n    \"\"\"\n    qt = to_np_quaternion(quat_target)\n    qs = to_np_quaternion(quat_source)\n    return to_np_array(qt*qs.conjugate())\n\n# Quaternion Math\n\n\ndef quaternion_normalize(q):\n    \"\"\"\n    Normalize a quaternion.\n\n    Args:\n        q (np.ndarray): The input quaternion.\n\n    Returns:\n        np.ndarray: The normalized quaternion.\n    \"\"\"\n    np_q = to_np_quaternion(q)\n    return to_np_array(np_q.normalized())\n\n\ndef quaternion_conjugate(quaternion):\n    \"\"\"\n    Return the conjugate of a quaternion.\n\n    Args:\n        quaternion (np.ndarray): The input quaternion.\n\n    Returns:\n        np.ndarray: The conjugate of the input quaternion.\n    \"\"\"\n    return np.array((-quaternion[0], -quaternion[1], -quaternion[2], quaternion[3]), dtype=np.float64)\n\n\ndef quaternion_inverse(quaternion):\n    \"\"\"\n    Return the inverse of a quaternion.\n\n    Args:\n        quaternion (np.ndarray): The input quaternion.\n\n    Returns:\n        np.ndarray: The inverse of the input quaternion.\n    \"\"\"\n    return to_np_array(to_np_quaternion(quaternion).inverse())\n\n\ndef quaternion_multiply(quaternion1, quaternion0):\n    \"\"\"\n    Multiply two quaternions.\n\n    Args:\n        quaternion1 (np.ndarray): The first quaternion.\n        quaternion0 (np.ndarray): The second quaternion.\n\n    Returns:\n        np.ndarray: The result of multiplying the two quaternions.\n    \"\"\"\n    q1 = to_np_quaternion(quaternion1)\n    q0 = to_np_quaternion(quaternion0)\n    return to_np_array(q1*q0)\n\n\ndef quaternion_slerp(quat0, quat1, fraction):  # TODO\n    \"\"\"\n    Perform spherical linear interpolation (SLERP) between two quaternions.\n\n    Args:\n        quat0 (np.ndarray): The first quaternion.\n        quat1 (np.ndarray): The second quaternion.\n        fraction (float): The interpolation fraction (between 0 and 1).\n\n    Returns:\n        np.ndarray: The interpolated quaternion.\n    \"\"\"\n    q0 = to_np_quaternion(quat0)\n    q1 = to_np_quaternion(quat1)\n    return to_np_array(quaternion.slerp(q0, q1, 0.0, 1.0, fraction))\n\n\ndef quaternion_rotate_vector(quat, vector):\n    \"\"\"\n    Rotate a vector using a given unit quaternion.\n\n    Args:\n        quat (np.ndarray): The input quaternion.\n        vector (np.ndarray): The vector to be rotated.\n\n    Returns:\n        np.ndarray: The rotated vector.\n    \"\"\"\n    q = to_np_quaternion(quat)\n    return quaternion.rotate_vectors(q, vector)\n\n\ndef diff_quaternion(quat1, quat2):\n    \"\"\"\n    Compute the difference between two quaternions.\n\n    Args:\n        quat1 (np.ndarray): The first quaternion.\n        quat2 (np.ndarray): The second quaternion.\n\n    Returns:\n        np.ndarray: The quaternion representing the difference between the two input quaternions.\n    \"\"\"\n    q1 = to_np_quaternion(quat1)\n    q2 = to_np_quaternion(quat2)\n    return to_np_array(q2*q1.inverse())\n\n\ndef random_quaternion(rand=None):\n    \"\"\"\n    Generate a random quaternion.\n\n    Args:\n        rand (np.ndarray, optional): An array of 3 random numbers between 0 and 1. If not provided, random numbers will be generated.\n\n    Returns:\n        np.ndarray: A random quaternion.\n    \"\"\"\n    if rand is None:\n        rand = np.random.rand(3)\n    else:\n        assert len(rand) == 3\n    r1 = np.sqrt(1.0 - rand[0])\n    r2 = np.sqrt(rand[0])\n    pi2 = np.pi * 2.0\n    t1 = pi2 * rand[1]\n    t2 = pi2 * rand[2]\n    return np.array((np.sin(t1)*r1, np.cos(t1)*r1, np.sin(t2)*r2, np.cos(t2)*r2), dtype=np.float64)\n\n\ndef random_rotation_matrix(rand=None):\n    \"\"\"\n    Generate a random rotation matrix.\n\n    Args:\n        rand (np.ndarray, optional): An array of 3 random numbers between 0 and 1. If not provided, random numbers will be generated.\n\n    Returns:\n        np.ndarray: A random rotation matrix.\n    \"\"\"\n    return rotation_matrix_from_quaternion(random_quaternion(rand))\n\n# Conversion\n\n\ndef rotation_matrix_from_quaternion(q):\n    \"\"\"\n    Convert a quaternion to a 4x4 rotation matrix.\n\n    Args:\n        q (np.ndarray): The input quaternion.\n\n    Returns:\n        np.ndarray: The 4x4 rotation matrix.\n    \"\"\"\n    R = np.eye(4)\n    R[:3, :3] = quaternion.as_rotation_matrix(to_np_quaternion(q))\n    return R\n\n\ndef quaternion_from_matrix(matrix):\n    \"\"\"\n    Converts a 3x3 rotation matrix to a 4-element quaternion representation.\n\n    Args:\n        matrix (numpy.ndarray): A 3x3 rotation matrix.\n\n    Returns:\n        numpy.ndarray: A 4-element numpy array representing the quaternion.\n    \"\"\"\n    q = quaternion.from_rotation_matrix(matrix[:3, :3])\n    return to_np_array(q)\n\n\ndef quaternion_from_axis_angle(axis_angle):\n    \"\"\"\n    Convert an axis-angle representation to a quaternion.\n\n    Args:\n        axis_angle (np.ndarray): The axis-angle representation.\n\n    Returns:\n        np.ndarray: The corresponding quaternion.\n    \"\"\"\n    np_q = quaternion.from_rotation_vector(axis_angle)\n    return to_np_array(np_q)\n\n\ndef quaternion_from_ortho6(ortho6):\n    \"\"\"\n    Convert an orthographic 6D representation to a quaternion.\n\n    Args:\n        ortho6 (np.ndarray): The orthographic 6D representation.\n\n    Returns:\n        np.ndarray: The corresponding quaternion.\n    \"\"\"\n    R = rotation_matrix_from_ortho6(ortho6)\n    return quaternion_from_matrix(R)\n\n\ndef axis_angle_from_quaternion(quat):\n    \"\"\"\n    Convert a quaternion to an axis-angle representation.\n\n    Args:\n        quat (np.ndarray): The input quaternion.\n\n    Returns:\n        np.ndarray: The corresponding axis-angle representation.\n    \"\"\"\n    return quaternion.as_rotation_vector(to_np_quaternion(quat))\n\n\ndef ortho6_from_axis_angle(axis_angle):\n    \"\"\"\n    Convert an axis-angle representation to an orthographic 6D representation.\n\n    Args:\n        axis_angle (np.ndarray): The axis-angle representation.\n\n    Returns:\n        np.ndarray: The corresponding orthographic 6D representation.\n    \"\"\"\n    return ortho6_from_quaternion(quaternion_from_axis_angle(axis_angle))\n\n\ndef ortho6_from_quaternion(q):\n    \"\"\"\n    Convert a quaternion to an orthographic 6D representation.\n\n    Args:\n        q (np.ndarray): The input quaternion.\n\n    Returns:\n        np.ndarray: The corresponding orthographic 6D representation.\n    \"\"\"\n    R = rotation_matrix_from_quaternion(q)\n    return R[:3, :2].T.flatten()\n\n\ndef rotation_matrix_from_ortho6(ortho6):\n    \"\"\"\n    Convert an orthographic 6D representation to a rotation matrix.\n\n    Args:\n        ortho6 (np.ndarray): The orthographic 6D representation.\n\n    Returns:\n        np.ndarray: The corresponding rotation matrix.\n    \"\"\"\n    x_raw, y_raw = ortho6[0:3], ortho6[3:6]\n    x = x_raw / np.linalg.norm(x_raw)\n    z = np.cross(x, y_raw)\n    z = z / np.linalg.norm(z)\n    y = np.cross(z, x)\n    R = np.eye(4)\n    R[:3, :3] = np.column_stack((x, y, z))\n    return R\n\n\ndef to_np_quaternion(q: np.ndarray) -> np.quaternion:\n    \"\"\"\n    Convert a numpy array to a numpy quaternion.\n\n    Args:\n        q (np.ndarray): The input numpy array.\n\n    Returns:\n        np.quaternion: The corresponding numpy quaternion.\n    \"\"\"\n    return np.quaternion(q[3], q[0], q[1], q[2])\n\n\ndef to_np_array(np_q: np.quaternion) -> np.ndarray:\n    \"\"\"\n    Convert a numpy quaternion to a numpy array.\n\n    Args:\n        np_q (np.quaternion): The input numpy quaternion.\n\n    Returns:\n        np.ndarray: The corresponding numpy array.\n    \"\"\"\n    return np.array([np_q.x, np_q.y, np_q.z, np_q.w])\n"
  },
  {
    "path": "ur_control/src/ur_control/mouse_6d.py",
    "content": "import rospy\nfrom geometry_msgs.msg import Twist\nfrom sensor_msgs.msg import Joy\n\nclass Mouse6D():\n    \"\"\" Subscribe to the 3DConnextion mouse convert messages \"\"\"\n    def __init__(self):\n        \n        twist_sub = rospy.Subscriber('spacenav/twist', Twist, callback=self.twist_cb, queue_size=1)\n        joy_sub = rospy.Subscriber('spacenav/joy', Joy, callback=self.joy_cb, queue_size=1)\n\n        self.twist = None\n        self.joy_axes = None\n        self.joy_buttons = None\n        \n        # Wait for publisher\n        rospy.sleep(0.01)\n\n    def twist_cb(self, msg):\n        \"\"\"\n        Callback executed every time a message is publish in the C{spacenav/twist} topic.\n        @type  msg: geometry_msgs/JointState\n        @param msg: The Twist message published by the 3DConnextion hardware interface.\n        \"\"\" \n        self.twist = []\n        self.twist.append(msg.linear.x)\n        self.twist.append(msg.linear.y)\n        self.twist.append(msg.linear.z)\n        self.twist.append(msg.angular.x)\n        self.twist.append(msg.angular.y)\n        self.twist.append(msg.angular.z)\n\n    def joy_cb(self, msg):\n        \"\"\"\n        Callback executed every time a message is publish in the C{spacenav/joy} topic.\n        @type  msg: sensor_msgs/Joy\n        @param msg: The Joy message published by the 3DConnextion hardware interface.\n        \"\"\"\n        self.joy_axes = msg.axes\n        self.joy_buttons = msg.buttons\n\ndef main():\n    rospy.init_node(\"Mouse6D\")\n    Mouse6D()\n    rospy.sleep(1)\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "ur_control/src/ur_control/spalg.py",
    "content": "#! /usr/bin/env python\nimport rospy\nimport numpy as np\nimport scipy.optimize\nimport ur_control.transformations as tr\nfrom pyquaternion import Quaternion\n\nX_AXIS = np.array([1., 0., 0.])\nY_AXIS = np.array([0., 1., 0.])\nZ_AXIS = np.array([0., 0., 1.])\n\n\nclass Plane(object):\n    \"\"\"Represents a plane defined by a normal vector through the given point.\"\"\"\n\n    def __init__(self, normal=None, point=None, equation=None):\n        if equation is None:\n            self.point = np.array(point)\n            self.normal = tr.unit_vector(normal)\n            self.offset = -np.dot(self.normal, self.point)\n        else:\n            norm = tr.vector_norm(equation[:3])\n            self.normal = tr.unit_vector(equation[:3])\n            self.offset = equation[3] / norm\n            self.point = -self.offset*self.normal\n        # Plane origin\n        self.origin = np.array(self.point)\n\n    def __repr__(self):\n        printoptions = np.get_printoptions()\n        np.set_printoptions(precision=4, suppress=True)\n        text = '<Plane(equation: {0} origin: {1})>'.format(self.coefficients, self.origin)\n        np.set_printoptions(**printoptions)\n        return text\n\n    def __str__(self):\n        return self.__repr__()\n\n    @property\n    def coefficients(self):\n        return np.hstack((self.normal, self.offset))\n\n    def distance(self, point):\n        \"\"\"\n        Calculates distance from a point to the plane.\n        @type  point: np.array\n        @param point: The input point\n        @rtype: float\n        @return: The distance from the point to the plane\n        \"\"\"\n        dist = np.dot(self.normal, point) + self.offset\n        return dist\n\n    def generate_grid(self, cells=10, side_length=1.0):\n        \"\"\"\n        Generates a 3D grid with the required number of C{cells}.\n        The grid is a square with the given C{side_length}\n        @type  cells: int\n        @param cells: Number of cells for the grid\n        @type  size: float\n        @param size: The grid size in meters\n        @rtype: np.array\n        @return: The grid representation of the plane with shape (cells, 3)\n        \"\"\"\n        # First create the grid in the XY plane\n        linspace = np.linspace(-0.5, 0.5, num=cells) * side_length\n        xx, yy = np.meshgrid(linspace, linspace)\n        grid = []\n        for i in range(cells):\n            # Vertical lines\n            grid.append(np.array([xx[0, i], yy[0, i], 0]))\n            grid.append(np.array([xx[-1, i], yy[-1, i], 0]))\n            # Horizontal lines\n            grid.append(np.array([xx[i, 0], yy[i, 0], 0]))\n            grid.append(np.array([xx[i, -1], yy[i, -1], 0]))\n        grid = np.array(grid)\n        # Second, project the grid onto the plane\n        # The equation of the XY plane is z = 0\n        T = transformation_between_planes(self.coefficients, [0, 0, 1, 0])\n        R = T[:3, :3]\n        t = T[:3, 3]\n        aligned_grid = np.dot(R, grid.T).T + t\n        return aligned_grid\n\n    def generate_mesh(self, side_length=1.0, thickness=0.001):\n        \"\"\"\n        Generates a mesh representation of the plane. It is obtained by\n        extruding a square with the given C{side_length} to reach the\n        specified C{thickness}\n        The grid is a square with the given C{side_length}\n        @type  side_length: float\n        @param side_length: The square side length (meters)\n        @type  thickness: float\n        @param thickness: The cuboid thickness\n        @rtype: np.array, np.array\n        @return: vertices,faces of the mesh\n        \"\"\"\n        grid = self.generate_grid(cells=2, side_length=side_length)\n        lower_point = self.origin - self.normal*thickness\n        lower_plane = Plane(normal=self.normal, point=lower_point)\n        lower_grid = lower_plane.generate_grid(cells=2, side_length=side_length)\n        vertices = np.vstack((grid, lower_grid))\n        hull = scipy.spatial.ConvexHull(vertices)\n        counterclockwise_hull(hull)\n        faces = hull.simplices\n        offset_origin = np.mean(vertices, axis=0) - self.origin\n        R = self.get_transform()[:3, :3]\n        offset_thickness = np.dot(R.T, [0, 0, thickness])\n        vertices -= offset_origin + offset_thickness\n        return vertices, faces\n\n    def get_ray_intersection(self, ray_origin, ray_dir, epsilon=1e-6):\n        \"\"\"\n        Returns the point where the given ray intersects with this plane\n        @type  ray_origin: Ray origin\n        @param ray_dir: Ray direction. Must be unit vector\n        @param epsilon: Epsilon to avoid 0 division\n        @rtype: np.array\n        @return: The intersection point\n        \"\"\"\n        dot = np.dot(self.normal, ray_dir)\n        if abs(dot) > epsilon:\n            w = ray_origin - self.origin\n            fac = -np.dot(self.normal, w) / dot\n            return ray_origin + (ray_dir * fac)\n        else:\n            return None\n\n    def get_transform(self):\n        \"\"\"\n        Returns the plane transform\n        @rtype: np.array\n        @return: The plane transform\n        \"\"\"\n        T = rotation_matrix_from_axes(self.normal, oldaxis=Z_AXIS)\n        T[:3, 3] = self.origin\n        return T\n\n    def project(self, point):\n        \"\"\"\n        Projects a point onto the plane.\n        @type  point: np.array\n        @param point: The input point\n        @rtype: np.array\n        @return: The projected 3D point\n        \"\"\"\n        distance = self.distance(point)\n        return (point - distance*self.normal)\n\n\ndef counterclockwise_hull(hull):\n    \"\"\"\n    Make the edges counterclockwise order\n    @type  hull: scipy.spatial.ConvexHull\n    @param hull: Convex hull to be re-ordered.\n    \"\"\"\n    midpoint = np.sum(hull.points, axis=0) / hull.points.shape[0]\n    for i, simplex in enumerate(hull.simplices):\n        x, y, z = hull.points[simplex]\n        voutward = (x + y + z) / 3 - midpoint\n        vccw = np.cross((y - x), (z - y))\n        if np.inner(vccw, voutward) < 0:\n            hull.simplices[i] = [simplex[0], simplex[2], simplex[1]]\n\n\ndef fit_plane_lstsq(XYZ):\n    \"\"\"\n    Fits a plane to a point cloud.\n    Where z=a.x+b.y+c; Rearranging: a.x+b.y-z+c=0\n    @type  XYZ: list\n    @param XYZ: list of points\n    @rtype: np.array\n    @return: normalized normal vector of the plane in the form C{(a,b,-1)}\n    \"\"\"\n    [rows, cols] = XYZ.shape\n    G = np.ones((rows, 3))\n    G[:, 0] = XYZ[:, 0]  # X\n    G[:, 1] = XYZ[:, 1]  # Y\n    Z = XYZ[:, 2]\n    (a, b, c), resid, rank, s = np.linalg.lstsq(G, Z)\n    normal = (a, b, -1)\n    nn = np.linalg.norm(normal)\n    normal = normal / nn\n    return normal\n\n\ndef fit_plane_optimize(points, seed=None):\n    \"\"\"\n    Fits a plane to a point cloud using C{scipy.optimize.leastsq}\n    @type  points: list\n    @param points: list of points\n    @rtype: np.array\n    @return: normalized normal vector of the plane\n    \"\"\"\n    if seed is None:\n        seed = np.zeros(4)\n        seed[:3] = tr.unit_vector(tr.random_vector(3))\n    # Optimization functions\n\n    def f_min(X, p):\n        normal = p[0:3]\n        d = p[3]\n        result = ((normal*X.T).sum(axis=1) + d) / np.linalg.norm(normal)\n        return result\n\n    def residuals(params, signal, X):\n        return f_min(X, params)\n    # Optimize\n    XYZ = np.array(points).T\n    p0 = np.array(seed)\n    sol = scipy.optimize.leastsq(residuals, p0, args=(None, XYZ))[0]\n    nn = np.linalg.norm(sol[:3])\n    sol /= nn\n    seed_error = (f_min(XYZ, p0)**2).sum()\n    fit_error = (f_min(XYZ, sol)**2).sum()\n    return sol, seed_error, fit_error\n\n\ndef fit_plane_solve(XYZ):\n    \"\"\"\n    Fits a plane to a point cloud using C{np.linalg.solve}\n    @type  XYZ: list\n    @param XYZ: list of points\n    @rtype: np.array\n    @return: normalized normal vector of the plane\n    \"\"\"\n    X = XYZ[:, 0]\n    Y = XYZ[:, 1]\n    Z = XYZ[:, 2]\n    npts = len(X)\n    A = np.array([[sum(X*X), sum(X*Y), sum(X)],\n                  [sum(X*Y), sum(Y*Y), sum(Y)],\n                  [sum(X),   sum(Y), npts]])\n    B = np.array([[sum(X*Z), sum(Y*Z), sum(Z)]])\n    normal = np.linalg.solve(A, B.T)\n    nn = np.linalg.norm(normal)\n    normal = normal / nn\n    return normal.ravel()\n\n\ndef fit_plane_svd(XYZ):\n    \"\"\"\n    Fits a plane to a point cloud using C{np.linalg.svd}\n    @type  XYZ: list\n    @param XYZ: list of points\n    @rtype: np.array\n    @return: normalized normal vector of the plane\n    \"\"\"\n    [rows, cols] = XYZ.shape\n    # Set up constraint equations of the form  AB = 0,\n    # where B is a column vector of the plane coefficients\n    # in the form b(1)*X + b(2)*Y +b(3)*Z + b(4) = 0.\n    p = (np.ones((rows, 1)))\n    AB = np.hstack([XYZ, p])\n    [u, d, v] = np.linalg.svd(AB, 0)\n    B = v[3, :]                    # Solution is last column of v.\n    nn = np.linalg.norm(B[0:3])\n    B = B / nn\n    return B[0:3]\n\n\ndef force_frame_transform(bTa):\n    \"\"\"\n    Calculates the coordinate transformation for force vectors.\n    The force vectors obey special transformation rules.\n    B{Reference:} Handbook of robotics page 39, equation 2.9\n    @type bTa: array, shape (4,4)\n    @param bTa: Homogeneous transformation that represents the position\n    and orientation of frame M{A} relative to frame M{B}\n    @rtype: array, shape (6,6)\n    @return: The coordinate transformation from M{A} to M{B} for force\n    vectors\n    \"\"\"\n    aTb = tr.inverse_matrix(bTa)  # is this necessary?\n    return motion_frame_transform(aTb).T  # do we need to transpose here?\n\n\ndef inertia_matrix_from_vector(i):\n    \"\"\"\n    Returns the inertia matrix from its vectorized form.\n    @type i: array, shape (6,1)\n    @param i: The inertia parameters in its vectorized form.\n    @rtype: array, shape (3,3)\n    @return: The resulting inertia matrix.\n    \"\"\"\n    I11 = i[0]\n    I12 = i[1]\n    I13 = i[2]\n    I22 = i[3]\n    I23 = i[4]\n    I33 = i[5]\n    return np.array([[I11, I12, I13],\n                     [I11, I22, I23],\n                     [I13, I23, I33]])\n\n\ndef L_matrix(w):\n    \"\"\"\n    Returns the 3x6 matrix of angular velocity elements.\n    @type w: array\n    @param w: The angular velocity array\n    @rtype: array, shape (3,6)\n    @return: The resulting numpy array\n    \"\"\"\n    res = np.zeros((3, 6))\n    res[0, :3] = w.flatten()\n    res[1, 1:5] = np.insert(w.flatten(), 1, 0)\n    res[2, 2:] = np.insert(w.flatten(), 1, 0)\n    return res\n\n\ndef motion_frame_transform(bTa):\n    \"\"\"\n    Calculates the coordinate transformation for motion vectors.\n    The motion vectors obey special transformation rules.\n    B{Reference:} Handbook of robotics page 39, equation 2.9\n    @type bTa: array, shape (4,4)\n    @param bTa: Homogeneous transformation that represents the position\n    and orientation of frame M{A} relative to frame M{B}\n    @rtype: array, shape (6,6)\n    @return: The coordinate transformation from M{A} to M{B} for motion\n    vectors\n    \"\"\"\n    bRa = bTa[:3, :3]\n    bPa = bTa[:3, 3]\n    bXa = np.zeros((6, 6))\n    bXa[:3, :3] = bRa\n    bXa[3:, :3] = np.dot(skew(bPa), bRa)\n    bXa[3:, 3:] = bRa\n    return bXa\n\n\ndef perpendicular_vector(v):\n    \"\"\"\n    Finds an arbitrary perpendicular vector to B{v}\n    @type  v: np.array\n    @param v: The input vector\n    @rtype: np.array\n    @return: The perpendicular vector.\n    \"\"\"\n    v = tr.unit_vector(v)\n    if np.allclose(v[:2], np.zeros(2)):\n        if np.isclose(v[2], 0.):\n            # v is (0, 0, 0)\n            raise ValueError('zero vector')\n        # v is (0, 0, Z)\n        return Y_AXIS\n    return np.array([-v[1], v[0], 0])\n\n\ndef polygon_area(points, plane=None):\n    if plane is None:\n        plane_eq = fit_plane_optimize(points)\n        plane = Plane(equation=plane_eq)\n    total = np.zeros(3)\n    for i in range(len(points)):\n        vi1 = points[i]\n        if i is len(points)-1:\n            vi2 = points[0]\n        else:\n            vi2 = points[i+1]\n        prod = np.cross(vi1, vi2)\n        total += prod\n    result = np.dot(total, plane.normal)\n    return abs(result/2.)\n\n\ndef rotation_matrix_from_axes(newaxis, oldaxis=Z_AXIS, point=None):\n    \"\"\"\n    Returns the rotation matrix that aligns two vectors.\n    @type  newaxis: np.array\n    @param newaxis: The goal axis\n    @type  oldaxis: np.array\n    @param oldaxis: The initial axis\n    @rtype: array, shape (4,4)\n    @return: The resulting rotation matrix that aligns the old to the new axis.\n    \"\"\"\n    oldaxis = tr.unit_vector(oldaxis)\n    newaxis = tr.unit_vector(newaxis)\n    c = np.dot(oldaxis, newaxis)\n    angle = np.arccos(c)\n    if np.isclose(c, -1.0) or np.allclose(newaxis, oldaxis):\n        v = perpendicular_vector(newaxis)\n    else:\n        v = tr.unit_vector(np.cross(oldaxis, newaxis))\n    return tr.rotation_matrix(angle, v, point)\n\n\ndef skew(v):\n    \"\"\"\n    Returns the 3x3 skew matrix.\n    The skew matrix is a square matrix M{A} whose transpose is also its\n    negative; that is, it satisfies the condition M{-A = A^T}.\n    @type v: array\n    @param v: The input array\n    @rtype: array, shape (3,3)\n    @return: The resulting skew matrix\n    \"\"\"\n    skv = np.roll(np.roll(np.diag(np.asarray(v).flatten()), 1, 1), -1, 0)\n    return (skv - skv.T)\n\n\ndef transformation_estimation_svd(A, B):\n    \"\"\"\n    This method implements SVD-based estimation of the transformation\n    aligning the given correspondences.\n    Estimate a rigid transformation between a source and a target matrices\n    using SVD.\n    For further information please check:\n      - U{http://dx.doi.org/10.1109/TPAMI.1987.4767965}\n      - U{http://nghiaho.com/?page_id=671}\n    @type A: numpy.array\n    @param A: Points expressed in the reference frame A\n    @type B: numpy.array\n    @param B: Points expressed in the reference frame B\n    @rtype: R (3x3), t (3x1)\n    @return: (R) rotation matrix and (t) translation vector of the rigid\n    transformation.\n    \"\"\"\n    assert A.shape == B.shape\n    assert A.shape[1] == 3\n    N = A.shape[0]  # total points\n    centroid_A = np.mean(A, axis=0)\n    centroid_B = np.mean(B, axis=0)\n    # centre the points\n    AA = A - np.tile(centroid_A, (N, 1))\n    BB = B - np.tile(centroid_B, (N, 1))\n    # dot is matrix multiplication for array\n    H = np.dot(np.transpose(AA), BB)\n    U, S, Vt = np.linalg.svd(H)\n    R = np.dot(Vt.T, U.T)\n    # special reflection case\n    if np.linalg.det(R) < 0:\n        Vt[2, :] *= -1\n        R = np.dot(Vt.T, U.T)\n    t = -np.dot(R, centroid_A.T) + centroid_B.T\n    return R, t\n\n\ndef transformation_between_planes(newplane, oldplane):\n    \"\"\"\n    Returns the transformation matrix that aligns two planes.\n    @type  newplane: np.array\n    @param newplane: The goal plane in the form [a,b,c,d] where a.x+b.y+c.z+d=0\n    @type  oldplane: np.array\n    @param oldplane: The initial plane in the form [a,b,c,d] where a.x+b.y+c.z+d=0\n    @rtype: np.array, shape (4,4)\n    @return: The resulting homogeneous transformation that converts C{oldplane} to C{newplane}.\n    \"\"\"\n    newaxis = np.array(newplane[:3])\n    Rnew = rotation_matrix_from_axes(newaxis, Z_AXIS)[:3, :3]\n    newpoint = np.dot(Rnew, np.array([0, 0, newplane[3]]))\n    oldaxis = np.array(oldplane[:3])\n    Rold = rotation_matrix_from_axes(oldaxis, Z_AXIS)[:3, :3]\n    oldpoint = np.dot(Rold, np.array([0, 0, oldplane[3]]))\n    T = rotation_matrix_from_axes(newaxis, oldaxis)\n    T[:3, 3] = -newpoint + np.dot(T[:3, :3], oldpoint)\n    return T\n\n\ndef transform_inv(T):\n    \"\"\"\n    Calculates the inverse of the input homogeneous transformation.\n\n    This method is more efficient than using C{numpy.linalg.inv}, given\n    the special properties of the homogeneous transformations.\n    @type T: array, shape (4,4)\n    @param T: The input homogeneous transformation\n    @rtype: array, shape (4,4)\n    @return: The inverse of the input homogeneous transformation\n    \"\"\"\n    R = T[:3, :3].T\n    p = T[:3, 3]\n    T_inv = np.identity(4)\n    T_inv[:3, :3] = R\n    T_inv[:3, 3] = np.dot(-R, p)\n    return T_inv\n\n\ndef quaternions_orientation_error(Qd, Qc):\n    \"\"\"\n    Calculates the orientation error between two quaternions\n    Qd is the desired orientation\n    Qc is the current orientation\n    both with respect to the same fixed frame\n\n    return vector part\n    \"\"\"\n    if isinstance(Qd, Quaternion) and isinstance(Qd, Quaternion):\n        ne = Qc.scalar*Qd.scalar + np.dot(np.array(Qc.vector).T, Qd.vector)\n        ee = Qc.scalar*np.array(Qd.vector) - Qd.scalar*np.array(Qc.vector) + np.dot(skew(Qc.vector), Qd.vector)\n        ee *= np.sign(ne)  # disambiguate the sign of the quaternion\n        return ee\n    else:\n        assert isinstance(Qd, (list, np.ndarray)), \"type: \" + str(type(Qd))\n        assert isinstance(Qc, (list, np.ndarray)), \"type: \" + str(type(Qd))\n        q1 = Quaternion(np.roll(Qd, -1))\n        q2 = Quaternion(np.roll(Qc, -1))\n        return quaternions_orientation_error(q1, q2)\n\n\ndef translation_rotation_error(to_pose, from_pose):\n    position_error = to_pose[:3] - from_pose[:3]\n    orientation_error = quaternions_orientation_error(to_pose[3:], from_pose[3:])\n    return np.concatenate((position_error, orientation_error))\n\n\ndef convert_wrench(wrench_force, pose):\n    ee_transform = tr.pose_to_transform(pose)\n\n    # # # Wrench force transformation\n    wFtS = force_frame_transform(ee_transform)\n    wrench = np.dot(wFtS, wrench_force)\n\n    return wrench\n\n\ndef face_towards(target_position, current_pose, up_vector=[0, 0, 1]):\n    \"\"\"\n        Compute orientation to \"face towards\" a point in space \n        given the current position and the initial vector representing \"up\"\n        default is z as is the outward direction from the end-effector\n    \"\"\"\n    cposition = current_pose[:3]\n    direction = tr.unit_vector(target_position-cposition)\n\n    cmd_rot = look_rotation(direction, up=up_vector)\n    target_quat = tr.vector_from_pyquaternion(cmd_rot)\n\n    return np.concatenate([cposition, target_quat])\n\n\ndef look_rotation(forward, up=[0, 0, 1]):\n    forward = tr.unit_vector(forward)\n    right = tr.unit_vector(np.cross(up, forward))\n    up = np.cross(forward, right)\n    m00 = right[0]\n    m01 = right[1]\n    m02 = right[2]\n    m10 = up[0]\n    m11 = up[1]\n    m12 = up[2]\n    m20 = forward[0]\n    m21 = forward[1]\n    m22 = forward[2]\n\n    num8 = (m00 + m11) + m22\n    quaternion = Quaternion()\n    if (num8 > 0.0):\n\n        num = np.sqrt(num8 + 1)\n        quaternion[0] = num * 0.5\n        num = 0.5 / num\n        quaternion[1] = (m12 - m21) * num\n        quaternion[2] = (m20 - m02) * num\n        quaternion[3] = (m01 - m10) * num\n        return quaternion\n\n    if ((m00 >= m11) and (m00 >= m22)):\n\n        num7 = np.sqrt(((1 + m00) - m11) - m22)\n        num4 = 0.5 / num7\n        quaternion[1] = 0.5 * num7\n        quaternion[2] = (m01 + m10) * num4\n        quaternion[3] = (m02 + m20) * num4\n        quaternion[0] = (m12 - m21) * num4\n        return quaternion\n\n    if (m11 > m22):\n\n        num6 = np.sqrt(((1 + m11) - m00) - m22)\n        num3 = 0.5 / num6\n        quaternion[1] = (m10 + m01) * num3\n        quaternion[2] = 0.5 * num6\n        quaternion[3] = (m21 + m12) * num3\n        quaternion[0] = (m20 - m02) * num3\n        return quaternion\n\n    num5 = np.sqrt(((1 + m22) - m00) - m11)\n    num2 = 0.5 / num5\n    quaternion[1] = (m20 + m02) * num2\n    quaternion[2] = (m21 + m12) * num2\n    quaternion[3] = 0.5 * num5\n    quaternion[0] = (m01 - m10) * num2\n    return quaternion\n\n\ndef jump_threshold(trajectory, dt, threshold):\n    traj = np.copy(trajectory)\n    speed = np.abs((traj - np.roll(traj, -1)) / dt)\n    speed[-1] = 0.0  # ignore last point\n\n    mean = np.mean(speed[:-1], 0)\n    std = np.std(speed[:-1], 0)\n\n    # print(\"mean:\", np.round(mean, 2))\n    # print(\"std:\", np.round(std, 2))\n    for i, s in enumerate(speed[:-1]):\n        if np.any(s > mean + threshold*std):\n            # print(\"### spike:\", i, np.round(s-mean,2))\n            # TODO(cambel): fix for cases where spikes are consecutive\n            traj[i] = (traj[i-1] + traj[i+1]) / 2.0\n        # else:\n        #     print(\"usual:\", i, np.round(s-mean,2))\n\n    return traj\n\n\ndef sensor_torque_to_tcp_force(tcp_position, sensor_torques):\n    \"\"\"\n        Compute the force as perceive by a point of the TCP\n        Thus, torques registered by the sensor are converted to forces\n\n        tcp_position: list[3]. Define the position of point P relative to the sensor \n        sensor_torques: list[3]. Define the torque registered by the sensor\n    \"\"\"\n    # Define the torque applied to frame A\n    T_A = np.array(sensor_torques)  # in N.m\n\n    # Define the position vector from the axis of rotation to the point of application of the force on frame A\n    r_AP = np.array(tcp_position)  # in m\n\n    # Define the position vector from the point of application on frame A to the corresponding point on frame B\n    r_BP = - r_AP\n\n    # Compute the moment arm and the corresponding force on frame B\n    force_B = np.cross(T_A, r_AP) / np.linalg.norm(r_BP)**2\n    return force_B\n"
  },
  {
    "path": "ur_control/src/ur_control/traj_utils.py",
    "content": "# The MIT License (MIT)\n#\n# Copyright (c) 2018, 2019 Cristian Beltran\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to deal\n# in the Software without restriction, including without limitation the rights\n# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n# copies of the Software, and to permit persons to whom the Software is\n# furnished to do so, subject to the following conditions:\n#\n# The above copyright notice and this permission notice shall be included in all\n# copies or substantial portions of the Software.\n#\n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n# SOFTWARE.\n#\n# Author: Cristian Beltran\n\nimport rospy\nimport numpy as np\nfrom ur_control import transformations\n\n\ndef spiral(radius, theta_offset, revolutions, steps):\n    theta = np.linspace(0, 2*np.pi*revolutions, steps) + theta_offset\n    x = radius*np.cos(theta)\n    y = radius*np.sin(theta)\n    return x, y\n\n\ndef get_conical_helix_trajectory(p1, p2, steps, revolutions=5.0):\n    \"\"\" Compute Cartesian conical helix between 2 points\"\"\"\n    euclidean_dist = np.linalg.norm(np.array(p2[:2])-np.array(p1[:2]))\n    radius = np.linspace(euclidean_dist, 0, steps)\n    theta_offset = np.arctan2((p1[1] - p2[1]), (p1[0]-p2[0]))\n\n    x, y = spiral(radius, theta_offset, revolutions, steps)\n    x += p2[0]\n    y += p2[1]\n    z = np.linspace(p1[2]-(p1[2]-p2[2])/2, p2[2], steps)\n    return concat_vec(x, y, z, steps)\n\n\ndef get_spiral_trajectory(p1, p2, steps, revolutions=5.0, from_center=False, inverse=False):\n    \"\"\" Compute Cartesian conical helix between 2 points\"\"\"\n    euclidean_dist = np.linalg.norm(np.array(p2[:2])-np.array(p1[:2]))\n    if from_center:  # start the spiral as if p1 is the center and p2 is the farthest point\n        radius = np.linspace(0, euclidean_dist, steps)\n        theta_offset = 0.0\n    else:\n        # Compute the distance from p1 to p2 and start the spiral as if p2 is the center\n        radius = np.linspace(euclidean_dist, 0, steps)\n        # Hack for some reason this offset does not work for changes w.r.t Z\n        if inverse:\n            theta_offset = np.arctan2((p2[1] - p1[1]), (p2[0]-p1[0]))\n        else:\n            theta_offset = np.arctan2((p1[1] - p2[1]), (p1[0]-p2[0]))\n    x, y = spiral(radius, theta_offset, revolutions, steps)\n    sign = 1. if not inverse else -1.  # super hack, there is something fundamentally wrong with Z\n    x += p2[0] * sign\n    y += p2[1] * sign\n    z = np.linspace(p1[2]-(p1[2]-p2[2])/2, p2[2], steps)\n    return concat_vec(x, y, z, steps)\n\n\ndef get_circular_trajectory(p1, p2, steps, revolutions=1.0, from_center=False, inverse=False):\n    euclidean_dist = np.linalg.norm(np.array(p2[:2])-np.array(p1[:2]))\n    if from_center:  # start the spiral as if p1 is the center and p2 is the farthest point\n        theta_offset = 0.0\n    else:\n        # Compute the distance from p1 to p2 and start the spiral as if p2 is the center\n        # Hack for some reason this offset does not work for changes w.r.t Z\n        if inverse:\n            theta_offset = np.arctan2((p2[1] - p1[1]), (p2[0]-p1[0]))\n        else:\n            theta_offset = np.arctan2((p1[1] - p2[1]), (p1[0]-p2[0]))\n    x, y = spiral(euclidean_dist, theta_offset, revolutions, steps)\n    x += p2[0]\n    y += p2[1]\n    z = np.zeros(steps)+p1[2]\n    return concat_vec(x, y, z, steps)\n\n\ndef concat_vec(x, y, z, steps):\n    x = x.reshape(-1, steps)\n    y = y.reshape(-1, steps)\n    z = z.reshape(-1, steps)\n    return np.concatenate((x, y, z), axis=0).T\n\n\ndef get_plane_direction(plane, radius):\n    VALID_DIRECTIONS = ('+X', '+Y', '+Z', '-X', '-Y', '-Z')\n    DIRECTION_INDEX = {'X': 0, 'Y': 1, 'Z': 2}\n\n    assert plane in VALID_DIRECTIONS, \"Invalid direction: %s\" % plane\n\n    direction_array = [0., 0., 0., 0., 0., 0.]\n    sign = 1. if '+' in plane else -1.\n    direction_array[DIRECTION_INDEX.get(plane[1])] = radius * sign\n\n    return np.array(direction_array, dtype=np.float64)\n\n\ndef compute_rotation_wiggle(initial_orientation, direction, angle, steps, revolutions):\n    \"\"\"\n        Compute a sinusoidal trajectory for the orientation of the end-effector in one given direction.\n        To keep it simple, only supports one direction.\n        initial_orientation: array[4], orientation in quaternion form\n        direction: string, 'X','Y', or 'Z' w.r.t the robot's base\n        angle: float, magnitude of rotation in radians\n        steps: int, number of steps for the resulting trajectory\n        revolutions: int, number of revolutions \n    \"\"\"\n    assert direction in ('X', 'Y', 'Z'), \"Invalid direction: %s\" % direction\n    DIRECTION_INDEX = {'X': 0, 'Y': 1, 'Z': 2}\n\n    euler = np.array(transformations.euler_from_quaternion(initial_orientation, axes='rxyz'))\n    theta = np.linspace(0, 2*np.pi*revolutions, steps)\n    deltas = angle * np.sin(theta)\n\n    direction_array = np.zeros(3)\n    direction_array[DIRECTION_INDEX.get(direction)] = 1.0\n    deltas = deltas.reshape(-1, 1) * direction_array.reshape(1, 3)\n\n    new_eulers = deltas + euler\n\n    cmd_orientations = [transformations.quaternion_from_euler(*new_euler, axes='rxyz') for new_euler in new_eulers]\n\n    return cmd_orientations\n\n\ndef compute_trajectory(initial_pose, plane, radius, radius_direction, steps=100, revolutions=5, from_center=True,  trajectory_type=\"circular\",\n                       wiggle_direction=None, wiggle_angle=0.0, wiggle_revolutions=0.0):\n    \"\"\"\n        Compute a trajectory \"circular\" or \"spiral\":\n        plane: string, only 3 valid options \"XY\", \"XZ\", \"YZ\", is the plane w.r.t to the robot base where the trajectory will be drawn\n        radius: float, size of the trajectory\n        radius_direction: string, '+X', '+Y', '+Z', '-X', '-Y', '-Z' direction to compute the radius, valid directions depend on the plane selected\n        steps: int, number of steps for the trajectory\n        revolutions: int, number of times that the circle is drawn or the spiral's revolutions before reaching its end.\n        from_center: bool, whether to start the trajectory assuming the current position as center (True) or the radius+radius_direction as center (False)\n                            [True] is better for spiral trajectory while [False] is better for the circular trajectory, though other options are okay.\n        trajectory_type: string, \"circular\" or \"spiral\"\n        wiggle_direction: string, 'X','Y', or 'Z' w.r.t the robot's base\n        wiggle_angle: float, magnitude of wiggle-rotation in radians\n        wiggle_revolutions: int, number of wiggle-revolutions \n    \"\"\"\n\n    direction = get_plane_direction(radius_direction, radius)\n\n    if plane == \"XZ\":\n        assert \"Y\" not in radius_direction, \"Invalid radius direction %s for plane %s\" % (radius_direction, plane)\n        to_plane = [np.pi/2, 0, 0]\n    elif plane == \"YZ\":\n        assert \"X\" not in radius_direction, \"Invalid radius direction %s for plane %s\" % (radius_direction, plane)\n        to_plane = [0, np.pi/2, 0]\n    elif plane == \"XY\":\n        assert \"Z\" not in radius_direction, \"Invalid radius direction %s for plane %s\" % (radius_direction, plane)\n        to_plane = [0, 0, 0]\n    else:\n        raise ValueError(\"Invalid value for plane: %s\" % plane)\n\n    target_pose = transformations.transform_pose(initial_pose, direction, rotated_frame=False)\n\n    # print(\"Initial\", np.round(spalg.translation_rotation_error(target_pose, arm.end_effector()), 4))\n    target_orientation = transformations.vector_to_pyquaternion(transformations.quaternion_from_euler(*to_plane))\n\n    initial_pose = initial_pose[:3]\n    final_pose = target_pose[:3]\n\n    if from_center:\n        p1 = np.zeros(3)\n        p2 = target_orientation.rotate(initial_pose - final_pose)\n    else:\n        p1 = target_orientation.rotate(initial_pose - final_pose)\n        p2 = np.zeros(3)\n\n    if trajectory_type == \"circular\":\n        # Hack for some reason this offset does not work for changes w.r.t Z\n        traj = get_circular_trajectory(p1, p2, steps, revolutions, from_center=from_center, inverse=(\"Z\" in radius_direction))\n    elif trajectory_type == \"spiral\":\n        # Hack for some reason this offset does not work for changes w.r.t Z\n        traj = get_spiral_trajectory(p1, p2, steps, revolutions, from_center=from_center, inverse=(\"Z\" in radius_direction))\n    else:\n        rospy.logerr(\"Unsupported trajectory type: %s\" % trajectory_type)\n\n    traj = np.apply_along_axis(target_orientation.rotate, 1, traj)\n    trajectory = traj + final_pose\n\n    if wiggle_direction is None:\n        trajectory = [np.concatenate([t, target_pose[3:]]) for t in trajectory]\n    else:\n        target_orientation = compute_rotation_wiggle(target_pose[3:], wiggle_direction, wiggle_angle, steps, wiggle_revolutions)\n        trajectory = [np.concatenate([tp, to]) for tp, to in zip(trajectory, target_orientation)]\n\n    return np.array(trajectory)\n\n\ndef compute_1d_sinusoidal_trajectory(num_of_points, amplitude=0.01, period=1):\n    points = np.linspace(-np.pi, np.pi, num_of_points)\n    trajectory = np.sin(points * period) * amplitude\n    return trajectory\n\n\ndef compute_sinusoidal_trajectory(current_pose, dimension: int, num_of_points=30, amplitude=0.01, period=1):\n    trajectory_1d = compute_1d_sinusoidal_trajectory(num_of_points, amplitude, period)\n    trajectory = np.array([current_pose for _ in range(num_of_points)]).reshape((-1, 7))\n    trajectory[:, dimension] = trajectory_1d + current_pose[dimension]\n    return trajectory\n"
  },
  {
    "path": "ur_control/src/ur_control/transformations.py",
    "content": "# -*- coding: utf-8 -*-\n# transformations.py\n\n# Copyright (c) 2006, Christoph Gohlke\n# Copyright (c) 2006-2009, The Regents of the University of California\n# All rights reserved.\n#\n# Redistribution and use in source and binary forms, with or without\n# modification, are permitted provided that the following conditions are met:\n#\n# * Redistributions of source code must retain the above copyright\n#   notice, this list of conditions and the following disclaimer.\n# * Redistributions in binary form must reproduce the above copyright\n#   notice, this list of conditions and the following disclaimer in the\n#   documentation and/or other materials provided with the distribution.\n# * Neither the name of the copyright holders nor the names of any\n#   contributors may be used to endorse or promote products derived\n#   from this software without specific prior written permission.\n#\n# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n# ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n# POSSIBILITY OF SUCH DAMAGE.\n\n\"\"\"Homogeneous Transformation Matrices and Quaternions.\n\nA library for calculating 4x4 matrices for translating, rotating, reflecting,\nscaling, shearing, projecting, orthogonalizing, and superimposing arrays of\n3D homogeneous coordinates as well as for converting between rotation matrices,\nEuler angles, and quaternions. Also includes an Arcball control object and\nfunctions to decompose transformation matrices.\n\n:Authors:\n  `Christoph Gohlke <http://www.lfd.uci.edu/~gohlke/>`__,\n  Laboratory for Fluorescence Dynamics, University of California, Irvine\n\n:Version: 20090418\n\nRequirements\n------------\n\n* `Python 2.6 <http://www.python.org>`__\n* `Numpy 1.3 <http://numpy.scipy.org>`__\n* `transformations.c 20090418 <http://www.lfd.uci.edu/~gohlke/>`__\n  (optional implementation of some functions in C)\n\nNotes\n-----\n\nMatrices (M) can be inverted using numpy.linalg.inv(M), concatenated using\nnumpy.dot(M0, M1), or used to transform homogeneous coordinates (v) using\nnumpy.dot(M, v) for shape (4, \\*) \"point of arrays\", respectively\nnumpy.dot(v, M.T) for shape (\\*, 4) \"array of points\".\n\nCalculations are carried out with numpy.float64 precision.\n\nThis Python implementation is not optimized for speed.\n\nVector, point, quaternion, and matrix function arguments are expected to be\n\"array like\", i.e. tuple, list, or numpy arrays.\n\nReturn types are numpy arrays unless specified otherwise.\n\nAngles are in radians unless specified otherwise.\n\nQuaternions ix+jy+kz+w are represented as [x, y, z, w].\n\nUse the transpose of transformation matrices for OpenGL glMultMatrixd().\n\nA triple of Euler angles can be applied/interpreted in 24 ways, which can\nbe specified using a 4 character string or encoded 4-tuple:\n\n  *Axes 4-string*: e.g. 'sxyz' or 'ryxy'\n\n  - first character : rotations are applied to 's'tatic or 'r'otating frame\n  - remaining characters : successive rotation axis 'x', 'y', or 'z'\n\n  *Axes 4-tuple*: e.g. (0, 0, 0, 0) or (1, 1, 1, 1)\n\n  - inner axis: code of axis ('x':0, 'y':1, 'z':2) of rightmost matrix.\n  - parity : even (0) if inner axis 'x' is followed by 'y', 'y' is followed\n    by 'z', or 'z' is followed by 'x'. Otherwise odd (1).\n  - repetition : first and last axis are same (1) or different (0).\n  - frame : rotations are applied to static (0) or rotating (1) frame.\n\nReferences\n----------\n\n(1)  Matrices and transformations. Ronald Goldman.\n     In \"Graphics Gems I\", pp 472-475. Morgan Kaufmann, 1990.\n(2)  More matrices and transformations: shear and pseudo-perspective.\n     Ronald Goldman. In \"Graphics Gems II\", pp 320-323. Morgan Kaufmann, 1991.\n(3)  Decomposing a matrix into simple transformations. Spencer Thomas.\n     In \"Graphics Gems II\", pp 320-323. Morgan Kaufmann, 1991.\n(4)  Recovering the data from the transformation matrix. Ronald Goldman.\n     In \"Graphics Gems II\", pp 324-331. Morgan Kaufmann, 1991.\n(5)  Euler angle conversion. Ken Shoemake.\n     In \"Graphics Gems IV\", pp 222-229. Morgan Kaufmann, 1994.\n(6)  Arcball rotation control. Ken Shoemake.\n     In \"Graphics Gems IV\", pp 175-192. Morgan Kaufmann, 1994.\n(7)  Representing attitude: Euler angles, unit quaternions, and rotation\n     vectors. James Diebel. 2006.\n(8)  A discussion of the solution for the best rotation to relate two sets\n     of vectors. W Kabsch. Acta Cryst. 1978. A34, 827-828.\n(9)  Closed-form solution of absolute orientation using unit quaternions.\n     BKP Horn. J Opt Soc Am A. 1987. 4(4), 629-642.\n(10) Quaternions. Ken Shoemake.\n     http://www.sfu.ca/~jwa3/cmpt461/files/quatut.pdf\n(11) From quaternion to matrix and back. JMP van Waveren. 2005.\n     http://www.intel.com/cd/ids/developer/asmo-na/eng/293748.htm\n(12) Uniform random rotations. Ken Shoemake.\n     In \"Graphics Gems III\", pp 124-132. Morgan Kaufmann, 1992.\n\n\nExamples\n--------\n\n>>> alpha, beta, gamma = 0.123, -1.234, 2.345\n>>> origin, xaxis, yaxis, zaxis = (0, 0, 0), (1, 0, 0), (0, 1, 0), (0, 0, 1)\n>>> I = identity_matrix()\n>>> Rx = rotation_matrix(alpha, xaxis)\n>>> Ry = rotation_matrix(beta, yaxis)\n>>> Rz = rotation_matrix(gamma, zaxis)\n>>> R = concatenate_matrices(Rx, Ry, Rz)\n>>> euler = euler_from_matrix(R, 'rxyz')\n>>> numpy.allclose([alpha, beta, gamma], euler)\nTrue\n>>> Re = euler_matrix(alpha, beta, gamma, 'rxyz')\n>>> is_same_transform(R, Re)\nTrue\n>>> al, be, ga = euler_from_matrix(Re, 'rxyz')\n>>> is_same_transform(Re, euler_matrix(al, be, ga, 'rxyz'))\nTrue\n>>> qx = quaternion_about_axis(alpha, xaxis)\n>>> qy = quaternion_about_axis(beta, yaxis)\n>>> qz = quaternion_about_axis(gamma, zaxis)\n>>> q = quaternion_multiply(qx, qy)\n>>> q = quaternion_multiply(q, qz)\n>>> Rq = quaternion_from_matrix(q)\n>>> is_same_transform(R, Rq)\nTrue\n>>> S = scale_matrix(1.23, origin)\n>>> T = translation_matrix((1, 2, 3))\n>>> Z = shear_matrix(beta, xaxis, origin, zaxis)\n>>> R = random_rotation_matrix(numpy.random.rand(3))\n>>> M = concatenate_matrices(T, R, Z, S)\n>>> scale, shear, angles, trans, persp = decompose_matrix(M)\n>>> numpy.allclose(scale, 1.23)\nTrue\n>>> numpy.allclose(trans, (1, 2, 3))\nTrue\n>>> numpy.allclose(shear, (0, math.tan(beta), 0))\nTrue\n>>> is_same_transform(R, euler_matrix(axes='sxyz', *angles))\nTrue\n>>> M1 = compose_matrix(scale, shear, angles, trans, persp)\n>>> is_same_transform(M, M1)\nTrue\n\n\"\"\"\n\n\nimport math\n\nimport numpy\n\nfrom ur_control.math_utils import *\n\n# Documentation in HTML format can be generated with Epydoc\n__docformat__ = \"restructuredtext en\"\n\n\ndef identity_matrix():\n    \"\"\"Return 4x4 identity/unit matrix.\n\n    >>> I = identity_matrix()\n    >>> numpy.allclose(I, numpy.dot(I, I))\n    True\n    >>> numpy.sum(I), numpy.trace(I)\n    (4.0, 4.0)\n    >>> numpy.allclose(I, numpy.identity(4, dtype=numpy.float64))\n    True\n\n    \"\"\"\n    return numpy.identity(4, dtype=numpy.float64)\n\n\ndef translation_matrix(direction):\n    \"\"\"Return matrix to translate by direction vector.\n\n    >>> v = numpy.random.random(3) - 0.5\n    >>> numpy.allclose(v, translation_matrix(v)[:3, 3])\n    True\n\n    \"\"\"\n    M = numpy.identity(4)\n    M[:3, 3] = direction[:3]\n    return M\n\n\ndef translation_from_matrix(matrix):\n    \"\"\"Return translation vector from translation matrix.\n\n    >>> v0 = numpy.random.random(3) - 0.5\n    >>> v1 = translation_from_matrix(translation_matrix(v0))\n    >>> numpy.allclose(v0, v1)\n    True\n\n    \"\"\"\n    return numpy.array(matrix, copy=False)[:3, 3].copy()\n\n\ndef reflection_matrix(point, normal):\n    \"\"\"Return matrix to mirror at plane defined by point and normal vector.\n\n    >>> v0 = numpy.random.random(4) - 0.5\n    >>> v0[3] = 1.0\n    >>> v1 = numpy.random.random(3) - 0.5\n    >>> R = reflection_matrix(v0, v1)\n    >>> numpy.allclose(2., numpy.trace(R))\n    True\n    >>> numpy.allclose(v0, numpy.dot(R, v0))\n    True\n    >>> v2 = v0.copy()\n    >>> v2[:3] += v1\n    >>> v3 = v0.copy()\n    >>> v2[:3] -= v1\n    >>> numpy.allclose(v2, numpy.dot(R, v3))\n    True\n\n    \"\"\"\n    normal = unit_vector(normal[:3])\n    M = numpy.identity(4)\n    M[:3, :3] -= 2.0 * numpy.outer(normal, normal)\n    M[:3, 3] = (2.0 * numpy.dot(point[:3], normal)) * normal\n    return M\n\n\ndef reflection_from_matrix(matrix):\n    \"\"\"Return mirror plane point and normal vector from reflection matrix.\n\n    >>> v0 = numpy.random.random(3) - 0.5\n    >>> v1 = numpy.random.random(3) - 0.5\n    >>> M0 = reflection_matrix(v0, v1)\n    >>> point, normal = reflection_from_matrix(M0)\n    >>> M1 = reflection_matrix(point, normal)\n    >>> is_same_transform(M0, M1)\n    True\n\n    \"\"\"\n    M = numpy.array(matrix, dtype=numpy.float64, copy=False)\n    # normal: unit eigenvector corresponding to eigenvalue -1\n    l, V = numpy.linalg.eig(M[:3, :3])\n    i = numpy.where(abs(numpy.real(l) + 1.0) < 1e-8)[0]\n    if not len(i):\n        raise ValueError(\"no unit eigenvector corresponding to eigenvalue -1\")\n    normal = numpy.real(V[:, i[0]]).squeeze()\n    # point: any unit eigenvector corresponding to eigenvalue 1\n    l, V = numpy.linalg.eig(M)\n    i = numpy.where(abs(numpy.real(l) - 1.0) < 1e-8)[0]\n    if not len(i):\n        raise ValueError(\"no unit eigenvector corresponding to eigenvalue 1\")\n    point = numpy.real(V[:, i[-1]]).squeeze()\n    point /= point[3]\n    return point, normal\n\n\ndef rotation_matrix(angle, direction, point=None):\n    \"\"\"Return matrix to rotate about axis defined by point and direction.\n\n    >>> angle = (random.random() - 0.5) * (2*math.pi)\n    >>> direc = numpy.random.random(3) - 0.5\n    >>> point = numpy.random.random(3) - 0.5\n    >>> R0 = rotation_matrix(angle, direc, point)\n    >>> R1 = rotation_matrix(angle-2*math.pi, direc, point)\n    >>> is_same_transform(R0, R1)\n    True\n    >>> R0 = rotation_matrix(angle, direc, point)\n    >>> R1 = rotation_matrix(-angle, -direc, point)\n    >>> is_same_transform(R0, R1)\n    True\n    >>> I = numpy.identity(4, numpy.float64)\n    >>> numpy.allclose(I, rotation_matrix(math.pi*2, direc))\n    True\n    >>> numpy.allclose(2., numpy.trace(rotation_matrix(math.pi/2,\n    ...                                                direc, point)))\n    True\n\n    \"\"\"\n    sina = math.sin(angle)\n    cosa = math.cos(angle)\n    direction = unit_vector(direction[:3])\n    # rotation matrix around unit vector\n    R = numpy.array(((cosa, 0.0,  0.0),\n                     (0.0,  cosa, 0.0),\n                     (0.0,  0.0,  cosa)), dtype=numpy.float64)\n    R += numpy.outer(direction, direction) * (1.0 - cosa)\n    direction *= sina\n    R += numpy.array(((0.0,         -direction[2],  direction[1]),\n                      (direction[2], 0.0,          -direction[0]),\n                      (-direction[1], direction[0],  0.0)),\n                     dtype=numpy.float64)\n    M = numpy.identity(4)\n    M[:3, :3] = R\n    if point is not None:\n        # rotation not around origin\n        point = numpy.array(point[:3], dtype=numpy.float64, copy=False)\n        M[:3, 3] = point - numpy.dot(R, point)\n    return M\n\n\ndef rotation_from_matrix(matrix):\n    \"\"\"Return rotation angle and axis from rotation matrix.\n\n    >>> angle = (random.random() - 0.5) * (2*math.pi)\n    >>> direc = numpy.random.random(3) - 0.5\n    >>> point = numpy.random.random(3) - 0.5\n    >>> R0 = rotation_matrix(angle, direc, point)\n    >>> angle, direc, point = rotation_from_matrix(R0)\n    >>> R1 = rotation_matrix(angle, direc, point)\n    >>> is_same_transform(R0, R1)\n    True\n\n    \"\"\"\n    R = numpy.array(matrix, dtype=numpy.float64, copy=False)\n    R33 = R[:3, :3]\n    # direction: unit eigenvector of R33 corresponding to eigenvalue of 1\n    l, W = numpy.linalg.eig(R33.T)\n    i = numpy.where(abs(numpy.real(l) - 1.0) < 1e-8)[0]\n    if not len(i):\n        raise ValueError(\"no unit eigenvector corresponding to eigenvalue 1\")\n    direction = numpy.real(W[:, i[-1]]).squeeze()\n    # point: unit eigenvector of R33 corresponding to eigenvalue of 1\n    l, Q = numpy.linalg.eig(R)\n    i = numpy.where(abs(numpy.real(l) - 1.0) < 1e-8)[0]\n    if not len(i):\n        raise ValueError(\"no unit eigenvector corresponding to eigenvalue 1\")\n    point = numpy.real(Q[:, i[-1]]).squeeze()\n    point /= point[3]\n    # rotation angle depending on direction\n    cosa = (numpy.trace(R33) - 1.0) / 2.0\n    if abs(direction[2]) > 1e-8:\n        sina = (R[1, 0] + (cosa-1.0)*direction[0]*direction[1]) / direction[2]\n    elif abs(direction[1]) > 1e-8:\n        sina = (R[0, 2] + (cosa-1.0)*direction[0]*direction[2]) / direction[1]\n    else:\n        sina = (R[2, 1] + (cosa-1.0)*direction[1]*direction[2]) / direction[0]\n    angle = math.atan2(sina, cosa)\n    return angle, direction, point\n\n\ndef scale_matrix(factor, origin=None, direction=None):\n    \"\"\"Return matrix to scale by factor around origin in direction.\n\n    Use factor -1 for point symmetry.\n\n    >>> v = (numpy.random.rand(4, 5) - 0.5) * 20.0\n    >>> v[3] = 1.0\n    >>> S = scale_matrix(-1.234)\n    >>> numpy.allclose(numpy.dot(S, v)[:3], -1.234*v[:3])\n    True\n    >>> factor = random.random() * 10 - 5\n    >>> origin = numpy.random.random(3) - 0.5\n    >>> direct = numpy.random.random(3) - 0.5\n    >>> S = scale_matrix(factor, origin)\n    >>> S = scale_matrix(factor, origin, direct)\n\n    \"\"\"\n    if direction is None:\n        # uniform scaling\n        M = numpy.array(((factor, 0.0,    0.0,    0.0),\n                         (0.0,    factor, 0.0,    0.0),\n                         (0.0,    0.0,    factor, 0.0),\n                         (0.0,    0.0,    0.0,    1.0)), dtype=numpy.float64)\n        if origin is not None:\n            M[:3, 3] = origin[:3]\n            M[:3, 3] *= 1.0 - factor\n    else:\n        # nonuniform scaling\n        direction = unit_vector(direction[:3])\n        factor = 1.0 - factor\n        M = numpy.identity(4)\n        M[:3, :3] -= factor * numpy.outer(direction, direction)\n        if origin is not None:\n            M[:3, 3] = (factor * numpy.dot(origin[:3], direction)) * direction\n    return M\n\n\ndef scale_from_matrix(matrix):\n    \"\"\"Return scaling factor, origin and direction from scaling matrix.\n\n    >>> factor = random.random() * 10 - 5\n    >>> origin = numpy.random.random(3) - 0.5\n    >>> direct = numpy.random.random(3) - 0.5\n    >>> S0 = scale_matrix(factor, origin)\n    >>> factor, origin, direction = scale_from_matrix(S0)\n    >>> S1 = scale_matrix(factor, origin, direction)\n    >>> is_same_transform(S0, S1)\n    True\n    >>> S0 = scale_matrix(factor, origin, direct)\n    >>> factor, origin, direction = scale_from_matrix(S0)\n    >>> S1 = scale_matrix(factor, origin, direction)\n    >>> is_same_transform(S0, S1)\n    True\n\n    \"\"\"\n    M = numpy.array(matrix, dtype=numpy.float64, copy=False)\n    M33 = M[:3, :3]\n    factor = numpy.trace(M33) - 2.0\n    try:\n        # direction: unit eigenvector corresponding to eigenvalue factor\n        l, V = numpy.linalg.eig(M33)\n        i = numpy.where(abs(numpy.real(l) - factor) < 1e-8)[0][0]\n        direction = numpy.real(V[:, i]).squeeze()\n        direction /= vector_norm(direction)\n    except IndexError:\n        # uniform scaling\n        factor = (factor + 2.0) / 3.0\n        direction = None\n    # origin: any eigenvector corresponding to eigenvalue 1\n    l, V = numpy.linalg.eig(M)\n    i = numpy.where(abs(numpy.real(l) - 1.0) < 1e-8)[0]\n    if not len(i):\n        raise ValueError(\"no eigenvector corresponding to eigenvalue 1\")\n    origin = numpy.real(V[:, i[-1]]).squeeze()\n    origin /= origin[3]\n    return factor, origin, direction\n\n\ndef projection_matrix(point, normal, direction=None,\n                      perspective=None, pseudo=False):\n    \"\"\"Return matrix to project onto plane defined by point and normal.\n\n    Using either perspective point, projection direction, or none of both.\n\n    If pseudo is True, perspective projections will preserve relative depth\n    such that Perspective = dot(Orthogonal, PseudoPerspective).\n\n    >>> P = projection_matrix((0, 0, 0), (1, 0, 0))\n    >>> numpy.allclose(P[1:, 1:], numpy.identity(4)[1:, 1:])\n    True\n    >>> point = numpy.random.random(3) - 0.5\n    >>> normal = numpy.random.random(3) - 0.5\n    >>> direct = numpy.random.random(3) - 0.5\n    >>> persp = numpy.random.random(3) - 0.5\n    >>> P0 = projection_matrix(point, normal)\n    >>> P1 = projection_matrix(point, normal, direction=direct)\n    >>> P2 = projection_matrix(point, normal, perspective=persp)\n    >>> P3 = projection_matrix(point, normal, perspective=persp, pseudo=True)\n    >>> is_same_transform(P2, numpy.dot(P0, P3))\n    True\n    >>> P = projection_matrix((3, 0, 0), (1, 1, 0), (1, 0, 0))\n    >>> v0 = (numpy.random.rand(4, 5) - 0.5) * 20.0\n    >>> v0[3] = 1.0\n    >>> v1 = numpy.dot(P, v0)\n    >>> numpy.allclose(v1[1], v0[1])\n    True\n    >>> numpy.allclose(v1[0], 3.0-v1[1])\n    True\n\n    \"\"\"\n    M = numpy.identity(4)\n    point = numpy.array(point[:3], dtype=numpy.float64, copy=False)\n    normal = unit_vector(normal[:3])\n    if perspective is not None:\n        # perspective projection\n        perspective = numpy.array(perspective[:3], dtype=numpy.float64,\n                                  copy=False)\n        M[0, 0] = M[1, 1] = M[2, 2] = numpy.dot(perspective-point, normal)\n        M[:3, :3] -= numpy.outer(perspective, normal)\n        if pseudo:\n            # preserve relative depth\n            M[:3, :3] -= numpy.outer(normal, normal)\n            M[:3, 3] = numpy.dot(point, normal) * (perspective+normal)\n        else:\n            M[:3, 3] = numpy.dot(point, normal) * perspective\n        M[3, :3] = -normal\n        M[3, 3] = numpy.dot(perspective, normal)\n    elif direction is not None:\n        # parallel projection\n        direction = numpy.array(direction[:3], dtype=numpy.float64, copy=False)\n        scale = numpy.dot(direction, normal)\n        M[:3, :3] -= numpy.outer(direction, normal) / scale\n        M[:3, 3] = direction * (numpy.dot(point, normal) / scale)\n    else:\n        # orthogonal projection\n        M[:3, :3] -= numpy.outer(normal, normal)\n        M[:3, 3] = numpy.dot(point, normal) * normal\n    return M\n\n\ndef projection_from_matrix(matrix, pseudo=False):\n    \"\"\"Return projection plane and perspective point from projection matrix.\n\n    Return values are same as arguments for projection_matrix function:\n    point, normal, direction, perspective, and pseudo.\n\n    >>> point = numpy.random.random(3) - 0.5\n    >>> normal = numpy.random.random(3) - 0.5\n    >>> direct = numpy.random.random(3) - 0.5\n    >>> persp = numpy.random.random(3) - 0.5\n    >>> P0 = projection_matrix(point, normal)\n    >>> result = projection_from_matrix(P0)\n    >>> P1 = projection_matrix(*result)\n    >>> is_same_transform(P0, P1)\n    True\n    >>> P0 = projection_matrix(point, normal, direct)\n    >>> result = projection_from_matrix(P0)\n    >>> P1 = projection_matrix(*result)\n    >>> is_same_transform(P0, P1)\n    True\n    >>> P0 = projection_matrix(point, normal, perspective=persp, pseudo=False)\n    >>> result = projection_from_matrix(P0, pseudo=False)\n    >>> P1 = projection_matrix(*result)\n    >>> is_same_transform(P0, P1)\n    True\n    >>> P0 = projection_matrix(point, normal, perspective=persp, pseudo=True)\n    >>> result = projection_from_matrix(P0, pseudo=True)\n    >>> P1 = projection_matrix(*result)\n    >>> is_same_transform(P0, P1)\n    True\n\n    \"\"\"\n    M = numpy.array(matrix, dtype=numpy.float64, copy=False)\n    M33 = M[:3, :3]\n    l, V = numpy.linalg.eig(M)\n    i = numpy.where(abs(numpy.real(l) - 1.0) < 1e-8)[0]\n    if not pseudo and len(i):\n        # point: any eigenvector corresponding to eigenvalue 1\n        point = numpy.real(V[:, i[-1]]).squeeze()\n        point /= point[3]\n        # direction: unit eigenvector corresponding to eigenvalue 0\n        l, V = numpy.linalg.eig(M33)\n        i = numpy.where(abs(numpy.real(l)) < 1e-8)[0]\n        if not len(i):\n            raise ValueError(\"no eigenvector corresponding to eigenvalue 0\")\n        direction = numpy.real(V[:, i[0]]).squeeze()\n        direction /= vector_norm(direction)\n        # normal: unit eigenvector of M33.T corresponding to eigenvalue 0\n        l, V = numpy.linalg.eig(M33.T)\n        i = numpy.where(abs(numpy.real(l)) < 1e-8)[0]\n        if len(i):\n            # parallel projection\n            normal = numpy.real(V[:, i[0]]).squeeze()\n            normal /= vector_norm(normal)\n            return point, normal, direction, None, False\n        else:\n            # orthogonal projection, where normal equals direction vector\n            return point, direction, None, None, False\n    else:\n        # perspective projection\n        i = numpy.where(abs(numpy.real(l)) > 1e-8)[0]\n        if not len(i):\n            raise ValueError(\n                \"no eigenvector not corresponding to eigenvalue 0\")\n        point = numpy.real(V[:, i[-1]]).squeeze()\n        point /= point[3]\n        normal = - M[3, :3]\n        perspective = M[:3, 3] / numpy.dot(point[:3], normal)\n        if pseudo:\n            perspective -= normal\n        return point, normal, None, perspective, pseudo\n\n\ndef clip_matrix(left, right, bottom, top, near, far, perspective=False):\n    \"\"\"Return matrix to obtain normalized device coordinates from frustrum.\n\n    The frustrum bounds are axis-aligned along x (left, right),\n    y (bottom, top) and z (near, far).\n\n    Normalized device coordinates are in range [-1, 1] if coordinates are\n    inside the frustrum.\n\n    If perspective is True the frustrum is a truncated pyramid with the\n    perspective point at origin and direction along z axis, otherwise an\n    orthographic canonical view volume (a box).\n\n    Homogeneous coordinates transformed by the perspective clip matrix\n    need to be dehomogenized (devided by w coordinate).\n\n    >>> frustrum = numpy.random.rand(6)\n    >>> frustrum[1] += frustrum[0]\n    >>> frustrum[3] += frustrum[2]\n    >>> frustrum[5] += frustrum[4]\n    >>> M = clip_matrix(*frustrum, perspective=False)\n    >>> numpy.dot(M, [frustrum[0], frustrum[2], frustrum[4], 1.0])\n    array([-1., -1., -1.,  1.])\n    >>> numpy.dot(M, [frustrum[1], frustrum[3], frustrum[5], 1.0])\n    array([ 1.,  1.,  1.,  1.])\n    >>> M = clip_matrix(*frustrum, perspective=True)\n    >>> v = numpy.dot(M, [frustrum[0], frustrum[2], frustrum[4], 1.0])\n    >>> v / v[3]\n    array([-1., -1., -1.,  1.])\n    >>> v = numpy.dot(M, [frustrum[1], frustrum[3], frustrum[4], 1.0])\n    >>> v / v[3]\n    array([ 1.,  1., -1.,  1.])\n\n    \"\"\"\n    if left >= right or bottom >= top or near >= far:\n        raise ValueError(\"invalid frustrum\")\n    if perspective:\n        if near <= _EPS:\n            raise ValueError(\"invalid frustrum: near <= 0\")\n        t = 2.0 * near\n        M = ((-t/(right-left), 0.0, (right+left)/(right-left), 0.0),\n             (0.0, -t/(top-bottom), (top+bottom)/(top-bottom), 0.0),\n             (0.0, 0.0, -(far+near)/(far-near), t*far/(far-near)),\n             (0.0, 0.0, -1.0, 0.0))\n    else:\n        M = ((2.0/(right-left), 0.0, 0.0, (right+left)/(left-right)),\n             (0.0, 2.0/(top-bottom), 0.0, (top+bottom)/(bottom-top)),\n             (0.0, 0.0, 2.0/(far-near), (far+near)/(near-far)),\n             (0.0, 0.0, 0.0, 1.0))\n    return numpy.array(M, dtype=numpy.float64)\n\n\ndef shear_matrix(angle, direction, point, normal):\n    \"\"\"Return matrix to shear by angle along direction vector on shear plane.\n\n    The shear plane is defined by a point and normal vector. The direction\n    vector must be orthogonal to the plane's normal vector.\n\n    A point P is transformed by the shear matrix into P\" such that\n    the vector P-P\" is parallel to the direction vector and its extent is\n    given by the angle of P-P'-P\", where P' is the orthogonal projection\n    of P onto the shear plane.\n\n    >>> angle = (random.random() - 0.5) * 4*math.pi\n    >>> direct = numpy.random.random(3) - 0.5\n    >>> point = numpy.random.random(3) - 0.5\n    >>> normal = numpy.cross(direct, numpy.random.random(3))\n    >>> S = shear_matrix(angle, direct, point, normal)\n    >>> numpy.allclose(1.0, numpy.linalg.det(S))\n    True\n\n    \"\"\"\n    normal = unit_vector(normal[:3])\n    direction = unit_vector(direction[:3])\n    if abs(numpy.dot(normal, direction)) > 1e-6:\n        raise ValueError(\"direction and normal vectors are not orthogonal\")\n    angle = math.tan(angle)\n    M = numpy.identity(4)\n    M[:3, :3] += angle * numpy.outer(direction, normal)\n    M[:3, 3] = -angle * numpy.dot(point[:3], normal) * direction\n    return M\n\n\ndef shear_from_matrix(matrix):\n    \"\"\"Return shear angle, direction and plane from shear matrix.\n\n    >>> angle = (random.random() - 0.5) * 4*math.pi\n    >>> direct = numpy.random.random(3) - 0.5\n    >>> point = numpy.random.random(3) - 0.5\n    >>> normal = numpy.cross(direct, numpy.random.random(3))\n    >>> S0 = shear_matrix(angle, direct, point, normal)\n    >>> angle, direct, point, normal = shear_from_matrix(S0)\n    >>> S1 = shear_matrix(angle, direct, point, normal)\n    >>> is_same_transform(S0, S1)\n    True\n\n    \"\"\"\n    M = numpy.array(matrix, dtype=numpy.float64, copy=False)\n    M33 = M[:3, :3]\n    # normal: cross independent eigenvectors corresponding to the eigenvalue 1\n    l, V = numpy.linalg.eig(M33)\n    i = numpy.where(abs(numpy.real(l) - 1.0) < 1e-4)[0]\n    if len(i) < 2:\n        raise ValueError(\"No two linear independent eigenvectors found %s\" % l)\n    V = numpy.real(V[:, i]).squeeze().T\n    lenorm = -1.0\n    for i0, i1 in ((0, 1), (0, 2), (1, 2)):\n        n = numpy.cross(V[i0], V[i1])\n        l = vector_norm(n)\n        if l > lenorm:\n            lenorm = l\n            normal = n\n    normal /= lenorm\n    # direction and angle\n    direction = numpy.dot(M33 - numpy.identity(3), normal)\n    angle = vector_norm(direction)\n    direction /= angle\n    angle = math.atan(angle)\n    # point: eigenvector corresponding to eigenvalue 1\n    l, V = numpy.linalg.eig(M)\n    i = numpy.where(abs(numpy.real(l) - 1.0) < 1e-8)[0]\n    if not len(i):\n        raise ValueError(\"no eigenvector corresponding to eigenvalue 1\")\n    point = numpy.real(V[:, i[-1]]).squeeze()\n    point /= point[3]\n    return angle, direction, point, normal\n\n\ndef decompose_matrix(matrix):\n    \"\"\"Return sequence of transformations from transformation matrix.\n\n    matrix : array_like\n        Non-degenerative homogeneous transformation matrix\n\n    Return tuple of:\n        scale : vector of 3 scaling factors\n        shear : list of shear factors for x-y, x-z, y-z axes\n        angles : list of Euler angles about static x, y, z axes\n        translate : translation vector along x, y, z axes\n        perspective : perspective partition of matrix\n\n    Raise ValueError if matrix is of wrong type or degenerative.\n\n    >>> T0 = translation_matrix((1, 2, 3))\n    >>> scale, shear, angles, trans, persp = decompose_matrix(T0)\n    >>> T1 = translation_matrix(trans)\n    >>> numpy.allclose(T0, T1)\n    True\n    >>> S = scale_matrix(0.123)\n    >>> scale, shear, angles, trans, persp = decompose_matrix(S)\n    >>> scale[0]\n    0.123\n    >>> R0 = euler_matrix(1, 2, 3)\n    >>> scale, shear, angles, trans, persp = decompose_matrix(R0)\n    >>> R1 = euler_matrix(*angles)\n    >>> numpy.allclose(R0, R1)\n    True\n\n    \"\"\"\n    M = numpy.array(matrix, dtype=numpy.float64, copy=True).T\n    if abs(M[3, 3]) < _EPS:\n        raise ValueError(\"M[3, 3] is zero\")\n    M /= M[3, 3]\n    P = M.copy()\n    P[:, 3] = 0, 0, 0, 1\n    if not numpy.linalg.det(P):\n        raise ValueError(\"Matrix is singular\")\n\n    scale = numpy.zeros((3, ), dtype=numpy.float64)\n    shear = [0, 0, 0]\n    angles = [0, 0, 0]\n\n    if any(abs(M[:3, 3]) > _EPS):\n        perspective = numpy.dot(M[:, 3], numpy.linalg.inv(P.T))\n        M[:, 3] = 0, 0, 0, 1\n    else:\n        perspective = numpy.array((0, 0, 0, 1), dtype=numpy.float64)\n\n    translate = M[3, :3].copy()\n    M[3, :3] = 0\n\n    row = M[:3, :3].copy()\n    scale[0] = vector_norm(row[0])\n    row[0] /= scale[0]\n    shear[0] = numpy.dot(row[0], row[1])\n    row[1] -= row[0] * shear[0]\n    scale[1] = vector_norm(row[1])\n    row[1] /= scale[1]\n    shear[0] /= scale[1]\n    shear[1] = numpy.dot(row[0], row[2])\n    row[2] -= row[0] * shear[1]\n    shear[2] = numpy.dot(row[1], row[2])\n    row[2] -= row[1] * shear[2]\n    scale[2] = vector_norm(row[2])\n    row[2] /= scale[2]\n    shear[1:] /= scale[2]\n\n    if numpy.dot(row[0], numpy.cross(row[1], row[2])) < 0:\n        scale *= -1\n        row *= -1\n\n    angles[1] = math.asin(-row[0, 2])\n    if math.cos(angles[1]):\n        angles[0] = math.atan2(row[1, 2], row[2, 2])\n        angles[2] = math.atan2(row[0, 1], row[0, 0])\n    else:\n        # angles[0] = math.atan2(row[1, 0], row[1, 1])\n        angles[0] = math.atan2(-row[2, 1], row[1, 1])\n        angles[2] = 0.0\n\n    return scale, shear, angles, translate, perspective\n\n\ndef compose_matrix(scale=None, shear=None, angles=None, translate=None,\n                   perspective=None):\n    \"\"\"Return transformation matrix from sequence of transformations.\n\n    This is the inverse of the decompose_matrix function.\n\n    Sequence of transformations:\n        scale : vector of 3 scaling factors\n        shear : list of shear factors for x-y, x-z, y-z axes\n        angles : list of Euler angles about static x, y, z axes\n        translate : translation vector along x, y, z axes\n        perspective : perspective partition of matrix\n\n    >>> scale = numpy.random.random(3) - 0.5\n    >>> shear = numpy.random.random(3) - 0.5\n    >>> angles = (numpy.random.random(3) - 0.5) * (2*math.pi)\n    >>> trans = numpy.random.random(3) - 0.5\n    >>> persp = numpy.random.random(4) - 0.5\n    >>> M0 = compose_matrix(scale, shear, angles, trans, persp)\n    >>> result = decompose_matrix(M0)\n    >>> M1 = compose_matrix(*result)\n    >>> is_same_transform(M0, M1)\n    True\n\n    \"\"\"\n    M = numpy.identity(4)\n    if perspective is not None:\n        P = numpy.identity(4)\n        P[3, :] = perspective[:4]\n        M = numpy.dot(M, P)\n    if translate is not None:\n        T = numpy.identity(4)\n        T[:3, 3] = translate[:3]\n        M = numpy.dot(M, T)\n    if angles is not None:\n        R = euler_matrix(angles[0], angles[1], angles[2], 'sxyz')\n        M = numpy.dot(M, R)\n    if shear is not None:\n        Z = numpy.identity(4)\n        Z[1, 2] = shear[2]\n        Z[0, 2] = shear[1]\n        Z[0, 1] = shear[0]\n        M = numpy.dot(M, Z)\n    if scale is not None:\n        S = numpy.identity(4)\n        S[0, 0] = scale[0]\n        S[1, 1] = scale[1]\n        S[2, 2] = scale[2]\n        M = numpy.dot(M, S)\n    M /= M[3, 3]\n    return M\n\n\ndef orthogonalization_matrix(lengths, angles):\n    \"\"\"Return orthogonalization matrix for crystallographic cell coordinates.\n\n    Angles are expected in degrees.\n\n    The de-orthogonalization matrix is the inverse.\n\n    >>> O = orthogonalization_matrix((10., 10., 10.), (90., 90., 90.))\n    >>> numpy.allclose(O[:3, :3], numpy.identity(3, float) * 10)\n    True\n    >>> O = orthogonalization_matrix([9.8, 12.0, 15.5], [87.2, 80.7, 69.7])\n    >>> numpy.allclose(numpy.sum(O), 43.063229)\n    True\n\n    \"\"\"\n    a, b, c = lengths\n    angles = numpy.radians(angles)\n    sina, sinb, _ = numpy.sin(angles)\n    cosa, cosb, cosg = numpy.cos(angles)\n    co = (cosa * cosb - cosg) / (sina * sinb)\n    return numpy.array((\n        (a*sinb*math.sqrt(1.0-co*co),  0.0,    0.0, 0.0),\n        (-a*sinb*co,                    b*sina, 0.0, 0.0),\n        (a*cosb,                       b*cosa, c,   0.0),\n        (0.0,                          0.0,    0.0, 1.0)),\n        dtype=numpy.float64)\n\n\ndef superimposition_matrix(v0, v1, scaling=False, usesvd=True):\n    \"\"\"Return matrix to transform given vector set into second vector set.\n\n    v0 and v1 are shape (3, \\*) or (4, \\*) arrays of at least 3 vectors.\n\n    If usesvd is True, the weighted sum of squared deviations (RMSD) is\n    minimized according to the algorithm by W. Kabsch [8]. Otherwise the\n    quaternion based algorithm by B. Horn [9] is used (slower when using\n    this Python implementation).\n\n    The returned matrix performs rotation, translation and uniform scaling\n    (if specified).\n\n    >>> v0 = numpy.random.rand(3, 10)\n    >>> M = superimposition_matrix(v0, v0)\n    >>> numpy.allclose(M, numpy.identity(4))\n    True\n    >>> R = random_rotation_matrix(numpy.random.random(3))\n    >>> v0 = ((1,0,0), (0,1,0), (0,0,1), (1,1,1))\n    >>> v1 = numpy.dot(R, v0)\n    >>> M = superimposition_matrix(v0, v1)\n    >>> numpy.allclose(v1, numpy.dot(M, v0))\n    True\n    >>> v0 = (numpy.random.rand(4, 100) - 0.5) * 20.0\n    >>> v0[3] = 1.0\n    >>> v1 = numpy.dot(R, v0)\n    >>> M = superimposition_matrix(v0, v1)\n    >>> numpy.allclose(v1, numpy.dot(M, v0))\n    True\n    >>> S = scale_matrix(random.random())\n    >>> T = translation_matrix(numpy.random.random(3)-0.5)\n    >>> M = concatenate_matrices(T, R, S)\n    >>> v1 = numpy.dot(M, v0)\n    >>> v0[:3] += numpy.random.normal(0.0, 1e-9, 300).reshape(3, -1)\n    >>> M = superimposition_matrix(v0, v1, scaling=True)\n    >>> numpy.allclose(v1, numpy.dot(M, v0))\n    True\n    >>> M = superimposition_matrix(v0, v1, scaling=True, usesvd=False)\n    >>> numpy.allclose(v1, numpy.dot(M, v0))\n    True\n    >>> v = numpy.empty((4, 100, 3), dtype=numpy.float64)\n    >>> v[:, :, 0] = v0\n    >>> M = superimposition_matrix(v0, v1, scaling=True, usesvd=False)\n    >>> numpy.allclose(v1, numpy.dot(M, v[:, :, 0]))\n    True\n\n    \"\"\"\n    v0 = numpy.array(v0, dtype=numpy.float64, copy=False)[:3]\n    v1 = numpy.array(v1, dtype=numpy.float64, copy=False)[:3]\n\n    if v0.shape != v1.shape or v0.shape[1] < 3:\n        raise ValueError(\"Vector sets are of wrong shape or type.\")\n\n    # move centroids to origin\n    t0 = numpy.mean(v0, axis=1)\n    t1 = numpy.mean(v1, axis=1)\n    v0 = v0 - t0.reshape(3, 1)\n    v1 = v1 - t1.reshape(3, 1)\n\n    if usesvd:\n        # Singular Value Decomposition of covariance matrix\n        u, s, vh = numpy.linalg.svd(numpy.dot(v1, v0.T))\n        # rotation matrix from SVD orthonormal bases\n        R = numpy.dot(u, vh)\n        if numpy.linalg.det(R) < 0.0:\n            # R does not constitute right handed system\n            R -= numpy.outer(u[:, 2], vh[2, :]*2.0)\n            s[-1] *= -1.0\n        # homogeneous transformation matrix\n        M = numpy.identity(4)\n        M[:3, :3] = R\n    else:\n        # compute symmetric matrix N\n        xx, yy, zz = numpy.sum(v0 * v1, axis=1)\n        xy, yz, zx = numpy.sum(v0 * numpy.roll(v1, -1, axis=0), axis=1)\n        xz, yx, zy = numpy.sum(v0 * numpy.roll(v1, -2, axis=0), axis=1)\n        N = ((xx+yy+zz, yz-zy,    zx-xz,    xy-yx),\n             (yz-zy,    xx-yy-zz, xy+yx,    zx+xz),\n             (zx-xz,    xy+yx,   -xx+yy-zz, yz+zy),\n             (xy-yx,    zx+xz,    yz+zy,   -xx-yy+zz))\n        # quaternion: eigenvector corresponding to most positive eigenvalue\n        l, V = numpy.linalg.eig(N)\n        q = V[:, numpy.argmax(l)]\n        q /= vector_norm(q)  # unit quaternion\n        q = numpy.roll(q, -1)  # move w component to end\n        # homogeneous transformation matrix\n        M = rotation_matrix_from_quaternion(q)\n\n    # scale: ratio of rms deviations from centroid\n    if scaling:\n        v0 *= v0\n        v1 *= v1\n        M[:3, :3] *= math.sqrt(numpy.sum(v1) / numpy.sum(v0))\n\n    # translation\n    M[:3, 3] = t1\n    T = numpy.identity(4)\n    T[:3, 3] = -t0\n    M = numpy.dot(M, T)\n    return M\n\n\ndef euler_matrix(ai, aj, ak, axes='sxyz'):\n    \"\"\"Return homogeneous rotation matrix from Euler angles and axis sequence.\n\n    ai, aj, ak : Euler's roll, pitch and yaw angles\n    axes : One of 24 axis sequences as string or encoded tuple\n\n    >>> R = euler_matrix(1, 2, 3, 'syxz')\n    >>> numpy.allclose(numpy.sum(R[0]), -1.34786452)\n    True\n    >>> R = euler_matrix(1, 2, 3, (0, 1, 0, 1))\n    >>> numpy.allclose(numpy.sum(R[0]), -0.383436184)\n    True\n    >>> ai, aj, ak = (4.0*math.pi) * (numpy.random.random(3) - 0.5)\n    >>> for axes in _AXES2TUPLE.keys():\n    ...    R = euler_matrix(ai, aj, ak, axes)\n    >>> for axes in _TUPLE2AXES.keys():\n    ...    R = euler_matrix(ai, aj, ak, axes)\n\n    \"\"\"\n    try:\n        firstaxis, parity, repetition, frame = _AXES2TUPLE[axes]\n    except (AttributeError, KeyError):\n        _ = _TUPLE2AXES[axes]\n        firstaxis, parity, repetition, frame = axes\n\n    i = firstaxis\n    j = _NEXT_AXIS[i+parity]\n    k = _NEXT_AXIS[i-parity+1]\n\n    if frame:\n        ai, ak = ak, ai\n    if parity:\n        ai, aj, ak = -ai, -aj, -ak\n\n    si, sj, sk = math.sin(ai), math.sin(aj), math.sin(ak)\n    ci, cj, ck = math.cos(ai), math.cos(aj), math.cos(ak)\n    cc, cs = ci*ck, ci*sk\n    sc, ss = si*ck, si*sk\n\n    M = numpy.identity(4)\n    if repetition:\n        M[i, i] = cj\n        M[i, j] = sj*si\n        M[i, k] = sj*ci\n        M[j, i] = sj*sk\n        M[j, j] = -cj*ss+cc\n        M[j, k] = -cj*cs-sc\n        M[k, i] = -sj*ck\n        M[k, j] = cj*sc+cs\n        M[k, k] = cj*cc-ss\n    else:\n        M[i, i] = cj*ck\n        M[i, j] = sj*sc-cs\n        M[i, k] = sj*cc+ss\n        M[j, i] = cj*sk\n        M[j, j] = sj*ss+cc\n        M[j, k] = sj*cs-sc\n        M[k, i] = -sj\n        M[k, j] = cj*si\n        M[k, k] = cj*ci\n    return M\n\n\ndef euler_from_matrix(matrix, axes='sxyz'):\n    \"\"\"Return Euler angles from rotation matrix for specified axis sequence.\n\n    axes : One of 24 axis sequences as string or encoded tuple\n\n    Note that many Euler angle triplets can describe one matrix.\n\n    >>> R0 = euler_matrix(1, 2, 3, 'syxz')\n    >>> al, be, ga = euler_from_matrix(R0, 'syxz')\n    >>> R1 = euler_matrix(al, be, ga, 'syxz')\n    >>> numpy.allclose(R0, R1)\n    True\n    >>> angles = (4.0*math.pi) * (numpy.random.random(3) - 0.5)\n    >>> for axes in _AXES2TUPLE.keys():\n    ...    R0 = euler_matrix(axes=axes, *angles)\n    ...    R1 = euler_matrix(axes=axes, *euler_from_matrix(R0, axes))\n    ...    if not numpy.allclose(R0, R1): print axes, \"failed\"\n\n    \"\"\"\n    try:\n        firstaxis, parity, repetition, frame = _AXES2TUPLE[axes.lower()]\n    except (AttributeError, KeyError):\n        _ = _TUPLE2AXES[axes]\n        firstaxis, parity, repetition, frame = axes\n\n    i = firstaxis\n    j = _NEXT_AXIS[i+parity]\n    k = _NEXT_AXIS[i-parity+1]\n\n    M = numpy.array(matrix, dtype=numpy.float64, copy=False)[:3, :3]\n    if repetition:\n        sy = math.sqrt(M[i, j]*M[i, j] + M[i, k]*M[i, k])\n        if sy > _EPS:\n            ax = math.atan2(M[i, j],  M[i, k])\n            ay = math.atan2(sy,       M[i, i])\n            az = math.atan2(M[j, i], -M[k, i])\n        else:\n            ax = math.atan2(-M[j, k],  M[j, j])\n            ay = math.atan2(sy,       M[i, i])\n            az = 0.0\n    else:\n        cy = math.sqrt(M[i, i]*M[i, i] + M[j, i]*M[j, i])\n        if cy > _EPS:\n            ax = math.atan2(M[k, j],  M[k, k])\n            ay = math.atan2(-M[k, i],  cy)\n            az = math.atan2(M[j, i],  M[i, i])\n        else:\n            ax = math.atan2(-M[j, k],  M[j, j])\n            ay = math.atan2(-M[k, i],  cy)\n            az = 0.0\n\n    if parity:\n        ax, ay, az = -ax, -ay, -az\n    if frame:\n        ax, az = az, ax\n    return ax, ay, az\n\n\ndef euler_from_quaternion(quaternion, axes='sxyz'):\n    \"\"\"Return Euler angles from quaternion for specified axis sequence.\n\n    >>> angles = euler_from_quaternion([0.06146124, 0, 0, 0.99810947])\n    >>> numpy.allclose(angles, [0.123, 0, 0])\n    True\n\n    \"\"\"\n    return euler_from_matrix(rotation_matrix_from_quaternion(quaternion), axes)\n\n\ndef quaternion_from_euler(ai, aj, ak, axes='sxyz'):\n    \"\"\"Return quaternion from Euler angles and axis sequence.\n\n    ai, aj, ak : Euler's roll, pitch and yaw angles\n    axes : One of 24 axis sequences as string or encoded tuple\n\n    >>> q = quaternion_from_euler(1, 2, 3, 'ryxz')\n    >>> numpy.allclose(q, [0.310622, -0.718287, 0.444435, 0.435953])\n    True\n\n    \"\"\"\n    try:\n        firstaxis, parity, repetition, frame = _AXES2TUPLE[axes.lower()]\n    except (AttributeError, KeyError):\n        _ = _TUPLE2AXES[axes]\n        firstaxis, parity, repetition, frame = axes\n\n    i = firstaxis\n    j = _NEXT_AXIS[i+parity]\n    k = _NEXT_AXIS[i-parity+1]\n\n    if frame:\n        ai, ak = ak, ai\n    if parity:\n        aj = -aj\n\n    ai /= 2.0\n    aj /= 2.0\n    ak /= 2.0\n    ci = math.cos(ai)\n    si = math.sin(ai)\n    cj = math.cos(aj)\n    sj = math.sin(aj)\n    ck = math.cos(ak)\n    sk = math.sin(ak)\n    cc = ci*ck\n    cs = ci*sk\n    sc = si*ck\n    ss = si*sk\n\n    quaternion = numpy.empty((4, ), dtype=numpy.float64)\n    if repetition:\n        quaternion[i] = cj*(cs + sc)\n        quaternion[j] = sj*(cc + ss)\n        quaternion[k] = sj*(cs - sc)\n        quaternion[3] = cj*(cc - ss)\n    else:\n        quaternion[i] = cj*sc - sj*cs\n        quaternion[j] = cj*ss + sj*cc\n        quaternion[k] = cj*cs - sj*sc\n        quaternion[3] = cj*cc + sj*ss\n    if parity:\n        quaternion[j] *= -1\n\n    return quaternion\n\n\ndef pose_from_matrix(matrix):\n    \"\"\"Return translation + quaternion(x,y,z,w)\n    \"\"\"\n    if matrix.shape == (3, 4):\n        matrix = numpy.concatenate((matrix, [[0, 0, 0, 1]]), axis=0)\n\n    pose = translation_from_matrix(matrix)\n    quat = rotation_matrix_from_quaternion(matrix)\n    return numpy.concatenate((pose, quat), axis=0)\n\n\nclass Arcball(object):\n    \"\"\"Virtual Trackball Control.\n\n    >>> ball = Arcball()\n    >>> ball = Arcball(initial=numpy.identity(4))\n    >>> ball.place([320, 320], 320)\n    >>> ball.down([500, 250])\n    >>> ball.drag([475, 275])\n    >>> R = ball.matrix()\n    >>> numpy.allclose(numpy.sum(R), 3.90583455)\n    True\n    >>> ball = Arcball(initial=[0, 0, 0, 1])\n    >>> ball.place([320, 320], 320)\n    >>> ball.setaxes([1,1,0], [-1, 1, 0])\n    >>> ball.setconstrain(True)\n    >>> ball.down([400, 200])\n    >>> ball.drag([200, 400])\n    >>> R = ball.matrix()\n    >>> numpy.allclose(numpy.sum(R), 0.2055924)\n    True\n    >>> ball.next()\n\n    \"\"\"\n\n    def __init__(self, initial=None):\n        \"\"\"Initialize virtual trackball control.\n\n        initial : quaternion or rotation matrix\n\n        \"\"\"\n        self._axis = None\n        self._axes = None\n        self._radius = 1.0\n        self._center = [0.0, 0.0]\n        self._vdown = numpy.array([0, 0, 1], dtype=numpy.float64)\n        self._constrain = False\n\n        if initial is None:\n            self._qdown = numpy.array([0, 0, 0, 1], dtype=numpy.float64)\n        else:\n            initial = numpy.array(initial, dtype=numpy.float64)\n            if initial.shape == (4, 4):\n                self._qdown = rotation_matrix_from_quaternion(initial)\n            elif initial.shape == (4, ):\n                initial /= vector_norm(initial)\n                self._qdown = initial\n            else:\n                raise ValueError(\"initial not a quaternion or matrix.\")\n\n        self._qnow = self._qpre = self._qdown\n\n    def place(self, center, radius):\n        \"\"\"Place Arcball, e.g. when window size changes.\n\n        center : sequence[2]\n            Window coordinates of trackball center.\n        radius : float\n            Radius of trackball in window coordinates.\n\n        \"\"\"\n        self._radius = float(radius)\n        self._center[0] = center[0]\n        self._center[1] = center[1]\n\n    def setaxes(self, *axes):\n        \"\"\"Set axes to constrain rotations.\"\"\"\n        if axes is None:\n            self._axes = None\n        else:\n            self._axes = [unit_vector(axis) for axis in axes]\n\n    def setconstrain(self, constrain):\n        \"\"\"Set state of constrain to axis mode.\"\"\"\n        self._constrain = constrain == True\n\n    def getconstrain(self):\n        \"\"\"Return state of constrain to axis mode.\"\"\"\n        return self._constrain\n\n    def down(self, point):\n        \"\"\"Set initial cursor window coordinates and pick constrain-axis.\"\"\"\n        self._vdown = arcball_map_to_sphere(point, self._center, self._radius)\n        self._qdown = self._qpre = self._qnow\n\n        if self._constrain and self._axes is not None:\n            self._axis = arcball_nearest_axis(self._vdown, self._axes)\n            self._vdown = arcball_constrain_to_axis(self._vdown, self._axis)\n        else:\n            self._axis = None\n\n    def drag(self, point):\n        \"\"\"Update current cursor window coordinates.\"\"\"\n        vnow = arcball_map_to_sphere(point, self._center, self._radius)\n\n        if self._axis is not None:\n            vnow = arcball_constrain_to_axis(vnow, self._axis)\n\n        self._qpre = self._qnow\n\n        t = numpy.cross(self._vdown, vnow)\n        if numpy.dot(t, t) < _EPS:\n            self._qnow = self._qdown\n        else:\n            q = [t[0], t[1], t[2], numpy.dot(self._vdown, vnow)]\n            self._qnow = quaternion_multiply(q, self._qdown)\n\n    def next(self, acceleration=0.0):\n        \"\"\"Continue rotation in direction of last drag.\"\"\"\n        q = quaternion_slerp(self._qpre, self._qnow, 2.0+acceleration, False)\n        self._qpre, self._qnow = self._qnow, q\n\n    def matrix(self):\n        \"\"\"Return homogeneous rotation matrix.\"\"\"\n        return rotation_matrix_from_quaternion(self._qnow)\n\n\ndef arcball_map_to_sphere(point, center, radius):\n    \"\"\"Return unit sphere coordinates from window coordinates.\"\"\"\n    v = numpy.array(((point[0] - center[0]) / radius,\n                     (center[1] - point[1]) / radius,\n                     0.0), dtype=numpy.float64)\n    n = v[0]*v[0] + v[1]*v[1]\n    if n > 1.0:\n        v /= math.sqrt(n)  # position outside of sphere\n    else:\n        v[2] = math.sqrt(1.0 - n)\n    return v\n\n\ndef arcball_constrain_to_axis(point, axis):\n    \"\"\"Return sphere point perpendicular to axis.\"\"\"\n    v = numpy.array(point, dtype=numpy.float64, copy=True)\n    a = numpy.array(axis, dtype=numpy.float64, copy=True)\n    v -= a * numpy.dot(a, v)  # on plane\n    n = vector_norm(v)\n    if n > _EPS:\n        if v[2] < 0.0:\n            v *= -1.0\n        v /= n\n        return v\n    if a[2] == 1.0:\n        return numpy.array([1, 0, 0], dtype=numpy.float64)\n    return unit_vector([-a[1], a[0], 0])\n\n\ndef arcball_nearest_axis(point, axes):\n    \"\"\"Return axis, which arc is nearest to point.\"\"\"\n    point = numpy.array(point, dtype=numpy.float64, copy=False)\n    nearest = None\n    mx = -1.0\n    for axis in axes:\n        t = numpy.dot(arcball_constrain_to_axis(point, axis), point)\n        if t > mx:\n            nearest = axis\n            mx = t\n    return nearest\n\n\n# epsilon for testing whether a number is close to zero\n_EPS = numpy.finfo(float).eps * 4.0\n\n# axis sequences for Euler angles\n_NEXT_AXIS = [1, 2, 0, 1]\n\n# map axes strings to/from tuples of inner axis, parity, repetition, frame\n_AXES2TUPLE = {\n    'sxyz': (0, 0, 0, 0), 'sxyx': (0, 0, 1, 0), 'sxzy': (0, 1, 0, 0),\n    'sxzx': (0, 1, 1, 0), 'syzx': (1, 0, 0, 0), 'syzy': (1, 0, 1, 0),\n    'syxz': (1, 1, 0, 0), 'syxy': (1, 1, 1, 0), 'szxy': (2, 0, 0, 0),\n    'szxz': (2, 0, 1, 0), 'szyx': (2, 1, 0, 0), 'szyz': (2, 1, 1, 0),\n    'rzyx': (0, 0, 0, 1), 'rxyx': (0, 0, 1, 1), 'ryzx': (0, 1, 0, 1),\n    'rxzx': (0, 1, 1, 1), 'rxzy': (1, 0, 0, 1), 'ryzy': (1, 0, 1, 1),\n    'rzxy': (1, 1, 0, 1), 'ryxy': (1, 1, 1, 1), 'ryxz': (2, 0, 0, 1),\n    'rzxz': (2, 0, 1, 1), 'rxyz': (2, 1, 0, 1), 'rzyz': (2, 1, 1, 1)}\n\n_TUPLE2AXES = dict((v, k) for k, v in list(_AXES2TUPLE.items()))\n\n# helper functions\n\n\ndef vector_norm(data, axis=None, out=None):\n    \"\"\"Return length, i.e. eucledian norm, of ndarray along axis.\n\n    >>> v = numpy.random.random(3)\n    >>> n = vector_norm(v)\n    >>> numpy.allclose(n, numpy.linalg.norm(v))\n    True\n    >>> v = numpy.random.rand(6, 5, 3)\n    >>> n = vector_norm(v, axis=-1)\n    >>> numpy.allclose(n, numpy.sqrt(numpy.sum(v*v, axis=2)))\n    True\n    >>> n = vector_norm(v, axis=1)\n    >>> numpy.allclose(n, numpy.sqrt(numpy.sum(v*v, axis=1)))\n    True\n    >>> v = numpy.random.rand(5, 4, 3)\n    >>> n = numpy.empty((5, 3), dtype=numpy.float64)\n    >>> vector_norm(v, axis=1, out=n)\n    >>> numpy.allclose(n, numpy.sqrt(numpy.sum(v*v, axis=1)))\n    True\n    >>> vector_norm([])\n    0.0\n    >>> vector_norm([1.0])\n    1.0\n\n    \"\"\"\n    data = numpy.array(data, dtype=numpy.float64, copy=True)\n    if out is None:\n        if data.ndim == 1:\n            return math.sqrt(numpy.dot(data, data))\n        data *= data\n        out = numpy.atleast_1d(numpy.sum(data, axis=axis))\n        numpy.sqrt(out, out)\n        return out\n    else:\n        data *= data\n        numpy.sum(data, axis=axis, out=out)\n        numpy.sqrt(out, out)\n\n\ndef unit_vector(data, axis=None, out=None):\n    \"\"\"Return ndarray normalized by length, i.e. eucledian norm, along axis.\n\n    >>> v0 = numpy.random.random(3)\n    >>> v1 = unit_vector(v0)\n    >>> numpy.allclose(v1, v0 / numpy.linalg.norm(v0))\n    True\n    >>> v0 = numpy.random.rand(5, 4, 3)\n    >>> v1 = unit_vector(v0, axis=-1)\n    >>> v2 = v0 / numpy.expand_dims(numpy.sqrt(numpy.sum(v0*v0, axis=2)), 2)\n    >>> numpy.allclose(v1, v2)\n    True\n    >>> v1 = unit_vector(v0, axis=1)\n    >>> v2 = v0 / numpy.expand_dims(numpy.sqrt(numpy.sum(v0*v0, axis=1)), 1)\n    >>> numpy.allclose(v1, v2)\n    True\n    >>> v1 = numpy.empty((5, 4, 3), dtype=numpy.float64)\n    >>> unit_vector(v0, axis=1, out=v1)\n    >>> numpy.allclose(v1, v2)\n    True\n    >>> list(unit_vector([]))\n    []\n    >>> list(unit_vector([1.0]))\n    [1.0]\n\n    \"\"\"\n    if out is None:\n        data = numpy.array(data, dtype=numpy.float64, copy=True)\n        if data.ndim == 1:\n            data /= math.sqrt(numpy.dot(data, data))\n            return data\n    else:\n        if out is not data:\n            out[:] = numpy.array(data, copy=False)\n        data = out\n    length = numpy.atleast_1d(numpy.sum(data*data, axis))\n    numpy.sqrt(length, length)\n    if axis is not None:\n        length = numpy.expand_dims(length, axis)\n    data /= length\n    if out is None:\n        return data\n\n\ndef random_vector(size):\n    \"\"\"Return array of random doubles in the half-open interval [0.0, 1.0).\n\n    >>> v = random_vector(10000)\n    >>> numpy.all(v >= 0.0) and numpy.all(v < 1.0)\n    True\n    >>> v0 = random_vector(10)\n    >>> v1 = random_vector(10)\n    >>> numpy.any(v0 == v1)\n    False\n\n    \"\"\"\n    return numpy.random.random(size)\n\n\ndef inverse_matrix(matrix):\n    \"\"\"Return inverse of square transformation matrix.\n\n    >>> M0 = random_rotation_matrix()\n    >>> M1 = inverse_matrix(M0.T)\n    >>> numpy.allclose(M1, numpy.linalg.inv(M0.T))\n    True\n    >>> for size in range(1, 7):\n    ...     M0 = numpy.random.rand(size, size)\n    ...     M1 = inverse_matrix(M0)\n    ...     if not numpy.allclose(M1, numpy.linalg.inv(M0)): print size\n\n    \"\"\"\n    return numpy.linalg.inv(matrix)\n\n\ndef concatenate_matrices(*matrices):\n    \"\"\"Return concatenation of series of transformation matrices.\n\n    >>> M = numpy.random.rand(16).reshape((4, 4)) - 0.5\n    >>> numpy.allclose(M, concatenate_matrices(M))\n    True\n    >>> numpy.allclose(numpy.dot(M, M.T), concatenate_matrices(M, M.T))\n    True\n\n    \"\"\"\n    M = numpy.identity(4)\n    for i in matrices:\n        M = numpy.dot(M, i)\n    return M\n\n\ndef is_same_transform(matrix0, matrix1):\n    \"\"\"Return True if two matrices perform same transformation.\n\n    >>> is_same_transform(numpy.identity(4), numpy.identity(4))\n    True\n    >>> is_same_transform(numpy.identity(4), random_rotation_matrix())\n    False\n\n    \"\"\"\n    matrix0 = numpy.array(matrix0, dtype=numpy.float64, copy=True)\n    matrix0 /= matrix0[3, 3]\n    matrix1 = numpy.array(matrix1, dtype=numpy.float64, copy=True)\n    matrix1 /= matrix1[3, 3]\n    return numpy.allclose(matrix0, matrix1)\n\n\ndef rotate_quaternion_by_rpy(roll, pitch, yaw, q_in, rotated_frame=False):\n    \"\"\"\n    if rotated_frame == True, Apply RPY rotation in the reference frame of the quaternion.\n\n    Otherwise, Apply RPY rotation in the rotated frame (the one to which the quaternion has rotated the reference frame).\n    \"\"\"\n    q_rot = quaternion_from_euler(roll, pitch, yaw)\n\n    if rotated_frame:\n        q_rotated = quaternion_multiply(q_in, q_rot)\n    else:\n        q_rotated = quaternion_multiply(q_rot, q_in)\n\n    return q_rotated\n\n\ndef translate_pose(pose, delta, rotated_frame=False):\n    \"\"\"\n        Translate pose by a delta distance.\n        rotated_frame: \n            False, to translate directly to the frame of reference.\n            True, rotate delta and then apply translation. I.e., translate about its relative pose\n    \"\"\"\n    position = numpy.copy(pose[:3])\n    orienation = pose[3:]\n\n    if rotated_frame:\n        position += quaternion_rotate_vector(orienation, delta)\n    else:\n        position += delta\n\n    return numpy.concatenate([position, orienation])\n\n\ndef transform_pose(pose, transformation, rotated_frame=False):\n    \"\"\"\n        Apply a transformation, translation and rotation to a pose.\n        Optionally, apply the transformation relative to itself. In other words, \n\n        pose: list, initial pose in the form [x, y, z, rx, ry, rz, w]\n        transformation: list, in the form [x, y, z, r, p, y]\n        rotated_frame: boolean, apply transformation directly (in reference frame) \n                        or rotate about current orientation before applying transformation.\n                        In other words, transform relative to reference frame or relative to pose frame\n        axes: string type of axes for euler angles transformation\n    \"\"\"\n    # Apply translation\n    new_pose = translate_pose(pose, transformation[:3], rotated_frame=rotated_frame)\n\n    # Apply rotation\n    new_pose[3:] = rotate_quaternion_by_rpy(*transformation[3:], pose[3:], rotated_frame=rotated_frame)\n\n    return new_pose\n\n\ndef pose_from_angular_velocity_euler(pose, velocity, dt=1.0):\n    \"\"\"\n        Transform an action translation + euler [x, y, z, rx, ry, rz] into\n        translation(optional rotated) + quaternion [x, y, z, rx, ry, rz, w]\n        pose: list initial pose translation + quaternion\n        velocity: list aditional desired motion translation + euler\n        ee_rotation: boolean whether to return the rotated translation w.r.t\n                             the end effector\n    \"\"\"\n    _pose = numpy.copy(pose)\n    translation = _pose[:3]\n    vel = numpy.copy(velocity)\n    lin_vel = vel[:3]\n    ang_vel = vel[3:]\n\n    pose_cmd = numpy.zeros_like(pose)\n    # Translation\n    pose_cmd[:3] = translation + lin_vel*dt\n\n    # Rotation\n    new_orientation = _pose[3:] + ang_vel*dt\n\n    pose_cmd[3:] = new_orientation\n\n    return pose_cmd\n\n\ndef pose_from_angular_velocity(pose, velocity, dt=1.0, rotated_frame=False):\n    \"\"\"\n        Transform an action translation + euler [x, y, z, rx, ry, rz] into\n        translation(optional rotated) + quaternion [x, y, z, rx, ry, rz, w]\n        pose: list initial pose translation + quaternion\n        velocity: list aditional desired motion translation + euler\n        rotated_frame: boolean whether to return the rotated translation w.r.t\n                             the end effector\n    \"\"\"\n    _pose = numpy.copy(pose)\n    translation = _pose[:3]\n    orientation = to_np_quaternion(_pose[3:])\n    vel = numpy.copy(velocity)\n    lin_vel = vel[:3]\n    ang_vel = vel[3:]\n\n    pose_cmd = numpy.zeros_like(pose)\n    # Translation\n    if rotated_frame:\n        lin_vel[2] *= -1\n        lin_vel = quaternion.rotate_vectors(orientation, lin_vel)\n        pose_cmd[:3] = translation + lin_vel*dt\n    else:\n        pose_cmd[:3] = translation + lin_vel*dt\n\n    # Rotation\n    new_orientation = integrateUnitQuaternionEuler(orientation, ang_vel, dt)\n\n    pose_cmd[3:] = to_np_array(new_orientation)\n\n    return pose_cmd\n\n\ndef integrateUnitQuaternionDMM(q, w, dt):\n    \"\"\" Integrate a unit quaterniong using the Direct Multiplicaiton Method\"\"\"\n    w_norm = numpy.linalg.norm(w)\n    if w_norm == 0:\n        return q\n    q_tmp = numpy.concatenate([numpy.sin(w_norm*dt/2)*w/w_norm, [numpy.cos(w_norm*dt/2.)]])\n    return quaternion_multiply(q_tmp, q)\n\n\ndef integrateUnitQuaternionEuler(q, w, dt):\n    \"\"\" Integrate a unit quaterniong using Euler Method\"\"\"\n    q = to_np_quaternion(q)\n    qw = quaternion.from_vector_part(w)\n    return (q + 0.5*qw*dt*q).normalised\n\n\ndef pose_to_transform(pose):\n    translation = numpy.array([pose[:3]])\n    if len(pose[3:]) == 3:\n        transform = euler_matrix(*pose[3:])\n    else:\n        transform = rotation_matrix_from_quaternion(pose[3:])\n    transform[:3, 3] = translation\n    return transform\n\n\ndef angular_velocity_from_quaternions(q0, q1, dt):\n    return (2.0 / dt) * quaternion_multiply(q1 - q0, quaternion_inverse(q0))[:3]\n\n\ndef pose_quaternion_to_euler(pose):\n    return numpy.concatenate([pose[:3], list(euler_from_quaternion(pose[3:], axes='rxyz'))])\n\n\ndef pose_euler_to_quat(pose):\n    return numpy.concatenate([pose[:3], list(quaternion_from_euler(*pose[3:], axes='rxyz'))])\n\n\ndef transform_between_poses(p1, p2):\n    p1_T = pose_to_transform(p1)\n    p2_T = pose_to_transform(p2)\n\n    p1_T_inv = inverse_matrix(p1_T)\n    return concatenate_matrices(p1_T_inv, p2_T)\n"
  },
  {
    "path": "ur_control/src/ur_control/ur_services.py",
    "content": "\nimport rospy\nimport time\n\nimport controller_manager_msgs.msg\nimport std_srvs.srv\nfrom ur_control import conversions\nfrom ur_control.utils import solve_namespace\nimport ur_dashboard_msgs.srv\nimport ur_msgs.srv\n\nfrom std_msgs.msg import Bool\n\n\ndef check_for_real_robot(func):\n    '''Decorator that validates the real robot is used or no'''\n\n    def wrap(*args, **kwargs):\n        if args[0].use_real_robot:\n            return func(*args, **kwargs)\n        rospy.logdebug(\"Ignoring function %s since no real robot is being used\" % func.__name__)\n        return True\n    return wrap\n\n\nclass URServices():\n    \"\"\" \n    Universal Robots driver specific services\n    \"\"\"\n\n    def __init__(self, namespace):\n\n        self.use_real_robot = rospy.get_param(\"use_real_robot\", False)\n\n        self.ns = solve_namespace(namespace)\n\n        self.ur_ros_control_running_on_robot = False\n        self.robot_safety_mode = None\n        self.robot_status = dict()\n\n        self.ur_dashboard_clients = {\n            \"get_loaded_program\":     rospy.ServiceProxy(self.ns + 'ur_hardware_interface/dashboard/get_loaded_program', ur_dashboard_msgs.srv.GetLoadedProgram),\n            \"program_running\":        rospy.ServiceProxy(self.ns + 'ur_hardware_interface/dashboard/program_running', ur_dashboard_msgs.srv.IsProgramRunning),\n            \"load_program\":           rospy.ServiceProxy(self.ns + 'ur_hardware_interface/dashboard/load_program', ur_dashboard_msgs.srv.Load),\n            \"play\":                   rospy.ServiceProxy(self.ns + 'ur_hardware_interface/dashboard/play', std_srvs.srv.Trigger),\n            \"stop\":                   rospy.ServiceProxy(self.ns + 'ur_hardware_interface/dashboard/stop', std_srvs.srv.Trigger),\n            \"quit\":                   rospy.ServiceProxy(self.ns + 'ur_hardware_interface/dashboard/quit', std_srvs.srv.Trigger),\n            \"connect\":                rospy.ServiceProxy(self.ns + 'ur_hardware_interface/dashboard/connect', std_srvs.srv.Trigger),\n            \"close_popup\":            rospy.ServiceProxy(self.ns + 'ur_hardware_interface/dashboard/close_popup', std_srvs.srv.Trigger),\n            \"unlock_protective_stop\": rospy.ServiceProxy(self.ns + 'ur_hardware_interface/dashboard/unlock_protective_stop', std_srvs.srv.Trigger),\n            \"is_in_remote_control\":   rospy.ServiceProxy(self.ns + 'ur_hardware_interface/dashboard/is_in_remote_control', ur_dashboard_msgs.srv.IsInRemoteControl),\n        }\n\n        self.set_payload_srv = rospy.ServiceProxy(self.ns + 'ur_hardware_interface/set_payload', ur_msgs.srv.SetPayload)\n        self.speed_slider = rospy.ServiceProxy(self.ns + 'ur_hardware_interface/set_speed_slider', ur_msgs.srv.SetSpeedSliderFraction)\n\n        self.set_io = rospy.ServiceProxy(self.ns + 'ur_hardware_interface/set_io', ur_msgs.srv.SetIO)\n\n        self.sub_status_ = rospy.Subscriber(self.ns + 'ur_hardware_interface/robot_program_running', Bool, self.ros_control_status_callback)\n        self.service_proxy_list = rospy.ServiceProxy(self.ns + 'controller_manager/list_controllers', controller_manager_msgs.srv.ListControllers)\n        self.service_proxy_switch = rospy.ServiceProxy(self.ns + 'controller_manager/switch_controller', controller_manager_msgs.srv.SwitchController)\n\n        self.sub_robot_safety_mode = rospy.Subscriber(self.ns + 'ur_hardware_interface/safety_mode', ur_dashboard_msgs.msg.SafetyMode, self.safety_mode_callback)\n\n    @check_for_real_robot\n    def safety_mode_callback(self, msg):\n        self.robot_safety_mode = msg.mode\n\n    @check_for_real_robot\n    def ros_control_status_callback(self, msg):\n        self.ur_ros_control_running_on_robot = msg.data\n\n    @check_for_real_robot\n    def is_running_normally(self):\n        \"\"\"\n        Returns true if the robot is running (no protective stop, not turned off etc).\n        \"\"\"\n        return self.robot_safety_mode == 1 or self.robot_safety_mode == 2  # Normal / Reduced\n\n    @check_for_real_robot\n    def is_protective_stopped(self):\n        \"\"\"\n        Returns true if the robot is in protective stop.\n        \"\"\"\n        return self.robot_safety_mode == 3\n\n    @check_for_real_robot\n    def unlock_protective_stop(self):\n        if not self.use_real_robot:\n            return True\n\n        service_client = self.ur_dashboard_clients[\"unlock_protective_stop\"]\n        request = std_srvs.srv.TriggerRequest()\n        start_time = time.time()\n        rospy.loginfo(\"Attempting to unlock protective stop of \" + self.ns)\n        while not rospy.is_shutdown():\n            response = service_client.call(request)\n            if time.time() - start_time > 20.0:\n                rospy.logerr(\"Timeout of 20s exceeded in unlock protective stop\")\n                break\n            if response.success:\n                break\n            rospy.sleep(0.2)\n        self.ur_dashboard_clients[\"stop\"].call(std_srvs.srv.TriggerRequest())\n        if not response.success:\n            rospy.logwarn(\"Could not unlock protective stop of \" + self.ns + \"!\")\n        return response.success\n\n    @check_for_real_robot\n    def set_speed_scale(self, scale):\n        try:\n            self.speed_slider(ur_msgs.srv.SetSpeedSliderFractionRequest(speed_slider_fraction=scale))\n        except:\n            rospy.logerr(\"Failed to communicate with Dashboard when setting speed slider\")\n            return False\n\n    @check_for_real_robot\n    def set_payload(self, mass, center_of_gravity):\n        \"\"\" \n            mass float\n            center_of_gravity list[3] \n        \"\"\"\n        self.activate_ros_control_on_ur()\n        try:\n            payload = ur_msgs.srv.SetPayloadRequest()\n            payload.payload = mass\n            payload.center_of_gravity = conversions.to_vector3(center_of_gravity)\n            self.set_payload_srv(payload)\n            return True\n        except Exception as e:\n            rospy.logerr(\"Exception trying to set payload: %s\" % e)\n        return False\n\n    @check_for_real_robot\n    def wait_for_control_status_to_turn_on(self, waittime):\n        start = rospy.Time.now()\n        elapsed = rospy.Time.now() - start\n        while not self.ur_ros_control_running_on_robot and elapsed < rospy.Duration(waittime) and not rospy.is_shutdown():\n            rospy.sleep(.1)\n            elapsed = rospy.Time.now() - start\n            if self.ur_ros_control_running_on_robot:\n                return True\n        return False\n\n    @check_for_real_robot\n    def activate_ros_control_on_ur(self, recursion_depth=0):\n        if not self.use_real_robot:\n            return True\n\n        # Check if URCap is already running on UR\n        if self.ur_ros_control_running_on_robot:\n            self.set_speed_scale(scale=1.0)  # Set speed to max always\n            return True\n        else:\n            rospy.loginfo(\"Robot program not running for \" + self.ns)\n\n        try:\n            response = self.ur_dashboard_clients[\"is_in_remote_control\"].call()\n            if not response.in_remote_control:\n                rospy.logerr(\"Unable to automatically activate robot. Manually activate the robot by pressing 'play' in the polyscope or turn ON the remote control mode.\")\n                return False\n        except:\n            pass\n\n        rospy.logwarn(f\"Attempt to reconnect # {recursion_depth+1}\")\n\n        if recursion_depth > 10:\n            rospy.logerr(\"Tried too often. Breaking out.\")\n            rospy.logerr(\"Could not start UR ROS control.\")\n            raise Exception(\"Could not activate ROS control on robot \" + self.ns + \". Breaking out. Is the UR in Remote Control mode and program installed with correct name?\")\n\n        if rospy.is_shutdown():\n            return False\n\n        program_loaded = self.check_loaded_program()\n\n        if not program_loaded:\n            rospy.logwarn(\"Could not load.\")\n        else:\n            # Run the program\n            rospy.loginfo(\"Running the program (play)\")\n            try:\n                response = self.ur_dashboard_clients[\"play\"].call(std_srvs.srv.TriggerRequest())\n            except:\n                pass\n            if self.wait_for_control_status_to_turn_on(2.0):\n                return True\n            else:\n                rospy.logwarn(\"Failed to start program\")\n\n        rospy.logwarn(\"Trying to reconnect dashboard client and then activating again.\")\n        # Try to connect to dashboard if first try failed\n        try:\n            rospy.logdebug(\"Try to quit before connecting.\")\n            response = self.ur_dashboard_clients[\"quit\"].call()\n            rospy.sleep(1)\n            rospy.logdebug(\"Try to connect to dashboard service.\")\n            response = self.ur_dashboard_clients[\"connect\"].call()\n            rospy.sleep(1)\n            if response.success:\n                rospy.logdebug(\"Try to stop program.\")\n                response = self.ur_dashboard_clients[\"stop\"].call()\n                rospy.sleep(1)\n                if response.success:\n                    rospy.logdebug(\"Try to play program.\")\n                    response = self.ur_dashboard_clients[\"play\"].call()\n                    rospy.sleep(1)\n        except:\n            rospy.logwarn(\"Dashboard service did not respond! (2)\")\n            pass\n\n        if self.wait_for_control_status_to_turn_on(2.0):\n            if self.check_for_dead_controller_and_force_start():\n                rospy.loginfo(\"Successfully activated ROS control on robot \" + self.ns)\n                self.set_speed_scale(scale=1.0)  # Set speed to max always\n                return True\n        else:\n            return self.activate_ros_control_on_ur(recursion_depth=recursion_depth+1)\n\n    @check_for_real_robot\n    def check_loaded_program(self):\n        try:\n            # Load program if it not loaded already\n            response = self.ur_dashboard_clients[\"get_loaded_program\"].call(ur_dashboard_msgs.srv.GetLoadedProgramRequest())\n            if response.program_name == '/programs/ROS_external_control.urp':\n                return True\n            else:\n                rospy.loginfo(\"Currently loaded program was:  \" + response.program_name)\n                rospy.loginfo(\"Loading ROS control on robot \" + self.ns)\n                request = ur_dashboard_msgs.srv.LoadRequest()\n                request.filename = \"ROS_external_control.urp\"\n                response = self.ur_dashboard_clients[\"load_program\"].call(request)\n                if response.success:  # Try reconnecting to dashboard\n                    return True\n                else:\n                    rospy.logerr(\"Could not load the ROS_external_control.urp URCap. Is the UR in Remote Control mode and program installed with correct name?\")\n                for i in range(10):\n                    rospy.sleep(0.2)\n                    # rospy.loginfo(\"After-load check nr. \" + str(i))\n                    response = self.ur_dashboard_clients[\"get_loaded_program\"].call(ur_dashboard_msgs.srv.GetLoadedProgramRequest())\n                    # rospy.loginfo(\"Received response: \" + response.program_name)\n                    if response.program_name == '/programs/ROS_external_control.urp':\n                        break\n        except:\n            rospy.logwarn(\"Dashboard service did not respond!\")\n        return False\n\n    @check_for_real_robot\n    def check_for_dead_controller_and_force_start(self):\n        list_req = controller_manager_msgs.srv.ListControllersRequest()\n        switch_req = controller_manager_msgs.srv.SwitchControllerRequest()\n        rospy.loginfo(\"Checking for dead controllers for robot \" + self.ns)\n        list_res = self.service_proxy_list.call(list_req)\n        for c in list_res.controller:\n            if c.name == \"scaled_pos_joint_traj_controller\":\n                if c.state == \"stopped\":\n                    # Force restart\n                    rospy.logwarn(\"Force restart of controller\")\n                    switch_req.start_controllers = ['scaled_pos_joint_traj_controller']\n                    switch_req.strictness = 1\n                    switch_res = self.service_proxy_switch.call(switch_req)\n                    rospy.sleep(1)\n                    return switch_res.ok\n                else:\n                    rospy.loginfo(\"Controller state is \" + c.state + \", returning True.\")\n                    return True\n\n    @check_for_real_robot\n    def load_and_execute_program(self, program_name=\"\", recursion_depth=0, skip_ros_activation=False):\n        if not skip_ros_activation:\n            self.activate_ros_control_on_ur()\n        if not self.load_program(program_name, recursion_depth):\n            return False\n        return self.execute_loaded_program()\n\n    @check_for_real_robot\n    def load_program(self, program_name=\"\", recursion_depth=0):\n        if not self.use_real_robot:\n            return True\n\n        if recursion_depth > 10:\n            rospy.logerr(\"Tried too often. Breaking out.\")\n            rospy.logerr(\"Could not load \" + program_name + \". Is the UR in Remote Control mode and program installed with correct name?\")\n            return False\n\n        load_success = False\n        try:\n            # Try to stop running program\n            self.ur_dashboard_clients[\"stop\"].call(std_srvs.srv.TriggerRequest())\n            rospy.sleep(.5)\n\n            # Load program if it not loaded already\n            response = self.ur_dashboard_clients[\"get_loaded_program\"].call(ur_dashboard_msgs.srv.GetLoadedProgramRequest())\n            # print(\"response:\")\n            # print(response)\n            if response.program_name == '/programs/' + program_name:\n                return True\n            else:\n                rospy.loginfo(\"Loaded program is different %s. Attempting to load new program %s\" % (response.program_name, program_name))\n                request = ur_dashboard_msgs.srv.LoadRequest()\n                request.filename = program_name\n                response = self.ur_dashboard_clients[\"load_program\"].call(request)\n                if response.success:  # Try reconnecting to dashboard\n                    load_success = True\n                    return True\n                else:\n                    rospy.logerr(\"Could not load \" + program_name + \". Is the UR in Remote Control mode and program installed with correct name?\")\n        except:\n            rospy.logwarn(\"Dashboard service did not respond to load_program!\")\n        if not load_success:\n            rospy.logwarn(\"Waiting and trying again\")\n            rospy.sleep(3)\n            try:\n                if recursion_depth > 0:  # If connect alone failed, try quit and then connect\n                    response = self.ur_dashboard_clients[\"quit\"].call()\n                    rospy.logerr(\"Program could not be loaded on UR: \" + program_name)\n                    rospy.sleep(.5)\n            except:\n                rospy.logwarn(\"Dashboard service did not respond to quit! \")\n                pass\n            response = self.ur_dashboard_clients[\"connect\"].call()\n            rospy.sleep(.5)\n            return self.load_program(program_name=program_name, recursion_depth=recursion_depth+1)\n\n    @check_for_real_robot\n    def execute_loaded_program(self):\n        # Run the program\n        try:\n            response = self.ur_dashboard_clients[\"play\"].call(std_srvs.srv.TriggerRequest())\n            if not response.success:\n                rospy.logerr(\"Could not start program. Is the UR in Remote Control mode and program installed with correct name?\")\n                return False\n            else:\n                rospy.loginfo(\"Successfully started program on robot \" + self.ns)\n                return True\n        except Exception as e:\n            rospy.logerr(str(e))\n            return False\n\n    @check_for_real_robot\n    def close_ur_popup(self):\n        # Close a popup on the teach pendant to continue program execution\n        response = self.ur_dashboard_clients[\"close_popup\"].call(std_srvs.srv.TriggerRequest())\n        if not response.success:\n            rospy.logerr(\"Could not close popup.\")\n            return False\n        else:\n            rospy.loginfo(\"Successfully closed popup on teach pendant of robot \" + self.ns)\n            return True\n"
  },
  {
    "path": "ur_control/src/ur_control/utils.py",
    "content": "# ROS utilities used by the CRI group\n#! /usr/bin/env python\nimport os\nimport sys\nimport copy\nimport time\nimport numpy as np\nimport rospy\nimport rospkg\nimport sys\nimport inspect\nfrom ur_control import transformations, spalg\nfrom sensor_msgs.msg import JointState\nfrom pyquaternion import Quaternion\n\ndef load_urdf_string(package, filename):\n    rospack = rospkg.RosPack()\n    package_dir = rospack.get_path(package)\n    urdf_file = package_dir + '/urdf/' + filename + '.urdf'\n    urdf = None\n    with open(urdf_file) as f:\n        urdf = f.read()\n    return urdf\n\nclass PDRotation:\n    def __init__(self, kp, kd=None):\n        self.kp = np.array(kp)\n        self.kd = np.array(kd)\n        self.reset()\n\n    def reset(self):\n        self.last_time = rospy.get_rostime()\n        self.last_error = Quaternion()\n\n    def set_gains(self, kp=None, kd=None):\n        if kp is not None:\n            self.kp = np.array(kp)\n        if kd is not None:\n            self.kd = np.array(kd)\n\n    def update(self, quaternion_error, dt=None):\n        now = rospy.get_rostime()\n        if dt is None:\n            dt = now - self.last_time\n\n        k_prime = 2 * quaternion_error.scalar*np.identity(3)-spalg.skew(quaternion_error.vector)\n        p_term = np.dot(self.kp, k_prime)\n\n        # delta_error = quaternion_error - self.last_error\n        w = transformations.angular_velocity_from_quaternions(quaternion_error, self.last_error, dt)\n        d_term = self.kd * w\n\n        output = p_term + d_term\n        # Save last values\n        self.last_error = quaternion_error\n        self.last_time = now\n        return output\n\nclass PID:\n    def __init__(self, Kp, Ki=None, Kd=None, dynamic_pid=False, max_gain_multiplier=10.0):\n        # Proportional gain\n        self.Kp = np.array(Kp)\n        self.Ki = np.zeros_like(Kp)\n        self.Kd = np.zeros_like(Kp)\n        # Integral gain\n        if Ki is not None:\n            self.Ki = np.array(Ki)\n        # Derivative gain\n        if Kd is not None:\n            self.Kd = np.array(Kd)\n        self.set_windup(np.ones_like(self.Kp))\n        # Reset\n        self.reset()\n        self.scale_gains = dynamic_pid\n        self.max_gain_multiplier = max_gain_multiplier\n\n    def reset(self):\n        self.last_time = rospy.get_rostime()\n        self.last_error = np.zeros_like(self.Kp)\n        self.integral = np.zeros_like(self.Kp)\n\n    def set_gains(self, Kp=None, Ki=None, Kd=None):\n        if Kp is not None:\n            self.Kp = np.array(Kp)\n        if Ki is not None:\n            self.Ki = np.array(Ki)\n        if Kd is not None:\n            self.Kd = np.array(Kd)\n\n    def set_windup(self, windup):\n        self.i_min = -np.array(windup)\n        self.i_max = np.array(windup)\n\n    def update(self, error, dt=None):\n        # CAUTION: naive scaling of the Kp parameter based on the error\n        # The main idea, the smaller the error the higher the gain\n        if self.scale_gains:\n            kp = np.zeros_like(self.Kp)\n            kd = np.zeros_like(self.Kd)\n\n            for i in range(len(error)):\n                # from position_error < 0.01m increase scale error\n                factor = 1 - np.tanh(100 * error[i])\n                kp[i] = np.interp(factor, [0.0, 1.0], [self.Kp[i], self.Kp[i] * self.max_gain_multiplier])\n                kd[i] = np.interp(factor, [0.0, 1.0], [self.Kd[i], self.Kd[i] * self.max_gain_multiplier])\n\n            kd = self.Kd\n            ki = self.Ki\n        else:\n            kp = self.Kp\n            kd = self.Kd\n            ki = self.Ki\n\n        now = rospy.get_rostime()\n        if dt is None:\n            dt = now - self.last_time\n        delta_error = error - self.last_error\n        # Compute terms\n        self.integral += error * dt\n        p_term = kp * error\n        i_term = ki * self.integral\n        i_term = np.maximum(self.i_min, np.minimum(i_term, self.i_max))\n        \n        # First delta error is huge since it was initialized at zero first, avoid considering\n        if not np.allclose(self.last_error, np.zeros_like(self.last_error)):\n            d_term = kd * delta_error / dt\n        else:\n            d_term = kd * np.zeros_like(delta_error) / dt\n\n        output = p_term + i_term + d_term\n        # Save last values\n        self.last_error = np.array(error)\n        self.last_time = now\n        return output\n\n\nclass TextColors:\n    \"\"\"\n    The C{TextColors} class is used as alternative to the C{rospy} logger. It's useful to\n    print messages when C{roscore} is not running.\n    \"\"\"\n    HEADER = '\\033[95m'\n    OKBLUE = '\\033[94m'\n    OKGREEN = '\\033[92m'\n    WARNING = '\\033[93m'\n    FAIL = '\\033[91m'\n    ENDC = '\\033[0m'\n    log_level = rospy.INFO\n\n    def disable(self):\n        \"\"\"\n        Resets the coloring.\n        \"\"\"\n        self.HEADER = ''\n        self.OKBLUE = ''\n        self.OKGREEN = ''\n        self.WARNING = ''\n        self.FAIL = ''\n        self.ENDC = ''\n\n    def blue(self, msg):\n        \"\"\"\n        Prints a B{blue} color message\n        @type  msg: string\n        @param msg: the message to be printed.\n        \"\"\"\n        print((self.OKBLUE + msg + self.ENDC))\n\n    def debug(self, msg):\n        \"\"\"\n        Prints a B{green} color message\n        @type  msg: string\n        @param msg: the message to be printed.\n        \"\"\"\n        print((self.OKGREEN + msg + self.ENDC))\n\n    def error(self, msg):\n        \"\"\"\n        Prints a B{red} color message\n        @type  msg: string\n        @param msg: the message to be printed.\n        \"\"\"\n        print((self.FAIL + msg + self.ENDC))\n\n    def ok(self, msg):\n        \"\"\"\n        Prints a B{green} color message\n        @type  msg: string\n        @param msg: the message to be printed.\n        \"\"\"\n        print((self.OKGREEN + msg + self.ENDC))\n\n    def warning(self, msg):\n        \"\"\"\n        Prints a B{yellow} color message\n        @type  msg: string\n        @param msg: the message to be printed.\n        \"\"\"\n        print((self.WARNING + msg + self.ENDC))\n\n    def logdebug(self, msg):\n        \"\"\"\n        Prints message with the word 'Debug' in green at the begging.\n        Alternative to C{rospy.logdebug}.\n        @type  msg: string\n        @param msg: the message to be printed.\n        \"\"\"\n        if self.log_level <= rospy.DEBUG:\n            print((self.OKGREEN + 'Debug ' + self.ENDC + str(msg)))\n\n    def loginfo(self, msg):\n        \"\"\"\n        Prints message with the word 'INFO' begging.\n        Alternative to C{rospy.loginfo}.\n        @type  msg: string\n        @param msg: the message to be printed.\n        \"\"\"\n        if self.log_level <= rospy.INFO:\n            print(('INFO ' + str(msg)))\n\n    def logwarn(self, msg):\n        \"\"\"\n        Prints message with the word 'Warning' in yellow at the begging.\n        Alternative to C{rospy.logwarn}.\n        @type  msg: string\n        @param msg: the message to be printed.\n        \"\"\"\n        if self.log_level <= rospy.WARN:\n            print((self.WARNING + 'Warning ' + self.ENDC + str(msg)))\n\n    def logerr(self, msg):\n        \"\"\"\n        Prints message with the word 'Error' in red at the begging.\n        Alternative to C{rospy.logerr}.\n        @type  msg: string\n        @param msg: the message to be printed.\n        \"\"\"\n        if self.log_level <= rospy.ERROR:\n            print((self.FAIL + 'Error ' + self.ENDC + str(msg)))\n\n    def logfatal(self, msg):\n        \"\"\"\n        Prints message with the word 'Fatal' in red at the begging.\n        Alternative to C{rospy.logfatal}.\n        @type  msg: string\n        @param msg: the message to be printed.\n        \"\"\"\n        if self.log_level <= rospy.FATAL:\n            print((self.FAIL + 'Fatal ' + self.ENDC + str(msg)))\n\n    def set_log_level(self, level):\n        \"\"\"\n        Sets the log level. Possible values are:\n          - DEBUG:  1\n          - INFO:   2\n          - WARN:   4\n          - ERROR:  8\n          - FATAL:  16\n        @type  level: int\n        @param level: the new log level\n        \"\"\"\n        self.log_level = level\n\n\n## Helper Functions ##\ndef assert_shape(variable, name, shape):\n    \"\"\"\n    Asserts the shape of an np.array\n    @type  variable: Object\n    @param variable: variable to be asserted\n    @type  name: string\n    @param name: variable name\n    @type  shape: tuple\n    @param ttype: expected shape of the np.array\n    \"\"\"\n    assert variable.shape == shape, '%s must have a shape %r: %r' % (name, shape, variable.shape)\n\n\ndef assert_type(variable, name, ttype):\n    \"\"\"\n    Asserts the type of a variable with a given name\n    @type  variable: Object\n    @param variable: variable to be asserted\n    @type  name: string\n    @param name: variable name\n    @type  ttype: Type\n    @param ttype: expected variable type\n    \"\"\"\n    assert type(variable) is ttype,  '%s must be of type %r: %r' % (name, ttype, type(variable))\n\n\ndef db_error_msg(name, logger=TextColors()):\n    \"\"\"\n    Prints out an error message appending the given database name.\n    @type  name: string\n    @param name: database name\n    @type  logger: Object\n    @param logger: Logger instance. When used in ROS, the recommended C{logger=rospy}.\n    \"\"\"\n    msg = 'Database %s not found. Please generate it. [rosrun denso_openrave generate_databases.py]' % name\n    logger.logerr(msg)\n\n\ndef clean_cos(value):\n    \"\"\"\n    Limits the a value between the range C{[-1, 1]}\n    @type value: float\n    @param value: The input value\n    @rtype: float\n    @return: The limited value in the range C{[-1, 1]}\n    \"\"\"\n    return min(1, max(value, -1))\n\n\ndef has_keys(data, keys):\n    \"\"\"\n    Checks whether a dictionary has all the given keys.\n    @type   data: dict\n    @param  data: Parameter name\n    @type   keys: list\n    @param  keys: list containing the expected keys to be found in the dict.\n    @rtype: bool\n    @return: True if all the keys are found in the dict, false otherwise.\n    \"\"\"\n    if not isinstance(data, dict):\n        return False\n    has_all = True\n    for key in keys:\n        if key not in data:\n            has_all = False\n            break\n    return has_all\n\n\ndef raise_not_implemented():\n    \"\"\"\n    Raises a NotImplementedError exception\n    \"\"\"\n    raise NotImplementedError()\n\n\ndef topic_exist(topic):\n    published_topics = rospy.get_published_topics()\n    for pt in published_topics:\n        if topic == pt[0] :\n            return True\n    return False\n\ndef read_key(echo=False):\n    \"\"\"\n    Reads a key from the keyboard\n    @type   echo: bool, optional\n    @param  echo: if set, will show the input key in the console.\n    @rtype: str\n    @return: The limited value in the range C{[-1, 1]}\n    \"\"\"\n    if not echo:\n        os.system(\"stty -echo\")\n    key = sys.stdin.read(1)\n    if not echo:\n        os.system(\"stty echo\")\n    return key.lower()\n\ndef resolve_parameter(value, default_value):\n    if value:\n        return value\n    else:\n        return default_value\n\ndef read_parameter(name, default):\n    \"\"\"\n    Get a parameter from the ROS parameter server. If it's not found, a\n    warn is printed.\n    @type  name: string\n    @param name: Parameter name\n    @type  default: Object\n    @param default: Default value for the parameter. The type should be\n    the same as the one expected for the parameter.\n    @rtype: any\n    @return: The resulting parameter\n    \"\"\"\n    if rospy.is_shutdown():\n        logger = TextColors()\n        logger.logwarn('roscore not found, parameter [%s] using default: %s' % (name, default))\n    else:\n        if not rospy.has_param(name):\n            rospy.logwarn('Parameter [%s] not found, using default: %s' % (name, default))\n        return rospy.get_param(name, default)\n    return default\n\n\ndef read_parameter_err(name):\n    \"\"\"\n    Get a parameter from the ROS parameter server. If it's not found, a\n    error is printed.\n    @type name: string\n    @param name: Parameter name\n    @rtype: has_param, param\n    @return: (has_param) True if succeeded, false otherwise. The\n    parameter is None if C{has_param=False}.\n    \"\"\"\n    if rospy.is_shutdown():\n        logger = TextColors()\n        logger.logerr('roscore not found')\n        has_param = False\n    else:\n        has_param = True\n        if not rospy.has_param(name):\n            rospy.logerr(\"Parameter [%s] not found\" % (name))\n            has_param = False\n    return has_param, rospy.get_param(name, None)\n\n\ndef read_parameter_fatal(name):\n    \"\"\"\n    Get a parameter from the ROS parameter server. If it's not found, an\n    exception will be raised.\n    @type name: string\n    @param name: Parameter name\n    @rtype: any\n    @return: The resulting parameter\n    \"\"\"\n    if rospy.is_shutdown():\n        logger = TextColors()\n        logger.logfatal('roscore not found')\n        raise Exception('Required parameter {0} not found'.format(name))\n    else:\n        if not rospy.has_param(name):\n            rospy.logfatal(\"Parameter [%s] not found\" % (name))\n            raise Exception('Required parameter {0} not found'.format(name))\n    return rospy.get_param(name, None)\n\n\ndef solve_namespace(namespace=None):\n    \"\"\"\n    Appends neccessary slashes required for a proper ROS namespace.\n    @type namespace: string\n    @param namespace: namespace to be fixed.\n    @rtype: string\n    @return: Proper ROS namespace.\n    \"\"\"\n    if namespace is None or len(namespace) == 0:\n        namespace = rospy.get_namespace()\n    elif len(namespace) == 1:\n        if namespace != '/':\n            namespace = '/' + namespace + '/'\n    else:\n        if namespace[0] != '/':\n            namespace = '/' + namespace\n        if namespace[-1] != '/':\n            namespace += '/'\n    return namespace\n\n\ndef sorted_joint_state_msg(msg, joint_names):\n    \"\"\"\n    Returns a sorted C{sensor_msgs/JointState} for the given joint names\n    @type  msg: sensor_msgs/JointState\n    @param msg: The input message\n    @type  joint_names: list\n    @param joint_names: The sorted joint names\n    @rtype: sensor_msgs/JointState\n    @return: The C{JointState} message with the fields in the order given by joint names\n    \"\"\"\n    valid_names = set(joint_names).intersection(set(msg.name))\n    valid_position = len(msg.name) == len(msg.position)\n    valid_velocity = len(msg.name) == len(msg.velocity)\n    valid_effort = len(msg.name) == len(msg.effort)\n    num_joints = len(valid_names)\n    retmsg = JointState()\n    retmsg.header = copy.deepcopy(msg.header)\n    for name in joint_names:\n        if name not in valid_names:\n            continue\n        idx = msg.name.index(name)\n        retmsg.name.append(name)\n        if valid_position:\n            retmsg.position.append(msg.position[idx])\n        if valid_velocity:\n            retmsg.velocity.append(msg.velocity[idx])\n        if valid_effort:\n            retmsg.effort.append(msg.effort[idx])\n    return retmsg\n\n\ndef unique(data):\n    \"\"\"\n    Finds the unique elements of an array. B{row-wise} and\n    returns the sorted unique elements of an array.\n    @type  data: np.array\n    @param data: Input array.\n    @rtype: np.array\n    @return: The sorted unique array.\n    \"\"\"\n    order = np.lexsort(data.T)\n    data = data[order]\n    diff = np.diff(data, axis=0)\n    ui = np.ones(len(data), 'bool')\n    ui[1:] = (diff != 0).any(axis=1)\n    return data[ui]\n\n\ndef wait_for(predicate, timeout=5.0):\n    start_time = time.time()\n    while not predicate():\n        now = time.time()\n        if (now - start_time) > timeout:\n            return False\n        time.sleep(0.001)\n    return True\n"
  },
  {
    "path": "ur_control/test/test_quaternion_functions.py",
    "content": "import numpy as np\nimport unittest\n\nimport transformations_bk as tr\nfrom ur_control.math_utils import (\n    orientation_error_as_rotation_vector,\n    quaternions_orientation_error,\n    quaternion_normalize,\n    quaternion_conjugate,\n    quaternion_inverse,\n    quaternion_multiply,\n    quaternion_slerp,\n    quaternion_rotate_vector,\n    diff_quaternion,\n    random_quaternion,\n    random_rotation_matrix,\n    rotation_matrix_from_quaternion,\n    quaternion_from_axis_angle,\n    quaternion_from_ortho6,\n    axis_angle_from_quaternion,\n    ortho6_from_axis_angle,\n    ortho6_from_quaternion,\n    rotation_matrix_from_ortho6,\n)\n\n\nclass TestQuaternionFunctions(unittest.TestCase):\n    def setUp(self):\n        self.quat_target = random_quaternion()\n        self.quat_source = random_quaternion()\n        self.axis_angle = axis_angle_from_quaternion(self.quat_source)\n        self.ortho6 = ortho6_from_axis_angle(self.axis_angle)\n\n    def test_orientation_error_as_rotation_vector(self):\n        result = orientation_error_as_rotation_vector(self.quat_target, self.quat_source)\n        self.assertIsInstance(result, np.ndarray)\n        self.assertEqual(result.shape, (3,))\n\n    def test_quaternions_orientation_error(self):\n        result = quaternions_orientation_error(self.quat_target, self.quat_source)\n        self.assertIsInstance(result, np.ndarray)\n        self.assertEqual(result.shape, (4,))\n\n    def test_quaternion_normalize(self):\n        q = np.array([1.0, 2.0, 3.0, 4.0])\n        result = quaternion_normalize(q)\n        self.assertIsInstance(result, np.ndarray)\n        self.assertEqual(result.shape, (4,))\n        self.assertAlmostEqual(np.linalg.norm(result), 1.0)\n\n    def test_quaternion_conjugate(self):\n        result = quaternion_conjugate(self.quat_target)\n        self.assertIsInstance(result, np.ndarray)\n        self.assertEqual(result.shape, (4,))\n        self.assertTrue(np.allclose(tr.quaternion_conjugate(self.quat_target), result))\n\n    def test_quaternion_inverse(self):\n        result = quaternion_inverse(self.quat_target)\n        self.assertIsInstance(result, np.ndarray)\n        tr_result = tr.quaternion_inverse(self.quat_target)\n        self.assertTrue(np.allclose(tr_result, result), msg=f\"expected {tr_result} result {result}\")\n\n    def test_quaternion_multiply(self):\n        result = quaternion_multiply(self.quat_target, self.quat_source)\n        self.assertIsInstance(result, np.ndarray)\n        self.assertEqual(result.shape, (4,))\n        tr_result = tr.quaternion_multiply(self.quat_target, self.quat_source)\n        self.assertTrue(np.allclose(tr_result, result), msg=f\"expected {tr_result} result {result}\")\n\n    def test_quaternion_slerp(self):\n        result = quaternion_slerp(self.quat_target, self.quat_source, 0.5)\n        self.assertIsInstance(result, np.ndarray)\n        tr_result = tr.quaternion_slerp(self.quat_target, self.quat_source, fraction=0.5)\n        self.assertTrue(np.allclose(tr_result, result), msg=f\"expected {tr_result} result {result}\")\n\n    def test_quaternion_rotate_vector(self):\n        vector = self.axis_angle\n        result = quaternion_rotate_vector(self.quat_target, vector)\n        self.assertIsInstance(result, np.ndarray)\n        self.assertEqual(result.shape, (3,))\n        tr_result = tr.quaternion_rotate_vector(self.quat_target, vector)\n        self.assertTrue(np.allclose(tr_result, result), msg=f\"expected {tr_result} result {result}\")\n\n    def test_diff_quaternion(self):\n        result = diff_quaternion(self.quat_target, self.quat_source)\n        self.assertIsInstance(result, np.ndarray)\n        self.assertEqual(result.shape, (4,))\n        tr_result = tr.diff_quaternion(self.quat_target, self.quat_source)\n        self.assertTrue(np.allclose(tr_result, result), msg=f\"expected {tr_result} result {result}\")\n\n    def test_random_quaternion(self):\n        result = random_quaternion()\n        self.assertIsInstance(result, np.ndarray)\n        self.assertEqual(result.shape, (4,))\n\n    def test_random_rotation_matrix(self):\n        result = random_rotation_matrix()\n        self.assertIsInstance(result, np.ndarray)\n        self.assertEqual(result.shape, (4, 4))\n\n    def test_rotation_matrix_from_quaternion(self):\n        q = random_quaternion()\n        result = rotation_matrix_from_quaternion(q)\n        self.assertIsInstance(result, np.ndarray)\n        self.assertEqual(result.shape, (4, 4))\n        tr_result = tr.quaternion_matrix(q)\n        self.assertTrue(np.allclose(tr_result, result), msg=f\"expected {tr_result} result {result}\")\n\n    def test_quaternion_from_axis_angle(self):\n        result = quaternion_from_axis_angle(self.axis_angle)\n        self.assertIsInstance(result, np.ndarray)\n        self.assertEqual(result.shape, (4,))\n        tr_result = tr.quaternion_from_axis_angle(self.axis_angle)\n        self.assertTrue(np.allclose(tr_result, result), msg=f\"expected {tr_result} result {result}\")\n\n    def test_quaternion_from_ortho6(self):\n        result = quaternion_from_ortho6(self.ortho6)\n        self.assertIsInstance(result, np.ndarray)\n        self.assertEqual(result.shape, (4,))\n        tr_result = tr.quaternion_from_ortho6(self.ortho6)\n        # ABS because the quaternion may be flipped\n        self.assertTrue(np.allclose(np.abs(tr_result), np.abs(result)), msg=f\"expected {tr_result} result {result}\")\n\n    def test_axis_angle_from_quaternion(self):\n        result = axis_angle_from_quaternion(self.quat_target)\n        self.assertIsInstance(result, np.ndarray)\n        self.assertEqual(result.shape, (3,))\n        tr_result = tr.axis_angle_from_quaternion(self.quat_target)\n        self.assertTrue(np.allclose(tr_result, result, atol=1e-4), msg=f\"expected {tr_result} result {result}\")\n\n    def test_ortho6_from_axis_angle(self):\n        result = ortho6_from_axis_angle(self.axis_angle)\n        self.assertIsInstance(result, np.ndarray)\n        self.assertEqual(result.shape, (6,))\n        tr_result = tr.ortho6_from_axis_angle(self.axis_angle)\n        self.assertTrue(np.allclose(tr_result, result), msg=f\"expected {tr_result} result {result}\")\n\n    def test_ortho6_from_quaternion(self):\n        result = ortho6_from_quaternion(self.quat_target)\n        self.assertIsInstance(result, np.ndarray)\n        self.assertEqual(result.shape, (6,))\n        tr_result = tr.ortho6_from_quaternion(self.quat_target)\n        self.assertTrue(np.allclose(tr_result, result), msg=f\"expected {tr_result} result {result}\")\n\n    def test_rotation_matrix_from_ortho6(self):\n        result = rotation_matrix_from_ortho6(self.ortho6)\n        self.assertIsInstance(result, np.ndarray)\n        self.assertEqual(result.shape, (4, 4))\n        tr_result = tr.rotation_matrix_from_ortho6(self.ortho6)\n        self.assertTrue(np.allclose(tr_result, result), msg=f\"expected {tr_result} result {result}\")\n\n\nif __name__ == '__main__':\n    unittest.main()\n"
  },
  {
    "path": "ur_control/test/transformations_bk.py",
    "content": "# -*- coding: utf-8 -*-\n# transformations.py\n\n# Copyright (c) 2006, Christoph Gohlke\n# Copyright (c) 2006-2009, The Regents of the University of California\n# All rights reserved.\n#\n# Redistribution and use in source and binary forms, with or without\n# modification, are permitted provided that the following conditions are met:\n#\n# * Redistributions of source code must retain the above copyright\n#   notice, this list of conditions and the following disclaimer.\n# * Redistributions in binary form must reproduce the above copyright\n#   notice, this list of conditions and the following disclaimer in the\n#   documentation and/or other materials provided with the distribution.\n# * Neither the name of the copyright holders nor the names of any\n#   contributors may be used to endorse or promote products derived\n#   from this software without specific prior written permission.\n#\n# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n# ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n# POSSIBILITY OF SUCH DAMAGE.\n\n\"\"\"Homogeneous Transformation Matrices and Quaternions.\n\nA library for calculating 4x4 matrices for translating, rotating, reflecting,\nscaling, shearing, projecting, orthogonalizing, and superimposing arrays of\n3D homogeneous coordinates as well as for converting between rotation matrices,\nEuler angles, and quaternions. Also includes an Arcball control object and\nfunctions to decompose transformation matrices.\n\n:Authors:\n  `Christoph Gohlke <http://www.lfd.uci.edu/~gohlke/>`__,\n  Laboratory for Fluorescence Dynamics, University of California, Irvine\n\n:Version: 20090418\n\nRequirements\n------------\n\n* `Python 2.6 <http://www.python.org>`__\n* `Numpy 1.3 <http://numpy.scipy.org>`__\n* `transformations.c 20090418 <http://www.lfd.uci.edu/~gohlke/>`__\n  (optional implementation of some functions in C)\n\nNotes\n-----\n\nMatrices (M) can be inverted using numpy.linalg.inv(M), concatenated using\nnumpy.dot(M0, M1), or used to transform homogeneous coordinates (v) using\nnumpy.dot(M, v) for shape (4, \\*) \"point of arrays\", respectively\nnumpy.dot(v, M.T) for shape (\\*, 4) \"array of points\".\n\nCalculations are carried out with numpy.float64 precision.\n\nThis Python implementation is not optimized for speed.\n\nVector, point, quaternion, and matrix function arguments are expected to be\n\"array like\", i.e. tuple, list, or numpy arrays.\n\nReturn types are numpy arrays unless specified otherwise.\n\nAngles are in radians unless specified otherwise.\n\nQuaternions ix+jy+kz+w are represented as [x, y, z, w].\n\nUse the transpose of transformation matrices for OpenGL glMultMatrixd().\n\nA triple of Euler angles can be applied/interpreted in 24 ways, which can\nbe specified using a 4 character string or encoded 4-tuple:\n\n  *Axes 4-string*: e.g. 'sxyz' or 'ryxy'\n\n  - first character : rotations are applied to 's'tatic or 'r'otating frame\n  - remaining characters : successive rotation axis 'x', 'y', or 'z'\n\n  *Axes 4-tuple*: e.g. (0, 0, 0, 0) or (1, 1, 1, 1)\n\n  - inner axis: code of axis ('x':0, 'y':1, 'z':2) of rightmost matrix.\n  - parity : even (0) if inner axis 'x' is followed by 'y', 'y' is followed\n    by 'z', or 'z' is followed by 'x'. Otherwise odd (1).\n  - repetition : first and last axis are same (1) or different (0).\n  - frame : rotations are applied to static (0) or rotating (1) frame.\n\nReferences\n----------\n\n(1)  Matrices and transformations. Ronald Goldman.\n     In \"Graphics Gems I\", pp 472-475. Morgan Kaufmann, 1990.\n(2)  More matrices and transformations: shear and pseudo-perspective.\n     Ronald Goldman. In \"Graphics Gems II\", pp 320-323. Morgan Kaufmann, 1991.\n(3)  Decomposing a matrix into simple transformations. Spencer Thomas.\n     In \"Graphics Gems II\", pp 320-323. Morgan Kaufmann, 1991.\n(4)  Recovering the data from the transformation matrix. Ronald Goldman.\n     In \"Graphics Gems II\", pp 324-331. Morgan Kaufmann, 1991.\n(5)  Euler angle conversion. Ken Shoemake.\n     In \"Graphics Gems IV\", pp 222-229. Morgan Kaufmann, 1994.\n(6)  Arcball rotation control. Ken Shoemake.\n     In \"Graphics Gems IV\", pp 175-192. Morgan Kaufmann, 1994.\n(7)  Representing attitude: Euler angles, unit quaternions, and rotation\n     vectors. James Diebel. 2006.\n(8)  A discussion of the solution for the best rotation to relate two sets\n     of vectors. W Kabsch. Acta Cryst. 1978. A34, 827-828.\n(9)  Closed-form solution of absolute orientation using unit quaternions.\n     BKP Horn. J Opt Soc Am A. 1987. 4(4), 629-642.\n(10) Quaternions. Ken Shoemake.\n     http://www.sfu.ca/~jwa3/cmpt461/files/quatut.pdf\n(11) From quaternion to matrix and back. JMP van Waveren. 2005.\n     http://www.intel.com/cd/ids/developer/asmo-na/eng/293748.htm\n(12) Uniform random rotations. Ken Shoemake.\n     In \"Graphics Gems III\", pp 124-132. Morgan Kaufmann, 1992.\n\n\nExamples\n--------\n\n>>> alpha, beta, gamma = 0.123, -1.234, 2.345\n>>> origin, xaxis, yaxis, zaxis = (0, 0, 0), (1, 0, 0), (0, 1, 0), (0, 0, 1)\n>>> I = identity_matrix()\n>>> Rx = rotation_matrix(alpha, xaxis)\n>>> Ry = rotation_matrix(beta, yaxis)\n>>> Rz = rotation_matrix(gamma, zaxis)\n>>> R = concatenate_matrices(Rx, Ry, Rz)\n>>> euler = euler_from_matrix(R, 'rxyz')\n>>> numpy.allclose([alpha, beta, gamma], euler)\nTrue\n>>> Re = euler_matrix(alpha, beta, gamma, 'rxyz')\n>>> is_same_transform(R, Re)\nTrue\n>>> al, be, ga = euler_from_matrix(Re, 'rxyz')\n>>> is_same_transform(Re, euler_matrix(al, be, ga, 'rxyz'))\nTrue\n>>> qx = quaternion_about_axis(alpha, xaxis)\n>>> qy = quaternion_about_axis(beta, yaxis)\n>>> qz = quaternion_about_axis(gamma, zaxis)\n>>> q = quaternion_multiply(qx, qy)\n>>> q = quaternion_multiply(q, qz)\n>>> Rq = quaternion_matrix(q)\n>>> is_same_transform(R, Rq)\nTrue\n>>> S = scale_matrix(1.23, origin)\n>>> T = translation_matrix((1, 2, 3))\n>>> Z = shear_matrix(beta, xaxis, origin, zaxis)\n>>> R = random_rotation_matrix(numpy.random.rand(3))\n>>> M = concatenate_matrices(T, R, Z, S)\n>>> scale, shear, angles, trans, persp = decompose_matrix(M)\n>>> numpy.allclose(scale, 1.23)\nTrue\n>>> numpy.allclose(trans, (1, 2, 3))\nTrue\n>>> numpy.allclose(shear, (0, math.tan(beta), 0))\nTrue\n>>> is_same_transform(R, euler_matrix(axes='sxyz', *angles))\nTrue\n>>> M1 = compose_matrix(scale, shear, angles, trans, persp)\n>>> is_same_transform(M, M1)\nTrue\n\n\"\"\"\n\n\nimport warnings\nimport math\n\nimport numpy\nfrom pyquaternion import Quaternion\n# Documentation in HTML format can be generated with Epydoc\n__docformat__ = \"restructuredtext en\"\n\n\ndef identity_matrix():\n    \"\"\"Return 4x4 identity/unit matrix.\n\n    >>> I = identity_matrix()\n    >>> numpy.allclose(I, numpy.dot(I, I))\n    True\n    >>> numpy.sum(I), numpy.trace(I)\n    (4.0, 4.0)\n    >>> numpy.allclose(I, numpy.identity(4, dtype=numpy.float64))\n    True\n\n    \"\"\"\n    return numpy.identity(4, dtype=numpy.float64)\n\n\ndef translation_matrix(direction):\n    \"\"\"Return matrix to translate by direction vector.\n\n    >>> v = numpy.random.random(3) - 0.5\n    >>> numpy.allclose(v, translation_matrix(v)[:3, 3])\n    True\n\n    \"\"\"\n    M = numpy.identity(4)\n    M[:3, 3] = direction[:3]\n    return M\n\n\ndef translation_from_matrix(matrix):\n    \"\"\"Return translation vector from translation matrix.\n\n    >>> v0 = numpy.random.random(3) - 0.5\n    >>> v1 = translation_from_matrix(translation_matrix(v0))\n    >>> numpy.allclose(v0, v1)\n    True\n\n    \"\"\"\n    return numpy.array(matrix, copy=False)[:3, 3].copy()\n\n\ndef reflection_matrix(point, normal):\n    \"\"\"Return matrix to mirror at plane defined by point and normal vector.\n\n    >>> v0 = numpy.random.random(4) - 0.5\n    >>> v0[3] = 1.0\n    >>> v1 = numpy.random.random(3) - 0.5\n    >>> R = reflection_matrix(v0, v1)\n    >>> numpy.allclose(2., numpy.trace(R))\n    True\n    >>> numpy.allclose(v0, numpy.dot(R, v0))\n    True\n    >>> v2 = v0.copy()\n    >>> v2[:3] += v1\n    >>> v3 = v0.copy()\n    >>> v2[:3] -= v1\n    >>> numpy.allclose(v2, numpy.dot(R, v3))\n    True\n\n    \"\"\"\n    normal = unit_vector(normal[:3])\n    M = numpy.identity(4)\n    M[:3, :3] -= 2.0 * numpy.outer(normal, normal)\n    M[:3, 3] = (2.0 * numpy.dot(point[:3], normal)) * normal\n    return M\n\n\ndef reflection_from_matrix(matrix):\n    \"\"\"Return mirror plane point and normal vector from reflection matrix.\n\n    >>> v0 = numpy.random.random(3) - 0.5\n    >>> v1 = numpy.random.random(3) - 0.5\n    >>> M0 = reflection_matrix(v0, v1)\n    >>> point, normal = reflection_from_matrix(M0)\n    >>> M1 = reflection_matrix(point, normal)\n    >>> is_same_transform(M0, M1)\n    True\n\n    \"\"\"\n    M = numpy.array(matrix, dtype=numpy.float64, copy=False)\n    # normal: unit eigenvector corresponding to eigenvalue -1\n    l, V = numpy.linalg.eig(M[:3, :3])\n    i = numpy.where(abs(numpy.real(l) + 1.0) < 1e-8)[0]\n    if not len(i):\n        raise ValueError(\"no unit eigenvector corresponding to eigenvalue -1\")\n    normal = numpy.real(V[:, i[0]]).squeeze()\n    # point: any unit eigenvector corresponding to eigenvalue 1\n    l, V = numpy.linalg.eig(M)\n    i = numpy.where(abs(numpy.real(l) - 1.0) < 1e-8)[0]\n    if not len(i):\n        raise ValueError(\"no unit eigenvector corresponding to eigenvalue 1\")\n    point = numpy.real(V[:, i[-1]]).squeeze()\n    point /= point[3]\n    return point, normal\n\n\ndef rotation_matrix(angle, direction, point=None):\n    \"\"\"Return matrix to rotate about axis defined by point and direction.\n\n    >>> angle = (random.random() - 0.5) * (2*math.pi)\n    >>> direc = numpy.random.random(3) - 0.5\n    >>> point = numpy.random.random(3) - 0.5\n    >>> R0 = rotation_matrix(angle, direc, point)\n    >>> R1 = rotation_matrix(angle-2*math.pi, direc, point)\n    >>> is_same_transform(R0, R1)\n    True\n    >>> R0 = rotation_matrix(angle, direc, point)\n    >>> R1 = rotation_matrix(-angle, -direc, point)\n    >>> is_same_transform(R0, R1)\n    True\n    >>> I = numpy.identity(4, numpy.float64)\n    >>> numpy.allclose(I, rotation_matrix(math.pi*2, direc))\n    True\n    >>> numpy.allclose(2., numpy.trace(rotation_matrix(math.pi/2,\n    ...                                                direc, point)))\n    True\n\n    \"\"\"\n    sina = math.sin(angle)\n    cosa = math.cos(angle)\n    direction = unit_vector(direction[:3])\n    # rotation matrix around unit vector\n    R = numpy.array(((cosa, 0.0,  0.0),\n                     (0.0,  cosa, 0.0),\n                     (0.0,  0.0,  cosa)), dtype=numpy.float64)\n    R += numpy.outer(direction, direction) * (1.0 - cosa)\n    direction *= sina\n    R += numpy.array(((0.0,         -direction[2],  direction[1]),\n                      (direction[2], 0.0,          -direction[0]),\n                      (-direction[1], direction[0],  0.0)),\n                     dtype=numpy.float64)\n    M = numpy.identity(4)\n    M[:3, :3] = R\n    if point is not None:\n        # rotation not around origin\n        point = numpy.array(point[:3], dtype=numpy.float64, copy=False)\n        M[:3, 3] = point - numpy.dot(R, point)\n    return M\n\n\ndef rotation_from_matrix(matrix):\n    \"\"\"Return rotation angle and axis from rotation matrix.\n\n    >>> angle = (random.random() - 0.5) * (2*math.pi)\n    >>> direc = numpy.random.random(3) - 0.5\n    >>> point = numpy.random.random(3) - 0.5\n    >>> R0 = rotation_matrix(angle, direc, point)\n    >>> angle, direc, point = rotation_from_matrix(R0)\n    >>> R1 = rotation_matrix(angle, direc, point)\n    >>> is_same_transform(R0, R1)\n    True\n\n    \"\"\"\n    R = numpy.array(matrix, dtype=numpy.float64, copy=False)\n    R33 = R[:3, :3]\n    # direction: unit eigenvector of R33 corresponding to eigenvalue of 1\n    l, W = numpy.linalg.eig(R33.T)\n    i = numpy.where(abs(numpy.real(l) - 1.0) < 1e-8)[0]\n    if not len(i):\n        raise ValueError(\"no unit eigenvector corresponding to eigenvalue 1\")\n    direction = numpy.real(W[:, i[-1]]).squeeze()\n    # point: unit eigenvector of R33 corresponding to eigenvalue of 1\n    l, Q = numpy.linalg.eig(R)\n    i = numpy.where(abs(numpy.real(l) - 1.0) < 1e-8)[0]\n    if not len(i):\n        raise ValueError(\"no unit eigenvector corresponding to eigenvalue 1\")\n    point = numpy.real(Q[:, i[-1]]).squeeze()\n    point /= point[3]\n    # rotation angle depending on direction\n    cosa = (numpy.trace(R33) - 1.0) / 2.0\n    if abs(direction[2]) > 1e-8:\n        sina = (R[1, 0] + (cosa-1.0)*direction[0]*direction[1]) / direction[2]\n    elif abs(direction[1]) > 1e-8:\n        sina = (R[0, 2] + (cosa-1.0)*direction[0]*direction[2]) / direction[1]\n    else:\n        sina = (R[2, 1] + (cosa-1.0)*direction[1]*direction[2]) / direction[0]\n    angle = math.atan2(sina, cosa)\n    return angle, direction, point\n\n\ndef scale_matrix(factor, origin=None, direction=None):\n    \"\"\"Return matrix to scale by factor around origin in direction.\n\n    Use factor -1 for point symmetry.\n\n    >>> v = (numpy.random.rand(4, 5) - 0.5) * 20.0\n    >>> v[3] = 1.0\n    >>> S = scale_matrix(-1.234)\n    >>> numpy.allclose(numpy.dot(S, v)[:3], -1.234*v[:3])\n    True\n    >>> factor = random.random() * 10 - 5\n    >>> origin = numpy.random.random(3) - 0.5\n    >>> direct = numpy.random.random(3) - 0.5\n    >>> S = scale_matrix(factor, origin)\n    >>> S = scale_matrix(factor, origin, direct)\n\n    \"\"\"\n    if direction is None:\n        # uniform scaling\n        M = numpy.array(((factor, 0.0,    0.0,    0.0),\n                         (0.0,    factor, 0.0,    0.0),\n                         (0.0,    0.0,    factor, 0.0),\n                         (0.0,    0.0,    0.0,    1.0)), dtype=numpy.float64)\n        if origin is not None:\n            M[:3, 3] = origin[:3]\n            M[:3, 3] *= 1.0 - factor\n    else:\n        # nonuniform scaling\n        direction = unit_vector(direction[:3])\n        factor = 1.0 - factor\n        M = numpy.identity(4)\n        M[:3, :3] -= factor * numpy.outer(direction, direction)\n        if origin is not None:\n            M[:3, 3] = (factor * numpy.dot(origin[:3], direction)) * direction\n    return M\n\n\ndef scale_from_matrix(matrix):\n    \"\"\"Return scaling factor, origin and direction from scaling matrix.\n\n    >>> factor = random.random() * 10 - 5\n    >>> origin = numpy.random.random(3) - 0.5\n    >>> direct = numpy.random.random(3) - 0.5\n    >>> S0 = scale_matrix(factor, origin)\n    >>> factor, origin, direction = scale_from_matrix(S0)\n    >>> S1 = scale_matrix(factor, origin, direction)\n    >>> is_same_transform(S0, S1)\n    True\n    >>> S0 = scale_matrix(factor, origin, direct)\n    >>> factor, origin, direction = scale_from_matrix(S0)\n    >>> S1 = scale_matrix(factor, origin, direction)\n    >>> is_same_transform(S0, S1)\n    True\n\n    \"\"\"\n    M = numpy.array(matrix, dtype=numpy.float64, copy=False)\n    M33 = M[:3, :3]\n    factor = numpy.trace(M33) - 2.0\n    try:\n        # direction: unit eigenvector corresponding to eigenvalue factor\n        l, V = numpy.linalg.eig(M33)\n        i = numpy.where(abs(numpy.real(l) - factor) < 1e-8)[0][0]\n        direction = numpy.real(V[:, i]).squeeze()\n        direction /= vector_norm(direction)\n    except IndexError:\n        # uniform scaling\n        factor = (factor + 2.0) / 3.0\n        direction = None\n    # origin: any eigenvector corresponding to eigenvalue 1\n    l, V = numpy.linalg.eig(M)\n    i = numpy.where(abs(numpy.real(l) - 1.0) < 1e-8)[0]\n    if not len(i):\n        raise ValueError(\"no eigenvector corresponding to eigenvalue 1\")\n    origin = numpy.real(V[:, i[-1]]).squeeze()\n    origin /= origin[3]\n    return factor, origin, direction\n\n\ndef projection_matrix(point, normal, direction=None,\n                      perspective=None, pseudo=False):\n    \"\"\"Return matrix to project onto plane defined by point and normal.\n\n    Using either perspective point, projection direction, or none of both.\n\n    If pseudo is True, perspective projections will preserve relative depth\n    such that Perspective = dot(Orthogonal, PseudoPerspective).\n\n    >>> P = projection_matrix((0, 0, 0), (1, 0, 0))\n    >>> numpy.allclose(P[1:, 1:], numpy.identity(4)[1:, 1:])\n    True\n    >>> point = numpy.random.random(3) - 0.5\n    >>> normal = numpy.random.random(3) - 0.5\n    >>> direct = numpy.random.random(3) - 0.5\n    >>> persp = numpy.random.random(3) - 0.5\n    >>> P0 = projection_matrix(point, normal)\n    >>> P1 = projection_matrix(point, normal, direction=direct)\n    >>> P2 = projection_matrix(point, normal, perspective=persp)\n    >>> P3 = projection_matrix(point, normal, perspective=persp, pseudo=True)\n    >>> is_same_transform(P2, numpy.dot(P0, P3))\n    True\n    >>> P = projection_matrix((3, 0, 0), (1, 1, 0), (1, 0, 0))\n    >>> v0 = (numpy.random.rand(4, 5) - 0.5) * 20.0\n    >>> v0[3] = 1.0\n    >>> v1 = numpy.dot(P, v0)\n    >>> numpy.allclose(v1[1], v0[1])\n    True\n    >>> numpy.allclose(v1[0], 3.0-v1[1])\n    True\n\n    \"\"\"\n    M = numpy.identity(4)\n    point = numpy.array(point[:3], dtype=numpy.float64, copy=False)\n    normal = unit_vector(normal[:3])\n    if perspective is not None:\n        # perspective projection\n        perspective = numpy.array(perspective[:3], dtype=numpy.float64,\n                                  copy=False)\n        M[0, 0] = M[1, 1] = M[2, 2] = numpy.dot(perspective-point, normal)\n        M[:3, :3] -= numpy.outer(perspective, normal)\n        if pseudo:\n            # preserve relative depth\n            M[:3, :3] -= numpy.outer(normal, normal)\n            M[:3, 3] = numpy.dot(point, normal) * (perspective+normal)\n        else:\n            M[:3, 3] = numpy.dot(point, normal) * perspective\n        M[3, :3] = -normal\n        M[3, 3] = numpy.dot(perspective, normal)\n    elif direction is not None:\n        # parallel projection\n        direction = numpy.array(direction[:3], dtype=numpy.float64, copy=False)\n        scale = numpy.dot(direction, normal)\n        M[:3, :3] -= numpy.outer(direction, normal) / scale\n        M[:3, 3] = direction * (numpy.dot(point, normal) / scale)\n    else:\n        # orthogonal projection\n        M[:3, :3] -= numpy.outer(normal, normal)\n        M[:3, 3] = numpy.dot(point, normal) * normal\n    return M\n\n\ndef projection_from_matrix(matrix, pseudo=False):\n    \"\"\"Return projection plane and perspective point from projection matrix.\n\n    Return values are same as arguments for projection_matrix function:\n    point, normal, direction, perspective, and pseudo.\n\n    >>> point = numpy.random.random(3) - 0.5\n    >>> normal = numpy.random.random(3) - 0.5\n    >>> direct = numpy.random.random(3) - 0.5\n    >>> persp = numpy.random.random(3) - 0.5\n    >>> P0 = projection_matrix(point, normal)\n    >>> result = projection_from_matrix(P0)\n    >>> P1 = projection_matrix(*result)\n    >>> is_same_transform(P0, P1)\n    True\n    >>> P0 = projection_matrix(point, normal, direct)\n    >>> result = projection_from_matrix(P0)\n    >>> P1 = projection_matrix(*result)\n    >>> is_same_transform(P0, P1)\n    True\n    >>> P0 = projection_matrix(point, normal, perspective=persp, pseudo=False)\n    >>> result = projection_from_matrix(P0, pseudo=False)\n    >>> P1 = projection_matrix(*result)\n    >>> is_same_transform(P0, P1)\n    True\n    >>> P0 = projection_matrix(point, normal, perspective=persp, pseudo=True)\n    >>> result = projection_from_matrix(P0, pseudo=True)\n    >>> P1 = projection_matrix(*result)\n    >>> is_same_transform(P0, P1)\n    True\n\n    \"\"\"\n    M = numpy.array(matrix, dtype=numpy.float64, copy=False)\n    M33 = M[:3, :3]\n    l, V = numpy.linalg.eig(M)\n    i = numpy.where(abs(numpy.real(l) - 1.0) < 1e-8)[0]\n    if not pseudo and len(i):\n        # point: any eigenvector corresponding to eigenvalue 1\n        point = numpy.real(V[:, i[-1]]).squeeze()\n        point /= point[3]\n        # direction: unit eigenvector corresponding to eigenvalue 0\n        l, V = numpy.linalg.eig(M33)\n        i = numpy.where(abs(numpy.real(l)) < 1e-8)[0]\n        if not len(i):\n            raise ValueError(\"no eigenvector corresponding to eigenvalue 0\")\n        direction = numpy.real(V[:, i[0]]).squeeze()\n        direction /= vector_norm(direction)\n        # normal: unit eigenvector of M33.T corresponding to eigenvalue 0\n        l, V = numpy.linalg.eig(M33.T)\n        i = numpy.where(abs(numpy.real(l)) < 1e-8)[0]\n        if len(i):\n            # parallel projection\n            normal = numpy.real(V[:, i[0]]).squeeze()\n            normal /= vector_norm(normal)\n            return point, normal, direction, None, False\n        else:\n            # orthogonal projection, where normal equals direction vector\n            return point, direction, None, None, False\n    else:\n        # perspective projection\n        i = numpy.where(abs(numpy.real(l)) > 1e-8)[0]\n        if not len(i):\n            raise ValueError(\n                \"no eigenvector not corresponding to eigenvalue 0\")\n        point = numpy.real(V[:, i[-1]]).squeeze()\n        point /= point[3]\n        normal = - M[3, :3]\n        perspective = M[:3, 3] / numpy.dot(point[:3], normal)\n        if pseudo:\n            perspective -= normal\n        return point, normal, None, perspective, pseudo\n\n\ndef clip_matrix(left, right, bottom, top, near, far, perspective=False):\n    \"\"\"Return matrix to obtain normalized device coordinates from frustrum.\n\n    The frustrum bounds are axis-aligned along x (left, right),\n    y (bottom, top) and z (near, far).\n\n    Normalized device coordinates are in range [-1, 1] if coordinates are\n    inside the frustrum.\n\n    If perspective is True the frustrum is a truncated pyramid with the\n    perspective point at origin and direction along z axis, otherwise an\n    orthographic canonical view volume (a box).\n\n    Homogeneous coordinates transformed by the perspective clip matrix\n    need to be dehomogenized (devided by w coordinate).\n\n    >>> frustrum = numpy.random.rand(6)\n    >>> frustrum[1] += frustrum[0]\n    >>> frustrum[3] += frustrum[2]\n    >>> frustrum[5] += frustrum[4]\n    >>> M = clip_matrix(*frustrum, perspective=False)\n    >>> numpy.dot(M, [frustrum[0], frustrum[2], frustrum[4], 1.0])\n    array([-1., -1., -1.,  1.])\n    >>> numpy.dot(M, [frustrum[1], frustrum[3], frustrum[5], 1.0])\n    array([ 1.,  1.,  1.,  1.])\n    >>> M = clip_matrix(*frustrum, perspective=True)\n    >>> v = numpy.dot(M, [frustrum[0], frustrum[2], frustrum[4], 1.0])\n    >>> v / v[3]\n    array([-1., -1., -1.,  1.])\n    >>> v = numpy.dot(M, [frustrum[1], frustrum[3], frustrum[4], 1.0])\n    >>> v / v[3]\n    array([ 1.,  1., -1.,  1.])\n\n    \"\"\"\n    if left >= right or bottom >= top or near >= far:\n        raise ValueError(\"invalid frustrum\")\n    if perspective:\n        if near <= _EPS:\n            raise ValueError(\"invalid frustrum: near <= 0\")\n        t = 2.0 * near\n        M = ((-t/(right-left), 0.0, (right+left)/(right-left), 0.0),\n             (0.0, -t/(top-bottom), (top+bottom)/(top-bottom), 0.0),\n             (0.0, 0.0, -(far+near)/(far-near), t*far/(far-near)),\n             (0.0, 0.0, -1.0, 0.0))\n    else:\n        M = ((2.0/(right-left), 0.0, 0.0, (right+left)/(left-right)),\n             (0.0, 2.0/(top-bottom), 0.0, (top+bottom)/(bottom-top)),\n             (0.0, 0.0, 2.0/(far-near), (far+near)/(near-far)),\n             (0.0, 0.0, 0.0, 1.0))\n    return numpy.array(M, dtype=numpy.float64)\n\n\ndef shear_matrix(angle, direction, point, normal):\n    \"\"\"Return matrix to shear by angle along direction vector on shear plane.\n\n    The shear plane is defined by a point and normal vector. The direction\n    vector must be orthogonal to the plane's normal vector.\n\n    A point P is transformed by the shear matrix into P\" such that\n    the vector P-P\" is parallel to the direction vector and its extent is\n    given by the angle of P-P'-P\", where P' is the orthogonal projection\n    of P onto the shear plane.\n\n    >>> angle = (random.random() - 0.5) * 4*math.pi\n    >>> direct = numpy.random.random(3) - 0.5\n    >>> point = numpy.random.random(3) - 0.5\n    >>> normal = numpy.cross(direct, numpy.random.random(3))\n    >>> S = shear_matrix(angle, direct, point, normal)\n    >>> numpy.allclose(1.0, numpy.linalg.det(S))\n    True\n\n    \"\"\"\n    normal = unit_vector(normal[:3])\n    direction = unit_vector(direction[:3])\n    if abs(numpy.dot(normal, direction)) > 1e-6:\n        raise ValueError(\"direction and normal vectors are not orthogonal\")\n    angle = math.tan(angle)\n    M = numpy.identity(4)\n    M[:3, :3] += angle * numpy.outer(direction, normal)\n    M[:3, 3] = -angle * numpy.dot(point[:3], normal) * direction\n    return M\n\n\ndef shear_from_matrix(matrix):\n    \"\"\"Return shear angle, direction and plane from shear matrix.\n\n    >>> angle = (random.random() - 0.5) * 4*math.pi\n    >>> direct = numpy.random.random(3) - 0.5\n    >>> point = numpy.random.random(3) - 0.5\n    >>> normal = numpy.cross(direct, numpy.random.random(3))\n    >>> S0 = shear_matrix(angle, direct, point, normal)\n    >>> angle, direct, point, normal = shear_from_matrix(S0)\n    >>> S1 = shear_matrix(angle, direct, point, normal)\n    >>> is_same_transform(S0, S1)\n    True\n\n    \"\"\"\n    M = numpy.array(matrix, dtype=numpy.float64, copy=False)\n    M33 = M[:3, :3]\n    # normal: cross independent eigenvectors corresponding to the eigenvalue 1\n    l, V = numpy.linalg.eig(M33)\n    i = numpy.where(abs(numpy.real(l) - 1.0) < 1e-4)[0]\n    if len(i) < 2:\n        raise ValueError(\"No two linear independent eigenvectors found %s\" % l)\n    V = numpy.real(V[:, i]).squeeze().T\n    lenorm = -1.0\n    for i0, i1 in ((0, 1), (0, 2), (1, 2)):\n        n = numpy.cross(V[i0], V[i1])\n        l = vector_norm(n)\n        if l > lenorm:\n            lenorm = l\n            normal = n\n    normal /= lenorm\n    # direction and angle\n    direction = numpy.dot(M33 - numpy.identity(3), normal)\n    angle = vector_norm(direction)\n    direction /= angle\n    angle = math.atan(angle)\n    # point: eigenvector corresponding to eigenvalue 1\n    l, V = numpy.linalg.eig(M)\n    i = numpy.where(abs(numpy.real(l) - 1.0) < 1e-8)[0]\n    if not len(i):\n        raise ValueError(\"no eigenvector corresponding to eigenvalue 1\")\n    point = numpy.real(V[:, i[-1]]).squeeze()\n    point /= point[3]\n    return angle, direction, point, normal\n\n\ndef decompose_matrix(matrix):\n    \"\"\"Return sequence of transformations from transformation matrix.\n\n    matrix : array_like\n        Non-degenerative homogeneous transformation matrix\n\n    Return tuple of:\n        scale : vector of 3 scaling factors\n        shear : list of shear factors for x-y, x-z, y-z axes\n        angles : list of Euler angles about static x, y, z axes\n        translate : translation vector along x, y, z axes\n        perspective : perspective partition of matrix\n\n    Raise ValueError if matrix is of wrong type or degenerative.\n\n    >>> T0 = translation_matrix((1, 2, 3))\n    >>> scale, shear, angles, trans, persp = decompose_matrix(T0)\n    >>> T1 = translation_matrix(trans)\n    >>> numpy.allclose(T0, T1)\n    True\n    >>> S = scale_matrix(0.123)\n    >>> scale, shear, angles, trans, persp = decompose_matrix(S)\n    >>> scale[0]\n    0.123\n    >>> R0 = euler_matrix(1, 2, 3)\n    >>> scale, shear, angles, trans, persp = decompose_matrix(R0)\n    >>> R1 = euler_matrix(*angles)\n    >>> numpy.allclose(R0, R1)\n    True\n\n    \"\"\"\n    M = numpy.array(matrix, dtype=numpy.float64, copy=True).T\n    if abs(M[3, 3]) < _EPS:\n        raise ValueError(\"M[3, 3] is zero\")\n    M /= M[3, 3]\n    P = M.copy()\n    P[:, 3] = 0, 0, 0, 1\n    if not numpy.linalg.det(P):\n        raise ValueError(\"Matrix is singular\")\n\n    scale = numpy.zeros((3, ), dtype=numpy.float64)\n    shear = [0, 0, 0]\n    angles = [0, 0, 0]\n\n    if any(abs(M[:3, 3]) > _EPS):\n        perspective = numpy.dot(M[:, 3], numpy.linalg.inv(P.T))\n        M[:, 3] = 0, 0, 0, 1\n    else:\n        perspective = numpy.array((0, 0, 0, 1), dtype=numpy.float64)\n\n    translate = M[3, :3].copy()\n    M[3, :3] = 0\n\n    row = M[:3, :3].copy()\n    scale[0] = vector_norm(row[0])\n    row[0] /= scale[0]\n    shear[0] = numpy.dot(row[0], row[1])\n    row[1] -= row[0] * shear[0]\n    scale[1] = vector_norm(row[1])\n    row[1] /= scale[1]\n    shear[0] /= scale[1]\n    shear[1] = numpy.dot(row[0], row[2])\n    row[2] -= row[0] * shear[1]\n    shear[2] = numpy.dot(row[1], row[2])\n    row[2] -= row[1] * shear[2]\n    scale[2] = vector_norm(row[2])\n    row[2] /= scale[2]\n    shear[1:] /= scale[2]\n\n    if numpy.dot(row[0], numpy.cross(row[1], row[2])) < 0:\n        scale *= -1\n        row *= -1\n\n    angles[1] = math.asin(-row[0, 2])\n    if math.cos(angles[1]):\n        angles[0] = math.atan2(row[1, 2], row[2, 2])\n        angles[2] = math.atan2(row[0, 1], row[0, 0])\n    else:\n        # angles[0] = math.atan2(row[1, 0], row[1, 1])\n        angles[0] = math.atan2(-row[2, 1], row[1, 1])\n        angles[2] = 0.0\n\n    return scale, shear, angles, translate, perspective\n\n\ndef compose_matrix(scale=None, shear=None, angles=None, translate=None,\n                   perspective=None):\n    \"\"\"Return transformation matrix from sequence of transformations.\n\n    This is the inverse of the decompose_matrix function.\n\n    Sequence of transformations:\n        scale : vector of 3 scaling factors\n        shear : list of shear factors for x-y, x-z, y-z axes\n        angles : list of Euler angles about static x, y, z axes\n        translate : translation vector along x, y, z axes\n        perspective : perspective partition of matrix\n\n    >>> scale = numpy.random.random(3) - 0.5\n    >>> shear = numpy.random.random(3) - 0.5\n    >>> angles = (numpy.random.random(3) - 0.5) * (2*math.pi)\n    >>> trans = numpy.random.random(3) - 0.5\n    >>> persp = numpy.random.random(4) - 0.5\n    >>> M0 = compose_matrix(scale, shear, angles, trans, persp)\n    >>> result = decompose_matrix(M0)\n    >>> M1 = compose_matrix(*result)\n    >>> is_same_transform(M0, M1)\n    True\n\n    \"\"\"\n    M = numpy.identity(4)\n    if perspective is not None:\n        P = numpy.identity(4)\n        P[3, :] = perspective[:4]\n        M = numpy.dot(M, P)\n    if translate is not None:\n        T = numpy.identity(4)\n        T[:3, 3] = translate[:3]\n        M = numpy.dot(M, T)\n    if angles is not None:\n        R = euler_matrix(angles[0], angles[1], angles[2], 'sxyz')\n        M = numpy.dot(M, R)\n    if shear is not None:\n        Z = numpy.identity(4)\n        Z[1, 2] = shear[2]\n        Z[0, 2] = shear[1]\n        Z[0, 1] = shear[0]\n        M = numpy.dot(M, Z)\n    if scale is not None:\n        S = numpy.identity(4)\n        S[0, 0] = scale[0]\n        S[1, 1] = scale[1]\n        S[2, 2] = scale[2]\n        M = numpy.dot(M, S)\n    M /= M[3, 3]\n    return M\n\n\ndef orthogonalization_matrix(lengths, angles):\n    \"\"\"Return orthogonalization matrix for crystallographic cell coordinates.\n\n    Angles are expected in degrees.\n\n    The de-orthogonalization matrix is the inverse.\n\n    >>> O = orthogonalization_matrix((10., 10., 10.), (90., 90., 90.))\n    >>> numpy.allclose(O[:3, :3], numpy.identity(3, float) * 10)\n    True\n    >>> O = orthogonalization_matrix([9.8, 12.0, 15.5], [87.2, 80.7, 69.7])\n    >>> numpy.allclose(numpy.sum(O), 43.063229)\n    True\n\n    \"\"\"\n    a, b, c = lengths\n    angles = numpy.radians(angles)\n    sina, sinb, _ = numpy.sin(angles)\n    cosa, cosb, cosg = numpy.cos(angles)\n    co = (cosa * cosb - cosg) / (sina * sinb)\n    return numpy.array((\n        (a*sinb*math.sqrt(1.0-co*co),  0.0,    0.0, 0.0),\n        (-a*sinb*co,                    b*sina, 0.0, 0.0),\n        (a*cosb,                       b*cosa, c,   0.0),\n        (0.0,                          0.0,    0.0, 1.0)),\n        dtype=numpy.float64)\n\n\ndef superimposition_matrix(v0, v1, scaling=False, usesvd=True):\n    \"\"\"Return matrix to transform given vector set into second vector set.\n\n    v0 and v1 are shape (3, \\*) or (4, \\*) arrays of at least 3 vectors.\n\n    If usesvd is True, the weighted sum of squared deviations (RMSD) is\n    minimized according to the algorithm by W. Kabsch [8]. Otherwise the\n    quaternion based algorithm by B. Horn [9] is used (slower when using\n    this Python implementation).\n\n    The returned matrix performs rotation, translation and uniform scaling\n    (if specified).\n\n    >>> v0 = numpy.random.rand(3, 10)\n    >>> M = superimposition_matrix(v0, v0)\n    >>> numpy.allclose(M, numpy.identity(4))\n    True\n    >>> R = random_rotation_matrix(numpy.random.random(3))\n    >>> v0 = ((1,0,0), (0,1,0), (0,0,1), (1,1,1))\n    >>> v1 = numpy.dot(R, v0)\n    >>> M = superimposition_matrix(v0, v1)\n    >>> numpy.allclose(v1, numpy.dot(M, v0))\n    True\n    >>> v0 = (numpy.random.rand(4, 100) - 0.5) * 20.0\n    >>> v0[3] = 1.0\n    >>> v1 = numpy.dot(R, v0)\n    >>> M = superimposition_matrix(v0, v1)\n    >>> numpy.allclose(v1, numpy.dot(M, v0))\n    True\n    >>> S = scale_matrix(random.random())\n    >>> T = translation_matrix(numpy.random.random(3)-0.5)\n    >>> M = concatenate_matrices(T, R, S)\n    >>> v1 = numpy.dot(M, v0)\n    >>> v0[:3] += numpy.random.normal(0.0, 1e-9, 300).reshape(3, -1)\n    >>> M = superimposition_matrix(v0, v1, scaling=True)\n    >>> numpy.allclose(v1, numpy.dot(M, v0))\n    True\n    >>> M = superimposition_matrix(v0, v1, scaling=True, usesvd=False)\n    >>> numpy.allclose(v1, numpy.dot(M, v0))\n    True\n    >>> v = numpy.empty((4, 100, 3), dtype=numpy.float64)\n    >>> v[:, :, 0] = v0\n    >>> M = superimposition_matrix(v0, v1, scaling=True, usesvd=False)\n    >>> numpy.allclose(v1, numpy.dot(M, v[:, :, 0]))\n    True\n\n    \"\"\"\n    v0 = numpy.array(v0, dtype=numpy.float64, copy=False)[:3]\n    v1 = numpy.array(v1, dtype=numpy.float64, copy=False)[:3]\n\n    if v0.shape != v1.shape or v0.shape[1] < 3:\n        raise ValueError(\"Vector sets are of wrong shape or type.\")\n\n    # move centroids to origin\n    t0 = numpy.mean(v0, axis=1)\n    t1 = numpy.mean(v1, axis=1)\n    v0 = v0 - t0.reshape(3, 1)\n    v1 = v1 - t1.reshape(3, 1)\n\n    if usesvd:\n        # Singular Value Decomposition of covariance matrix\n        u, s, vh = numpy.linalg.svd(numpy.dot(v1, v0.T))\n        # rotation matrix from SVD orthonormal bases\n        R = numpy.dot(u, vh)\n        if numpy.linalg.det(R) < 0.0:\n            # R does not constitute right handed system\n            R -= numpy.outer(u[:, 2], vh[2, :]*2.0)\n            s[-1] *= -1.0\n        # homogeneous transformation matrix\n        M = numpy.identity(4)\n        M[:3, :3] = R\n    else:\n        # compute symmetric matrix N\n        xx, yy, zz = numpy.sum(v0 * v1, axis=1)\n        xy, yz, zx = numpy.sum(v0 * numpy.roll(v1, -1, axis=0), axis=1)\n        xz, yx, zy = numpy.sum(v0 * numpy.roll(v1, -2, axis=0), axis=1)\n        N = ((xx+yy+zz, yz-zy,    zx-xz,    xy-yx),\n             (yz-zy,    xx-yy-zz, xy+yx,    zx+xz),\n             (zx-xz,    xy+yx,   -xx+yy-zz, yz+zy),\n             (xy-yx,    zx+xz,    yz+zy,   -xx-yy+zz))\n        # quaternion: eigenvector corresponding to most positive eigenvalue\n        l, V = numpy.linalg.eig(N)\n        q = V[:, numpy.argmax(l)]\n        q /= vector_norm(q)  # unit quaternion\n        q = numpy.roll(q, -1)  # move w component to end\n        # homogeneous transformation matrix\n        M = quaternion_matrix(q)\n\n    # scale: ratio of rms deviations from centroid\n    if scaling:\n        v0 *= v0\n        v1 *= v1\n        M[:3, :3] *= math.sqrt(numpy.sum(v1) / numpy.sum(v0))\n\n    # translation\n    M[:3, 3] = t1\n    T = numpy.identity(4)\n    T[:3, 3] = -t0\n    M = numpy.dot(M, T)\n    return M\n\n\ndef euler_matrix(ai, aj, ak, axes='sxyz'):\n    \"\"\"Return homogeneous rotation matrix from Euler angles and axis sequence.\n\n    ai, aj, ak : Euler's roll, pitch and yaw angles\n    axes : One of 24 axis sequences as string or encoded tuple\n\n    >>> R = euler_matrix(1, 2, 3, 'syxz')\n    >>> numpy.allclose(numpy.sum(R[0]), -1.34786452)\n    True\n    >>> R = euler_matrix(1, 2, 3, (0, 1, 0, 1))\n    >>> numpy.allclose(numpy.sum(R[0]), -0.383436184)\n    True\n    >>> ai, aj, ak = (4.0*math.pi) * (numpy.random.random(3) - 0.5)\n    >>> for axes in _AXES2TUPLE.keys():\n    ...    R = euler_matrix(ai, aj, ak, axes)\n    >>> for axes in _TUPLE2AXES.keys():\n    ...    R = euler_matrix(ai, aj, ak, axes)\n\n    \"\"\"\n    try:\n        firstaxis, parity, repetition, frame = _AXES2TUPLE[axes]\n    except (AttributeError, KeyError):\n        _ = _TUPLE2AXES[axes]\n        firstaxis, parity, repetition, frame = axes\n\n    i = firstaxis\n    j = _NEXT_AXIS[i+parity]\n    k = _NEXT_AXIS[i-parity+1]\n\n    if frame:\n        ai, ak = ak, ai\n    if parity:\n        ai, aj, ak = -ai, -aj, -ak\n\n    si, sj, sk = math.sin(ai), math.sin(aj), math.sin(ak)\n    ci, cj, ck = math.cos(ai), math.cos(aj), math.cos(ak)\n    cc, cs = ci*ck, ci*sk\n    sc, ss = si*ck, si*sk\n\n    M = numpy.identity(4)\n    if repetition:\n        M[i, i] = cj\n        M[i, j] = sj*si\n        M[i, k] = sj*ci\n        M[j, i] = sj*sk\n        M[j, j] = -cj*ss+cc\n        M[j, k] = -cj*cs-sc\n        M[k, i] = -sj*ck\n        M[k, j] = cj*sc+cs\n        M[k, k] = cj*cc-ss\n    else:\n        M[i, i] = cj*ck\n        M[i, j] = sj*sc-cs\n        M[i, k] = sj*cc+ss\n        M[j, i] = cj*sk\n        M[j, j] = sj*ss+cc\n        M[j, k] = sj*cs-sc\n        M[k, i] = -sj\n        M[k, j] = cj*si\n        M[k, k] = cj*ci\n    return M\n\n\ndef euler_from_matrix(matrix, axes='sxyz'):\n    \"\"\"Return Euler angles from rotation matrix for specified axis sequence.\n\n    axes : One of 24 axis sequences as string or encoded tuple\n\n    Note that many Euler angle triplets can describe one matrix.\n\n    >>> R0 = euler_matrix(1, 2, 3, 'syxz')\n    >>> al, be, ga = euler_from_matrix(R0, 'syxz')\n    >>> R1 = euler_matrix(al, be, ga, 'syxz')\n    >>> numpy.allclose(R0, R1)\n    True\n    >>> angles = (4.0*math.pi) * (numpy.random.random(3) - 0.5)\n    >>> for axes in _AXES2TUPLE.keys():\n    ...    R0 = euler_matrix(axes=axes, *angles)\n    ...    R1 = euler_matrix(axes=axes, *euler_from_matrix(R0, axes))\n    ...    if not numpy.allclose(R0, R1): print axes, \"failed\"\n\n    \"\"\"\n    try:\n        firstaxis, parity, repetition, frame = _AXES2TUPLE[axes.lower()]\n    except (AttributeError, KeyError):\n        _ = _TUPLE2AXES[axes]\n        firstaxis, parity, repetition, frame = axes\n\n    i = firstaxis\n    j = _NEXT_AXIS[i+parity]\n    k = _NEXT_AXIS[i-parity+1]\n\n    M = numpy.array(matrix, dtype=numpy.float64, copy=False)[:3, :3]\n    if repetition:\n        sy = math.sqrt(M[i, j]*M[i, j] + M[i, k]*M[i, k])\n        if sy > _EPS:\n            ax = math.atan2(M[i, j],  M[i, k])\n            ay = math.atan2(sy,       M[i, i])\n            az = math.atan2(M[j, i], -M[k, i])\n        else:\n            ax = math.atan2(-M[j, k],  M[j, j])\n            ay = math.atan2(sy,       M[i, i])\n            az = 0.0\n    else:\n        cy = math.sqrt(M[i, i]*M[i, i] + M[j, i]*M[j, i])\n        if cy > _EPS:\n            ax = math.atan2(M[k, j],  M[k, k])\n            ay = math.atan2(-M[k, i],  cy)\n            az = math.atan2(M[j, i],  M[i, i])\n        else:\n            ax = math.atan2(-M[j, k],  M[j, j])\n            ay = math.atan2(-M[k, i],  cy)\n            az = 0.0\n\n    if parity:\n        ax, ay, az = -ax, -ay, -az\n    if frame:\n        ax, az = az, ax\n    return ax, ay, az\n\n\ndef euler_from_quaternion(quaternion, axes='sxyz'):\n    \"\"\"Return Euler angles from quaternion for specified axis sequence.\n\n    >>> angles = euler_from_quaternion([0.06146124, 0, 0, 0.99810947])\n    >>> numpy.allclose(angles, [0.123, 0, 0])\n    True\n\n    \"\"\"\n    return euler_from_matrix(quaternion_matrix(quaternion), axes)\n\n\ndef quaternion_normalize(v, tolerance=0.00001):\n    mag2 = sum(n * n for n in v)\n    if mag2 > tolerance:\n        mag = math.sqrt(mag2)\n        v = tuple(n / mag for n in v)\n    return numpy.array(v)\n\n\ndef quaternion_from_euler(ai, aj, ak, axes='sxyz'):\n    \"\"\"Return quaternion from Euler angles and axis sequence.\n\n    ai, aj, ak : Euler's roll, pitch and yaw angles\n    axes : One of 24 axis sequences as string or encoded tuple\n\n    >>> q = quaternion_from_euler(1, 2, 3, 'ryxz')\n    >>> numpy.allclose(q, [0.310622, -0.718287, 0.444435, 0.435953])\n    True\n\n    \"\"\"\n    try:\n        firstaxis, parity, repetition, frame = _AXES2TUPLE[axes.lower()]\n    except (AttributeError, KeyError):\n        _ = _TUPLE2AXES[axes]\n        firstaxis, parity, repetition, frame = axes\n\n    i = firstaxis\n    j = _NEXT_AXIS[i+parity]\n    k = _NEXT_AXIS[i-parity+1]\n\n    if frame:\n        ai, ak = ak, ai\n    if parity:\n        aj = -aj\n\n    ai /= 2.0\n    aj /= 2.0\n    ak /= 2.0\n    ci = math.cos(ai)\n    si = math.sin(ai)\n    cj = math.cos(aj)\n    sj = math.sin(aj)\n    ck = math.cos(ak)\n    sk = math.sin(ak)\n    cc = ci*ck\n    cs = ci*sk\n    sc = si*ck\n    ss = si*sk\n\n    quaternion = numpy.empty((4, ), dtype=numpy.float64)\n    if repetition:\n        quaternion[i] = cj*(cs + sc)\n        quaternion[j] = sj*(cc + ss)\n        quaternion[k] = sj*(cs - sc)\n        quaternion[3] = cj*(cc - ss)\n    else:\n        quaternion[i] = cj*sc - sj*cs\n        quaternion[j] = cj*ss + sj*cc\n        quaternion[k] = cj*cs - sj*sc\n        quaternion[3] = cj*cc + sj*ss\n    if parity:\n        quaternion[j] *= -1\n\n    return quaternion\n\n\ndef quaternion_about_axis(angle, axis):\n    \"\"\"Return quaternion for rotation about axis.\n\n    >>> q = quaternion_about_axis(0.123, (1, 0, 0))\n    >>> numpy.allclose(q, [0.06146124, 0, 0, 0.99810947])\n    True\n\n    \"\"\"\n    quaternion = numpy.zeros((4, ), dtype=numpy.float64)\n    quaternion[:3] = axis[:3]\n    qlen = vector_norm(quaternion)\n    if qlen > _EPS:\n        quaternion *= math.sin(angle/2.0) / qlen\n    quaternion[3] = math.cos(angle/2.0)\n    return quaternion\n\n\ndef quaternion_matrix(quaternion):\n    \"\"\"Return homogeneous rotation matrix from quaternion.\n\n    >>> R = quaternion_matrix([0.06146124, 0, 0, 0.99810947])\n    >>> numpy.allclose(R, rotation_matrix(0.123, (1, 0, 0)))\n    True\n\n    \"\"\"\n    q = numpy.array(quaternion[:4], dtype=numpy.float64, copy=True)\n    nq = numpy.dot(q, q)\n    if nq < _EPS:\n        return numpy.identity(4)\n    q *= math.sqrt(2.0 / nq)\n    q = numpy.outer(q, q)\n    return numpy.array((\n        (1.0-q[1, 1]-q[2, 2],     q[0, 1]-q[2, 3],     q[0, 2]+q[1, 3], 0.0),\n        (q[0, 1]+q[2, 3], 1.0-q[0, 0]-q[2, 2],     q[1, 2]-q[0, 3], 0.0),\n        (q[0, 2]-q[1, 3],     q[1, 2]+q[0, 3], 1.0-q[0, 0]-q[1, 1], 0.0),\n        (0.0,                 0.0,                 0.0, 1.0)\n    ), dtype=numpy.float64)\n\n\ndef quaternion_from_matrix(matrix):\n    \"\"\"Return quaternion from rotation matrix.\n\n    >>> R = rotation_matrix(0.123, (1, 2, 3))\n    >>> q = quaternion_from_matrix(R)\n    >>> numpy.allclose(q, [0.0164262, 0.0328524, 0.0492786, 0.9981095])\n    True\n\n    \"\"\"\n    q = numpy.empty((4, ), dtype=numpy.float64)\n    M = numpy.array(matrix, dtype=numpy.float64, copy=False)[:4, :4]\n    t = numpy.trace(M)\n    if t > M[3, 3]:\n        q[3] = t\n        q[2] = M[1, 0] - M[0, 1]\n        q[1] = M[0, 2] - M[2, 0]\n        q[0] = M[2, 1] - M[1, 2]\n    else:\n        i, j, k = 0, 1, 2\n        if M[1, 1] > M[0, 0]:\n            i, j, k = 1, 2, 0\n        if M[2, 2] > M[i, i]:\n            i, j, k = 2, 0, 1\n        t = M[i, i] - (M[j, j] + M[k, k]) + M[3, 3]\n        q[i] = t\n        q[j] = M[i, j] + M[j, i]\n        q[k] = M[k, i] + M[i, k]\n        q[3] = M[k, j] - M[j, k]\n    q *= 0.5 / math.sqrt(t * M[3, 3])\n    return q\n\n\ndef pose_quaternion_from_matrix(matrix):\n    \"\"\"Return translation + quaternion(x,y,z,w)\n    \"\"\"\n    if matrix.shape == (3, 4):\n        matrix = numpy.concatenate((matrix, [[0, 0, 0, 1]]), axis=0)\n\n    pose = translation_from_matrix(matrix)\n    quat = quaternion_from_matrix(matrix)\n    return numpy.concatenate((pose, quat), axis=0)\n\n\ndef quaternion_multiply(quaternion1, quaternion0):\n    \"\"\"Return multiplication of two quaternions.\n\n    >>> q = quaternion_multiply([1, -2, 3, 4], [-5, 6, 7, 8])\n    >>> numpy.allclose(q, [-44, -14, 48, 28])\n    True\n\n    \"\"\"\n    x0, y0, z0, w0 = quaternion0\n    x1, y1, z1, w1 = quaternion1\n    return numpy.array((\n        x1*w0 + y1*z0 - z1*y0 + w1*x0,\n        -x1*z0 + y1*w0 + z1*x0 + w1*y0,\n        x1*y0 - y1*x0 + z1*w0 + w1*z0,\n        -x1*x0 - y1*y0 - z1*z0 + w1*w0), dtype=numpy.float64)\n\n\ndef quaternion_conjugate(quaternion):\n    \"\"\"Return conjugate of quaternion.\n\n    >>> q0 = random_quaternion()\n    >>> q1 = quaternion_conjugate(q0)\n    >>> q1[3] == q0[3] and all(q1[:3] == -q0[:3])\n    True\n\n    \"\"\"\n    return numpy.array((-quaternion[0], -quaternion[1],\n                        -quaternion[2], quaternion[3]), dtype=numpy.float64)\n\n\ndef quaternion_inverse(quaternion):\n    \"\"\"Return inverse of quaternion.\n\n    >>> q0 = random_quaternion()\n    >>> q1 = quaternion_inverse(q0)\n    >>> numpy.allclose(quaternion_multiply(q0, q1), [0, 0, 0, 1])\n    True\n\n    \"\"\"\n    return quaternion_conjugate(quaternion) / numpy.dot(quaternion, quaternion)\n\n\ndef quaternion_slerp(quat0, quat1, fraction, spin=0, shortestpath=True):\n    \"\"\"Return spherical linear interpolation between two quaternions.\n\n    >>> q0 = random_quaternion()\n    >>> q1 = random_quaternion()\n    >>> q = quaternion_slerp(q0, q1, 0.0)\n    >>> numpy.allclose(q, q0)\n    True\n    >>> q = quaternion_slerp(q0, q1, 1.0, 1)\n    >>> numpy.allclose(q, q1)\n    True\n    >>> q = quaternion_slerp(q0, q1, 0.5)\n    >>> angle = math.acos(numpy.dot(q0, q))\n    >>> numpy.allclose(2.0, math.acos(numpy.dot(q0, q1)) / angle) or \\\n        numpy.allclose(2.0, math.acos(-numpy.dot(q0, q1)) / angle)\n    True\n\n    \"\"\"\n    q0 = unit_vector(quat0[:4])\n    q1 = unit_vector(quat1[:4])\n    if fraction == 0.0:\n        return q0\n    elif fraction == 1.0:\n        return q1\n    d = numpy.dot(q0, q1)\n    if abs(abs(d) - 1.0) < _EPS:\n        return q0\n    if shortestpath and d < 0.0:\n        # invert rotation\n        d = -d\n        q1 *= -1.0\n    angle = math.acos(d) + spin * math.pi\n    if abs(angle) < _EPS:\n        return q0\n    isin = 1.0 / math.sin(angle)\n    q0 *= math.sin((1.0 - fraction) * angle) * isin\n    q1 *= math.sin(fraction * angle) * isin\n    q0 += q1\n    return q0\n\n\ndef quaternion_rotate_vector(quaternion, vector):\n    \"\"\"\n        Return vector rotated by a given unit quaternion\n    \"\"\"\n    q_vector = numpy.append(vector, 0)\n    return quaternion_multiply(quaternion_multiply(quaternion, q_vector), quaternion_conjugate(quaternion))[:3]\n\n\ndef random_quaternion(rand=None):\n    \"\"\"Return uniform random unit quaternion.\n\n    rand: array like or None\n        Three independent random variables that are uniformly distributed\n        between 0 and 1.\n\n    >>> q = random_quaternion()\n    >>> numpy.allclose(1.0, vector_norm(q))\n    True\n    >>> q = random_quaternion(numpy.random.random(3))\n    >>> q.shape\n    (4,)\n\n    \"\"\"\n    if rand is None:\n        rand = numpy.random.rand(3)\n    else:\n        assert len(rand) == 3\n    r1 = numpy.sqrt(1.0 - rand[0])\n    r2 = numpy.sqrt(rand[0])\n    pi2 = math.pi * 2.0\n    t1 = pi2 * rand[1]\n    t2 = pi2 * rand[2]\n    return numpy.array((numpy.sin(t1)*r1,\n                        numpy.cos(t1)*r1,\n                        numpy.sin(t2)*r2,\n                        numpy.cos(t2)*r2), dtype=numpy.float64)\n\n\ndef random_rotation_matrix(rand=None):\n    \"\"\"Return uniform random rotation matrix.\n\n    rnd: array like\n        Three independent random variables that are uniformly distributed\n        between 0 and 1 for each returned quaternion.\n\n    >>> R = random_rotation_matrix()\n    >>> numpy.allclose(numpy.dot(R.T, R), numpy.identity(4))\n    True\n\n    \"\"\"\n    return quaternion_matrix(random_quaternion(rand))\n\n\nclass Arcball(object):\n    \"\"\"Virtual Trackball Control.\n\n    >>> ball = Arcball()\n    >>> ball = Arcball(initial=numpy.identity(4))\n    >>> ball.place([320, 320], 320)\n    >>> ball.down([500, 250])\n    >>> ball.drag([475, 275])\n    >>> R = ball.matrix()\n    >>> numpy.allclose(numpy.sum(R), 3.90583455)\n    True\n    >>> ball = Arcball(initial=[0, 0, 0, 1])\n    >>> ball.place([320, 320], 320)\n    >>> ball.setaxes([1,1,0], [-1, 1, 0])\n    >>> ball.setconstrain(True)\n    >>> ball.down([400, 200])\n    >>> ball.drag([200, 400])\n    >>> R = ball.matrix()\n    >>> numpy.allclose(numpy.sum(R), 0.2055924)\n    True\n    >>> ball.next()\n\n    \"\"\"\n\n    def __init__(self, initial=None):\n        \"\"\"Initialize virtual trackball control.\n\n        initial : quaternion or rotation matrix\n\n        \"\"\"\n        self._axis = None\n        self._axes = None\n        self._radius = 1.0\n        self._center = [0.0, 0.0]\n        self._vdown = numpy.array([0, 0, 1], dtype=numpy.float64)\n        self._constrain = False\n\n        if initial is None:\n            self._qdown = numpy.array([0, 0, 0, 1], dtype=numpy.float64)\n        else:\n            initial = numpy.array(initial, dtype=numpy.float64)\n            if initial.shape == (4, 4):\n                self._qdown = quaternion_from_matrix(initial)\n            elif initial.shape == (4, ):\n                initial /= vector_norm(initial)\n                self._qdown = initial\n            else:\n                raise ValueError(\"initial not a quaternion or matrix.\")\n\n        self._qnow = self._qpre = self._qdown\n\n    def place(self, center, radius):\n        \"\"\"Place Arcball, e.g. when window size changes.\n\n        center : sequence[2]\n            Window coordinates of trackball center.\n        radius : float\n            Radius of trackball in window coordinates.\n\n        \"\"\"\n        self._radius = float(radius)\n        self._center[0] = center[0]\n        self._center[1] = center[1]\n\n    def setaxes(self, *axes):\n        \"\"\"Set axes to constrain rotations.\"\"\"\n        if axes is None:\n            self._axes = None\n        else:\n            self._axes = [unit_vector(axis) for axis in axes]\n\n    def setconstrain(self, constrain):\n        \"\"\"Set state of constrain to axis mode.\"\"\"\n        self._constrain = constrain == True\n\n    def getconstrain(self):\n        \"\"\"Return state of constrain to axis mode.\"\"\"\n        return self._constrain\n\n    def down(self, point):\n        \"\"\"Set initial cursor window coordinates and pick constrain-axis.\"\"\"\n        self._vdown = arcball_map_to_sphere(point, self._center, self._radius)\n        self._qdown = self._qpre = self._qnow\n\n        if self._constrain and self._axes is not None:\n            self._axis = arcball_nearest_axis(self._vdown, self._axes)\n            self._vdown = arcball_constrain_to_axis(self._vdown, self._axis)\n        else:\n            self._axis = None\n\n    def drag(self, point):\n        \"\"\"Update current cursor window coordinates.\"\"\"\n        vnow = arcball_map_to_sphere(point, self._center, self._radius)\n\n        if self._axis is not None:\n            vnow = arcball_constrain_to_axis(vnow, self._axis)\n\n        self._qpre = self._qnow\n\n        t = numpy.cross(self._vdown, vnow)\n        if numpy.dot(t, t) < _EPS:\n            self._qnow = self._qdown\n        else:\n            q = [t[0], t[1], t[2], numpy.dot(self._vdown, vnow)]\n            self._qnow = quaternion_multiply(q, self._qdown)\n\n    def next(self, acceleration=0.0):\n        \"\"\"Continue rotation in direction of last drag.\"\"\"\n        q = quaternion_slerp(self._qpre, self._qnow, 2.0+acceleration, False)\n        self._qpre, self._qnow = self._qnow, q\n\n    def matrix(self):\n        \"\"\"Return homogeneous rotation matrix.\"\"\"\n        return quaternion_matrix(self._qnow)\n\n\ndef arcball_map_to_sphere(point, center, radius):\n    \"\"\"Return unit sphere coordinates from window coordinates.\"\"\"\n    v = numpy.array(((point[0] - center[0]) / radius,\n                     (center[1] - point[1]) / radius,\n                     0.0), dtype=numpy.float64)\n    n = v[0]*v[0] + v[1]*v[1]\n    if n > 1.0:\n        v /= math.sqrt(n)  # position outside of sphere\n    else:\n        v[2] = math.sqrt(1.0 - n)\n    return v\n\n\ndef arcball_constrain_to_axis(point, axis):\n    \"\"\"Return sphere point perpendicular to axis.\"\"\"\n    v = numpy.array(point, dtype=numpy.float64, copy=True)\n    a = numpy.array(axis, dtype=numpy.float64, copy=True)\n    v -= a * numpy.dot(a, v)  # on plane\n    n = vector_norm(v)\n    if n > _EPS:\n        if v[2] < 0.0:\n            v *= -1.0\n        v /= n\n        return v\n    if a[2] == 1.0:\n        return numpy.array([1, 0, 0], dtype=numpy.float64)\n    return unit_vector([-a[1], a[0], 0])\n\n\ndef arcball_nearest_axis(point, axes):\n    \"\"\"Return axis, which arc is nearest to point.\"\"\"\n    point = numpy.array(point, dtype=numpy.float64, copy=False)\n    nearest = None\n    mx = -1.0\n    for axis in axes:\n        t = numpy.dot(arcball_constrain_to_axis(point, axis), point)\n        if t > mx:\n            nearest = axis\n            mx = t\n    return nearest\n\n\n# epsilon for testing whether a number is close to zero\n_EPS = numpy.finfo(float).eps * 4.0\n\n# axis sequences for Euler angles\n_NEXT_AXIS = [1, 2, 0, 1]\n\n# map axes strings to/from tuples of inner axis, parity, repetition, frame\n_AXES2TUPLE = {\n    'sxyz': (0, 0, 0, 0), 'sxyx': (0, 0, 1, 0), 'sxzy': (0, 1, 0, 0),\n    'sxzx': (0, 1, 1, 0), 'syzx': (1, 0, 0, 0), 'syzy': (1, 0, 1, 0),\n    'syxz': (1, 1, 0, 0), 'syxy': (1, 1, 1, 0), 'szxy': (2, 0, 0, 0),\n    'szxz': (2, 0, 1, 0), 'szyx': (2, 1, 0, 0), 'szyz': (2, 1, 1, 0),\n    'rzyx': (0, 0, 0, 1), 'rxyx': (0, 0, 1, 1), 'ryzx': (0, 1, 0, 1),\n    'rxzx': (0, 1, 1, 1), 'rxzy': (1, 0, 0, 1), 'ryzy': (1, 0, 1, 1),\n    'rzxy': (1, 1, 0, 1), 'ryxy': (1, 1, 1, 1), 'ryxz': (2, 0, 0, 1),\n    'rzxz': (2, 0, 1, 1), 'rxyz': (2, 1, 0, 1), 'rzyz': (2, 1, 1, 1)}\n\n_TUPLE2AXES = dict((v, k) for k, v in list(_AXES2TUPLE.items()))\n\n# helper functions\n\n\ndef vector_norm(data, axis=None, out=None):\n    \"\"\"Return length, i.e. eucledian norm, of ndarray along axis.\n\n    >>> v = numpy.random.random(3)\n    >>> n = vector_norm(v)\n    >>> numpy.allclose(n, numpy.linalg.norm(v))\n    True\n    >>> v = numpy.random.rand(6, 5, 3)\n    >>> n = vector_norm(v, axis=-1)\n    >>> numpy.allclose(n, numpy.sqrt(numpy.sum(v*v, axis=2)))\n    True\n    >>> n = vector_norm(v, axis=1)\n    >>> numpy.allclose(n, numpy.sqrt(numpy.sum(v*v, axis=1)))\n    True\n    >>> v = numpy.random.rand(5, 4, 3)\n    >>> n = numpy.empty((5, 3), dtype=numpy.float64)\n    >>> vector_norm(v, axis=1, out=n)\n    >>> numpy.allclose(n, numpy.sqrt(numpy.sum(v*v, axis=1)))\n    True\n    >>> vector_norm([])\n    0.0\n    >>> vector_norm([1.0])\n    1.0\n\n    \"\"\"\n    data = numpy.array(data, dtype=numpy.float64, copy=True)\n    if out is None:\n        if data.ndim == 1:\n            return math.sqrt(numpy.dot(data, data))\n        data *= data\n        out = numpy.atleast_1d(numpy.sum(data, axis=axis))\n        numpy.sqrt(out, out)\n        return out\n    else:\n        data *= data\n        numpy.sum(data, axis=axis, out=out)\n        numpy.sqrt(out, out)\n\n\ndef unit_vector(data, axis=None, out=None):\n    \"\"\"Return ndarray normalized by length, i.e. eucledian norm, along axis.\n\n    >>> v0 = numpy.random.random(3)\n    >>> v1 = unit_vector(v0)\n    >>> numpy.allclose(v1, v0 / numpy.linalg.norm(v0))\n    True\n    >>> v0 = numpy.random.rand(5, 4, 3)\n    >>> v1 = unit_vector(v0, axis=-1)\n    >>> v2 = v0 / numpy.expand_dims(numpy.sqrt(numpy.sum(v0*v0, axis=2)), 2)\n    >>> numpy.allclose(v1, v2)\n    True\n    >>> v1 = unit_vector(v0, axis=1)\n    >>> v2 = v0 / numpy.expand_dims(numpy.sqrt(numpy.sum(v0*v0, axis=1)), 1)\n    >>> numpy.allclose(v1, v2)\n    True\n    >>> v1 = numpy.empty((5, 4, 3), dtype=numpy.float64)\n    >>> unit_vector(v0, axis=1, out=v1)\n    >>> numpy.allclose(v1, v2)\n    True\n    >>> list(unit_vector([]))\n    []\n    >>> list(unit_vector([1.0]))\n    [1.0]\n\n    \"\"\"\n    if out is None:\n        data = numpy.array(data, dtype=numpy.float64, copy=True)\n        if data.ndim == 1:\n            data /= math.sqrt(numpy.dot(data, data))\n            return data\n    else:\n        if out is not data:\n            out[:] = numpy.array(data, copy=False)\n        data = out\n    length = numpy.atleast_1d(numpy.sum(data*data, axis))\n    numpy.sqrt(length, length)\n    if axis is not None:\n        length = numpy.expand_dims(length, axis)\n    data /= length\n    if out is None:\n        return data\n\n\ndef random_vector(size):\n    \"\"\"Return array of random doubles in the half-open interval [0.0, 1.0).\n\n    >>> v = random_vector(10000)\n    >>> numpy.all(v >= 0.0) and numpy.all(v < 1.0)\n    True\n    >>> v0 = random_vector(10)\n    >>> v1 = random_vector(10)\n    >>> numpy.any(v0 == v1)\n    False\n\n    \"\"\"\n    return numpy.random.random(size)\n\n\ndef inverse_matrix(matrix):\n    \"\"\"Return inverse of square transformation matrix.\n\n    >>> M0 = random_rotation_matrix()\n    >>> M1 = inverse_matrix(M0.T)\n    >>> numpy.allclose(M1, numpy.linalg.inv(M0.T))\n    True\n    >>> for size in range(1, 7):\n    ...     M0 = numpy.random.rand(size, size)\n    ...     M1 = inverse_matrix(M0)\n    ...     if not numpy.allclose(M1, numpy.linalg.inv(M0)): print size\n\n    \"\"\"\n    return numpy.linalg.inv(matrix)\n\n\ndef concatenate_matrices(*matrices):\n    \"\"\"Return concatenation of series of transformation matrices.\n\n    >>> M = numpy.random.rand(16).reshape((4, 4)) - 0.5\n    >>> numpy.allclose(M, concatenate_matrices(M))\n    True\n    >>> numpy.allclose(numpy.dot(M, M.T), concatenate_matrices(M, M.T))\n    True\n\n    \"\"\"\n    M = numpy.identity(4)\n    for i in matrices:\n        M = numpy.dot(M, i)\n    return M\n\n\ndef is_same_transform(matrix0, matrix1):\n    \"\"\"Return True if two matrices perform same transformation.\n\n    >>> is_same_transform(numpy.identity(4), numpy.identity(4))\n    True\n    >>> is_same_transform(numpy.identity(4), random_rotation_matrix())\n    False\n\n    \"\"\"\n    matrix0 = numpy.array(matrix0, dtype=numpy.float64, copy=True)\n    matrix0 /= matrix0[3, 3]\n    matrix1 = numpy.array(matrix1, dtype=numpy.float64, copy=True)\n    matrix1 /= matrix1[3, 3]\n    return numpy.allclose(matrix0, matrix1)\n\n\ndef _import_module(module_name, warn=True, prefix='_py_', ignore='_'):\n    \"\"\"Try import all public attributes from module into global namespace.\n\n    Existing attributes with name clashes are renamed with prefix.\n    Attributes starting with underscore are ignored by default.\n\n    Return True on successful import.\n\n    \"\"\"\n    try:\n        module = __import__(module_name)\n    except ImportError:\n        if warn:\n            warnings.warn(\"Failed to import module \" + module_name)\n    else:\n        for attr in dir(module):\n            if ignore and attr.startswith(ignore):\n                continue\n            if prefix:\n                if attr in globals():\n                    globals()[prefix + attr] = globals()[attr]\n                elif warn:\n                    warnings.warn(\"No Python implementation of \" + attr)\n            globals()[attr] = getattr(module, attr)\n        return True\n\n\ndef rotate_quaternion_by_rpy(roll, pitch, yaw, q_in, rotated_frame=False):\n    \"\"\"\n    if rotated_frame == True, Apply RPY rotation in the reference frame of the quaternion.\n\n    Otherwise, Apply RPY rotation in the rotated frame (the one to which the quaternion has rotated the reference frame).\n    \"\"\"\n    q_rot = quaternion_from_euler(roll, pitch, yaw)\n\n    if rotated_frame:\n        q_rotated = quaternion_multiply(q_in, q_rot)\n    else:\n        q_rotated = quaternion_multiply(q_rot, q_in)\n\n    return q_rotated\n\n\ndef translate_pose(pose, delta, rotated_frame=False):\n    \"\"\"\n        Translate pose by a delta distance.\n        rotated_frame: \n            False, to translate directly to the frame of reference.\n            True, rotate delta and then apply translation. I.e., translate about its relative pose\n    \"\"\"\n    position = numpy.copy(pose[:3])\n    orienation = pose[3:]\n\n    if rotated_frame:\n        position += quaternion_rotate_vector(orienation, delta)\n    else:\n        position += delta\n\n    return numpy.concatenate([position, orienation])\n\n\ndef transform_pose(pose, transformation, rotated_frame=False):\n    \"\"\"\n        Apply a transformation, translation and rotation to a pose.\n        Optionally, apply the transformation relative to itself. In other words, \n\n        pose: list, initial pose in the form [x, y, z, rx, ry, rz, w]\n        transformation: list, in the form [x, y, z, r, p, y]\n        rotated_frame: boolean, apply transformation directly (in reference frame) \n                        or rotate about current orientation before applying transformation.\n                        In other words, transform relative to reference frame or relative to pose frame\n        axes: string type of axes for euler angles transformation\n    \"\"\"\n    # Apply translation\n    new_pose = translate_pose(pose, transformation[:3], rotated_frame=rotated_frame)\n\n    # Apply rotation\n    new_pose[3:] = rotate_quaternion_by_rpy(*transformation[3:], pose[3:], rotated_frame=rotated_frame)\n\n    return new_pose\n\n\ndef pose_from_angular_velocity_euler(pose, velocity, dt=1.0):\n    \"\"\"\n        Transform an action translation + euler [x, y, z, rx, ry, rz] into\n        translation(optional rotated) + quaternion [x, y, z, rx, ry, rz, w]\n        pose: list initial pose translation + quaternion\n        velocity: list aditional desired motion translation + euler\n        ee_rotation: boolean whether to return the rotated translation w.r.t\n                             the end effector\n    \"\"\"\n    _pose = numpy.copy(pose)\n    translation = _pose[:3]\n    vel = numpy.copy(velocity)\n    lin_vel = vel[:3]\n    ang_vel = vel[3:]\n\n    pose_cmd = numpy.zeros_like(pose)\n    # Translation\n    pose_cmd[:3] = translation + lin_vel*dt\n\n    # Rotation\n    new_orientation = _pose[3:] + ang_vel*dt\n\n    pose_cmd[3:] = new_orientation\n\n    return pose_cmd\n\n\ndef pose_from_angular_velocity(pose, velocity, dt=1.0, rotated_frame=False):\n    \"\"\"\n        Transform an action translation + euler [x, y, z, rx, ry, rz] into\n        translation(optional rotated) + quaternion [x, y, z, rx, ry, rz, w]\n        pose: list initial pose translation + quaternion\n        velocity: list aditional desired motion translation + euler\n        rotated_frame: boolean whether to return the rotated translation w.r.t\n                             the end effector\n    \"\"\"\n    _pose = numpy.copy(pose)\n    translation = _pose[:3]\n    orientation = Quaternion(numpy.roll(_pose[3:], 1))\n    vel = numpy.copy(velocity)\n    lin_vel = vel[:3]\n    ang_vel = vel[3:]\n\n    pose_cmd = numpy.zeros_like(pose)\n    # Translation\n    if rotated_frame:\n        lin_vel[2] *= -1\n        lin_vel = orientation.rotate(lin_vel)\n        pose_cmd[:3] = translation + lin_vel*dt\n    else:\n        pose_cmd[:3] = translation + lin_vel*dt\n\n    # Rotation\n    new_orientation = integrateUnitQuaternionEuler(orientation, ang_vel, dt)\n\n    pose_cmd[3:] = numpy.roll(new_orientation.normalised.elements, -1)\n\n    return pose_cmd\n\n\ndef integrateUnitQuaternionDMM(q, w, dt):\n    \"\"\" Integrate a unit quaterniong using the Direct Multiplicaiton Method\"\"\"\n    w_norm = numpy.linalg.norm(w)\n    if w_norm == 0:\n        return q\n    q_tmp = numpy.concatenate([numpy.sin(w_norm*dt/2)*w/w_norm, [numpy.cos(w_norm*dt/2.)]])\n    return quaternion_multiply(q_tmp, q)\n\n\ndef integrateUnitQuaternionDMM2(q, w, dt):\n    \"\"\" Integrate a unit quaterniong using the Direct Multiplicaiton Method\"\"\"\n    q_ = vector_to_pyquaternion(q)\n    w_norm = numpy.linalg.norm(w)\n    if w_norm == 0:\n        return q_\n    q_tmp = Quaternion(scalar=(numpy.cos(w_norm*dt/2.)), vector=numpy.sin(w_norm*dt/2)*w/w_norm)\n    return vector_from_pyquaternion(q_tmp * q_)\n\n\ndef integrateUnitQuaternionEuler(q, w, dt):\n    \"\"\" Integrate a unit quaterniong using Euler Method\"\"\"\n    q = Quaternion(q)\n    qw = Quaternion(scalar=0, vector=w)\n    return (q + 0.5*qw*dt*q).normalised\n\n\ndef pose_to_transform2(pose):\n    \"\"\"\n    pose: translation + quaternion[x, y, z, w]\n\n    Note: the rest of this package use convention [x, y, z, w] but pyquaternion uses [w, x, y, z]\n    so we roll the quaternion before transform\n\n    \"\"\"\n    translation = numpy.array([pose[:3]]).reshape(3, 1)\n    rotation = numpy.array(Quaternion(numpy.roll(pose[3:], 1)).rotation_matrix).reshape(3, 3)\n\n    transform = numpy.concatenate((rotation, translation), axis=1)\n    transform = numpy.concatenate((transform, [[0, 0, 0, 1]]))\n    return transform\n\n\ndef pose_to_transform(pose):\n    translation = numpy.array([pose[:3]])\n    if len(pose[3:]) == 3:\n        transform = euler_matrix(*pose[3:])\n    else:\n        transform = quaternion_matrix(pose[3:])\n    transform[:3, 3] = translation\n    return transform\n\n\ndef angular_velocity_from_quaternions(q0, q1, dt):\n    return (2.0 / dt) * quaternion_multiply(q1 - q0, quaternion_inverse(q0))[:3]\n\n\n# def angular_velocity_from_quaternions(from_Q, to_Q, dt):\n#     \"\"\"\n#     Calculates the angular velocity between two quaternions for a delta time dt\n#     \"\"\"\n#     if isinstance(from_Q, Quaternion) and isinstance(to_Q, Quaternion):\n#         return (2.0 * (to_Q-from_Q)*from_Q.inverse / dt).vector\n#     else:\n#         assert isinstance(from_Q, (list, numpy.ndarray))\n#         assert isinstance(to_Q, (list, numpy.ndarray))\n#         _from_Q = Quaternion(numpy.roll(from_Q, 1))\n#         _to_Q = Quaternion(numpy.roll(to_Q, 1))\n#         return angular_velocity_from_quaternions(_from_Q, _to_Q, dt)\n\n\ndef vector_to_pyquaternion(vector):\n    return Quaternion(numpy.roll(vector, 1))\n\n\ndef vector_from_pyquaternion(quat):\n    return numpy.roll(quat.elements, -1)\n\n\ndef pose_quaternion_to_euler(pose):\n    return numpy.concatenate([pose[:3], list(euler_from_quaternion(pose[3:], axes='rxyz'))])\n\n\ndef pose_euler_to_quat(pose):\n    return numpy.concatenate([pose[:3], list(quaternion_from_euler(*pose[3:], axes='rxyz'))])\n\n\ndef diff_quaternion(q1, q2):\n    return quaternion_multiply(q2, quaternion_inverse(q1))\n\n\ndef transform_between_poses(p1, p2):\n    p1_T = pose_to_transform(p1)\n    p2_T = pose_to_transform(p2)\n\n    p1_T_inv = inverse_matrix(p1_T)\n    return concatenate_matrices(p1_T_inv, p2_T)\n\n\ndef quaternion_from_axis_angle(axis_angle):\n    angle = numpy.linalg.norm(axis_angle)\n\n    if math.isclose(angle, 0.0):\n        return numpy.array([0, 0, 0, 1.0])\n\n    axis = axis_angle / angle\n\n    quat = numpy.zeros(4)\n    quat[3] = numpy.cos(angle / 2.0)\n    quat[:3] = axis * numpy.sin(angle / 2.0)\n    return quat\n\n\ndef axis_angle_from_quaternion(quat):\n    \"\"\"\n    Converts quaternion to axis-angle format.\n    Returns a unit vector direction scaled by its angle in radians.\n\n    Args:\n        quat (np.array): (x,y,z,w) vec4 float angles\n\n    Returns:\n        np.array: (ax,ay,az) axis-angle exponential coordinates\n    \"\"\"\n    # clip quaternion\n    if quat[3] > 1.0:\n        quat[3] = 1.0\n    elif quat[3] < -1.0:\n        quat[3] = -1.0\n\n    den = numpy.sqrt(1.0 - quat[3] * quat[3])\n    if math.isclose(den, 0.0):\n        # This is (close to) a zero degree rotation, immediately return\n        return numpy.zeros(3)\n\n    return (quat[:3] * 2.0 * math.acos(quat[3])) / den\n\n\ndef quaternion_from_ortho6(ortho6):\n    R = rotation_matrix_from_ortho6(ortho6)\n    return quaternion_from_matrix(R)\n\n\ndef ortho6_from_axis_angle(axis_angle):\n    return ortho6_from_quaternion(quaternion_from_axis_angle(axis_angle))\n\n\ndef ortho6_from_quaternion(q):\n    R = quaternion_matrix(q)\n    return R[:3, :2].T.flatten()\n\n\ndef rotation_matrix_from_ortho6(ortho6):\n    x_raw, y_raw = ortho6[0:3], ortho6[3:6]\n    x = x_raw / numpy.linalg.norm(x_raw)\n    z = numpy.cross(x, y_raw)\n    z = z / numpy.linalg.norm(z)\n    y = numpy.cross(z, x)\n\n    R = numpy.eye(4)\n    R[:3, :3] = numpy.column_stack((x, y, z))\n    return R\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/.setup_assistant",
    "content": "moveit_setup_assistant_config:\n  URDF:\n    package: ur_gripper_gazebo\n    relative_path: urdf/ur_gripper_85.xacro\n    xacro_args: joint_limit_params:='$(find ur_description)/config/ur3/joint_limits.yaml' kinematics_params:='$(find ur_description)/config/ur3/default_kinematics.yaml' physical_params:='$(find ur_description)/config/ur3/physical_parameters.yaml' visual_params:='$(find ur_description)/config/ur3/visual_parameters.yaml' transmission_hw_interface:=hardware_interface/PositionJointInterface safety_limits:=false safety_pos_margin:=0.15 safety_k_position:=20 dual_arm:=true grasp_plugin:=false\n  SRDF:\n    relative_path: config/ur_robot_gazebo.srdf\n  CONFIG:\n    author_name: Cristian Beltran\n    author_email: cristianbehe@gmail.com\n    generated_timestamp: 1637314212\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.1.3)\nproject(ur_gripper_85_moveit_config)\n\nfind_package(catkin REQUIRED)\n\ncatkin_package()\n\ninstall(DIRECTORY launch DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}\n  PATTERN \"setup_assistant.launch\" EXCLUDE)\ninstall(DIRECTORY config DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION})\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/config/cartesian_limits.yaml",
    "content": "cartesian_limits:\n  max_trans_vel: 1\n  max_trans_acc: 2.25\n  max_trans_dec: -5\n  max_rot_vel: 1.57\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/config/chomp_planning.yaml",
    "content": "planning_time_limit: 10.0\nmax_iterations: 200\nmax_iterations_after_collision_free: 5\nsmoothness_cost_weight: 0.1\nobstacle_cost_weight: 1.0\nlearning_rate: 0.01\nsmoothness_cost_velocity: 0.0\nsmoothness_cost_acceleration: 1.0\nsmoothness_cost_jerk: 0.0\nridge_factor: 0.01\nuse_pseudo_inverse: false\npseudo_inverse_ridge_factor: 1e-4\njoint_update_limit: 0.1\ncollision_clearence: 0.2\ncollision_threshold: 0.07\nuse_stochastic_descent: true\nenable_failure_recovery: true\nmax_recovery_attempts: 5"
  },
  {
    "path": "ur_gripper_85_moveit_config/config/fake_controllers.yaml",
    "content": "controller_list:\n  - name: fake_arm_controller\n    type: $(arg execution_type)\n    joints:\n      - shoulder_pan_joint\n      - shoulder_lift_joint\n      - elbow_joint\n      - wrist_1_joint\n      - wrist_2_joint\n      - wrist_3_joint\n  - name: fake_gripper_controller\n    type: $(arg execution_type)\n    joints:\n      - finger_joint\ninitial:  # Define initial robot poses.\n#  - group: arm\n#    pose: home\n\n  []"
  },
  {
    "path": "ur_gripper_85_moveit_config/config/joint_limits.yaml",
    "content": "# joint_limits.yaml allows the dynamics properties specified in the URDF to be overwritten or augmented as needed\n# Specific joint properties can be changed with the keys [max_position, min_position, max_velocity, max_acceleration]\n# Joint limits can be turned off with [has_velocity_limits, has_acceleration_limits]\njoint_limits:\n  elbow_joint:\n    has_velocity_limits: true\n    max_velocity: 3.14159265359\n    has_acceleration_limits: false\n    max_acceleration: 0\n  robotiq_85_left_finger_tip_joint:\n    has_velocity_limits: true\n    max_velocity: 100\n    has_acceleration_limits: false\n    max_acceleration: 0\n  robotiq_85_left_inner_knuckle_joint:\n    has_velocity_limits: true\n    max_velocity: 100\n    has_acceleration_limits: false\n    max_acceleration: 0\n  finger_joint:\n    has_velocity_limits: true\n    max_velocity: 0.5\n    has_acceleration_limits: false\n    max_acceleration: 0\n  robotiq_85_right_finger_tip_joint:\n    has_velocity_limits: true\n    max_velocity: 100\n    has_acceleration_limits: false\n    max_acceleration: 0\n  robotiq_85_right_inner_knuckle_joint:\n    has_velocity_limits: true\n    max_velocity: 100\n    has_acceleration_limits: false\n    max_acceleration: 0\n  robotiq_85_right_knuckle_joint:\n    has_velocity_limits: true\n    max_velocity: 100\n    has_acceleration_limits: false\n    max_acceleration: 0\n  shoulder_lift_joint:\n    has_velocity_limits: true\n    max_velocity: 3.14159265359\n    has_acceleration_limits: false\n    max_acceleration: 0\n  shoulder_pan_joint:\n    has_velocity_limits: true\n    max_velocity: 3.14159265359\n    has_acceleration_limits: false\n    max_acceleration: 0\n  wrist_1_joint:\n    has_velocity_limits: true\n    max_velocity: 6.28318530718\n    has_acceleration_limits: false\n    max_acceleration: 0\n  wrist_2_joint:\n    has_velocity_limits: true\n    max_velocity: 6.28318530718\n    has_acceleration_limits: false\n    max_acceleration: 0\n  wrist_3_joint:\n    has_velocity_limits: true\n    max_velocity: 6.28318530718\n    has_acceleration_limits: false\n    max_acceleration: 0"
  },
  {
    "path": "ur_gripper_85_moveit_config/config/kinematics.yaml",
    "content": "arm:\n  kinematics_solver: trac_ik_kinematics_plugin/TRAC_IKKinematicsPlugin\n  kinematics_solver_search_resolution: 0.005\n  kinematics_solver_timeout: 0.005"
  },
  {
    "path": "ur_gripper_85_moveit_config/config/ompl_planning.yaml",
    "content": "planner_configs:\n  SBL:\n    type: geometric::SBL\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n  EST:\n    type: geometric::EST\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0 setup()\n    goal_bias: 0.05  # When close to goal select goal, with this probability. default: 0.05\n  LBKPIECE:\n    type: geometric::LBKPIECE\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n    border_fraction: 0.9  # Fraction of time focused on boarder default: 0.9\n    min_valid_path_fraction: 0.5  # Accept partially valid moves above fraction. default: 0.5\n  BKPIECE:\n    type: geometric::BKPIECE\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n    border_fraction: 0.9  # Fraction of time focused on boarder default: 0.9\n    failed_expansion_score_factor: 0.5  # When extending motion fails, scale score by factor. default: 0.5\n    min_valid_path_fraction: 0.5  # Accept partially valid moves above fraction. default: 0.5\n  KPIECE:\n    type: geometric::KPIECE\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n    goal_bias: 0.05  # When close to goal select goal, with this probability. default: 0.05\n    border_fraction: 0.9  # Fraction of time focused on boarder default: 0.9 (0.0,1.]\n    failed_expansion_score_factor: 0.5  # When extending motion fails, scale score by factor. default: 0.5\n    min_valid_path_fraction: 0.5  # Accept partially valid moves above fraction. default: 0.5\n  RRT:\n    type: geometric::RRT\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n    goal_bias: 0.05  # When close to goal select goal, with this probability? default: 0.05\n  RRTConnect:\n    type: geometric::RRTConnect\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n  RRTstar:\n    type: geometric::RRTstar\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n    goal_bias: 0.05  # When close to goal select goal, with this probability? default: 0.05\n    delay_collision_checking: 1  # Stop collision checking as soon as C-free parent found. default 1\n  TRRT:\n    type: geometric::TRRT\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n    goal_bias: 0.05  # When close to goal select goal, with this probability? default: 0.05\n    max_states_failed: 10  # when to start increasing temp. default: 10\n    temp_change_factor: 2.0  # how much to increase or decrease temp. default: 2.0\n    min_temperature: 10e-10  # lower limit of temp change. default: 10e-10\n    init_temperature: 10e-6  # initial temperature. default: 10e-6\n    frountier_threshold: 0.0  # dist new state to nearest neighbor to disqualify as frontier. default: 0.0 set in setup()\n    frountierNodeRatio: 0.1  # 1/10, or 1 nonfrontier for every 10 frontier. default: 0.1\n    k_constant: 0.0  # value used to normalize expresssion. default: 0.0 set in setup()\n  PRM:\n    type: geometric::PRM\n    max_nearest_neighbors: 10  # use k nearest neighbors. default: 10\n  PRMstar:\n    type: geometric::PRMstar\n  FMT:\n    type: geometric::FMT\n    num_samples: 1000  # number of states that the planner should sample. default: 1000\n    radius_multiplier: 1.1  # multiplier used for the nearest neighbors search radius. default: 1.1\n    nearest_k: 1  # use Knearest strategy. default: 1\n    cache_cc: 1  # use collision checking cache. default: 1\n    heuristics: 0  # activate cost to go heuristics. default: 0\n    extended_fmt: 1  # activate the extended FMT*: adding new samples if planner does not finish successfully. default: 1\n  BFMT:\n    type: geometric::BFMT\n    num_samples: 1000  # number of states that the planner should sample. default: 1000\n    radius_multiplier: 1.0  # multiplier used for the nearest neighbors search radius. default: 1.0\n    nearest_k: 1  # use the Knearest strategy. default: 1\n    balanced: 0  # exploration strategy: balanced true expands one tree every iteration. False will select the tree with lowest maximum cost to go. default: 1\n    optimality: 1  # termination strategy: optimality true finishes when the best possible path is found. Otherwise, the algorithm will finish when the first feasible path is found. default: 1\n    heuristics: 1  # activates cost to go heuristics. default: 1\n    cache_cc: 1  # use the collision checking cache. default: 1\n    extended_fmt: 1  # Activates the extended FMT*: adding new samples if planner does not finish successfully. default: 1\n  PDST:\n    type: geometric::PDST\n  STRIDE:\n    type: geometric::STRIDE\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n    goal_bias: 0.05  # When close to goal select goal, with this probability. default: 0.05\n    use_projected_distance: 0  # whether nearest neighbors are computed based on distances in a projection of the state rather distances in the state space itself. default: 0\n    degree: 16  # desired degree of a node in the Geometric Near-neightbor Access Tree (GNAT). default: 16\n    max_degree: 18  # max degree of a node in the GNAT. default: 12\n    min_degree: 12  # min degree of a node in the GNAT. default: 12\n    max_pts_per_leaf: 6  # max points per leaf in the GNAT. default: 6\n    estimated_dimension: 0.0  # estimated dimension of the free space. default: 0.0\n    min_valid_path_fraction: 0.2  # Accept partially valid moves above fraction. default: 0.2\n  BiTRRT:\n    type: geometric::BiTRRT\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n    temp_change_factor: 0.1  # how much to increase or decrease temp. default: 0.1\n    init_temperature: 100  # initial temperature. default: 100\n    frountier_threshold: 0.0  # dist new state to nearest neighbor to disqualify as frontier. default: 0.0 set in setup()\n    frountier_node_ratio: 0.1  # 1/10, or 1 nonfrontier for every 10 frontier. default: 0.1\n    cost_threshold: 1e300  # the cost threshold. Any motion cost that is not better will not be expanded. default: inf\n  LBTRRT:\n    type: geometric::LBTRRT\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n    goal_bias: 0.05  # When close to goal select goal, with this probability. default: 0.05\n    epsilon: 0.4  # optimality approximation factor. default: 0.4\n  BiEST:\n    type: geometric::BiEST\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n  ProjEST:\n    type: geometric::ProjEST\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n    goal_bias: 0.05  # When close to goal select goal, with this probability. default: 0.05\n  LazyPRM:\n    type: geometric::LazyPRM\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n  LazyPRMstar:\n    type: geometric::LazyPRMstar\n  SPARS:\n    type: geometric::SPARS\n    stretch_factor: 3.0  # roadmap spanner stretch factor. multiplicative upper bound on path quality. It does not make sense to make this parameter more than 3. default: 3.0\n    sparse_delta_fraction: 0.25  # delta fraction for connection distance. This value represents the visibility range of sparse samples. default: 0.25\n    dense_delta_fraction: 0.001  # delta fraction for interface detection. default: 0.001\n    max_failures: 1000  # maximum consecutive failure limit. default: 1000\n  SPARStwo:\n    type: geometric::SPARStwo\n    stretch_factor: 3.0  # roadmap spanner stretch factor. multiplicative upper bound on path quality. It does not make sense to make this parameter more than 3. default: 3.0\n    sparse_delta_fraction: 0.25  # delta fraction for connection distance. This value represents the visibility range of sparse samples. default: 0.25\n    dense_delta_fraction: 0.001  # delta fraction for interface detection. default: 0.001\n    max_failures: 5000  # maximum consecutive failure limit. default: 5000\narm:\n  default_planner_config: RRT\n  planner_configs:\n    - SBL\n    - EST\n    - LBKPIECE\n    - BKPIECE\n    - KPIECE\n    - RRT\n    - RRTConnect\n    - RRTstar\n    - TRRT\n    - PRM\n    - PRMstar\n    - FMT\n    - BFMT\n    - PDST\n    - STRIDE\n    - BiTRRT\n    - LBTRRT\n    - BiEST\n    - ProjEST\n    - LazyPRM\n    - LazyPRMstar\n    - SPARS\n    - SPARStwo\ngripper:\n  planner_configs:\n    - SBL\n    - EST\n    - LBKPIECE\n    - BKPIECE\n    - KPIECE\n    - RRT\n    - RRTConnect\n    - RRTstar\n    - TRRT\n    - PRM\n    - PRMstar\n    - FMT\n    - BFMT\n    - PDST\n    - STRIDE\n    - BiTRRT\n    - LBTRRT\n    - BiEST\n    - ProjEST\n    - LazyPRM\n    - LazyPRMstar\n    - SPARS\n    - SPARStwo\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/config/ros_controllers.yaml",
    "content": "# Simulation settings for using moveit_sim_controllers\nmoveit_sim_hw_interface:\n  joint_model_group: todo_group_name\n  joint_model_group_pose: todo_state_name\n# Settings for ros_control_boilerplate control loop\ngeneric_hw_control_loop:\n  loop_hz: 300\n  cycle_time_error_threshold: 0.01\n# Settings for ros_control hardware interface\nhardware_interface:\n  joints:\n    - shoulder_pan_joint\n    - shoulder_lift_joint\n    - elbow_joint\n    - wrist_1_joint\n    - wrist_2_joint\n    - wrist_3_joint\n    - finger_joint\n  sim_control_mode: 1  # 0: position, 1: velocity\n# Publish all joint states\n# Creates the /joint_states topic necessary in ROS\njoint_state_controller:\n  type: joint_state_controller/JointStateController\n  publish_rate: 50\ncontroller_list:\n  - name: scaled_pos_joint_traj_controller\n    action_ns: follow_joint_trajectory\n    default: True\n    type: FollowJointTrajectory\n    joints:\n      - shoulder_pan_joint\n      - shoulder_lift_joint\n      - elbow_joint\n      - wrist_1_joint\n      - wrist_2_joint\n      - wrist_3_joint\n  - name: gripper_controller\n    action_ns: gripper_cmd\n    default: True\n    type: GripperCommand\n    joints:\n      - finger_joint"
  },
  {
    "path": "ur_gripper_85_moveit_config/config/sensors_3d.yaml",
    "content": "# The name of this file shouldn't be changed, or else the Setup Assistant won't detect it\nsensors:\n  - {}"
  },
  {
    "path": "ur_gripper_85_moveit_config/config/ur_robot_gazebo.srdf",
    "content": "<?xml version=\"1.0\" ?>\n<!--This does not replace URDF, and is not an extension of URDF.\n    This is a format for representing semantic information about the robot structure.\n    A URDF file must exist for this robot as well, where the joints and the links that are referenced are defined\n-->\n<robot name=\"ur_robot_gazebo\">\n    <!--GROUPS: Representation of a set of joints and links. This can be useful for specifying DOF to plan for, defining arms, end effectors, etc-->\n    <!--LINKS: When a link is specified, the parent joint of that link (if it exists) is automatically included-->\n    <!--JOINTS: When a joint is specified, the child link of that joint (which will always exist) is automatically included-->\n    <!--CHAINS: When a chain is specified, all the links along the chain (including endpoints) are included in the group. Additionally, all the joints that are parents to included links are also included. This means that joints along the chain and the parent joint of the base link are included in the group-->\n    <!--SUBGROUPS: Groups can also be formed by referencing to already defined group names-->\n    <group name=\"arm\">\n        <chain base_link=\"base_link\" tip_link=\"tool0\" />\n    </group>\n    <group name=\"gripper\">\n        <joint name=\"robotiq_coupler_joint\" />\n        <joint name=\"manipulator_dummy_joint\" />\n        <joint name=\"robotiq_85_base_joint\" />\n        <joint name=\"robotiq_85_left_inner_knuckle_joint\" />\n        <joint name=\"robotiq_85_left_finger_tip_joint\" />\n        <joint name=\"finger_joint\" />\n        <joint name=\"robotiq_85_left_finger_joint\" />\n        <joint name=\"robotiq_85_right_inner_knuckle_joint\" />\n        <joint name=\"robotiq_85_right_finger_tip_joint\" />\n        <joint name=\"robotiq_85_right_knuckle_joint\" />\n        <joint name=\"robotiq_85_right_finger_joint\" />\n    </group>\n    <!--END EFFECTOR: Purpose: Represent information about an end effector.-->\n    <end_effector name=\"gripper\" parent_link=\"tool0\" group=\"gripper\" parent_group=\"arm\" />\n    <!--VIRTUAL JOINT: Purpose: this element defines a virtual joint between a robot link and an external frame of reference (considered fixed with respect to the robot)-->\n    <virtual_joint name=\"fixed_base\" type=\"fixed\" parent_frame=\"base_link\" child_link=\"world\" />\n    <!--DISABLE COLLISIONS: By default it is assumed that any link of the robot could potentially come into collision with any other link in the robot. This tag disables collision checking between a specified pair of links. -->\n    <disable_collisions link1=\"base_link_inertia\" link2=\"shoulder_link\" reason=\"Adjacent\" />\n    <disable_collisions link1=\"forearm_link\" link2=\"upper_arm_link\" reason=\"Adjacent\" />\n    <disable_collisions link1=\"forearm_link\" link2=\"wrist_1_link\" reason=\"Adjacent\" />\n    <disable_collisions link1=\"forearm_link\" link2=\"wrist_2_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_base_link\" link2=\"robotiq_85_left_finger_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_base_link\" link2=\"robotiq_85_left_finger_tip_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_base_link\" link2=\"robotiq_85_left_inner_knuckle_link\" reason=\"Adjacent\" />\n    <disable_collisions link1=\"robotiq_85_base_link\" link2=\"robotiq_85_left_knuckle_link\" reason=\"Adjacent\" />\n    <disable_collisions link1=\"robotiq_85_base_link\" link2=\"robotiq_85_right_finger_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_base_link\" link2=\"robotiq_85_right_finger_tip_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_base_link\" link2=\"robotiq_85_right_inner_knuckle_link\" reason=\"Adjacent\" />\n    <disable_collisions link1=\"robotiq_85_base_link\" link2=\"robotiq_85_right_knuckle_link\" reason=\"Adjacent\" />\n    <disable_collisions link1=\"robotiq_85_base_link\" link2=\"robotiq_coupler\" reason=\"Adjacent\" />\n    <disable_collisions link1=\"robotiq_85_base_link\" link2=\"wrist_1_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_base_link\" link2=\"wrist_2_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_base_link\" link2=\"wrist_3_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_finger_link\" link2=\"robotiq_85_left_finger_tip_link\" reason=\"Default\" />\n    <disable_collisions link1=\"robotiq_85_left_finger_link\" link2=\"robotiq_85_left_inner_knuckle_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_finger_link\" link2=\"robotiq_85_left_knuckle_link\" reason=\"Adjacent\" />\n    <disable_collisions link1=\"robotiq_85_left_finger_link\" link2=\"robotiq_85_right_finger_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_finger_link\" link2=\"robotiq_85_right_finger_tip_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_finger_link\" link2=\"robotiq_85_right_inner_knuckle_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_finger_link\" link2=\"robotiq_85_right_knuckle_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_finger_link\" link2=\"robotiq_coupler\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_finger_link\" link2=\"wrist_1_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_finger_link\" link2=\"wrist_2_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_finger_link\" link2=\"wrist_3_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_finger_tip_link\" link2=\"robotiq_85_left_inner_knuckle_link\" reason=\"Adjacent\" />\n    <disable_collisions link1=\"robotiq_85_left_finger_tip_link\" link2=\"robotiq_85_left_knuckle_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_finger_tip_link\" link2=\"robotiq_85_right_finger_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_finger_tip_link\" link2=\"robotiq_85_right_finger_tip_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_finger_tip_link\" link2=\"robotiq_85_right_inner_knuckle_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_finger_tip_link\" link2=\"robotiq_85_right_knuckle_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_finger_tip_link\" link2=\"robotiq_coupler\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_finger_tip_link\" link2=\"wrist_1_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_finger_tip_link\" link2=\"wrist_2_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_finger_tip_link\" link2=\"wrist_3_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_inner_knuckle_link\" link2=\"robotiq_85_left_knuckle_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_inner_knuckle_link\" link2=\"robotiq_85_right_finger_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_inner_knuckle_link\" link2=\"robotiq_85_right_finger_tip_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_inner_knuckle_link\" link2=\"robotiq_85_right_inner_knuckle_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_inner_knuckle_link\" link2=\"robotiq_85_right_knuckle_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_inner_knuckle_link\" link2=\"robotiq_coupler\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_inner_knuckle_link\" link2=\"wrist_1_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_inner_knuckle_link\" link2=\"wrist_2_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_inner_knuckle_link\" link2=\"wrist_3_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_knuckle_link\" link2=\"robotiq_85_right_finger_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_knuckle_link\" link2=\"robotiq_85_right_finger_tip_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_knuckle_link\" link2=\"robotiq_85_right_inner_knuckle_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_knuckle_link\" link2=\"robotiq_85_right_knuckle_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_knuckle_link\" link2=\"robotiq_coupler\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_knuckle_link\" link2=\"wrist_1_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_knuckle_link\" link2=\"wrist_2_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_left_knuckle_link\" link2=\"wrist_3_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_right_finger_link\" link2=\"robotiq_85_right_finger_tip_link\" reason=\"Default\" />\n    <disable_collisions link1=\"robotiq_85_right_finger_link\" link2=\"robotiq_85_right_inner_knuckle_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_right_finger_link\" link2=\"robotiq_85_right_knuckle_link\" reason=\"Adjacent\" />\n    <disable_collisions link1=\"robotiq_85_right_finger_link\" link2=\"robotiq_coupler\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_right_finger_link\" link2=\"wrist_1_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_right_finger_link\" link2=\"wrist_2_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_right_finger_link\" link2=\"wrist_3_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_right_finger_tip_link\" link2=\"robotiq_85_right_inner_knuckle_link\" reason=\"Adjacent\" />\n    <disable_collisions link1=\"robotiq_85_right_finger_tip_link\" link2=\"robotiq_85_right_knuckle_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_right_finger_tip_link\" link2=\"robotiq_coupler\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_right_finger_tip_link\" link2=\"wrist_1_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_right_finger_tip_link\" link2=\"wrist_2_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_right_finger_tip_link\" link2=\"wrist_3_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_right_inner_knuckle_link\" link2=\"robotiq_85_right_knuckle_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_right_inner_knuckle_link\" link2=\"robotiq_coupler\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_right_inner_knuckle_link\" link2=\"wrist_1_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_right_inner_knuckle_link\" link2=\"wrist_2_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_right_inner_knuckle_link\" link2=\"wrist_3_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_right_knuckle_link\" link2=\"robotiq_coupler\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_right_knuckle_link\" link2=\"wrist_1_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_right_knuckle_link\" link2=\"wrist_2_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_85_right_knuckle_link\" link2=\"wrist_3_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_coupler\" link2=\"wrist_1_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_coupler\" link2=\"wrist_2_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_coupler\" link2=\"wrist_3_link\" reason=\"Adjacent\" />\n    <disable_collisions link1=\"shoulder_link\" link2=\"upper_arm_link\" reason=\"Adjacent\" />\n    <disable_collisions link1=\"shoulder_link\" link2=\"wrist_1_link\" reason=\"Never\" />\n    <disable_collisions link1=\"shoulder_link\" link2=\"wrist_2_link\" reason=\"Never\" />\n    <disable_collisions link1=\"wrist_1_link\" link2=\"wrist_2_link\" reason=\"Adjacent\" />\n    <disable_collisions link1=\"wrist_1_link\" link2=\"wrist_3_link\" reason=\"Never\" />\n    <disable_collisions link1=\"wrist_2_link\" link2=\"wrist_3_link\" reason=\"Adjacent\" />\n</robot>\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/chomp_planning_pipeline.launch.xml",
    "content": "<launch>\n  <!-- CHOMP Plugin for MoveIt! -->\n  <arg name=\"planning_plugin\" value=\"chomp_interface/CHOMPPlanner\" />\n\n  <!-- define capabilites that are loaded on start (space seperated) -->\n  <arg name=\"capabilities\" default=\"\"/>\n\n  <!-- inhibit capabilites (space seperated) -->\n  <arg name=\"disable_capabilities\" default=\"\"/>\n\n  <arg name=\"start_state_max_bounds_error\" value=\"0.1\" />\n  <!-- The request adapters (plugins) used when planning.\n       ORDER MATTERS -->\n  <arg name=\"planning_adapters\"\n       value=\"default_planner_request_adapters/AddTimeParameterization\n              default_planner_request_adapters/ResolveConstraintFrames\n              default_planner_request_adapters/FixWorkspaceBounds\n              default_planner_request_adapters/FixStartStateBounds\n              default_planner_request_adapters/FixStartStateCollision\n              default_planner_request_adapters/FixStartStatePathConstraints\"\n              />\n\n  <param name=\"planning_plugin\" value=\"$(arg planning_plugin)\" />\n  <param name=\"request_adapters\" value=\"$(arg planning_adapters)\" />\n  <param name=\"start_state_max_bounds_error\" value=\"$(arg start_state_max_bounds_error)\" />\n  <param name=\"capabilities\" value=\"$(arg capabilities)\" />\n  <param name=\"disable_capabilities\" value=\"$(arg disable_capabilities)\" />\n\n  <rosparam command=\"load\" file=\"$(find ur_gripper_85_moveit_config)/config/chomp_planning.yaml\" />\n</launch>\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/default_warehouse_db.launch",
    "content": "<launch>\n\n  <arg name=\"reset\" default=\"false\"/>\n  <!-- If not specified, we'll use a default database location -->\n  <arg name=\"moveit_warehouse_database_path\" default=\"$(find ur_gripper_85_moveit_config)/default_warehouse_mongo_db\" />\n\n  <!-- Launch the warehouse with the configured database location -->\n  <include file=\"$(find ur_gripper_85_moveit_config)/launch/warehouse.launch\">\n    <arg name=\"moveit_warehouse_database_path\" value=\"$(arg moveit_warehouse_database_path)\" />\n  </include>\n\n  <!-- If we want to reset the database, run this node -->\n  <node if=\"$(arg reset)\" name=\"$(anon moveit_default_db_reset)\" type=\"moveit_init_demo_warehouse\" pkg=\"moveit_ros_warehouse\" respawn=\"false\" output=\"screen\" />\n\n</launch>\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/demo.launch",
    "content": "<launch>\n\n  <!-- specify the planning pipeline -->\n  <arg name=\"pipeline\" default=\"ompl\" />\n\n  <!-- By default, we do not start a database (it can be large) -->\n  <arg name=\"db\" default=\"false\" />\n  <!-- Allow user to specify database location -->\n  <arg name=\"db_path\" default=\"$(find ur_gripper_85_moveit_config)/default_warehouse_mongo_db\" />\n\n  <!-- By default, we are not in debug mode -->\n  <arg name=\"debug\" default=\"false\" />\n\n  <!-- By default, we will load or override the robot_description -->\n  <arg name=\"load_robot_description\" default=\"true\"/>\n\n  <!-- Set execution mode for fake execution controllers -->\n  <arg name=\"execution_type\" default=\"interpolate\" />\n\n  <!--\n  By default, hide joint_state_publisher's GUI\n\n  MoveIt!'s \"demo\" mode replaces the real robot driver with the joint_state_publisher.\n  The latter one maintains and publishes the current joint configuration of the simulated robot.\n  It also provides a GUI to move the simulated robot around \"manually\".\n  This corresponds to moving around the real robot without the use of MoveIt.\n  -->\n  <arg name=\"use_gui\" default=\"false\" />\n  <arg name=\"use_rviz\" default=\"true\" />\n\n  <!-- If needed, broadcast static tf for robot root -->\n\n\n  <!-- We do not have a robot connected, so publish fake joint states -->\n  <node name=\"joint_state_publisher\" pkg=\"joint_state_publisher\" type=\"joint_state_publisher\" unless=\"$(arg use_gui)\">\n    <rosparam param=\"source_list\">[move_group/fake_controller_joint_states]</rosparam>\n  </node>\n  <node name=\"joint_state_publisher\" pkg=\"joint_state_publisher_gui\" type=\"joint_state_publisher_gui\" if=\"$(arg use_gui)\">\n    <rosparam param=\"source_list\">[move_group/fake_controller_joint_states]</rosparam>\n  </node>\n\n  <!-- Given the published joint states, publish tf for the robot links -->\n  <node name=\"robot_state_publisher\" pkg=\"robot_state_publisher\" type=\"robot_state_publisher\" respawn=\"true\" output=\"screen\" />\n\n  <!-- Run the main MoveIt! executable without trajectory execution (we do not have controllers configured by default) -->\n  <include file=\"$(find ur_gripper_85_moveit_config)/launch/move_group.launch\">\n    <arg name=\"allow_trajectory_execution\" value=\"true\"/>\n    <arg name=\"fake_execution\" value=\"true\"/>\n    <arg name=\"execution_type\" value=\"$(arg execution_type)\"/>\n    <arg name=\"info\" value=\"true\"/>\n    <arg name=\"debug\" value=\"$(arg debug)\"/>\n    <arg name=\"pipeline\" value=\"$(arg pipeline)\"/>\n    <arg name=\"load_robot_description\" value=\"$(arg load_robot_description)\"/>\n  </include>\n\n  <!-- Run Rviz and load the default config to see the state of the move_group node -->\n  <include file=\"$(find ur_gripper_85_moveit_config)/launch/moveit_rviz.launch\" if=\"$(arg use_rviz)\">\n    <arg name=\"rviz_config\" value=\"$(find ur_gripper_85_moveit_config)/launch/moveit.rviz\"/>\n    <arg name=\"debug\" value=\"$(arg debug)\"/>\n  </include>\n\n  <!-- If database loading was enabled, start mongodb as well -->\n  <include file=\"$(find ur_gripper_85_moveit_config)/launch/default_warehouse_db.launch\" if=\"$(arg db)\">\n    <arg name=\"moveit_warehouse_database_path\" value=\"$(arg db_path)\"/>\n  </include>\n\n</launch>\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/demo_gazebo.launch",
    "content": "<launch>\n\n  <!-- By default, we do not start a database (it can be large) -->\n  <arg name=\"db\" default=\"false\" />\n  <!-- Allow user to specify database location -->\n  <arg name=\"db_path\" default=\"$(find ur_gripper_85_moveit_config)/default_warehouse_mongo_db\" />\n\n  <!-- By default, we are not in debug mode -->\n  <arg name=\"debug\" default=\"false\" />\n\n  <!-- By default, we won't load or override the robot_description -->\n  <arg name=\"load_robot_description\" default=\"false\"/>\n\n  <!--\n  By default, hide joint_state_publisher's GUI\n\n  MoveIt!'s \"demo\" mode replaces the real robot driver with the joint_state_publisher.\n  The latter one maintains and publishes the current joint configuration of the simulated robot.\n  It also provides a GUI to move the simulated robot around \"manually\".\n  This corresponds to moving around the real robot without the use of MoveIt.\n  -->\n  <arg name=\"use_gui\" default=\"false\" />\n\n  <!-- Gazebo specific options -->\n  <arg name=\"gazebo_gui\" default=\"true\"/>\n  <arg name=\"paused\" default=\"false\"/>\n  <!-- By default, use the urdf location provided from the package -->\n  <arg name=\"urdf_path\" default=\"$(find ur_gripper_gazebo)/urdf/ur_gripper_hande.xacro\"/>\n\n  <!-- launch the gazebo simulator and spawn the robot -->\n  <include file=\"$(find ur_gripper_85_moveit_config)/launch/gazebo.launch\" >\n    <arg name=\"paused\" value=\"$(arg paused)\"/>\n    <arg name=\"gazebo_gui\" value=\"$(arg gazebo_gui)\"/>\n    <arg name=\"urdf_path\" value=\"$(arg urdf_path)\"/>\n  </include>\n\n  <!-- If needed, broadcast static tf for robot root -->\n  \n\n  <!-- We do not have a robot connected, so publish fake joint states -->\n  <node name=\"joint_state_publisher\" pkg=\"joint_state_publisher\" type=\"joint_state_publisher\" unless=\"$(arg use_gui)\">\n    <rosparam param=\"source_list\">[move_group/fake_controller_joint_states]</rosparam>\n    <rosparam param=\"source_list\">[/joint_states]</rosparam>\n  </node>\n  <node name=\"joint_state_publisher\" pkg=\"joint_state_publisher_gui\" type=\"joint_state_publisher_gui\" if=\"$(arg use_gui)\">\n    <rosparam param=\"source_list\">[move_group/fake_controller_joint_states]</rosparam>\n    <rosparam param=\"source_list\">[/joint_states]</rosparam>\n  </node>\n\n  <!-- Given the published joint states, publish tf for the robot links -->\n  <node name=\"robot_state_publisher\" pkg=\"robot_state_publisher\" type=\"robot_state_publisher\" respawn=\"true\" output=\"screen\" />\n\n  <!-- Run the main MoveIt! executable without trajectory execution (we do not have controllers configured by default) -->\n  <include file=\"$(find ur_gripper_85_moveit_config)/launch/move_group.launch\">\n    <arg name=\"allow_trajectory_execution\" value=\"true\"/>\n    <arg name=\"fake_execution\" value=\"false\"/>\n    <arg name=\"info\" value=\"true\"/>\n    <arg name=\"debug\" value=\"$(arg debug)\"/>\n    <arg name=\"load_robot_description\" value=\"$(arg load_robot_description)\"/>\n  </include>\n\n  <!-- Run Rviz and load the default config to see the state of the move_group node -->\n  <include file=\"$(find ur_gripper_85_moveit_config)/launch/moveit_rviz.launch\">\n    <arg name=\"rviz_config\" value=\"$(find ur_gripper_85_moveit_config)/launch/moveit.rviz\"/>\n    <arg name=\"debug\" value=\"$(arg debug)\"/>\n  </include>\n\n  <!-- If database loading was enabled, start mongodb as well -->\n  <include file=\"$(find ur_gripper_85_moveit_config)/launch/default_warehouse_db.launch\" if=\"$(arg db)\">\n    <arg name=\"moveit_warehouse_database_path\" value=\"$(arg db_path)\"/>\n  </include>\n\n</launch>\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/fake_moveit_controller_manager.launch.xml",
    "content": "<launch>\n\n  <!-- execute the trajectory in 'interpolate' mode or jump to goal position in 'last point' mode -->\n  <arg name=\"execution_type\" default=\"interpolate\" />\n\n  <!-- Set the param that trajectory_execution_manager needs to find the controller plugin -->\n  <param name=\"moveit_controller_manager\" value=\"moveit_fake_controller_manager/MoveItFakeControllerManager\"/>\n\n  <!-- The rest of the params are specific to this plugin -->\n  <rosparam subst_value=\"true\" file=\"$(find ur_gripper_85_moveit_config)/config/fake_controllers.yaml\"/>\n\n</launch>\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/gazebo.launch",
    "content": "<?xml version=\"1.0\"?>\n<launch>\n  <arg name=\"paused\" default=\"false\"/>\n  <arg name=\"gazebo_gui\" default=\"true\"/>\n  <arg name=\"urdf_path\" default=\"$(find ur_gripper_gazebo)/urdf/ur_gripper_85.xacro\"/>\n\n  <!-- startup simulated world -->\n  <include file=\"$(find gazebo_ros)/launch/empty_world.launch\">\n    <arg name=\"world_name\" default=\"worlds/empty.world\"/>\n    <arg name=\"paused\" value=\"$(arg paused)\"/>\n    <arg name=\"gui\" value=\"$(arg gazebo_gui)\"/>\n  </include>\n\n  <!-- send robot urdf to param server -->\n  <param name=\"robot_description\" textfile=\"$(arg urdf_path)\" />\n\n  <!-- push robot_description to factory and spawn robot in gazebo at the origin, change x,y,z arguments to spawn in a different position -->\n  <node name=\"spawn_gazebo_model\" pkg=\"gazebo_ros\" type=\"spawn_model\" args=\"-urdf -param robot_description -model robot -x 0 -y 0 -z 0\"\n    respawn=\"false\" output=\"screen\" />\n\n  <include file=\"$(find ur_gripper_85_moveit_config)/launch/ros_controllers.launch\"/>\n\n</launch>\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/gazebo_static_tf.launch",
    "content": "<launch>\n    <node pkg=\"tf\" type=\"static_transform_publisher\" name=\"floorworld_broadcaster\" args=\"0 0 0 0 0 0 floor world 100\" />\n    <node pkg=\"tf\" type=\"static_transform_publisher\" name=\"arm_broadcaster\" args=\"0.11 0.685 -1.5707 0 0 0 world base_link 100\" />\n</launch>"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/joystick_control.launch",
    "content": "<launch>\n  <!-- See moveit_ros/visualization/doc/joystick.rst for documentation -->\n\n  <arg name=\"dev\" default=\"/dev/input/js0\" />\n\n  <!-- Launch joy node -->\n  <node pkg=\"joy\" type=\"joy_node\" name=\"joy\">\n    <param name=\"dev\" value=\"$(arg dev)\" /> <!-- Customize this to match the location your joystick is plugged in on-->\n    <param name=\"deadzone\" value=\"0.2\" />\n    <param name=\"autorepeat_rate\" value=\"40\" />\n    <param name=\"coalesce_interval\" value=\"0.025\" />\n  </node>\n\n  <!-- Launch python interface -->\n  <node pkg=\"moveit_ros_visualization\" type=\"moveit_joy.py\" output=\"screen\" name=\"moveit_joy\"/>\n\n</launch>\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/move_group.launch",
    "content": "<launch>\n  <!-- Specific ur robot -->\n  <arg name=\"ur_robot\" default=\"ur3\"/>\n\n  <!-- GDB Debug Option -->\n  <arg name=\"debug\" default=\"false\" />\n  <arg unless=\"$(arg debug)\" name=\"launch_prefix\" value=\"\" />\n  <arg     if=\"$(arg debug)\" name=\"launch_prefix\"\n           value=\"gdb -x $(find ur_gripper_85_moveit_config)/launch/gdb_settings.gdb --ex run --args\" />\n\n  <!-- Verbose Mode Option -->\n  <arg name=\"info\" default=\"$(arg debug)\" />\n  <arg unless=\"$(arg info)\" name=\"command_args\" value=\"\" />\n  <arg     if=\"$(arg info)\" name=\"command_args\" value=\"--debug\" />\n\n  <!-- move_group settings -->\n  <arg name=\"pipeline\" default=\"ompl\" />\n  <arg name=\"allow_trajectory_execution\" default=\"true\"/>\n  <arg name=\"fake_execution\" default=\"false\"/>\n  <arg name=\"execution_type\" default=\"interpolate\"/> <!-- set to 'last point' to skip intermediate trajectory in fake execution -->\n  <arg name=\"max_safe_path_cost\" default=\"1\"/>\n  <arg name=\"jiggle_fraction\" default=\"0.05\" />\n  <arg name=\"publish_monitored_planning_scene\" default=\"true\"/>\n\n  <arg name=\"capabilities\" default=\"\"/>\n  <arg name=\"disable_capabilities\" default=\"\"/>\n  <!-- load these non-default MoveGroup capabilities (space seperated) -->\n  <!--\n  <arg name=\"capabilities\" value=\"\n                a_package/AwsomeMotionPlanningCapability\n                another_package/GraspPlanningPipeline\n                \" />\n  -->\n\n  <!-- inhibit these default MoveGroup capabilities (space seperated) -->\n  <!--\n  <arg name=\"disable_capabilities\" value=\"\n                move_group/MoveGroupKinematicsService\n                move_group/ClearOctomapService\n                \" />\n  -->\n\n  <arg name=\"load_robot_description\" default=\"true\" />\n  <!-- load URDF, SRDF and joint_limits configuration -->\n  <include file=\"$(find ur_gripper_85_moveit_config)/launch/planning_context.launch\">\n    <arg name=\"ur_robot\" default=\"$(arg ur_robot)\"/>\n    <arg name=\"load_robot_description\" value=\"$(arg load_robot_description)\" />\n  </include>\n\n  <!-- Planning Functionality -->\n  <include ns=\"move_group\" file=\"$(find ur_gripper_85_moveit_config)/launch/planning_pipeline.launch.xml\">\n    <arg name=\"pipeline\" value=\"$(arg pipeline)\" />\n    <param name=\"capabilities\" value=\"$(arg capabilities)\"/>\n    <param name=\"disable_capabilities\" value=\"$(arg disable_capabilities)\"/>\n  </include>\n\n  <!-- Trajectory Execution Functionality -->\n  <include ns=\"move_group\" file=\"$(find ur_gripper_85_moveit_config)/launch/trajectory_execution.launch.xml\" if=\"$(arg allow_trajectory_execution)\">\n    <arg name=\"moveit_manage_controllers\" value=\"true\" />\n    <arg name=\"moveit_controller_manager\" value=\"ur_robot_gazebo\" unless=\"$(arg fake_execution)\"/>\n    <arg name=\"moveit_controller_manager\" value=\"fake\" if=\"$(arg fake_execution)\"/>\n    <arg name=\"execution_type\" value=\"$(arg execution_type)\" />\n  </include>\n\n  <!-- Sensors Functionality -->\n  <include ns=\"move_group\" file=\"$(find ur_gripper_85_moveit_config)/launch/sensor_manager.launch.xml\" if=\"$(arg allow_trajectory_execution)\">\n    <arg name=\"moveit_sensor_manager\" value=\"ur_robot_gazebo\" />\n  </include>\n\n  <!-- Start the actual move_group node/action server -->\n  <node name=\"move_group\" launch-prefix=\"$(arg launch_prefix)\" pkg=\"moveit_ros_move_group\" type=\"move_group\" respawn=\"false\" output=\"screen\" args=\"$(arg command_args)\">\n    <!-- Set the display variable, in case OpenGL code is used internally -->\n    <env name=\"DISPLAY\" value=\"$(optenv DISPLAY :0)\" />\n\n    <param name=\"allow_trajectory_execution\" value=\"$(arg allow_trajectory_execution)\"/>\n    <param name=\"max_safe_path_cost\" value=\"$(arg max_safe_path_cost)\"/>\n    <param name=\"jiggle_fraction\" value=\"$(arg jiggle_fraction)\" />\n\n\n    <!-- Publish the planning scene of the physical robot so that rviz plugin can know actual robot -->\n    <param name=\"planning_scene_monitor/publish_planning_scene\" value=\"$(arg publish_monitored_planning_scene)\" />\n    <param name=\"planning_scene_monitor/publish_geometry_updates\" value=\"$(arg publish_monitored_planning_scene)\" />\n    <param name=\"planning_scene_monitor/publish_state_updates\" value=\"$(arg publish_monitored_planning_scene)\" />\n    <param name=\"planning_scene_monitor/publish_transforms_updates\" value=\"$(arg publish_monitored_planning_scene)\" />\n  </node>\n\n</launch>\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/moveit.rviz",
    "content": "Panels:\n  - Class: rviz/Displays\n    Help Height: 84\n    Name: Displays\n    Property Tree Widget:\n      Expanded: ~\n      Splitter Ratio: 0.7425600290298462\n    Tree Height: 409\n  - Class: rviz/Help\n    Name: Help\n  - Class: rviz/Views\n    Expanded:\n      - /Current View1\n    Name: Views\n    Splitter Ratio: 0.5\nPreferences:\n  PromptSaveOnExit: true\nToolbars:\n  toolButtonStyle: 2\nVisualization Manager:\n  Class: \"\"\n  Displays:\n    - Alpha: 0.5\n      Cell Size: 1\n      Class: rviz/Grid\n      Color: 160; 160; 164\n      Enabled: true\n      Line Style:\n        Line Width: 0.029999999329447746\n        Value: Lines\n      Name: Grid\n      Normal Cell Count: 0\n      Offset:\n        X: 0\n        Y: 0\n        Z: 0\n      Plane: XY\n      Plane Cell Count: 10\n      Reference Frame: <Fixed Frame>\n      Value: true\n    - Acceleration_Scaling_Factor: 0.1\n      Class: moveit_rviz_plugin/MotionPlanning\n      Enabled: true\n      Move Group Namespace: \"\"\n      MoveIt_Allow_Approximate_IK: false\n      MoveIt_Allow_External_Program: false\n      MoveIt_Allow_Replanning: false\n      MoveIt_Allow_Sensor_Positioning: false\n      MoveIt_Planning_Attempts: 10\n      MoveIt_Planning_Time: 5\n      MoveIt_Use_Cartesian_Path: false\n      MoveIt_Use_Constraint_Aware_IK: true\n      MoveIt_Workspace:\n        Center:\n          X: 0\n          Y: 0\n          Z: 0\n        Size:\n          X: 2\n          Y: 2\n          Z: 2\n      Name: MotionPlanning\n      Planned Path:\n        Color Enabled: false\n        Interrupt Display: false\n        Links:\n          All Links Enabled: true\n          Expand Joint Details: false\n          Expand Link Details: false\n          Expand Tree: false\n          Link Tree Style: Links in Alphabetic Order\n          base:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n          base_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n          base_link_inertia:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          flange:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n          forearm_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          gripper_tip_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n          robotiq_85_base_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          robotiq_85_left_finger_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          robotiq_85_left_finger_tip_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          robotiq_85_left_inner_knuckle_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          robotiq_85_left_knuckle_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          robotiq_85_right_finger_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          robotiq_85_right_finger_tip_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          robotiq_85_right_inner_knuckle_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          robotiq_85_right_knuckle_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          robotiq_coupler:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          shoulder_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          tool0:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n          upper_arm_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          world:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n          wrist_1_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          wrist_2_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          wrist_3_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n        Loop Animation: false\n        Robot Alpha: 0.5\n        Robot Color: 150; 50; 150\n        Show Robot Collision: false\n        Show Robot Visual: true\n        Show Trail: false\n        State Display Time: 0.05 s\n        Trail Step Size: 1\n        Trajectory Topic: move_group/display_planned_path\n        Use Sim Time: false\n      Planning Metrics:\n        Payload: 1\n        Show Joint Torques: false\n        Show Manipulability: false\n        Show Manipulability Index: false\n        Show Weight Limit: false\n        TextHeight: 0.07999999821186066\n      Planning Request:\n        Colliding Link Color: 255; 0; 0\n        Goal State Alpha: 1\n        Goal State Color: 250; 128; 0\n        Interactive Marker Size: 0\n        Joint Violation Color: 255; 0; 255\n        Planning Group: arm\n        Query Goal State: true\n        Query Start State: false\n        Show Workspace: false\n        Start State Alpha: 1\n        Start State Color: 0; 255; 0\n      Planning Scene Topic: move_group/monitored_planning_scene\n      Robot Description: robot_description\n      Scene Geometry:\n        Scene Alpha: 1\n        Scene Color: 50; 230; 50\n        Scene Display Time: 0.20000000298023224\n        Show Scene Geometry: true\n        Voxel Coloring: Z-Axis\n        Voxel Rendering: Occupied Voxels\n      Scene Robot:\n        Attached Body Color: 150; 50; 150\n        Links:\n          All Links Enabled: true\n          Expand Joint Details: false\n          Expand Link Details: false\n          Expand Tree: false\n          Link Tree Style: Links in Alphabetic Order\n          base:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n          base_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n          base_link_inertia:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          flange:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n          forearm_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          gripper_tip_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n          robotiq_85_base_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          robotiq_85_left_finger_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          robotiq_85_left_finger_tip_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          robotiq_85_left_inner_knuckle_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          robotiq_85_left_knuckle_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          robotiq_85_right_finger_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          robotiq_85_right_finger_tip_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          robotiq_85_right_inner_knuckle_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          robotiq_85_right_knuckle_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          robotiq_coupler:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          shoulder_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          tool0:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n          upper_arm_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          world:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n          wrist_1_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          wrist_2_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          wrist_3_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n        Robot Alpha: 0.5\n        Show Robot Collision: false\n        Show Robot Visual: true\n      Value: true\n      Velocity_Scaling_Factor: 0.1\n  Enabled: true\n  Global Options:\n    Background Color: 48; 48; 48\n    Default Light: true\n    Fixed Frame: world\n    Frame Rate: 30\n  Name: root\n  Tools:\n    - Class: rviz/Interact\n      Hide Inactive Objects: true\n    - Class: rviz/MoveCamera\n    - Class: rviz/Select\n  Value: true\n  Views:\n    Current:\n      Class: rviz/XYOrbit\n      Distance: 2.996500015258789\n      Enable Stereo Rendering:\n        Stereo Eye Separation: 0.05999999865889549\n        Stereo Focal Distance: 1\n        Swap Stereo Eyes: false\n        Value: false\n      Field of View: 0.7853981852531433\n      Focal Point:\n        X: 0.11356700211763382\n        Y: 0.10592000186443329\n        Z: 2.2351800055275817e-07\n      Focal Shape Fixed Size: true\n      Focal Shape Size: 0.05000000074505806\n      Invert Z Axis: false\n      Name: Current View\n      Near Clip Distance: 0.009999999776482582\n      Pitch: 0.5097969770431519\n      Target Frame: world\n      Yaw: 5.659949779510498\n    Saved: ~\nWindow Geometry:\n  Displays:\n    collapsed: false\n  Height: 1016\n  Help:\n    collapsed: false\n  Hide Left Dock: false\n  Hide Right Dock: false\n  MotionPlanning:\n    collapsed: false\n  MotionPlanning - Trajectory Slider:\n    collapsed: false\n  QMainWindow State: 000000ff00000000fd0000000100000000000002a2000003a2fc0200000007fb000000100044006900730070006c006100790073010000003b00000228000000c700fffffffb0000000800480065006c00700000000342000000bb0000006e00fffffffb0000000a0056006900650077007300000003b0000000b0000000a000fffffffb0000000c00430061006d00650072006100000002ff000001610000000000000000fb0000001e004d006f00740069006f006e00200050006c0061006e006e0069006e00670100000374000001890000000000000000fb00000044004d006f00740069006f006e0050006c0061006e006e0069006e00670020002d0020005400720061006a006500630074006f0072007900200053006c00690064006500720000000000ffffffff0000001600000016fb0000001c004d006f00740069006f006e0050006c0061006e006e0069006e00670100000269000001740000016900ffffff00000492000003a200000001000000020000000100000002fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000\n  Views:\n    collapsed: false\n  Width: 1850\n  X: 70\n  Y: 27\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/moveit_rviz.launch",
    "content": "<launch>\n\n  <arg name=\"debug\" default=\"false\" />\n  <arg unless=\"$(arg debug)\" name=\"launch_prefix\" value=\"\" />\n  <arg     if=\"$(arg debug)\" name=\"launch_prefix\" value=\"gdb --ex run --args\" />\n\n  <arg name=\"rviz_config\" default=\"\" />\n  <arg     if=\"$(eval rviz_config=='')\" name=\"command_args\" value=\"\" />\n  <arg unless=\"$(eval rviz_config=='')\" name=\"command_args\" value=\"-d $(arg rviz_config)\" />\n\n  <node name=\"$(anon rviz)\" launch-prefix=\"$(arg launch_prefix)\" pkg=\"rviz\" type=\"rviz\" respawn=\"false\"\n        args=\"$(arg command_args)\" output=\"screen\">\n  </node>\n\n</launch>\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/ompl_planning_pipeline.launch.xml",
    "content": "<launch>\n\n  <!-- OMPL Plugin for MoveIt! -->\n  <arg name=\"planning_plugin\" value=\"ompl_interface/OMPLPlanner\" />\n\n  <!-- define capabilites that are loaded on start (space seperated) -->\n  <arg name=\"capabilities\" default=\"\"/>\n\n  <!-- inhibit capabilites (space seperated) -->\n  <arg name=\"disable_capabilities\" default=\"\"/>\n\n  <!-- The request adapters (plugins) used when planning with OMPL.\n       ORDER MATTERS -->\n  <arg name=\"planning_adapters\" value=\"default_planner_request_adapters/AddTimeParameterization\n\t\t\t\t       default_planner_request_adapters/FixWorkspaceBounds\n\t\t\t\t       default_planner_request_adapters/FixStartStateBounds\n\t\t\t\t       default_planner_request_adapters/FixStartStateCollision\n\t\t\t\t       default_planner_request_adapters/FixStartStatePathConstraints\" />\n\n  <arg name=\"start_state_max_bounds_error\" value=\"0.1\" />\n\n  <param name=\"planning_plugin\" value=\"$(arg planning_plugin)\" />\n  <param name=\"request_adapters\" value=\"$(arg planning_adapters)\" />\n  <param name=\"start_state_max_bounds_error\" value=\"$(arg start_state_max_bounds_error)\" />\n  <param name=\"capabilities\" value=\"$(arg capabilities)\" />\n  <param name=\"disable_capabilities\" value=\"$(arg disable_capabilities)\" />\n\n  <rosparam command=\"load\" file=\"$(find ur_gripper_85_moveit_config)/config/ompl_planning.yaml\"/>\n\n</launch>\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/pilz_industrial_motion_planner_planning_pipeline.launch.xml",
    "content": "<launch>\n\n  <!-- Pilz Command Planner Plugin for MoveIt -->\n  <arg name=\"planning_plugin\" value=\"pilz_industrial_motion_planner::CommandPlanner\" />\n\n  <!-- The request adapters (plugins) used when planning.\n       ORDER MATTERS -->\n  <arg name=\"planning_adapters\" value=\"\" />\n\n  <!-- define capabilites that are loaded on start (space seperated) -->\n  <arg name=\"capabilities\" default=\"\"/>\n\n  <!-- inhibit capabilites (space seperated) -->\n  <arg name=\"disable_capabilities\" default=\"\"/>\n\n  <arg name=\"start_state_max_bounds_error\" value=\"0.1\" />\n\n  <param name=\"planning_plugin\" value=\"$(arg planning_plugin)\" />\n  <param name=\"request_adapters\" value=\"$(arg planning_adapters)\" />\n  <param name=\"start_state_max_bounds_error\" value=\"$(arg start_state_max_bounds_error)\" />\n\n  <!-- MoveGroup capabilities to load, append sequence capability -->\n  <param name=\"capabilities\" value=\"$(arg capabilities)\n                                    pilz_industrial_motion_planner/MoveGroupSequenceAction\n                                    pilz_industrial_motion_planner/MoveGroupSequenceService\n                                   \" />\n  <param name=\"disable_capabilities\" value=\"$(arg disable_capabilities)\" />\n</launch>\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/planning_context.launch",
    "content": "<launch>\n  <arg name=\"ur_robot\" default=\"ur3\"/>\n\n  <!-- By default we do not overwrite the URDF. Change the following to true to change the default behavior -->\n  <arg name=\"load_robot_description\" default=\"false\"/>\n\n  <!-- The name of the parameter under which the URDF is loaded -->\n  <arg name=\"robot_description\" default=\"robot_description\"/>\n\n  <!-- Load universal robot description format (URDF) -->\n  <param if=\"$(arg load_robot_description)\" name=\"$(arg robot_description)\" command=\"xacro joint_limit_params:='$(find ur_description)/config/$(arg ur_robot)/joint_limits.yaml'\n                                                                                           kinematics_params:='$(find ur_description)/config/$(arg ur_robot)/default_kinematics.yaml'\n                                                                                           physical_params:='$(find ur_description)/config/$(arg ur_robot)/physical_parameters.yaml'\n                                                                                           visual_params:='$(find ur_description)/config/$(arg ur_robot)/visual_parameters.yaml'\n                                                                                           transmission_hw_interface:=hardware_interface/PositionJointInterface\n                                                                                           safety_limits:=false\n                                                                                           safety_pos_margin:=0.15\n                                                                                           safety_k_position:=20\n                                                                                           dual_arm:=true\n                                                                                           grasp_plugin:=false\n                                                                                           '$(find ur_gripper_gazebo)/urdf/ur_gripper_85.xacro'\"/>\n\n  <!-- The semantic description that corresponds to the URDF -->\n  <param name=\"$(arg robot_description)_semantic\" textfile=\"$(find ur_gripper_85_moveit_config)/config/ur_robot_gazebo.srdf\" />\n\n  <!-- Load updated joint limits (override information from URDF) -->\n  <group ns=\"$(arg robot_description)_planning\">\n    <rosparam command=\"load\" file=\"$(find ur_gripper_85_moveit_config)/config/joint_limits.yaml\"/>\n    <rosparam command=\"load\" file=\"$(find ur_gripper_85_moveit_config)/config/cartesian_limits.yaml\"/>\n  </group>\n\n  <!-- Load default settings for kinematics; these settings are overridden by settings in a node's namespace -->\n  <group ns=\"$(arg robot_description)_kinematics\">\n    <rosparam command=\"load\" file=\"$(find ur_gripper_85_moveit_config)/config/kinematics.yaml\"/>\n\n  </group>\n\n</launch>\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/planning_pipeline.launch.xml",
    "content": "<launch>\n\n  <!-- This file makes it easy to include different planning pipelines;\n       It is assumed that all planning pipelines are named XXX_planning_pipeline.launch  -->\n\n  <arg name=\"pipeline\" default=\"ompl\" />\n\n  <!-- define capabilites that are loaded on start (space seperated) -->\n  <arg name=\"capabilities\" default=\"\"/>\n\n  <!-- inhibit capabilites (space seperated) -->\n  <arg name=\"disable_capabilities\" default=\"\"/>\n\n  <include file=\"$(find ur_gripper_85_moveit_config)/launch/$(arg pipeline)_planning_pipeline.launch.xml\">\n    <arg name=\"capabilities\" value=\"$(arg capabilities)\"/>\n    <arg name=\"disable_capabilities\" value=\"$(arg disable_capabilities)\"/>\n  </include>\n\n</launch>\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/ros_controllers.launch",
    "content": "<?xml version=\"1.0\"?>\n<launch>\n\n  <!-- Load joint controller configurations from YAML file to parameter server -->\n  <rosparam file=\"$(find ur_gripper_85_moveit_config)/config/ros_controllers.yaml\" command=\"load\"/>\n\n  <!-- Load the controllers -->\n  <node name=\"controller_spawner\" pkg=\"controller_manager\" type=\"spawner\" respawn=\"false\"\n    output=\"screen\" args=\"gripper_controller \"/>\n\n</launch>\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/run_benchmark_ompl.launch",
    "content": "<launch>\n\n  <!-- This argument must specify the list of .cfg files to process for benchmarking -->\n  <arg name=\"cfg\" />\n\n  <!-- Load URDF -->\n  <include file=\"$(find ur_gripper_85_moveit_config)/launch/planning_context.launch\">\n    <arg name=\"load_robot_description\" value=\"true\"/>\n  </include>\n\n  <!-- Start the database -->\n  <include file=\"$(find ur_gripper_85_moveit_config)/launch/warehouse.launch\">\n    <arg name=\"moveit_warehouse_database_path\" value=\"moveit_ompl_benchmark_warehouse\"/>\n  </include>\n\n  <!-- Start Benchmark Executable -->\n  <node name=\"$(anon moveit_benchmark)\" pkg=\"moveit_ros_benchmarks\" type=\"moveit_run_benchmark\" args=\"$(arg cfg) --benchmark-planners\" respawn=\"false\" output=\"screen\">\n    <rosparam command=\"load\" file=\"$(find ur_gripper_85_moveit_config)/config/ompl_planning.yaml\"/>\n  </node>\n\n</launch>\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/sensor_manager.launch.xml",
    "content": "<launch>\n\n  <!-- This file makes it easy to include the settings for sensor managers -->\n\n  <!-- Params for 3D sensors config -->\n  <rosparam command=\"load\" file=\"$(find ur_gripper_85_moveit_config)/config/sensors_3d.yaml\" />\n\n  <!-- Params for the octomap monitor -->\n  <!--  <param name=\"octomap_frame\" type=\"string\" value=\"some frame in which the robot moves\" /> -->\n  <param name=\"octomap_resolution\" type=\"double\" value=\"0.025\" />\n  <param name=\"max_range\" type=\"double\" value=\"5.0\" />\n\n  <!-- Load the robot specific sensor manager; this sets the moveit_sensor_manager ROS parameter -->\n  <arg name=\"moveit_sensor_manager\" default=\"ur_robot_gazebo\" />\n  <include file=\"$(find ur_gripper_85_moveit_config)/launch/$(arg moveit_sensor_manager)_moveit_sensor_manager.launch.xml\" />\n\n</launch>\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/setup_assistant.launch",
    "content": "<!-- Re-launch the MoveIt! Setup Assistant with this configuration package already loaded -->\n<launch>\n\n  <!-- Debug Info -->\n  <arg name=\"debug\" default=\"false\" />\n  <arg unless=\"$(arg debug)\" name=\"launch_prefix\" value=\"\" />\n  <arg     if=\"$(arg debug)\" name=\"launch_prefix\" value=\"gdb --ex run --args\" />\n\n  <!-- Run -->\n  <node pkg=\"moveit_setup_assistant\" type=\"moveit_setup_assistant\" name=\"moveit_setup_assistant\"\n        args=\"--config_pkg=ur_gripper_85_moveit_config\"\n        launch-prefix=\"$(arg launch_prefix)\"\n        output=\"screen\" />\n\n</launch>\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/start_moveit.launch",
    "content": "<launch>\n  <!-- Specific ur robot -->\n  <arg name=\"ur_robot\" default=\"ur3\"/>\n\n  <!-- By default, we do not start a database (it can be large) -->\n  <arg name=\"db\" default=\"false\" />\n  <!-- Allow user to specify database location -->\n  <arg name=\"db_path\" default=\"$(find ur_gripper_85_moveit_config)/default_warehouse_mongo_db\" />\n\n  <!-- By default, we are not in debug mode -->\n  <arg name=\"debug\" default=\"false\" />\n\n  <!--\n  By default, hide joint_state_publisher's GUI\n\n  MoveIt!'s \"demo\" mode replaces the real robot driver with the joint_state_publisher.\n  The latter one maintains and publishes the current joint configuration of the simulated robot.\n  It also provides a GUI to move the simulated robot around \"manually\".\n  This corresponds to moving around the real robot without the use of MoveIt.\n  -->\n  <arg name=\"use_gui\" default=\"false\" />\n\n  <!-- Gazebo specific options -->\n  <arg name=\"gazebo_gui\" default=\"true\"/>\n  <arg name=\"paused\" default=\"false\"/>\n  <!-- By default, use the urdf location provided from the package -->\n  <!-- <arg name=\"urdf_path\" default=\"$(find ur_gripper_85_moveit_config)/config/ur3.urdf\"/> -->\n\n  <!-- launch the gazebo simulator and spawn the robot -->\n  <!-- <include file=\"$(find ur_gripper_85_moveit_config)/launch/gazebo.launch\" >\n    <arg name=\"paused\" value=\"$(arg paused)\"/>\n    <arg name=\"gazebo_gui\" value=\"$(arg gazebo_gui)\"/>\n    <arg name=\"urdf_path\" value=\"$(arg urdf_path)\"/>\n  </include> -->\n\n  <remap from=\"/follow_joint_trajectory\" to=\"/arm_controller/follow_joint_trajectory\"/>\n  <!-- <include file=\"$(find ur_gripper_85_moveit_config)/launch/ros_controllers.launch\"/> -->\n\n  <!-- If needed, broadcast static tf for robot root -->\n  <!-- <include file=\"$(find ur_gripper_85_moveit_config)/launch/gazebo_static_tf.launch\"/> -->\n\n  <!-- We do not have a robot connected, so publish fake joint states -->\n  <!-- <node name=\"joint_state_publisher\" pkg=\"joint_state_publisher\" type=\"joint_state_publisher\">\n    <param name=\"use_gui\" value=\"$(arg use_gui)\"/>\n    <rosparam param=\"source_list\" subst_value=\"True\">[/joint_states]</rosparam>\n  </node> -->\n\n  <!-- Given the published joint states, publish tf for the robot links -->\n  <!-- <node name=\"robot_state_publisher\" pkg=\"robot_state_publisher\" type=\"robot_state_publisher\" respawn=\"true\" output=\"screen\" /> -->\n\n  <!-- Run the main MoveIt! executable without trajectory execution (we do not have controllers configured by default) -->\n  <!-- <group ns=\"\"> -->\n  <!-- <group ns=\"test\"> -->\n  <include file=\"$(find ur_gripper_85_moveit_config)/launch/move_group.launch\">\n    <arg name=\"ur_robot\" default=\"$(arg ur_robot)\"/>\n    <arg name=\"allow_trajectory_execution\" value=\"true\"/>\n    <arg name=\"fake_execution\" value=\"false\"/>\n    <arg name=\"info\" value=\"true\"/>\n    <arg name=\"debug\" value=\"$(arg debug)\"/>\n  </include>  \n  <!-- </group> -->\n\n  <!-- Run Rviz and load the default config to see the state of the move_group node -->\n\n  <node name=\"$(anon rviz)\" launch-prefix=\"\" pkg=\"rviz\" type=\"rviz\" respawn=\"false\"\n\targs=\"-d $(find ur_gripper_85_moveit_config)/launch/moveit.rviz\" output=\"screen\">\n    <rosparam command=\"load\" file=\"$(find ur_gripper_85_moveit_config)/config/kinematics.yaml\"/>\n  </node>\n\n  <!-- If database loading was enabled, start mongodb as well -->\n  <include file=\"$(find ur_gripper_85_moveit_config)/launch/default_warehouse_db.launch\" if=\"$(arg db)\">\n    <arg name=\"moveit_warehouse_database_path\" value=\"$(arg db_path)\"/>\n  </include>\n\n</launch>\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/trajectory_execution.launch.xml",
    "content": "<launch>\n\n  <!-- This file makes it easy to include the settings for trajectory execution  -->\n\n  <arg name=\"execution_type\" default=\"interpolate\" />\n\n  <!-- Flag indicating whether MoveIt! is allowed to load/unload  or switch controllers -->\n  <arg name=\"moveit_manage_controllers\" default=\"true\"/>\n  <param name=\"moveit_manage_controllers\" value=\"$(arg moveit_manage_controllers)\"/>\n\n  <!-- When determining the expected duration of a trajectory, this multiplicative factor is applied to get the allowed duration of execution -->\n  <param name=\"trajectory_execution/allowed_execution_duration_scaling\" value=\"1.2\"/> <!-- default 1.2 -->\n  <!-- Allow more than the expected execution time before triggering a trajectory cancel (applied after scaling) -->\n  <param name=\"trajectory_execution/allowed_goal_duration_margin\" value=\"0.5\"/> <!-- default 0.5 -->\n  <!-- Allowed joint-value tolerance for validation that trajectory's first point matches current robot state -->\n  <param name=\"trajectory_execution/allowed_start_tolerance\" value=\"0.01\"/> <!-- default 0.01 -->\n\n  <!-- Load the robot specific controller manager; this sets the moveit_controller_manager ROS parameter -->\n  <arg name=\"moveit_controller_manager\" default=\"ur_robot_gazebo\" />\n  <include file=\"$(find ur_gripper_85_moveit_config)/launch/$(arg moveit_controller_manager)_moveit_controller_manager.launch.xml\">\n    <arg name=\"execution_type\" value=\"$(arg execution_type)\" />\n  </include>\n\n</launch>\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/ur_robot_gazebo_moveit_controller_manager.launch.xml",
    "content": "<launch>\n  <arg name=\"execution_type\" default=\"interpolate\" />\n\n  <!-- loads moveit_controller_manager on the parameter server which is taken as argument\n    if no argument is passed, moveit_simple_controller_manager will be set -->\n  <arg name=\"moveit_controller_manager\" default=\"moveit_simple_controller_manager/MoveItSimpleControllerManager\" />\n  <param name=\"moveit_controller_manager\" value=\"$(arg moveit_controller_manager)\"/>\n\n  <!-- loads ros_controllers to the param server -->\n  <rosparam file=\"$(find ur_gripper_85_moveit_config)/config/ros_controllers.yaml\"/>\n</launch>\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/ur_robot_gazebo_moveit_sensor_manager.launch.xml",
    "content": "<launch>\n\n</launch>\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/warehouse.launch",
    "content": "<launch>\n\n  <!-- The path to the database must be specified -->\n  <arg name=\"moveit_warehouse_database_path\" />\n\n  <!-- Load warehouse parameters -->\n  <include file=\"$(find ur_gripper_85_moveit_config)/launch/warehouse_settings.launch.xml\" />\n\n  <!-- Run the DB server -->\n  <node name=\"$(anon mongo_wrapper_ros)\" cwd=\"ROS_HOME\" type=\"mongo_wrapper_ros.py\" pkg=\"warehouse_ros_mongo\">\n    <param name=\"overwrite\" value=\"false\"/>\n    <param name=\"database_path\" value=\"$(arg moveit_warehouse_database_path)\" />\n  </node>\n\n</launch>\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/launch/warehouse_settings.launch.xml",
    "content": "<launch>\n  <!-- Set the parameters for the warehouse and run the mongodb server. -->\n\n  <!-- The default DB port for moveit (not default MongoDB port to avoid potential conflicts) -->\n  <arg name=\"moveit_warehouse_port\" default=\"33829\" />\n\n  <!-- The default DB host for moveit -->\n  <arg name=\"moveit_warehouse_host\" default=\"localhost\" />\n\n  <!-- Set parameters for the warehouse -->\n  <param name=\"warehouse_port\" value=\"$(arg moveit_warehouse_port)\"/>\n  <param name=\"warehouse_host\" value=\"$(arg moveit_warehouse_host)\"/>\n  <param name=\"warehouse_exec\" value=\"mongod\" />\n  <param name=\"warehouse_plugin\" value=\"warehouse_ros_mongo::MongoDatabaseConnection\" />\n\n</launch>\n"
  },
  {
    "path": "ur_gripper_85_moveit_config/package.xml",
    "content": "<package>\n\n  <name>ur_gripper_85_moveit_config</name>\n  <version>0.3.0</version>\n  <description>\n     An automatically generated package with all the configuration and launch files for using the ur_robot_gazebo with the MoveIt! Motion Planning Framework\n  </description>\n  <author email=\"cristianbehe@gmail.com\">Cristian Beltran</author>\n  <maintainer email=\"cristianbehe@gmail.com\">Cristian Beltran</maintainer>\n\n  <license>BSD</license>\n\n  <url type=\"website\">http://moveit.ros.org/</url>\n  <url type=\"bugtracker\">https://github.com/ros-planning/moveit/issues</url>\n  <url type=\"repository\">https://github.com/ros-planning/moveit</url>\n\n  <buildtool_depend>catkin</buildtool_depend>\n\n  <run_depend>moveit_ros_move_group</run_depend>\n  <run_depend>moveit_fake_controller_manager</run_depend>\n  <run_depend>moveit_kinematics</run_depend>\n  <run_depend>moveit_planners_ompl</run_depend>\n  <run_depend>moveit_ros_visualization</run_depend>\n  <run_depend>moveit_setup_assistant</run_depend>\n  <run_depend>moveit_simple_controller_manager</run_depend>\n  <run_depend>joint_state_publisher</run_depend>\n  <run_depend>joint_state_publisher_gui</run_depend>\n  <run_depend>robot_state_publisher</run_depend>\n  <run_depend>rviz</run_depend>\n  <run_depend>tf2_ros</run_depend>\n  <run_depend>xacro</run_depend>\n  <!-- This package is referenced in the warehouse launch files, but does not build out of the box at the moment. Commented the dependency until this works. -->\n  <!-- <run_depend>warehouse_ros_mongo</run_depend> -->\n    <run_depend>ur_gripper_gazebo</run_depend>\n\n\n</package>\n"
  },
  {
    "path": "ur_gripper_description/CMakeLists.txt",
    "content": "CMAKE_MINIMUM_REQUIRED(VERSION 3.1.3)\nPROJECT(ur_gripper_description)\n\nFIND_PACKAGE(catkin REQUIRED)\nCATKIN_PACKAGE()\n\nINCLUDE_DIRECTORIES()\n\n#############\n## Install ##\n#############\n\nINSTALL(DIRECTORY launch DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION})\nINSTALL(DIRECTORY urdf DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION})\nINSTALL(DIRECTORY meshes DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION})\n"
  },
  {
    "path": "ur_gripper_description/config/config.rviz",
    "content": "Panels:\n  - Class: rviz/Displays\n    Help Height: 78\n    Name: Displays\n    Property Tree Widget:\n      Expanded:\n        - /Global Options1\n        - /Status1\n      Splitter Ratio: 0.5\n    Tree Height: 425\n  - Class: rviz/Selection\n    Name: Selection\n  - Class: rviz/Tool Properties\n    Expanded:\n      - /2D Pose Estimate1\n      - /2D Nav Goal1\n      - /Publish Point1\n    Name: Tool Properties\n    Splitter Ratio: 0.5886790156364441\n  - Class: rviz/Views\n    Expanded:\n      - /Current View1\n    Name: Views\n    Splitter Ratio: 0.5\n  - Class: rviz/Time\n    Experimental: false\n    Name: Time\n    SyncMode: 0\n    SyncSource: \"\"\nPreferences:\n  PromptSaveOnExit: true\nToolbars:\n  toolButtonStyle: 2\nVisualization Manager:\n  Class: \"\"\n  Displays:\n    - Alpha: 0.5\n      Cell Size: 1\n      Class: rviz/Grid\n      Color: 160; 160; 164\n      Enabled: true\n      Line Style:\n        Line Width: 0.029999999329447746\n        Value: Lines\n      Name: Grid\n      Normal Cell Count: 0\n      Offset:\n        X: 0\n        Y: 0\n        Z: 0\n      Plane: XY\n      Plane Cell Count: 10\n      Reference Frame: <Fixed Frame>\n      Value: true\n    - Alpha: 1\n      Class: rviz/RobotModel\n      Collision Enabled: false\n      Enabled: true\n      Links:\n        All Links Enabled: true\n        Expand Joint Details: false\n        Expand Link Details: false\n        Expand Tree: false\n        Link Tree Style: Links in Alphabetic Order\n        base:\n          Alpha: 1\n          Show Axes: false\n          Show Trail: false\n        base_link:\n          Alpha: 1\n          Show Axes: false\n          Show Trail: false\n          Value: true\n        ee_link:\n          Alpha: 1\n          Show Axes: false\n          Show Trail: false\n          Value: true\n        forearm_link:\n          Alpha: 1\n          Show Axes: false\n          Show Trail: false\n          Value: true\n        hand_e_link:\n          Alpha: 1\n          Show Axes: false\n          Show Trail: false\n          Value: true\n        hande_left_finger:\n          Alpha: 1\n          Show Axes: false\n          Show Trail: false\n          Value: true\n        hande_right_finger:\n          Alpha: 1\n          Show Axes: false\n          Show Trail: false\n          Value: true\n        robotiq_coupler:\n          Alpha: 1\n          Show Axes: false\n          Show Trail: false\n          Value: true\n        shoulder_link:\n          Alpha: 1\n          Show Axes: false\n          Show Trail: false\n          Value: true\n        tool0:\n          Alpha: 1\n          Show Axes: false\n          Show Trail: false\n        upper_arm_link:\n          Alpha: 1\n          Show Axes: false\n          Show Trail: false\n          Value: true\n        ur3_robotiq_hande_gripper:\n          Alpha: 1\n          Show Axes: false\n          Show Trail: false\n        world:\n          Alpha: 1\n          Show Axes: false\n          Show Trail: false\n        wrist_1_link:\n          Alpha: 1\n          Show Axes: false\n          Show Trail: false\n          Value: true\n        wrist_2_link:\n          Alpha: 1\n          Show Axes: false\n          Show Trail: false\n          Value: true\n        wrist_3_link:\n          Alpha: 1\n          Show Axes: false\n          Show Trail: false\n          Value: true\n      Name: RobotModel\n      Robot Description: robot_description\n      TF Prefix: \"\"\n      Update Interval: 0\n      Value: true\n      Visual Enabled: true\n  Enabled: true\n  Global Options:\n    Background Color: 48; 48; 48\n    Default Light: true\n    Fixed Frame: base_link\n    Frame Rate: 30\n  Name: root\n  Tools:\n    - Class: rviz/Interact\n      Hide Inactive Objects: true\n    - Class: rviz/MoveCamera\n    - Class: rviz/Select\n    - Class: rviz/FocusCamera\n    - Class: rviz/Measure\n    - Class: rviz/SetInitialPose\n      Theta std deviation: 0.2617993950843811\n      Topic: /initialpose\n      X std deviation: 0.5\n      Y std deviation: 0.5\n    - Class: rviz/SetGoal\n      Topic: /move_base_simple/goal\n    - Class: rviz/PublishPoint\n      Single click: true\n      Topic: /clicked_point\n  Value: true\n  Views:\n    Current:\n      Class: rviz/Orbit\n      Distance: 1.4697394371032715\n      Enable Stereo Rendering:\n        Stereo Eye Separation: 0.05999999865889549\n        Stereo Focal Distance: 1\n        Swap Stereo Eyes: false\n        Value: false\n      Focal Point:\n        X: -0.03250257670879364\n        Y: -0.014312098734080791\n        Z: 0.15210093557834625\n      Focal Shape Fixed Size: true\n      Focal Shape Size: 0.05000000074505806\n      Invert Z Axis: false\n      Name: Current View\n      Near Clip Distance: 0.009999999776482582\n      Pitch: 0.2603979706764221\n      Target Frame: <Fixed Frame>\n      Value: Orbit (rviz)\n      Yaw: 1.4803974628448486\n    Saved: ~\nWindow Geometry:\n  Displays:\n    collapsed: false\n  Height: 716\n  Hide Left Dock: false\n  Hide Right Dock: true\n  QMainWindow State: 000000ff00000000fd00000004000000000000016a00000232fc0200000008fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000005c00fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c006100790073010000003b00000232000000c700fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261000000010000010f00000242fc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a00560069006500770073000000002800000242000000a000fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000004b00000003efc0100000002fb0000000800540069006d00650100000000000004b00000024400fffffffb0000000800540069006d00650100000000000004500000000000000000000003400000023200000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000\n  Selection:\n    collapsed: false\n  Time:\n    collapsed: false\n  Tool Properties:\n    collapsed: false\n  Views:\n    collapsed: true\n  Width: 1200\n  X: 145\n  Y: 27\n"
  },
  {
    "path": "ur_gripper_description/launch/bringup_with_gripper_85.launch",
    "content": "<?xml version=\"1.0\"?>\n<launch>\n  \n  <arg name=\"ur_robot\" default=\"ur3\"/>\n\n  <arg name=\"debug\" default=\"false\" doc=\"Debug flag that will get passed on to ur_common.launch\"/>\n  <arg name=\"robot_ip\" doc=\"IP address by which the robot can be reached.\"/>\n  <arg name=\"reverse_ip\" default=\"\" doc=\"IP of the driver, if set to empty it will detect it automatically.\"/>\n  <arg name=\"reverse_port\" default=\"50001\" doc=\"Port that will be opened by the driver to allow direct communication between the driver and the robot controller.\"/>\n  <arg name=\"script_sender_port\" default=\"50002\" doc=\"The driver will offer an interface to receive the program's URScript on this port. If the robot cannot connect to this port, `External Control` will stop immediately.\"/>\n  <arg name=\"trajectory_port\" default=\"50003\" doc=\"Port that will be opened by the driver to allow trajectory forwarding.\"/>\n  <arg name=\"script_command_port\" default=\"50004\" doc=\"Port that will be opened by the driver to allow forwarding script commands to the robot.\"/>\n  <arg name=\"tf_prefix\" default=\"\" doc=\"tf_prefix used for the robot.\"/>\n  <arg name=\"controllers\" default=\"joint_state_controller scaled_pos_joint_traj_controller speed_scaling_state_controller force_torque_sensor_controller\" doc=\"Controllers that are activated by default.\"/>\n  <arg name=\"stopped_controllers\" default=\"pos_joint_traj_controller joint_group_vel_controller\" doc=\"Controllers that are initally loaded, but not started.\"/>\n  <arg name=\"controller_config_file\" default=\"$(find ur_robot_driver)/config/ur5e_controllers.yaml\" doc=\"Config file used for defining the ROS-Control controllers.\"/>\n  <arg name=\"kinematics_config\" default=\"$(find ur_description)/config/ur5e/default_kinematics.yaml\" doc=\"Kinematics config file used for calibration correction. This will be used to verify the robot's calibration is matching the robot_description.\"/>\n  <arg name=\"use_tool_communication\" default=\"false\" doc=\"On e-Series robots tool communication can be enabled with this argument\"/>\n  <arg name=\"tool_voltage\" default=\"0\" doc=\"Tool voltage set at the beginning of the UR program. Only used, when `use_tool_communication` is set to true.\"/>\n  <arg name=\"tool_parity\" default=\"0\" doc=\"Parity configuration used for tool communication. Only used, when `use_tool_communication` is set to true.\"/>\n  <arg name=\"tool_baud_rate\" default=\"115200\" doc=\"Baud rate used for tool communication. Only used, when `use_tool_communication` is set to true.\"/>\n  <arg name=\"tool_stop_bits\" default=\"1\" doc=\"Number of stop bits used for tool communication. Only used, when `use_tool_communication` is set to true.\"/>\n  <arg name=\"tool_rx_idle_chars\" default=\"1.5\" doc=\"Number of idle chars in RX channel used for tool communication. Only used, when `use_tool_communication` is set to true.\"/>\n  <arg name=\"tool_tx_idle_chars\" default=\"3.5\" doc=\"Number of idle chars in TX channel used for tool communication. Only used, when `use_tool_communication` is set to true.\"/>\n  <arg name=\"tool_device_name\" default=\"/tmp/ttyUR\" doc=\"Local device name used for tool communication. Only used, when `use_tool_communication` is set to true.\"/>\n  <arg name=\"tool_tcp_port\" default=\"54321\" doc=\"Port on which the robot controller publishes the tool comm interface. Only used, when `use_tool_communication` is set to true.\"/>\n  <arg name=\"headless_mode\" default=\"false\" doc=\"Automatically send URScript to robot to execute. On e-Series this does require the robot to be in 'remote-control' mode. With this, the URCap is not needed on the robot.\"/>\n  <arg name=\"ur_hardware_interface_node_required\" default=\"true\" doc=\"Shut down ros environment if ur_hardware_interface-node dies.\"/>\n  \n  <arg name=\"robot_description_file\" default=\"$(find ur_gripper_description)/launch/load_ur_gripper_85.launch.xml\" doc=\"Robot description launch file.\"/>\n\n  <!-- robot model -->\n  <include file=\"$(arg robot_description_file)\">\n    <arg name=\"ur_robot\" value=\"$(arg ur_robot)\"/>\n    <arg name=\"kinematics_params\" value=\"$(arg kinematics_config)\"/>\n  </include>\n\n  <!-- gripper controller -->\n  <include file=\"$(find robotiq_control)/launch/urcap_cmodel_action_controller.launch\">\n    <arg name=\"address\" value=\"$(arg robot_ip)\" />\n    <arg name=\"config\" value=\"cmodel_action_controller_85\" />\n  </include>\n\n  <!-- Convert joint states to /tf tranforms -->\n  <node name=\"robot_state_publisher\" pkg=\"robot_state_publisher\" type=\"robot_state_publisher\"/>\n\n  <include file=\"$(find ur_robot_driver)/launch/ur_control.launch\">\n    <arg name=\"debug\" value=\"$(arg debug)\"/>\n    <arg name=\"use_tool_communication\" value=\"$(arg use_tool_communication)\"/>\n    <arg name=\"controller_config_file\" value=\"$(arg controller_config_file)\"/>\n    <arg name=\"robot_ip\" value=\"$(arg robot_ip)\"/>\n    <arg name=\"reverse_ip\" value=\"$(arg reverse_ip)\"/>\n    <arg name=\"reverse_port\" value=\"$(arg reverse_port)\"/>\n    <arg name=\"script_sender_port\" value=\"$(arg script_sender_port)\"/>\n    <arg name=\"trajectory_port\" value=\"$(arg trajectory_port)\"/>\n    <arg name=\"script_command_port\" value=\"$(arg script_command_port)\"/>\n    <arg name=\"kinematics_config\" value=\"$(arg kinematics_config)\"/>\n    <arg name=\"tf_prefix\" value=\"$(arg tf_prefix)\"/>\n    <arg name=\"controllers\" value=\"$(arg controllers)\"/>\n    <arg name=\"stopped_controllers\" value=\"$(arg stopped_controllers)\"/>\n    <arg name=\"headless_mode\" value=\"$(arg headless_mode)\"/>\n    <arg name=\"tool_voltage\" value=\"$(arg tool_voltage)\"/>\n    <arg name=\"tool_parity\" value=\"$(arg tool_parity)\"/>\n    <arg name=\"tool_baud_rate\" value=\"$(arg tool_baud_rate)\"/>\n    <arg name=\"tool_stop_bits\" value=\"$(arg tool_stop_bits)\"/>\n    <arg name=\"tool_rx_idle_chars\" value=\"$(arg tool_rx_idle_chars)\"/>\n    <arg name=\"tool_tx_idle_chars\" value=\"$(arg tool_tx_idle_chars)\"/>\n    <arg name=\"tool_device_name\" value=\"$(arg tool_device_name)\"/>\n    <arg name=\"tool_tcp_port\" value=\"$(arg tool_tcp_port)\"/>\n    <arg name=\"ur_hardware_interface_node_required\" value=\"$(arg ur_hardware_interface_node_required)\"/>\n  </include>\n</launch>\n"
  },
  {
    "path": "ur_gripper_description/launch/display_with_gripper_85.launch",
    "content": "<?xml version=\"1.0\"?>\r\n<launch>\r\n  <arg name=\"gui\" default=\"True\" />\r\n  \r\n  <arg name=\"robot_description_file\" default=\"$(find ur_gripper_description)/launch/load_ur_gripper_85.launch.xml\" \r\n                                     doc=\"Launch file which populates the 'robot_description' parameter.\"/>\r\n  <arg name=\"ur_robot\" default=\"ur3\"/>\r\n\r\n  <!-- Load urdf on the parameter server -->\r\n  <include file=\"$(arg robot_description_file)\">\r\n    <arg name=\"ur_robot\" value=\"$(arg ur_robot)\"/>\r\n  </include>\r\n\r\n  <param name=\"use_gui\" value=\"$(arg gui)\"/>\r\n  <node name=\"joint_state_publisher\" pkg=\"joint_state_publisher\" type=\"joint_state_publisher\" />\r\n  \r\n  <node name=\"robot_state_publisher\" pkg=\"robot_state_publisher\" type=\"robot_state_publisher\" />\r\n  \r\n  <node name=\"rviz\" pkg=\"rviz\" type=\"rviz\" args=\"-d $(find ur_gripper_description)/config/config.rviz\" required=\"true\" />\r\n\r\n</launch>\r\n"
  },
  {
    "path": "ur_gripper_description/launch/display_with_gripper_hande.launch",
    "content": "<?xml version=\"1.0\"?>\r\n<launch>\r\n  <arg name=\"gui\" default=\"true\" />\r\n\r\n  <arg name=\"robot_description_file\" default=\"$(find ur_gripper_description)/launch/load_ur_gripper_hande.launch.xml\" \r\n                                     doc=\"Launch file which populates the 'robot_description' parameter.\"/>\r\n  <arg name=\"ur_robot\" default=\"ur3\"/>\r\n\r\n  <!-- Load urdf on the parameter server -->\r\n  <include file=\"$(arg robot_description_file)\">\r\n    <arg name=\"ur_robot\" value=\"$(arg ur_robot)\"/>\r\n  </include>\r\n  \r\n  <param name=\"use_gui\" value=\"$(arg gui)\"/>\r\n  <node name=\"joint_state_publisher\" pkg=\"joint_state_publisher\" type=\"joint_state_publisher\" />\r\n  \r\n  <node name=\"robot_state_publisher\" pkg=\"robot_state_publisher\" type=\"robot_state_publisher\" />\r\n  \r\n  <node name=\"rviz\" pkg=\"rviz\" type=\"rviz\" args=\"-d $(find ur_gripper_description)/config/config.rviz\" required=\"true\" />\r\n\r\n</launch>\r\n"
  },
  {
    "path": "ur_gripper_description/launch/load_ur_gripper_85.launch.xml",
    "content": "<?xml version=\"1.0\"?>\n<launch>\n\n  <!--Parameter files -->\n  <arg name=\"ur_robot\" default=\"ur3\"/>\n  \n  <!--Common parameters -->\n  <arg name=\"transmission_hw_interface\" default=\"hardware_interface/PositionJointInterface\" doc=\"The hardware_interface to expose for each joint in the simulated robot (one of: [PositionJointInterface, VelocityJointInterface, EffortJointInterface])\"/>\n  <arg name=\"safety_limits\" default=\"false\" doc=\"If True, enable the safety limits controller\"/>\n  <arg name=\"safety_pos_margin\" default=\"0.15\" doc=\"The lower/upper limits in the safety controller\" />\n  <arg name=\"safety_k_position\" default=\"20\" doc=\"Used to set k position in the safety controller\" />\n  <arg name=\"kinematics_params\" default=\"$(find ur_description)/config/$(arg ur_robot)/default_kinematics.yaml\"/>\n\n  <param name=\"robot_description\" command=\"$(find xacro)/xacro '$(find ur_gripper_description)/urdf/ur_gripper_85.xacro'\n    joint_limit_params:='$(find ur_description)/config/$(arg ur_robot)/joint_limits.yaml'\n    kinematics_params:='$(arg kinematics_params)'\n    physical_params:='$(find ur_description)/config/$(arg ur_robot)/physical_parameters.yaml'\n    visual_params:='$(find ur_description)/config/$(arg ur_robot)/visual_parameters.yaml'\n    transmission_hw_interface:=$(arg transmission_hw_interface)\n    safety_limits:=$(arg safety_limits)\n    safety_pos_margin:=$(arg safety_pos_margin)\n    safety_k_position:=$(arg safety_k_position)\"\n    />\n</launch>\n"
  },
  {
    "path": "ur_gripper_description/launch/load_ur_gripper_hande.launch.xml",
    "content": "<?xml version=\"1.0\"?>\n<launch>\n\n  <!--Parameter files -->\n  <arg name=\"ur_robot\" default=\"ur3e\"/>\n\n  <!--Common parameters -->\n  <arg name=\"transmission_hw_interface\" default=\"hardware_interface/PositionJointInterface\" doc=\"The hardware_interface to expose for each joint in the simulated robot (one of: [PositionJointInterface, VelocityJointInterface, EffortJointInterface])\"/>\n  <arg name=\"safety_limits\" default=\"false\" doc=\"If True, enable the safety limits controller\"/>\n  <arg name=\"safety_pos_margin\" default=\"0.15\" doc=\"The lower/upper limits in the safety controller\" />\n  <arg name=\"safety_k_position\" default=\"20\" doc=\"Used to set k position in the safety controller\" />\n\n  <param name=\"robot_description\" command=\"$(find xacro)/xacro '$(find ur_gripper_description)/urdf/ur_gripper_hande.xacro'\n    joint_limit_params:='$(find ur_description)/config/$(arg ur_robot)/joint_limits.yaml'\n    kinematics_params:='$(find ur_description)/config/$(arg ur_robot)/default_kinematics.yaml'\n    physical_params:='$(find ur_description)/config/$(arg ur_robot)/physical_parameters.yaml'\n    visual_params:='$(find ur_description)/config/$(arg ur_robot)/visual_parameters.yaml'\n    transmission_hw_interface:=$(arg transmission_hw_interface)\n    safety_limits:=$(arg safety_limits)\n    safety_pos_margin:=$(arg safety_pos_margin)\n    safety_k_position:=$(arg safety_k_position)\"\n    />\n</launch>\n"
  },
  {
    "path": "ur_gripper_description/package.xml",
    "content": "<?xml version=\"1.0\"?>\n\n<package format=\"2\">\n  <name>ur_gripper_description</name>\n  <version>0.1.0</version>\n  <description>\n    URDF description for Universal UR3 robot with a robotiq gripper.\n    The model for the UR3 robot (without gripper) was taken from:\n    https://github.com/ros-industrial/universal_robot.git\n    inspired also on http://osrobotics.org/osr/ implementation of denso\n    robot with robotiq gripper.\n  </description>\n\n  <author email=\"beltran@hlab.sys.es.osaka-u.ac.jp\">Cristian Beltran</author>\n  <maintainer email=\"beltran@hlab.sys.es.osaka-u.ac.jp\">Cristian Beltran</maintainer>\n  <license>BSD</license>\n\n  <buildtool_depend>catkin</buildtool_depend>\n  <exec_depend>robotiq_description</exec_depend>\n  \n  <export>\n  </export>\n\n</package>\n"
  },
  {
    "path": "ur_gripper_description/urdf/ur_gripper_85.xacro",
    "content": "<?xml version=\"1.0\"?>\n<robot xmlns:xacro=\"http://wiki.ros.org/xacro\" name=\"ur_robot\">\n\n  <xacro:include filename=\"$(find ur_description)/urdf/inc/ur_macro.xacro\"/>\n\n  <!--Declare arguments -->\n  <xacro:arg name=\"joint_limit_params\" default=\"\"/>\n  <xacro:arg name=\"physical_params\" default=\"\"/>\n  <xacro:arg name=\"kinematics_params\" default=\"\"/>\n  <xacro:arg name=\"visual_params\" default=\"\"/>\n  <!--\n    legal values:\n      - hardware_interface/PositionJointInterface\n      - hardware_interface/VelocityJointInterface\n      - hardware_interface/EffortJointInterface\n    NOTE: this value must correspond to the controller configured in the\n          controller .yaml files in the 'config' directory.\n  -->\n  <xacro:arg name=\"transmission_hw_interface\" default=\"hardware_interface/PositionJointInterface\"/>\n  <xacro:arg name=\"safety_limits\" default=\"false\"/>\n  <xacro:arg name=\"safety_pos_margin\" default=\"0.15\"/>\n  <xacro:arg name=\"safety_k_position\" default=\"20\"/>\n\n  <!-- Instantiate the Gazebo robot and pass it all the required arguments. -->\n  <xacro:ur_robot\n    prefix=\"\"\n    joint_limits_parameters_file=\"$(arg joint_limit_params)\"\n    kinematics_parameters_file=\"$(arg kinematics_params)\"\n    physical_parameters_file=\"$(arg physical_params)\"\n    visual_parameters_file=\"$(arg visual_params)\"\n    transmission_hw_interface=\"$(arg transmission_hw_interface)\"\n    safety_limits=\"$(arg safety_limits)\"\n    safety_pos_margin=\"$(arg safety_pos_margin)\"\n    safety_k_position=\"$(arg safety_k_position)\"\n  />\n\n  <!-- Gripper -->\n\n  <xacro:include filename=\"$(find robotiq_description)/urdf/robotiq_85_gripper.urdf.xacro\" />\n\n  <xacro:robotiq_85_gripper prefix=\"\" parent=\"tool0\">\n      <origin rpy=\"0.0 ${-pi/2} ${pi/2}\" xyz=\"0.01 0 0\"/> <!-- This 0.01 offset is the Robotiq/UR coupling -->\n  </xacro:robotiq_85_gripper>\n\n  <link name=\"coupling\">\n    <visual>\n      <origin rpy=\"0 0 0\" xyz=\".005 0 0\"/>\n      <geometry>\n        <cylinder length=\"0.01\" radius=\"0.0375\"/>\n      </geometry>\n      <material name=\"black\">\n      <color rgba=\".1 .1 .1 1\"/>\n    </material>\n    </visual>\n    <collision>\n      <origin rpy=\"0 0 0\" xyz=\".005 0 0\"/>\n      <geometry>\n        <cylinder length=\"0.01\" radius=\"0.0375\"/>\n      </geometry>\n    </collision>\n  </link>\n  <joint name=\"coupling_joint\" type=\"fixed\">\n    <parent link=\"tool0\" />\n    <child link = \"coupling\" />\n    <origin rpy=\"0 0 0\" xyz=\"0 0 0\"/>\n  </joint>\n  \n</robot>"
  },
  {
    "path": "ur_gripper_description/urdf/ur_gripper_hande.xacro",
    "content": "<?xml version=\"1.0\"?>\n<robot xmlns:xacro=\"http://wiki.ros.org/xacro\" name=\"ur_robot\">\n\n  <xacro:include filename=\"$(find ur_description)/urdf/inc/ur_macro.xacro\"/>\n\n  <!--Declare arguments -->\n  <xacro:arg name=\"joint_limit_params\" default=\"\"/>\n  <xacro:arg name=\"physical_params\" default=\"\"/>\n  <xacro:arg name=\"kinematics_params\" default=\"\"/>\n  <xacro:arg name=\"visual_params\" default=\"\"/>\n  <!--\n    legal values:\n      - hardware_interface/PositionJointInterface\n      - hardware_interface/VelocityJointInterface\n      - hardware_interface/EffortJointInterface\n    NOTE: this value must correspond to the controller configured in the\n          controller .yaml files in the 'config' directory.\n  -->\n  <xacro:arg name=\"transmission_hw_interface\" default=\"hardware_interface/PositionJointInterface\"/>\n  <xacro:arg name=\"safety_limits\" default=\"false\"/>\n  <xacro:arg name=\"safety_pos_margin\" default=\"0.15\"/>\n  <xacro:arg name=\"safety_k_position\" default=\"20\"/>\n\n  <!-- Instantiate the Gazebo robot and pass it all the required arguments. -->\n  <xacro:ur_robot\n    prefix=\"\"\n    joint_limits_parameters_file=\"$(arg joint_limit_params)\"\n    kinematics_parameters_file=\"$(arg kinematics_params)\"\n    physical_parameters_file=\"$(arg physical_params)\"\n    visual_parameters_file=\"$(arg visual_params)\"\n    transmission_hw_interface=\"$(arg transmission_hw_interface)\"\n    safety_limits=\"$(arg safety_limits)\"\n    safety_pos_margin=\"$(arg safety_pos_margin)\"\n    safety_k_position=\"$(arg safety_k_position)\"\n  />\n\n  <!-- Gripper -->\n\n  <xacro:include filename=\"$(find robotiq_description)/urdf/robotiq_hande_gripper.urdf.xacro\" />\n  <!-- Attach the robotiq hand-e gripper -->\n  <xacro:robotiq_hande_gripper prefix=\"\" parent=\"coupling\" >\n    <origin xyz=\"0.01 0 0\" rpy=\"0 0 0\"/>\n  </xacro:robotiq_hande_gripper> \n\n  <link name=\"coupling\">\n    <visual>\n      <origin rpy=\"0 0 0\" xyz=\".005 0 0\"/>\n      <geometry>\n        <cylinder length=\"0.01\" radius=\"0.0375\"/>\n      </geometry>\n      <material name=\"black\">\n      <color rgba=\".1 .1 .1 1\"/>\n    </material>\n    </visual>\n    <collision>\n      <origin rpy=\"0 0 0\" xyz=\".005 0 0\"/>\n      <geometry>\n        <cylinder length=\"0.01\" radius=\"0.0375\"/>\n      </geometry>\n    </collision>\n  </link>\n  <joint name=\"coupling_joint\" type=\"fixed\">\n    <parent link=\"tool0\" />\n    <child link = \"coupling\" />\n    <origin rpy=\"0 0 0\" xyz=\"0 0 0\"/>\n  </joint>\n</robot>"
  },
  {
    "path": "ur_gripper_gazebo/CMakeLists.txt",
    "content": "CMAKE_MINIMUM_REQUIRED(VERSION 3.1.3)\nPROJECT(ur_gripper_gazebo)\n\nFIND_PACKAGE(catkin REQUIRED)\n\ncatkin_python_setup()\n\ncatkin_package()\ninclude_directories()\n\n"
  },
  {
    "path": "ur_gripper_gazebo/launch/gazebo_to_tf.launch",
    "content": "<launch>\n    <node name=\"gazebo_to_tf\" pkg=\"ur_gripper_gazebo\" type=\"gazebo_to_tf.py\"  output=\"screen\"/>\n</launch>"
  },
  {
    "path": "ur_gripper_gazebo/launch/inc/load_ur_gripper_85.launch.xml",
    "content": "<?xml version=\"1.0\"?>\n<launch>\n\n  <!--Parameter files -->\n  <arg name=\"ur_robot\" default=\"ur3\"/>\n  <arg name=\"grasp_plugin\" default=\"false\"/>\n  <param name=\"grasp_plugin\" type=\"bool\" value=\"$(arg grasp_plugin)\"/>\n  <param name=\"use_gazebo_sim\" type=\"bool\" value=\"true\" />\n\n  <!--Common parameters -->\n  <arg name=\"transmission_hw_interface\" default=\"hardware_interface/PositionJointInterface\" doc=\"The hardware_interface to expose for each joint in the simulated robot (one of: [PositionJointInterface, VelocityJointInterface, EffortJointInterface])\"/>\n  <arg name=\"safety_limits\" default=\"false\" doc=\"If True, enable the safety limits controller\"/>\n  <arg name=\"safety_pos_margin\" default=\"0.15\" doc=\"The lower/upper limits in the safety controller\" />\n  <arg name=\"safety_k_position\" default=\"20\" doc=\"Used to set k position in the safety controller\" />\n\n  <param name=\"robot_description\" command=\"$(find xacro)/xacro '$(find ur_gripper_gazebo)/urdf/ur_gripper_85.xacro'\n    joint_limit_params:='$(find ur_description)/config/$(arg ur_robot)/joint_limits.yaml'\n    kinematics_params:='$(find ur_description)/config/$(arg ur_robot)/default_kinematics.yaml'\n    physical_params:='$(find ur_description)/config/$(arg ur_robot)/physical_parameters.yaml'\n    visual_params:='$(find ur_description)/config/$(arg ur_robot)/visual_parameters.yaml'\n    transmission_hw_interface:=$(arg transmission_hw_interface)\n    safety_limits:=$(arg safety_limits)\n    safety_pos_margin:=$(arg safety_pos_margin)\n    safety_k_position:=$(arg safety_k_position)\n    grasp_plugin:=$(arg grasp_plugin)\"\n    />\n</launch>\n"
  },
  {
    "path": "ur_gripper_gazebo/launch/inc/load_ur_gripper_hande.launch.xml",
    "content": "<?xml version=\"1.0\"?>\n<launch>\n\n  <!--Parameter files -->\n  <arg name=\"ur_robot\" default=\"ur3e\"/>\n  <arg name=\"grasp_plugin\" default=\"false\"/>\n  <param name=\"grasp_plugin\" type=\"bool\" value=\"$(arg grasp_plugin)\"/>\n  <param name=\"use_gazebo_sim\" type=\"bool\" value=\"true\" />\n\n  <!--Common parameters -->\n  <arg name=\"transmission_hw_interface\" default=\"hardware_interface/PositionJointInterface\" doc=\"The hardware_interface to expose for each joint in the simulated robot (one of: [PositionJointInterface, VelocityJointInterface, EffortJointInterface])\"/>\n  <arg name=\"safety_limits\" default=\"false\" doc=\"If True, enable the safety limits controller\"/>\n  <arg name=\"safety_pos_margin\" default=\"0.15\" doc=\"The lower/upper limits in the safety controller\" />\n  <arg name=\"safety_k_position\" default=\"20\" doc=\"Used to set k position in the safety controller\" />\n\n  <param name=\"robot_description\" command=\"$(find xacro)/xacro '$(find ur_gripper_gazebo)/urdf/ur_gripper_hande.xacro'\n    joint_limit_params:='$(find ur_description)/config/$(arg ur_robot)/joint_limits.yaml'\n    kinematics_params:='$(find ur_description)/config/$(arg ur_robot)/default_kinematics.yaml'\n    physical_params:='$(find ur_description)/config/$(arg ur_robot)/physical_parameters.yaml'\n    visual_params:='$(find ur_description)/config/$(arg ur_robot)/visual_parameters.yaml'\n    transmission_hw_interface:=$(arg transmission_hw_interface)\n    safety_limits:=$(arg safety_limits)\n    safety_pos_margin:=$(arg safety_pos_margin)\n    safety_k_position:=$(arg safety_k_position)\n    grasp_plugin:=$(arg grasp_plugin)\"\n    />\n</launch>\n"
  },
  {
    "path": "ur_gripper_gazebo/launch/ur3_cubes_example.launch",
    "content": "<?xml version=\"1.0\"?>\n<launch>\n  <include file=\"$(find ur_gripper_gazebo)/launch/ur_gripper_85_cubes.launch\">\n    <arg name=\"ur_robot\" value=\"ur3\"/>\n  </include>\n</launch>\n"
  },
  {
    "path": "ur_gripper_gazebo/launch/ur3e_cubes_example.launch",
    "content": "<?xml version=\"1.0\"?>\n<launch>\n  <include file=\"$(find ur_gripper_gazebo)/launch/ur_gripper_hande_cubes.launch\">\n    <arg name=\"ur_robot\" value=\"ur3e\"/>\n  </include>\n</launch>\n"
  },
  {
    "path": "ur_gripper_gazebo/launch/ur3e_with_gripper.launch",
    "content": "<?xml version=\"1.0\"?>\n<launch>\n  <!-- Export env variable so that gazebo finds our models -->\n  <env name=\"GAZEBO_MODEL_PATH\"\n       value=\"$(find ur_gripper_gazebo)/models:$(optenv GAZEBO_MODEL_PATH)\" />\n  <!-- Ignore online database -->\n  <env name=\"GAZEBO_MODEL_DATABASE_URI\"\n       value=\"/\" />\n  <!-- Launch file parameters -->\n  <arg name=\"paused\"     default=\"true\"/>\n  <arg name=\"debug\"      default=\"false\"/>\n  <arg name=\"gui\"        default=\"true\"/>\n  <arg name=\"rate\"       default=\"500\" />\n  <arg name=\"grasp_plugin\" default=\"false\"/>\n\n  <!--Robot description and related parameter files -->\n  <arg name=\"robot_description_file\" default=\"$(dirname)/inc/load_ur_gripper_hande.launch.xml\" \n                                     doc=\"Launch file which populates the 'robot_description' parameter.\"/>\n  <arg name=\"ur_robot\" default=\"ur3e\"/>\n  \n  <!-- Start up simulated world -->\n  <include file=\"$(find gazebo_ros)/launch/empty_world.launch\">\n    <!-- <arg name=\"world_name\" value=\"$(arg world_name)\"/> -->\n    <arg name=\"paused\"     value=\"$(arg paused)\"/>\n    <arg name=\"debug\"      value=\"$(arg debug)\"/>\n    <arg name=\"gui\"        value=\"$(arg gui)\"/>\n    <!-- <arg name=\"physics\"    value=\"bullet\"/> -->\n  </include>\n\n  <include file=\"$(find ur_control)/launch/ur_e_controllers.launch\">\n  </include>\n\n  <!-- Load urdf on the parameter server -->\n  <include file=\"$(arg robot_description_file)\">\n    <arg name=\"ur_robot\" value=\"$(arg ur_robot)\"/>\n    <arg name=\"grasp_plugin\" value=\"$(arg grasp_plugin)\"/>\n  </include>\n\n  <node name=\"spawn_gazebo_model\" pkg=\"gazebo_ros\" type=\"spawn_model\"\n        args=\"-urdf -param robot_description -model robot -unpause\"\n        output=\"screen\" />\n\n</launch>\n"
  },
  {
    "path": "ur_gripper_gazebo/launch/ur5_cubes_example.launch",
    "content": "<?xml version=\"1.0\"?>\n<launch>\n  <include file=\"$(find ur_gripper_gazebo)/launch/ur_gripper_85_cubes.launch\">\n    <arg name=\"ur_robot\" value=\"ur5\"/>\n  </include>\n</launch>\n"
  },
  {
    "path": "ur_gripper_gazebo/launch/ur_gripper_85_cubes.launch",
    "content": "<?xml version=\"1.0\"?>\n<launch>\n  <!-- Export env variable so that gazebo finds our models -->\n  <env name=\"GAZEBO_MODEL_PATH\"\n       value=\"$(find ur_gripper_gazebo)/models:$(optenv GAZEBO_MODEL_PATH)\" />\n  <!-- Ignore online database -->\n  <env name=\"GAZEBO_MODEL_DATABASE_URI\"\n       value=\"/\" />\n  <!-- Launch file parameters -->\n  <arg name=\"paused\"     default=\"true\"/>\n  <arg name=\"debug\"      default=\"false\"/>\n  <arg name=\"gui\"        default=\"true\"/>\n  <arg name=\"rate\"       default=\"500\" />\n  <arg name=\"world_name\" default=\"$(find ur_gripper_gazebo)/worlds/cubes_task.world\" />\n  <arg name=\"grasp_plugin\" default=\"false\"/>\n\n  <!--Robot description and related parameter files -->\n  <arg name=\"robot_description_file\" default=\"$(dirname)/inc/load_ur_gripper_85.launch.xml\" doc=\"Launch file which populates the 'robot_description' parameter.\"/>\n  <arg name=\"ur_robot\" default=\"ur3\"/>\n\n  <!-- Start up simulated world -->\n  <include file=\"$(find gazebo_ros)/launch/empty_world.launch\">\n    <arg name=\"world_name\" value=\"$(arg world_name)\"/>\n    <arg name=\"paused\"     value=\"$(arg paused)\"/>\n    <arg name=\"debug\"      value=\"$(arg debug)\"/>\n    <arg name=\"gui\"        value=\"$(arg gui)\"/>\n  </include>\n\n  <include file=\"$(find ur_control)/launch/ur_controllers.launch\">\n    <arg name=\"gripper_robotiq_85\" value=\"true\" />\n  </include>\n\n  <!-- Load urdf on the parameter server -->\n  <include file=\"$(arg robot_description_file)\">\n    <arg name=\"ur_robot\" value=\"$(arg ur_robot)\"/>\n    <arg name=\"grasp_plugin\" value=\"$(arg grasp_plugin)\"/>\n  </include>\n  <!-- Spawn robot in gazebo (and move it upwards):\n       better initial values should be -2.355 and 1.57 but the robot does\n       something strange when unpausing it\n  -->\n  <node name=\"spawn_gazebo_model\" pkg=\"gazebo_ros\" type=\"spawn_model\"\n        args=\"-urdf -param robot_description -model robot \n              -x 0.11 -z 0.69 -Y -1.5707\n              -J shoulder_pan_joint 1.57\n              -J shoulder_lift_joint -1.57\n              -J elbow_joint 1.26\n              -J wrist_1_joint -1.57\n              -J wrist_2_joint -1.57\n              -unpause\"\n        output=\"screen\" />\n\n\n</launch>\n"
  },
  {
    "path": "ur_gripper_gazebo/launch/ur_gripper_hande_cubes.launch",
    "content": "<?xml version=\"1.0\"?>\n<launch>\n  <!-- Export env variable so that gazebo finds our models -->\n  <env name=\"GAZEBO_MODEL_PATH\"\n       value=\"$(find ur_gripper_gazebo)/models:$(optenv GAZEBO_MODEL_PATH)\" />\n  <!-- Ignore online database -->\n  <env name=\"GAZEBO_MODEL_DATABASE_URI\"\n       value=\"/\" />\n  <!-- Launch file parameters -->\n  <arg name=\"paused\"     default=\"true\"/>\n  <arg name=\"debug\"      default=\"false\"/>\n  <arg name=\"gui\"        default=\"true\"/>\n  <arg name=\"rate\"       default=\"500\" />\n  <arg name=\"world_name\" default=\"$(find ur_gripper_gazebo)/worlds/cubes_task.world\" />\n  <arg name=\"grasp_plugin\" default=\"false\"/>\n\n  <!--Robot description and related parameter files -->\n  <arg name=\"robot_description_file\" default=\"$(dirname)/inc/load_ur_gripper_hande.launch.xml\" doc=\"Launch file which populates the 'robot_description' parameter.\"/>\n  <arg name=\"ur_robot\" default=\"ur3e\"/>\n\n  <!-- Start up simulated world -->\n  <include file=\"$(find gazebo_ros)/launch/empty_world.launch\">\n    <arg name=\"world_name\" value=\"$(arg world_name)\"/>\n    <arg name=\"paused\"     value=\"$(arg paused)\"/>\n    <arg name=\"debug\"      value=\"$(arg debug)\"/>\n    <arg name=\"gui\"        value=\"$(arg gui)\"/>\n  </include>\n\n  <include file=\"$(find ur_control)/launch/ur_e_controllers.launch\">\n    <arg name=\"gripper_robotiq_hande\" value=\"true\" />\n  </include>\n\n  <!-- Load urdf on the parameter server -->\n  <include file=\"$(arg robot_description_file)\">\n    <arg name=\"ur_robot\" value=\"$(arg ur_robot)\"/>\n    <arg name=\"grasp_plugin\" value=\"$(arg grasp_plugin)\"/>\n  </include>\n  <!-- Spawn robot in gazebo (and move it upwards):\n       better initial values should be -2.355 and 1.57 but the robot does\n       something strange when unpausing it\n  -->\n  <node name=\"spawn_gazebo_model\" pkg=\"gazebo_ros\" type=\"spawn_model\"\n        args=\"-urdf -param robot_description -model robot \n              -x 0.11 -z 0.69 -Y -1.5707\n              -J shoulder_pan_joint 1.57\n              -J shoulder_lift_joint -1.57\n              -J elbow_joint 1.26\n              -J wrist_1_joint -1.57\n              -J wrist_2_joint -1.57\n              -unpause\"\n        output=\"screen\" />\n\n\n</launch>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/floor/materials/scripts/checkboard.material",
    "content": "material CheckerTexture\n{\n  technique\n  {\n    pass\n    {\n      texture_unit\n      {\n        // Relative to the location of the material script\n        texture ../textures/checkerboard.jpg\n        // Repeat the texture over the surface (4 per face)\n        scale .1 .1\n      }\n    }\n  }\n}"
  },
  {
    "path": "ur_gripper_gazebo/models/floor/model.config",
    "content": "<?xml version=\"1.0\"?>\n\n<model>\n  <name>Floor</name>\n  <version>1.0</version>\n  <sdf version=\"1.5\">model.sdf</sdf>\n\n  <author>\n    <name>Cristian Beltran</name>\n    <email>cristianbehe@gmail.com</email>\n  </author>\n\n  <description>\n    A simple ground plane.\n  </description>\n</model>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/floor/model.sdf",
    "content": "<?xml version=\"1.0\" ?>\n<sdf version=\"1.5\">\n  <model name=\"floor\">\n    <static>true</static>\n    <link name=\"link\">\n      <collision name=\"collision\">\n        <geometry>\n          <plane>\n            <normal>0 0 1</normal>\n            <size>10 10</size>\n          </plane>\n        </geometry>\n        <surface>\n          <contact>\n             <collide_bitmask>0xffff</collide_bitmask>\n          </contact>\n          <friction>\n            <ode>\n              <mu>100</mu>\n              <mu2>50</mu2>\n            </ode>\n          </friction>\n        </surface>\n      </collision>\n      <visual name=\"visual\">\n        <cast_shadows>false</cast_shadows>\n        <geometry>\n          <plane>\n            <normal>0 0 1</normal>\n            <size>100 100</size>\n          </plane>\n        </geometry>\n        <material>\n          <script>\n            <uri>model://floor/materials/scripts/checkboard.material</uri>\n            <name>CheckerTexture</name>\n          </script>\n        </material>\n      </visual>\n    </link>\n  </model>\n</sdf>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/green_table/materials/scripts/repeated.material",
    "content": "material RepeatedTexture\n{\n  technique\n  {\n    pass\n    {\n      texture_unit\n      {\n        // Relative to the location of the material script\n        texture ../textures/green_texture.jpg\n        // Repeat the texture over the surface (4 per face)\n        scale 0.5 0.5\n      }\n    }\n  }\n}"
  },
  {
    "path": "ur_gripper_gazebo/models/green_table/model.config",
    "content": "<?xml version=\"1.0\"?>\n\n<model>\n  <name>green_table</name>\n  <version>1.0</version>\n  <sdf version=\"1.6\">model.sdf</sdf>\n\n  <author>\n    <name>Cristian beltran</name>\n    <email>cristianbehe@gmail.com</email>\n  </author>\n\n  <description>\n    Green table\n  </description>\n</model>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/green_table/model.sdf",
    "content": "<?xml version=\"1.0\"?>\n\n<sdf version=\"1.6\">\n  <model name=\"green_table\">\n    <static>true</static>\n\n    <link name=\"top_plate\">\n      <pose>0 0 0.75 0 0 0</pose>\n      <collision name=\"top_plate_collision\">\n        <geometry>\n          <box>\n            <size>0.8 1.2 0.02</size>\n          </box>\n        </geometry>\n        <surface>\n          <contact>\n            <collide_bitmask>0x01</collide_bitmask>\n          </contact>\n        </surface>\n      </collision>\n      <visual name=\"top_plate_visual\">\n        <geometry>\n          <box>\n            <size>0.8 1.2 0.02</size>\n          </box>\n        </geometry>\n        <material>\n          <script>\n            <uri>model://green_table/materials/scripts/repeated.material</uri>\n            <name>RepeatedTexture</name>\n          </script>\n        </material>\n      </visual>\n    </link>\n    <link name=\"leg1\">\n      <pose>0.3 0.5 0.375 0 0 0</pose>\n      <visual name=\"leg1_visual\">\n        <geometry>\n          <box>\n            <size>0.04 0.04 0.75</size>\n          </box>\n        </geometry>\n        <material>\n          <script>\n            <uri>model://media/materials/scripts/gazebo.material</uri>\n            <name>Gazebo/Grey</name>\n          </script>\n        </material>\n      </visual>\n    </link>\n    <link name=\"leg2\">\n      <pose>-0.3 0.5 0.375 0 0 0</pose>\n      <!-- <collision name=\"leg2_collision\">\n        <geometry>\n          <box>\n            <size>0.04 0.04 0.75</size>\n          </box>\n        </geometry>\n      </collision> -->\n      <visual name=\"leg2_visual\">\n        <geometry>\n          <box>\n            <size>0.04 0.04 0.75</size>\n          </box>\n        </geometry>\n        <material>\n          <script>\n            <uri>model://media/materials/scripts/gazebo.material</uri>\n            <name>Gazebo/Grey</name>\n          </script>\n        </material>\n      </visual>\n    </link>\n    <link name=\"leg3\">\n      <pose>0.3 -0.5 0.375 0 0 0</pose>\n      <!-- <collision name=\"leg3_collision\">\n        <geometry>\n          <box>\n            <size>0.04 0.04 0.75</size>\n          </box>\n        </geometry>\n      </collision> -->\n      <visual name=\"leg3_visual\">\n        <geometry>\n          <box>\n            <size>0.04 0.04 0.75</size>\n          </box>\n        </geometry>\n        <material>\n          <script>\n            <uri>model://media/materials/scripts/gazebo.material</uri>\n            <name>Gazebo/Grey</name>\n          </script>\n        </material>\n      </visual>\n    </link>\n    <link name=\"leg4\">\n      <pose>-0.3 -0.5 0.375 0 0 0</pose>\n      <!-- <collision name=\"leg4_collision\">\n        <geometry>\n          <box>\n            <size>0.04 0.04 0.75</size>\n          </box>\n        </geometry>\n      </collision> -->\n      <visual name=\"leg4_visual\">\n        <geometry>\n          <box>\n            <size>0.04 0.04 0.75</size>\n          </box>\n        </geometry>\n        <material>\n          <script>\n            <uri>model://media/materials/scripts/gazebo.material</uri>\n            <name>Gazebo/Grey</name>\n          </script>\n        </material>\n      </visual>\n    </link>\n  </model>\n</sdf>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/multi_peg_board/meshes/board.dae",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<COLLADA xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" version=\"1.4.1\">\n    <asset>\n        <contributor>\n            <author>VCGLab</author>\n            <authoring_tool>VCGLib | MeshLab</authoring_tool>\n        </contributor>\n        <up_axis>Y_UP</up_axis>\n        <created>金 6月 21 05:12:29 2019</created>\n        <modified>金 6月 21 05:12:29 2019</modified>\n    </asset>\n    <library_images/>\n    <library_materials/>\n    <library_effects/>\n    <library_geometries>\n        <geometry id=\"shape0-lib\" name=\"shape0\">\n            <mesh>\n                <source id=\"shape0-lib-positions\" name=\"position\">\n                    <float_array id=\"shape0-lib-positions-array\" count=\"11754\">0.00383413 -0.086768 -0.0199807 0.00356036 -0.0707106 -0.02 0.00395075 -0.0709398 -0.0199807 0.00374858 -0.0779446 -0.0199927 0.00422807 -0.0779482 -0.0199345 0.00469705 -0.0779516 -0.0198189 0.00514868 -0.077955 -0.0196476 0.00577313 -0.07201 -0.0193259 0.00597388 -0.077961 -0.0191487 0.00633542 -0.0779637 -0.0188284 0.00637668 -0.0723644 -0.0188284 0.00663917 -0.0725185 -0.0185376 0.006872 -0.0726552 -0.0182223 0.00707295 -0.0727732 -0.0178856 0.00724006 -0.0728714 -0.0175307 0.00744145 -0.0779719 -0.016721 0.00754324 -0.0730494 -0.016 0.00749967 -0.0779723 -0.0162415 0.00728434 -0.0848097 -0.0171611 0.00732585 -0.077971 -0.01719 0.00715154 -0.0848851 -0.0175307 0.00715457 -0.0779697 -0.0176417 0.00693011 -0.0779681 -0.0180694 0.00665572 -0.0779661 -0.0184669 0.00628078 -0.0853793 -0.0188284 0.0059887 -0.0855451 -0.019092 0.00557637 -0.0779581 -0.0194231 0.00497761 -0.086119 -0.0196955 0.00422406 -0.0865466 -0.0199231 0.0100766 -0.0672899 -0.0199927 0.0169418 -0.0644841 -0.0198189 0.0167103 -0.0640762 -0.0199345 0.00508454 -0.0716056 -0.0196955 0.00471653 -0.0713895 -0.0198278 0.0173758 -0.0652488 -0.0194231 0.0177039 -0.0648513 -0.0195277 0.0109788 -0.0688795 -0.0194231 0.0107677 -0.0685076 -0.0196476 0.0175721 -0.0655945 -0.0191487 0.00543788 -0.0718131 -0.0195277 0.0176937 -0.0662443 -0.0185376 0.0115116 -0.0698183 -0.0184669 0.011647 -0.0700569 -0.0180694 0.0176917 -0.0665143 -0.0182223 0.0117579 -0.0702521 -0.0176417 0.0176899 -0.0667474 -0.0178856 0.0176885 -0.0669412 -0.0175307 0.0118424 -0.0704011 -0.01719 0.0176874 -0.0670939 -0.0171611 0.0176866 -0.067204 -0.0167804 0.0176861 -0.0672705 -0.0163921 0.0176859 -0.0672927 -0.016 0.0119282 -0.0705523 -0.0162415 0.00752406 -0.0730381 -0.0163921 0.00746671 -0.0730045 -0.0167804 0.0118995 -0.0705016 -0.016721 0.00737174 -0.0729487 -0.0171611 0.0113535 -0.0695397 -0.0188284 0.011175 -0.0692253 -0.0191487 0.00608707 -0.0721943 -0.019092 0.0105448 -0.0681148 -0.0198189 0.00433738 -0.0711669 -0.0199231 0.0103133 -0.0677069 -0.0199345 0.0164736 -0.0636592 -0.0199927 0.0171647 -0.0648768 -0.0196476 0.0177166 -0.0631268 -0.0199807 0.0246175 -0.0670045 -0.0199927 0.0243747 -0.067418 -0.0199345 0.029866 -0.0719931 -0.0195277 0.0239085 -0.0682118 -0.0196476 0.0289192 -0.0725305 -0.0188284 0.0231454 -0.0695114 -0.0184669 0.0284197 -0.072814 -0.0182223 0.0230064 -0.069748 -0.0180694 0.0228928 -0.0699416 -0.0176417 0.0280485 -0.0730247 -0.0175307 0.0227475 -0.070189 -0.016721 0.027762 -0.0731873 -0.0163921 0.022718 -0.0702392 -0.0162415 0.022806 -0.0700893 -0.01719 0.0233076 -0.0692352 -0.0188284 0.0176959 -0.06594 -0.0188284 0.0234906 -0.0689234 -0.0191487 0.0176984 -0.0656041 -0.019092 0.0177011 -0.0652401 -0.0193259 0.0236919 -0.0685807 -0.0194231 0.0177069 -0.0644415 -0.0196955 0.0241372 -0.0678224 -0.0198189 0.0177101 -0.0640148 -0.0198278 0.0177133 -0.0635751 -0.0199231 0.0314581 -0.079057 -0.0199927 0.0309786 -0.0790535 -0.0199345 0.0308626 -0.0867429 -0.0199231 0.0305096 -0.07905 -0.0198189 0.030058 -0.0790467 -0.0196476 0.0301155 -0.0863042 -0.0196955 0.0292328 -0.0790406 -0.0191487 0.0288233 -0.0855454 -0.0188284 0.0281271 -0.0851366 -0.0178856 0.0277333 -0.0849053 -0.0167804 0.0277427 -0.0731982 -0.016 0.027707 -0.0790294 -0.0162415 0.0277652 -0.0790298 -0.016721 0.0278199 -0.0731544 -0.0167804 0.0279157 -0.0731001 -0.0171611 0.0278808 -0.0790306 -0.01719 0.0280521 -0.0790319 -0.0176417 0.0282766 -0.0790336 -0.0180694 0.028217 -0.072929 -0.0178856 0.028551 -0.0790356 -0.0184669 0.0288713 -0.0790379 -0.0188284 0.0286545 -0.0726807 -0.0185376 0.0292113 -0.0723647 -0.019092 0.0295279 -0.072185 -0.0193259 0.0296303 -0.0790435 -0.0194231 0.0302224 -0.0717908 -0.0196955 0.0305936 -0.0715802 -0.0198278 0.0309759 -0.0713631 -0.0199231 0.0313659 -0.0711418 -0.0199807 0.0175139 -0.0906393 -0.0163921 0.0243084 -0.0867692 -0.0162415 0.0276568 -0.0848604 -0.016 0.0243372 -0.0868198 -0.016721 0.0276759 -0.0848717 -0.0163921 0.0243942 -0.0869204 -0.01719 0.0278283 -0.0849611 -0.0171611 0.0279599 -0.0850384 -0.0175307 0.028328 -0.0852545 -0.0182223 0.0285608 -0.0853913 -0.0185376 0.0291129 -0.0857155 -0.019092 0.0250616 -0.0880962 -0.0191487 0.0294269 -0.0858998 -0.0193259 0.0297621 -0.0860967 -0.0195277 0.0304835 -0.0865203 -0.0198278 0.0312492 -0.08697 -0.0199807 0.0259234 -0.0896145 -0.0199345 0.01748 -0.0952357 -0.02 0.02616 -0.0900315 -0.0199927 0.0174867 -0.0943347 -0.0199231 0.0256919 -0.0892066 -0.0198189 0.0174899 -0.093895 -0.0198278 0.0174931 -0.0934682 -0.0196955 0.0254689 -0.0888139 -0.0196476 0.0174961 -0.0930585 -0.0195277 0.0252578 -0.0884419 -0.0194231 0.0248831 -0.0877817 -0.0188284 0.024725 -0.0875032 -0.0184669 0.0245896 -0.0872645 -0.0180694 0.0175115 -0.0909686 -0.0175307 0.0244788 -0.0870693 -0.0176417 0.0175126 -0.0908159 -0.0171611 0.0175134 -0.0907058 -0.0167804 0.0124525 -0.0877208 -0.016721 0.0175101 -0.0911624 -0.0178856 0.0175083 -0.0913954 -0.0182223 0.0175063 -0.0916654 -0.0185376 0.0175041 -0.0919698 -0.0188284 0.0175016 -0.0923057 -0.019092 0.0174989 -0.0926697 -0.0193259 0.0110628 -0.0900874 -0.0198189 0.0108253 -0.0904918 -0.0199345 0.0174834 -0.094783 -0.0199807 0.0034404 -0.0869914 -0.02 0.0105825 -0.0909053 -0.0199927 0.00460645 -0.0863296 -0.0198278 0.0112915 -0.089698 -0.0196476 0.00533396 -0.0859167 -0.0195277 0.0115081 -0.0893291 -0.0194231 0.00567208 -0.0857248 -0.0193259 0.0117094 -0.0889863 -0.0191487 0.0118924 -0.0886746 -0.0188284 0.00654551 -0.0852291 -0.0185376 0.0120546 -0.0883984 -0.0184669 0.00678034 -0.0850958 -0.0182223 0.0121936 -0.0881618 -0.0180694 0.006983 -0.0849808 -0.0178856 0.0123072 -0.0879682 -0.0176417 0.012394 -0.0878205 -0.01719 0.00738013 -0.0847554 -0.0167804 0.00743797 -0.0847225 -0.0163921 0.012482 -0.0876706 -0.0162415 0.0175141 -0.0906171 -0.016 0.00745731 -0.0847116 -0.016 0.07 2.62268e-09 -0.02 0.0665 -0.0592351 -0.02 0.0389723 -0.0706408 -0.02 0.0317596 -0.0709184 -0.02 0.0316396 -0.0871992 -0.02 0.035 -0.1 -0.02 0.0530712 -0.0954091 -0.02 0.0316926 -0.0157065 -0.02 0.038 -0.0161631 -0.02 0.0380293 -0.0152501 -0.02 0.0315155 -0.0138898 -0.02 0.0382628 -0.0134391 -0.02 0.0311052 -0.0121111 -0.02 0.0384661 -0.0125485 -0.02 0.038726 -0.0116728 -0.02 0.0390414 -0.0108156 -0.02 0.0394112 -0.00998027 -0.02 0.0296163 -0.00878615 -0.02 0.0403072 -0.00838924 -0.02 0.0413994 -0.00692586 -0.02 0.0285625 -0.00729561 -0.02 0.0279656 -0.0066046 -0.02 0.0420135 -0.00624963 -0.02 0.0426697 -0.00561415 -0.02 0.0259247 -0.00478287 -0.02 0.0448629 -0.00397733 -0.02 0.0251706 -0.00426788 -0.02 0.0243847 -0.00380279 -0.02 0.0235704 -0.00338954 -0.02 0.0464818 -0.00313273 -0.02 0.0227311 -0.00302986 -0.02 0.0218702 -0.00272527 -0.02 0.0490791 -0.00227039 -0.02 0.0191949 -0.0021536 -0.02 0.0380293 -0.0170761 -0.02 0.0316335 -0.0175309 -0.02 0.0315155 -0.0184365 -0.02 0.0382628 -0.0188871 -0.02 0.0313392 -0.0193324 -0.02 0.0384661 -0.0197777 -0.02 0.038726 -0.0206534 -0.02 0.0403072 -0.023937 -0.02 0.0426697 -0.0267121 -0.02 0.0433653 -0.0273042 -0.02 0.0448629 -0.0283489 -0.02 0.0456588 -0.0287972 -0.02 0.0508817 -0.0303473 -0.02 0.0517933 -0.0304058 -0.02 0.0527067 -0.0304058 -0.02 0.0545243 -0.0302305 -0.02 0.0563045 -0.0298241 -0.02 0.0580182 -0.0291935 -0.02 0.0588412 -0.0287972 -0.02 0.0596371 -0.0283489 -0.02 0.0618303 -0.0267121 -0.02 0.0631006 -0.0254004 -0.02 0.0646663 -0.0231558 -0.02 0.0650888 -0.022346 -0.02 0.0662372 -0.0188871 -0.02 0.0664707 -0.0152501 -0.02 0.0662372 -0.0134391 -0.02 0.066034 -0.0125485 -0.02 0.0654586 -0.0108156 -0.02 0.0646663 -0.00917039 -0.02 0.0636701 -0.00764003 -0.02 0.0588412 -0.00352907 -0.02 0.0571715 -0.00278993 -0.02 0.0536183 -0.00197896 -0.02 0.0508817 -0.00197896 -0.02 0.00352957 -0.0170758 -0.02 0.00455156 -0.0215062 -0.02 0.00535116 -0.0231471 -0.02 0.00693035 -0.025381 -0.02 0.00754939 -0.0260523 -0.02 0.0082106 -0.0266821 -0.02 0.0137672 -0.0297322 -0.02 0.0146536 -0.0299518 -0.02 0.0035 -0.0307351 -0.02 0.0200984 -0.03004 -0.02 0.0227311 -0.0292964 -0.02 0.0243847 -0.0285234 -0.02 0.0251706 -0.0280583 -0.02 0.0317 -0.0307351 -0.02 0.0285625 -0.0250306 -0.02 0.0296163 -0.0235401 -0.02 0.0155523 -0.0022126 -0.02 0.0146536 -0.0023744 -0.02 0.0137672 -0.00259404 -0.02 0.0120464 -0.0032029 -0.02 0.00964821 -0.00451927 -0.02 0.00754939 -0.00627396 -0.02 0 2.62268e-09 -0.02 0.00582892 -0.00840091 -0.02 0.00492478 -0.00998664 -0.02 0.00455156 -0.0108201 -0.02 -8.88178e-18 -0.13 -0.02 0.01772 -0.0626741 -0.02 0.038 -0.0592351 -0.02 0.038 -0.0307351 -0.02 0.0311052 -0.0202151 -0.02 0.0674718 -0.0708149 -0.02 0.0673712 -0.087269 -0.02 0.06718 -0.0790405 -0.0199927 0.0662142 -0.0865916 -0.0198278 0.0662315 -0.0790347 -0.0198189 0.0651568 -0.0859724 -0.0193259 0.0645931 -0.0790247 -0.0188284 0.0640571 -0.0853286 -0.0182223 0.0636027 -0.0790186 -0.01719 0.0634046 -0.0849465 -0.0163921 0.0634289 -0.0790175 -0.0162415 0.0634871 -0.0790179 -0.016721 0.0636306 -0.0730014 -0.0171611 0.0637633 -0.0729258 -0.0175307 0.063774 -0.0790197 -0.0176417 0.0639984 -0.079021 -0.0180694 0.0641342 -0.0727147 -0.0182223 0.0642728 -0.0790227 -0.0184669 0.0643689 -0.0725811 -0.0185376 0.0646334 -0.0724305 -0.0188284 0.0649547 -0.0790269 -0.0191487 0.0649253 -0.0722644 -0.019092 0.0652417 -0.0720843 -0.0193259 0.0653522 -0.0790293 -0.0194231 0.0657799 -0.0790319 -0.0196476 0.0655795 -0.071892 -0.0195277 0.0659356 -0.0716893 -0.0196955 0.0667005 -0.0790375 -0.0199345 0.0666886 -0.0712606 -0.0199231 0.0669806 -0.0870403 -0.0199807 0.0598646 -0.0907124 -0.0199345 0.0530794 -0.0940683 -0.0198278 0.053082 -0.0936416 -0.0196955 0.0530845 -0.0932318 -0.0195277 0.0594091 -0.0899123 -0.0196476 0.0591975 -0.0895407 -0.0194231 0.0590009 -0.0891952 -0.0191487 0.0530912 -0.0921431 -0.0188284 0.053093 -0.0918388 -0.0185376 0.0530961 -0.0913357 -0.0178856 0.0584168 -0.0881691 -0.0176417 0.0530982 -0.0909892 -0.0171611 0.0530989 -0.0908791 -0.0167804 0.0530993 -0.0908126 -0.0163921 0.058246 -0.0878691 -0.0162415 0.0582748 -0.0879197 -0.016721 0.063462 -0.0849801 -0.0167804 0.058332 -0.0880202 -0.01719 0.063557 -0.0850357 -0.0171611 0.0636888 -0.0851129 -0.0175307 0.0638561 -0.0852108 -0.0178856 0.0585278 -0.0883641 -0.0180694 0.0586636 -0.0886026 -0.0184669 0.0642902 -0.085465 -0.0185376 0.0645528 -0.0856188 -0.0188284 0.058822 -0.088881 -0.0188284 0.0648427 -0.0857885 -0.019092 0.0654923 -0.0861689 -0.0195277 0.0658459 -0.0863759 -0.0196955 0.0596325 -0.0903049 -0.0198189 0.0665936 -0.0868137 -0.0199231 0.0601018 -0.0911292 -0.0199927 0.046706 -0.0914022 -0.0199927 0.0388718 -0.0870949 -0.02 0.0402188 -0.0876038 -0.0199927 0.053074 -0.0949564 -0.0199807 0.0530767 -0.094508 -0.0199231 0.0474135 -0.090194 -0.0196476 0.0530869 -0.0928431 -0.0193259 0.0530891 -0.092479 -0.019092 0.0480131 -0.0891698 -0.0188284 0.048175 -0.0888934 -0.0184669 0.0530947 -0.0915688 -0.0182223 0.0484271 -0.0884629 -0.0176417 0.0530973 -0.0911419 -0.0175307 0.0485136 -0.0883151 -0.01719 0.0486014 -0.0881651 -0.0162415 0.048572 -0.0882154 -0.016721 0.042713 -0.0849084 -0.0171611 0.0424118 -0.0850798 -0.0178856 0.0483136 -0.0886566 -0.0180694 0.0419747 -0.0853287 -0.0185376 0.0414182 -0.0856454 -0.019092 0.0478305 -0.0894818 -0.0191487 0.0476296 -0.0898249 -0.0194231 0.0411424 -0.0860264 -0.0194231 0.040764 -0.0860178 -0.0195277 0.0469483 -0.0909884 -0.0199345 0.0392652 -0.086871 -0.0199807 0.0396549 -0.0866492 -0.0199231 0.0409262 -0.0863955 -0.0196476 0.0404079 -0.0862205 -0.0196955 0.0471853 -0.0905837 -0.0198189 0.040698 -0.0867853 -0.0198189 0.0404611 -0.08719 -0.0199345 0.0396481 -0.0780455 -0.0199345 0.0401171 -0.0780484 -0.0198189 0.0408512 -0.0717409 -0.0195277 0.0411867 -0.0719373 -0.0193259 0.0409964 -0.0780538 -0.0194231 0.0415009 -0.0721213 -0.019092 0.0425746 -0.0780634 -0.0176417 0.0426547 -0.0727969 -0.0175307 0.0427459 -0.0780644 -0.01719 0.0428615 -0.0780651 -0.016721 0.0429389 -0.0729633 -0.0163921 0.0428858 -0.08481 -0.016 0.0429197 -0.0780655 -0.0162415 0.0428665 -0.084821 -0.0163921 0.0428087 -0.0848539 -0.0167804 0.0425802 -0.0849839 -0.0175307 0.0423501 -0.078062 -0.0180694 0.0422093 -0.0851951 -0.0182223 0.0420757 -0.0780604 -0.0184669 0.0417554 -0.0780584 -0.0188284 0.0417101 -0.0854793 -0.0188284 0.0413939 -0.0780562 -0.0191487 0.0411018 -0.0858255 -0.0193259 0.0405687 -0.0780511 -0.0196476 0.040037 -0.0864317 -0.0198278 0.0391686 -0.0780426 -0.0199927 0.0480975 -0.0700407 -0.0162415 0.0480687 -0.0699901 -0.016721 0.0428815 -0.0729297 -0.0167804 0.0427865 -0.0728741 -0.0171611 0.0480115 -0.0698896 -0.01719 0.0424875 -0.072699 -0.0178856 0.0478157 -0.0695456 -0.0180694 0.0422864 -0.0725812 -0.0182223 0.0420534 -0.0724448 -0.0185376 0.0475215 -0.0690288 -0.0188284 0.0417907 -0.072291 -0.0188284 0.047146 -0.0683691 -0.0194231 0.0469344 -0.0679974 -0.0196476 0.0404976 -0.0715339 -0.0196955 0.046711 -0.0676049 -0.0198189 0.0401293 -0.0713182 -0.0198278 0.0397499 -0.0710961 -0.0199231 0.039363 -0.0708695 -0.0199807 0.0462418 -0.0667806 -0.0199927 0.0532695 -0.0629534 -0.0199807 0.046479 -0.0671974 -0.0199345 0.0532641 -0.0638415 -0.0198278 0.0532615 -0.0642682 -0.0196955 0.0532566 -0.0650667 -0.0193259 0.0473426 -0.0687146 -0.0191487 0.0532544 -0.0654308 -0.019092 0.0532523 -0.0657666 -0.0188284 0.04768 -0.0693072 -0.0184669 0.0532488 -0.066341 -0.0182223 0.0532474 -0.0665741 -0.0178856 0.0479267 -0.0697407 -0.0176417 0.0532446 -0.0670307 -0.0167804 0.0565509 -0.0690472 -0.0162415 0.0532442 -0.0670972 -0.0163921 0.0565804 -0.068997 -0.016721 0.0532453 -0.0669206 -0.0171611 0.0532462 -0.0667679 -0.0175307 0.0566388 -0.0688972 -0.01719 0.0567253 -0.0687494 -0.0176417 0.0532505 -0.066071 -0.0185376 0.0569774 -0.0683189 -0.0184669 0.0573219 -0.0677305 -0.0191487 0.053259 -0.064678 -0.0195277 0.0577389 -0.0670184 -0.0196476 0.0582041 -0.0662239 -0.0199345 0.0532668 -0.0634018 -0.0199231 0.0584464 -0.0658101 -0.0199927 0.0532723 -0.0625007 -0.02 0.0670783 -0.0710388 -0.0199807 0.0579671 -0.0666286 -0.0198189 0.0663065 -0.0714781 -0.0198278 0.0575228 -0.0673875 -0.0194231 0.0571392 -0.0680425 -0.0188284 0.0639317 -0.07283 -0.0178856 0.0568387 -0.0685557 -0.0180694 0.0635348 -0.0730559 -0.0167804 0.063477 -0.0730888 -0.0163921 0.0532441 -0.0671194 -0.016 0.0532441 -0.0671194 -8.80165e-09 0.0634577 -0.0730998 -9.58588e-09 0.0634577 -0.0730998 -0.016 0.0633854 -0.0849352 -0.016 0.0633854 -0.0849352 -1.11379e-08 0.0391611 -0.0580739 -0.0198278 0.0475 -0.0580451 -0.0198189 0.0398856 -0.0573495 -0.0195277 0.0475 -0.0567682 -0.0191487 0.0402223 -0.0570128 -0.0193259 0.0408284 -0.0564066 -0.0188284 0.0413259 -0.0559092 -0.0182223 0.0475 -0.0558119 -0.0180694 0.0415277 -0.0557074 -0.0178856 0.0416955 -0.0555395 -0.0175307 0.0475 -0.0554162 -0.01719 0.0418278 -0.0554073 -0.0171611 0.0419231 -0.0553119 -0.0167804 0.0475 -0.0553006 -0.016721 0.0625 -0.0552351 -0.016 0.057 -0.0553006 -0.016721 0.0625193 -0.0552543 -0.0163921 0.0625769 -0.0553119 -0.0167804 0.057 -0.0554162 -0.01719 0.0626722 -0.0554073 -0.0171611 0.057 -0.0555875 -0.0176417 0.0629723 -0.0557074 -0.0178856 0.057 -0.0558119 -0.0180694 0.057 -0.0560863 -0.0184669 0.057 -0.0564066 -0.0188284 0.0636716 -0.0564066 -0.0188284 0.057 -0.0567682 -0.0191487 0.057 -0.0571657 -0.0194231 0.057 -0.0575934 -0.0196476 0.057 -0.0580451 -0.0198189 0.0657196 -0.0584547 -0.0199231 0.0661079 -0.058843 -0.0199807 0.057 -0.058514 -0.0199345 0.057 -0.0589936 -0.0199927 0.0475 -0.058514 -0.0199345 0.0475 -0.0589936 -0.0199927 0.0475 -0.0575934 -0.0196476 0.0475 -0.0571657 -0.0194231 0.0475 -0.0564066 -0.0188284 0.0475 -0.0560863 -0.0184669 0.0475 -0.0555875 -0.0176417 0.0475 -0.0552424 -0.0162415 0.057 -0.0552424 -0.0162415 0.0387804 -0.0315154 -0.0199231 0.038721 -0.0402351 -0.0199345 0.0391611 -0.0318962 -0.0198278 0.03919 -0.0402351 -0.0198189 0.0395307 -0.0322658 -0.0196955 0.0398856 -0.0326207 -0.0195277 0.0396417 -0.0402351 -0.0196476 0.0405376 -0.0332726 -0.019092 0.0408284 -0.0335635 -0.0188284 0.0408284 -0.0402351 -0.0188284 0.0414231 -0.0402351 -0.0180694 0.0415277 -0.0342628 -0.0178856 0.0418189 -0.0402351 -0.01719 0.0419807 -0.0347158 -0.0163921 0.0419927 -0.0402351 -0.0162415 0.042 -0.0552351 -0.016 0.0419807 -0.0552543 -0.0163921 0.0418189 -0.0497351 -0.01719 0.0411487 -0.0497351 -0.0184669 0.041092 -0.056143 -0.0185376 0.0405376 -0.0566975 -0.019092 0.0400694 -0.0497351 -0.0194231 0.03919 -0.0497351 -0.0198189 0.0395307 -0.0577043 -0.0196955 0.038721 -0.0497351 -0.0199345 0.0387804 -0.0584547 -0.0199231 0.0383921 -0.058843 -0.0199807 0.0382415 -0.0497351 -0.0199927 0.0382415 -0.0402351 -0.0199927 0.0396417 -0.0497351 -0.0196476 0.0400694 -0.0402351 -0.0194231 0.0404669 -0.0402351 -0.0191487 0.0404669 -0.0497351 -0.0191487 0.0408284 -0.0497351 -0.0188284 0.0414231 -0.0497351 -0.0180694 0.0411487 -0.0402351 -0.0184669 0.0416476 -0.0497351 -0.0176417 0.0416476 -0.0402351 -0.0176417 0.0419345 -0.0497351 -0.016721 0.0419927 -0.0497351 -0.0162415 0.0419345 -0.0402351 -0.016721 0.0383921 -0.0311271 -0.0199807 0.0475 -0.0309766 -0.0199927 0.0653389 -0.0318962 -0.0198278 0.057 -0.0319251 -0.0198189 0.0649693 -0.0322658 -0.0196955 0.057 -0.0323767 -0.0196476 0.0646144 -0.0326207 -0.0195277 0.057 -0.0338838 -0.0184669 0.057 -0.0341582 -0.0180694 0.0629723 -0.0342628 -0.0178856 0.0628045 -0.0344306 -0.0175307 0.057 -0.0345539 -0.01719 0.057 -0.0346695 -0.016721 0.0625193 -0.0347158 -0.0163921 0.057 -0.0347278 -0.0162415 0.0419231 -0.0346582 -0.0167804 0.0418278 -0.0345628 -0.0171611 0.0475 -0.0345539 -0.01719 0.0416955 -0.0344306 -0.0175307 0.0475 -0.0341582 -0.0180694 0.0413259 -0.0340609 -0.0182223 0.041092 -0.0338271 -0.0185376 0.0475 -0.0332019 -0.0191487 0.0402223 -0.0329573 -0.0193259 0.0475 -0.0328044 -0.0194231 0.0475 -0.0319251 -0.0198189 0.0475 -0.0314561 -0.0199345 0.057 -0.0309766 -0.0199927 0.057 -0.0314561 -0.0199345 0.0475 -0.0323767 -0.0196476 0.057 -0.0328044 -0.0194231 0.057 -0.0335635 -0.0188284 0.0475 -0.0335635 -0.0188284 0.057 -0.0332019 -0.0191487 0.0475 -0.0338838 -0.0184669 0.0475 -0.0343827 -0.0176417 0.057 -0.0343827 -0.0176417 0.0475 -0.0347278 -0.0162415 0.0475 -0.0346695 -0.016721 0.0625073 -0.0503234 -0.0162415 0.0628045 -0.0555395 -0.0175307 0.0631741 -0.0559092 -0.0182223 0.0633513 -0.0503234 -0.0184669 0.063408 -0.056143 -0.0185376 0.0636716 -0.0503234 -0.0188284 0.0639624 -0.0566975 -0.019092 0.0640331 -0.0503234 -0.0191487 0.0644307 -0.0503234 -0.0194231 0.0642777 -0.0570128 -0.0193259 0.0646144 -0.0573495 -0.0195277 0.0649693 -0.0577043 -0.0196955 0.0653389 -0.0580739 -0.0198278 0.0662585 -0.0503234 -0.0199927 0.0665 -0.0307351 -0.02 0.0662585 -0.0405292 -0.0199927 0.0661079 -0.0311271 -0.0199807 0.0657196 -0.0315154 -0.0199231 0.0642777 -0.0329573 -0.0193259 0.0644307 -0.0405292 -0.0194231 0.0639624 -0.0332726 -0.019092 0.0636716 -0.0335635 -0.0188284 0.063408 -0.0338271 -0.0185376 0.0636716 -0.0405292 -0.0188284 0.0633513 -0.0405292 -0.0184669 0.0631741 -0.0340609 -0.0182223 0.0630769 -0.0405292 -0.0180694 0.0626811 -0.0405292 -0.01719 0.0626722 -0.0345628 -0.0171611 0.0625769 -0.0346582 -0.0167804 0.0625073 -0.0405292 -0.0162415 0.0625 -0.0347351 -0.016 0.0625655 -0.0503234 -0.016721 0.0626811 -0.0503234 -0.01719 0.0628524 -0.0503234 -0.0176417 0.0625655 -0.0405292 -0.016721 0.0628524 -0.0405292 -0.0176417 0.0630769 -0.0503234 -0.0180694 0.0648583 -0.0503234 -0.0196476 0.0640331 -0.0405292 -0.0191487 0.06531 -0.0503234 -0.0198189 0.0648583 -0.0405292 -0.0196476 0.065779 -0.0503234 -0.0199345 0.06531 -0.0405292 -0.0198189 0.065779 -0.0405292 -0.0199345 0.0625 -0.0552351 -7.24321e-09 0.042 -0.0161631 -0.016 0.0420085 -0.0152835 -0.0164821 0.0419893 -0.0146878 -0.0169573 0.0419218 -0.015276 -0.0169573 0.0417786 -0.0152637 -0.0174184 0.0415811 -0.0152468 -0.0178589 0.040695 -0.0151707 -0.018994 0.0407705 -0.0145126 -0.018994 0.0403162 -0.0151381 -0.0192919 0.039549 -0.014337 -0.0197401 0.038117 -0.0143409 -0.02 0.0420085 -0.0170428 -0.0164821 0.0420902 -0.0182217 -0.0169573 0.0420386 -0.0201388 -0.0182723 0.0422822 -0.0207153 -0.0182723 0.0422949 -0.0214159 -0.0186525 0.0419928 -0.0215753 -0.018994 0.0423185 -0.022152 -0.018994 0.0423627 -0.0229239 -0.0192919 0.0425525 -0.024566 -0.0197401 0.042204 -0.024868 -0.0198838 0.0429405 -0.0263065 -0.0199708 0.0435348 -0.0268214 -0.0199708 0.0441575 -0.0273015 -0.0199708 0.0448065 -0.0277454 -0.0199708 0.0440973 -0.0278506 -0.02 0.0461753 -0.0285184 -0.0199708 0.0464818 -0.0291935 -0.02 0.0473286 -0.0295363 -0.02 0.0481955 -0.0298241 -0.02 0.0476233 -0.0291303 -0.0199708 0.048505 -0.0289174 -0.0198838 0.0492392 -0.0291104 -0.0198838 0.0486349 -0.0284749 -0.0197401 0.0493437 -0.0286612 -0.0197401 0.0496232 -0.0274592 -0.018994 0.0489826 -0.0272908 -0.018994 0.0490788 -0.0269631 -0.0186525 0.0497006 -0.0271265 -0.0186525 0.049768 -0.0268364 -0.0182723 0.0492332 -0.0264375 -0.0178589 0.0498246 -0.026593 -0.0178589 0.049289 -0.0262473 -0.0174184 0.0499021 -0.0262599 -0.0169573 0.0499218 -0.0261751 -0.0164821 0.0422632 -0.018471 -0.016 0.0421756 -0.0182045 -0.0164821 0.0422243 -0.0187984 -0.0169573 0.0422545 -0.0194109 -0.0174184 0.0422714 -0.0200481 -0.0178589 0.0425583 -0.0212769 -0.0182723 0.042611 -0.0219757 -0.0186525 0.0427648 -0.0234773 -0.0192919 0.0424375 -0.0237297 -0.0195418 0.0428854 -0.0242776 -0.0195418 0.0430481 -0.0251059 -0.0197401 0.0427174 -0.0254273 -0.0198838 0.0432618 -0.0259564 -0.0198838 0.0423085 -0.0187763 -0.0164821 0.0423911 -0.0193665 -0.0169573 0.0425901 -0.0199241 -0.0169573 0.0424562 -0.0199762 -0.0174184 0.0425095 -0.0206114 -0.0178589 0.0427793 -0.0211603 -0.0178589 0.0428661 -0.0218218 -0.0182723 0.0429585 -0.0225165 -0.0186525 0.0426766 -0.0227092 -0.018994 0.0435736 -0.0256167 -0.0197401 0.0424739 -0.0193395 -0.0164821 0.0426712 -0.0198925 -0.0164821 0.0428205 -0.0204694 -0.0169573 0.0426898 -0.0205291 -0.0174184 0.0433364 -0.0230365 -0.0186525 0.0430659 -0.0232451 -0.018994 0.0431978 -0.0240069 -0.0192919 0.0433639 -0.0247989 -0.0195418 0.0438714 -0.0252922 -0.0195418 0.0441274 -0.0260966 -0.0197401 0.0438355 -0.0264536 -0.0198838 0.0444367 -0.0269172 -0.0198838 0.0428997 -0.0204332 -0.0164821 0.0438229 -0.021998 -0.016 0.0443071 -0.0230457 -0.0174184 0.044713 -0.0234879 -0.0174184 0.0448404 -0.0242364 -0.0182723 0.0453134 -0.0246462 -0.0182723 0.0451248 -0.0248768 -0.0186525 0.0456339 -0.0252694 -0.0186525 0.0454332 -0.0255457 -0.018994 0.0457743 -0.0262394 -0.0192919 0.0463601 -0.0265927 -0.0192919 0.0461569 -0.0269526 -0.0195418 0.0465884 -0.0276782 -0.0197401 0.0470755 -0.0284074 -0.0198838 0.047783 -0.0286828 -0.0198838 0.0441099 -0.0224401 -0.0164821 0.0444157 -0.0229515 -0.0169573 0.044816 -0.0233877 -0.0169573 0.0451434 -0.0239062 -0.0174184 0.0450094 -0.0240523 -0.0178589 0.045809 -0.0250284 -0.0182723 0.0461646 -0.0256322 -0.0186525 0.0465471 -0.0262616 -0.018994 0.0459799 -0.0259196 -0.018994 0.0469652 -0.0269119 -0.0192919 0.0467828 -0.0272829 -0.0195418 0.0472551 -0.0279826 -0.0197401 0.0474265 -0.0275769 -0.0195418 0.0483712 -0.0293733 -0.0199708 0.0442883 -0.0226187 -0.016 0.0444815 -0.0228945 -0.0164821 0.0448785 -0.023327 -0.0164821 0.0455971 -0.0242993 -0.0174184 0.0454716 -0.0244528 -0.0178589 0.0459559 -0.0248262 -0.0178589 0.0475874 -0.0271961 -0.0192919 0.048086 -0.0278336 -0.0195418 0.047938 -0.0282485 -0.0197401 0.0452995 -0.0237362 -0.0164821 0.0452406 -0.0238003 -0.0169573 0.045688 -0.024188 -0.0169573 0.0463256 -0.0253816 -0.0182723 0.0464607 -0.0251714 -0.0178589 0.0468616 -0.0257048 -0.0182723 0.0467151 -0.0259642 -0.0186525 0.0477354 -0.0268459 -0.018994 0.0471329 -0.0265707 -0.018994 0.048759 -0.0280523 -0.0195418 0.0459463 -0.0242455 -0.016 0.0462081 -0.0244791 -0.0164821 0.0472374 -0.0251038 -0.016 0.0471954 -0.0251137 -0.0164821 0.0481588 -0.0258441 -0.0174184 0.0487181 -0.0260618 -0.0174184 0.0477146 -0.0253876 -0.0164821 0.0482147 -0.0257117 -0.0169573 0.0486432 -0.0257576 -0.016 0.0482486 -0.0256315 -0.0164821 0.0487664 -0.0259265 -0.0169573 0.0487957 -0.0258445 -0.0164821 0.049354 -0.0260259 -0.0164821 0.0493295 -0.0261094 -0.0169573 0.0504972 -0.0262917 -0.0164821 0.05225 -0.0264423 -0.0164821 0.05285 -0.0266559 -0.0174184 0.053448 -0.0266045 -0.0174184 0.0541186 -0.0269607 -0.0182723 0.0547994 -0.0271265 -0.0186525 0.0554212 -0.0269631 -0.0186525 0.0561473 -0.0270862 -0.018994 0.0555174 -0.0272908 -0.018994 0.0562751 -0.0274443 -0.0192919 0.0570735 -0.0275769 -0.0195418 0.0585597 -0.0273362 -0.0197401 0.0587865 -0.0277377 -0.0198838 0.0603425 -0.0273015 -0.0199708 0.0611347 -0.0273042 -0.02 0.0624865 -0.0260766 -0.02 0.0626551 -0.0251791 -0.0199708 0.0617827 -0.0254273 -0.0198838 0.0614519 -0.0251059 -0.0197401 0.0611361 -0.0247989 -0.0195418 0.0613022 -0.0240069 -0.0192919 0.0610148 -0.0237579 -0.018994 0.0607567 -0.0235342 -0.0186525 0.0605316 -0.0233391 -0.0182723 0.0601929 -0.0230457 -0.0174184 0.059684 -0.0233877 -0.0169573 0.0604503 -0.0223128 -0.016 0.0528418 -0.0265124 -0.0169573 0.0534317 -0.0264618 -0.0169573 0.054076 -0.0267145 -0.0178589 0.0540422 -0.0265191 -0.0174184 0.0546754 -0.026593 -0.0178589 0.054732 -0.0268364 -0.0182723 0.0569126 -0.0271961 -0.0192919 0.0577172 -0.0272829 -0.0195418 0.0583431 -0.0269526 -0.0195418 0.0594366 -0.0273457 -0.0198838 0.0600633 -0.0269172 -0.0198838 0.052444 -0.0264113 -0.016 0.0532185 -0.0263673 -0.016 0.0534217 -0.0263753 -0.0164821 0.0528368 -0.0264255 -0.0164821 0.0540177 -0.0263775 -0.0169573 0.0546305 -0.0263999 -0.0174184 0.0552668 -0.0264375 -0.0178589 0.0553372 -0.0266773 -0.0182723 0.0560326 -0.0267645 -0.0186525 0.0567646 -0.0268459 -0.018994 0.0573671 -0.0265707 -0.018994 0.0575348 -0.0269119 -0.0192919 0.0581399 -0.0265927 -0.0192919 0.0589491 -0.0265872 -0.0195418 0.0591873 -0.0269577 -0.0197401 0.0606645 -0.0264536 -0.0198838 0.0609652 -0.0268214 -0.0199708 0.0615595 -0.0263065 -0.0199708 0.0545979 -0.0262599 -0.0169573 0.0558485 -0.0262485 -0.0178589 0.0559325 -0.0264839 -0.0182723 0.0565156 -0.0262568 -0.0182723 0.0566316 -0.0265312 -0.0186525 0.0572164 -0.0262642 -0.0186525 0.0595333 -0.0261877 -0.0195418 0.0597922 -0.0265441 -0.0197401 0.0540028 -0.0262917 -0.0164821 0.0545782 -0.0261751 -0.0164821 0.0551705 -0.0261094 -0.0169573 0.055211 -0.0262473 -0.0174184 0.0564184 -0.0260267 -0.0178589 0.0570849 -0.0259969 -0.0182723 0.0577849 -0.0259642 -0.0186525 0.0579529 -0.0262616 -0.018994 0.0587257 -0.0262394 -0.0192919 0.0585201 -0.0259196 -0.018994 0.0600937 -0.0257556 -0.0195418 0.0603726 -0.0260966 -0.0197401 0.0612382 -0.0259564 -0.0198838 0.0621234 -0.0257584 -0.0199708 0.055146 -0.0260259 -0.0164821 0.0554911 -0.0258872 -0.016 0.0569207 -0.0252871 -0.016 0.0567854 -0.0253876 -0.0164821 0.0579321 -0.0250046 -0.0174184 0.0591866 -0.0246462 -0.0182723 0.059861 -0.0244558 -0.0186525 0.0575973 -0.0249077 -0.016 0.0573046 -0.0251137 -0.0164821 0.0578073 -0.0248105 -0.0164821 0.0578544 -0.0248837 -0.0169573 0.0584276 -0.0246658 -0.0174184 0.0583431 -0.0245496 -0.0169573 0.0589029 -0.0242993 -0.0174184 0.0590284 -0.0244528 -0.0178589 0.0596596 -0.0242364 -0.0182723 0.060322 -0.0240078 -0.0186525 0.0582919 -0.0244791 -0.0164821 0.058812 -0.024188 -0.0169573 0.0593566 -0.0239062 -0.0174184 0.0594906 -0.0240523 -0.0178589 0.0601084 -0.0238002 -0.0182723 0.0588551 -0.0240012 -0.016 0.0587568 -0.0241206 -0.0164821 0.059787 -0.0234879 -0.0174184 0.0599292 -0.023626 -0.0178589 0.0592005 -0.0237362 -0.0164821 0.0594289 -0.0234792 -0.016 0.0596215 -0.023327 -0.0164821 0.0600185 -0.0228945 -0.0164821 0.060459 -0.0224932 -0.0169573 0.0600843 -0.0229515 -0.0169573 0.0605728 -0.022581 -0.0174184 0.0607298 -0.022702 -0.0178589 0.0603427 -0.0231755 -0.0178589 0.0611636 -0.0230365 -0.0186525 0.0614341 -0.0232451 -0.018994 0.0620626 -0.0237297 -0.0195418 0.0616146 -0.0242776 -0.0195418 0.0624114 -0.0239987 -0.0197401 0.0619475 -0.024566 -0.0197401 0.062296 -0.024868 -0.0198838 0.0627766 -0.0242803 -0.0198838 0.0607352 -0.0219651 -0.0164821 0.0610526 -0.0214712 -0.0164821 0.0613412 -0.0209601 -0.0164821 0.0616003 -0.0204332 -0.0164821 0.0619099 -0.0199241 -0.0169573 0.0622455 -0.0194109 -0.0174184 0.0626064 -0.0188853 -0.0178589 0.0633914 -0.017765 -0.0186525 0.0630965 -0.0177226 -0.0182723 0.0638428 -0.0164943 -0.018994 0.0654074 -0.0142714 -0.0198838 0.0657436 -0.0134289 -0.0199708 0.0657741 -0.0116728 -0.02 0.0647737 -0.0104437 -0.0199708 0.0650888 -0.00998027 -0.02 0.0640401 -0.00905342 -0.0199708 0.0641928 -0.00838924 -0.02 0.063615 -0.00839194 -0.0199708 0.0631006 -0.00692586 -0.02 0.0626551 -0.00714708 -0.0199708 0.0624865 -0.00624963 -0.02 0.0621234 -0.00656778 -0.0199708 0.0615595 -0.00601977 -0.0199708 0.0608396 -0.00781537 -0.0192919 0.0605669 -0.00808037 -0.018994 0.060322 -0.00831841 -0.0186525 0.059787 -0.00883834 -0.0174184 0.0592594 -0.00852588 -0.0169573 0.0592005 -0.00859003 -0.0164821 0.0594289 -0.00884701 -0.016 0.0588551 -0.00832503 -0.016 0.0616243 -0.0203085 -0.016 0.0618288 -0.0198925 -0.0164821 0.0621089 -0.0193665 -0.0169573 0.0625506 -0.0182503 -0.0174184 0.0624147 -0.0188349 -0.0174184 0.0627449 -0.0182897 -0.0178589 0.0628492 -0.017687 -0.0178589 0.0631679 -0.0171008 -0.0182723 0.0635014 -0.0164845 -0.0186525 0.0634647 -0.0171263 -0.0186525 0.0642229 -0.0158211 -0.0192919 0.0645957 -0.0151027 -0.0195418 0.064515 -0.0143997 -0.0195418 0.064951 -0.014337 -0.0197401 0.065278 -0.0135233 -0.0198838 0.0655655 -0.0126631 -0.0199708 0.065106 -0.0127839 -0.0198838 0.0620261 -0.0193395 -0.0164821 0.0622757 -0.0187984 -0.0169573 0.0624098 -0.0182217 -0.0169573 0.062653 -0.0176588 -0.0174184 0.0629189 -0.0170795 -0.0178589 0.0632036 -0.016476 -0.0182723 0.0638428 -0.0158319 -0.018994 0.0635014 -0.0158417 -0.0186525 0.0641058 -0.0144585 -0.0192919 0.0641838 -0.0151381 -0.0192919 0.064826 -0.0136149 -0.0197401 0.065344 -0.0119086 -0.0199708 0.0648921 -0.0120554 -0.0198838 0.0621423 -0.0188472 -0.016 0.0621915 -0.0187763 -0.0164821 0.062317 -0.0180914 -0.016 0.0625107 -0.0176384 -0.0169573 0.0629538 -0.0164689 -0.0178589 0.0632036 -0.0158502 -0.0182723 0.0634647 -0.0151999 -0.0186525 0.063805 -0.0151707 -0.018994 0.0637295 -0.0145126 -0.018994 0.0643943 -0.0137024 -0.0195418 0.0639892 -0.0137844 -0.0192919 0.06466 -0.0129011 -0.0197401 0.064637 -0.0113404 -0.0198838 0.0650798 -0.011168 -0.0199708 0.062434 -0.0173245 -0.016 0.062525 -0.0164566 -0.0164821 0.0625107 -0.0146878 -0.0169573 0.0625506 -0.0140759 -0.0174184 0.0631453 -0.0111874 -0.0192919 0.0628611 -0.00976437 -0.0195418 0.0632228 -0.00866011 -0.0198838 0.0627766 -0.00804593 -0.0198838 0.0624915 -0.0152835 -0.0164821 0.0624245 -0.0147002 -0.0164821 0.0624147 -0.0134913 -0.0174184 0.0626064 -0.0134409 -0.0178589 0.0626717 -0.0127769 -0.0182723 0.0624341 -0.0128541 -0.0178589 0.0624614 -0.0121874 -0.0182723 0.062739 -0.0120794 -0.0186525 0.0627995 -0.0113453 -0.018994 0.0628435 -0.0105735 -0.0192919 0.0625071 -0.00997784 -0.0192919 0.0628421 -0.00892041 -0.0197401 0.062296 -0.00745822 -0.0198838 0.062317 -0.0142348 -0.016 0.0624098 -0.0141045 -0.0169573 0.0623244 -0.0141218 -0.0164821 0.0622757 -0.0135278 -0.0169573 0.0622286 -0.0122781 -0.0178589 0.0624888 -0.0114872 -0.0186525 0.0625072 -0.0107509 -0.018994 0.0620626 -0.00859651 -0.0195418 0.0624785 -0.00916903 -0.0195418 0.0624114 -0.00832753 -0.0197401 0.0619475 -0.00776021 -0.0197401 0.0617827 -0.0068989 -0.0198838 0.0621915 -0.01355 -0.0164821 0.0622455 -0.0129154 -0.0174184 0.0621089 -0.0129598 -0.0169573 0.0619905 -0.0117148 -0.0178589 0.0622178 -0.011611 -0.0182723 0.0619417 -0.0110493 -0.0182723 0.0622051 -0.0109103 -0.0186525 0.0621815 -0.0101742 -0.018994 0.0621373 -0.00940236 -0.0192919 0.0618234 -0.00961697 -0.018994 0.0616243 -0.0120177 -0.016 0.0613412 -0.0113662 -0.0164821 0.0610526 -0.010855 -0.0164821 0.0611271 -0.01081 -0.0169573 0.0607298 -0.00962419 -0.0178589 0.0605728 -0.00974524 -0.0174184 0.0605316 -0.0089871 -0.0182723 0.0603427 -0.00915075 -0.0178589 0.0601084 -0.00852602 -0.0182723 0.0608919 -0.0106512 -0.016 0.0607352 -0.0103611 -0.0164821 0.060459 -0.00983299 -0.0169573 0.060807 -0.010312 -0.0169573 0.0601929 -0.00928057 -0.0174184 0.0599292 -0.00870018 -0.0178589 0.0600843 -0.00937467 -0.0169573 0.0603901 -0.00988616 -0.0164821 0.0599617 -0.00941089 -0.016 0.0600185 -0.00943169 -0.0164821 0.059684 -0.00893849 -0.0169573 0.0596215 -0.00899917 -0.0164821 0.0582434 -0.00784794 -0.016 0.0578544 -0.00744248 -0.0169573 0.0573474 -0.00713675 -0.0169573 0.0569747 -0.00655361 -0.0178589 0.0565156 -0.00606938 -0.0182723 0.0559325 -0.00584232 -0.0182723 0.0560326 -0.00556175 -0.0186525 0.0554212 -0.0053631 -0.0186525 0.0555174 -0.00503538 -0.018994 0.0548768 -0.004867 -0.018994 0.0536625 -0.00385277 -0.0195418 0.0537127 -0.00341517 -0.0197401 0.0529825 -0.00335246 -0.0197401 0.0514918 -0.00289201 -0.0198838 0.0514644 -0.00241769 -0.0199708 0.0506806 -0.002485 -0.0199708 0.0499757 -0.00209577 -0.02 0.0491316 -0.00275306 -0.0199708 0.0481955 -0.00250209 -0.02 0.0483712 -0.00295295 -0.0199708 0.0476233 -0.00319593 -0.0199708 0.048505 -0.00340882 -0.0198838 0.048759 -0.00427393 -0.0195418 0.048086 -0.00449262 -0.0195418 0.0489826 -0.00503538 -0.018994 0.0490788 -0.0053631 -0.0186525 0.0485676 -0.00584232 -0.0182723 0.0492332 -0.00588869 -0.0178589 0.0487664 -0.00639973 -0.0169573 0.049354 -0.00630032 -0.0164821 0.0487957 -0.00648174 -0.0164821 0.0477146 -0.0069386 -0.0164821 0.0472374 -0.0072224 -0.016 0.0461569 -0.00777665 -0.0169573 0.045688 -0.00813818 -0.0169573 0.0450094 -0.00827396 -0.0178589 0.0439685 -0.0089871 -0.0182723 0.0426766 -0.00961697 -0.018994 0.0423627 -0.00940236 -0.0192919 0.0419929 -0.00997784 -0.0192919 0.0416389 -0.00976437 -0.0195418 0.040578 -0.0108327 -0.0197401 0.0409013 -0.010175 -0.0197401 0.0389345 -0.0126631 -0.0199708 0.039222 -0.0135233 -0.0198838 0.03984 -0.0129011 -0.0197401 0.0401057 -0.0137024 -0.0195418 0.0413638 -0.0133016 -0.0186525 0.0416519 -0.0133774 -0.0182723 0.0415102 -0.0139869 -0.0182723 0.0417551 -0.0140366 -0.0178589 0.0422243 -0.0135278 -0.0169573 0.0421756 -0.0141218 -0.0164821 0.0422632 -0.0138553 -0.016 0.0578073 -0.00751573 -0.0164821 0.0573046 -0.00721257 -0.0164821 0.0568238 -0.00686047 -0.0169573 0.0568872 -0.00673151 -0.0174184 0.0564184 -0.00629956 -0.0178589 0.0558485 -0.00607767 -0.0178589 0.0547994 -0.00519967 -0.0186525 0.0542925 -0.0043608 -0.0192919 0.05225 -0.00333153 -0.0197401 0.05225 -0.00287037 -0.0198838 0.0515185 -0.0033524 -0.0197401 0.0507873 -0.00341517 -0.0197401 0.0507347 -0.00295702 -0.0198838 0.0499023 -0.0025969 -0.0199708 0.0575973 -0.00741848 -0.016 0.0569207 -0.00703912 -0.016 0.0562853 -0.00661453 -0.0169573 0.0563412 -0.00648216 -0.0174184 0.0557819 -0.00626439 -0.0174184 0.0553372 -0.00564892 -0.0182723 0.0552668 -0.00588869 -0.0178589 0.0542276 -0.00473546 -0.018994 0.0541694 -0.00507201 -0.0186525 0.0536154 -0.00426344 -0.0192919 0.053572 -0.0046412 -0.018994 0.0529338 -0.0042049 -0.0192919 0.0529574 -0.00379221 -0.0195418 0.05225 -0.003772 -0.0195418 0.0508375 -0.00385277 -0.0195418 0.0500619 -0.00351946 -0.0197401 0.0499833 -0.00306506 -0.0198838 0.0492392 -0.00321583 -0.0198838 0.0567854 -0.0069386 -0.0164821 0.054732 -0.00548982 -0.0182723 0.0541186 -0.00536554 -0.0182723 0.0535331 -0.00498052 -0.0186525 0.0529121 -0.00458452 -0.018994 0.0515439 -0.00379214 -0.0195418 0.050137 -0.00395348 -0.0195418 0.0562514 -0.00669473 -0.0164821 0.0557043 -0.00648174 -0.0164821 0.0554911 -0.00643904 -0.016 0.0545782 -0.00615108 -0.0164821 0.0540028 -0.0060345 -0.0164821 0.0528418 -0.00581378 -0.0169573 0.05225 -0.00545493 -0.0178589 0.0503814 -0.00536554 -0.0182723 0.0532185 -0.00595897 -0.016 0.0534217 -0.00595095 -0.0164821 0.05225 -0.00565318 -0.0174184 0.0516612 -0.00581361 -0.0169573 0.0516528 -0.00567016 -0.0174184 0.0510294 -0.00552473 -0.0178589 0.051052 -0.00572168 -0.0174184 0.050424 -0.00561177 -0.0178589 0.0497006 -0.00519967 -0.0186525 0.0528368 -0.00590071 -0.0164821 0.05225 -0.00588395 -0.0164821 0.0516664 -0.00590052 -0.0164821 0.05225 -0.00579688 -0.0169573 0.0510683 -0.00586445 -0.0169573 0.0504578 -0.00580711 -0.0174184 0.049768 -0.00548982 -0.0182723 0.0510783 -0.00595095 -0.0164821 0.0508961 -0.00600292 -0.016 0.0504972 -0.0060345 -0.0164821 0.0501316 -0.00613442 -0.016 0.0486432 -0.00656865 -0.016 0.0462081 -0.00784709 -0.0164821 0.0452406 -0.00852588 -0.0169573 0.0451434 -0.00842001 -0.0174184 0.0445708 -0.00870018 -0.0178589 0.0433364 -0.00928968 -0.0186525 0.0435723 -0.00947159 -0.0182723 0.0412909 -0.0103806 -0.0195418 0.0416565 -0.0105735 -0.0192919 0.0409787 -0.0110157 -0.0195418 0.0402927 -0.0115077 -0.0197401 0.039863 -0.0113404 -0.0198838 0.0396079 -0.0120554 -0.0198838 0.039156 -0.0119086 -0.0199708 0.0459463 -0.00808069 -0.016 0.0457432 -0.00820558 -0.0164821 0.0452995 -0.00859003 -0.0164821 0.044816 -0.00893849 -0.0169573 0.044713 -0.00883834 -0.0174184 0.0443071 -0.00928057 -0.0174184 0.0441573 -0.00915075 -0.0178589 0.0429585 -0.00980976 -0.0186525 0.042611 -0.0103506 -0.0186525 0.0423185 -0.0101742 -0.018994 0.0413547 -0.0111874 -0.0192919 0.0407032 -0.0116675 -0.0195418 0.0400464 -0.0121979 -0.0197401 0.039394 -0.0127839 -0.0198838 0.0453531 -0.00858059 -0.016 0.0437702 -0.00962419 -0.0178589 0.0434107 -0.010119 -0.0178589 0.0432044 -0.00997791 -0.0182723 0.0419928 -0.0107509 -0.018994 0.0422949 -0.0109103 -0.0186525 0.0417005 -0.0113453 -0.018994 0.0404654 -0.012334 -0.0195418 0.0442883 -0.00970755 -0.016 0.0444815 -0.00943169 -0.0164821 0.0437648 -0.0103611 -0.0164821 0.0434474 -0.010855 -0.0164821 0.0434057 -0.0109822 -0.016 0.0431588 -0.0113662 -0.0164821 0.0428205 -0.0118568 -0.0169573 0.0426898 -0.0117971 -0.0174184 0.0424562 -0.01235 -0.0174184 0.0420659 -0.0128541 -0.0178589 0.0425901 -0.0124022 -0.0169573 0.0418936 -0.0134409 -0.0178589 0.0428997 -0.011893 -0.0164821 0.0423911 -0.0129598 -0.0169573 0.0422545 -0.0129154 -0.0174184 0.0424663 -0.0131066 -0.016 0.0426712 -0.0124337 -0.0164821 0.0424739 -0.0129867 -0.0164821 0.0420854 -0.0134913 -0.0174184 0.0421173 -0.0146172 -0.016 0.0420755 -0.0147002 -0.0164821 0.038117 -0.0179854 -0.02 0.0386223 -0.0181225 -0.0199708 0.040266 -0.0193132 -0.0195418 0.0408585 -0.0198644 -0.0192919 0.0410335 -0.0191114 -0.018994 0.0412201 -0.0197469 -0.018994 0.0416519 -0.0189489 -0.0182723 0.0418283 -0.0195493 -0.0182723 0.0420659 -0.0194721 -0.0178589 0.0386223 -0.0142037 -0.0199708 0.0394202 -0.011168 -0.0199708 0.0401585 -0.0106411 -0.0198838 0.0404935 -0.00995982 -0.0198838 0.0427648 -0.00884893 -0.0192919 0.0430659 -0.00908112 -0.018994 0.0434852 -0.00856836 -0.018994 0.0437433 -0.00879203 -0.0186525 0.044178 -0.00831841 -0.0186525 0.0443916 -0.00852602 -0.0182723 0.0455971 -0.00802693 -0.0174184 0.0454716 -0.00787347 -0.0178589 0.0466927 -0.00751573 -0.0164821 0.0471954 -0.00721257 -0.0164821 0.0397263 -0.0104437 -0.0199708 0.0400733 -0.0097381 -0.0199708 0.0412617 -0.00953691 -0.0197401 0.0416579 -0.00892041 -0.0197401 0.0420215 -0.00916903 -0.0195418 0.0424375 -0.00859651 -0.0195418 0.0431978 -0.00831936 -0.0192919 0.044639 -0.00787038 -0.0186525 0.0448404 -0.00808985 -0.0182723 0.0453134 -0.00768002 -0.0182723 0.0460724 -0.00766039 -0.0174184 0.0466456 -0.00744248 -0.0169573 0.0465679 -0.00732159 -0.0174184 0.0471526 -0.00713675 -0.0169573 0.0404599 -0.00905342 -0.0199708 0.0408668 -0.00929877 -0.0198838 0.0412772 -0.00866011 -0.0198838 0.0428854 -0.00804866 -0.0195418 0.0439331 -0.00808037 -0.018994 0.0451248 -0.00744941 -0.0186525 0.045809 -0.00729785 -0.0182723 0.0459559 -0.00750001 -0.0178589 0.0464607 -0.00715482 -0.0178589 0.0470819 -0.00701162 -0.0174184 0.0476762 -0.00686047 -0.0169573 0.0482486 -0.00669473 -0.0164821 0.0398337 -0.00917039 -0.02 0.0420886 -0.00832753 -0.0197401 0.0417235 -0.00804593 -0.0198838 0.0425525 -0.00776021 -0.0197401 0.0433639 -0.00752728 -0.0195418 0.0436604 -0.00781537 -0.0192919 0.0444081 -0.00761875 -0.018994 0.0463256 -0.0069446 -0.0182723 0.0469844 -0.00683901 -0.0178589 0.040885 -0.00839194 -0.0199708 0.042204 -0.00745822 -0.0198838 0.0430481 -0.0072203 -0.0197401 0.0438714 -0.00703407 -0.0195418 0.044151 -0.00733862 -0.0192919 0.0449086 -0.007185 -0.018994 0.0461646 -0.006694 -0.0186525 0.0456339 -0.00705685 -0.0186525 0.0476128 -0.00673151 -0.0174184 0.0482147 -0.00661453 -0.0169573 0.0408299 -0.00764003 -0.02 0.0413472 -0.0077558 -0.0199708 0.0427174 -0.0068989 -0.0198838 0.0446679 -0.00689064 -0.0192919 0.0454332 -0.00678053 -0.018994 0.0459799 -0.00640666 -0.018994 0.0468616 -0.00662142 -0.0182723 0.0475253 -0.00655361 -0.0178589 0.0481588 -0.00648216 -0.0174184 0.041845 -0.00714708 -0.0199708 0.0423766 -0.00656778 -0.0199708 0.0435736 -0.00670956 -0.0197401 0.0441274 -0.00622965 -0.0197401 0.0444063 -0.00657064 -0.0195418 0.0452097 -0.00647291 -0.0192919 0.0467151 -0.00636203 -0.0186525 0.0474151 -0.00632936 -0.0182723 0.0479844 -0.00606938 -0.0182723 0.0480816 -0.00629956 -0.0178589 0.0486515 -0.00607767 -0.0178589 0.0487181 -0.00626439 -0.0174184 0.0429405 -0.00601977 -0.0199708 0.0435348 -0.00550484 -0.0199708 0.0441575 -0.00502468 -0.0199708 0.0433653 -0.00502201 -0.02 0.0440973 -0.00447566 -0.02 0.0448065 -0.00458085 -0.0199708 0.0454799 -0.00417481 -0.0199708 0.0456588 -0.00352907 -0.02 0.0473286 -0.00278993 -0.02 0.0517933 -0.00192043 -0.02 0.0527067 -0.00192043 -0.02 0.05225 -0.00239526 -0.0199708 0.0530089 -0.00289205 -0.0198838 0.053036 -0.00241771 -0.0199708 0.0537653 -0.00295702 -0.0198838 0.054363 -0.00395348 -0.0195418 0.0550565 -0.00409402 -0.0195418 0.0549629 -0.00449665 -0.0192919 0.0556245 -0.00467055 -0.0192919 0.0566316 -0.00579498 -0.0186525 0.0579321 -0.00732159 -0.0174184 0.0574181 -0.00701162 -0.0174184 0.0582919 -0.00784709 -0.0164821 0.0538194 -0.002485 -0.0199708 0.0545167 -0.00306506 -0.0198838 0.0544381 -0.00351946 -0.0197401 0.0551563 -0.003665 -0.0197401 0.055741 -0.00427393 -0.0195418 0.0562751 -0.00488194 -0.0192919 0.0567646 -0.00548037 -0.018994 0.0561473 -0.00524006 -0.018994 0.0570849 -0.00632936 -0.0182723 0.0576384 -0.00662142 -0.0182723 0.0575156 -0.00683901 -0.0178589 0.0583431 -0.00777665 -0.0169573 0.058812 -0.00813818 -0.0169573 0.0587568 -0.00820558 -0.0164821 0.0545243 -0.00209577 -0.02 0.0552608 -0.00321583 -0.0198838 0.0558651 -0.0038513 -0.0197401 0.0569126 -0.00513013 -0.0192919 0.0573671 -0.00575552 -0.018994 0.0572164 -0.00606203 -0.0186525 0.0577849 -0.00636203 -0.0186525 0.0581744 -0.0069446 -0.0182723 0.0580393 -0.00715482 -0.0178589 0.0585441 -0.00750001 -0.0178589 0.0584276 -0.00766039 -0.0174184 0.0589029 -0.00802693 -0.0174184 0.0554209 -0.00227039 -0.02 0.0553684 -0.00275306 -0.0199708 0.0545977 -0.0025969 -0.0199708 0.056414 -0.00449262 -0.0195418 0.0570735 -0.00474937 -0.0195418 0.0575348 -0.0054143 -0.0192919 0.0593566 -0.00842001 -0.0174184 0.055995 -0.00340882 -0.0198838 0.056562 -0.00407776 -0.0197401 0.0577172 -0.00504335 -0.0195418 0.0579529 -0.00606462 -0.018994 0.0581399 -0.00573354 -0.0192919 0.0583354 -0.006694 -0.0186525 0.0585201 -0.00640666 -0.018994 0.058691 -0.00729785 -0.0182723 0.0590284 -0.00787347 -0.0178589 0.0594906 -0.00827396 -0.0178589 0.0561289 -0.00295295 -0.0199708 0.0563045 -0.00250209 -0.02 0.0576094 -0.00348121 -0.0199708 0.0580182 -0.00313273 -0.02 0.0583247 -0.00380786 -0.0199708 0.0596371 -0.00397733 -0.02 0.0604027 -0.00447566 -0.02 0.0603425 -0.00502468 -0.0199708 0.0611347 -0.00502201 -0.02 0.0618303 -0.00561415 -0.02 0.0609652 -0.00550484 -0.0199708 0.0650345 -0.015065 -0.0197401 0.0650764 -0.0157967 -0.0197401 0.0646361 -0.0158093 -0.0195418 0.0642229 -0.0165051 -0.0192919 0.0641838 -0.0171881 -0.0192919 0.063805 -0.0171556 -0.018994 0.0637295 -0.0178136 -0.018994 0.0632818 -0.0183984 -0.0186525 0.0629898 -0.0183393 -0.0182723 0.0658777 -0.0142037 -0.0199708 0.066383 -0.0143409 -0.02 0.065494 -0.0150256 -0.0198838 0.0655373 -0.0157835 -0.0198838 0.0650764 -0.0165295 -0.0197401 0.0646361 -0.016517 -0.0195418 0.0645957 -0.0172235 -0.0195418 0.0641058 -0.0178677 -0.0192919 0.0636165 -0.0184663 -0.018994 0.0631362 -0.0190246 -0.0186525 0.0628481 -0.0189489 -0.0182723 0.0624341 -0.0194721 -0.0178589 0.0620438 -0.0199762 -0.0174184 0.0616795 -0.0204694 -0.0169573 0.0614182 -0.0210007 -0.0169573 0.0660122 -0.01577 -0.0199708 0.0659674 -0.0149849 -0.0199708 0.0650345 -0.0172612 -0.0197401 0.0639892 -0.0185418 -0.0192919 0.0626717 -0.0195493 -0.0182723 0.0629551 -0.0196414 -0.0186525 0.0624614 -0.0201388 -0.0182723 0.0622286 -0.0200481 -0.0178589 0.0619905 -0.0206114 -0.0178589 0.0618102 -0.0205291 -0.0174184 0.0615453 -0.0210678 -0.0174184 0.0611271 -0.0215162 -0.0169573 0.0665 -0.0161631 -0.02 0.0660122 -0.0165563 -0.0199708 0.0655373 -0.0165427 -0.0198838 0.065494 -0.0173006 -0.0198838 0.064951 -0.0179892 -0.0197401 0.064515 -0.0179265 -0.0195418 0.0643943 -0.0186239 -0.0195418 0.0638342 -0.0192081 -0.0192919 0.0634665 -0.0191114 -0.018994 0.0632799 -0.0197469 -0.018994 0.062739 -0.0202469 -0.0186525 0.0622178 -0.0207153 -0.0182723 0.0617207 -0.0211603 -0.0178589 0.0603901 -0.0224401 -0.0164821 0.0654074 -0.0180549 -0.0198838 0.0636415 -0.0198644 -0.0192919 0.0624888 -0.020839 -0.0186525 0.0619417 -0.0212769 -0.0182723 0.0612502 -0.0215904 -0.0174184 0.060807 -0.0220143 -0.0169573 0.0664707 -0.0170761 -0.02 0.066383 -0.0179854 -0.02 0.0659674 -0.0173413 -0.0199708 0.0658777 -0.0181225 -0.0199708 0.065278 -0.0188029 -0.0198838 0.064826 -0.0187113 -0.0197401 0.064234 -0.0193132 -0.0195418 0.0630573 -0.0203708 -0.018994 0.0627995 -0.0209809 -0.018994 0.0616339 -0.0218218 -0.0182723 0.0614199 -0.0216928 -0.0178589 0.0610893 -0.0222073 -0.0178589 0.0609257 -0.0220954 -0.0174184 0.06466 -0.0194251 -0.0197401 0.0644536 -0.0201283 -0.0197401 0.0640346 -0.0199922 -0.0195418 0.0634116 -0.0205087 -0.0192919 0.0631453 -0.0211388 -0.0192919 0.0625072 -0.0215753 -0.018994 0.061889 -0.0219757 -0.0186525 0.0622051 -0.0214159 -0.0186525 0.0657436 -0.0188973 -0.0199708 0.066034 -0.0197777 -0.02 0.0655655 -0.0196632 -0.0199708 0.065106 -0.0195424 -0.0198838 0.0648921 -0.0202708 -0.0198838 0.0642073 -0.0208185 -0.0197401 0.0635213 -0.0213106 -0.0195418 0.0637968 -0.0206587 -0.0195418 0.0621815 -0.022152 -0.018994 0.0615415 -0.0225165 -0.0186525 0.0612956 -0.0223483 -0.0182723 0.0609277 -0.0228546 -0.0182723 0.065344 -0.0204176 -0.0199708 0.0657741 -0.0206534 -0.02 0.0654586 -0.0215107 -0.02 0.0647737 -0.0218825 -0.0199708 0.0644267 -0.0225881 -0.0199708 0.0641928 -0.023937 -0.02 0.0631528 -0.0245704 -0.0199708 0.0636701 -0.0246862 -0.02 0.0604027 -0.0278506 -0.02 0.0596935 -0.0277454 -0.0199708 0.0579116 -0.0276782 -0.0197401 0.057245 -0.0279826 -0.0197401 0.056414 -0.0278336 -0.0195418 0.0548768 -0.0274592 -0.018994 0.0534706 -0.0268015 -0.0178589 0.0528613 -0.0268538 -0.0178589 0.05225 -0.0265293 -0.0169573 0.0516664 -0.0264257 -0.0164821 0.0510783 -0.0263753 -0.0164821 0.0590201 -0.0281514 -0.0199708 0.058115 -0.028092 -0.0198838 0.0583247 -0.0285184 -0.0199708 0.0574245 -0.0284074 -0.0198838 0.056562 -0.0282485 -0.0197401 0.0556245 -0.0276557 -0.0192919 0.055741 -0.0280523 -0.0195418 0.0549629 -0.0278296 -0.0192919 0.0542276 -0.0275908 -0.018994 0.0541694 -0.0272542 -0.0186525 0.0534991 -0.0270497 -0.0182723 0.05225 -0.026673 -0.0174184 0.0516612 -0.0265126 -0.0169573 0.0510683 -0.0264618 -0.0169573 0.0558651 -0.0284749 -0.0197401 0.0535331 -0.0273457 -0.0186525 0.0528756 -0.0271033 -0.0182723 0.0528926 -0.0274007 -0.0186525 0.05225 -0.0268713 -0.0178589 0.05225 -0.0271212 -0.0182723 0.0516412 -0.026854 -0.0178589 0.0516528 -0.0266561 -0.0174184 0.0504823 -0.0263775 -0.0169573 0.0576094 -0.028845 -0.0199708 0.0571715 -0.0295363 -0.02 0.056717 -0.0286828 -0.0198838 0.0551563 -0.0286612 -0.0197401 0.0550565 -0.0282322 -0.0195418 0.0542925 -0.0279654 -0.0192919 0.053572 -0.027685 -0.018994 0.051052 -0.0266045 -0.0174184 0.0504578 -0.0265191 -0.0174184 0.0568767 -0.0291303 -0.0199708 0.055995 -0.0289174 -0.0198838 0.0552608 -0.0291104 -0.0198838 0.0544381 -0.0288068 -0.0197401 0.054363 -0.0283727 -0.0195418 0.0536625 -0.0284734 -0.0195418 0.0536154 -0.0280628 -0.0192919 0.0529121 -0.0277417 -0.018994 0.0529338 -0.0281213 -0.0192919 0.05225 -0.0274191 -0.0186525 0.0516267 -0.0271034 -0.0182723 0.0510009 -0.0270497 -0.0182723 0.0510294 -0.0268015 -0.0178589 0.0498695 -0.0263999 -0.0174184 0.0561289 -0.0293733 -0.0199708 0.0553684 -0.0295732 -0.0199708 0.0545977 -0.0297293 -0.0199708 0.0554209 -0.0300558 -0.02 0.0536183 -0.0303473 -0.02 0.053036 -0.0299085 -0.0199708 0.05225 -0.029931 -0.0199708 0.0499023 -0.0297293 -0.0199708 0.0499757 -0.0302305 -0.02 0.0490791 -0.0300558 -0.02 0.0420135 -0.0260766 -0.02 0.0413994 -0.0254004 -0.02 0.0413472 -0.0245704 -0.0199708 0.0408299 -0.0246862 -0.02 0.040885 -0.0239343 -0.0199708 0.0400733 -0.0225881 -0.0199708 0.0398337 -0.0231558 -0.02 0.0394112 -0.022346 -0.02 0.0390414 -0.0215107 -0.02 0.0397263 -0.0218825 -0.0199708 0.0394202 -0.0211582 -0.0199708 0.039156 -0.0204176 -0.0199708 0.0534706 -0.00552473 -0.0178589 0.0534991 -0.00527647 -0.0182723 0.054076 -0.00561177 -0.0178589 0.0546754 -0.00573322 -0.0178589 0.05225 -0.00490715 -0.0186525 0.0528926 -0.00492551 -0.0186525 0.0528756 -0.00522292 -0.0182723 0.05225 -0.00520505 -0.0182723 0.0516412 -0.00547225 -0.0178589 0.0516267 -0.00522278 -0.0182723 0.05225 -0.0045656 -0.018994 0.0515898 -0.00458441 -0.018994 0.05225 -0.00418537 -0.0192919 0.0515678 -0.00420481 -0.0192919 0.041975 -0.0164566 -0.0164821 0.041888 -0.0158671 -0.0169573 0.041975 -0.0158696 -0.0164821 0.0417444 -0.0164632 -0.0174184 0.041888 -0.0164591 -0.0169573 0.0419893 -0.0176384 -0.0169573 0.0420755 -0.017626 -0.0164821 0.0415462 -0.0164689 -0.0178589 0.0417444 -0.015863 -0.0174184 0.0419218 -0.0170502 -0.0169573 0.0417786 -0.0170625 -0.0174184 0.0420854 -0.0188349 -0.0174184 0.0415462 -0.0158573 -0.0178589 0.0415811 -0.0170795 -0.0178589 0.0416508 -0.017687 -0.0178589 0.041847 -0.0176588 -0.0174184 0.0419494 -0.0182503 -0.0174184 0.0418936 -0.0188853 -0.0178589 0.0409986 -0.0164845 -0.0186525 0.0412964 -0.0158502 -0.0182723 0.0413321 -0.0152254 -0.0182723 0.0409986 -0.0158417 -0.0186525 0.0410353 -0.0151999 -0.0186525 0.0417551 -0.0182897 -0.0178589 0.0406572 -0.0158319 -0.018994 0.0412964 -0.016476 -0.0182723 0.0413321 -0.0171008 -0.0182723 0.0414035 -0.0177226 -0.0182723 0.0412182 -0.0183984 -0.0186525 0.0415102 -0.0183393 -0.0182723 0.0413638 -0.0190246 -0.0186525 0.0406572 -0.0164943 -0.018994 0.0402771 -0.0158211 -0.0192919 0.0410353 -0.0171263 -0.0186525 0.0407705 -0.0178136 -0.018994 0.0411086 -0.017765 -0.0186525 0.0398639 -0.016517 -0.0195418 0.0402771 -0.0165051 -0.0192919 0.040695 -0.0171556 -0.018994 0.0403942 -0.0178677 -0.0192919 0.0405108 -0.0185418 -0.0192919 0.0408835 -0.0184663 -0.018994 0.0394237 -0.0165295 -0.0197401 0.0398639 -0.0158093 -0.0195418 0.0394237 -0.0157967 -0.0197401 0.0399043 -0.0151027 -0.0195418 0.0403162 -0.0171881 -0.0192919 0.039985 -0.0179265 -0.0195418 0.0401057 -0.0186239 -0.0195418 0.0406658 -0.0192081 -0.0192919 0.0394655 -0.015065 -0.0197401 0.0389627 -0.0157835 -0.0198838 0.0399043 -0.0172235 -0.0195418 0.0394655 -0.0172612 -0.0197401 0.03984 -0.0194251 -0.0197401 0.0384878 -0.0165563 -0.0199708 0.0384878 -0.01577 -0.0199708 0.039006 -0.0150256 -0.0198838 0.0385327 -0.0149849 -0.0199708 0.039006 -0.0173006 -0.0198838 0.039549 -0.0179892 -0.0197401 0.039674 -0.0187113 -0.0197401 0.0385327 -0.0173413 -0.0199708 0.0389627 -0.0165427 -0.0198838 0.0390926 -0.0180549 -0.0198838 0.039222 -0.0188029 -0.0198838 0.0387564 -0.0188973 -0.0199708 0.0389345 -0.0196632 -0.0199708 0.039394 -0.0195424 -0.0198838 0.041761 -0.0202469 -0.0186525 0.041545 -0.0196414 -0.0186525 0.0407032 -0.0206587 -0.0195418 0.0404654 -0.0199922 -0.0195418 0.0402927 -0.0208185 -0.0197401 0.0400464 -0.0201283 -0.0197401 0.039863 -0.0209858 -0.0198838 0.0396079 -0.0202708 -0.0198838 0.0429547 -0.0210678 -0.0174184 0.0430801 -0.0216928 -0.0178589 0.0432044 -0.0223483 -0.0182723 0.0435723 -0.0228546 -0.0182723 0.0437433 -0.0235342 -0.0186525 0.0434852 -0.0237579 -0.018994 0.0439331 -0.0242459 -0.018994 0.0436604 -0.0245108 -0.0192919 0.044151 -0.0249876 -0.0192919 0.0447078 -0.0265441 -0.0197401 0.0420112 -0.020839 -0.0186525 0.0413547 -0.0211388 -0.0192919 0.0414427 -0.0203708 -0.018994 0.0417005 -0.0209809 -0.018994 0.0416565 -0.0217527 -0.0192919 0.0419929 -0.0223484 -0.0192919 0.0410884 -0.0205087 -0.0192919 0.0412909 -0.0219456 -0.0195418 0.0416389 -0.0225618 -0.0195418 0.0420215 -0.0231572 -0.0195418 0.0409787 -0.0213106 -0.0195418 0.0409013 -0.0221512 -0.0197401 0.0412617 -0.0227893 -0.0197401 0.0420886 -0.0239987 -0.0197401 0.040578 -0.0214935 -0.0197401 0.0408668 -0.0230274 -0.0198838 0.0412772 -0.0236661 -0.0198838 0.0416579 -0.0234058 -0.0197401 0.0401585 -0.0216851 -0.0198838 0.0404599 -0.0232728 -0.0199708 0.0404935 -0.0223664 -0.0198838 0.0417235 -0.0242803 -0.0198838 0.041845 -0.0251791 -0.0199708 0.0423766 -0.0257584 -0.0199708 0.0431588 -0.0209601 -0.0164821 0.0430818 -0.0210007 -0.0169573 0.0432498 -0.0215904 -0.0174184 0.0435743 -0.0220954 -0.0174184 0.0434107 -0.0222073 -0.0178589 0.0437702 -0.022702 -0.0178589 0.0439685 -0.0233391 -0.0182723 0.0444081 -0.0247075 -0.018994 0.0446679 -0.0254356 -0.0192919 0.0444063 -0.0257556 -0.0195418 0.0449667 -0.0261877 -0.0195418 0.0450634 -0.0273457 -0.0198838 0.0454799 -0.0281514 -0.0199708 0.0433729 -0.0215162 -0.0169573 0.0439272 -0.022581 -0.0174184 0.0443916 -0.0238002 -0.0182723 0.044178 -0.0240078 -0.0186525 0.044639 -0.0244558 -0.0186525 0.0449086 -0.0251412 -0.018994 0.0452097 -0.0258533 -0.0192919 0.0455509 -0.0265872 -0.0195418 0.0453127 -0.0269577 -0.0197401 0.0459403 -0.0273362 -0.0197401 0.0457135 -0.0277377 -0.0198838 0.044041 -0.0224932 -0.0169573 0.043693 -0.0220143 -0.0169573 0.0441573 -0.0231755 -0.0178589 0.0434474 -0.0214712 -0.0164821 0.0437648 -0.0219651 -0.0164821 0.0445708 -0.023626 -0.0178589 0.0457432 -0.0241206 -0.0164821 0.0460724 -0.0246658 -0.0174184 0.0465679 -0.0250046 -0.0174184 0.0474151 -0.0259969 -0.0182723 0.0472836 -0.0262642 -0.0186525 0.0488755 -0.0276557 -0.0192919 0.0482249 -0.0274443 -0.0192919 0.046385 -0.028092 -0.0198838 0.0468906 -0.028845 -0.0199708 0.0461569 -0.0245496 -0.0169573 0.0466456 -0.0248837 -0.0169573 0.0469844 -0.0254872 -0.0178589 0.0475253 -0.0257726 -0.0178589 0.0478684 -0.0265312 -0.0186525 0.0483527 -0.0270862 -0.018994 0.0471526 -0.0251895 -0.0169573 0.0470819 -0.0253146 -0.0174184 0.0476128 -0.0255947 -0.0174184 0.0479844 -0.0262568 -0.0182723 0.0480816 -0.0260267 -0.0178589 0.0484674 -0.0267645 -0.0186525 0.0476762 -0.0254658 -0.0169573 0.0466927 -0.0248105 -0.0164821 0.0485676 -0.0264839 -0.0182723 0.0486515 -0.0262485 -0.0178589 0.0491628 -0.0266773 -0.0182723 0.050424 -0.0267145 -0.0178589 0.0503814 -0.0269607 -0.0182723 0.0503306 -0.0272542 -0.0186525 0.0495371 -0.0278296 -0.0192919 0.050137 -0.0283727 -0.0195418 0.0494435 -0.0282322 -0.0195418 0.0500619 -0.0288068 -0.0197401 0.0491316 -0.0295732 -0.0199708 0.0509669 -0.0273457 -0.0186525 0.050928 -0.027685 -0.018994 0.0502724 -0.0275908 -0.018994 0.0502075 -0.0279654 -0.0192919 0.0507873 -0.0289111 -0.0197401 0.0499833 -0.0292612 -0.0198838 0.0516095 -0.0274008 -0.0186525 0.0515898 -0.0277418 -0.018994 0.0515439 -0.0285341 -0.0195418 0.0508846 -0.0280628 -0.0192919 0.0508375 -0.0284734 -0.0195418 0.0514918 -0.0294342 -0.0198838 0.0507347 -0.0293692 -0.0198838 0.0514644 -0.0299085 -0.0199708 0.0506806 -0.0298412 -0.0199708 0.05225 -0.0277606 -0.018994 0.05225 -0.0281409 -0.0192919 0.05225 -0.0285542 -0.0195418 0.0515678 -0.0281214 -0.0192919 0.05225 -0.0289947 -0.0197401 0.0529574 -0.028534 -0.0195418 0.0529825 -0.0289738 -0.0197401 0.0537127 -0.0289111 -0.0197401 0.0515185 -0.0289738 -0.0197401 0.05225 -0.0294558 -0.0198838 0.0530089 -0.0294342 -0.0198838 0.0545167 -0.0292612 -0.0198838 0.0538194 -0.0298412 -0.0199708 0.0537653 -0.0293692 -0.0198838 0.0557336 -0.0259265 -0.0169573 0.0557819 -0.0260618 -0.0174184 0.0569747 -0.0257726 -0.0178589 0.0583354 -0.0256322 -0.0186525 0.0590668 -0.0255457 -0.018994 0.0592903 -0.0258533 -0.0192919 0.0598321 -0.0254356 -0.0192919 0.0606286 -0.0252922 -0.0195418 0.0609264 -0.0256167 -0.0197401 0.0562853 -0.0257117 -0.0169573 0.0563412 -0.0258441 -0.0174184 0.0576384 -0.0257048 -0.0182723 0.0575156 -0.0254872 -0.0178589 0.0581744 -0.0253816 -0.0182723 0.0603491 -0.0249876 -0.0192919 0.0557043 -0.0258445 -0.0164821 0.0568238 -0.0254658 -0.0169573 0.0568872 -0.0255947 -0.0174184 0.0588661 -0.0252694 -0.0186525 0.0593752 -0.0248768 -0.0186525 0.0595914 -0.0251412 -0.018994 0.0600919 -0.0247075 -0.018994 0.0608396 -0.0245108 -0.0192919 0.0573474 -0.0251895 -0.0169573 0.0574181 -0.0253146 -0.0174184 0.0562514 -0.0256315 -0.0164821 0.0580393 -0.0251714 -0.0178589 0.058691 -0.0250284 -0.0182723 0.0585441 -0.0248262 -0.0178589 0.0592594 -0.0238003 -0.0169573 0.0605669 -0.0242459 -0.018994 0.0618234 -0.0227092 -0.018994 0.0621373 -0.0229239 -0.0192919 0.0625071 -0.0223484 -0.0192919 0.0617352 -0.0234773 -0.0192919 0.0628611 -0.0225618 -0.0195418 0.0628435 -0.0217527 -0.0192919 0.0628421 -0.0234058 -0.0197401 0.0624785 -0.0231572 -0.0195418 0.0632091 -0.0219456 -0.0195418 0.063922 -0.0214935 -0.0197401 0.0632228 -0.0236661 -0.0198838 0.0636332 -0.0230274 -0.0198838 0.0640065 -0.0223664 -0.0198838 0.0632383 -0.0227893 -0.0197401 0.0635987 -0.0221512 -0.0197401 0.0643415 -0.0216851 -0.0198838 0.064637 -0.0209858 -0.0198838 0.063615 -0.0239343 -0.0199708 0.0640401 -0.0232728 -0.0199708 0.0650798 -0.0211582 -0.0199708 0.0623244 -0.0182045 -0.0164821 0.0627214 -0.0170625 -0.0174184 0.0629538 -0.0158573 -0.0178589 0.0633914 -0.0145612 -0.0186525 0.0638342 -0.0131181 -0.0192919 0.064234 -0.0130131 -0.0195418 0.0644536 -0.0121979 -0.0197401 0.0642073 -0.0115077 -0.0197401 0.0643415 -0.0106411 -0.0198838 0.0644267 -0.0097381 -0.0199708 0.0624245 -0.017626 -0.0164821 0.0625782 -0.0170502 -0.0169573 0.0624915 -0.0170428 -0.0164821 0.062612 -0.0164591 -0.0169573 0.0627557 -0.015863 -0.0174184 0.0627557 -0.0164632 -0.0174184 0.0631679 -0.0152254 -0.0182723 0.0636165 -0.01386 -0.018994 0.0636415 -0.0124618 -0.0192919 0.0640346 -0.012334 -0.0195418 0.0637968 -0.0116675 -0.0195418 0.0640065 -0.00995982 -0.0198838 0.062612 -0.0158671 -0.0169573 0.0627214 -0.0152637 -0.0174184 0.0629189 -0.0152468 -0.0178589 0.0628492 -0.0146392 -0.0178589 0.0630965 -0.0146036 -0.0182723 0.0632818 -0.0139278 -0.0186525 0.0634665 -0.0132148 -0.018994 0.0632799 -0.0125793 -0.018994 0.063922 -0.0108327 -0.0197401 0.0635213 -0.0110157 -0.0195418 0.0636332 -0.00929877 -0.0198838 0.062525 -0.0158696 -0.0164821 0.062653 -0.0146674 -0.0174184 0.0625782 -0.015276 -0.0169573 0.0629898 -0.0139869 -0.0182723 0.0627449 -0.0140366 -0.0178589 0.0631362 -0.0133016 -0.0186525 0.0620261 -0.0129867 -0.0164821 0.0620438 -0.01235 -0.0174184 0.061889 -0.0103506 -0.0186525 0.0614341 -0.00908112 -0.018994 0.0617352 -0.00884893 -0.0192919 0.0611361 -0.00752728 -0.0195418 0.0616146 -0.00804866 -0.0195418 0.0614519 -0.0072203 -0.0197401 0.0628481 -0.0133774 -0.0182723 0.0629551 -0.0126848 -0.0186525 0.0630573 -0.0119554 -0.018994 0.0634116 -0.0118175 -0.0192919 0.0632091 -0.0103806 -0.0195418 0.0635987 -0.010175 -0.0197401 0.0632383 -0.00953691 -0.0197401 0.0631528 -0.0077558 -0.0199708 0.0619099 -0.0124022 -0.0169573 0.0616795 -0.0118568 -0.0169573 0.0618102 -0.0117971 -0.0174184 0.0615453 -0.0112585 -0.0174184 0.0617207 -0.011166 -0.0178589 0.0612956 -0.00997791 -0.0182723 0.0616339 -0.0105044 -0.0182723 0.0615415 -0.00980976 -0.0186525 0.0613022 -0.00831936 -0.0192919 0.0618288 -0.0124337 -0.0164821 0.0616003 -0.011893 -0.0164821 0.0614182 -0.0113255 -0.0169573 0.0614199 -0.0106334 -0.0178589 0.0612502 -0.0107358 -0.0174184 0.0610893 -0.010119 -0.0178589 0.0609277 -0.00947159 -0.0182723 0.0611636 -0.00928968 -0.0186525 0.0607567 -0.00879203 -0.0186525 0.0610148 -0.00856836 -0.018994 0.0609257 -0.0102308 -0.0174184 0.0591866 -0.00768002 -0.0182723 0.0596596 -0.00808985 -0.0182723 0.059861 -0.00787038 -0.0186525 0.0600919 -0.00761875 -0.018994 0.0603491 -0.00733862 -0.0192919 0.0606286 -0.00703407 -0.0195418 0.0609264 -0.00670956 -0.0197401 0.0612382 -0.0063698 -0.0198838 0.0593752 -0.00744941 -0.0186525 0.0590668 -0.00678053 -0.018994 0.0595914 -0.007185 -0.018994 0.0598321 -0.00689064 -0.0192919 0.0600937 -0.00657064 -0.0195418 0.0603726 -0.00622965 -0.0197401 0.0600633 -0.00540906 -0.0198838 0.0606645 -0.00587265 -0.0198838 0.0588661 -0.00705685 -0.0186525 0.0592903 -0.00647291 -0.0192919 0.0595333 -0.00613849 -0.0195418 0.0589491 -0.00573905 -0.0195418 0.0583431 -0.0053736 -0.0195418 0.0587257 -0.00608679 -0.0192919 0.0579116 -0.00464807 -0.0197401 0.057245 -0.00434364 -0.0197401 0.0597922 -0.00578214 -0.0197401 0.0591873 -0.0053685 -0.0197401 0.0585597 -0.00499006 -0.0197401 0.058115 -0.00423423 -0.0198838 0.0574245 -0.00391885 -0.0198838 0.056717 -0.00364342 -0.0198838 0.0596935 -0.00458085 -0.0199708 0.0590201 -0.00417481 -0.0199708 0.0594366 -0.00498055 -0.0198838 0.0587865 -0.00458851 -0.0198838 0.0568767 -0.00319593 -0.0199708 0.0557336 -0.00639973 -0.0169573 0.055211 -0.0060789 -0.0174184 0.0551705 -0.00621678 -0.0169573 0.0546305 -0.00592631 -0.0174184 0.055146 -0.00630032 -0.0164821 0.0545979 -0.00606628 -0.0169573 0.0540177 -0.0059487 -0.0169573 0.0540422 -0.00580711 -0.0174184 0.0528613 -0.0054724 -0.0178589 0.0534317 -0.00586445 -0.0169573 0.05285 -0.00567032 -0.0174184 0.053448 -0.00572168 -0.0174184 0.0504823 -0.0059487 -0.0169573 0.0498246 -0.00573322 -0.0178589 0.0491628 -0.00564892 -0.0182723 0.0510009 -0.00527647 -0.0182723 0.0516095 -0.00492539 -0.0186525 0.050928 -0.0046412 -0.018994 0.0509669 -0.00498052 -0.0186525 0.0502724 -0.00473546 -0.018994 0.0503306 -0.00507201 -0.0186525 0.0496232 -0.004867 -0.018994 0.0508846 -0.00426344 -0.0192919 0.0502075 -0.0043608 -0.0192919 0.0495371 -0.00449665 -0.0192919 0.0498695 -0.00592631 -0.0174184 0.0494435 -0.00409402 -0.0195418 0.0493437 -0.003665 -0.0197401 0.0499021 -0.00606628 -0.0169573 0.0499218 -0.00615108 -0.0164821 0.0493295 -0.00621678 -0.0169573 0.049289 -0.0060789 -0.0174184 0.0488755 -0.00467055 -0.0192919 0.0486349 -0.0038513 -0.0197401 0.0472836 -0.00606203 -0.0186525 0.0484674 -0.00556175 -0.0186525 0.0478684 -0.00579498 -0.0186525 0.0465471 -0.00606462 -0.018994 0.0475874 -0.00513013 -0.0192919 0.0483527 -0.00524006 -0.018994 0.0477354 -0.00548037 -0.018994 0.0469652 -0.0054143 -0.0192919 0.0471329 -0.00575552 -0.018994 0.0457743 -0.00608679 -0.0192919 0.0482249 -0.00488194 -0.0192919 0.0463601 -0.00573354 -0.0192919 0.0455509 -0.00573905 -0.0195418 0.0472551 -0.00434364 -0.0197401 0.0474265 -0.00474937 -0.0195418 0.0459403 -0.00499006 -0.0197401 0.0467828 -0.00504335 -0.0195418 0.0461569 -0.0053736 -0.0195418 0.0453127 -0.0053685 -0.0197401 0.0447078 -0.00578214 -0.0197401 0.0449667 -0.00613849 -0.0195418 0.047938 -0.00407776 -0.0197401 0.0457135 -0.00458851 -0.0198838 0.0465884 -0.00464807 -0.0197401 0.0450634 -0.00498055 -0.0198838 0.047783 -0.00364342 -0.0198838 0.0468906 -0.00348121 -0.0199708 0.0470755 -0.00391885 -0.0198838 0.0461753 -0.00380786 -0.0199708 0.046385 -0.00423423 -0.0198838 0.0444367 -0.00540906 -0.0198838 0.0438355 -0.00587265 -0.0198838 0.0432618 -0.0063698 -0.0198838 0.0448785 -0.00899917 -0.0164821 0.0444157 -0.00937467 -0.0169573 0.044041 -0.00983299 -0.0169573 0.0439272 -0.00974524 -0.0174184 0.0435743 -0.0102308 -0.0174184 0.0430801 -0.0106334 -0.0178589 0.0428661 -0.0105044 -0.0182723 0.0425583 -0.0110493 -0.0182723 0.0420112 -0.0114872 -0.0186525 0.0410884 -0.0118175 -0.0192919 0.040266 -0.0130131 -0.0195418 0.0441099 -0.00988616 -0.0164821 0.043693 -0.010312 -0.0169573 0.0432498 -0.0107358 -0.0174184 0.0427793 -0.011166 -0.0178589 0.0422822 -0.011611 -0.0182723 0.041761 -0.0120794 -0.0186525 0.0414427 -0.0119554 -0.018994 0.0408585 -0.0124618 -0.0192919 0.0406658 -0.0131181 -0.0192919 0.0433729 -0.01081 -0.0169573 0.0425095 -0.0117148 -0.0178589 0.0420386 -0.0121874 -0.0182723 0.0412201 -0.0125793 -0.018994 0.0429547 -0.0112585 -0.0174184 0.0430818 -0.0113255 -0.0169573 0.0418283 -0.0127769 -0.0182723 0.0422714 -0.0122781 -0.0178589 0.0423085 -0.01355 -0.0164821 0.041545 -0.0126848 -0.0186525 0.0410335 -0.0132148 -0.018994 0.0420902 -0.0141045 -0.0169573 0.041847 -0.0146674 -0.0174184 0.0419494 -0.0140759 -0.0174184 0.0416508 -0.0146392 -0.0178589 0.0414035 -0.0146036 -0.0182723 0.0411086 -0.0145612 -0.0186525 0.0412182 -0.0139278 -0.0186525 0.0403942 -0.0144585 -0.0192919 0.0408835 -0.01386 -0.018994 0.0405108 -0.0137844 -0.0192919 0.039985 -0.0143997 -0.0195418 0.039674 -0.0136149 -0.0197401 0.0387564 -0.0134289 -0.0199708 0.0390926 -0.0142714 -0.0198838 0.042 -0.0161631 -2.11953e-09 0.0420294 -0.0153879 -0.016 0.0427255 -0.0123754 -0.016 0.0430393 -0.0116659 -1.5298e-09 0.0430393 -0.0116659 -0.016 0.0438229 -0.0103282 -0.016 0.0442883 -0.00970755 -1.27299e-09 0.0447994 -0.00912391 -1.19646e-09 0.0447994 -0.00912391 -0.016 0.0453531 -0.00858059 -1.12521e-09 0.0465756 -0.0076271 -1.00017e-09 0.0465756 -0.0076271 -0.016 0.0479279 -0.00686891 -0.016 0.0493792 -0.00632335 -0.016 0.0516684 -0.00592963 -0.016 0.052444 -0.00591495 -7.75652e-10 0.052444 -0.00591495 -0.016 0.0532185 -0.00595897 -7.81425e-10 0.0539874 -0.00606143 -0.016 0.0539874 -0.00606143 -7.94861e-10 0.0547464 -0.00622176 -8.15885e-10 0.0547464 -0.00622176 -0.016 0.0554911 -0.00643904 -8.44378e-10 0.0562173 -0.00671201 -8.80174e-10 0.0562173 -0.00671201 -0.016 0.0575973 -0.00741848 -9.72816e-10 0.0582434 -0.00784794 -1.02913e-09 0.0588551 -0.00832503 -1.0917e-09 0.0594289 -0.00884701 -1.16015e-09 0.0604503 -0.0100135 -0.016 0.0604503 -0.0100135 -1.31311e-09 0.061284 -0.0113206 -1.48452e-09 0.061284 -0.0113206 -0.016 0.0616243 -0.0120177 -1.57593e-09 0.061911 -0.0127385 -1.67045e-09 0.061911 -0.0127385 -0.016 0.0621423 -0.013479 -0.016 0.0621423 -0.013479 -1.76756e-09 0.062434 -0.0150017 -1.96724e-09 0.062434 -0.0150017 -0.016 0.0624927 -0.0157752 -0.016 0.0624927 -0.0157752 -2.06867e-09 0.0624927 -0.016551 -2.1704e-09 0.0624927 -0.016551 -0.016 0.0621423 -0.0188472 -2.47151e-09 0.061911 -0.0195877 -2.56862e-09 0.061911 -0.0195877 -0.016 0.0616243 -0.0203085 -2.66314e-09 0.061284 -0.0210056 -2.75455e-09 0.061284 -0.0210056 -0.016 0.0608919 -0.021675 -2.84233e-09 0.0608919 -0.021675 -0.016 0.0599617 -0.0229153 -0.016 0.0594289 -0.0234792 -3.07893e-09 0.0588551 -0.0240012 -3.14738e-09 0.0582434 -0.0244783 -3.20994e-09 0.0582434 -0.0244783 -0.016 0.0569207 -0.0252871 -3.316e-09 0.0562173 -0.0256142 -3.3589e-09 0.0562173 -0.0256142 -0.016 0.0554911 -0.0258872 -3.3947e-09 0.0547464 -0.0261045 -0.016 0.0539874 -0.0262648 -0.016 0.0532185 -0.0263673 -3.45765e-09 0.052444 -0.0264113 -3.46342e-09 0.0516684 -0.0263966 -0.016 0.0508961 -0.0263233 -3.45188e-09 0.0501316 -0.0261918 -3.43464e-09 0.0508961 -0.0263233 -0.016 0.0501316 -0.0261918 -0.016 0.0493792 -0.0260029 -0.016 0.0472374 -0.0251038 -3.29197e-09 0.0479279 -0.0254573 -0.016 0.0465756 -0.0246991 -3.2389e-09 0.0465756 -0.0246991 -0.016 0.0459463 -0.0242455 -3.17941e-09 0.0453531 -0.0237456 -3.11386e-09 0.0453531 -0.0237456 -0.016 0.0447994 -0.0232023 -3.04261e-09 0.0442883 -0.0226187 -2.96608e-09 0.0447994 -0.0232023 -0.016 0.0434057 -0.021344 -2.79893e-09 0.0434057 -0.021344 -0.016 0.0430393 -0.0206603 -0.016 0.0427255 -0.0199508 -0.016 0.0424663 -0.0192196 -0.016 0.0421173 -0.0177091 -2.32227e-09 0.0421173 -0.0177091 -0.016 0.0420294 -0.0169383 -0.016 0.0313079 -0.058543 -0.0199807 0.0317 -0.0589351 -0.02 0.0035 -0.0589351 -0.02 0.0129 -0.0586936 -0.0199927 0.0129 -0.058214 -0.0199345 0.00389207 -0.058543 -0.0199807 0.00503073 -0.0574043 -0.0196955 0.00538559 -0.0570495 -0.0195277 0.0129 -0.0568657 -0.0194231 0.00572228 -0.0567128 -0.0193259 0.0129 -0.0564682 -0.0191487 0.0129 -0.0561066 -0.0188284 0.00603757 -0.0563975 -0.019092 0.00659204 -0.055843 -0.0185376 0.00719552 -0.0552396 -0.0175307 0.0129 -0.0552875 -0.0176417 0.0129 -0.0551162 -0.01719 0.00732776 -0.0551073 -0.0171611 0.00742314 -0.0550119 -0.0167804 0.0129 -0.0549424 -0.0162415 0.0075 -0.0549351 -0.016 0.0277 -0.0549351 -0.016 0.0223 -0.0549424 -0.0162415 0.0277769 -0.0550119 -0.0167804 0.0278722 -0.0551073 -0.0171611 0.0223 -0.0552875 -0.0176417 0.0281723 -0.0554074 -0.0178856 0.0223 -0.0555119 -0.0180694 0.0283741 -0.0556092 -0.0182223 0.028608 -0.055843 -0.0185376 0.0223 -0.0561066 -0.0188284 0.0288716 -0.0561066 -0.0188284 0.0291624 -0.0563975 -0.019092 0.0294777 -0.0567128 -0.0193259 0.0301693 -0.0574043 -0.0196955 0.0309196 -0.0581547 -0.0199231 0.0223 -0.0586936 -0.0199927 0.0223 -0.058214 -0.0199345 0.0223 -0.0577451 -0.0198189 0.0129 -0.0577451 -0.0198189 0.0223 -0.0572934 -0.0196476 0.0129 -0.0572934 -0.0196476 0.0223 -0.0568657 -0.0194231 0.0223 -0.0564682 -0.0191487 0.0129 -0.0557863 -0.0184669 0.0223 -0.0557863 -0.0184669 0.0223 -0.0551162 -0.01719 0.0129 -0.0555119 -0.0180694 0.0129 -0.0550006 -0.016721 0.0223 -0.0550006 -0.016721 0.00374151 -0.0495351 -0.0199927 0.00428036 -0.0315154 -0.0199231 0.00469001 -0.0401351 -0.0198189 0.00503073 -0.0322658 -0.0196955 0.00514165 -0.0401351 -0.0196476 0.00556935 -0.0401351 -0.0194231 0.00596688 -0.0401351 -0.0191487 0.00603757 -0.0332726 -0.019092 0.00659204 -0.0338271 -0.0185376 0.00682588 -0.0340609 -0.0182223 0.0071476 -0.0401351 -0.0176417 0.00719552 -0.0344306 -0.0175307 0.00731888 -0.0401351 -0.01719 0.00742314 -0.0346582 -0.0167804 0.00748074 -0.0549543 -0.0163921 0.00743448 -0.0495351 -0.016721 0.00702769 -0.0554074 -0.0178856 0.00682588 -0.0556092 -0.0182223 0.00632843 -0.0561066 -0.0188284 0.00596688 -0.0495351 -0.0191487 0.00514165 -0.0495351 -0.0196476 0.00466114 -0.0577739 -0.0198278 0.00428036 -0.0581547 -0.0199231 0.00374151 -0.0401351 -0.0199927 0.00469001 -0.0495351 -0.0198189 0.00422102 -0.0401351 -0.0199345 0.00422102 -0.0495351 -0.0199345 0.00556935 -0.0495351 -0.0194231 0.00632843 -0.0495351 -0.0188284 0.00664873 -0.0401351 -0.0184669 0.00664873 -0.0495351 -0.0184669 0.00632843 -0.0401351 -0.0188284 0.00692313 -0.0495351 -0.0180694 0.00731888 -0.0495351 -0.01719 0.0071476 -0.0495351 -0.0176417 0.00692313 -0.0401351 -0.0180694 0.0074927 -0.0495351 -0.0162415 0.0074927 -0.0401351 -0.0162415 0.00743448 -0.0401351 -0.016721 0.0129 -0.0309766 -0.0199927 0.0309196 -0.0315154 -0.0199231 0.0223 -0.0319251 -0.0198189 0.0301693 -0.0322658 -0.0196955 0.0298144 -0.0326207 -0.0195277 0.0223 -0.0323767 -0.0196476 0.0223 -0.0332019 -0.0191487 0.0288716 -0.0335635 -0.0188284 0.028608 -0.0338271 -0.0185376 0.0283741 -0.0340609 -0.0182223 0.0223 -0.0341582 -0.0180694 0.0281723 -0.0342628 -0.0178856 0.0223 -0.0343827 -0.0176417 0.0223 -0.0345539 -0.01719 0.0278722 -0.0345628 -0.0171611 0.0277769 -0.0346582 -0.0167804 0.0277193 -0.0347158 -0.0163921 0.00748074 -0.0347158 -0.0163921 0.0129 -0.0346695 -0.016721 0.00732776 -0.0345628 -0.0171611 0.0129 -0.0345539 -0.01719 0.00702769 -0.0342628 -0.0178856 0.0129 -0.0341582 -0.0180694 0.00632843 -0.0335635 -0.0188284 0.00572228 -0.0329573 -0.0193259 0.0129 -0.0332019 -0.0191487 0.00538559 -0.0326207 -0.0195277 0.0129 -0.0319251 -0.0198189 0.00466114 -0.0318962 -0.0198278 0.00389207 -0.0311271 -0.0199807 0.0129 -0.0314561 -0.0199345 0.0223 -0.0309766 -0.0199927 0.0223 -0.0314561 -0.0199345 0.0129 -0.0323767 -0.0196476 0.0223 -0.0328044 -0.0194231 0.0129 -0.0328044 -0.0194231 0.0223 -0.0335635 -0.0188284 0.0129 -0.0335635 -0.0188284 0.0129 -0.0338838 -0.0184669 0.0223 -0.0338838 -0.0184669 0.0129 -0.0343827 -0.0176417 0.0129 -0.0347278 -0.0162415 0.0223 -0.0346695 -0.016721 0.0223 -0.0347278 -0.0162415 0.0277073 -0.0502234 -0.0162415 0.0277193 -0.0549543 -0.0163921 0.0280045 -0.0552396 -0.0175307 0.0280524 -0.0502234 -0.0176417 0.0296307 -0.0502234 -0.0194231 0.0298144 -0.0570495 -0.0195277 0.0300584 -0.0502234 -0.0196476 0.03051 -0.0502234 -0.0198189 0.0305389 -0.0577739 -0.0198278 0.030979 -0.0502234 -0.0199345 0.0314585 -0.0502234 -0.0199927 0.0314585 -0.0404792 -0.0199927 0.0313079 -0.0311271 -0.0199807 0.030979 -0.0404792 -0.0199345 0.0305389 -0.0318962 -0.0198278 0.03051 -0.0404792 -0.0198189 0.0294777 -0.0329573 -0.0193259 0.0292331 -0.0404792 -0.0191487 0.0291624 -0.0332726 -0.019092 0.0288716 -0.0404792 -0.0188284 0.0280045 -0.0344306 -0.0175307 0.0277073 -0.0404792 -0.0162415 0.0277 -0.0347351 -0.016 0.0277655 -0.0404792 -0.016721 0.0277655 -0.0502234 -0.016721 0.0278811 -0.0404792 -0.01719 0.0278811 -0.0502234 -0.01719 0.0280524 -0.0404792 -0.0176417 0.0282769 -0.0502234 -0.0180694 0.0282769 -0.0404792 -0.0180694 0.0285513 -0.0404792 -0.0184669 0.0285513 -0.0502234 -0.0184669 0.0288716 -0.0502234 -0.0188284 0.0292331 -0.0502234 -0.0191487 0.0300584 -0.0404792 -0.0196476 0.0296307 -0.0404792 -0.0194231 0.00747497 -0.0158739 -0.0164821 0.00752964 -0.01539 -0.016 0.00757394 -0.0147216 -0.0164821 0.00748775 -0.0147092 -0.0169573 0.00742124 -0.0152889 -0.0169573 0.00727807 -0.0152766 -0.0174184 0.00734551 -0.0146887 -0.0174184 0.00708055 -0.0152596 -0.0178589 0.00683158 -0.0152382 -0.0182723 0.00653478 -0.0152127 -0.0186525 0.00619448 -0.0151835 -0.018994 0.00626901 -0.014534 -0.018994 0.00548349 -0.014421 -0.0195418 0.0054038 -0.0151156 -0.0195418 0.0050475 -0.0143583 -0.0197401 0.00459104 -0.0142927 -0.0198838 0.00412076 -0.0142251 -0.0199708 0.0040321 -0.0149978 -0.0199708 0.00361816 -0.0143416 -0.02 0.00752964 -0.0169363 -0.016 0.00758725 -0.018192 -0.0169573 0.00752835 -0.0200844 -0.0182723 0.00776122 -0.0199937 -0.0178589 0.00777753 -0.0213459 -0.0186525 0.00747545 -0.0215053 -0.018994 0.00779694 -0.0220746 -0.018994 0.00747133 -0.0222709 -0.0192919 0.00783653 -0.0228392 -0.0192919 0.00749531 -0.0230725 -0.0195418 0.00790624 -0.0236381 -0.0195418 0.00817493 -0.0253228 -0.0198838 0.00897973 -0.0267053 -0.0199708 0.00891118 -0.0272678 -0.02 0.00959563 -0.0271802 -0.0199708 0.0102376 -0.0276192 -0.0199708 0.00964821 -0.0278069 -0.02 0.0104186 -0.0282972 -0.02 0.0115915 -0.0283838 -0.0199708 0.0112191 -0.0287367 -0.02 0.012299 -0.0287068 -0.0199708 0.0120464 -0.0291233 -0.02 0.0128969 -0.0294556 -0.02 0.0140272 -0.028331 -0.0197401 0.0133384 -0.0281072 -0.0197401 0.0141513 -0.0279084 -0.0195418 0.0136253 -0.027303 -0.0192919 0.0138679 -0.0266232 -0.0186525 0.0144711 -0.0268192 -0.0186525 0.013968 -0.0263426 -0.0182723 0.0140519 -0.0261073 -0.0178589 0.0141668 -0.0257852 -0.0169573 0.0147218 -0.0259655 -0.0169573 0.0153058 -0.026029 -0.0164821 0.0158728 -0.0261439 -0.0164821 0.0164454 -0.0262263 -0.0164821 0.0172131 -0.0262557 -0.016 0.0176 -0.0263793 -0.0169573 0.0181914 -0.0265062 -0.0174184 0.0187809 -0.0264555 -0.0174184 0.0194004 -0.0265666 -0.0178589 0.019443 -0.0268129 -0.0182723 0.0201155 -0.0269804 -0.0186525 0.0208251 -0.0271469 -0.018994 0.0214469 -0.0269449 -0.018994 0.0223651 -0.0274387 -0.0195418 0.0222042 -0.0270579 -0.0192919 0.023001 -0.0271483 -0.0195418 0.0231954 -0.0275435 -0.0197401 0.0240627 -0.0276071 -0.0198838 0.0249624 -0.0276192 -0.0199708 0.0256044 -0.0271802 -0.0199708 0.0259247 -0.0275433 -0.02 0.0262203 -0.0267053 -0.0199708 0.0266439 -0.0269806 -0.02 0.0273251 -0.0263725 -0.02 0.0273658 -0.0256539 -0.0199708 0.0279656 -0.0257216 -0.02 0.0291135 -0.0243024 -0.02 0.0296424 -0.0225214 -0.0199708 0.0292223 -0.0222993 -0.0198838 0.0288147 -0.0220837 -0.0197401 0.0287349 -0.0212482 -0.0195418 0.0284253 -0.0218778 -0.0195418 0.0277023 -0.0207767 -0.0186525 0.0274218 -0.0213472 -0.0186525 0.0271584 -0.021208 -0.0182723 0.0269376 -0.0210911 -0.0178589 0.0270237 -0.0204668 -0.0174184 0.026893 -0.0204071 -0.0169573 0.0266354 -0.0209311 -0.0169573 0.0268138 -0.0203709 -0.0164821 0.0266513 -0.0206447 -0.016 0.00767258 -0.0181747 -0.0164821 0.0077194 -0.0187603 -0.0169573 0.00774712 -0.0193645 -0.0174184 0.00804099 -0.0212069 -0.0182723 0.00776864 -0.0206529 -0.0182723 0.00808942 -0.0218982 -0.0186525 0.0081504 -0.0226246 -0.018994 0.00823359 -0.0233857 -0.0192919 0.0080159 -0.0244678 -0.0197401 0.00839195 -0.0261959 -0.0199708 0.00780361 -0.0187381 -0.0164821 0.00788379 -0.0193201 -0.0169573 0.00807986 -0.0198696 -0.0169573 0.00794595 -0.0199218 -0.0174184 0.00799595 -0.0205491 -0.0178589 0.00843234 -0.0224318 -0.0186525 0.00853469 -0.0231535 -0.018994 0.00866119 -0.0239086 -0.0192919 0.00834879 -0.0241793 -0.0195418 0.00882151 -0.0246944 -0.0195418 0.00850564 -0.0250014 -0.0197401 0.00871321 -0.0258459 -0.0198838 0.00796659 -0.0192932 -0.0164821 0.00823223 -0.0199387 -0.016 0.00817627 -0.0204668 -0.0174184 0.00843733 -0.0209978 -0.0174184 0.00855852 -0.0216153 -0.0178589 0.008262 -0.0210903 -0.0178589 0.00834452 -0.0217444 -0.0182723 0.00894855 -0.0236596 -0.018994 0.00911795 -0.0244063 -0.0192919 0.00932287 -0.0251816 -0.0195418 0.00902503 -0.0255062 -0.0197401 0.0095724 -0.0259805 -0.0197401 0.00928048 -0.0263375 -0.0198838 0.00987489 -0.0267958 -0.0198838 0.00864143 -0.0208901 -0.0164821 0.0089259 -0.0213938 -0.0164821 0.00923866 -0.0218804 -0.0164821 0.00933891 -0.0219738 -0.016 0.00957869 -0.0223485 -0.0164821 0.0100284 -0.0235215 -0.0178589 0.0102919 -0.0241259 -0.0182723 0.0104608 -0.0239418 -0.0178589 0.0110721 -0.025148 -0.0186525 0.011411 -0.0257934 -0.018994 0.0117839 -0.0264621 -0.0192919 0.0126634 -0.0278444 -0.0197401 0.0131834 -0.0285415 -0.0198838 0.0124839 -0.0282692 -0.0198838 0.0130237 -0.028989 -0.0199708 0.00994489 -0.0227963 -0.0164821 0.00987909 -0.0228533 -0.0169573 0.0101706 -0.0233833 -0.0174184 0.0102736 -0.0232832 -0.0169573 0.0109165 -0.0243366 -0.0178589 0.0107584 -0.0245301 -0.0182723 0.0112472 -0.024907 -0.0182723 0.012199 -0.0271483 -0.0195418 0.0123814 -0.0267773 -0.0192919 0.00980796 -0.0225892 -0.016 0.0103227 -0.0231668 -0.016 0.0103361 -0.0232225 -0.0164821 0.0105949 -0.0237957 -0.0174184 0.0121388 -0.0258336 -0.0186525 0.0115957 -0.025506 -0.0186525 0.0119709 -0.026131 -0.018994 0.0129958 -0.0270579 -0.0192919 0.0128349 -0.0274387 -0.0195418 0.0107509 -0.0236257 -0.0164821 0.010692 -0.0236898 -0.0169573 0.011042 -0.0241832 -0.0174184 0.0115106 -0.0245445 -0.0174184 0.0113941 -0.0247049 -0.0178589 0.0118918 -0.0250452 -0.0178589 0.0117567 -0.0252554 -0.0182723 0.0122853 -0.0255742 -0.0182723 0.0126998 -0.0261296 -0.0186525 0.0125491 -0.0264361 -0.018994 0.0134864 -0.0276923 -0.0195418 0.0116462 -0.0243578 -0.0164821 0.0126192 -0.024983 -0.0164821 0.0131308 -0.025253 -0.0164821 0.0135672 -0.0257059 -0.0174184 0.0141186 -0.0259206 -0.0174184 0.0136231 -0.0255735 -0.0169573 0.0134684 -0.0253794 -0.016 0.013657 -0.0254933 -0.0164821 0.014186 -0.0256686 -0.016 0.0149237 -0.0259021 -0.016 0.0141961 -0.0257032 -0.0164821 0.0176 -0.0262923 -0.0164821 0.0181783 -0.0262758 -0.0164821 0.0181832 -0.0263627 -0.0169573 0.0187646 -0.0263128 -0.0169573 0.020048 -0.0266903 -0.0182723 0.0207289 -0.0268192 -0.0186525 0.020645 -0.0265334 -0.0182723 0.0220562 -0.0267077 -0.018994 0.0228187 -0.0267773 -0.0192919 0.0236194 -0.026822 -0.0195418 0.023836 -0.0272055 -0.0197401 0.0244562 -0.0268315 -0.0197401 0.0247055 -0.0272195 -0.0198838 0.0253251 -0.0267958 -0.0198838 0.0187546 -0.0262263 -0.0164821 0.0193421 -0.0262297 -0.0169573 0.0193666 -0.0263713 -0.0174184 0.0199914 -0.0264469 -0.0178589 0.0199465 -0.0262538 -0.0174184 0.021232 -0.0263426 -0.0182723 0.0213322 -0.0266232 -0.0186525 0.0226509 -0.0264361 -0.018994 0.0234161 -0.0264621 -0.0192919 0.0187583 -0.0261965 -0.016 0.021543 -0.0254933 -0.0164821 0.0215769 -0.0255735 -0.0169573 0.0226943 -0.025184 -0.0174184 0.0253405 -0.024597 -0.018994 0.0255976 -0.0248771 -0.0192919 0.0276426 -0.0239071 -0.0197401 0.0271841 -0.0244678 -0.0197401 0.0280078 -0.0241887 -0.0198838 0.0288412 -0.0238496 -0.0199708 0.0220692 -0.025253 -0.0164821 0.0226237 -0.0250589 -0.0169573 0.0221076 -0.0253311 -0.0169573 0.0233082 -0.0250452 -0.0178589 0.0239528 -0.024907 -0.0182723 0.0246302 -0.0247607 -0.0186525 0.0244416 -0.0245301 -0.0182723 0.0260821 -0.0244063 -0.0192919 0.0258094 -0.0241413 -0.018994 0.0265388 -0.0239086 -0.0192919 0.0268512 -0.0241793 -0.0195418 0.028449 -0.0235814 -0.0198838 0.0292616 -0.0231953 -0.0199708 0.0225808 -0.024983 -0.0164821 0.023201 -0.0248784 -0.0174184 0.0231233 -0.0247576 -0.0169573 0.0238059 -0.0247049 -0.0178589 0.0236894 -0.0245445 -0.0174184 0.0242835 -0.0243366 -0.0178589 0.0251096 -0.0243453 -0.0186525 0.0272938 -0.0236381 -0.0195418 0.0280683 -0.0233211 -0.0197401 0.0288548 -0.02295 -0.0198838 0.0284599 -0.0227118 -0.0197401 0.02309 -0.0246407 -0.016 0.0230762 -0.0246843 -0.0164821 0.023605 -0.0244282 -0.0169573 0.024158 -0.0241832 -0.0174184 0.0249081 -0.0241259 -0.0182723 0.0255644 -0.0239033 -0.0186525 0.0253508 -0.0236957 -0.0182723 0.0259933 -0.023436 -0.0186525 0.0262515 -0.0236596 -0.018994 0.0266653 -0.0231535 -0.018994 0.0269664 -0.0233857 -0.0192919 0.0277047 -0.0230725 -0.0195418 0.0235538 -0.0243578 -0.0164821 0.0240119 -0.0240045 -0.0164821 0.0237229 -0.0241956 -0.016 0.0243198 -0.0237033 -0.016 0.0252551 -0.0227963 -0.0164821 0.0258041 -0.0224894 -0.0174184 0.0261518 -0.0220107 -0.0174184 0.0248773 -0.0231668 -0.016 0.0256903 -0.0224016 -0.0169573 0.0264717 -0.021513 -0.0174184 0.0266415 -0.0216153 -0.0178589 0.0256213 -0.0223485 -0.0164821 0.0260332 -0.0219296 -0.0169573 0.0263487 -0.0214387 -0.0169573 0.0267623 -0.0209984 -0.0174184 0.0259613 -0.0218804 -0.0164821 0.0262741 -0.0213938 -0.0164821 0.0265585 -0.0208903 -0.0164821 0.027039 -0.0198381 -0.0164821 0.0272334 -0.0192932 -0.0164821 0.0274806 -0.0187603 -0.0169573 0.0277536 -0.0182205 -0.0174184 0.0281194 -0.0170666 -0.0178589 0.0284037 -0.0164717 -0.0182723 0.0290055 -0.0151835 -0.018994 0.0293844 -0.015151 -0.0192919 0.0293074 -0.0144798 -0.0192919 0.0295973 -0.0137321 -0.0195418 0.030029 -0.0136447 -0.0197401 0.029865 -0.0129392 -0.0197401 0.030311 -0.012822 -0.0198838 0.03029 -0.0112224 -0.0199708 0.0305513 -0.011955 -0.0199708 0.0304686 -0.0104003 -0.02 0.0300686 -0.00957943 -0.02 0.0296424 -0.00980483 -0.0199708 0.0292616 -0.00913089 -0.0199708 0.0288412 -0.0084766 -0.0199708 0.0278917 -0.00724531 -0.0199708 0.0270251 -0.00700344 -0.0198838 0.0264868 -0.00648031 -0.0198838 0.0262203 -0.00562096 -0.0199708 0.0256044 -0.00514604 -0.0199708 0.0247055 -0.00510674 -0.0198838 0.0242963 -0.00430542 -0.0199708 0.0233989 -0.00436884 -0.0198838 0.022901 -0.00361938 -0.0199708 0.0227161 -0.00405702 -0.0198838 0.0221763 -0.00333721 -0.0199708 0.0220166 -0.0037847 -0.0198838 0.0213027 -0.00355275 -0.0198838 0.0199221 -0.00274471 -0.0199708 0.0191523 -0.00263402 -0.0199708 0.0190982 -0.00310604 -0.0198838 0.0183774 -0.00256747 -0.0199708 0.0183503 -0.00304181 -0.0198838 0.0176 -0.00254526 -0.0199708 0.0176 -0.00302037 -0.0198838 0.0168497 -0.00304181 -0.0198838 0.0160477 -0.00263402 -0.0199708 0.0152779 -0.00274471 -0.0199708 0.0145156 -0.00289916 -0.0199708 0.0137634 -0.00309688 -0.0199708 0.0138973 -0.00355275 -0.0198838 0.0118011 -0.00436884 -0.0198838 0.0111373 -0.00471912 -0.0198838 0.0109037 -0.00430542 -0.0199708 0.0102376 -0.00470704 -0.0199708 0.00730831 -0.00724531 -0.0199708 0.00766738 -0.00755645 -0.0198838 0.00681599 -0.0078474 -0.0199708 0.00635885 -0.0084766 -0.0199708 0.00597613 -0.0100298 -0.0198838 0.00555592 -0.0098081 -0.0199708 0.00491001 -0.0112224 -0.0199708 0.00535276 -0.0113948 -0.0198838 0.00488904 -0.012822 -0.0198838 0.00442954 -0.0127012 -0.0199708 0.00471903 -0.0135531 -0.0198838 0.0273964 -0.0187381 -0.0164821 0.0275274 -0.0181747 -0.0164821 0.0276128 -0.018192 -0.0169573 0.0278545 -0.0176375 -0.0174184 0.0277122 -0.017617 -0.0169573 0.0279219 -0.0170497 -0.0174184 0.0281539 -0.0164646 -0.0178589 0.0284037 -0.0158545 -0.0182723 0.0287014 -0.015846 -0.0186525 0.0286652 -0.0152127 -0.0186525 0.0291922 -0.0138142 -0.0192919 0.0296609 -0.0122443 -0.0197401 0.0300995 -0.0121018 -0.0198838 0.0298472 -0.0113948 -0.0198838 0.0277788 -0.0170374 -0.0169573 0.0281539 -0.0158616 -0.0178589 0.0285929 -0.0145826 -0.0186525 0.028931 -0.014534 -0.018994 0.0290392 -0.0131563 -0.0192919 0.029242 -0.0123804 -0.0195418 0.0294389 -0.0130512 -0.0195418 0.0299872 -0.010506 -0.0199708 0.0292223 -0.0100269 -0.0198838 0.0276704 -0.0169363 -0.016 0.0276261 -0.0176046 -0.0164821 0.0279557 -0.0164589 -0.0174184 0.0283684 -0.0152382 -0.0182723 0.0284848 -0.0139576 -0.0186525 0.0288195 -0.0138897 -0.018994 0.0288489 -0.0125081 -0.0192919 0.029007 -0.0117219 -0.0195418 0.0294175 -0.0115621 -0.0197401 0.0291356 -0.010895 -0.0197401 0.0295551 -0.0107034 -0.0198838 0.0288147 -0.0102425 -0.0197401 0.0288548 -0.00937623 -0.0198838 0.027692 -0.0152963 -0.0164821 0.0275274 -0.0141516 -0.0164821 0.0276128 -0.0141343 -0.0169573 0.0276196 -0.0135294 -0.0174184 0.0276414 -0.0129005 -0.0178589 0.0274529 -0.0129617 -0.0174184 0.0274388 -0.0123325 -0.0178589 0.0274218 -0.010979 -0.0186525 0.0277237 -0.0108193 -0.018994 0.0277287 -0.0100553 -0.0192919 0.0280827 -0.00984183 -0.0195418 0.0284599 -0.00961437 -0.0197401 0.0274806 -0.013566 -0.0169573 0.0273162 -0.0130061 -0.0169573 0.0272541 -0.0124044 -0.0174184 0.0272041 -0.0117771 -0.0178589 0.0274314 -0.0116733 -0.0182723 0.0271584 -0.0111183 -0.0182723 0.0268555 -0.0105819 -0.0182723 0.0271106 -0.010428 -0.0186525 0.0270496 -0.00970164 -0.018994 0.0266653 -0.00917271 -0.018994 0.0269664 -0.00894053 -0.0192919 0.0265388 -0.00841759 -0.0192919 0.0263785 -0.00763182 -0.0195418 0.026175 -0.00682007 -0.0197401 0.0273964 -0.0135881 -0.0164821 0.0270237 -0.0118594 -0.0174184 0.0267623 -0.0113278 -0.0174184 0.0266415 -0.0107109 -0.0178589 0.0269376 -0.0112351 -0.0178589 0.0267677 -0.00989443 -0.0186525 0.0263948 -0.00938128 -0.0186525 0.0262515 -0.00866659 -0.018994 0.0256276 -0.00634577 -0.0197401 0.0259195 -0.00598877 -0.0198838 0.0253251 -0.00553041 -0.0198838 0.027039 -0.0124882 -0.0164821 0.0272334 -0.013033 -0.0164821 0.0271201 -0.0124566 -0.0169573 0.0263155 -0.0102036 -0.0178589 0.0265218 -0.0100626 -0.0182723 0.0259933 -0.00889026 -0.0186525 0.0258094 -0.00818491 -0.018994 0.0260821 -0.00791991 -0.0192919 0.0255976 -0.00744913 -0.0192919 0.0258771 -0.00714458 -0.0195418 0.0253488 -0.00668676 -0.0195418 0.0268138 -0.0119553 -0.0164821 0.0265585 -0.011436 -0.0164821 0.0266513 -0.0116815 -0.016 0.0262817 -0.0110018 -0.016 0.0253209 -0.0094729 -0.0169573 0.0250294 -0.00894288 -0.0174184 0.0249081 -0.00820036 -0.0182723 0.0246302 -0.00756553 -0.0186525 0.0241279 -0.0071782 -0.0186525 0.023789 -0.00653285 -0.018994 0.0231954 -0.00478268 -0.0197401 0.0258611 -0.0103524 -0.016 0.025392 -0.00973706 -0.016 0.0256213 -0.00997776 -0.0164821 0.0249264 -0.00904303 -0.0169573 0.0247392 -0.00838447 -0.0178589 0.0246051 -0.00853052 -0.0174184 0.0244416 -0.00779614 -0.0182723 0.0239528 -0.0074192 -0.0182723 0.0232291 -0.00619524 -0.018994 0.0234161 -0.00586415 -0.0192919 0.0228187 -0.00554891 -0.0192919 0.023001 -0.00517796 -0.0195418 0.0223651 -0.00488754 -0.0195418 0.0225366 -0.00448181 -0.0197401 0.0218616 -0.00421903 -0.0197401 0.0252551 -0.00952992 -0.0164821 0.0248639 -0.00910371 -0.0164821 0.024508 -0.00863639 -0.0169573 0.0242835 -0.00798959 -0.0178589 0.0238059 -0.00762137 -0.0178589 0.0234433 -0.00707079 -0.0182723 0.0236043 -0.00682018 -0.0186525 0.0230612 -0.00649264 -0.0186525 0.0226509 -0.00589013 -0.018994 0.0243198 -0.00862292 -0.016 0.0244491 -0.00870054 -0.0164821 0.024158 -0.00814305 -0.0174184 0.0222042 -0.0052683 -0.0192919 0.0215747 -0.00502322 -0.0192919 0.0217136 -0.00463389 -0.0195418 0.0211728 -0.00399522 -0.0197401 0.0205768 -0.00336193 -0.0198838 0.0204723 -0.0038111 -0.0197401 0.0240119 -0.0083217 -0.0164821 0.0235538 -0.00796844 -0.0164821 0.0237229 -0.00813065 -0.016 0.02309 -0.00768552 -0.016 0.022425 -0.00729014 -0.016 0.0215769 -0.0067527 -0.0169573 0.0216328 -0.00662033 -0.0174184 0.0210815 -0.00640566 -0.0174184 0.0211481 -0.00621895 -0.0178589 0.0201155 -0.00534578 -0.0186525 0.0194938 -0.00521981 -0.0186525 0.0195521 -0.00488326 -0.018994 0.0189483 -0.00441247 -0.0192919 0.0182752 -0.00435466 -0.0192919 0.0182988 -0.00394197 -0.0195418 0.0176 -0.003922 -0.0195418 0.0176 -0.00348153 -0.0197401 0.0220692 -0.00707321 -0.0164821 0.0205746 -0.00603261 -0.0178589 0.0199914 -0.00587932 -0.0178589 0.020048 -0.00563593 -0.0182723 0.0189049 -0.00479022 -0.018994 0.0182535 -0.00473427 -0.018994 0.0176 -0.00433537 -0.0192919 0.0169012 -0.00394197 -0.0195418 0.016876 -0.00350221 -0.0197401 0.0161018 -0.00310604 -0.0198838 0.0153589 -0.00321286 -0.0198838 0.0217316 -0.00694682 -0.016 0.021543 -0.0068329 -0.0164821 0.0210039 -0.00662301 -0.0164821 0.0210332 -0.00654101 -0.0169573 0.0205187 -0.00622283 -0.0174184 0.0199465 -0.00607241 -0.0174184 0.0194004 -0.00575957 -0.0178589 0.019443 -0.00551334 -0.0182723 0.018866 -0.00512954 -0.0186525 0.018234 -0.00507527 -0.0186525 0.0176 -0.0047156 -0.018994 0.0169248 -0.00435466 -0.0192919 0.0161544 -0.00356419 -0.0197401 0.0154375 -0.00366727 -0.0197401 0.0204782 -0.00636071 -0.0169573 0.0204537 -0.00644425 -0.0164821 0.0199139 -0.00621238 -0.0169573 0.0193666 -0.00595491 -0.0174184 0.0188035 -0.00567375 -0.0178589 0.018832 -0.0054255 -0.0182723 0.018217 -0.00537267 -0.0182723 0.0169465 -0.00473427 -0.018994 0.0162046 -0.00400179 -0.0195418 0.0155126 -0.00410129 -0.0195418 0.0146232 -0.00336193 -0.0198838 0.0202763 -0.00642415 -0.016 0.0193272 -0.0061823 -0.0164821 0.0179869 -0.00607052 -0.016 0.0181783 -0.00605046 -0.0164821 0.0176 -0.00603395 -0.0164821 0.0164191 -0.0058707 -0.0174184 0.0163965 -0.00567375 -0.0178589 0.0157996 -0.00575957 -0.0178589 0.0144711 -0.00550702 -0.0186525 0.0143749 -0.00517931 -0.018994 0.0137531 -0.00538134 -0.018994 0.011364 -0.00512067 -0.0197401 0.0164354 -0.00601347 -0.0169573 0.0170168 -0.00596354 -0.0169573 0.0152086 -0.00587932 -0.0178589 0.015152 -0.00563593 -0.0182723 0.014555 -0.00579285 -0.0182723 0.0138679 -0.00570303 -0.0186525 0.0129958 -0.0052683 -0.0192919 0.0131438 -0.00561854 -0.018994 0.0123814 -0.00554891 -0.0192919 0.012199 -0.00517796 -0.0195418 0.0107438 -0.00549469 -0.0197401 0.0104945 -0.00510674 -0.0198838 0.0170217 -0.00605046 -0.0164821 0.0158579 -0.00609651 -0.0169573 0.0158334 -0.00595491 -0.0174184 0.0125491 -0.00589013 -0.018994 0.0115806 -0.00550421 -0.0195418 0.010982 -0.00586524 -0.0195418 0.00987489 -0.00553041 -0.0198838 0.0147463 -0.00644425 -0.0164821 0.0141961 -0.00662301 -0.0164821 0.013029 -0.00686612 -0.0174184 0.0124082 -0.00696962 -0.0178589 0.0117567 -0.00707079 -0.0182723 0.0110721 -0.0071782 -0.0186525 0.00985948 -0.00772926 -0.018994 0.0103536 -0.00730112 -0.018994 0.00882151 -0.00763182 -0.0195418 0.00911795 -0.00791991 -0.0192919 0.00834879 -0.00814689 -0.0195418 0.0080159 -0.00785844 -0.0197401 0.00755743 -0.00841913 -0.0197401 0.00675104 -0.00874478 -0.0198838 0.014186 -0.0066576 -0.016 0.013657 -0.0068329 -0.0164821 0.0130924 -0.00699508 -0.0169573 0.0131308 -0.00707321 -0.0164821 0.0125057 -0.00714224 -0.0174184 0.0118918 -0.00728101 -0.0178589 0.011999 -0.00744778 -0.0174184 0.0112472 -0.0074192 -0.0182723 0.0105698 -0.00756553 -0.0186525 0.0100904 -0.00798089 -0.0186525 0.00634523 -0.00937623 -0.0198838 0.0126192 -0.00734318 -0.0164821 0.0125763 -0.00726737 -0.0169573 0.0115106 -0.00778175 -0.0174184 0.0113941 -0.00762137 -0.0178589 0.0107584 -0.00779614 -0.0182723 0.00939063 -0.00818491 -0.018994 0.00866119 -0.00841759 -0.0192919 0.00823359 -0.00894053 -0.0192919 0.00790624 -0.0086881 -0.0195418 0.00713171 -0.00900508 -0.0197401 0.00749531 -0.0092537 -0.0195418 0.01211 -0.00768552 -0.016 0.0121238 -0.00764191 -0.0164821 0.0120767 -0.00756867 -0.0169573 0.011595 -0.007898 -0.0169573 0.0109165 -0.00798959 -0.0178589 0.0104608 -0.00838447 -0.0178589 0.0102919 -0.00820036 -0.0182723 0.00963556 -0.00842295 -0.0186525 0.00894855 -0.00866659 -0.018994 0.00920668 -0.00889026 -0.0186525 0.00853469 -0.00917271 -0.018994 0.00783653 -0.00948702 -0.0192919 0.00711734 -0.00984183 -0.0195418 0.00674014 -0.00961437 -0.0197401 0.0114771 -0.00813065 -0.016 0.0116462 -0.00796844 -0.0164821 0.0111881 -0.0083217 -0.0164821 0.0108802 -0.00862292 -0.016 0.0103227 -0.00915944 -0.016 0.00904816 -0.0103155 -0.0174184 0.00855852 -0.0107109 -0.0178589 0.00834452 -0.0105819 -0.0182723 0.00718698 -0.0114076 -0.018994 0.00749767 -0.0115495 -0.0186525 0.00693248 -0.0120099 -0.018994 0.00635115 -0.0125081 -0.0192919 0.00576105 -0.0130512 -0.0195418 0.00980796 -0.00973706 -0.016 0.00994489 -0.00952992 -0.0164821 0.00957869 -0.00997776 -0.0164821 0.00950974 -0.00992459 -0.0169573 0.00916679 -0.0103966 -0.0169573 0.00804099 -0.0111193 -0.0182723 0.00776864 -0.0116733 -0.0182723 0.005171 -0.0136447 -0.0197401 0.0056027 -0.0137321 -0.0195418 0.00885134 -0.0108875 -0.0169573 0.00872828 -0.0108133 -0.0174184 0.008262 -0.011236 -0.0178589 0.00799595 -0.0117771 -0.0178589 0.00725076 -0.0121338 -0.0186525 0.00703761 -0.0127312 -0.0186525 0.00671277 -0.0126256 -0.018994 0.00652858 -0.0132529 -0.018994 0.00616084 -0.0131563 -0.0192919 0.00923866 -0.0104458 -0.0164821 0.0089259 -0.0109324 -0.0164821 0.00856443 -0.0113955 -0.0169573 0.00843733 -0.0113285 -0.0174184 0.00776122 -0.0123325 -0.0178589 0.00752835 -0.0122419 -0.0182723 0.00600784 -0.0138142 -0.0192919 0.0063805 -0.0138897 -0.018994 0.00838619 -0.0119553 -0.0164821 0.00823223 -0.0123876 -0.016 0.00796659 -0.013033 -0.0164821 0.00780361 -0.0135881 -0.0164821 0.00758725 -0.0141343 -0.0169573 0.00714929 -0.0146605 -0.0178589 0.00776568 -0.0138618 -0.016 0.00767258 -0.0141516 -0.0164821 0.00761837 -0.0146214 -0.016 0.0035 -0.0161631 -0.02 0.0039877 -0.0157742 -0.0199708 0.00361816 -0.0179847 -0.02 0.00376539 -0.0188859 -0.02 0.00442954 -0.019625 -0.0199708 0.00510051 -0.0202244 -0.0198838 0.00488904 -0.0195042 -0.0198838 0.00576105 -0.019275 -0.0195418 0.00595802 -0.0199458 -0.0195418 0.00671277 -0.0197006 -0.018994 0.00703761 -0.019595 -0.0186525 0.00738869 -0.0188472 -0.0178589 0.00732092 -0.019503 -0.0182723 0.00758042 -0.0187968 -0.0174184 0.00352957 -0.0152504 -0.02 0.00376539 -0.0134403 -0.02 0.00425338 -0.0134587 -0.0199708 0.00397065 -0.0125505 -0.02 0.00464865 -0.011955 -0.0199708 0.00423307 -0.0116759 -0.02 0.00521277 -0.010506 -0.0199708 0.00535116 -0.00917913 -0.02 0.00593836 -0.00913089 -0.0199708 0.00635606 -0.00765525 -0.02 0.00693035 -0.00694527 -0.02 0.0078342 -0.00667232 -0.0199708 0.00839195 -0.00613028 -0.0199708 0.0082106 -0.00564412 -0.02 0.00897973 -0.00562096 -0.0199708 0.00959563 -0.00514604 -0.0199708 0.00891118 -0.00505841 -0.02 0.0104186 -0.00402897 -0.02 0.0112191 -0.00358957 -0.02 0.0115915 -0.00394247 -0.0199708 0.012299 -0.00361938 -0.0199708 0.0130237 -0.00333721 -0.0199708 0.0128969 -0.00287059 -0.02 0.0164596 -0.0021093 -0.02 0.0168226 -0.00256747 -0.0199708 0.0173717 -0.00206496 -0.02 0.0182847 -0.00207975 -0.02 0.0206844 -0.00289916 -0.0199708 0.0200984 -0.00228622 -0.02 0.0214366 -0.00309688 -0.0199708 0.0209914 -0.00247704 -0.02 0.0236085 -0.00394247 -0.0199708 0.0249624 -0.00470704 -0.0199708 0.0266439 -0.00534559 -0.02 0.0268081 -0.00613028 -0.0199708 0.0273658 -0.00667232 -0.0199708 0.0273251 -0.00595369 -0.02 0.028384 -0.0078474 -0.0199708 0.0291135 -0.00802381 -0.02 0.0308146 -0.0112454 -0.02 0.0307705 -0.0127012 -0.0199708 0.0297165 -0.014421 -0.0195418 0.0297962 -0.0151156 -0.0195418 0.0294229 -0.0158254 -0.0192919 0.0290428 -0.01649 -0.018994 0.0290428 -0.0158362 -0.018994 0.0287014 -0.0164803 -0.0186525 0.0283684 -0.017088 -0.0182723 0.0282981 -0.0177013 -0.0182723 0.0280507 -0.0176657 -0.0178589 0.0279479 -0.0182599 -0.0178589 0.0273162 -0.0193201 -0.0169573 0.0313392 -0.0129938 -0.02 0.0309466 -0.0134587 -0.0199708 0.030481 -0.0135531 -0.0198838 0.030609 -0.0142927 -0.0198838 0.0301525 -0.0143583 -0.0197401 0.0290055 -0.0171427 -0.018994 0.0286652 -0.0171135 -0.0186525 0.0285929 -0.0177437 -0.0186525 0.0278113 -0.0188472 -0.0178589 0.0276196 -0.0187968 -0.0174184 0.0271201 -0.0198696 -0.0169573 0.0302764 -0.015801 -0.0197401 0.0302351 -0.0150779 -0.0197401 0.0298361 -0.0158136 -0.0195418 0.0294229 -0.0165009 -0.0192919 0.0293844 -0.0171753 -0.0192919 0.028931 -0.0177923 -0.018994 0.0284848 -0.0183686 -0.0186525 0.0281928 -0.0183095 -0.0182723 0.028053 -0.0189107 -0.0182723 0.0276414 -0.0194258 -0.0178589 0.0274529 -0.0193645 -0.0174184 0.0272541 -0.0199218 -0.0174184 0.0310792 -0.0142251 -0.0199708 0.0306945 -0.0150384 -0.0198838 0.0311679 -0.0149978 -0.0199708 0.0307374 -0.0157878 -0.0198838 0.0302764 -0.0165252 -0.0197401 0.0297962 -0.0172106 -0.0195418 0.0298361 -0.0165127 -0.0195418 0.0293074 -0.0178464 -0.0192919 0.0283411 -0.0189864 -0.0186525 0.0278791 -0.019503 -0.0182723 0.0316335 -0.0147953 -0.02 0.0302351 -0.0172483 -0.0197401 0.0297165 -0.0179052 -0.0195418 0.0291922 -0.018512 -0.0192919 0.0288195 -0.0184365 -0.018994 0.0281624 -0.019595 -0.0186525 0.0274388 -0.0199937 -0.0178589 0.0276716 -0.0200844 -0.0182723 0.0316926 -0.0166197 -0.02 0.0312123 -0.0157742 -0.0199708 0.0312123 -0.016552 -0.0199708 0.0307374 -0.0165384 -0.0198838 0.0301525 -0.0179679 -0.0197401 0.0295973 -0.0185941 -0.0195418 0.0286714 -0.0190733 -0.018994 0.0274314 -0.0206529 -0.0182723 0.0272041 -0.0205491 -0.0178589 0.0310792 -0.0181011 -0.0199708 0.0305513 -0.0203713 -0.0199708 0.0308146 -0.0210808 -0.02 0.0304686 -0.0219259 -0.02 0.0300686 -0.0227468 -0.02 0.0242963 -0.0280208 -0.0199708 0.0215747 -0.027303 -0.0192919 0.018832 -0.0269007 -0.0182723 0.0188035 -0.0266525 -0.0178589 0.0182028 -0.0267041 -0.0178589 0.0176 -0.026523 -0.0174184 0.0170217 -0.0262758 -0.0164821 0.0170168 -0.0263627 -0.0169573 0.0236085 -0.0283838 -0.0199708 0.0233989 -0.0279574 -0.0198838 0.0227161 -0.0282692 -0.0198838 0.0225366 -0.0278444 -0.0197401 0.0210487 -0.0279084 -0.0195418 0.0217136 -0.0276923 -0.0195418 0.0209323 -0.0275117 -0.0192919 0.0201928 -0.0273131 -0.018994 0.0195521 -0.027443 -0.018994 0.0194938 -0.0271064 -0.0186525 0.018217 -0.0269535 -0.0182723 0.0170086 -0.0265062 -0.0174184 0.0164354 -0.0263128 -0.0169573 0.0235704 -0.0289367 -0.02 0.022901 -0.0287068 -0.0199708 0.0218616 -0.0281072 -0.0197401 0.0211728 -0.028331 -0.0197401 0.0202789 -0.0276835 -0.0192919 0.0203726 -0.0280861 -0.0195418 0.0196169 -0.0278176 -0.0192919 0.018866 -0.0271967 -0.0186525 0.0176 -0.0269712 -0.0182723 0.0169972 -0.0267041 -0.0178589 0.0176 -0.0267213 -0.0178589 0.0220166 -0.0285415 -0.0198838 0.0213027 -0.0287735 -0.0198838 0.0204723 -0.0285151 -0.0197401 0.0196874 -0.0282249 -0.0195418 0.0189049 -0.027536 -0.018994 0.0189483 -0.0279138 -0.0192919 0.0182535 -0.027592 -0.018994 0.018234 -0.027251 -0.0186525 0.016983 -0.0269535 -0.0182723 0.0163965 -0.0266525 -0.0178589 0.0164191 -0.0264555 -0.0174184 0.0158334 -0.0263713 -0.0174184 0.0158579 -0.0262297 -0.0169573 0.0152861 -0.0261138 -0.0169573 0.0221763 -0.028989 -0.0199708 0.0218702 -0.0296009 -0.02 0.0189954 -0.0283244 -0.0195418 0.0176 -0.0272691 -0.0186525 0.016966 -0.027251 -0.0186525 0.016368 -0.0269007 -0.0182723 0.0152535 -0.0262538 -0.0174184 0.0147463 -0.025882 -0.0164821 0.0209914 -0.0298492 -0.02 0.0214366 -0.0292293 -0.0199708 0.0205768 -0.0289643 -0.0198838 0.0197625 -0.028659 -0.0197401 0.0190456 -0.028762 -0.0197401 0.0182752 -0.0279716 -0.0192919 0.0176 -0.0279909 -0.0192919 0.0176 -0.0276106 -0.018994 0.0157996 -0.0265666 -0.0178589 0.0152086 -0.0264469 -0.0178589 0.0146813 -0.0261034 -0.0174184 0.0206844 -0.0294271 -0.0199708 0.0198411 -0.0291134 -0.0198838 0.0190982 -0.0292202 -0.0198838 0.018324 -0.028824 -0.0197401 0.0182988 -0.0283843 -0.0195418 0.0169248 -0.0279716 -0.0192919 0.0169465 -0.027592 -0.018994 0.016334 -0.0271967 -0.0186525 0.015757 -0.0268129 -0.0182723 0.015152 -0.0266903 -0.0182723 0.0146254 -0.0262936 -0.0178589 0.0191949 -0.0301726 -0.02 0.0199221 -0.0295815 -0.0199708 0.0183503 -0.0292844 -0.0198838 0.0176 -0.0288447 -0.0197401 0.0176 -0.0284042 -0.0195418 0.0169012 -0.0283843 -0.0195418 0.0162517 -0.0279138 -0.0192919 0.0162951 -0.027536 -0.018994 0.0157062 -0.0271064 -0.0186525 0.0150845 -0.0269804 -0.0186525 0.014555 -0.0265334 -0.0182723 0.0191523 -0.0296922 -0.0199708 0.0183774 -0.0297588 -0.0199708 0.0182847 -0.0302465 -0.02 0.0168226 -0.0297588 -0.0199708 0.0173717 -0.0302613 -0.02 0.0164596 -0.0302169 -0.02 0.0160477 -0.0296922 -0.0199708 0.0155523 -0.0301136 -0.02 0.0152779 -0.0295815 -0.0199708 0.0137634 -0.0292293 -0.0199708 0.0078342 -0.0256539 -0.0199708 0.00766738 -0.0247698 -0.0198838 0.00755743 -0.0239071 -0.0197401 0.00713171 -0.0233211 -0.0197401 0.00749767 -0.0207767 -0.0186525 0.00718698 -0.0209186 -0.018994 0.00725076 -0.0201924 -0.0186525 0.00755858 -0.0194258 -0.0178589 0.00635606 -0.024671 -0.02 0.00582892 -0.0239253 -0.02 0.00521277 -0.0218202 -0.0199708 0.00492478 -0.0223396 -0.02 0.00464865 -0.0203713 -0.0199708 0.00423307 -0.0206503 -0.02 0.00397065 -0.0197757 -0.02 0.0187646 -0.00601347 -0.0169573 0.0181914 -0.00582007 -0.0174184 0.0176 -0.00580317 -0.0174184 0.0176 -0.00560493 -0.0178589 0.0187809 -0.0058707 -0.0174184 0.016983 -0.00537267 -0.0182723 0.0176 -0.00535505 -0.0182723 0.016966 -0.00507527 -0.0186525 0.0182028 -0.00562215 -0.0178589 0.0176 -0.00505715 -0.0186525 0.018324 -0.00350221 -0.0197401 0.0198411 -0.00321286 -0.0198838 0.0197625 -0.00366727 -0.0197401 0.00750799 -0.0152963 -0.0164821 0.00724429 -0.0158673 -0.0174184 0.00738793 -0.0158714 -0.0169573 0.00738793 -0.0164548 -0.0169573 0.00747497 -0.0164524 -0.0164821 0.00742124 -0.0170374 -0.0169573 0.00748775 -0.017617 -0.0169573 0.00750799 -0.0170299 -0.0164821 0.00757394 -0.0176046 -0.0164821 0.00724429 -0.0164589 -0.0174184 0.00704613 -0.0158616 -0.0178589 0.00727807 -0.0170497 -0.0174184 0.00679634 -0.0164717 -0.0182723 0.00679634 -0.0158545 -0.0182723 0.00704613 -0.0164646 -0.0178589 0.00734551 -0.0176375 -0.0174184 0.00744641 -0.0182205 -0.0174184 0.00725212 -0.0182599 -0.0178589 0.00683158 -0.017088 -0.0182723 0.00708055 -0.0170666 -0.0178589 0.00690195 -0.0177013 -0.0182723 0.00714929 -0.0176657 -0.0178589 0.0070072 -0.0183095 -0.0182723 0.00649857 -0.015846 -0.0186525 0.00615716 -0.0158362 -0.018994 0.00671525 -0.0183686 -0.0186525 0.00685891 -0.0189864 -0.0186525 0.00714701 -0.0189107 -0.0182723 0.00615716 -0.01649 -0.018994 0.00577708 -0.0158254 -0.0192919 0.00649857 -0.0164803 -0.0186525 0.00626901 -0.0177923 -0.018994 0.00653478 -0.0171135 -0.0186525 0.00660709 -0.0177437 -0.0186525 0.00652858 -0.0190733 -0.018994 0.00577708 -0.0165009 -0.0192919 0.00581565 -0.015151 -0.0192919 0.00536389 -0.0158136 -0.0195418 0.00619448 -0.0171427 -0.018994 0.0063805 -0.0184365 -0.018994 0.00492359 -0.015801 -0.0197401 0.00581565 -0.0171753 -0.0192919 0.00589265 -0.0178464 -0.0192919 0.00600784 -0.018512 -0.0192919 0.00616084 -0.0191699 -0.0192919 0.00492359 -0.0165252 -0.0197401 0.00496494 -0.0150779 -0.0197401 0.00536389 -0.0165127 -0.0195418 0.00496494 -0.0172483 -0.0197401 0.0054038 -0.0172106 -0.0195418 0.0050475 -0.0179679 -0.0197401 0.00548349 -0.0179052 -0.0195418 0.00533505 -0.019387 -0.0197401 0.0056027 -0.0185941 -0.0195418 0.0039877 -0.016552 -0.0199708 0.00446262 -0.0157878 -0.0198838 0.00450547 -0.0150384 -0.0198838 0.00459104 -0.0180335 -0.0198838 0.00471903 -0.0187731 -0.0198838 0.005171 -0.0186816 -0.0197401 0.00446262 -0.0165384 -0.0198838 0.0040321 -0.0173285 -0.0199708 0.00412076 -0.0181011 -0.0199708 0.00450547 -0.0172878 -0.0198838 0.00425338 -0.0188675 -0.0199708 0.00693248 -0.0203164 -0.018994 0.00657815 -0.0204543 -0.0192919 0.00635115 -0.0198181 -0.0192919 0.00619295 -0.0206043 -0.0195418 0.0055391 -0.0200819 -0.0197401 0.00535276 -0.0209314 -0.0198838 0.00491001 -0.0211038 -0.0199708 0.008161 -0.0198381 -0.0164821 0.00838619 -0.0203709 -0.0164821 0.00830699 -0.0204071 -0.0169573 0.00856443 -0.0209307 -0.0169573 0.00872828 -0.021513 -0.0174184 0.00888452 -0.0221226 -0.0178589 0.00867825 -0.0222636 -0.0182723 0.00880517 -0.0229449 -0.0186525 0.00960238 -0.0248771 -0.0192919 0.00985123 -0.0256395 -0.0195418 0.010146 -0.0264227 -0.0197401 0.0064651 -0.0212482 -0.0195418 0.00684111 -0.0210765 -0.0192919 0.00713916 -0.0216827 -0.0192919 0.00638399 -0.0220812 -0.0197401 0.00677356 -0.0218756 -0.0195418 0.00674014 -0.0227118 -0.0197401 0.00711734 -0.0224844 -0.0195418 0.00578249 -0.0207641 -0.0197401 0.00564495 -0.0216228 -0.0198838 0.00606443 -0.0214312 -0.0197401 0.00597613 -0.0222964 -0.0198838 0.00675104 -0.0235814 -0.0198838 0.00719224 -0.0241887 -0.0198838 0.00555592 -0.0225181 -0.0199708 0.00593836 -0.0231953 -0.0199708 0.00634523 -0.02295 -0.0198838 0.00635885 -0.0238496 -0.0199708 0.00681599 -0.0244788 -0.0199708 0.00730831 -0.0250809 -0.0199708 0.00904816 -0.0220107 -0.0174184 0.00904107 -0.022763 -0.0182723 0.00920668 -0.023436 -0.0186525 0.00939063 -0.0241413 -0.018994 0.0104049 -0.0260664 -0.0195418 0.0107438 -0.0268315 -0.0197401 0.0104945 -0.0272195 -0.0198838 0.0109037 -0.0280208 -0.0199708 0.00885134 -0.0214387 -0.0169573 0.00923896 -0.0226104 -0.0178589 0.00962066 -0.0230772 -0.0178589 0.00943181 -0.0232409 -0.0182723 0.00963556 -0.0239033 -0.0186525 0.0100904 -0.0243453 -0.0186525 0.00985948 -0.024597 -0.018994 0.0101129 -0.0253195 -0.0192919 0.0106478 -0.025732 -0.0192919 0.010982 -0.026461 -0.0195418 0.0111373 -0.0276071 -0.0198838 0.011364 -0.0272055 -0.0197401 0.00916679 -0.0219296 -0.0169573 0.00950974 -0.0224016 -0.0169573 0.00939594 -0.0224894 -0.0174184 0.00977048 -0.0229474 -0.0174184 0.00984919 -0.0236957 -0.0182723 0.0111881 -0.0240045 -0.0164821 0.011133 -0.0240719 -0.0169573 0.0131438 -0.0267077 -0.018994 0.0105698 -0.0247607 -0.0186525 0.0103536 -0.0250251 -0.018994 0.0108713 -0.0254243 -0.018994 0.0112054 -0.0261132 -0.0192919 0.0115806 -0.026822 -0.0195418 0.0120046 -0.0275435 -0.0197401 0.0118011 -0.0279574 -0.0198838 0.011595 -0.0244282 -0.0169573 0.011999 -0.0248784 -0.0174184 0.0124082 -0.0253566 -0.0178589 0.0128313 -0.0258623 -0.0182723 0.0132768 -0.0263931 -0.0186525 0.0137531 -0.0269449 -0.018994 0.0120767 -0.0247576 -0.0169573 0.0125057 -0.025184 -0.0174184 0.013029 -0.0254601 -0.0174184 0.0129415 -0.025638 -0.0178589 0.01349 -0.0258885 -0.0178589 0.0133927 -0.0261187 -0.0182723 0.0130924 -0.0253311 -0.0169573 0.0121238 -0.0246843 -0.0164821 0.0125763 -0.0250589 -0.0169573 0.0142677 -0.0275117 -0.0192919 0.0149211 -0.0276835 -0.0192919 0.0143749 -0.0271469 -0.018994 0.0150072 -0.0273131 -0.018994 0.0156479 -0.027443 -0.018994 0.0155831 -0.0278176 -0.0192919 0.0162046 -0.0283244 -0.0195418 0.0147277 -0.0285151 -0.0197401 0.0148274 -0.0280861 -0.0195418 0.0154375 -0.028659 -0.0197401 0.0155126 -0.0282249 -0.0195418 0.0161544 -0.028762 -0.0197401 0.016876 -0.028824 -0.0197401 0.0168497 -0.0292844 -0.0198838 0.0138973 -0.0287735 -0.0198838 0.0146232 -0.0289643 -0.0198838 0.0145156 -0.0294271 -0.0199708 0.0153589 -0.0291134 -0.0198838 0.0161018 -0.0292202 -0.0198838 0.0176 -0.029781 -0.0199708 0.0176 -0.0293058 -0.0198838 0.0193272 -0.0261439 -0.0164821 0.0205187 -0.0261034 -0.0174184 0.0205746 -0.0262936 -0.0178589 0.0218073 -0.0261187 -0.0182723 0.0219232 -0.0263931 -0.0186525 0.0225002 -0.0261296 -0.0186525 0.024218 -0.026461 -0.0195418 0.0247951 -0.0260664 -0.0195418 0.025054 -0.0264227 -0.0197401 0.0256276 -0.0259805 -0.0197401 0.0259195 -0.0263375 -0.0198838 0.0268081 -0.0261959 -0.0199708 0.0199139 -0.0261138 -0.0169573 0.0211481 -0.0261073 -0.0178589 0.02171 -0.0258885 -0.0178589 0.0223687 -0.0258623 -0.0182723 0.0232291 -0.026131 -0.018994 0.0239946 -0.0261132 -0.0192919 0.0253488 -0.0256395 -0.0195418 0.0264868 -0.0258459 -0.0198838 0.0198942 -0.026029 -0.0164821 0.0204537 -0.025882 -0.0164821 0.0204782 -0.0259655 -0.0169573 0.0210815 -0.0259206 -0.0174184 0.0216328 -0.0257059 -0.0174184 0.0222585 -0.025638 -0.0178589 0.0230612 -0.0258336 -0.0186525 0.023789 -0.0257934 -0.018994 0.0243287 -0.0254243 -0.018994 0.0245522 -0.025732 -0.0192919 0.026175 -0.0255062 -0.0197401 0.0270251 -0.0253228 -0.0198838 0.0278917 -0.0250809 -0.0199708 0.0275326 -0.0247698 -0.0198838 0.0210039 -0.0257032 -0.0164821 0.0210332 -0.0257852 -0.0169573 0.022171 -0.0254601 -0.0174184 0.0227918 -0.0253566 -0.0178589 0.0236043 -0.025506 -0.0186525 0.0229147 -0.0255742 -0.0182723 0.0234433 -0.0252554 -0.0182723 0.0247392 -0.0239418 -0.0178589 0.0273635 -0.0228392 -0.0192919 0.0277287 -0.0222709 -0.0192919 0.0280827 -0.0224844 -0.0195418 0.0241279 -0.025148 -0.0186525 0.0250871 -0.0253195 -0.0192919 0.0248464 -0.0250251 -0.018994 0.0258771 -0.0251816 -0.0195418 0.0263785 -0.0246944 -0.0195418 0.0266944 -0.0250014 -0.0197401 0.028384 -0.0244788 -0.0199708 0.024067 -0.0240719 -0.0169573 0.0250294 -0.0233833 -0.0174184 0.0246051 -0.0237957 -0.0174184 0.0251716 -0.0235215 -0.0178589 0.0261589 -0.022763 -0.0182723 0.0257682 -0.0232409 -0.0182723 0.0263948 -0.0229449 -0.0186525 0.0267677 -0.0224318 -0.0186525 0.0270496 -0.0226246 -0.018994 0.0280598 -0.0216846 -0.0192919 0.0244491 -0.0236257 -0.0164821 0.024508 -0.0236898 -0.0169573 0.0255793 -0.0230772 -0.0178589 0.0254295 -0.0229474 -0.0174184 0.0274031 -0.0220746 -0.018994 0.0271106 -0.0218982 -0.0186525 0.0277237 -0.0215069 -0.018994 0.0253209 -0.0228533 -0.0169573 0.0248639 -0.0232225 -0.0164821 0.0249264 -0.0232832 -0.0169573 0.025961 -0.0226104 -0.0178589 0.0265218 -0.0222636 -0.0182723 0.0268555 -0.0217444 -0.0182723 0.0263155 -0.0221226 -0.0178589 0.0279492 -0.0201924 -0.0186525 0.028013 -0.0209186 -0.018994 0.0286218 -0.0204543 -0.0192919 0.0283589 -0.0210765 -0.0192919 0.029007 -0.0206043 -0.0195418 0.0291356 -0.0214312 -0.0197401 0.0294175 -0.0207641 -0.0197401 0.0298472 -0.0209314 -0.0198838 0.03029 -0.0211038 -0.0199708 0.0295551 -0.0216228 -0.0198838 0.0299872 -0.0218202 -0.0199708 0.0284872 -0.0197006 -0.018994 0.0282675 -0.0203164 -0.018994 0.0288489 -0.0198181 -0.0192919 0.029242 -0.0199458 -0.0195418 0.0300995 -0.0202244 -0.0198838 0.0290392 -0.0191699 -0.0192919 0.029865 -0.019387 -0.0197401 0.0294389 -0.019275 -0.0195418 0.030029 -0.0186816 -0.0197401 0.030311 -0.0195042 -0.0198838 0.0296609 -0.0200819 -0.0197401 0.030609 -0.0180335 -0.0198838 0.0307705 -0.019625 -0.0199708 0.0309466 -0.0188675 -0.0199708 0.030481 -0.0187731 -0.0198838 0.0306945 -0.0172878 -0.0198838 0.0311679 -0.0173285 -0.0199708 0.027692 -0.0170299 -0.0164821 0.0278121 -0.0164548 -0.0169573 0.027725 -0.0164524 -0.0164821 0.0279557 -0.0158673 -0.0174184 0.0278121 -0.0158714 -0.0169573 0.0281194 -0.0152596 -0.0178589 0.0282981 -0.014625 -0.0182723 0.0280507 -0.0146605 -0.0178589 0.0281928 -0.0140167 -0.0182723 0.0286714 -0.0132529 -0.018994 0.0283411 -0.0133398 -0.0186525 0.0284872 -0.0126256 -0.018994 0.0284253 -0.0104484 -0.0195418 0.027725 -0.0158739 -0.0164821 0.0279219 -0.0152766 -0.0174184 0.0277788 -0.0152889 -0.0169573 0.0279479 -0.0140664 -0.0178589 0.028053 -0.0134155 -0.0182723 0.0281624 -0.0127312 -0.0186525 0.0286218 -0.0118719 -0.0192919 0.0287349 -0.011078 -0.0195418 0.0280598 -0.0106416 -0.0192919 0.0277122 -0.0147092 -0.0169573 0.0278545 -0.0146887 -0.0174184 0.0277536 -0.0141057 -0.0174184 0.0278113 -0.013479 -0.0178589 0.0278791 -0.0128232 -0.0182723 0.0279492 -0.0121338 -0.0186525 0.0282675 -0.0120099 -0.018994 0.0283589 -0.0112497 -0.0192919 0.0276261 -0.0147216 -0.0164821 0.0276716 -0.0122419 -0.0182723 0.026893 -0.0119191 -0.0169573 0.0266354 -0.0113951 -0.0169573 0.0263487 -0.0108875 -0.0169573 0.0264717 -0.0108133 -0.0174184 0.0261589 -0.00956319 -0.0182723 0.0253405 -0.00772926 -0.018994 0.0250871 -0.00700676 -0.0192919 0.025054 -0.0059035 -0.0197401 0.0240627 -0.00471912 -0.0198838 0.0277023 -0.0115495 -0.0186525 0.028013 -0.0114076 -0.018994 0.0261518 -0.0103155 -0.0174184 0.025961 -0.00971578 -0.0178589 0.0257682 -0.00908533 -0.0182723 0.0255644 -0.00842295 -0.0186525 0.0253508 -0.00863056 -0.0182723 0.0251096 -0.00798089 -0.0186525 0.0245522 -0.00659427 -0.0192919 0.024218 -0.00586524 -0.0195418 0.0247951 -0.00625985 -0.0195418 0.0244562 -0.00549469 -0.0197401 0.023836 -0.00512067 -0.0197401 0.0274031 -0.0102516 -0.018994 0.0273635 -0.00948702 -0.0192919 0.0277047 -0.0092537 -0.0195418 0.028449 -0.00874478 -0.0198838 0.0256903 -0.00992459 -0.0169573 0.0258041 -0.00983684 -0.0174184 0.0254295 -0.0093788 -0.0174184 0.0276426 -0.00841913 -0.0197401 0.0272938 -0.0086881 -0.0195418 0.0268512 -0.00814689 -0.0195418 0.0271841 -0.00785844 -0.0197401 0.0266944 -0.00732484 -0.0197401 0.0280078 -0.00813753 -0.0198838 0.0280683 -0.00900508 -0.0197401 0.0275326 -0.00755645 -0.0198838 0.0262741 -0.0109324 -0.0164821 0.0259613 -0.0104458 -0.0164821 0.0260332 -0.0103966 -0.0169573 0.0255793 -0.00924898 -0.0178589 0.0251716 -0.00880472 -0.0178589 0.024067 -0.0082543 -0.0169573 0.0236894 -0.00778175 -0.0174184 0.023201 -0.00744778 -0.0174184 0.0233082 -0.00728101 -0.0178589 0.0227918 -0.00696962 -0.0178589 0.0229147 -0.00675203 -0.0182723 0.0223687 -0.00646397 -0.0182723 0.0225002 -0.00619664 -0.0186525 0.0220562 -0.00561854 -0.018994 0.0219232 -0.00593315 -0.0186525 0.0214469 -0.00538134 -0.018994 0.0210487 -0.00441785 -0.0195418 0.0248464 -0.00730112 -0.018994 0.0243287 -0.00690188 -0.018994 0.0239946 -0.00621298 -0.0192919 0.0236194 -0.00550421 -0.0195418 0.023605 -0.007898 -0.0169573 0.0226943 -0.00714224 -0.0174184 0.0222585 -0.00668822 -0.0178589 0.0208251 -0.00517931 -0.018994 0.0209323 -0.00481448 -0.0192919 0.0203726 -0.00424013 -0.0195418 0.0230762 -0.00764191 -0.0164821 0.0231233 -0.00756867 -0.0169573 0.02171 -0.00643772 -0.0178589 0.0218073 -0.00620755 -0.0182723 0.0213322 -0.00570303 -0.0186525 0.0207289 -0.00550702 -0.0186525 0.0202789 -0.00464275 -0.0192919 0.0196874 -0.00410129 -0.0195418 0.0190456 -0.00356419 -0.0197401 0.022171 -0.00686612 -0.0174184 0.0221076 -0.00699508 -0.0169573 0.0225808 -0.00734318 -0.0164821 0.0226237 -0.00726737 -0.0169573 0.021232 -0.0059836 -0.0182723 0.020645 -0.00579285 -0.0182723 0.0201928 -0.0050131 -0.018994 0.0196169 -0.0045086 -0.0192919 0.0189954 -0.00400179 -0.0195418 0.0193421 -0.00609651 -0.0169573 0.0198942 -0.00629718 -0.0164821 0.0181832 -0.00596354 -0.0169573 0.0187546 -0.00609997 -0.0164821 0.0176 -0.00594688 -0.0169573 0.0170086 -0.00582007 -0.0174184 0.0169972 -0.00562215 -0.0178589 0.016334 -0.00512954 -0.0186525 0.0164454 -0.00609997 -0.0164821 0.0158728 -0.0061823 -0.0164821 0.0152535 -0.00607241 -0.0174184 0.0146254 -0.00603261 -0.0178589 0.0146813 -0.00622283 -0.0174184 0.013968 -0.0059836 -0.0182723 0.0133927 -0.00620755 -0.0182723 0.0132768 -0.00593315 -0.0186525 0.0119709 -0.00619524 -0.018994 0.0117839 -0.00586415 -0.0192919 0.010146 -0.0059035 -0.0197401 0.00928048 -0.00598877 -0.0198838 0.0095724 -0.00634577 -0.0197401 0.00871321 -0.00648031 -0.0198838 0.016368 -0.0054255 -0.0182723 0.015757 -0.00551334 -0.0182723 0.0150845 -0.00534578 -0.0186525 0.0162951 -0.00479022 -0.018994 0.0157062 -0.00521981 -0.0186525 0.0162517 -0.00441247 -0.0192919 0.0155831 -0.0045086 -0.0192919 0.0156479 -0.00488326 -0.018994 0.0142677 -0.00481448 -0.0192919 0.0150072 -0.0050131 -0.018994 0.0147277 -0.0038111 -0.0197401 0.0148274 -0.00424013 -0.0195418 0.0153058 -0.00629718 -0.0164821 0.0152861 -0.00621238 -0.0169573 0.0140519 -0.00621895 -0.0178589 0.01349 -0.00643772 -0.0178589 0.0126998 -0.00619664 -0.0186525 0.0112054 -0.00621298 -0.0192919 0.0106478 -0.00659427 -0.0192919 0.0104049 -0.00625985 -0.0195418 0.00985123 -0.00668676 -0.0195418 0.00902503 -0.00682007 -0.0197401 0.0141513 -0.00441785 -0.0195418 0.0149211 -0.00464275 -0.0192919 0.0136253 -0.00502322 -0.0192919 0.0147218 -0.00636071 -0.0169573 0.0141186 -0.00640566 -0.0174184 0.0135672 -0.00662033 -0.0174184 0.0128313 -0.00646397 -0.0182723 0.0122853 -0.00675203 -0.0182723 0.0121388 -0.00649264 -0.0186525 0.0115957 -0.00682018 -0.0186525 0.011411 -0.00653285 -0.018994 0.0108713 -0.00690188 -0.018994 0.00817493 -0.00700344 -0.0198838 0.0133384 -0.00421903 -0.0197401 0.0140272 -0.00399522 -0.0197401 0.0131834 -0.0037847 -0.0198838 0.0134864 -0.00463389 -0.0195418 0.0136231 -0.0067527 -0.0169573 0.0129415 -0.00668822 -0.0178589 0.0128349 -0.00488754 -0.0195418 0.0120046 -0.00478268 -0.0197401 0.0124839 -0.00405702 -0.0198838 0.0126634 -0.00448181 -0.0197401 0.0141668 -0.00654101 -0.0169573 0.011042 -0.00814305 -0.0174184 0.011133 -0.0082543 -0.0169573 0.0105949 -0.00853052 -0.0174184 0.0100284 -0.00880472 -0.0178589 0.00984919 -0.00863056 -0.0182723 0.00880517 -0.00938128 -0.0186525 0.0081504 -0.00970164 -0.018994 0.00638399 -0.010245 -0.0197401 0.00677356 -0.0104506 -0.0195418 0.00564495 -0.0107034 -0.0198838 0.00606443 -0.010895 -0.0197401 0.0101129 -0.00700676 -0.0192919 0.00960238 -0.00744913 -0.0192919 0.00932287 -0.00714458 -0.0195418 0.00850564 -0.00732484 -0.0197401 0.00719224 -0.00813753 -0.0198838 0.0101706 -0.00894288 -0.0174184 0.00962066 -0.00924898 -0.0178589 0.00943181 -0.00908533 -0.0182723 0.00843234 -0.00989443 -0.0186525 0.00779694 -0.0102516 -0.018994 0.00747133 -0.0100553 -0.0192919 0.0064651 -0.011078 -0.0195418 0.00578249 -0.0115621 -0.0197401 0.0107509 -0.00870054 -0.0164821 0.010692 -0.00863639 -0.0169573 0.00977048 -0.0093788 -0.0174184 0.00904107 -0.00956319 -0.0182723 0.00808942 -0.010428 -0.0186525 0.00684111 -0.0112497 -0.0192919 0.00713916 -0.0106435 -0.0192919 0.00619295 -0.0117219 -0.0195418 0.00510051 -0.0121018 -0.0198838 0.0055391 -0.0122443 -0.0197401 0.0103361 -0.00910371 -0.0164821 0.0102736 -0.00904303 -0.0169573 0.00923896 -0.00971578 -0.0178589 0.00987909 -0.0094729 -0.0169573 0.00888452 -0.0102036 -0.0178589 0.00939594 -0.00983684 -0.0174184 0.00867825 -0.0100626 -0.0182723 0.00864143 -0.0114362 -0.0164821 0.00817627 -0.0118594 -0.0174184 0.00732092 -0.0128232 -0.0182723 0.00685891 -0.0133398 -0.0186525 0.00589265 -0.0144798 -0.0192919 0.00777753 -0.0109803 -0.0186525 0.00747545 -0.0108209 -0.018994 0.00657815 -0.0118719 -0.0192919 0.00595802 -0.0123804 -0.0195418 0.00533505 -0.0129392 -0.0197401 0.00830699 -0.0119191 -0.0169573 0.00794595 -0.0124044 -0.0174184 0.00755858 -0.0129005 -0.0178589 0.00714701 -0.0134155 -0.0182723 0.00671525 -0.0139576 -0.0186525 0.0070072 -0.0140167 -0.0182723 0.00807986 -0.0124566 -0.0169573 0.00774712 -0.0129617 -0.0174184 0.00788379 -0.0130061 -0.0169573 0.00738869 -0.013479 -0.0178589 0.00758042 -0.0135294 -0.0174184 0.00690195 -0.014625 -0.0182723 0.00660709 -0.0145826 -0.0186525 0.00725212 -0.0140664 -0.0178589 0.0077194 -0.013566 -0.0169573 0.008161 -0.0124882 -0.0164821 0.00744641 -0.0141057 -0.0174184 0.0075 -0.0161631 -2.11953e-09 0.0075 -0.0161631 -0.016 0.00761837 -0.0146214 -1.91737e-09 0.00776568 -0.0138618 -1.81776e-09 0.0079707 -0.0131157 -0.016 0.00854873 -0.0116815 -0.016 0.00891835 -0.0110018 -0.016 0.00891835 -0.0110018 -1.44271e-09 0.00933891 -0.0103524 -0.016 0.00980796 -0.00973706 -1.27686e-09 0.0103227 -0.00915944 -1.20112e-09 0.0108802 -0.00862292 -1.13076e-09 0.012775 -0.00729014 -9.55986e-10 0.0134684 -0.00694682 -9.10965e-10 0.012775 -0.00729014 -0.016 0.0134684 -0.00694682 -0.016 0.0149237 -0.00642415 -8.42426e-10 0.0149237 -0.00642415 -0.016 0.015677 -0.00624786 -0.016 0.0172131 -0.00607052 -7.96053e-10 0.0164417 -0.00612975 -0.016 0.0172131 -0.00607052 -0.016 0.0179869 -0.00607052 -7.96053e-10 0.0187583 -0.00612975 -8.0382e-10 0.0187583 -0.00612975 -0.016 0.019523 -0.00624786 -0.016 0.0202763 -0.00642415 -8.42426e-10 0.021014 -0.0066576 -0.016 0.0217316 -0.00694682 -9.10965e-10 0.0237229 -0.00813065 -1.06621e-09 0.0248773 -0.00915944 -0.016 0.0258611 -0.0103524 -1.35755e-09 0.0262817 -0.0110018 -1.44271e-09 0.0266513 -0.0116815 -1.53184e-09 0.0269678 -0.0123876 -1.62444e-09 0.0272293 -0.0131157 -1.71992e-09 0.0269678 -0.0123876 -0.016 0.0272293 -0.0131157 -0.016 0.0274343 -0.0138618 -0.016 0.0275816 -0.0146214 -0.016 0.0277 -0.0161631 -2.11953e-09 0.0276704 -0.01539 -0.016 0.0277 -0.0161631 -0.016 0.0275816 -0.0177049 -0.016 0.0274343 -0.0184644 -0.016 0.0272293 -0.0192105 -0.016 0.0269678 -0.0199387 -2.61464e-09 0.0269678 -0.0199387 -0.016 0.0262817 -0.0213244 -2.79636e-09 0.0262817 -0.0213244 -0.016 0.0258611 -0.0219738 -2.88152e-09 0.0258611 -0.0219738 -0.016 0.025392 -0.0225892 -2.96222e-09 0.025392 -0.0225892 -0.016 0.0237229 -0.0241956 -3.17287e-09 0.0217316 -0.0253794 -3.32811e-09 0.022425 -0.0250361 -0.016 0.021014 -0.0256686 -3.36603e-09 0.0217316 -0.0253794 -0.016 0.021014 -0.0256686 -0.016 0.0202763 -0.0259021 -3.39665e-09 0.0202763 -0.0259021 -0.016 0.019523 -0.0260784 -3.41977e-09 0.019523 -0.0260784 -0.016 0.0187583 -0.0261965 -3.43526e-09 0.0179869 -0.0262557 -0.016 0.0164417 -0.0261965 -3.43526e-09 0.0164417 -0.0261965 -0.016 0.015677 -0.0260784 -3.41977e-09 0.015677 -0.0260784 -0.016 0.0149237 -0.0259021 -3.39665e-09 0.014186 -0.0256686 -3.36603e-09 0.0134684 -0.0253794 -3.32811e-09 0.012775 -0.0250361 -0.016 0.01211 -0.0246407 -0.016 0.0114771 -0.0241956 -3.17287e-09 0.0114771 -0.0241956 -0.016 0.0108802 -0.0237033 -3.10831e-09 0.0108802 -0.0237033 -0.016 0.0103227 -0.0231668 -3.03796e-09 0.00980796 -0.0225892 -2.96222e-09 0.00933891 -0.0219738 -2.88152e-09 0.00891835 -0.0213244 -0.016 0.00854873 -0.0206447 -0.016 0.00854873 -0.0206447 -2.70723e-09 0.0079707 -0.0192105 -0.016 0.0079707 -0.0192105 -2.51915e-09 0.00776568 -0.0184644 -0.016 0.00761837 -0.0177049 -2.32172e-09 0.00761837 -0.0177049 -0.016 0.07 -0.1 -0.02 0.07 -0.13 -0.01 0.035 -0.13 -0.01 -8.88178e-18 -0.13 -0.01 0.035 -0.13 -0.02 0.035 -0.1 -1.31134e-08 0.035 -0.1 -0.01 -1.77636e-17 -0.1 -1.31134e-08 -1.77636e-17 -0.1 -0.01 0.0176859 -0.0672927 -8.82437e-09 0.0277427 -0.0731982 -9.59878e-09 0.0530995 -0.0907904 -0.016 0.0530995 -0.0907904 -1.19057e-08 0.0429581 -0.0729746 -0.016 0.042 -0.0347351 -0.016 0.0075 -0.0347351 -0.016 0 0 0 0.07 -0.1 -0.01 0.035 -0.13 -1.70474e-08 0.0276568 -0.0848604 -1.11281e-08 0.0428858 -0.08481 -1.11215e-08 0.0429581 -0.0729746 -9.56946e-09 0.042 -0.0552351 -7.24321e-09 0.07 -0.13 -1.70474e-08 0.0508961 -0.00600292 -7.87188e-10 0.00776568 -0.0184644 -2.42131e-09 0.00823223 -0.0199387 -2.61464e-09 0.00891835 -0.0213244 -2.79636e-09 0.0075 -0.0347351 -4.55496e-09 0.01211 -0.0246407 -3.23124e-09 0.012775 -0.0250361 -3.28309e-09 0.0172131 -0.0262557 -3.44302e-09 0.0179869 -0.0262557 -3.44302e-09 0.022425 -0.0250361 -3.28309e-09 0.02309 -0.0246407 -3.23124e-09 0.0277 -0.0347351 -4.55496e-09 0.0243198 -0.0237033 -3.10831e-09 0.0248773 -0.0231668 -3.03796e-09 0.0266513 -0.0206447 -2.70723e-09 0.0272293 -0.0192105 -2.51915e-09 0.0427255 -0.0199508 -2.61623e-09 0.0430393 -0.0206603 -2.70927e-09 0.0438229 -0.021998 -2.88469e-09 0.042 -0.0347351 -4.55496e-09 0.0479279 -0.0254573 -3.33832e-09 0.0486432 -0.0257576 -3.3777e-09 0.0493792 -0.0260029 -3.40987e-09 0.0516684 -0.0263966 -3.4615e-09 0.0539874 -0.0262648 -3.44421e-09 0.0547464 -0.0261045 -3.42319e-09 0.0575973 -0.0249077 -3.26625e-09 0.0599617 -0.0229153 -3.00498e-09 0.0625 -0.0347351 -4.55496e-09 0.0604503 -0.0223128 -2.92597e-09 0.062317 -0.0180914 -2.3724e-09 0.062434 -0.0173245 -2.27183e-09 0.062317 -0.0142348 -1.86667e-09 0.07 -4.00871e-18 -5.25679e-25 0.0608919 -0.0106512 -1.39674e-09 0.0599617 -0.00941089 -1.23409e-09 0.0569207 -0.00703912 -9.23069e-10 0.0516684 -0.00592963 -7.77577e-10 0.00745731 -0.0847116 -1.11086e-08 0.0420294 -0.0169383 -2.22119e-09 0.0420294 -0.0153879 -2.01788e-09 0.0421173 -0.0146172 -1.91681e-09 0.0276704 -0.01539 -2.01815e-09 0.0275816 -0.0146214 -1.91737e-09 0.0422632 -0.0138553 -1.8169e-09 0.0274343 -0.0138618 -1.81776e-09 0.0424663 -0.0131066 -1.71872e-09 0.0427255 -0.0123754 -1.62284e-09 0.0434057 -0.0109822 -1.44014e-09 0.0438229 -0.0103282 -1.35438e-09 0.025392 -0.00973706 -1.27686e-09 0.0248773 -0.00915944 -1.20112e-09 0.0243198 -0.00862292 -1.13076e-09 0.0459463 -0.00808069 -1.05965e-09 0.02309 -0.00768552 -1.00783e-09 0.0472374 -0.0072224 -9.47103e-10 0.022425 -0.00729014 -9.55986e-10 0.0479279 -0.00686891 -9.00749e-10 0.021014 -0.0066576 -8.73039e-10 0.0486432 -0.00656865 -8.61374e-10 0.0493792 -0.00632335 -8.29207e-10 0.0501316 -0.00613442 -8.04432e-10 0.019523 -0.00624786 -8.19308e-10 0.0164417 -0.00612975 -8.0382e-10 0.015677 -0.00624786 -8.19308e-10 0.014186 -0.0066576 -8.73039e-10 0.01211 -0.00768552 -1.00783e-09 0.0114771 -0.00813065 -1.06621e-09 0.00933891 -0.0103524 -1.35755e-09 0.00854873 -0.0116815 -1.53184e-09 0.00823223 -0.0123876 -1.62444e-09 0.0079707 -0.0131157 -1.71992e-09 0.00752964 -0.01539 -2.01815e-09 0.00752964 -0.0169363 -2.22093e-09 0.0424663 -0.0192196 -2.52035e-09 0.0274343 -0.0184644 -2.42131e-09 0.0422632 -0.018471 -2.42218e-09 0.0275816 -0.0177049 -2.32172e-09 0.0276704 -0.0169363 -2.22093e-09 0.0277 -0.0549351 -7.20387e-09 0.00754324 -0.0730494 -9.57927e-09 0.0075 -0.0549351 -7.20387e-09 0.0175141 -0.0906171 -1.1883e-08</float_array>\n                    <technique_common>\n                        <accessor count=\"3918\" source=\"#shape0-lib-positions-array\" stride=\"3\">\n                            <param name=\"X\" type=\"float\"/>\n                            <param name=\"Y\" type=\"float\"/>\n                            <param name=\"Z\" type=\"float\"/>\n                        </accessor>\n                    </technique_common>\n                </source>\n                <source id=\"shape0-lib-normals\" name=\"normal\">\n                    <float_array id=\"shape0-lib-normals-array\" count=\"23574\">0.0494541 -0.000878763 -0.998776 0.0302058 -0.000222448 -0.999544 0.0495394 0.000281369 -0.998772 0.120482 -0.00177652 -0.992714 0.146949 -0.000705697 -0.989144 0.239312 -0.00222514 -0.97094 0.242645 -0.00203573 -0.970113 0.337118 -0.00227732 -0.94146 0.354615 -0.00347118 -0.935006 0.427783 -0.00249724 -0.903878 0.464744 -0.00459768 -0.885433 0.514417 -0.00300333 -0.857535 0.568055 -0.00534244 -0.822973 0.596017 -0.00380336 -0.802963 0.663093 -0.00565531 -0.748516 0.671518 -0.004948 -0.740972 0.740864 -0.00545903 -0.671633 0.748435 -0.00633289 -0.663178 0.803333 -0.00528788 -0.595507 0.822929 -0.00734835 -0.568097 0.857848 -0.00540599 -0.513875 0.885428 -0.00790385 -0.46471 0.904081 -0.00585607 -0.427321 0.934998 -0.00795861 -0.354564 0.941538 -0.00666459 -0.336842 0.96998 -0.00746413 -0.243068 0.970908 -0.00779903 -0.239327 0.989161 -0.00678403 -0.146681 0.992672 -0.00858574 -0.120536 0.998776 -0.00643382 -0.0490419 0.999517 -0.00736471 -0.0301996 0.998765 -0.0080351 -0.0490395 0.992688 -0.00638444 -0.120536 0.989152 -0.00765703 -0.146693 0.970916 -0.00668103 -0.239326 0.969982 -0.00691492 -0.243077 0.941534 -0.0071385 -0.336843 0.935012 -0.00610087 -0.354564 0.904047 -0.00725595 -0.427371 0.885446 -0.00550184 -0.46471 0.857808 -0.00700013 -0.513923 0.822946 -0.00510547 -0.568097 0.80328 -0.00639165 -0.595568 0.748446 -0.00490145 -0.663178 0.740867 -0.00545891 -0.67163 0.671524 -0.00494798 -0.740966 0.663103 -0.00430037 -0.748516 0.595959 -0.00483891 -0.803 0.56807 -0.00329891 -0.822973 0.514324 -0.00439439 -0.857585 0.464759 -0.0025187 -0.885434 0.427714 -0.003659 -0.903907 0.354626 -0.00194505 -0.935006 0.337088 -0.00264518 -0.94147 0.242677 -0.0015938 -0.970106 0.239318 -0.00139883 -0.97094 0.146901 -0.00137988 -0.98915 0.120494 -0.000181733 -0.992714 0.0238979 -0.0433927 -0.998772 0.0149118 -0.0262731 -0.999544 0.0149138 -0.0262765 -0.999543 0.0279661 -0.0427845 -0.998693 0.0452147 -0.0831271 -0.995513 0.0686463 -0.120949 -0.990282 0.118124 -0.208125 -0.970943 0.118125 -0.208127 -0.970943 0.168134 -0.296237 -0.940199 0.168118 -0.293079 -0.941191 0.117742 -0.211161 -0.970334 0.115704 -0.2095 -0.970939 0.0750036 -0.127624 -0.988983 0.218253 -0.371167 -0.902552 0.195671 -0.344748 -0.918075 0.174465 -0.308757 -0.935003 0.175782 -0.308009 -0.935003 0.166228 -0.293292 -0.941461 0.267238 -0.445435 -0.854501 0.244189 -0.430241 -0.86906 0.228636 -0.4047 -0.885406 0.230438 -0.403677 -0.885406 0.210592 -0.372347 -0.903885 0.31847 -0.514123 -0.796401 0.289632 -0.510303 -0.809756 0.279591 -0.494448 -0.823013 0.281369 -0.493439 -0.823012 0.253234 -0.447725 -0.857563 0.292311 -0.591735 -0.751269 0.327302 -0.576673 -0.748546 0.327319 -0.57671 -0.74851 0.36574 -0.644405 -0.671548 0.368894 -0.651211 -0.663206 0.396948 -0.698398 -0.595544 0.405401 -0.716246 -0.568015 0.424019 -0.745682 -0.513971 0.436148 -0.770562 -0.464768 0.44677 -0.785941 -0.427426 0.460833 -0.813574 -0.354585 0.464929 -0.81875 -0.336882 0.478602 -0.843736 -0.243 0.478845 -0.844656 -0.239299 0.488593 -0.860094 -0.146679 0.489182 -0.863803 -0.120602 0.493621 -0.868301 -0.0488981 0.493388 -0.869294 -0.0299306 0.492214 -0.869088 -0.0491128 0.491071 -0.862731 -0.120602 0.487853 -0.860541 -0.146522 0.479815 -0.844105 -0.239299 0.479061 -0.843439 -0.243127 0.464535 -0.81901 -0.336794 0.462443 -0.81266 -0.354584 0.445555 -0.786618 -0.42745 0.438223 -0.769383 -0.464768 0.422666 -0.746511 -0.513882 0.407334 -0.715149 -0.568015 0.396004 -0.698986 -0.595483 0.370124 -0.650513 -0.663205 0.365726 -0.644372 -0.671587 0.331457 -0.583993 -0.741005 0.327974 -0.576338 -0.74851 0.293727 -0.518688 -0.802924 0.118349 -0.207997 -0.970943 0.120145 -0.210705 -0.970139 0.0722014 -0.127961 -0.989148 0.0602355 -0.10436 -0.992714 0.059476 -0.104791 -0.992714 0.217712 -0.383581 -0.897478 0.264682 -0.466349 -0.844075 -0.0255541 -0.0423859 -0.998774 -0.0152965 -0.0260488 -0.999544 -0.0245725 -0.0429772 -0.998774 -0.0616895 -0.103502 -0.992714 -0.0741073 -0.126859 -0.989148 -0.121538 -0.206172 -0.970939 -0.123063 -0.209141 -0.970111 -0.170557 -0.290809 -0.941457 -0.180237 -0.305451 -0.934994 -0.216079 -0.369099 -0.903923 -0.236186 -0.400193 -0.885472 -0.259878 -0.443915 -0.857557 -0.288559 -0.48942 -0.822923 -0.301366 -0.51421 -0.802973 -0.336364 -0.571492 -0.748503 -0.340033 -0.579045 -0.741002 -0.375208 -0.638945 -0.671542 -0.379604 -0.64506 -0.663173 -0.406305 -0.692983 -0.595559 -0.417662 -0.709087 -0.568115 -0.433716 -0.740137 -0.513895 -0.449379 -0.762951 -0.464719 -0.457203 -0.779945 -0.427378 -0.474241 -0.805816 -0.354622 -0.476567 -0.812028 -0.336891 -0.491427 -0.836345 -0.242953 -0.492119 -0.83699 -0.239305 -0.500501 -0.853178 -0.146923 -0.503607 -0.855481 -0.120549 -0.505091 -0.861684 -0.0488149 -0.506137 -0.861929 -0.0300501 -0.506435 -0.860885 -0.0489913 -0.501749 -0.856572 -0.120549 -0.501257 -0.852772 -0.146698 -0.491185 -0.837538 -0.239305 -0.490957 -0.836613 -0.24298 -0.476977 -0.811817 -0.336819 -0.472668 -0.806739 -0.354622 -0.45838 -0.779266 -0.427354 -0.447345 -0.764145 -0.464719 -0.434996 -0.73924 -0.514103 -0.415771 -0.710197 -0.568114 -0.407245 -0.692442 -0.595546 -0.378397 -0.645769 -0.663173 -0.375218 -0.638994 -0.67149 -0.339995 -0.579009 -0.741048 -0.335215 -0.572166 -0.748503 -0.302257 -0.513725 -0.802949 -0.286829 -0.490436 -0.822923 -0.261061 -0.443217 -0.857558 -0.234423 -0.401229 -0.885473 -0.217073 -0.368537 -0.903914 -0.178942 -0.306212 -0.934994 -0.170868 -0.29062 -0.941459 -0.122689 -0.209363 -0.970111 -0.120838 -0.206583 -0.970939 -0.0746949 -0.126544 -0.989145 -0.0603328 -0.104298 -0.992714 -0.0494913 0.00093786 -0.998774 -0.0302071 0.000222765 -0.999544 -0.0494956 -0.00020789 -0.998774 -0.120481 0.00167525 -0.992714 -0.146934 0.000750211 -0.989146 -0.239303 0.00217065 -0.970943 -0.242693 0.0020037 -0.970101 -0.337116 0.00229949 -0.94146 -0.354637 0.0033613 -0.934998 -0.427685 0.00257746 -0.903924 -0.464735 0.00444691 -0.885439 -0.51443 0.00310434 -0.857527 -0.568067 0.00518548 -0.822966 -0.595912 0.00388276 -0.80304 -0.663135 0.00555374 -0.74848 -0.671528 0.0049533 -0.740962 -0.740851 0.00546464 -0.671647 -0.748436 0.00622297 -0.663177 -0.803347 0.00538531 -0.595487 -0.822922 0.007164 -0.56811 -0.857884 0.0055406 -0.513813 -0.885396 0.0076914 -0.464775 -0.903978 0.00597533 -0.427536 -0.934986 0.00779917 -0.3546 -0.941601 0.00669499 -0.336665 -0.969965 0.0074019 -0.243132 -0.970908 0.00769086 -0.239328 -0.989141 0.00685452 -0.14681 -0.992679 0.00839013 -0.120495 -0.998785 0.00657569 -0.0488461 -0.999523 0.00736229 -0.0300071 -0.998769 0.00814147 -0.0489323 -0.992694 0.00623953 -0.120495 -0.989131 0.0077244 -0.146837 -0.970916 0.00661978 -0.239328 -0.969976 0.00689268 -0.243103 -0.941536 0.00718213 -0.336837 -0.934999 0.00599198 -0.3546 -0.904095 0.00735327 -0.427267 -0.885413 0.00534953 -0.464774 -0.857779 0.00710053 -0.51397 -0.822938 0.00496795 -0.56811 -0.803328 0.00645872 -0.595502 -0.748447 0.00481199 -0.663178 -0.740905 0.00545386 -0.671587 -0.671497 0.00494298 -0.74099 -0.663144 0.00422158 -0.74848 -0.596005 0.0049006 -0.802966 -0.568081 0.00318169 -0.822966 -0.514379 0.00447363 -0.857551 -0.46475 0.00240078 -0.885438 -0.427696 0.00372347 -0.903915 -0.354648 0.00186321 -0.934998 -0.337067 0.00266893 -0.941477 -0.24272 0.0015739 -0.970095 -0.239309 0.00135547 -0.970943 -0.146894 0.00141489 -0.989151 -0.120493 0.000101641 -0.992714 -0.493525 0.868355 -0.0489176 -0.493385 0.869292 -0.0300504 -0.491979 0.869226 -0.0490231 -0.491413 0.862546 -0.120532 -0.48772 0.860611 -0.146553 -0.479975 0.843992 -0.239378 -0.479136 0.843378 -0.243192 -0.464487 0.81908 -0.33669 -0.462731 0.812528 -0.354511 -0.445345 0.786715 -0.427491 -0.438571 0.769234 -0.464687 -0.422525 0.746785 -0.5136 -0.407609 0.714892 -0.568141 -0.39584 0.699018 -0.595554 -0.370363 0.650483 -0.663101 -0.365719 0.644371 -0.671592 -0.331452 0.583995 -0.741005 -0.328101 0.576167 -0.748586 -0.293612 0.518771 -0.802913 -0.281648 0.493374 -0.822956 -0.253126 0.447919 -0.857494 -0.230638 0.403481 -0.885443 -0.210482 0.372447 -0.90387 -0.175959 0.307936 -0.934994 -0.166205 0.293343 -0.941449 -0.120037 0.210897 -0.97011 -0.118603 0.207853 -0.970943 -0.0721588 0.128041 -0.98914 -0.0603945 0.104286 -0.992712 -0.0238239 0.0435177 -0.998769 -0.0149105 0.026271 -0.999544 -0.0248003 0.0427649 -0.998777 -0.0589356 0.105114 -0.992712 -0.0727421 0.127628 -0.989151 -0.117843 0.208284 -0.970943 -0.119635 0.211133 -0.970108 -0.16651 0.293084 -0.941476 -0.174549 0.308737 -0.934994 -0.211514 0.371762 -0.903911 -0.228707 0.404577 -0.885444 -0.254301 0.446978 -0.857637 -0.279738 0.494458 -0.822956 -0.294538 0.518156 -0.802971 -0.326832 0.576887 -0.748586 -0.331455 0.583988 -0.74101 -0.365688 0.644304 -0.671673 -0.369008 0.651252 -0.663101 -0.396868 0.698424 -0.595567 -0.405474 0.716104 -0.568142 -0.42397 0.7458 -0.513839 -0.436305 0.770521 -0.464688 -0.44669 0.785983 -0.427433 -0.460951 0.813539 -0.354511 -0.464898 0.818766 -0.336886 -0.478628 0.843718 -0.243014 -0.478899 0.844603 -0.239378 -0.488544 0.860124 -0.146668 -0.489309 0.863741 -0.120531 0.50509 0.861682 -0.0488673 0.506137 0.861928 -0.0300891 0.506434 0.860885 -0.0490075 0.50175 0.856573 -0.120535 0.501259 0.852774 -0.146682 0.491183 0.837536 -0.239317 0.490956 0.83661 -0.242993 0.476976 0.811816 -0.336821 0.472668 0.806739 -0.354623 0.458383 0.779272 -0.42734 0.447348 0.764151 -0.464708 0.435038 0.739324 -0.513948 0.415762 0.710203 -0.568114 0.407234 0.692446 -0.595549 0.378388 0.645773 -0.663174 0.375161 0.638895 -0.671615 0.34 0.579015 -0.741041 0.335265 0.572238 -0.748426 0.302261 0.513716 -0.802953 0.286787 0.490359 -0.822983 0.261065 0.443224 -0.857553 0.234422 0.401229 -0.885472 0.217111 0.36861 -0.903875 0.17894 0.306218 -0.934992 0.170831 0.290557 -0.941485 0.122694 0.20937 -0.970109 0.120836 0.20658 -0.970939 0.0746932 0.126541 -0.989145 0.0603327 0.104299 -0.992714 0.0255543 0.0423867 -0.998774 0.0152985 0.0260525 -0.999544 0.0245716 0.0429755 -0.998774 0.0616898 0.103502 -0.992714 0.0740976 0.126841 -0.989152 0.121538 0.206168 -0.970939 0.123077 0.209163 -0.970105 0.170566 0.290823 -0.941451 0.180239 0.305455 -0.934992 0.216088 0.369114 -0.903914 0.236186 0.400194 -0.885472 0.259875 0.443912 -0.857559 0.288511 0.489346 -0.822983 0.301355 0.514207 -0.80298 0.336401 0.57157 -0.748426 0.340038 0.579058 -0.74099 0.375192 0.638922 -0.671573 0.379604 0.645059 -0.663174 0.406301 0.692974 -0.595573 0.417663 0.709086 -0.568115 0.433728 0.740155 -0.513859 0.449382 0.762957 -0.464708 0.457193 0.77992 -0.427434 0.474244 0.805813 -0.354623 0.47657 0.812025 -0.336891 0.491432 0.836346 -0.242942 0.49212 0.836986 -0.239317 0.500508 0.853187 -0.146847 0.503607 0.855483 -0.120535 -0.493608 0.869685 0 -0.493608 0.869685 0 0.506367 0.862318 0 0.506367 0.862318 0 0.999973 -0.00736808 0 0.999973 -0.00736808 0 -7.45243e-08 1.30919e-07 -1 -1.55715e-07 1.14155e-07 -1 3.16485e-08 1.30385e-07 -1 -2.45252e-07 1.40271e-07 -1 -8.34725e-08 1.30712e-07 -1 -3.89047e-08 1.57588e-07 -1 0 0 -1 3.55677e-08 1.6634e-07 -1 -6.26483e-09 1.62774e-07 -1 -4.35794e-09 1.13229e-07 -1 -1.65013e-09 1.1442e-07 -1 -2.09059e-09 1.44961e-07 -1 -7.18772e-08 1.26641e-07 -1 -7.25475e-08 1.24176e-07 -1 0 1.60738e-07 -1 7.18841e-08 1.22767e-07 -1 0 4.05726e-07 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -1.12737e-07 2.1579e-06 -1 -1.06958e-07 2.27718e-06 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 1.05821e-08 1.83993e-07 -1 -4.51893e-06 5.1017e-07 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 4.51791e-06 5.10054e-07 -1 -5.00974e-07 1.48684e-07 -1 -6.27988e-07 1.43282e-07 -1 -8.54987e-07 1.38247e-07 -1 -1.38312e-06 1.334e-07 -1 -1.30676e-07 1.36087e-07 -1 6.24789e-07 -2.00529e-08 -1 4.63487e-07 1.48758e-08 -1 3.72505e-07 3.59316e-08 -1 3.13809e-07 5.07358e-08 -1 2.72752e-07 6.22312e-08 -1 2.42208e-07 7.18849e-08 -1 2.18566e-07 8.04439e-08 -1 -2.38538e-06 1.17382e-06 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -4.62923e-07 1.49979e-08 -1 -6.25818e-07 -2.02754e-08 -1 1.30628e-07 1.36082e-07 -1 1.36865e-06 1.33402e-07 -1 8.46193e-07 1.38243e-07 -1 6.21136e-07 1.43284e-07 -1 4.95519e-07 1.48679e-07 -1 -4.47737e-06 5.10161e-07 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 4.01318e-06 5.60984e-07 -1 -4.51421e-07 1.51534e-07 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 2.37513e-06 1.17126e-06 -1 -2.17134e-07 8.08075e-08 -1 -2.40765e-07 7.22404e-08 -1 -2.71293e-07 6.25821e-08 -1 -3.12477e-07 5.10441e-08 -1 -3.71327e-07 3.61971e-08 -1 4.26399e-08 1.28952e-07 -1 -4.98878e-07 1.55623e-07 -1 2.1368e-07 1.12833e-07 -1 4.16478e-08 1.58393e-07 -1 0 0 -1 -4.15169e-08 1.5523e-07 -1 7.40353e-09 1.55474e-07 -1 6.22441e-09 1.30712e-07 -1 0 1.32102e-07 -1 0 1.77058e-07 -1 9.56837e-08 1.32102e-07 -1 7.28718e-08 1.24097e-07 -1 -0.0494783 0.00086911 -0.998775 -0.0302078 0.000184813 -0.999544 -0.0495028 -0.000264206 -0.998774 -0.120484 0.00151413 -0.992714 -0.146891 0.000569311 -0.989152 -0.239304 0.00186642 -0.970943 -0.24268 0.00169806 -0.970105 -0.337094 0.00188048 -0.941469 -0.354647 0.00291127 -0.934996 -0.427745 0.00205154 -0.903897 -0.464744 0.00385263 -0.885437 -0.514368 0.00247051 -0.857566 -0.568072 0.00446626 -0.822966 -0.596074 0.00314011 -0.802924 -0.663043 0.00470519 -0.748566 -0.671424 0.00410345 -0.741062 -0.740982 0.00452855 -0.67151 -0.748446 0.00525595 -0.663175 -0.803192 0.00436759 -0.595704 -0.822934 0.00611341 -0.568104 -0.857948 0.0044692 -0.513717 -0.885488 0.00656035 -0.464616 -0.904005 0.0048524 -0.427495 -0.934998 0.00661387 -0.354591 -0.941522 0.00553298 -0.336905 -0.970014 0.00620057 -0.24297 -0.970917 0.00647196 -0.23933 -0.989164 0.00562601 -0.146707 -0.992689 0.00712963 -0.120488 -0.998782 0.00534034 -0.0490617 -0.999518 0.00610589 -0.0304354 -0.998776 0.00685912 -0.0489809 -0.992702 0.00499346 -0.120487 -0.98916 0.00645344 -0.146698 -0.970923 0.00538464 -0.23933 -0.969943 0.00566623 -0.243267 -0.941552 0.00598391 -0.336814 -0.935009 0.0048174 -0.354591 -0.904076 0.00619661 -0.427326 -0.885502 0.00425401 -0.464616 -0.857848 0.00601418 -0.513869 -0.822947 0.00394765 -0.568104 -0.803253 0.00544704 -0.595613 -0.748454 0.00388796 -0.663175 -0.740931 0.00452836 -0.671565 -0.671495 0.00410402 -0.740998 -0.663051 0.00339401 -0.748566 -0.595972 0.00414201 -0.802995 -0.568084 0.00247941 -0.822967 -0.514451 0.00381623 -0.857511 -0.464756 0.00182439 -0.885437 -0.427737 0.00317348 -0.903898 -0.354656 0.00142099 -0.934996 -0.337092 0.00223731 -0.941469 -0.24268 0.00126649 -0.970106 -0.239309 0.00105707 -0.970943 -0.1469 0.00122524 -0.989151 -0.120494 -4.25735e-05 -0.992714 -0.0239956 0.043299 -0.998774 -0.0149499 0.0262631 -0.999543 -0.0249764 0.0427322 -0.998774 -0.0589226 0.105086 -0.992716 -0.0729578 0.127504 -0.989151 -0.11805 0.2082 -0.970936 -0.119858 0.210999 -0.97011 -0.166941 0.292916 -0.941451 -0.17477 0.308523 -0.935024 -0.212076 0.371417 -0.903921 -0.229071 0.404466 -0.8854 -0.25509 0.446767 -0.857513 -0.280169 0.494188 -0.822972 -0.295243 0.517658 -0.803033 -0.327465 0.576608 -0.748525 -0.332191 0.583586 -0.740997 -0.366541 0.643933 -0.671564 -0.369664 0.650806 -0.663175 -0.397885 0.697905 -0.595496 -0.406159 0.715692 -0.568173 -0.425009 0.745068 -0.514044 -0.437062 0.770159 -0.464577 -0.447827 0.785379 -0.427353 -0.461751 0.813008 -0.354688 -0.465979 0.818153 -0.336881 -0.479641 0.843153 -0.242977 -0.479854 0.844056 -0.239393 -0.489722 0.859453 -0.146674 -0.490181 0.863247 -0.120531 -0.494789 0.867637 -0.048881 -0.494486 0.86867 -0.0299397 -0.493426 0.868396 -0.0491774 -0.492004 0.862209 -0.120531 -0.488974 0.859876 -0.146692 -0.480774 0.843533 -0.239393 -0.480119 0.842901 -0.242907 -0.465575 0.818349 -0.336964 -0.463319 0.812116 -0.354688 -0.446662 0.786023 -0.427389 -0.439078 0.769012 -0.464577 -0.423704 0.745909 -0.513902 -0.408031 0.714626 -0.568173 -0.396928 0.698383 -0.595575 -0.370865 0.650122 -0.663174 -0.366549 0.643926 -0.671566 -0.332186 0.58356 -0.74102 -0.328609 0.575957 -0.748525 -0.294457 0.518298 -0.802909 -0.281897 0.493205 -0.822972 -0.253849 0.447306 -0.8576 -0.230828 0.403466 -0.8854 -0.211134 0.372053 -0.90388 -0.176059 0.307789 -0.935024 -0.166589 0.293016 -0.941483 -0.120257 0.210825 -0.970098 -0.118752 0.2078 -0.970936 -0.0723826 0.127822 -0.989152 -0.0602758 0.104316 -0.992716 0.0255579 0.0424199 -0.998773 0.015265 0.0260704 -0.999544 0.0152686 0.0260768 -0.999543 0.0227988 0.046021 -0.99868 0.0401472 0.0685664 -0.996838 0.0614962 0.103613 -0.992715 0.0601428 0.104406 -0.992715 0.0745561 0.126615 -0.989146 0.120543 0.206748 -0.97094 0.122399 0.209512 -0.970115 0.170535 0.290858 -0.941445 0.178498 0.306475 -0.934993 0.216664 0.368795 -0.903906 0.233864 0.401633 -0.885437 0.2606 0.443583 -0.857509 0.286057 0.490724 -0.82302 0.301632 0.514024 -0.802993 0.334456 0.572646 -0.748476 0.339267 0.579434 -0.741049 0.374418 0.639468 -0.671485 0.377512 0.646259 -0.663199 0.406426 0.692914 -0.595556 0.414789 0.710804 -0.568074 0.434184 0.739806 -0.513976 0.446263 0.764745 -0.464774 0.457477 0.779793 -0.427362 0.471594 0.807422 -0.354497 0.475983 0.812406 -0.336804 0.489872 0.837232 -0.243039 0.490079 0.838214 -0.239207 0.500221 0.853387 -0.146661 0.500552 0.857261 -0.120629 0.505429 0.861474 -0.0490356 0.505052 0.86256 -0.0302004 0.504084 0.862264 -0.0489966 0.502413 0.856172 -0.120629 0.499501 0.853803 -0.146695 0.491035 0.837654 -0.239207 0.490332 0.836952 -0.243077 0.475573 0.812618 -0.33687 0.473155 0.806509 -0.354497 0.456281 0.780476 -0.427394 0.448284 0.763562 -0.464774 0.432843 0.740611 -0.513948 0.416672 0.709702 -0.568074 0.405488 0.693478 -0.595541 0.378709 0.645558 -0.6632 0.374326 0.639311 -0.671686 0.339326 0.579534 -0.740944 0.335591 0.571981 -0.748476 0.300739 0.514535 -0.803001 0.28778 0.489715 -0.82302 0.271141 0.463063 -0.843834 0.249941 0.426857 -0.869093 0.246036 0.461979 -0.852081 0.070271 0.120014 -0.990282 0.072661 0.129166 -0.988957 0.123727 0.204912 -0.970929 0.12399 0.207355 -0.970376 0.169156 0.292518 -0.94118 0.210583 0.376786 -0.902046 0.200394 0.342245 -0.917993 0.179792 0.305717 -0.934993 0.120925 0.206525 -0.97094 0.172016 0.293788 -0.940266 0.120936 0.206547 -0.970934 0.235629 0.400599 -0.885437 0.222857 0.380608 -0.897481 0.0494609 -0.000816288 -0.998776 0.0302072 -0.000184391 -0.999544 0.0495273 0.000328751 -0.998773 0.120483 -0.00160437 -0.992714 0.14695 -0.000529853 -0.989144 0.239307 -0.00191265 -0.970942 0.242671 -0.00172247 -0.970107 0.337104 -0.00185578 -0.941466 0.354644 -0.00300285 -0.934996 0.427777 -0.00197636 -0.903882 0.464742 -0.00398175 -0.885437 0.514409 -0.00237721 -0.857542 0.568075 -0.00459641 -0.822964 0.59598 -0.00307316 -0.802993 0.663142 -0.00480489 -0.748478 0.67155 -0.00411016 -0.740948 0.740848 -0.00453433 -0.671658 0.748445 -0.00537707 -0.663175 0.803337 -0.0043072 -0.595509 0.822933 -0.00628423 -0.568103 0.857847 -0.00436596 -0.513887 0.885404 -0.00675515 -0.464774 0.904116 -0.00474578 -0.427262 0.934995 -0.00674702 -0.354596 0.941525 -0.00548919 -0.336897 0.970015 -0.00623512 -0.242966 0.970918 -0.00654958 -0.239323 0.989165 -0.00554935 -0.1467 0.992687 -0.00729217 -0.120495 0.998782 -0.00520654 -0.049058 0.999525 -0.00610592 -0.0302169 0.998777 -0.00677379 -0.0489738 0.992701 -0.00513151 -0.120495 0.989161 -0.00640949 -0.146692 0.970925 -0.00545717 -0.239323 0.970004 -0.00568889 -0.243023 0.941462 -0.00594882 -0.337066 0.935006 -0.00493103 -0.354597 0.904077 -0.00612259 -0.427326 0.885418 -0.00438792 -0.464774 0.857834 -0.00591691 -0.513893 0.822947 -0.00406629 -0.568104 0.80336 -0.00537121 -0.595469 0.748454 -0.00394964 -0.663175 0.740798 -0.00452207 -0.671713 0.671488 -0.00409898 -0.741004 0.66315 -0.00346871 -0.748478 0.595958 -0.00409124 -0.803005 0.568087 -0.00258818 -0.822964 0.514419 -0.00374836 -0.857531 0.464755 -0.00193261 -0.885437 0.427712 -0.00311874 -0.90391 0.354653 -0.00149847 -0.934997 0.337086 -0.00222135 -0.941471 0.24269 -0.001289 -0.970103 0.239312 -0.00109734 -0.970942 0.146884 -0.0011945 -0.989153 0.120492 -3.08245e-05 -0.992714 0.494784 -0.867634 -0.0489866 0.494481 -0.86867 -0.030018 0.493425 -0.868396 -0.0491936 0.492002 -0.862208 -0.120545 0.488975 -0.859878 -0.146675 0.480774 -0.843533 -0.239393 0.480117 -0.842899 -0.242919 0.465577 -0.818354 -0.336949 0.46332 -0.812115 -0.354688 0.446689 -0.786064 -0.427286 0.439055 -0.768942 -0.464714 0.423687 -0.745849 -0.514002 0.408102 -0.714742 -0.567976 0.396955 -0.698434 -0.595497 0.37084 -0.650077 -0.663232 0.36652 -0.643876 -0.67163 0.332217 -0.583615 -0.740962 0.32861 -0.575947 -0.748532 0.294375 -0.518149 -0.803035 0.281892 -0.49321 -0.822971 0.253898 -0.447398 -0.857538 0.230798 -0.403407 -0.885435 0.211136 -0.372047 -0.903882 0.17609 -0.307838 -0.935002 0.166588 -0.293015 -0.941483 0.120258 -0.210827 -0.970098 0.118761 -0.207819 -0.970931 0.0723897 -0.127836 -0.98915 0.0602758 -0.104316 -0.992716 0.0239928 -0.0432943 -0.998774 0.0149453 -0.0262548 -0.999544 0.0249774 -0.042733 -0.998774 0.0589234 -0.105085 -0.992716 0.0729578 -0.127502 -0.989151 0.118061 -0.208217 -0.970931 0.119858 -0.210999 -0.97011 0.166939 -0.292913 -0.941453 0.174796 -0.308575 -0.935002 0.212074 -0.371423 -0.903919 0.229036 -0.40441 -0.885435 0.255086 -0.446761 -0.857517 0.280169 -0.49419 -0.822971 0.295247 -0.517665 -0.803027 0.327461 -0.576601 -0.748532 0.332249 -0.583672 -0.740903 0.366497 -0.643836 -0.671681 0.369643 -0.650759 -0.663232 0.397895 -0.69791 -0.595484 0.406222 -0.715812 -0.567976 0.424998 -0.745072 -0.514047 0.437021 -0.7701 -0.464714 0.447823 -0.785374 -0.427366 0.46175 -0.813009 -0.354688 0.465978 -0.818154 -0.336882 0.479643 -0.843158 -0.242957 0.479855 -0.844056 -0.239393 0.48972 -0.85945 -0.146695 0.49018 -0.863245 -0.120545 -0.504189 -0.862202 -0.0490048 -0.505057 -0.862559 -0.0301565 -0.505703 -0.861321 -0.048886 -0.500182 -0.857491 -0.120532 -0.500371 -0.8533 -0.146658 -0.48987 -0.838286 -0.239383 -0.489765 -0.837293 -0.243044 -0.476049 -0.812373 -0.336791 -0.471275 -0.807602 -0.354512 -0.457698 -0.779686 -0.42732 -0.445898 -0.76501 -0.464688 -0.434451 -0.7397 -0.513903 -0.414418 -0.710971 -0.568136 -0.406606 -0.692861 -0.595495 -0.377319 -0.646432 -0.66314 -0.374374 -0.639376 -0.671597 -0.339323 -0.579515 -0.740961 -0.334238 -0.572713 -0.748522 -0.301802 -0.514002 -0.802943 -0.285826 -0.490952 -0.822964 -0.260824 -0.443547 -0.857459 -0.2336 -0.401787 -0.885437 -0.216852 -0.368785 -0.903866 -0.178279 -0.306529 -0.935017 -0.170584 -0.290852 -0.941439 -0.122327 -0.209515 -0.970124 -0.120449 -0.206804 -0.97094 -0.0746534 -0.126611 -0.989139 -0.0599707 -0.104508 -0.992714 -0.0257231 -0.0424194 -0.998769 -0.0152654 -0.026071 -0.999544 -0.0245858 -0.04288 -0.998778 -0.0614133 -0.103664 -0.992715 -0.0739897 -0.126877 -0.989155 -0.121201 -0.206364 -0.97094 -0.122783 -0.209363 -0.970099 -0.170175 -0.290912 -0.941494 -0.179675 -0.305713 -0.935017 -0.215729 -0.369301 -0.903924 -0.23551 -0.400669 -0.885437 -0.25946 -0.444154 -0.857559 -0.287703 -0.489853 -0.822964 -0.30079 -0.51447 -0.803023 -0.33549 -0.57198 -0.748522 -0.339333 -0.579542 -0.740935 -0.374362 -0.639367 -0.671612 -0.378649 -0.645654 -0.663141 -0.405514 -0.693362 -0.595657 -0.416516 -0.709743 -0.568136 -0.432939 -0.740543 -0.513966 -0.448162 -0.763686 -0.464688 -0.456405 -0.780481 -0.427251 -0.473035 -0.806572 -0.354512 -0.475589 -0.812573 -0.336957 -0.490283 -0.836946 -0.243193 -0.49094 -0.83766 -0.239383 -0.499552 -0.853771 -0.146705 -0.502279 -0.856264 -0.120533 0.494704 -0.869061 0 0.494704 -0.869061 0 -0.505287 -0.862951 0 -0.505287 -0.862951 0 -0.999981 0.00610871 0 -0.999981 0.00610871 0 0.000494801 0.0496536 -0.998766 0 0.0302128 -0.999544 0 0.0302128 -0.999544 -0.000494801 0.0496536 -0.998766 0.000684072 0.120467 -0.992717 -0.000293283 0.147021 -0.989133 0.000380279 0.242419 -0.970172 0.00020952 0.239367 -0.970929 -0.000159673 0.337155 -0.941449 0.000685584 0.354593 -0.935021 -0.000523143 0.427966 -0.903795 0.000944742 0.464766 -0.885433 -0.000641376 0.514554 -0.857458 0.000944334 0.5681 -0.822959 -0.000485331 0.596108 -0.802904 0.000637122 0.663063 -0.748564 0 0.671479 -0.741024 0 0.74091 -0.671604 0.000694175 0.748474 -0.663164 -0.000540241 0.803451 -0.595371 0.00109957 0.822957 -0.568102 -0.000798265 0.857948 -0.513735 0.00119618 0.885518 -0.464604 -0.000696587 0.904073 -0.427378 0.000951246 0.935021 -0.354591 -0.000238206 0.941608 -0.33671 0.000283057 0.96999 -0.243145 0.000581864 0.970941 -0.239319 -0.000441901 0.989185 -0.14667 0.00114767 0.992714 -0.120492 -0.0008198 0.998805 -0.0488686 0 0.999543 -0.0302205 0 0.999543 -0.0302205 0.000819801 0.998805 -0.0488686 -0.00114767 0.992714 -0.120492 0.000441902 0.989185 -0.14667 -0.000581865 0.970941 -0.239319 -0.000283057 0.96999 -0.243145 0.000238207 0.941608 -0.33671 -0.000951248 0.935021 -0.354591 0.000696588 0.904073 -0.427378 -0.00119618 0.885518 -0.464604 0.000798266 0.857948 -0.513735 -0.00109957 0.822957 -0.568102 0.000540241 0.803451 -0.595371 -0.000694174 0.748474 -0.663164 0 0.74091 -0.671604 0 0.671479 -0.741024 -0.000637124 0.663063 -0.748564 0.000485331 0.596108 -0.802904 -0.000944334 0.5681 -0.822959 0.000641376 0.514554 -0.857458 -0.000944741 0.464766 -0.885433 0.000523143 0.427966 -0.903795 -0.000685584 0.354593 -0.935021 0.000159673 0.337155 -0.941449 -0.000209521 0.239367 -0.970929 -0.000380279 0.242419 -0.970172 0.000293284 0.147021 -0.989133 -0.000684072 0.120467 -0.992717 0 0.120467 -0.992717 0 0.239367 -0.970929 0 0.120467 -0.992717 0 0.354593 -0.935021 0 0.239367 -0.970929 0 0.464766 -0.885434 0 0.354593 -0.935021 0 0.5681 -0.82296 0 0.464766 -0.885434 0 0.663063 -0.748564 0 0.5681 -0.82296 0 0.748474 -0.663164 0 0.663063 -0.748564 0 0.822958 -0.568103 0 0.748474 -0.663164 0 0.885518 -0.464604 0 0.822958 -0.568103 0 0.935021 -0.354591 0 0.885518 -0.464604 0 0.970941 -0.239319 0 0.935021 -0.354591 0 0.992714 -0.120492 0 0.970941 -0.239319 0 0.992714 -0.120492 0.0496529 -0.000494588 -0.998766 0.0302154 1.30646e-07 -0.999543 0.0302051 0 -0.999544 0.0496532 0.000494986 -0.998766 0.120492 -0.000684326 -0.992714 0.147021 0.000291796 -0.989133 0.242474 -0.000383258 -0.970158 0.239317 -0.000206603 -0.970941 0.337157 0.00016396 -0.941448 0.354593 -0.000680943 -0.935021 0.42787 0.000527137 -0.90384 0.464766 -0.000944515 -0.885433 0.514554 0.00064163 -0.857458 0.5681 -0.00094403 -0.822959 0.596108 0.00048564 -0.802904 0.66317 -0.00063862 -0.748469 0.671607 0 -0.740908 0.740906 0 -0.671609 0.74847 -0.000694256 -0.663168 0.803327 0.000537305 -0.595537 0.822957 -0.00111296 -0.568102 0.857949 0.00078431 -0.513734 0.885435 -0.00120426 -0.464761 0.90417 0.000706938 -0.427172 0.935021 -0.000935644 -0.354591 0.941527 0.000238868 -0.336937 0.970052 -0.000285058 -0.242895 0.970939 -0.000563785 -0.239326 0.989186 0.000460432 -0.146668 0.992714 -0.00112891 -0.120492 0.998792 0.000831691 -0.0491236 0.999544 2.75707e-09 -0.0302052 0.999544 0 -0.0302053 0.998792 -0.000831683 -0.0491238 0.992714 0.00112897 -0.120492 0.989186 -0.000460391 -0.146668 0.970939 0.000563876 -0.239326 0.970052 0.000285143 -0.242895 0.941527 -0.000238761 -0.336937 0.935021 0.000935774 -0.354591 0.90417 -0.00070681 -0.427172 0.885435 0.0012044 -0.464761 0.857949 -0.000784159 -0.513735 0.822957 0.00111315 -0.568102 0.803327 -0.000537139 -0.595537 0.74847 0.000694459 -0.663168 0.740906 1.8751e-07 -0.671609 0.671606 2.06857e-07 -0.740908 0.66317 0.00063883 -0.748469 0.596108 -0.000485434 -0.802904 0.5681 0.000944253 -0.822959 0.514554 -0.000641419 -0.857458 0.464766 0.00094473 -0.885433 0.42787 -0.000526927 -0.90384 0.354593 0.00068117 -0.935021 0.337161 -0.000163556 -0.941447 0.239317 0.00020704 -0.970941 0.242474 0.000383674 -0.970158 0.14702 -0.000291379 -0.989133 0.120492 0.00068474 -0.992714 0.120492 0 -0.992714 0.239317 0 -0.970942 0.120492 0 -0.992714 0.354593 0 -0.935021 0.239317 0 -0.970942 0.464766 0 -0.885434 0.354593 0 -0.935021 0.5681 0 -0.82296 0.464766 0 -0.885434 0.66317 0 -0.748469 0.5681 0 -0.82296 0.748471 0 -0.663168 0.66317 0 -0.748469 0.822958 0 -0.568103 0.748471 0 -0.663168 0.885436 0 -0.464761 0.822958 0 -0.568103 0.935021 0 -0.354591 0.885436 0 -0.464761 0.970939 0 -0.239326 0.935021 0 -0.354591 0.992714 0 -0.120492 0.970939 0 -0.239326 0.992714 0 -0.120492 -0.000495121 -0.0496661 -0.998766 0 -0.0302128 -0.999544 0 -0.0302128 -0.999544 0.000495121 -0.0496661 -0.998766 -0.000683191 -0.120491 -0.992714 0.000293284 -0.147021 -0.989133 -0.000380279 -0.242419 -0.970172 -0.000206813 -0.239319 -0.970941 0.000163737 -0.337154 -0.941449 -0.000684521 -0.354658 -0.934996 0.000521521 -0.427869 -0.90384 -0.000950655 -0.464766 -0.885433 0.000638282 -0.514661 -0.857394 -0.000944334 -0.5681 -0.822959 0.000485331 -0.596108 -0.802904 -0.000637189 -0.663066 -0.74856 0 -0.671484 -0.741019 0 -0.740906 -0.671609 -0.000694256 -0.74847 -0.663168 0.000540241 -0.803451 -0.595371 -0.00109957 -0.822957 -0.568102 0.00079196 -0.857838 -0.51392 -0.00120402 -0.885432 -0.464767 0.000707513 -0.90417 -0.427172 -0.000939096 -0.93509 -0.354409 0.000238207 -0.941608 -0.33671 -0.000283057 -0.96999 -0.243145 -0.000581865 -0.970941 -0.239319 0.000441902 -0.989185 -0.14667 -0.00113523 -0.992689 -0.120697 0.000831276 -0.998793 -0.0491142 0 -0.999544 -0.0302051 0 -0.999544 -0.0302051 -0.000831275 -0.998793 -0.0491142 0.00113523 -0.992689 -0.120697 -0.000441901 -0.989185 -0.14667 0.000581864 -0.970941 -0.239319 0.000283057 -0.96999 -0.243145 -0.000238206 -0.941608 -0.33671 0.000939095 -0.93509 -0.354409 -0.000707513 -0.90417 -0.427172 0.00120402 -0.885432 -0.464767 -0.000791959 -0.857838 -0.51392 0.00109957 -0.822957 -0.568102 -0.000540241 -0.803451 -0.595371 0.000694256 -0.74847 -0.663168 0 -0.740906 -0.671609 0 -0.671484 -0.741019 0.000637188 -0.663067 -0.74856 -0.000485331 -0.596108 -0.802904 0.000944334 -0.5681 -0.822959 -0.000638281 -0.514661 -0.857394 0.000950653 -0.464766 -0.885433 -0.000521521 -0.427869 -0.90384 0.00068452 -0.354658 -0.934996 -0.000163737 -0.337154 -0.941449 0.000206814 -0.239319 -0.970941 0.000380279 -0.242419 -0.970172 -0.000293283 -0.147021 -0.989133 0.000683191 -0.120491 -0.992714 0 -0.120491 -0.992714 0 -0.239319 -0.970941 0 -0.120491 -0.992714 0 -0.354658 -0.934996 0 -0.239319 -0.970941 0 -0.464766 -0.885434 0 -0.354658 -0.934996 0 -0.5681 -0.82296 0 -0.464766 -0.885434 0 -0.663067 -0.74856 0 -0.5681 -0.82296 0 -0.748471 -0.663168 0 -0.663067 -0.74856 0 -0.822958 -0.568103 0 -0.748471 -0.663168 0 -0.885433 -0.464767 0 -0.822958 -0.568103 0 -0.93509 -0.354409 0 -0.885433 -0.464767 0 -0.970941 -0.239319 0 -0.93509 -0.354409 0 -0.992689 -0.120698 0 -0.970941 -0.239319 0 -0.992689 -0.120698 -0.999544 2.74446e-09 -0.0302052 -0.999544 0 -0.0302053 -0.998793 -0.000930129 -0.0491001 -0.992714 0.00126493 -0.120485 -0.989187 -0.000514042 -0.14666 -0.970939 0.000631099 -0.239326 -0.970048 0.000318037 -0.242912 -0.94153 -0.000266335 -0.336929 -0.935023 0.00104081 -0.354584 -0.904185 -0.000786386 -0.427141 -0.885432 0.00133574 -0.464767 -0.857971 -0.000868148 -0.513698 -0.822954 0.00123059 -0.568107 -0.803342 -0.000591827 -0.595517 -0.748478 0.000764482 -0.663159 -0.740915 2.05344e-07 -0.671599 -0.671602 2.26864e-07 -0.740912 -0.663166 0.000697718 -0.748472 -0.596137 -0.000529732 -0.802883 -0.568002 0.00103263 -0.823026 -0.514589 -0.000688987 -0.857437 -0.464848 0.00102768 -0.88539 -0.427905 -0.000569338 -0.903824 -0.354593 0.000735642 -0.935021 -0.337169 -0.000176004 -0.941444 -0.239319 0.000222748 -0.970941 -0.242452 0.000411377 -0.970163 -0.147039 -0.00031225 -0.989131 -0.120493 0.000731986 -0.992714 -0.0496864 -0.000528167 -0.998765 -0.03022 0 -0.999543 -0.0302099 1.30652e-07 -0.999544 -0.049638 0.000479767 -0.998767 -0.120493 -0.000662887 -0.992714 -0.14701 0.000282287 -0.989135 -0.24249 -0.000370964 -0.970154 -0.239319 -0.000199559 -0.970941 -0.337149 0.000158345 -0.941451 -0.354593 -0.000656868 -0.935021 -0.427855 0.000507929 -0.903848 -0.464848 -0.000912811 -0.88539 -0.514531 0.000610511 -0.857471 -0.568002 -0.00091208 -0.823026 -0.596096 0.000466153 -0.802913 -0.663166 -0.000612674 -0.748472 -0.671602 0 -0.740912 -0.740915 0 -0.671599 -0.748478 -0.000663634 -0.663159 -0.803314 0.000513432 -0.595555 -0.822954 -0.00106253 -0.568107 -0.857939 0.000748127 -0.51375 -0.885432 -0.00114751 -0.464767 -0.904164 0.00067368 -0.427185 -0.935024 -0.000890095 -0.354584 -0.941526 0.000227114 -0.336941 -0.970051 -0.000270978 -0.242901 -0.970939 -0.00053616 -0.239326 -0.989185 0.000436704 -0.146671 -0.992715 -0.00107287 -0.120485 -0.998793 0.000788773 -0.0491068 -0.992715 0 -0.120485 -0.970939 0 -0.239326 -0.992715 0 -0.120485 -0.935024 0 -0.354585 -0.970939 0 -0.239326 -0.885433 0 -0.464767 -0.935024 0 -0.354585 -0.822954 0 -0.568108 -0.885433 0 -0.464767 -0.748478 0 -0.663159 -0.822954 0 -0.568108 -0.663166 0 -0.748472 -0.748478 0 -0.663159 -0.568003 0 -0.823027 -0.663166 0 -0.748472 -0.464848 0 -0.88539 -0.568003 0 -0.823027 -0.354593 0 -0.935021 -0.464848 0 -0.88539 -0.239319 0 -0.970941 -0.354593 0 -0.935021 -0.120493 0 -0.992714 -0.239319 0 -0.970941 -0.120493 0 -0.992714 -1 0 0 -1 0 0 0 1 0 0 1 0 0.996491 0.0377925 -0.0746835 0.998658 0 -0.0517878 0.996491 -0.0377926 -0.0746833 0.996829 -0.0569787 -0.0555512 0.991194 -0.113851 -0.0676229 0.977228 -0.112247 -0.180071 0.977218 -0.112146 -0.18019 0.948507 -0.108851 -0.297466 0.948494 -0.108799 -0.297526 0.906047 -0.10393 -0.410217 0.906047 -0.103931 -0.410216 0.850288 -0.0975346 -0.517202 0.850342 -0.0976415 -0.517092 0.78214 -0.0898101 -0.616596 0.782109 -0.0897614 -0.616642 0.702589 -0.080635 -0.707012 0.702564 -0.0806017 -0.707041 0.612895 -0.0703144 -0.787029 0.612921 -0.0703438 -0.787007 0.514085 -0.0590006 -0.855707 0.514101 -0.0590162 -0.855697 0.408015 -0.0468381 -0.911773 0.407968 -0.0467944 -0.911796 0.295657 -0.0339122 -0.954692 0.295707 -0.0339548 -0.954675 0.17904 -0.0205585 -0.983627 0.179006 -0.0205314 -0.983634 0.0595351 -0.00682845 -0.998203 0.0603251 -0.00975319 -0.998131 0.996829 0.0569691 -0.0555609 0.991296 0.113047 -0.0674766 0.991278 0.11388 -0.0663213 0.983814 0.17023 -0.0559609 0.969219 0.167705 -0.180249 0.958063 0.222777 -0.180238 0.929986 0.216249 -0.297259 0.916134 0.268953 -0.297258 0.875012 0.25688 -0.410325 0.858915 0.306438 -0.410318 0.806163 0.287618 -0.517085 0.788433 0.333153 -0.51709 0.725192 0.30643 -0.616601 0.706475 0.347422 -0.616597 0.634588 0.312071 -0.707043 0.615756 0.34776 -0.707042 0.537125 0.303352 -0.787067 0.51896 0.333471 -0.787069 0.435398 0.279776 -0.85566 0.418679 0.304227 -0.85566 0.332155 0.241356 -0.911822 0.317847 0.259914 -0.911821 0.230394 0.1884 -0.954685 0.219252 0.201259 -0.954685 0.132733 0.12184 -0.983635 0.125581 0.129201 -0.983634 0.0422105 0.0434274 -0.998164 0.0422627 0.0436393 -0.998153 0.0394424 0.0455246 -0.998184 0.0395609 0.0464762 -0.998136 0.0366295 0.0475092 -0.998199 0.0366214 0.049061 -0.998124 0.0337733 0.0493778 -0.998209 0.0334667 0.0514189 -0.998116 0.0308567 0.0511797 -0.998213 0.0301185 0.0534717 -0.998115 0.0278974 0.0528608 -0.998212 0.0266036 0.0552478 -0.998118 0.0248675 0.0544634 -0.998206 0.0229538 0.0567016 -0.998127 0.0217936 0.0559694 -0.998195 0.019204 0.0578453 -0.998141 0.0186452 0.057386 -0.998178 0.0154167 0.0586431 -0.99816 0.0458122 0.174264 -0.983633 0.045808 0.17426 -0.983634 0.0756606 0.287824 -0.95469 0.0756483 0.287813 -0.954694 0.104395 0.397184 -0.911782 0.104386 0.397177 -0.911786 0.131547 0.500522 -0.855671 0.131564 0.500535 -0.855661 0.156804 0.596559 -0.787103 0.156827 0.596573 -0.787087 0.179805 0.683981 -0.706994 0.17973 0.68394 -0.707053 0.200095 0.761435 -0.616586 0.200185 0.761476 -0.616507 0.217605 0.82774 -0.517199 0.217644 0.827753 -0.517162 0.23191 0.88201 -0.410214 0.231855 0.881998 -0.410271 0.242728 0.923361 -0.29747 0.242692 0.923357 -0.29751 0.250048 0.951345 -0.180054 0.249983 0.951347 -0.18013 0.253693 0.965464 -0.059322 0.242871 0.967369 -0.0721823 0.979441 0.187554 -0.0742918 0.972731 0.226086 -0.0517726 0.958106 0.222687 -0.18012 0.943805 0.27711 -0.180117 0.916114 0.26898 -0.297296 0.899259 0.320855 -0.297297 0.858898 0.306454 -0.410341 0.83998 0.355047 -0.410336 0.788336 0.333218 -0.517197 0.76806 0.377602 -0.517204 0.706577 0.347375 -0.616506 0.685599 0.387133 -0.616508 0.615831 0.347737 -0.706987 0.594955 0.382365 -0.706983 0.518894 0.333482 -0.787108 0.498999 0.362573 -0.787109 0.418698 0.304226 -0.855651 0.4007 0.327566 -0.855652 0.317949 0.259919 -0.911784 0.302535 0.277711 -0.911784 0.219248 0.201258 -0.954686 0.207425 0.213423 -0.954686 0.125567 0.129198 -0.983637 0.117974 0.136166 -0.983637 0.962398 0.261109 -0.0749223 0.958033 0.281359 -0.0548732 0.943772 0.277171 -0.180198 0.926399 0.330622 -0.180208 0.899207 0.320917 -0.297387 0.879482 0.371583 -0.297384 0.840102 0.354945 -0.410175 0.818479 0.402306 -0.410173 0.768133 0.377559 -0.517127 0.745232 0.420962 -0.517127 0.685448 0.387192 -0.616638 0.662299 0.425574 -0.616642 0.595028 0.382347 -0.706932 0.572231 0.415693 -0.70693 0.499093 0.362562 -0.787054 0.477577 0.390464 -0.787056 0.400646 0.327566 -0.855677 0.381251 0.349948 -0.855677 0.302554 0.277713 -0.911776 0.286249 0.294487 -0.911778 0.20746 0.21343 -0.954677 0.194935 0.224927 -0.954677 0.118022 0.136181 -0.983629 0.110031 0.142713 -0.983629 0.940347 0.333337 -0.0680794 0.93984 0.335315 -0.0653074 0.926451 0.330538 -0.180092 0.906091 0.382839 -0.180095 0.879473 0.371593 -0.297398 0.85677 0.421305 -0.297399 0.818341 0.402408 -0.410348 0.794008 0.448522 -0.410342 0.745225 0.420966 -0.517134 0.720072 0.462681 -0.51713 0.662314 0.425569 -0.616629 0.636844 0.462811 -0.616632 0.572053 0.415725 -0.707055 0.54745 0.447629 -0.707055 0.47754 0.390466 -0.787078 0.454408 0.417163 -0.787076 0.381189 0.349945 -0.855707 0.360674 0.371057 -0.855705 0.286246 0.294486 -0.911779 0.268946 0.310363 -0.91178 0.194905 0.224919 -0.954685 0.181741 0.235683 -0.954685 0.110057 0.142722 -0.983625 0.101748 0.148759 -0.983625 0.919648 0.388647 -0.0565839 0.912031 0.403376 -0.0740744 0.896163 0.440679 -0.0519072 0.878923 0.471022 -0.0750498 0.869482 0.490968 -0.0543312 0.841068 0.536534 -0.0688113 0.839518 0.539507 -0.064356 0.807695 0.58681 -0.0572927 0.795811 0.578176 -0.179992 0.761539 0.622625 -0.17999 0.739121 0.604297 -0.297534 0.703331 0.645596 -0.297542 0.671855 0.616704 -0.410228 0.635636 0.653977 -0.410222 0.596527 0.61374 -0.517184 0.560435 0.646866 -0.517182 0.515512 0.595014 -0.616609 0.480765 0.623428 -0.616606 0.431899 0.560062 -0.706961 0.399258 0.583775 -0.706965 0.348269 0.509222 -0.787021 0.318612 0.528287 -0.787019 0.267297 0.443203 -0.855642 0.241557 0.457738 -0.855644 0.191643 0.363155 -0.911807 0.170545 0.373529 -0.911806 0.123596 0.2707 -0.954697 0.107947 0.277315 -0.954696 0.0653593 0.167908 -0.983634 0.0556771 0.171363 -0.983634 0.797906 0.598269 -0.0736281 0.773066 0.632202 -0.0518652 0.761446 0.622699 -0.180129 0.724726 0.665076 -0.180128 0.703439 0.645541 -0.297408 0.665418 0.684663 -0.297416 0.635604 0.653987 -0.410255 0.597213 0.689218 -0.410262 0.560506 0.646857 -0.517116 0.522693 0.67778 -0.517113 0.480778 0.623428 -0.616596 0.444308 0.649924 -0.616595 0.399064 0.583744 -0.707101 0.365125 0.605553 -0.707099 0.31852 0.52826 -0.787074 0.287813 0.545601 -0.787073 0.241438 0.457687 -0.855705 0.214982 0.470694 -0.855704 0.170623 0.373573 -0.911774 0.149013 0.382704 -0.911775 0.107989 0.277344 -0.954682 0.0919745 0.28306 -0.954682 0.0556823 0.171367 -0.983632 0.750159 0.656966 -0.075212 0.735621 0.675241 -0.0539579 0.724625 0.665147 -0.180273 0.685482 0.70542 -0.180268 0.665343 0.684696 -0.297506 0.625179 0.721555 -0.297505 0.59717 0.689229 -0.410307 0.556832 0.722209 -0.410307 0.522584 0.677788 -0.517213 0.483043 0.706513 -0.517213 0.444356 0.649928 -0.616555 0.406596 0.674192 -0.616558 0.365213 0.605573 -0.707037 0.330021 0.62545 -0.707035 0.287906 0.545634 -0.787016 0.256321 0.561161 -0.787019 0.215003 0.470705 -0.855693 0.187705 0.482239 -0.855694 0.148945 0.382661 -0.911804 0.126872 0.390535 -0.911804 0.091951 0.283041 -0.95469 0.698675 0.712051 -0.0695414 0.695585 0.715643 -0.0633799 0.685586 0.705356 -0.180125 0.644175 0.743368 -0.18012 0.62525 0.721528 -0.297421 0.583001 0.756072 -0.29743 0.556882 0.7222 -0.410256 0.514781 0.752787 -0.410259 0.483136 0.706511 -0.517128 0.441969 0.732969 -0.517127 0.406521 0.674182 -0.616619 0.36742 0.696264 -0.616619 0.330057 0.625461 -0.707009 0.293826 0.643276 -0.70701 0.256318 0.56116 -0.78702 0.223824 0.574893 -0.787021 0.187764 0.482273 -0.855662 0.159947 0.492199 -0.855662 0.126921 0.39057 -0.911782 0.653694 0.754536 -0.0579641 0.642682 0.762631 -0.0731715 0.609831 0.790821 -0.0520285 0.583071 0.808921 -0.0753306 0.563678 0.824257 -0.0535492 0.520411 0.851022 -0.0702432 0.515463 0.854633 -0.0624555 0.465793 0.882944 -0.0587097 0.458955 0.869982 -0.180253 0.408576 0.894747 -0.180257 0.396579 0.868474 -0.297454 0.346307 0.889714 -0.297458 0.330801 0.849876 -0.410221 0.281814 0.867352 -0.410222 0.264472 0.813979 -0.517198 0.454494 0.887775 -0.0727376 0.41489 0.908371 -0.0522372 0.408659 0.894729 -0.180158 0.356877 0.916615 -0.180157 0.346402 0.889712 -0.297352 0.295045 0.908037 -0.297349 0.281826 0.867354 -0.410209 0.38599 0.919412 -0.0754515 0.362286 0.930551 -0.0531358 0.356861 0.916617 -0.180176 0.303865 0.935524 -0.180171 0.294935 0.908033 -0.297471 0.315397 0.946314 -0.070809 0.308432 0.949262 -0.0614105 0.303965 0.935514 -0.180052 0.198331 0.978733 -0.0524058 0.169034 0.982718 -0.0754492 0.142198 0.988425 -0.0528709 0.0942457 0.992979 -0.0714849 0.0852331 0.99453 -0.0603847 0.0283806 0.997774 -0.0603447 0.027968 0.983266 -0.180014 -0.0280786 0.983263 -0.180014 -0.0272526 0.954337 -0.297486 -0.08176 0.951219 -0.297485 -0.0780952 0.908581 -0.410343 -0.129718 0.902658 -0.410343 -0.121751 0.847217 -0.517108 -0.16999 0.83887 -0.517107 -0.156371 0.771662 -0.616511 -0.200111 0.761495 -0.616508 -0.179745 0.683996 -0.706994 -0.218479 0.672626 -0.706995 -0.190576 0.586723 -0.787043 -0.223812 0.574863 -0.787046 -0.187745 0.482223 -0.855694 -0.214989 0.47071 -0.855693 -0.170593 0.373506 -0.911806 -0.191636 0.363158 -0.911807 -0.138904 0.263228 -0.954682 -0.153687 0.254877 -0.954682 -0.0930412 0.154302 -0.983633 -0.101722 0.148722 -0.983633 -0.0337733 0.049378 -0.998209 -0.0366216 0.0490612 -0.998124 -0.0366296 0.0475092 -0.998199 -0.0395609 0.0464762 -0.998136 -0.0394424 0.0455246 -0.998184 -0.0422627 0.0436393 -0.998153 -0.0422105 0.0434274 -0.998164 -0.0444868 0.040831 -0.998175 -0.13276 0.12185 -0.98363 -0.132757 0.121839 -0.983631 -0.219238 0.201206 -0.954699 -0.21925 0.20126 -0.954685 -0.302546 0.277721 -0.911777 -0.302543 0.277702 -0.911784 -0.381216 0.349916 -0.855706 -0.381225 0.349978 -0.855677 -0.454462 0.417212 -0.787019 -0.454453 0.417112 -0.787077 -0.521002 0.478193 -0.707028 -0.521002 0.478205 -0.70702 -0.580025 0.53238 -0.616557 -0.580027 0.532353 -0.616578 -0.630548 0.578721 -0.517196 -0.630542 0.578756 -0.517164 -0.671871 0.61669 -0.410223 -0.671865 0.616713 -0.4102 -0.70336 0.645623 -0.297414 -0.703407 0.645511 -0.297548 -0.724707 0.665059 -0.180266 -0.724648 0.665162 -0.180127 -0.735478 0.675103 -0.0575245 -0.775098 0.628571 -0.0642001 0.0189009 0.997245 -0.0717308 -0.0285802 0.998202 -0.0526858 -0.0281519 0.983245 -0.180102 -0.0840638 0.980049 -0.180106 -0.0815975 0.951295 -0.297287 -0.135829 0.945079 -0.29728 -0.129731 0.902649 -0.410359 -0.181166 0.893748 -0.410357 -0.170033 0.838827 -0.517164 -0.21761 0.827762 -0.517162 -0.200168 0.761416 -0.616586 -0.24322 0.748771 -0.616592 -0.218483 0.672618 -0.707001 -0.256549 0.659042 -0.706998 -0.223796 0.574904 -0.78702 -0.25632 0.561159 -0.78702 -0.214995 0.470688 -0.855704 -0.241511 0.457651 -0.855703 -0.191638 0.363145 -0.911812 -0.212057 0.351615 -0.911811 -0.153689 0.254835 -0.954693 -0.167968 0.24566 -0.954693 -0.101724 0.148775 -0.983625 -0.110045 0.14273 -0.983625 -0.0565596 0.995548 -0.0754045 -0.0853951 0.994963 -0.0525037 -0.0841137 0.980033 -0.180167 -0.140063 0.973611 -0.180176 -0.135949 0.945015 -0.297431 -0.189596 0.935729 -0.29743 -0.181101 0.893801 -0.410272 -0.231904 0.881986 -0.410271 -0.217638 0.82773 -0.517201 -0.264445 0.813986 -0.5172 -0.243246 0.748732 -0.61663 -0.285717 0.733577 -0.616628 -0.256624 0.658882 -0.70712 -0.293779 0.643178 -0.707118 -0.256318 0.561164 -0.787017 -0.287846 0.545666 -0.787015 -0.241485 0.45778 -0.855642 -0.267255 0.44323 -0.855641 -0.212051 0.351677 -0.911788 -0.231785 0.33899 -0.91179 -0.167968 0.245656 -0.954694 -0.181724 0.235661 -0.954694 -0.110043 0.142704 -0.983629 -0.118001 0.136198 -0.983629 -0.131795 0.988662 -0.0719564 -0.142144 0.988046 -0.059672 -0.140067 0.97361 -0.180181 -0.195398 0.964029 -0.180186 -0.189655 0.935693 -0.297506 -0.242725 0.923348 -0.29751 -0.231862 0.882023 -0.410213 -0.281814 0.867358 -0.410209 -0.264465 0.813961 -0.517229 -0.310602 0.797497 -0.517228 -0.285711 0.733587 -0.616619 -0.326971 0.716149 -0.616621 -0.293721 0.643324 -0.70701 -0.330034 0.62547 -0.707011 -0.287872 0.545567 -0.787075 -0.318576 0.528225 -0.787075 -0.267266 0.443149 -0.85568 -0.292123 0.42718 -0.855676 -0.231787 0.338948 -0.911805 -0.250728 0.325189 -0.911805 -0.181726 0.235695 -0.954685 -0.194918 0.224908 -0.954685 -0.117994 0.136148 -0.983637 -0.125573 0.129193 -0.983637 -0.206253 0.97659 -0.0610807 -0.198059 0.97739 -0.0740303 -0.195356 0.964048 -0.180132 -0.250044 0.951331 -0.180129 -0.242695 0.92337 -0.297469 -0.295034 0.908001 -0.29747 -0.281824 0.867347 -0.410224 -0.330769 0.849887 -0.410224 -0.310459 0.7977 -0.517 -0.355488 0.778678 -0.517 -0.326955 0.716179 -0.616593 -0.367427 0.696278 -0.616599 -0.330045 0.625437 -0.707035 -0.365157 0.605606 -0.707038 -0.318557 0.528322 -0.787018 -0.348242 0.50924 -0.787021 -0.292123 0.427177 -0.855677 -0.316 0.409827 -0.855678 -0.250727 0.325173 -0.911811 -0.2689 0.31031 -0.911812 -0.194922 0.224939 -0.954677 -0.207425 0.213463 -0.954677 -0.125582 0.129237 -0.98363 -0.253784 0.965814 -0.0528928 -0.279315 0.95723 -0.075454 -0.308592 0.949753 -0.0523456 -0.35096 0.933578 -0.0725146 -0.362166 0.930245 -0.0589971 -0.420849 0.904993 -0.0622414 -0.414354 0.907197 -0.0728326 -0.465933 0.88321 -0.0533566 -0.458967 0.870005 -0.180114 -0.508034 0.842295 -0.180114 -0.493103 0.81754 -0.297451 -0.53888 0.788119 -0.297451 -0.514741 0.752815 -0.410259 -0.556846 0.722227 -0.410256 -0.522621 0.677837 -0.517112 -0.560461 0.646895 -0.517117 -0.515566 0.595076 -0.616503 -0.548723 0.564645 -0.616506 -0.492852 0.507152 -0.707032 -0.4877 0.869737 -0.0755354 -0.515766 0.855134 -0.0522559 -0.508026 0.842302 -0.180101 -0.555139 0.812024 -0.180107 -0.538837 0.788178 -0.29737 -0.583011 0.756085 -0.297377 -0.556868 0.722181 -0.410308 -0.5972 0.689203 -0.410306 -0.56048 0.646826 -0.517182 -0.596517 0.613749 -0.517184 -0.54873 0.564582 -0.616557 -0.552032 0.830621 -0.072996 -0.563536 0.824049 -0.0580612 -0.555239 0.811917 -0.180278 -0.600668 0.778908 -0.180276 -0.583037 0.756045 -0.297431 -0.625196 0.721575 -0.297422 -0.597184 0.689244 -0.410262 -0.635625 0.653966 -0.410255 -0.596521 0.613733 -0.517199 -0.613787 0.78695 -0.0630548 -0.609099 0.789871 -0.0714279 -0.600656 0.778923 -0.180253 -0.644158 0.743348 -0.180261 -0.625233 0.721509 -0.297505 -0.665395 0.684646 -0.297506 -0.635613 0.654002 -0.410217 -0.653854 0.75472 -0.0535961 -0.671019 0.737607 -0.0753004 -0.69604 0.716118 -0.0519908 -0.724909 0.684926 -0.0733715 -0.819843 0.567643 -0.0750946 -0.807839 0.586915 -0.0541013 -0.772191 0.631487 -0.070322 -0.761466 0.622715 -0.179989 -0.761519 0.622609 -0.180128 -0.739132 0.604306 -0.297487 -0.739147 0.604261 -0.297539 -0.706073 0.577223 -0.410212 -0.706071 0.577235 -0.410199 -0.662626 0.541718 -0.517174 -0.662625 0.541724 -0.517169 -0.609517 0.498306 -0.616587 -0.609517 0.498321 -0.616575 -0.547473 0.447596 -0.707059 -0.547477 0.447655 -0.707017 -0.47756 0.390486 -0.787056 -0.477555 0.390449 -0.787077 -0.400624 0.327551 -0.855693 -0.400631 0.327583 -0.855677 -0.317902 0.259938 -0.911795 -0.317909 0.259966 -0.911785 -0.230388 0.188397 -0.954687 -0.23039 0.188405 -0.954685 -0.139505 0.114082 -0.983628 -0.139497 0.114059 -0.983632 -0.0465261 0.0380417 -0.998192 -0.0450823 0.0409418 -0.998144 -0.840129 0.539906 -0.0518101 -0.86052 0.504047 -0.0737661 -0.869364 0.490895 -0.0568205 -0.896735 0.437756 -0.0650834 -0.895212 0.440218 -0.0693048 -0.919744 0.388681 -0.054753 -0.906065 0.3829 -0.180095 -0.926419 0.330629 -0.180092 -0.899233 0.320927 -0.297297 -0.91608 0.269096 -0.297297 -0.875022 0.257036 -0.410206 -0.888293 0.206561 -0.410206 -0.833665 0.193858 -0.517128 -0.843377 0.145918 -0.51713 -0.775715 0.134212 -0.616647 -0.782106 0.0897563 -0.616647 -0.702578 0.0806295 -0.707024 -0.706041 0.0403619 -0.70702 -0.61586 0.0352066 -0.787068 -0.616862 0 -0.787071 -0.517513 0 -0.855676 -0.516669 -0.0295385 -0.855676 -0.410025 -0.0234416 -0.911773 -0.408019 -0.0467981 -0.911773 -0.295712 -0.033917 -0.954675 -0.293295 -0.0507324 -0.954675 -0.177569 -0.0307149 -0.983629 -0.17552 -0.0408217 -0.983629 -0.0588615 -0.0136897 -0.998172 -0.0580419 -0.0170394 -0.998169 -0.05828 -0.0172969 -0.99815 -0.0566801 -0.0202198 -0.998188 -0.0573138 -0.0210945 -0.998133 -0.0552311 -0.0233389 -0.998201 -0.05602 -0.0247979 -0.998122 -0.0536761 -0.0263971 -0.998209 -0.0543964 -0.0283776 -0.998116 -0.0520333 -0.02938 -0.998213 -0.0524832 -0.0318131 -0.998115 -0.0502931 -0.0323208 -0.998211 -0.0502755 -0.0350758 -0.998119 -0.0484628 -0.035212 -0.998204 -0.0478071 -0.0381228 -0.998129 -0.0465315 -0.0380448 -0.998192 -0.0450881 -0.0409452 -0.998144 -0.0444898 -0.0408338 -0.998175 -0.0422103 -0.0434343 -0.998164 -0.125585 -0.129227 -0.983631 -0.125568 -0.129222 -0.983633 -0.207378 -0.213414 -0.954698 -0.207429 -0.213424 -0.954685 -0.286239 -0.294512 -0.911773 -0.286215 -0.294508 -0.911782 -0.360645 -0.371094 -0.855701 -0.360696 -0.3711 -0.855677 -0.429944 -0.442345 -0.787069 -0.429884 -0.442342 -0.787104 -0.492892 -0.507175 -0.706988 -0.492905 -0.507175 -0.706978 -0.548708 -0.564593 -0.616566 -0.548704 -0.564593 -0.616569 -0.596508 -0.613782 -0.517155 -0.596464 -0.61379 -0.517196 -0.635553 -0.654015 -0.41029 -0.635644 -0.653987 -0.410193 -0.665452 -0.684655 -0.297356 -0.66536 -0.684696 -0.297467 -0.685495 -0.705416 -0.180234 -0.685523 -0.705399 -0.180195 -0.695988 -0.716167 -0.0520154 -0.671006 -0.737619 -0.075286 -0.926576 0.36855 -0.0750218 -0.940587 0.335581 -0.0517887 -0.926431 0.330531 -0.180208 -0.943791 0.277106 -0.180198 -0.916071 0.268967 -0.29744 -0.929945 0.216173 -0.297443 -0.888274 0.206486 -0.410284 -0.898603 0.155508 -0.410281 -0.843392 0.145954 -0.517095 -0.850342 0.0976417 -0.517092 -0.782141 0.0898103 -0.616596 -0.785995 0.0449475 -0.616596 -0.706053 0.040376 -0.707007 -0.707209 0 -0.707005 -0.616862 0 -0.787071 -0.615858 -0.0352569 -0.787068 -0.516618 -0.0295755 -0.855705 -0.514088 -0.059012 -0.855705 -0.407963 -0.04683 -0.911797 -0.404624 -0.0700463 -0.911796 -0.293229 -0.0507621 -0.954694 -0.289852 -0.0674272 -0.954693 -0.175505 -0.0408271 -0.983632 -0.172895 -0.0507566 -0.983632 -0.951889 0.297328 -0.0741809 -0.957952 0.281335 -0.0563879 -0.943786 0.277175 -0.180117 -0.958084 0.222782 -0.180121 -0.929953 0.216241 -0.297367 -0.940772 0.162867 -0.29736 -0.898622 0.15557 -0.410215 -0.906044 0.103953 -0.410217 -0.850299 0.0975573 -0.517178 -0.854479 0.0488278 -0.517185 -0.785971 0.044913 -0.61663 -0.787253 0 -0.61663 -0.707209 0 -0.707005 -0.706053 -0.0403686 -0.707007 -0.61591 -0.0352147 -0.787029 -0.612889 -0.0703434 -0.787032 -0.514099 -0.059005 -0.855699 -0.509894 -0.0882603 -0.855698 -0.404636 -0.0700406 -0.911792 -0.399979 -0.0930177 -0.911792 -0.289885 -0.0674146 -0.954684 -0.285566 -0.0838466 -0.954684 -0.172881 -0.0507605 -0.983634 -0.169704 -0.0605394 -0.983634 -0.972176 0.224711 -0.0661669 -0.971788 0.225867 -0.0679098 -0.958085 0.222682 -0.180238 -0.969228 0.167651 -0.180249 -0.940746 0.162724 -0.29752 -0.948494 0.108805 -0.297526 -0.906037 0.103935 -0.410236 -0.910495 0.0520388 -0.410232 -0.854485 0.0488376 -0.517175 -0.855878 0 -0.517178 -0.787253 0 -0.61663 -0.785969 -0.0449458 -0.61663 -0.706046 -0.0403754 -0.707014 -0.702593 -0.080601 -0.707013 -0.612929 -0.0703148 -0.787003 -0.60792 -0.105154 -0.787004 -0.509979 -0.088213 -0.855652 -0.504104 -0.117231 -0.85565 -0.399981 -0.093017 -0.911791 -0.39403 -0.115652 -0.911792 -0.285616 -0.0838309 -0.954671 -0.280353 -0.100025 -0.954671 -0.16969 -0.0605427 -0.983636 -0.165956 -0.0701329 -0.983636 -0.983864 0.170239 -0.0550448 -0.985805 0.150397 -0.0746323 -0.992135 0.113979 -0.0517319 -0.994362 0.0754601 -0.0745046 -0.996826 0.0569562 -0.0556222 -0.997764 0 -0.0668376 -0.997764 0 -0.0668376 -0.996826 -0.0569658 -0.0556201 -0.982054 -0.0561216 -0.180058 -0.977241 -0.112149 -0.180064 -0.948488 -0.108849 -0.297526 -0.940723 -0.162859 -0.297519 -0.898606 -0.155567 -0.410252 -0.888283 -0.206524 -0.410245 -0.833648 -0.193821 -0.51717 -0.821187 -0.241228 -0.517166 -0.755273 -0.221865 -0.616717 -0.741372 -0.264632 -0.616715 -0.665987 -0.237723 -0.70707 -0.651373 -0.275245 -0.707073 -0.568313 -0.240147 -0.786988 -0.55368 -0.272193 -0.786988 -0.464422 -0.228313 -0.855679 -0.450617 -0.254476 -0.855679 -0.357572 -0.201931 -0.911793 -0.345462 -0.222014 -0.911793 -0.250354 -0.160892 -0.954692 -0.240765 -0.174916 -0.954692 -0.145792 -0.105918 -0.983629 -0.139509 -0.114065 -0.983629 -0.994363 -0.0754602 -0.074489 -0.992138 -0.11396 -0.0517197 -0.977208 -0.112245 -0.180183 -0.96924 -0.167654 -0.180184 -0.940795 -0.162733 -0.297359 -0.929968 -0.216178 -0.297368 -0.888308 -0.206494 -0.410206 -0.875051 -0.256936 -0.410207 -0.821282 -0.241148 -0.517053 -0.80619 -0.287598 -0.517054 -0.741535 -0.264533 -0.616562 -0.725241 -0.306402 -0.616558 -0.651434 -0.275219 -0.707028 -0.634604 -0.312072 -0.707029 -0.553573 -0.272224 -0.787052 -0.537148 -0.303356 -0.787049 -0.450601 -0.254478 -0.855687 -0.435346 -0.279775 -0.855687 -0.345466 -0.222014 -0.911791 -0.332241 -0.241356 -0.911791 -0.240783 -0.174916 -0.954687 -0.230387 -0.188399 -0.954687 -0.139482 -0.114061 -0.983633 -0.132745 -0.121837 -0.983633 -0.985805 -0.150397 -0.0746319 -0.983861 -0.170268 -0.0550156 -0.969208 -0.167732 -0.180283 -0.958055 -0.222775 -0.180283 -0.92993 -0.216235 -0.297444 -0.916024 -0.269127 -0.297439 -0.874937 -0.257056 -0.410376 -0.858892 -0.306425 -0.410376 -0.806168 -0.287614 -0.517079 -0.788417 -0.333199 -0.517085 -0.725138 -0.306456 -0.616651 -0.706434 -0.347404 -0.616653 -0.634594 -0.312075 -0.707036 -0.615766 -0.347755 -0.707035 -0.53715 -0.303356 -0.787048 -0.518978 -0.33349 -0.787049 -0.43538 -0.279771 -0.855671 -0.418701 -0.304162 -0.855672 -0.332243 -0.241355 -0.91179 -0.317903 -0.259952 -0.911791 -0.230399 -0.1884 -0.954684 -0.219277 -0.201235 -0.954684 -0.132764 -0.12184 -0.98363 -0.972083 -0.22469 -0.0675908 -0.971918 -0.225897 -0.0659191 -0.958098 -0.222685 -0.180165 -0.943782 -0.277152 -0.180173 -0.916101 -0.269024 -0.297296 -0.899277 -0.320804 -0.297298 -0.858913 -0.306405 -0.410347 -0.839975 -0.35505 -0.410343 -0.788364 -0.333235 -0.517144 -0.768117 -0.377569 -0.517144 -0.706598 -0.347329 -0.616508 -0.685569 -0.387183 -0.61651 -0.61576 -0.347757 -0.707039 -0.594918 -0.382317 -0.70704 -0.518948 -0.333496 -0.787067 -0.499055 -0.36259 -0.787066 -0.418641 -0.304165 -0.8557 -0.400589 -0.327579 -0.855699 -0.317889 -0.259952 -0.911796 -0.302519 -0.27769 -0.911795 -0.219219 -0.201227 -0.954699 -0.957968 -0.28129 -0.0563375 -0.951889 -0.297328 -0.0741803 -0.940587 -0.335582 -0.0517877 -0.926576 -0.368551 -0.0750207 -0.919744 -0.388681 -0.0547523 -0.896524 -0.437654 -0.0685755 -0.895463 -0.440424 -0.0645906 -0.869409 -0.490825 -0.056732 -0.856575 -0.48358 -0.180081 -0.827459 -0.531865 -0.180089 -0.803087 -0.5162 -0.297639 -0.77226 -0.561271 -0.29764 -0.737707 -0.536159 -0.41027 -0.70601 -0.577261 -0.410267 -0.662571 -0.541743 -0.517218 -0.630527 -0.578726 -0.517215 -0.580024 -0.532372 -0.616565 -0.860521 -0.504046 -0.0737663 -0.84013 -0.539905 -0.0518105 -0.827522 -0.531802 -0.179984 -0.795821 -0.578165 -0.179984 -0.772419 -0.561164 -0.297427 -0.739155 -0.604306 -0.297428 -0.706052 -0.577243 -0.410221 -0.671919 -0.616637 -0.410223 -0.630592 -0.57871 -0.517154 -0.819798 -0.567701 -0.075145 -0.807801 -0.586962 -0.0541672 -0.795764 -0.578216 -0.180073 -0.76154 -0.622599 -0.180077 -0.739161 -0.604303 -0.29742 -0.703381 -0.645597 -0.29742 -0.671855 -0.616661 -0.410293 -0.774895 -0.628291 -0.0691929 -0.77258 -0.631707 -0.0637681 -0.761489 -0.622639 -0.180153 -0.724707 -0.66509 -0.180154 -0.703437 -0.645569 -0.297351 -0.735493 -0.675086 -0.057527 -0.724893 -0.684937 -0.0734199 -0.653899 -0.754677 -0.0536535 -0.613503 -0.786601 -0.0698005 -0.609446 -0.790344 -0.0627032 -0.563487 -0.824077 -0.0581391 -0.555203 -0.811962 -0.180188 -0.507942 -0.842335 -0.180186 -0.493018 -0.817586 -0.297467 -0.44552 -0.84441 -0.297464 -0.42556 -0.806579 -0.41028 -0.378837 -0.829552 -0.410276 -0.355557 -0.778574 -0.517109 -0.310578 -0.797579 -0.517116 -0.285673 -0.733623 -0.616594 -0.243276 -0.748751 -0.616595 -0.21853 -0.67259 -0.707013 -0.179778 -0.683967 -0.707014 -0.156821 -0.596625 -0.787049 -0.122516 -0.604601 -0.78705 -0.102777 -0.507191 -0.855683 -0.0736432 -0.512234 -0.855683 -0.0584385 -0.406476 -0.911791 -0.035138 -0.409149 -0.911791 -0.0254648 -0.296514 -0.954689 -0.00849852 -0.297486 -0.954688 -0.0051456 -0.180119 -0.983631 0.00514081 -0.180119 -0.983631 0.00514273 -0.180122 -0.983631 0.0154156 -0.179529 -0.983632 0.0154175 -0.179531 -0.983631 0.0256436 -0.178359 -0.983631 0.00854197 -0.059412 -0.998197 0.0116592 -0.0598652 -0.998138 0.0119713 -0.0590823 -0.998181 0.0153947 -0.0587085 -0.998156 0.0154141 -0.0586365 -0.99816 0.0186417 -0.0573798 -0.998178 0.0556781 -0.171379 -0.983631 0.0556816 -0.171365 -0.983633 0.0919703 -0.283047 -0.954686 0.0919733 -0.283036 -0.954689 0.12691 -0.39055 -0.911792 0.126909 -0.390553 -0.911791 0.159929 -0.492167 -0.855684 0.15992 -0.49219 -0.855672 0.190628 -0.586699 -0.787048 0.190636 -0.586681 -0.78706 0.21855 -0.672585 -0.707012 0.218537 -0.672608 -0.706994 0.243272 -0.748734 -0.616617 0.243283 -0.748717 -0.616633 0.264495 -0.813998 -0.517156 0.264463 -0.814038 -0.517109 0.281786 -0.867359 -0.410225 0.281805 -0.867339 -0.410254 0.295022 -0.908018 -0.297433 0.295015 -0.908023 -0.297424 0.303944 -0.935506 -0.180131 0.303987 -0.935481 -0.180188 0.308209 -0.948476 -0.0734915 0.362272 -0.930555 -0.0531599 0.385947 -0.91943 -0.0754482 0.414847 -0.90839 -0.0522349 0.454483 -0.887779 -0.072751 0.465889 -0.882901 -0.0585893 0.520672 -0.85145 -0.0627206 0.515074 -0.8541 -0.0721963 0.563633 -0.82429 -0.0535153 0.555204 -0.811963 -0.180179 0.600606 -0.778978 -0.180181 0.58298 -0.756117 -0.297358 0.625192 -0.721606 -0.297353 0.597186 -0.689281 -0.410196 0.635583 -0.654046 -0.410194 0.596482 -0.613808 -0.517155 0.630623 -0.578677 -0.517154 0.580038 -0.532259 -0.61665 0.609447 -0.498312 -0.616652 0.547474 -0.44764 -0.70703 0.572132 -0.415659 -0.70703 0.499063 -0.362574 -0.787069 0.518955 -0.333479 -0.787069 0.435356 -0.279759 -0.855687 0.450607 -0.254467 -0.855686 0.35754 -0.20191 -0.91181 0.368501 -0.181138 -0.911809 0.267069 -0.131278 -0.954694 0.274124 -0.115832 -0.954693 0.165959 -0.0701253 -0.983636 0.169693 -0.0605353 -0.983636 0.0566907 -0.0202236 -0.998187 0.0582913 -0.0173003 -0.99815 0.0580535 -0.017043 -0.998168 0.0588736 -0.013692 -0.998172 0.175508 -0.040817 -0.983632 0.17552 -0.0408298 -0.983629 0.289878 -0.0674318 -0.954685 0.289858 -0.0674098 -0.954693 0.399977 -0.0930194 -0.911793 0.399974 -0.0930154 -0.911795 0.504062 -0.117222 -0.855676 0.504099 -0.117269 -0.855647 0.600872 -0.139781 -0.787028 0.6008 -0.139676 -0.787102 0.688861 -0.160149 -0.706982 0.688877 -0.160177 -0.70696 0.766816 -0.178299 -0.616605 0.766804 -0.178274 -0.616628 0.833646 -0.193814 -0.517175 0.833651 -0.193827 -0.517163 0.888225 -0.206516 -0.410375 0.888258 -0.206647 -0.410238 0.929962 -0.216349 -0.297259 0.929949 -0.21624 -0.297381 0.958076 -0.22278 -0.180166 0.958077 -0.22268 -0.180283 0.972731 -0.226086 -0.0517728 0.979441 -0.187554 -0.0742918 -0.552086 -0.83059 -0.07294 -0.515719 -0.855169 -0.0521404 -0.507973 -0.842324 -0.180148 -0.459041 -0.869959 -0.18015 -0.445557 -0.844405 -0.297422 -0.396618 -0.868466 -0.297423 -0.378846 -0.829552 -0.410267 -0.330879 -0.849825 -0.410264 -0.310534 -0.79757 -0.517157 -0.264456 -0.814011 -0.517154 -0.243251 -0.748742 -0.616616 -0.200124 -0.761408 -0.61661 -0.179769 -0.683961 -0.707022 -0.140437 -0.69311 -0.707019 -0.122501 -0.60459 -0.787061 -0.0877977 -0.610599 -0.787058 -0.0736554 -0.512245 -0.855675 -0.0442853 -0.515614 -0.855676 -0.0351414 -0.409153 -0.911789 -0.0117291 -0.410489 -0.91179 -0.00850028 -0.297488 -0.954688 0.00848745 -0.297488 -0.954688 0.00849082 -0.297493 -0.954686 0.025454 -0.296511 -0.95469 0.0254612 -0.29652 -0.954687 0.0423562 -0.29458 -0.954688 0.025645 -0.178356 -0.983632 0.0357831 -0.176602 -0.983632 -0.487667 -0.869767 -0.0754068 -0.466026 -0.883161 -0.0533553 -0.459057 -0.869954 -0.180129 -0.40864 -0.894744 -0.180131 -0.396638 -0.868465 -0.297401 -0.346412 -0.889691 -0.297405 -0.33089 -0.849826 -0.410253 -0.28178 -0.867347 -0.410255 -0.264452 -0.81401 -0.517158 -0.217608 -0.827765 -0.517158 -0.200169 -0.761429 -0.61657 -0.156356 -0.771613 -0.616576 -0.14045 -0.693118 -0.707009 -0.100644 -0.700004 -0.707012 -0.0877885 -0.610591 -0.787065 -0.0527868 -0.614611 -0.787062 -0.0442843 -0.515613 -0.855676 -0.0147789 -0.517301 -0.855676 -0.0117273 -0.410487 -0.911791 0.0117081 -0.410487 -0.911791 0.0117115 -0.410491 -0.911789 0.0351165 -0.409142 -0.911795 0.0351236 -0.40915 -0.911791 0.0584387 -0.406476 -0.911791 0.0423526 -0.294587 -0.954686 0.0591024 -0.29169 -0.954685 0.0357832 -0.176602 -0.983632 0.0458113 -0.17427 -0.983632 -0.420625 -0.904488 -0.0705436 -0.414619 -0.90789 -0.061867 -0.408617 -0.894749 -0.180158 -0.356876 -0.916615 -0.180157 -0.346393 -0.889691 -0.297425 -0.295023 -0.90802 -0.297424 -0.281809 -0.867352 -0.410225 -0.231867 -0.882014 -0.41023 -0.217606 -0.827764 -0.51716 -0.169958 -0.838844 -0.517161 -0.156334 -0.771602 -0.616596 -0.112046 -0.779266 -0.616595 -0.10065 -0.700008 -0.707006 -0.0605203 -0.704611 -0.707008 -0.0527903 -0.614614 -0.78706 -0.0176113 -0.616625 -0.78706 -0.0147743 -0.517295 -0.85568 0.0147408 -0.517295 -0.85568 0.0147551 -0.517312 -0.85567 0.044248 -0.51561 -0.85568 0.0442552 -0.515618 -0.855675 0.073645 -0.512247 -0.855675 0.0584385 -0.406476 -0.911791 0.0815599 -0.402475 -0.91179 0.0591073 -0.291678 -0.954688 0.0756578 -0.287828 -0.954689 0.0458096 -0.174275 -0.983631 -0.362154 -0.930252 -0.0589578 -0.350926 -0.933592 -0.0725003 -0.308621 -0.949743 -0.0523612 -0.27929 -0.957233 -0.0755124 -0.253846 -0.96579 -0.0530282 -0.206153 -0.975929 -0.0711545 -0.198203 -0.978262 -0.0609773 -0.142061 -0.988054 -0.0597309 -0.139986 -0.973623 -0.180174 -0.0841804 -0.980028 -0.180166 -0.0817083 -0.951247 -0.29741 -0.0272623 -0.95436 -0.297411 -0.0260406 -0.911593 -0.410268 0.0259189 -0.911596 -0.41027 0.0259342 -0.911603 -0.410252 0.0779412 -0.908622 -0.410282 0.0731495 -0.852761 -0.517154 0.121805 -0.84718 -0.517156 0.112041 -0.779268 -0.616594 0.156352 -0.771599 -0.616594 0.140447 -0.693108 -0.70702 0.179777 -0.683959 -0.707022 0.156822 -0.596624 -0.787049 -0.131745 -0.988667 -0.0719764 -0.0854624 -0.994953 -0.0525733 -0.0841803 -0.980028 -0.180166 -0.0280779 -0.983236 -0.180162 -0.0272532 -0.954357 -0.297422 0.0271166 -0.954361 -0.297423 0.027135 -0.954367 -0.297401 0.081572 -0.951254 -0.297425 0.0779175 -0.908637 -0.410254 0.129782 -0.902689 -0.410256 0.121802 -0.847182 -0.517152 0.169959 -0.838849 -0.517151 0.156337 -0.771617 -0.616575 0.200132 -0.761438 -0.616571 0.179771 -0.68397 -0.707013 -0.0565836 -0.995538 -0.0755084 -0.0285105 -0.998203 -0.0527139 -0.028083 -0.983237 -0.180156 0.0279171 -0.983242 -0.180157 0.0279373 -0.983245 -0.180133 0.0840362 -0.980041 -0.180161 0.081568 -0.951256 -0.29742 0.135871 -0.945032 -0.297412 0.129783 -0.902688 -0.410257 0.181103 -0.893807 -0.410257 0.169966 -0.838842 -0.517161 0.217609 -0.827763 -0.51716 0.200162 -0.761397 -0.616612 0.0188752 -0.997246 -0.0717205 0.0283297 -0.997774 -0.0603647 0.0852814 -0.994524 -0.0604048 0.094233 -0.992984 -0.0714298 0.142116 -0.988438 -0.0528431 0.169035 -0.982715 -0.0754908 0.198299 -0.978736 -0.0524737 0.242905 -0.967354 -0.0722791 0.253755 -0.965444 -0.0593849 0.315586 -0.946887 -0.0617306 0.583063 -0.808926 -0.0753375 0.60982 -0.79083 -0.0520384 0.600645 -0.778931 -0.180253 0.644158 -0.743348 -0.180261 0.625241 -0.721518 -0.297464 0.665431 -0.684628 -0.297466 0.635615 -0.653951 -0.410295 0.671895 -0.616615 -0.410297 0.630614 -0.578731 -0.517104 0.662584 -0.541839 -0.5171 0.609446 -0.498385 -0.616593 0.636902 -0.462782 -0.616594 0.572141 -0.415725 -0.706984 0.594965 -0.382351 -0.706983 0.518963 -0.333509 -0.787051 0.537148 -0.303353 -0.787051 0.450613 -0.254483 -0.855679 0.464428 -0.2283 -0.855678 0.368506 -0.181147 -0.911805 0.378226 -0.159864 -0.911805 0.274153 -0.115876 -0.95468 0.280327 -0.100016 -0.95468 0.169702 -0.0605469 -0.983634 0.172883 -0.0507541 -0.983634 0.642681 -0.76263 -0.0731871 0.653744 -0.754497 -0.0579091 0.644123 -0.743395 -0.180193 0.6855 -0.705421 -0.180195 0.665386 -0.684722 -0.29735 0.703398 -0.645613 -0.297347 0.671877 -0.616681 -0.410227 0.706027 -0.577269 -0.410226 0.662593 -0.541756 -0.517177 0.692397 -0.503104 -0.517177 0.636902 -0.462781 -0.616595 0.662345 -0.425573 -0.616593 0.594949 -0.382269 -0.707041 0.615759 -0.347759 -0.707039 0.537152 -0.303364 -0.787044 0.553613 -0.272161 -0.787046 0.464437 -0.22832 -0.855668 0.476691 -0.201486 -0.855669 0.378228 -0.159868 -0.911804 0.386738 -0.138007 -0.911804 0.280346 -0.100041 -0.954672 0.285604 -0.0838592 -0.954672 0.172892 -0.0507647 -0.983632 0.698959 -0.712313 -0.0637622 0.695175 -0.715324 -0.0710217 0.685521 -0.70539 -0.180239 0.724695 -0.665078 -0.180244 0.703422 -0.645555 -0.297415 0.739155 -0.604313 -0.297415 0.706035 -0.577234 -0.410263 0.737797 -0.536041 -0.410263 0.692399 -0.503058 -0.51722 0.720024 -0.462658 -0.517217 0.662347 -0.425597 -0.616574 0.685525 -0.387158 -0.616575 0.615758 -0.347756 -0.707042 0.634593 -0.312062 -0.707043 0.553652 -0.27226 -0.786984 0.5683 -0.240184 -0.786986 0.476678 -0.201461 -0.855682 0.487409 -0.173902 -0.855681 0.386717 -0.137977 -0.911818 0.393974 -0.115637 -0.911818 0.285571 -0.0838194 -0.954685 0.735635 -0.675222 -0.054007 0.750178 -0.656938 -0.0752699 0.773112 -0.632143 -0.0518909 0.797884 -0.598301 -0.0735955 0.80766 -0.58686 -0.0572851 0.841297 -0.536679 -0.0647634 0.839217 -0.539312 -0.0697043 0.869524 -0.490896 -0.0543085 0.856553 -0.483573 -0.180207 0.882655 -0.434106 -0.180199 0.856743 -0.421362 -0.297397 0.879478 -0.371582 -0.297397 0.840034 -0.354917 -0.410338 0.858905 -0.306435 -0.410342 0.806178 -0.287623 -0.517059 0.821249 -0.241246 -0.51706 0.755353 -0.221889 -0.61661 0.878929 -0.471026 -0.0749528 0.896132 -0.440747 -0.0518657 0.882653 -0.434117 -0.180186 0.906101 -0.382772 -0.180183 0.879481 -0.371527 -0.297458 0.899232 -0.320789 -0.29745 0.8589 -0.306401 -0.410376 0.874979 -0.256915 -0.410374 0.821212 -0.241128 -0.517173 0.912031 -0.403376 -0.0740736 0.919648 -0.388647 -0.0565831 0.906076 -0.382911 -0.180017 0.92643 -0.330633 -0.180025 0.899233 -0.320927 -0.297297 0.91611 -0.268993 -0.297296 0.874979 -0.256915 -0.410374 0.940502 -0.333392 -0.0656138 0.939634 -0.335242 -0.0685643 0.926443 -0.330535 -0.180141 0.943788 -0.277154 -0.180141 0.916113 -0.269027 -0.297257 0.958047 -0.281313 -0.0548617 0.962408 -0.261076 -0.0749014 0.983807 -0.170259 -0.0559907 0.99136 -0.113069 -0.0664916 0.0613314 -0.00196821 -0.998116 0.0597512 0 -0.998213 0.0613318 0.00196822 -0.998115 0.0596981 0.00341465 -0.998211 0.0609931 0.0058827 -0.998121 0.0595337 0.0068283 -0.998203 0.0603234 0.00975398 -0.998131 0.0592596 0.0102564 -0.99819 0.0593249 0.0135423 -0.998147 0.0588767 0.0136909 -0.998171 0.0580563 0.0170461 -0.998168 0.172893 0.0507636 -0.983632 0.172879 0.0507676 -0.983634 0.285545 0.0838534 -0.95469 0.285613 0.0838317 -0.954671 0.394048 0.115659 -0.911784 0.393957 0.115692 -0.911819 0.496525 0.145813 -0.855688 0.496562 0.145797 -0.855669 0.591928 0.173797 -0.78703 0.591917 0.173803 -0.787037 0.678584 0.199251 -0.706981 0.678472 0.199316 -0.707071 0.755377 0.221908 -0.616573 0.755352 0.221925 -0.616597 0.821149 0.241256 -0.517214 0.821279 0.241147 -0.517059 0.874979 0.256915 -0.410373 0.0596978 -0.0034142 -0.998211 0.0609934 -0.00588338 -0.998121 0.0592596 -0.0102564 -0.99819 0.0593249 -0.0135423 -0.998147 0.0573185 -0.02109 -0.998133 0.0552315 -0.023339 -0.998201 0.165968 -0.0701377 -0.983634 0.161689 -0.079506 -0.983634 0.267106 -0.131342 -0.954675 0.25917 -0.146382 -0.954675 0.357559 -0.201953 -0.911793 0.345461 -0.222015 -0.911793 0.435368 -0.279795 -0.855669 0.418681 -0.304197 -0.85567 0.499069 -0.362604 -0.787051 0.477552 -0.390506 -0.787051 0.547477 -0.447685 -0.706998 0.521025 -0.478211 -0.706999 0.580031 -0.532368 -0.616562 0.548708 -0.564597 -0.616563 0.596491 -0.613764 -0.517196 0.560467 -0.646828 -0.517194 0.597207 -0.689229 -0.410253 0.556919 -0.722173 -0.410252 0.583032 -0.756035 -0.297465 0.538897 -0.788102 -0.297463 0.555209 -0.811957 -0.180188 0.507969 -0.842318 -0.180186 0.0560202 -0.0247978 -0.998122 0.0536761 -0.0263971 -0.998209 0.161698 -0.0795205 -0.983631 0.156904 -0.0886051 -0.983631 0.259152 -0.146345 -0.954685 0.250372 -0.160904 -0.954685 0.345461 -0.222014 -0.911793 0.332212 -0.241389 -0.911793 0.418688 -0.304223 -0.855657 0.400662 -0.327597 -0.855658 0.477546 -0.390461 -0.787077 0.454449 -0.417118 -0.787076 0.521025 -0.478225 -0.706989 0.492899 -0.507164 -0.706991 0.548709 -0.564589 -0.616569 0.515552 -0.595018 -0.616571 0.560461 -0.64685 -0.517173 0.52265 -0.677768 -0.517172 0.556909 -0.722195 -0.410228 0.514749 -0.752824 -0.41023 0.538884 -0.788121 -0.297437 0.493023 -0.817594 -0.297436 0.507946 -0.842341 -0.180148 0.459055 -0.869951 -0.18015 0.0543964 -0.0283776 -0.998116 0.052033 -0.0293801 -0.998213 0.156896 -0.0885905 -0.983634 0.151581 -0.0974055 -0.983634 0.250363 -0.160882 -0.954691 0.240771 -0.17491 -0.954691 0.332191 -0.241324 -0.911818 0.317881 -0.259886 -0.911817 0.400653 -0.327558 -0.855677 0.381255 -0.349944 -0.855677 0.45445 -0.417128 -0.78707 0.429914 -0.442376 -0.787069 0.492898 -0.507185 -0.706976 0.463154 -0.534481 -0.706978 0.515562 -0.59496 -0.616618 0.480744 -0.623433 -0.616617 0.522648 -0.677775 -0.517165 0.483116 -0.706499 -0.517164 0.514769 -0.752788 -0.410272 0.470954 -0.780948 -0.410271 0.49304 -0.817572 -0.297467 0.445551 -0.844393 -0.297464 0.459042 -0.869962 -0.180129 0.408619 -0.894753 -0.180131 0.0524829 -0.0318131 -0.998115 0.0502931 -0.0323208 -0.998211 0.151587 -0.0974172 -0.983632 0.145769 -0.105925 -0.983632 0.240795 -0.174977 -0.954673 0.230426 -0.18842 -0.954674 0.317896 -0.259944 -0.911796 0.302544 -0.277661 -0.911796 0.381247 -0.349891 -0.855702 0.360631 -0.371109 -0.855701 0.429915 -0.442406 -0.787051 0.404009 -0.466183 -0.787052 0.463159 -0.534435 -0.70701 0.43184 -0.560044 -0.707011 0.480738 -0.623458 -0.616597 0.444381 -0.649873 -0.616597 0.483111 -0.706512 -0.517151 0.441988 -0.73294 -0.517152 0.470946 -0.780961 -0.410256 0.425565 -0.806589 -0.410254 0.445526 -0.844421 -0.297422 0.396635 -0.868459 -0.297423 0.408638 -0.894739 -0.180158 0.356849 -0.916626 -0.180157 0.0502755 -0.0350756 -0.998119 0.0484632 -0.0352117 -0.998204 0.145761 -0.105905 -0.983635 0.139488 -0.114042 -0.983635 0.230415 -0.188382 -0.954684 0.219255 -0.20126 -0.954684 0.302557 -0.277725 -0.911772 0.286229 -0.294522 -0.911773 0.360628 -0.371076 -0.855716 0.338893 -0.39103 -0.855715 0.40401 -0.466164 -0.787062 0.37666 -0.488529 -0.787062 0.431833 -0.560089 -0.706979 0.399169 -0.583817 -0.706981 0.444366 -0.649922 -0.616555 0.406529 -0.674234 -0.616557 0.441961 -0.732998 -0.517093 0.399428 -0.757011 -0.517098 0.425578 -0.806571 -0.410277 0.378845 -0.829549 -0.410274 0.396621 -0.868473 -0.297401 0.346396 -0.889697 -0.297405 0.356874 -0.916609 -0.180192 0.0478074 -0.0381231 -0.998129 0.0465212 -0.0380444 -0.998193 0.139501 -0.114082 -0.983628 0.13276 -0.12186 -0.983629 0.219254 -0.201253 -0.954686 0.207427 -0.213422 -0.954686 0.286226 -0.294498 -0.911782 0.268914 -0.310385 -0.911782 0.338897 -0.391161 -0.855653 0.316013 -0.40987 -0.855653 0.37666 -0.48853 -0.787062 0.348221 -0.509192 -0.787062 0.399189 -0.583721 -0.707049 0.365184 -0.605578 -0.707048 0.40655 -0.674176 -0.616607 0.367402 -0.696285 -0.616606 0.399437 -0.756996 -0.517115 0.355556 -0.778568 -0.517119 0.378841 -0.829554 -0.410267 0.330888 -0.849821 -0.410265 0.346409 -0.889685 -0.297425 0.045081 -0.040939 -0.998144 0.0444934 -0.0408297 -0.998175 0.132748 -0.121817 -0.983635 0.125572 -0.129203 -0.983635 0.207428 -0.213426 -0.954685 0.194907 -0.224917 -0.954685 0.268908 -0.310312 -0.911809 0.250748 -0.325164 -0.911808 0.316014 -0.4098 -0.855686 0.292125 -0.427159 -0.855686 0.348222 -0.509185 -0.787066 0.318554 -0.528254 -0.787065 0.365183 -0.605579 -0.707047 0.33004 -0.625429 -0.707045 0.367415 -0.696254 -0.616633 0.327027 -0.716116 -0.616629 0.35555 -0.778577 -0.517109 0.310541 -0.797594 -0.517115 0.330879 -0.849831 -0.410251 0.0422103 -0.0434343 -0.998164 0.0422606 -0.0436384 -0.998153 0.0394425 -0.0455221 -0.998184 0.0395611 -0.0464734 -0.998136 0.0366313 -0.0475057 -0.998199 0.0366233 -0.049068 -0.998124 0.033773 -0.049385 -0.998209 0.0334677 -0.0514174 -0.998116 0.0308589 -0.0511783 -0.998213 0.0301186 -0.0534766 -0.998115 0.027896 -0.0528653 -0.998212 0.0266055 -0.0552463 -0.998118 0.024871 -0.0544626 -0.998206 0.0229548 -0.0567039 -0.998127 0.0217923 -0.0559702 -0.998195 0.019206 -0.0578436 -0.998141 0.00782637 -0.0607026 -0.998125 0.00512101 -0.0596322 -0.998207 0.0039299 -0.0612082 -0.998117 0.00170574 -0.0597427 -0.998212 0 -0.0613773 -0.998115 -0.00170638 -0.0597421 -0.998212 -0.00514458 -0.180118 -0.983632 -0.0154205 -0.17953 -0.983632 -0.025469 -0.296519 -0.954687 -0.0423516 -0.294581 -0.954688 -0.0584388 -0.406476 -0.911791 -0.0815627 -0.402475 -0.91179 -0.102785 -0.507198 -0.855678 -0.131558 -0.500509 -0.855677 -0.156822 -0.596625 -0.787049 -0.190642 -0.586696 -0.787047 -0.218556 -0.672603 -0.706993 -0.256606 -0.659031 -0.706988 -0.285646 -0.733615 -0.616617 -0.32703 -0.716123 -0.616619 -0.355549 -0.778573 -0.517117 -0.399426 -0.757003 -0.517112 -0.425585 -0.806579 -0.410254 -0.470958 -0.780954 -0.410256 -0.493045 -0.817581 -0.297436 -0.538902 -0.788109 -0.297437 -0.55521 -0.811959 -0.180179 -0.600653 -0.778942 -0.180181 -0.00392995 -0.0612089 -0.998117 -0.00512216 -0.0596327 -0.998207 -0.0154208 -0.179531 -0.983631 -0.0256454 -0.178359 -0.983631 -0.0423572 -0.294587 -0.954686 -0.0591092 -0.291689 -0.954685 -0.0815586 -0.402471 -0.911792 -0.104388 -0.397161 -0.911793 -0.131549 -0.500502 -0.855682 -0.159914 -0.492172 -0.855684 -0.190623 -0.586685 -0.78706 -0.223786 -0.574852 -0.787061 -0.256546 -0.659007 -0.707032 -0.293755 -0.64328 -0.707035 -0.327017 -0.71612 -0.616629 -0.367392 -0.696266 -0.616634 -0.399441 -0.757004 -0.517099 -0.442007 -0.73297 -0.517093 -0.470943 -0.780955 -0.410271 -0.514738 -0.752809 -0.410273 -0.538879 -0.788115 -0.297463 -0.582959 -0.75609 -0.297466 -0.600598 -0.778968 -0.180253 -0.644115 -0.743385 -0.180261 -0.00782638 -0.0607026 -0.998125 -0.00854197 -0.059412 -0.998197 -0.0256432 -0.178356 -0.983632 -0.0357832 -0.176602 -0.983632 -0.0591004 -0.29168 -0.954688 -0.0756528 -0.28783 -0.954689 -0.10439 -0.397162 -0.911792 -0.126908 -0.39055 -0.911792 -0.159934 -0.492185 -0.855672 -0.187752 -0.48226 -0.855672 -0.223803 -0.57486 -0.78705 -0.256262 -0.561144 -0.78705 -0.293776 -0.643287 -0.70702 -0.330052 -0.625451 -0.70702 -0.367425 -0.696272 -0.616606 -0.406507 -0.674201 -0.616608 -0.441939 -0.732967 -0.517154 -0.483119 -0.706504 -0.517154 -0.51478 -0.752803 -0.410231 -0.556926 -0.722182 -0.410228 -0.583052 -0.756061 -0.297358 -0.625264 -0.721545 -0.297352 -0.644166 -0.743357 -0.180193 -0.0116592 -0.0598652 -0.998138 -0.0119712 -0.0590822 -0.998181 -0.0357831 -0.176602 -0.983632 -0.0458084 -0.174271 -0.983632 -0.0756598 -0.287836 -0.954686 -0.0919768 -0.283045 -0.954686 -0.126912 -0.390552 -0.911791 -0.148981 -0.382679 -0.91179 -0.187748 -0.482258 -0.855674 -0.214998 -0.470742 -0.855674 -0.256291 -0.561156 -0.787032 -0.287899 -0.545619 -0.787029 -0.330018 -0.625441 -0.707045 -0.365184 -0.605579 -0.707047 -0.406571 -0.67421 -0.616555 -0.444403 -0.6499 -0.616552 -0.483109 -0.706504 -0.517164 -0.522653 -0.677772 -0.517165 -0.556902 -0.722186 -0.410252 -0.597169 -0.689261 -0.410254 -0.62517 -0.72158 -0.297464 -0.0153947 -0.0587083 -0.998156 -0.015413 -0.0586403 -0.99816 -0.0458045 -0.174267 -0.983633 -0.0556819 -0.171366 -0.983633 -0.0919676 -0.283038 -0.954689 -0.10796 -0.277331 -0.95469 -0.148966 -0.38267 -0.911797 -0.170592 -0.373529 -0.911797 -0.214988 -0.470738 -0.855679 -0.241479 -0.457712 -0.85568 -0.287848 -0.5456 -0.78706 -0.318556 -0.528257 -0.787062 -0.365183 -0.605579 -0.707048 -0.39913 -0.58376 -0.70705 -0.444348 -0.649895 -0.616596 -0.480754 -0.623446 -0.616596 -0.522646 -0.677772 -0.517172 -0.560476 -0.646838 -0.517173 -0.597224 -0.689248 -0.410197 -0.0186451 -0.0573827 -0.998178 -0.0192029 -0.0578411 -0.998141 -0.0217906 -0.0559661 -0.998195 -0.0229567 -0.0567019 -0.998127 -0.0248711 -0.0544627 -0.998206 -0.0266055 -0.0552463 -0.998118 -0.027896 -0.0528653 -0.998212 -0.0301186 -0.0534766 -0.998115 -0.0308589 -0.0511783 -0.998213 -0.0334677 -0.0514174 -0.998116 -0.0337729 -0.0493853 -0.998209 -0.0366235 -0.0490682 -0.998124 -0.0366315 -0.0475057 -0.998199 -0.0395611 -0.0464734 -0.998136 -0.0394425 -0.0455221 -0.998184 -0.0422606 -0.0436384 -0.998153 -0.0593257 -0.0135358 -0.998147 -0.0592605 -0.0102563 -0.99819 -0.17754 -0.0307271 -0.983634 -0.179005 -0.0205535 -0.983634 -0.295654 -0.0339473 -0.954692 -0.297106 -0.0170143 -0.954693 -0.40997 -0.0234776 -0.911797 -0.410642 0 -0.911797 -0.517513 0 -0.855676 -0.516662 0.0295781 -0.855678 -0.615912 0.03526 -0.787025 -0.612903 0.0703224 -0.787023 -0.702563 0.0806097 -0.707041 -0.696817 0.120579 -0.707041 -0.775727 0.134234 -0.616627 -0.766814 0.178248 -0.616623 -0.833636 0.19378 -0.517204 -0.821191 0.241121 -0.517211 -0.875 0.256921 -0.410325 -0.858908 0.306458 -0.410318 -0.899233 0.320845 -0.297387 -0.879477 0.371594 -0.297384 -0.906077 0.382833 -0.180175 -0.882684 0.434057 -0.180178 -0.0603256 -0.00975326 -0.998131 -0.0595378 -0.00683671 -0.998203 -0.179002 -0.0205548 -0.983634 -0.179886 -0.0102778 -0.983634 -0.297166 -0.0169786 -0.954675 -0.297652 0 -0.954674 -0.410642 0 -0.911797 -0.409976 0.0234421 -0.911795 -0.51662 0.0295399 -0.855705 -0.514089 0.0590039 -0.855705 -0.612925 0.0703476 -0.787004 -0.607906 0.105248 -0.787003 -0.696864 0.120649 -0.706983 -0.688851 0.160167 -0.706987 -0.76684 0.1783 -0.616576 -0.755371 0.221931 -0.616573 -0.821241 0.241283 -0.517055 -0.806183 0.28762 -0.517054 -0.858904 0.306429 -0.410347 -0.840032 0.354916 -0.410344 -0.879478 0.371582 -0.297398 -0.856745 0.421356 -0.297399 -0.882671 0.434107 -0.180118 -0.856529 0.483649 -0.180115 -0.0610072 -0.00588471 -0.99812 -0.0597069 -0.00340707 -0.99821 -0.179907 -0.010266 -0.98363 -0.180198 0 -0.98363 -0.297652 0 -0.954674 -0.297165 0.0170177 -0.954675 -0.410022 0.0234807 -0.911773 -0.408016 0.0468361 -0.911773 -0.514098 0.0590132 -0.855699 -0.509903 0.0881998 -0.855698 -0.60782 0.105137 -0.787084 -0.600817 0.139705 -0.787084 -0.688858 0.160177 -0.706978 -0.67859 0.199244 -0.706978 -0.755303 0.221768 -0.616714 -0.741421 0.264492 -0.616716 -0.806176 0.287593 -0.517079 -0.788397 0.333249 -0.517084 -0.840044 0.35508 -0.410176 -0.818413 0.402443 -0.410171 -0.856752 0.421296 -0.297466 -0.831338 0.469456 -0.297469 -0.856521 0.483676 -0.180081 -0.827505 0.531793 -0.180089 -0.0613321 -0.00196848 -0.998115 -0.0597516 0 -0.998213 -0.180198 0 -0.98363 -0.179904 0.0102788 -0.98363 -0.297109 0.0169754 -0.954693 -0.295657 0.0339107 -0.954692 -0.407968 0.0467923 -0.911796 -0.404627 0.070029 -0.911797 -0.509954 0.088258 -0.855662 -0.504076 0.117264 -0.855662 -0.600869 0.139781 -0.787031 -0.591922 0.173804 -0.787032 -0.678595 0.199254 -0.70697 -0.666097 0.237723 -0.706967 -0.741466 0.264621 -0.616607 -0.725189 0.306424 -0.616608 -0.788373 0.333123 -0.517201 -0.768088 0.377537 -0.51721 -0.818409 0.402271 -0.410346 -0.794075 0.448401 -0.410343 -0.83134 0.469443 -0.297484 -0.803175 0.516154 -0.297481 -0.827506 0.53179 -0.180093 -0.795795 0.578165 -0.180102 -0.0613325 0.00196849 -0.998115 -0.0597071 0.00340751 -0.99821 -0.179887 0.0102662 -0.983634 -0.179002 0.0205505 -0.983634 -0.295701 0.0339482 -0.954677 -0.293279 0.0507707 -0.954678 -0.404647 0.0700501 -0.911786 -0.399996 0.0930205 -0.911784 -0.504039 0.117216 -0.85569 -0.496529 0.145784 -0.85569 -0.591913 0.17379 -0.787042 -0.581026 0.207297 -0.787043 -0.666058 0.237634 -0.707034 -0.651412 0.275257 -0.707033 -0.725191 0.306433 -0.616601 -0.706511 0.347347 -0.616598 -0.768099 0.377626 -0.517128 -0.745229 0.420968 -0.517127 -0.794069 0.448556 -0.410185 -0.767255 0.493016 -0.41019 -0.803186 0.516105 -0.297537 -0.772332 0.561229 -0.297531 -0.795757 0.578251 -0.179992 -0.0610068 0.00588403 -0.99812 -0.0595364 0.00683656 -0.998203 -0.179009 0.0205555 -0.983633 -0.177548 0.0307153 -0.983633 -0.293236 0.0507289 -0.954693 -0.289856 0.067408 -0.954694 -0.399997 0.0930221 -0.911783 -0.394036 0.115715 -0.911782 -0.496555 0.145821 -0.855669 -0.487419 0.173924 -0.855671 -0.581045 0.207332 -0.78702 -0.568277 0.240132 -0.787018 -0.651415 0.275263 -0.707029 -0.634599 0.31208 -0.707029 -0.706536 0.347456 -0.616508 -0.685538 0.387243 -0.616507 -0.745228 0.42096 -0.517134 -0.720065 0.462691 -0.51713 -0.767255 0.493013 -0.410193 -0.737755 0.536151 -0.410195 -0.772321 0.56127 -0.297483 -0.0603238 0.00975406 -0.998131 -0.0592605 0.0102563 -0.99819 -0.177566 0.0307315 -0.983629 -0.17552 0.040825 -0.983629 -0.289869 0.0674221 -0.954689 -0.285558 0.083814 -0.954689 -0.393975 0.115635 -0.911818 -0.386718 0.137977 -0.911818 -0.487406 0.173901 -0.855683 -0.476676 0.201457 -0.855684 -0.568298 0.240179 -0.786988 -0.553647 0.272263 -0.786987 -0.634596 0.31207 -0.707036 -0.615789 0.347714 -0.707036 -0.685511 0.387083 -0.616637 -0.662305 0.425563 -0.616642 -0.720065 0.462677 -0.517143 -0.692388 0.503158 -0.517138 -0.737759 0.536129 -0.410217 -0.0593257 0.0135358 -0.998147 -0.0588647 0.0136887 -0.998172 -0.175508 0.0408136 -0.983632 -0.172891 0.0507703 -0.983632 -0.285603 0.083869 -0.954671 -0.280347 0.100043 -0.954671 -0.38674 0.13801 -0.911803 -0.378238 0.15985 -0.911803 -0.476672 0.201449 -0.855688 -0.464402 0.228308 -0.855691 -0.553607 0.272162 -0.787049 -0.53715 0.303359 -0.787048 -0.615806 0.34778 -0.706988 -0.594986 0.382316 -0.706984 -0.662306 0.425574 -0.616633 -0.636867 0.462774 -0.616637 -0.692389 0.503118 -0.517174 -0.0580448 0.0170424 -0.998169 -0.05828 0.0172969 -0.99815 -0.0566801 0.0202198 -0.998188 -0.0573135 0.0210941 -0.998133 -0.0552268 0.0233422 -0.998201 -0.0560139 0.0247984 -0.998122 -0.0536728 0.0263955 -0.99821 -0.054394 0.0283792 -0.998116 -0.0520348 0.0293799 -0.998213 -0.0524845 0.0318118 -0.998115 -0.050293 0.0323199 -0.998211 -0.0502755 0.0350763 -0.998119 -0.0484607 0.0352125 -0.998204 -0.0478056 0.03812 -0.998129 -0.0334667 0.0514189 -0.998116 -0.0308567 0.0511797 -0.998213 -0.0930408 0.15432 -0.98363 -0.0840899 0.159374 -0.98363 -0.138901 0.263255 -0.954675 -0.12364 0.270756 -0.954675 -0.170583 0.373555 -0.911788 -0.148959 0.382696 -0.911787 -0.187724 0.482288 -0.855662 -0.159933 0.492204 -0.855662 -0.190616 0.586634 -0.7871 -0.156821 0.596555 -0.787102 -0.179789 0.683925 -0.707052 -0.140483 0.693068 -0.707051 -0.156405 0.77162 -0.616555 -0.111958 0.779311 -0.616554 -0.121718 0.847247 -0.517066 -0.0732011 0.852812 -0.517063 -0.0779935 0.908645 -0.410221 -0.0259825 0.911616 -0.410221 -0.0272007 0.954358 -0.297425 0.0270661 0.954361 -0.297426 0.0278854 0.983251 -0.180112 0.083992 0.980048 -0.180141 -0.0301185 0.0534717 -0.998115 -0.0278974 0.0528608 -0.998212 -0.0840926 0.159341 -0.983636 -0.0748568 0.163883 -0.983636 -0.123649 0.270704 -0.954689 -0.107967 0.27733 -0.954689 -0.14897 0.382652 -0.911803 -0.126906 0.390523 -0.911804 -0.159941 0.492182 -0.855673 -0.13156 0.500518 -0.855672 -0.156809 0.596578 -0.787087 -0.122547 0.604543 -0.787089 -0.14049 0.693058 -0.707059 -0.100653 0.69995 -0.707063 -0.112051 0.779211 -0.616664 -0.0674259 0.784335 -0.616663 -0.0733055 0.852729 -0.517185 -0.024491 0.855524 -0.517183 -0.026095 0.911554 -0.410352 0.0257956 0.911561 -0.410355 0.0270062 0.954341 -0.297495 0.0815015 0.951231 -0.29752 0.0839704 0.980045 -0.180166 0.140067 0.973611 -0.180176 -0.0266036 0.0552478 -0.998118 -0.0248677 0.0544635 -0.998206 -0.0748501 0.163931 -0.983628 -0.0653707 0.167937 -0.983628 -0.107962 0.277354 -0.954683 -0.0919592 0.283065 -0.954682 -0.126887 0.390579 -0.911783 -0.104388 0.397186 -0.911782 -0.131551 0.500538 -0.855661 -0.102748 0.507234 -0.855661 -0.122482 0.604653 -0.787015 -0.0877431 0.610668 -0.787011 -0.100584 0.700038 -0.706986 -0.0605073 0.704634 -0.706987 -0.067357 0.784401 -0.616586 -0.0225171 0.786965 -0.616587 -0.024479 0.855533 -0.51717 0.0243117 0.855536 -0.517172 0.0259052 0.911613 -0.410232 0.0780388 0.908623 -0.410262 0.081703 0.951286 -0.297288 0.135956 0.945062 -0.297279 0.140063 0.97361 -0.180181 0.195354 0.964038 -0.180186 -0.0229557 0.0566996 -0.998127 -0.0217919 0.0559653 -0.998195 -0.0653778 0.167901 -0.983634 -0.0556805 0.171362 -0.983634 -0.0919673 0.283037 -0.95469 -0.0756519 0.287827 -0.95469 -0.104393 0.397174 -0.911787 -0.0815422 0.40249 -0.911786 -0.102759 0.507214 -0.855672 -0.0736855 0.512246 -0.855672 -0.0878258 0.610546 -0.787096 -0.0528059 0.614568 -0.787095 -0.0605413 0.704595 -0.707022 -0.0202404 0.706901 -0.707023 -0.0225324 0.786952 -0.616603 0.0224728 0.786953 -0.616604 0.0244335 0.855612 -0.517041 0.07318 0.852813 -0.517063 0.0779664 0.908593 -0.410341 0.129733 0.902656 -0.410343 0.135824 0.945033 -0.297429 0.18966 0.935717 -0.297428 0.1954 0.964039 -0.180132 -0.0192009 0.0578428 -0.998141 -0.0186486 0.0573888 -0.998178 -0.0556822 0.171355 -0.983635 -0.0458068 0.174256 -0.983634 -0.0756574 0.287811 -0.954694 -0.0591268 0.291657 -0.954694 -0.0815794 0.402409 -0.911818 -0.0584242 0.406415 -0.911819 -0.0736471 0.512311 -0.855637 -0.0442599 0.515682 -0.855636 -0.052753 0.614637 -0.787044 -0.0176027 0.616646 -0.787044 -0.0201809 0.706961 -0.706965 0.0201994 0.706961 -0.706964 0.0224852 0.786962 -0.616591 0.0673086 0.784389 -0.616606 0.0731801 0.852814 -0.517063 0.121755 0.847242 -0.517066 0.129717 0.902651 -0.410359 0.181092 0.893762 -0.410359 0.18959 0.935706 -0.297505 -0.0154156 0.058647 -0.99816 -0.0153969 0.0587166 -0.998156 -0.0119684 0.0590911 -0.998181 -0.011663 0.0598573 -0.998139 -0.00854077 0.0594035 -0.998197 -0.00782473 0.0606947 -0.998126 -0.00512238 0.0596256 -0.998208 -0.0039277 0.061205 -0.998118 -0.00171009 0.0597421 -0.998212 0 0.061381 -0.998114 0.00171094 0.0597413 -0.998212 0.00392749 0.0612017 -0.998118 0.00511966 0.0596245 -0.998208 0.00782473 0.0606947 -0.998126 0.00854077 0.0594035 -0.998197 0.011663 0.0598574 -0.998139 0.0119684 0.0590912 -0.998181 0.0153968 0.0587167 -0.998156 0.0444904 0.0408268 -0.998175 0.0450752 0.0409356 -0.998145 0.0465158 0.0380413 -0.998193 0.0478059 0.0381202 -0.998129 0.0484611 0.0352123 -0.998204 0.0502755 0.035076 -0.998119 0.050293 0.0323199 -0.998211 0.0524843 0.0318119 -0.998115 0.0520345 0.0293801 -0.998213 0.054394 0.0283792 -0.998116 0.0536728 0.0263955 -0.99821 0.0560141 0.0247982 -0.998122 0.0552272 0.0233423 -0.998201 0.0573183 0.0210896 -0.998133 0.0566907 0.0202236 -0.998187 0.0582913 0.0173002 -0.99815 -0.0244507 -0.855552 -0.51714 -0.0244379 -0.855544 -0.517154 -0.0732383 -0.852751 -0.517157 -0.07324 -0.852752 -0.517155 -0.121801 -0.84718 -0.517156 -0.121805 -0.847182 -0.517152 -0.169967 -0.838848 -0.517151 -0.0224787 -0.786952 -0.616604 -0.0224847 -0.786957 -0.616598 -0.0673686 -0.784391 -0.616598 -0.0673681 -0.78439 -0.616598 -0.11204 -0.779262 -0.616601 0.0243397 -0.855554 -0.517141 0.0243365 -0.855552 -0.517145 0.0223852 -0.786954 -0.616606 0.0224112 -0.786974 -0.616579 0.0201312 -0.706911 -0.707016 0.0201414 -0.70692 -0.707007 0.0175691 -0.616636 -0.787053 0.0175717 -0.616638 -0.78705 -0.0201976 -0.70691 -0.707015 -0.0202009 -0.706913 -0.707012 -0.0605159 -0.704607 -0.707012 -0.0176211 -0.616635 -0.787052 0.98365 0 -0.180088 0.98365 0 -0.180088 0.982047 -0.0561337 -0.18009 0.98205 -0.0561544 -0.180066 0.954771 0 -0.297341 0.954771 0 -0.297341 0.953214 -0.0545055 -0.297341 0.953182 -0.0543978 -0.297466 0.982046 0.0561542 -0.18009 0.982054 0.0561247 -0.180054 0.977244 0.112149 -0.180049 0.977204 0.112263 -0.180191 0.969238 0.167659 -0.180191 0.911941 0 -0.410322 0.911941 0 -0.410322 0.910457 -0.0519595 -0.410326 0.910499 -0.0520531 -0.410222 0.95322 0.0544 -0.297342 0.953175 0.0545034 -0.297467 0.948512 0.108801 -0.297467 0.948488 0.108849 -0.297526 0.940724 0.162853 -0.297519 0.94079 0.162738 -0.297373 0.929926 0.21634 -0.29738 0.855881 0 -0.517172 0.855881 0 -0.517172 0.854488 -0.048851 -0.517169 0.854471 -0.0488223 -0.5172 0.910453 0.0520419 -0.410326 0.9105 0.051962 -0.410231 0.906036 0.103947 -0.410236 0.906047 0.10393 -0.410216 0.898632 0.155513 -0.410216 0.898596 0.15556 -0.410275 0.88826 0.206559 -0.410277 0.888198 0.206632 -0.410376 0.787253 0 -0.61663 0.787253 0 -0.61663 0.785971 -0.0449083 -0.61663 0.785996 -0.0449428 -0.616596 0.854489 0.0488233 -0.51717 0.854475 0.0488422 -0.517191 0.850288 0.0976354 -0.517183 0.850353 0.0975581 -0.517091 0.843398 0.145922 -0.517095 0.843371 0.14595 -0.51713 0.83368 0.193791 -0.517129 0.833616 0.193852 -0.51721 0.707209 0 -0.707005 0.707209 0 -0.707005 0.706053 -0.0403717 -0.707007 0.706047 -0.0403643 -0.707014 0.785969 0.0449415 -0.61663 0.785998 0.0449099 -0.616596 0.782145 0.0897654 -0.616596 0.782104 0.0898061 -0.616643 0.775717 0.134223 -0.616643 0.775727 0.134214 -0.616631 0.7668 0.178295 -0.616627 0.76685 0.178256 -0.616575 0.616862 0 -0.787071 0.616862 0 -0.787071 0.61586 -0.0352084 -0.787069 0.61591 -0.0352598 -0.787027 0.706054 0.0403586 -0.707008 0.70604 0.0403711 -0.70702 0.702579 0.0806156 -0.707025 0.70256 0.0806315 -0.707042 0.696808 0.120636 -0.70704 0.69688 0.120582 -0.706978 0.688854 0.160172 -0.706983 0.688855 0.160172 -0.706982 0.517506 0 -0.85568 0.517506 0 -0.85568 0.516661 -0.029578 -0.855679 0.516617 -0.0295382 -0.855707 0.615858 0.0352569 -0.787068 0.61592 0.0352065 -0.787022 0.612904 0.070342 -0.78702 0.612923 0.0703283 -0.787006 0.607917 0.105154 -0.787007 0.607803 0.105227 -0.787085 0.600804 0.139766 -0.787083 0.600888 0.139718 -0.787027 0.410726 0 -0.911759 0.410726 0 -0.911759 0.410055 -0.0234454 -0.911759 0.410027 -0.0234224 -0.911773 0.516657 0.0295447 -0.855683 0.516614 0.0295753 -0.855707 0.514084 0.0590144 -0.855707 0.514103 0.0590027 -0.855697 0.509899 0.0882485 -0.855696 0.509967 0.0882107 -0.855659 0.504087 0.117227 -0.85566 0.504033 0.117254 -0.855689 0.297593 0 -0.954693 0.297593 0 -0.954693 0.297107 -0.016972 -0.954693 0.297109 -0.0169739 -0.954693 0.41006 0.0234244 -0.911758 0.410025 0.023447 -0.911773 0.408019 0.0468002 -0.911773 0.407963 0.0468322 -0.911797 0.404625 0.0700421 -0.911796 0.404645 0.0700321 -0.911788 0.39999 0.0930225 -0.911787 0.399995 0.0930203 -0.911785 0.180198 0 -0.98363 0.180198 0 -0.98363 0.179906 -0.0102781 -0.98363 0.179923 -0.01029 -0.983627 0.297107 0.0169738 -0.954693 0.29711 0.0169722 -0.954692 0.295654 0.0339443 -0.954692 0.295705 0.0339177 -0.954677 0.293284 0.0507359 -0.954678 0.293232 0.0507595 -0.954693 0.289856 0.0674177 -0.954693 0.289869 0.0674126 -0.954689 0.179904 0.0102902 -0.98363 0.179924 0.0102791 -0.983627 0.179042 0.0205355 -0.983627 0.179008 0.020552 -0.983633 0.177545 0.0307287 -0.983633 0.17757 0.0307182 -0.983629 0.175523 0.0408153 -0.983629 0.175507 0.0408211 -0.983632 0.806185 0.287602 -0.51706 0.741498 0.264525 -0.61661 0.741509 0.264518 -0.616599 0.666072 0.237607 -0.70703 0.666025 0.237631 -0.707066 0.581048 0.207312 -0.787023 0.581025 0.207322 -0.787037 0.487404 0.173916 -0.855682 0.487425 0.173908 -0.855671 0.386746 0.137987 -0.911804 0.386711 0.137998 -0.911818 0.280321 0.100032 -0.95468 0.280351 0.100025 -0.954672 0.16969 0.0605426 -0.983636 0.169704 0.0605394 -0.983634 0.906048 0.382899 -0.180182 0.882658 0.434107 -0.180184 0.856722 0.421351 -0.297473 0.831342 0.469444 -0.297476 0.794138 0.448436 -0.410183 0.767256 0.493014 -0.41019 0.720059 0.462686 -0.517143 0.692407 0.503131 -0.517138 0.636898 0.462796 -0.616587 0.60951 0.498315 -0.616587 0.547505 0.447622 -0.707017 0.521008 0.478199 -0.70702 0.454508 0.417163 -0.787018 0.429972 0.442418 -0.787014 0.36061 0.371049 -0.855735 0.338797 0.391071 -0.855734 0.26886 0.310343 -0.911812 0.25072 0.325179 -0.91181 0.181708 0.235672 -0.954694 0.167966 0.245657 -0.954694 0.101698 0.148738 -0.983633 0.0930331 0.154307 -0.983633 0.72518 0.306437 -0.616612 0.651415 0.275259 -0.707029 0.651407 0.275263 -0.707036 0.634598 0.312067 -0.707036 0.56826 0.240166 -0.787021 0.568317 0.240146 -0.786985 0.553681 0.272199 -0.786985 0.553582 0.272227 -0.787045 0.537166 0.303343 -0.787043 0.476681 0.201453 -0.855682 0.476669 0.201457 -0.855688 0.464395 0.228323 -0.85569 0.46442 0.228317 -0.855679 0.450614 0.254483 -0.855678 0.450637 0.254479 -0.855667 0.435386 0.279778 -0.855666 0.378228 0.159868 -0.911804 0.378261 0.15986 -0.911792 0.368538 0.181159 -0.91179 0.368485 0.181168 -0.91181 0.357528 0.201932 -0.91181 0.357556 0.201929 -0.9118 0.345448 0.222005 -0.9118 0.345478 0.222003 -0.911789 0.332247 0.241355 -0.911789 0.274161 0.115853 -0.95468 0.274114 0.115862 -0.954692 0.267057 0.131314 -0.954692 0.267119 0.131305 -0.954676 0.259171 0.146367 -0.954677 0.259151 0.146369 -0.954682 0.250394 0.160892 -0.954681 0.250355 0.160893 -0.954692 0.240751 0.174939 -0.954691 0.240822 0.174941 -0.954673 0.230438 0.188404 -0.954674 0.165955 0.0701373 -0.983636 0.165969 0.0701349 -0.983634 0.161685 0.0795142 -0.983634 0.161706 0.0795119 -0.983631 0.156913 0.0885971 -0.983631 0.156881 0.0885988 -0.983635 0.15157 0.0974039 -0.983636 0.151589 0.097404 -0.983633 0.145768 0.105916 -0.983633 0.145761 0.105916 -0.983634 0.139478 0.114067 -0.983633 0.139522 0.114072 -0.983627 0.132783 0.121849 -0.983627 0.882697 0.434058 -0.180111 0.856519 0.483669 -0.180108 0.831337 0.469449 -0.297484 0.803201 0.516114 -0.297481 0.767253 0.493015 -0.410193 0.737764 0.536138 -0.410195 0.692365 0.503146 -0.517179 0.662554 0.541803 -0.517177 0.609402 0.498338 -0.616676 0.579956 0.532321 -0.616673 0.520992 0.4782 -0.707031 0.492847 0.507154 -0.707034 0.429935 0.442416 -0.787035 0.404043 0.466182 -0.787035 0.33897 0.391102 -0.855651 0.316025 0.409862 -0.855653 0.250733 0.325183 -0.911805 0.231766 0.338962 -0.911806 0.16797 0.245659 -0.954693 0.153669 0.254848 -0.954693 0.0930491 0.154315 -0.98363 0.0841052 0.159365 -0.983631 0.856531 0.483656 -0.180088 0.827506 0.53179 -0.180095 0.80316 0.516144 -0.297537 0.772309 0.561262 -0.297531 0.737749 0.536146 -0.410212 0.706071 0.57723 -0.410207 0.662686 0.541762 -0.517051 0.63068 0.578705 -0.517053 0.580106 0.532299 -0.616551 0.548699 0.564616 -0.616553 0.492857 0.507153 -0.707027 0.463114 0.534444 -0.707032 0.403953 0.466171 -0.787087 0.376623 0.488517 -0.787087 0.315974 0.409849 -0.855678 0.292123 0.42718 -0.855676 0.231805 0.338975 -0.911791 0.212081 0.351656 -0.911789 0.153707 0.254865 -0.954682 0.13889 0.263236 -0.954681 0.0840762 0.159348 -0.983636 0.0748327 0.163894 -0.983636 0.795741 0.578239 -0.180102 0.772345 0.561238 -0.297483 0.706073 0.577229 -0.410204 0.739157 0.604275 -0.297487 0.827507 0.531788 -0.180093 0.630528 0.578743 -0.517196 0.671877 0.616696 -0.410205 0.548758 0.564611 -0.616506 0.596511 0.613743 -0.517199 0.644069 0.743425 -0.180261 0.600671 0.778912 -0.180253 0.583047 0.756058 -0.297377 0.538894 0.78814 -0.297371 0.514726 0.752794 -0.410315 0.470922 0.780945 -0.410315 0.441993 0.73297 -0.517105 0.39948 0.756975 -0.517112 0.367444 0.696269 -0.616599 0.326979 0.716168 -0.616594 0.293675 0.643223 -0.70712 0.256506 0.65893 -0.707118 0.223784 0.574873 -0.787046 0.190638 0.586701 -0.787044 0.159927 0.492186 -0.855673 0.515641 0.59501 -0.616505 0.463156 0.534446 -0.707003 0.431838 0.560055 -0.707003 0.376687 0.488529 -0.78705 0.348222 0.509211 -0.787049 0.292126 0.42718 -0.855675 0.267225 0.443177 -0.855678 0.212026 0.351633 -0.911811 0.191631 0.363149 -0.911812 0.138915 0.263249 -0.954674 0.123668 0.270744 -0.954675 0.0748748 0.163922 -0.983628 0.0653892 0.16793 -0.983628 0.600654 0.77892 -0.180276 0.555121 0.811998 -0.180277 0.538823 0.788157 -0.297452 0.493078 0.817556 -0.297451 0.470994 0.78094 -0.410241 0.425586 0.806586 -0.410239 0.399405 0.756967 -0.517182 0.355441 0.778576 -0.517186 0.326946 0.716159 -0.616621 0.285718 0.733585 -0.616619 0.256667 0.658997 -0.706997 0.218476 0.672619 -0.707002 0.190552 0.586652 -0.787102 0.555257 0.811943 -0.180106 0.508035 0.842297 -0.180101 0.493109 0.81755 -0.297416 0.445516 0.84443 -0.297411 0.42555 0.806586 -0.410276 0.378902 0.829524 -0.410273 0.355645 0.778608 -0.516998 0.310605 0.797642 -0.517002 0.285653 0.733564 -0.616674 0.243203 0.748714 -0.616668 0.218487 0.672625 -0.706993 0.459068 0.869951 -0.180115 0.445595 0.844419 -0.297323 0.37891 0.829524 -0.410264 0.396697 0.868465 -0.297322 0.508025 0.8423 -0.180114 0.310418 0.797601 -0.517177 0.330761 0.849872 -0.410261 0.24329 0.748748 -0.616593 0.264487 0.813983 -0.517183 0.181174 0.893786 -0.410272 0.17004 0.838861 -0.517107 0.169983 0.838837 -0.517163 0.156364 0.771628 -0.616555 0.156411 0.771653 -0.616512 0.140481 0.69306 -0.70706 0.140491 0.693067 -0.707051 0.122566 0.604637 -0.787015 0.122463 0.604562 -0.787088 0.102745 0.507217 -0.855672 0.102762 0.507231 -0.855662 0.0815278 0.402419 -0.911818 0.0815938 0.402478 -0.911786 0.0591328 0.291685 -0.954685 0.0591081 0.291661 -0.954694 0.0357943 0.176622 -0.983628 0.0357676 0.176594 -0.983634 0.121714 0.847223 -0.517107 0.111945 0.779225 -0.616666 0.112064 0.779296 -0.616555 0.100665 0.700028 -0.706985 0.100574 0.699963 -0.707062 0.0877279 0.610558 -0.787097 0.0878409 0.610651 -0.787013 0.073694 0.512305 -0.855636 0.0736389 0.512254 -0.855671 0.0584219 0.4064 -0.911826 0.0584357 0.406414 -0.911819 0.04236 0.294609 -0.954678 0.0423419 0.294589 -0.954685 0.025637 0.178367 -0.98363 0.0256464 0.178378 -0.983628 0.0672531 0.784352 -0.61666 0.0604137 0.704586 -0.707042 0.0604762 0.704637 -0.706986 0.0527495 0.61461 -0.787066 0.0527147 0.614577 -0.787093 0.0442237 0.515585 -0.855696 0.0443112 0.515676 -0.855637 0.0351594 0.409171 -0.91178 0.0350773 0.409077 -0.911826 0.0254246 0.296506 -0.954693 0.0254602 0.29655 -0.954678 0.015414 0.179536 -0.983631 0.0154161 0.179539 -0.98363 0.0201314 0.706899 -0.707028 0.0176259 0.616634 -0.787052 0.0175588 0.616565 -0.787108 -0.0176734 0.616564 -0.787106 0.014725 0.517287 -0.855685 0.0147882 0.51736 -0.85564 -0.0147723 0.517361 -0.85564 -0.0148277 0.517288 -0.855683 -0.0443143 0.515601 -0.855682 0.0117296 0.410522 -0.911775 0.0116842 0.410464 -0.911802 -0.0117119 0.410464 -0.911802 -0.0117197 0.410452 -0.911807 -0.0351288 0.409116 -0.911806 -0.0351581 0.409068 -0.911826 -0.0584334 0.406398 -0.911826 0.00847467 0.297487 -0.954688 0.00850095 0.297524 -0.954677 -0.00846793 0.297524 -0.954677 -0.00848845 0.297492 -0.954687 -0.025481 0.296518 -0.954687 -0.0254632 0.296549 -0.954678 -0.042345 0.294611 -0.954679 -0.0423568 0.294587 -0.954686 -0.0591137 0.291688 -0.954685 0.00515871 0.180128 -0.98363 0.0051302 0.180086 -0.983638 -0.00515489 0.180086 -0.983637 -0.00512683 0.180133 -0.983629 -0.0154245 0.179545 -0.983629 -0.0154284 0.179537 -0.98363 -0.0256447 0.178366 -0.98363 -0.0256388 0.178379 -0.983628 -0.035774 0.176626 -0.983628 -0.0357877 0.17659 -0.983634 -0.0458052 0.174261 -0.983634 -0.249987 0.951361 -0.180054 -0.303871 0.935544 -0.180052 -0.294947 0.908069 -0.297348 -0.346319 0.889744 -0.297353 -0.330794 0.849859 -0.410261 -0.378901 0.829528 -0.410264 -0.355596 0.778505 -0.517186 -0.399462 0.756939 -0.517178 -0.367437 0.696255 -0.616619 -0.406572 0.674152 -0.616618 -0.36518 0.605519 -0.7071 -0.399183 0.583665 -0.707098 -0.348249 0.509192 -0.787049 -0.376652 0.488555 -0.78705 -0.315999 0.409882 -0.855652 -0.338885 0.391173 -0.855652 -0.268908 0.310398 -0.911779 -0.286247 0.294485 -0.911779 -0.20741 0.213379 -0.954699 -0.303959 0.935493 -0.180171 -0.356875 0.916612 -0.180176 -0.34639 0.889681 -0.297459 -0.396681 0.868428 -0.297453 -0.378908 0.829519 -0.410276 -0.42558 0.806569 -0.410278 -0.399427 0.757003 -0.517112 -0.441973 0.732981 -0.517106 -0.406545 0.674226 -0.616555 -0.444326 0.649951 -0.616553 -0.399142 0.583857 -0.706963 -0.431862 0.560089 -0.706962 -0.376657 0.488493 -0.787086 -0.403956 0.466172 -0.787085 -0.338882 0.391076 -0.855698 -0.360685 0.371068 -0.855696 -0.286248 0.294488 -0.911778 -0.356862 0.91662 -0.180157 -0.408584 0.894764 -0.180158 -0.396596 0.868511 -0.297321 -0.445529 0.844454 -0.297324 -0.425558 0.806601 -0.410239 -0.470939 0.780973 -0.410242 -0.441985 0.732957 -0.51713 -0.483073 0.706551 -0.517132 -0.444341 0.649901 -0.616595 -0.48077 0.623434 -0.616596 -0.431872 0.560026 -0.707007 -0.463131 0.534464 -0.707006 -0.403956 0.466175 -0.787084 -0.429952 0.442307 -0.787087 -0.360683 0.371048 -0.855705 -0.459057 0.869929 -0.180252 -0.445582 0.844395 -0.297412 -0.470977 0.780911 -0.410315 -0.493083 0.817565 -0.297416 -0.408652 0.894713 -0.180258 -0.483107 0.706469 -0.517214 -0.514767 0.752766 -0.410314 -0.480773 0.623422 -0.616606 -0.522657 0.677733 -0.517212 -0.644086 0.743445 -0.180119 -0.6855 0.705439 -0.180126 -0.665362 0.684715 -0.297421 -0.685565 0.705341 -0.180264 -0.515588 0.594949 -0.616607 -0.463135 0.534422 -0.707035 -0.492851 0.507155 -0.70703 -0.429956 0.442434 -0.787013 -0.63687 0.462834 -0.616588 -0.572129 0.415619 -0.707057 -0.572154 0.415803 -0.706928 -0.595 0.382389 -0.706933 -0.499056 0.362611 -0.787055 -0.499038 0.362522 -0.787108 -0.518923 0.333444 -0.787105 -0.51894 0.333508 -0.787066 -0.537141 0.303332 -0.787064 -0.418667 0.304148 -0.855694 -0.418685 0.304214 -0.855662 -0.435394 0.279777 -0.855662 -0.435391 0.279769 -0.855666 -0.450628 0.254494 -0.855667 -0.45062 0.254472 -0.855679 -0.464412 0.228331 -0.855679 -0.33224 0.241346 -0.911794 -0.332246 0.241365 -0.911787 -0.345472 0.222021 -0.911787 -0.345459 0.221986 -0.911801 -0.357547 0.201943 -0.9118 -0.357537 0.201921 -0.911809 -0.368502 0.181143 -0.911808 -0.368525 0.181188 -0.91179 -0.378253 0.159876 -0.911792 -0.24078 0.17492 -0.954687 -0.240773 0.174903 -0.954692 -0.250366 0.160874 -0.954692 -0.250381 0.16091 -0.954682 -0.259156 0.146357 -0.954682 -0.259166 0.146377 -0.954676 -0.267103 0.131336 -0.954676 -0.267073 0.131284 -0.954692 -0.274127 0.115839 -0.954691 -0.274152 0.115877 -0.95468 -0.280327 0.100016 -0.95468 -0.145789 0.105933 -0.983628 -0.145777 0.105903 -0.983633 -0.151583 0.0974121 -0.983633 -0.151576 0.0973956 -0.983636 -0.15689 0.0885835 -0.983635 -0.156905 0.0886115 -0.98363 -0.161701 0.079522 -0.983631 -0.16169 0.0795039 -0.983634 -0.165966 0.0701419 -0.983634 -0.165957 0.07013 -0.983636 -0.169693 0.0605354 -0.983636 -0.169702 0.0605468 -0.983634 -0.172881 0.0507594 -0.983634 -0.969231 0.167707 -0.180183 -0.977219 0.112146 -0.180183 -0.948505 0.108851 -0.297474 -0.953171 0.0545453 -0.297474 -0.910525 0.0521049 -0.410158 -0.912016 0 -0.410155 -0.855878 0 -0.517178 -0.854486 -0.0488282 -0.517175 -0.785998 -0.0449146 -0.616596 -0.782146 -0.089761 -0.616597 -0.702561 -0.0806276 -0.707042 -0.696805 -0.120657 -0.70704 -0.607782 -0.105242 -0.787099 -0.600782 -0.13976 -0.787101 -0.50405 -0.117257 -0.855678 -0.496552 -0.145799 -0.855675 -0.393961 -0.115676 -0.911819 -0.38671 -0.137999 -0.911818 -0.280321 -0.100034 -0.95468 -0.274163 -0.115848 -0.95468 -0.165971 -0.0701304 -0.983634 -0.161685 -0.0795143 -0.983634 -0.977232 0.112267 -0.180041 -0.982054 0.0561485 -0.180047 -0.953156 0.0544962 -0.297531 -0.954712 0 -0.297531 -0.912016 0 -0.410155 -0.910528 -0.0520492 -0.410159 -0.854473 -0.0488449 -0.517194 -0.850281 -0.0976344 -0.517195 -0.7821 -0.0898055 -0.616648 -0.775712 -0.134232 -0.616647 -0.696892 -0.120592 -0.706964 -0.688878 -0.160157 -0.706964 -0.600889 -0.139701 -0.78703 -0.591925 -0.173793 -0.787033 -0.496563 -0.145794 -0.855669 -0.487425 -0.173908 -0.855671 -0.386749 -0.137988 -0.911803 -0.378232 -0.159865 -0.911803 -0.274114 -0.115858 -0.954693 -0.267054 -0.131316 -0.954693 -0.161702 -0.0795124 -0.983631 -0.156909 -0.0885966 -0.983631 -0.982048 0.0561119 -0.18009 -0.98365 0 -0.180088 -0.954712 0 -0.297531 -0.953153 -0.0545443 -0.29753 -0.910496 -0.0521032 -0.410223 -0.906046 -0.103936 -0.410216 -0.850354 -0.0975474 -0.517091 -0.843397 -0.145922 -0.517095 -0.775731 -0.134215 -0.616627 -0.766804 -0.178291 -0.616623 -0.68886 -0.160168 -0.706978 -0.678588 -0.199252 -0.706977 -0.59191 -0.173801 -0.787042 -0.581018 -0.207322 -0.787042 -0.4874 -0.173917 -0.855683 -0.476669 -0.201476 -0.855684 -0.378225 -0.159866 -0.911805 -0.368508 -0.181143 -0.911806 -0.267124 -0.131307 -0.954674 -0.259181 -0.14636 -0.954675 -0.156892 -0.0885974 -0.983634 -0.151578 -0.0974114 -0.983634 -0.982046 -0.056148 -0.18009 -0.953173 -0.0544972 -0.297473 -0.906046 -0.103936 -0.410216 -0.94851 -0.108807 -0.297474 -0.98365 0 -0.180088 -0.843352 -0.145971 -0.517156 -0.898627 -0.155538 -0.410215 -0.766821 -0.178278 -0.616605 -0.833653 -0.193816 -0.517163 -0.943795 -0.277128 -0.180141 -0.92641 -0.330626 -0.18014 -0.899188 -0.320911 -0.297451 -0.879461 -0.371575 -0.297457 -0.840101 -0.354945 -0.410175 -0.81845 -0.402365 -0.410173 -0.768069 -0.377597 -0.517195 -0.745195 -0.420937 -0.517201 -0.685493 -0.387213 -0.616576 -0.66236 -0.425578 -0.616574 -0.595 -0.382298 -0.706982 -0.572169 -0.415686 -0.706985 -0.499081 -0.362587 -0.787051 -0.47757 -0.390484 -0.787051 -0.400635 -0.327579 -0.855677 -0.381277 -0.349919 -0.855678 -0.302583 -0.277697 -0.911772 -0.755381 -0.221791 -0.616611 -0.678598 -0.199246 -0.706969 -0.66612 -0.237657 -0.706968 -0.581054 -0.207307 -0.78702 -0.568263 -0.240165 -0.787018 -0.4767 -0.201467 -0.855668 -0.464443 -0.228308 -0.855668 -0.368501 -0.181145 -0.911808 -0.357529 -0.201936 -0.911808 -0.259138 -0.146364 -0.954686 -0.250377 -0.160891 -0.954686 -0.151591 -0.0974114 -0.983632 -0.145775 -0.105917 -0.983632 -0.926462 -0.330543 -0.180025 -0.906129 -0.382784 -0.180018 -0.879499 -0.371534 -0.297396 -0.85674 -0.421368 -0.297397 -0.818312 -0.402467 -0.410348 -0.794045 -0.448455 -0.410342 -0.745262 -0.420903 -0.517132 -0.720069 -0.462687 -0.517129 -0.662332 -0.425587 -0.616598 -0.636898 -0.462783 -0.616598 -0.572099 -0.415699 -0.707034 -0.547449 -0.447666 -0.707032 -0.477524 -0.390486 -0.787078 -0.454445 -0.417123 -0.787076 -0.381224 -0.349916 -0.855703 -0.906051 -0.382894 -0.180177 -0.882661 -0.434103 -0.180179 -0.856749 -0.421359 -0.297384 -0.831408 -0.469391 -0.297378 -0.794174 -0.44837 -0.410185 -0.767212 -0.493082 -0.410191 -0.719979 -0.462726 -0.517218 -0.692377 -0.50309 -0.517219 -0.636903 -0.462781 -0.616594 -0.609482 -0.498341 -0.616594 -0.547498 -0.44766 -0.706998 -0.521018 -0.478218 -0.706999 -0.454455 -0.417123 -0.78707 -0.8565 -0.483664 -0.180213 -0.831335 -0.469453 -0.297484 -0.767289 -0.493037 -0.410101 -0.803201 -0.516114 -0.297481 -0.882647 -0.43412 -0.180206 -0.692425 -0.503072 -0.517172 -0.73786 -0.536082 -0.410096 -0.609534 -0.49833 -0.616551 -0.662618 -0.541729 -0.517173 -0.724648 -0.665131 -0.180239 -0.580038 -0.53237 -0.616553 -0.521037 -0.478217 -0.706986 -0.560453 -0.646841 -0.517194 -0.515527 -0.59499 -0.616619 -0.515586 -0.594988 -0.616571 -0.463131 -0.534455 -0.707013 -0.463178 -0.534457 -0.706981 -0.404002 -0.466174 -0.78706 -0.403932 -0.466166 -0.787101 -0.338923 -0.39114 -0.855652 -0.338871 -0.391131 -0.855677 -0.268874 -0.31034 -0.911809 -0.268946 -0.310356 -0.911783 -0.194907 -0.224917 -0.954685 -0.194906 -0.224917 -0.954685 -0.118013 -0.136184 -0.983629 -0.117991 -0.136177 -0.983633 -0.480728 -0.623445 -0.616617 -0.43186 -0.560069 -0.706979 -0.431811 -0.560064 -0.707013 -0.376658 -0.488531 -0.787062 -0.376661 -0.488531 -0.78706 -0.315978 -0.409825 -0.855688 -0.316048 -0.409842 -0.855654 -0.250773 -0.325194 -0.91179 -0.250727 -0.325181 -0.911808 -0.181717 -0.235678 -0.954691 -0.181738 -0.235685 -0.954685 -0.11004 -0.142704 -0.983629 -0.110038 -0.142704 -0.98363 -0.399227 -0.583776 -0.706982 -0.348225 -0.509189 -0.787062 -0.348218 -0.509188 -0.787066 -0.318551 -0.528256 -0.787065 -0.292084 -0.427186 -0.855686 -0.29216 -0.427209 -0.855649 -0.267272 -0.443199 -0.855652 -0.267256 -0.443193 -0.85566 -0.241515 -0.457727 -0.855662 -0.2318 -0.338979 -0.911791 -0.231764 -0.338966 -0.911804 -0.21204 -0.351645 -0.911803 -0.212067 -0.351656 -0.911793 -0.191647 -0.363188 -0.911793 -0.191627 -0.363178 -0.911801 -0.170585 -0.373525 -0.9118 -0.167975 -0.245664 -0.954691 -0.167995 -0.245672 -0.954685 -0.153693 -0.254862 -0.954685 -0.153676 -0.254854 -0.95469 -0.138871 -0.263215 -0.95469 -0.138903 -0.263232 -0.954681 -0.123652 -0.270728 -0.954681 -0.123634 -0.270716 -0.954687 -0.107967 -0.277336 -0.954687 -0.101722 -0.148746 -0.98363 -0.1017 -0.148736 -0.983633 -0.0930394 -0.154302 -0.983633 -0.0930565 -0.154311 -0.98363 -0.0840967 -0.15937 -0.98363 -0.0840771 -0.159359 -0.983634 -0.0748466 -0.163899 -0.983634 -0.0748646 -0.16391 -0.98363 -0.0653795 -0.167918 -0.983631 -0.0653668 -0.167909 -0.983633 -0.0556811 -0.171365 -0.983633 -0.356846 -0.91662 -0.180192 -0.303941 -0.935496 -0.180188 -0.295014 -0.90802 -0.297433 -0.242717 -0.923376 -0.297431 -0.231844 -0.882009 -0.410254 -0.181103 -0.893808 -0.410254 -0.30399 -0.935491 -0.180131 -0.250044 -0.95133 -0.180134 -0.242696 -0.923374 -0.297455 -0.189595 -0.935723 -0.297449 -0.181102 -0.893808 -0.410255 -0.129782 -0.902689 -0.410256 -0.250046 -0.95133 -0.180132 -0.195368 -0.964045 -0.180134 -0.18963 -0.935728 -0.29741 -0.13587 -0.945032 -0.297411 -0.129782 -0.902689 -0.410256 -0.078037 -0.908626 -0.410255 -0.139979 -0.973622 -0.180182 -0.135869 -0.945032 -0.297412 -0.0780389 -0.908627 -0.410253 -0.0816992 -0.951245 -0.297421 -0.195322 -0.964044 -0.180188 -0.0260525 -0.911599 -0.410255 0.0840394 -0.98004 -0.180165 0.13998 -0.973624 -0.180174 0.135869 -0.945033 -0.29741 0.189596 -0.935736 -0.297409 0.181101 -0.893809 -0.410254 0.231865 -0.882004 -0.410254 0.217606 -0.827766 -0.517157 0.0731609 -0.852752 -0.517167 0.0672952 -0.784399 -0.616596 0.0672965 -0.784397 -0.616597 0.112046 -0.779262 -0.616601 0.060463 -0.704604 -0.70702 0.0604506 -0.704618 -0.707007 0.100645 -0.700009 -0.707006 0.10065 -0.700003 -0.707012 0.140438 -0.69312 -0.707009 0.0527406 -0.614612 -0.787065 0.0527443 -0.614615 -0.787062 0.0877964 -0.61059 -0.787065 0.0877902 -0.6106 -0.787058 0.122513 -0.604587 -0.787061 0.122503 -0.604603 -0.78705 0.156822 -0.596624 -0.787049 0.139986 -0.973621 -0.180182 0.195366 -0.964035 -0.180188 0.189627 -0.935716 -0.29745 0.242716 -0.923369 -0.297455 0.231847 -0.88202 -0.410229 0.0736536 -0.512232 -0.855683 0.102784 -0.50719 -0.855683 0.0815619 -0.402471 -0.911792 0.104389 -0.397161 -0.911793 0.0756547 -0.287837 -0.954687 0.102779 -0.507199 -0.855678 0.195324 -0.964054 -0.180134 0.250044 -0.951331 -0.180132 0.242698 -0.923381 -0.297431 0.250046 -0.95133 -0.180134 0.131556 -0.500501 -0.855682 0.131551 -0.50051 -0.855677 0.104388 -0.397164 -0.911792 0.310534 -0.797604 -0.517104 0.285638 -0.733599 -0.616639 0.285624 -0.733624 -0.616616 0.327021 -0.716127 -0.616619 0.256562 -0.659046 -0.70699 0.256588 -0.65899 -0.707033 0.293771 -0.643273 -0.707035 0.293762 -0.643296 -0.707018 0.330028 -0.625465 -0.707018 0.223798 -0.574847 -0.787061 0.223791 -0.574865 -0.78705 0.256282 -0.561135 -0.78705 0.256273 -0.561163 -0.787033 0.287867 -0.545633 -0.78703 0.287879 -0.545585 -0.787059 0.318552 -0.528261 -0.787061 0.187749 -0.482261 -0.855672 0.187751 -0.482257 -0.855674 0.214991 -0.470745 -0.855674 0.214994 -0.470735 -0.855679 0.241501 -0.457701 -0.855679 0.241494 -0.457736 -0.855662 0.267266 -0.443186 -0.855661 0.267263 -0.443207 -0.855651 0.292119 -0.427238 -0.855649 0.14899 -0.382676 -0.91179 0.148986 -0.382692 -0.911784 0.17058 -0.373569 -0.911783 0.17059 -0.373523 -0.9118 0.191639 -0.363172 -0.911801 0.191635 -0.363194 -0.911793 0.212052 -0.351664 -0.911793 0.212055 -0.351634 -0.911804 0.231782 -0.338953 -0.911805 0.231781 -0.33899 -0.911791 0.250749 -0.32521 -0.911792 0.107964 -0.27733 -0.954689 0.107968 -0.277312 -0.954694 0.123635 -0.270689 -0.954695 0.123626 -0.270741 -0.954681 0.138885 -0.263242 -0.95468 0.138889 -0.263206 -0.95469 0.153685 -0.254848 -0.95469 0.153684 -0.254868 -0.954685 0.167984 -0.245678 -0.954685 0.167984 -0.245657 -0.954691 0.181727 -0.235671 -0.954691 0.181728 -0.235693 -0.954685 0.194907 -0.224918 -0.954685 0.065375 -0.167906 -0.983633 0.0653719 -0.167922 -0.98363 0.0748539 -0.163916 -0.98363 0.0748571 -0.163893 -0.983634 0.0840877 -0.159353 -0.983634 0.0840858 -0.159376 -0.98363 0.0930476 -0.154316 -0.98363 0.093048 -0.154297 -0.983633 0.101711 -0.148729 -0.983633 0.101712 -0.148754 -0.983629 0.110039 -0.142706 -0.983629 0.110039 -0.142703 -0.98363 0.118003 -0.136192 -0.983629 0.118 -0.136169 -0.983633 0.125575 -0.129216 -0.983633 0.724656 -0.665145 -0.180154 0.761529 -0.62259 -0.180153 0.739159 -0.604301 -0.297428 0.772313 -0.56131 -0.297429 0.737771 -0.536205 -0.410094 0.767245 -0.493103 -0.410102 0.720025 -0.462755 -0.517127 0.745231 -0.420958 -0.517132 0.685538 -0.387239 -0.616509 0.706537 -0.34745 -0.61651 0.634596 -0.312072 -0.707036 0.65141 -0.275257 -0.707036 0.568275 -0.240128 -0.787022 0.581042 -0.207327 -0.787023 0.48742 -0.173921 -0.855671 0.496561 -0.145802 -0.855669 0.394016 -0.115693 -0.911793 0.7615 -0.622648 -0.180077 0.795808 -0.578156 -0.180073 0.772365 -0.561125 -0.297641 0.80316 -0.516087 -0.297638 0.767254 -0.493015 -0.410192 0.794106 -0.448489 -0.410186 0.745225 -0.420882 -0.517202 0.768092 -0.377551 -0.517194 0.706497 -0.347274 -0.616655 0.725171 -0.306381 -0.61665 0.651392 -0.27521 -0.70707 0.666026 -0.237631 -0.707065 0.581031 -0.207306 -0.787037 0.591919 -0.173795 -0.787037 0.496556 -0.145795 -0.855673 0.795777 -0.578225 -0.179984 0.827475 -0.531875 -0.179984 0.803129 -0.516226 -0.29748 0.831379 -0.469375 -0.297483 0.794112 -0.448335 -0.410343 0.81838 -0.402331 -0.410346 0.7681 -0.377612 -0.517138 0.788386 -0.333191 -0.517138 0.725202 -0.306488 -0.616561 0.741519 -0.264566 -0.616567 0.666026 -0.23763 -0.707066 0.6785 -0.199226 -0.707069 0.591926 -0.173805 -0.78703 0.856523 -0.48367 -0.180088 0.831365 -0.469464 -0.297383 0.818383 -0.402502 -0.410171 0.856743 -0.421369 -0.29739 0.827508 -0.531787 -0.180095 0.788396 -0.333243 -0.517089 0.840046 -0.355075 -0.410177 0.741505 -0.264527 -0.6166 0.806171 -0.287596 -0.517084 0.943789 -0.277127 -0.180173 0.755359 -0.221903 -0.616597 0.678559 -0.199341 -0.70698 0.969225 -0.167735 -0.180191 0.969221 -0.167656 -0.180283 0.940745 -0.162731 -0.29752 0.940768 -0.16286 -0.297374 0.898623 -0.155564 -0.410215 0.898614 -0.155536 -0.410245 0.843388 -0.145977 -0.517094 0.843362 -0.145916 -0.517155 0.775718 -0.134213 -0.616642 0.775725 -0.134225 -0.616631 0.696818 -0.120571 -0.707041 0.696882 -0.120667 -0.706961 0.6079 -0.105259 -0.787005 0.607803 -0.105134 -0.787097 0.509906 -0.0882005 -0.855696 0.50997 -0.0882735 -0.855651 0.404626 -0.0700388 -0.911796 0.40463 -0.070043 -0.911794 0.177567 -0.0307326 -0.983629 0.29329 -0.0507696 -0.954675 0.293239 -0.0507213 -0.954693 0.177541 -0.0307091 -0.983634 0.999282 0.0378984 4.41195e-09 0.999282 0.0378984 4.41195e-09 0.999282 -0.0378985 -4.41196e-09 0.999282 -0.0378984 -6.61794e-09 0.993559 -0.11332 -1.97883e-08 0.993559 -0.11332 -1.97883e-08 0.982155 -0.188074 -3.28421e-08 0.982155 -0.188074 -3.28421e-08 0.965119 -0.261812 -4.57184e-08 0.965119 -0.261812 -4.57184e-08 0.942533 -0.334112 -5.83437e-08 0.942533 -0.334112 -5.83437e-08 0.914544 -0.404487 -7.06327e-08 0.914544 -0.404487 -7.06327e-08 0.881409 -0.472354 -8.24839e-08 0.881409 -0.472354 -8.24839e-08 0.843067 -0.537809 -9.39137e-08 0.843067 -0.537809 -9.39137e-08 0.800054 -0.599928 -1.04761e-07 0.800054 -0.599928 -1.04761e-07 0.752312 -0.658807 -1.15043e-07 0.752312 -0.658807 -1.15043e-07 0.700384 -0.713766 -1.2464e-07 0.700384 -0.713766 -1.2464e-07 0.644409 -0.764681 -1.33531e-07 0.644409 -0.764681 -1.33531e-07 0.584725 -0.811232 -1.4166e-07 0.584725 -0.811232 -1.1805e-07 0.5217 -0.853129 -1.24147e-07 0.5217 -0.853129 -1.24147e-07 0.455691 -0.890138 -1.29532e-07 0.455691 -0.890138 -1.29532e-07 0.387051 -0.922058 -1.34177e-07 0.387051 -0.922058 -1.34177e-07 0.316189 -0.948696 -1.38053e-07 0.316189 -0.948696 -1.38053e-07 0.243542 -0.96989 -1.41138e-07 0.243542 -0.96989 -1.41138e-07 0.169518 -0.985527 -1.43413e-07 0.169518 -0.985527 -1.43413e-07 0.0944743 -0.995527 -1.44868e-07 0.0944743 -0.995527 -1.44868e-07 0.0189239 -0.999821 -1.45493e-07 0.0189239 -0.999821 -1.45493e-07 -0.0567456 -0.998389 -1.45285e-07 -0.0567456 -0.998389 -1.45285e-07 -0.132088 -0.991238 -1.44244e-07 -0.132088 -0.991238 -1.44244e-07 -0.206677 -0.978409 -1.42377e-07 -0.206677 -0.978409 -1.42377e-07 -0.28009 -0.959974 -1.39695e-07 -0.28009 -0.959974 -1.39695e-07 -0.351852 -0.936056 -1.36214e-07 -0.351852 -0.936056 -1.36214e-07 -0.421676 -0.906747 -1.31949e-07 -0.421676 -0.906747 -1.31949e-07 -0.489059 -0.87225 -1.26929e-07 -0.489059 -0.87225 -1.26929e-07 -0.553561 -0.832808 -1.2119e-07 -0.553561 -0.832809 -1.45428e-07 -0.615003 -0.788525 -1.37695e-07 -0.615003 -0.788525 -1.37695e-07 -0.672916 -0.739719 -1.29172e-07 -0.672916 -0.739719 -1.29172e-07 -0.726855 -0.686791 -1.19929e-07 -0.726855 -0.686791 -1.19929e-07 -0.776757 -0.629801 -1.09978e-07 -0.776757 -0.629801 -1.09978e-07 -0.822123 -0.56931 -9.94147e-08 -0.822123 -0.56931 -9.94147e-08 -0.862872 -0.505423 -8.82585e-08 -0.862872 -0.505423 -8.82585e-08 -0.89864 -0.438687 -7.66048e-08 -0.89864 -0.438687 -7.66048e-08 -0.929194 -0.369592 -6.45393e-08 -0.929194 -0.369592 -6.45393e-08 -0.954519 -0.29815 -5.20638e-08 -0.954519 -0.29815 -5.20638e-08 -0.974311 -0.225205 -3.93259e-08 -0.974311 -0.225205 -3.93259e-08 -0.988562 -0.150817 -2.63362e-08 -0.988562 -0.150817 -2.63362e-08 -0.997133 -0.0756705 -1.32138e-08 -0.997133 -0.0756704 -8.80919e-09 -1 0 0 -1 0 0 -0.997133 0.0756704 8.80919e-09 -0.997133 0.0756704 8.80919e-09 -0.988562 0.150818 1.75575e-08 -0.988562 0.150818 1.75575e-08 -0.974311 0.225205 2.62173e-08 -0.974311 0.225205 2.62173e-08 -0.954519 0.29815 3.47092e-08 -0.954519 0.29815 3.47092e-08 -0.929194 0.369592 4.30261e-08 -0.929194 0.369592 4.30261e-08 -0.89864 0.438687 5.10698e-08 -0.89864 0.438687 5.10698e-08 -0.862871 0.505424 5.8839e-08 -0.862871 0.505424 5.8839e-08 -0.822164 0.56925 6.62694e-08 -0.822164 0.56925 6.62694e-08 -0.7767 0.62987 7.33265e-08 -0.7767 0.62987 7.33265e-08 -0.726868 0.686777 7.99514e-08 -0.726868 0.686777 7.99514e-08 -0.672929 0.739707 8.61132e-08 -0.672929 0.739707 8.61132e-08 -0.615011 0.788519 9.17957e-08 -0.615011 0.788519 9.17957e-08 -0.553509 0.832843 9.69557e-08 -0.553509 0.832843 9.69557e-08 -0.489097 0.872229 1.01541e-07 -0.489097 0.872229 1.01541e-07 -0.421666 0.906751 1.0556e-07 -0.421666 0.906751 1.0556e-07 -0.351886 0.936043 1.0897e-07 -0.351886 0.936043 1.0897e-07 -0.280114 0.959967 1.11755e-07 -0.280114 0.959967 1.11755e-07 -0.206639 0.978417 1.13903e-07 -0.206639 0.978417 1.13903e-07 -0.132138 0.991231 1.15395e-07 -0.132138 0.991231 1.15395e-07 -0.0567211 0.99839 1.16228e-07 -0.0567211 0.99839 1.16228e-07 0.0189497 0.99982 1.16394e-07 0.0189497 0.99982 1.16394e-07 0.0944874 0.995526 1.15894e-07 0.0944874 0.995526 1.15894e-07 0.169517 0.985527 1.1473e-07 0.169517 0.985527 1.1473e-07 0.243506 0.969899 1.12911e-07 0.243506 0.969899 1.12911e-07 0.316191 0.948696 1.10443e-07 0.316191 0.948696 1.10443e-07 0.387094 0.92204 1.0734e-07 0.387094 0.92204 1.0734e-07 0.455701 0.890133 1.03625e-07 0.455701 0.890133 1.03625e-07 0.5217 0.853129 9.93173e-08 0.5217 0.853129 9.93173e-08 0.584733 0.811226 9.44392e-08 0.584733 0.811226 9.44392e-08 0.64441 0.76468 8.90205e-08 0.64441 0.76468 8.90205e-08 0.700371 0.713779 8.30948e-08 0.700371 0.713779 8.30948e-08 0.75229 0.658832 7.66981e-08 0.75229 0.658832 7.66981e-08 0.800077 0.599897 6.98372e-08 0.800077 0.599897 6.98372e-08 0.843067 0.537809 6.26092e-08 0.843067 0.537809 6.26092e-08 0.881409 0.472354 5.49893e-08 0.881409 0.472354 5.49893e-08 0.914544 0.404487 4.70885e-08 0.914544 0.404487 4.70885e-08 0.942533 0.334112 3.88958e-08 0.942533 0.334112 3.88958e-08 0.96511 0.261845 3.04827e-08 0.96511 0.261845 3.04827e-08 0.982155 0.188074 2.18947e-08 0.982155 0.188074 2.18947e-08 0.99356 0.113306 1.31905e-08 0.99356 0.113306 1.31905e-08 0.000500204 0.049659 -0.998766 0 0.0302128 -0.999544 0 0.0302128 -0.999544 -0.000500203 0.0496589 -0.998766 0.000691679 0.120468 -0.992717 -0.000296598 0.147024 -0.989133 0.000384763 0.242415 -0.970173 0.000212071 0.239365 -0.97093 -0.000161619 0.337156 -0.941449 0.000694299 0.354593 -0.935021 -0.000529949 0.427975 -0.90379 0.000957083 0.464766 -0.885433 -0.000650242 0.514557 -0.857456 0.000957488 0.5681 -0.822959 -0.000492573 0.596117 -0.802897 0.000646111 0.663066 -0.74856 0 0.671479 -0.741024 0 0.740906 -0.671609 0.000705267 0.74847 -0.663168 -0.000548881 0.803454 -0.595366 0.00111767 0.822957 -0.568102 -0.000811857 0.857956 -0.513722 0.00121599 0.885518 -0.464604 -0.000719805 0.904173 -0.427167 0.000951439 0.935021 -0.354591 -0.000243777 0.941528 -0.336936 0.000288127 0.96999 -0.243146 0.000592492 0.970941 -0.239319 -0.000450089 0.989187 -0.14666 0.00116817 0.992714 -0.120492 -0.000835639 0.998805 -0.0488679 0 0.999544 -0.0302051 0 0.999544 -0.0302051 0.000835636 0.998805 -0.0488678 -0.00116816 0.992714 -0.120492 0.000450086 0.989187 -0.14666 -0.000592488 0.970941 -0.239319 -0.00028813 0.96999 -0.243146 0.000243779 0.941528 -0.336936 -0.000951436 0.935021 -0.354591 0.000719804 0.904173 -0.427167 -0.00121599 0.885518 -0.464604 0.000811859 0.857956 -0.513722 -0.00111767 0.822957 -0.568102 0.000548879 0.803454 -0.595366 -0.000705261 0.74847 -0.663168 0 0.740906 -0.671609 0 0.671479 -0.741024 -0.000646116 0.663067 -0.74856 0.000492575 0.596117 -0.802897 -0.00095749 0.5681 -0.822959 0.000650243 0.514557 -0.857456 -0.000957083 0.464766 -0.885433 0.000529947 0.427975 -0.90379 -0.000694296 0.354593 -0.935021 0.000161618 0.337156 -0.941449 -0.00021207 0.239365 -0.97093 -0.000384765 0.242415 -0.970173 0.000296599 0.147024 -0.989133 -0.000691681 0.120468 -0.992717 0 0.120468 -0.992717 0 0.239365 -0.97093 0 0.120468 -0.992717 0 0.354593 -0.935021 0 0.239365 -0.97093 0 0.464766 -0.885434 0 0.354593 -0.935021 0 0.5681 -0.82296 0 0.464766 -0.885434 0 0.663067 -0.74856 0 0.5681 -0.82296 0 0.74847 -0.663168 0 0.663067 -0.74856 0 0.822958 -0.568103 0 0.74847 -0.663168 0 0.885518 -0.464604 0 0.822958 -0.568103 0 0.935021 -0.354591 0 0.885518 -0.464604 0 0.970941 -0.239319 0 0.935021 -0.354591 0 0.992714 -0.120492 0 0.970941 -0.239319 0 0.992714 -0.120492 0.0496625 -0.000500151 -0.998766 0.0302141 1.32047e-07 -0.999543 0.0302038 0 -0.999544 0.0496628 0.000500554 -0.998766 0.12049 -0.000691319 -0.992714 0.147028 0.000296146 -0.989132 0.242425 -0.000385674 -0.97017 0.239323 -0.00020998 -0.97094 0.337164 0.000164718 -0.941446 0.354633 -0.000692644 -0.935005 0.427913 0.00053008 -0.90382 0.464766 -0.000959662 -0.885433 0.514569 0.000647773 -0.857449 0.56807 -0.0009589 -0.822979 0.596127 0.000493141 -0.80289 0.663117 -0.00064618 -0.748516 0.67153 0 -0.740977 0.740895 0 -0.671621 0.748471 -0.000706303 -0.663167 0.803403 0.000546526 -0.595435 0.822959 -0.00112452 -0.5681 0.857942 0.000803795 -0.513746 0.885458 -0.00122072 -0.464717 0.904144 0.000717959 -0.427227 0.935035 -0.000955614 -0.354555 0.941576 0.000246294 -0.336799 0.970002 -0.000285004 -0.243095 0.970941 -0.000585234 -0.23932 0.989186 0.000457409 -0.146667 0.992709 -0.00115873 -0.120533 0.998798 0.000842061 -0.049019 0.999544 2.77527e-09 -0.0302129 0.999543 0 -0.030213 0.998797 -0.000842053 -0.0490192 0.992709 0.00115879 -0.120533 0.989186 -0.000457367 -0.146667 0.970941 0.000585326 -0.23932 0.970002 0.000285091 -0.243095 0.941576 -0.000246186 -0.336799 0.935035 0.000955729 -0.354555 0.904144 -0.000717821 -0.427227 0.885458 0.00122087 -0.464717 0.857942 -0.000803642 -0.513746 0.822959 0.00112471 -0.5681 0.803403 -0.000546357 -0.595435 0.748471 0.000706508 -0.663167 0.740895 1.90366e-07 -0.671621 0.67153 2.10025e-07 -0.740977 0.663117 0.000646394 -0.748516 0.596127 -0.000492932 -0.80289 0.56807 0.000959128 -0.822979 0.514569 -0.00064756 -0.857449 0.464766 0.000959882 -0.885433 0.427913 -0.000529868 -0.90382 0.354633 0.000692874 -0.935005 0.337168 -0.00016431 -0.941445 0.239323 0.000210423 -0.97094 0.242425 0.000386095 -0.97017 0.147028 -0.000295724 -0.989132 0.12049 0.000691737 -0.992714 0.12049 0 -0.992715 0.239323 0 -0.97094 0.12049 0 -0.992715 0.354633 0 -0.935005 0.239323 0 -0.97094 0.464766 0 -0.885433 0.354633 0 -0.935005 0.568071 0 -0.82298 0.464766 0 -0.885433 0.663117 0 -0.748516 0.568071 0 -0.82298 0.748471 0 -0.663168 0.663117 0 -0.748516 0.822959 0 -0.568101 0.748471 0 -0.663168 0.885459 0 -0.464718 0.822959 0 -0.568101 0.935035 0 -0.354555 0.885459 0 -0.464718 0.970941 0 -0.23932 0.935035 0 -0.354555 0.992709 0 -0.120533 0.970941 0 -0.23932 0.992709 0 -0.120533 -0.000500526 -0.0496715 -0.998765 0 -0.0302128 -0.999544 0 -0.0302128 -0.999544 0.000500527 -0.0496715 -0.998765 -0.000690775 -0.120491 -0.992714 0.000296662 -0.147024 -0.989133 -0.000384661 -0.242415 -0.970173 -0.000209323 -0.239319 -0.970941 0.000165732 -0.337156 -0.941449 -0.000693219 -0.354658 -0.934996 0.000528241 -0.427875 -0.903838 -0.000963305 -0.464766 -0.885433 0.000646985 -0.514667 -0.85739 -0.00095749 -0.5681 -0.822959 0.000492329 -0.596113 -0.802901 -0.000646474 -0.663067 -0.74856 0 -0.671484 -0.741019 0 -0.740906 -0.671609 -0.000705262 -0.74847 -0.663168 0.000548879 -0.803454 -0.595366 -0.00111767 -0.822957 -0.568102 0.0008052 -0.857841 -0.513914 -0.00122452 -0.885432 -0.464767 0.000719804 -0.904173 -0.427167 -0.000955557 -0.93509 -0.354409 0.000242473 -0.941609 -0.336709 -0.00028813 -0.96999 -0.243146 -0.000592488 -0.970941 -0.239319 0.000449982 -0.989186 -0.146669 -0.00115618 -0.992689 -0.120697 0.000846635 -0.998793 -0.0491134 0 -0.999544 -0.0302051 0 -0.999544 -0.0302051 -0.000846639 -0.998793 -0.0491135 0.00115619 -0.992689 -0.120697 -0.000449986 -0.989186 -0.146669 0.000592493 -0.970941 -0.239319 0.000288127 -0.96999 -0.243146 -0.000242472 -0.941609 -0.336709 0.00095556 -0.93509 -0.354409 -0.000719805 -0.904173 -0.427167 0.00122452 -0.885432 -0.464767 -0.000805198 -0.857841 -0.513914 0.00111767 -0.822957 -0.568102 -0.000548881 -0.803454 -0.595366 0.000705266 -0.74847 -0.663168 0 -0.740906 -0.671609 0 -0.671484 -0.741019 0.000646471 -0.663066 -0.74856 -0.000492327 -0.596113 -0.802901 0.000957488 -0.5681 -0.822959 -0.000646984 -0.514667 -0.85739 0.000963303 -0.464766 -0.885433 -0.000528243 -0.427875 -0.903838 0.000693222 -0.354658 -0.934996 -0.000165732 -0.337156 -0.941449 0.000209325 -0.239319 -0.970941 0.000384659 -0.242415 -0.970173 -0.000296661 -0.147024 -0.989133 0.000690772 -0.120491 -0.992714 0 -0.120491 -0.992714 0 -0.239319 -0.970941 0 -0.120491 -0.992714 0 -0.354658 -0.934996 0 -0.239319 -0.970941 0 -0.464766 -0.885434 0 -0.354658 -0.934996 0 -0.5681 -0.82296 0 -0.464766 -0.885434 0 -0.663067 -0.74856 0 -0.5681 -0.82296 0 -0.74847 -0.663168 0 -0.663067 -0.74856 0 -0.822958 -0.568103 0 -0.74847 -0.663168 0 -0.885433 -0.464767 0 -0.822958 -0.568103 0 -0.93509 -0.354409 0 -0.885433 -0.464767 0 -0.970941 -0.239319 0 -0.93509 -0.354409 0 -0.992689 -0.120698 0 -0.970941 -0.239319 0 -0.992689 -0.120698 -0.999544 2.78593e-09 -0.0302129 -0.999543 0 -0.030213 -0.998793 -0.000970087 -0.0491171 -0.992713 0.00131747 -0.120492 -0.989187 -0.000535937 -0.146657 -0.97094 0.000657033 -0.239322 -0.970049 0.000330701 -0.242911 -0.941531 -0.000277577 -0.336925 -0.935021 0.00108247 -0.354591 -0.904192 -0.000816974 -0.427125 -0.885433 0.00138773 -0.464764 -0.857978 -0.000900813 -0.513687 -0.822959 0.00127597 -0.568099 -0.803354 -0.000613486 -0.595501 -0.74847 0.000791628 -0.663168 -0.740908 2.12322e-07 -0.671607 -0.671606 2.34574e-07 -0.740908 -0.663168 0.000720556 -0.74847 -0.596148 -0.000546514 -0.802875 -0.568002 0.00106462 -0.823026 -0.514604 -0.00070958 -0.857427 -0.464766 0.00106081 -0.885433 -0.427913 -0.000579466 -0.90382 -0.35466 0.000759788 -0.934995 -0.337175 -0.000180608 -0.941442 -0.239319 0.000228707 -0.970941 -0.242439 0.000421535 -0.970167 -0.147049 -0.000320118 -0.989129 -0.120493 0.000749628 -0.992714 -0.0496988 -0.000540616 -0.998764 -0.0302205 0 -0.999543 -0.0302104 1.32042e-07 -0.999544 -0.0496405 0.000482271 -0.998767 -0.120493 -0.000666472 -0.992714 -0.147014 0.000283898 -0.989134 -0.242485 -0.000372896 -0.970155 -0.239319 -0.000200773 -0.970941 -0.337152 0.000159202 -0.94145 -0.35466 -0.000664063 -0.934995 -0.427853 0.000505851 -0.903848 -0.464766 -0.000921234 -0.885433 -0.514534 0.000614362 -0.85747 -0.568002 -0.000918283 -0.823026 -0.596098 0.000469202 -0.802912 -0.663168 -0.000617128 -0.74847 -0.671607 0 -0.740908 -0.740908 0 -0.671607 -0.74847 -0.00066857 -0.663168 -0.80332 0.000517654 -0.595547 -0.822959 -0.00107054 -0.5681 -0.857939 0.000753925 -0.513751 -0.885434 -0.00115712 -0.464764 -0.904167 0.00067884 -0.427179 -0.935021 -0.000897596 -0.354591 -0.941526 0.000229326 -0.33694 -0.970052 -0.000272983 -0.242897 -0.97094 -0.000540415 -0.239322 -0.989185 0.000440777 -0.14667 -0.992714 -0.00108141 -0.120492 -0.998792 0.000796097 -0.0491254 -0.992714 0 -0.120492 -0.97094 0 -0.239322 -0.992714 0 -0.120492 -0.935021 0 -0.354591 -0.97094 0 -0.239322 -0.885434 0 -0.464764 -0.935021 0 -0.354591 -0.82296 0 -0.5681 -0.885434 0 -0.464764 -0.748471 0 -0.663168 -0.82296 0 -0.5681 -0.663168 0 -0.748471 -0.748471 0 -0.663168 -0.568003 0 -0.823027 -0.663168 0 -0.748471 -0.464766 0 -0.885434 -0.568003 0 -0.823027 -0.35466 0 -0.934995 -0.464766 0 -0.885434 -0.239319 0 -0.970941 -0.35466 0 -0.934995 -0.120493 0 -0.992714 -0.239319 0 -0.970941 -0.120493 0 -0.992714 -1 0 0 -1 0 0 0 1 0 0 1 0 0.996477 0.0381995 -0.0746583 0.998655 0 -0.0518485 0.996477 -0.0382044 -0.0746533 0.996812 -0.0569854 -0.0558402 0.991273 -0.113754 -0.0666249 0.977227 -0.112142 -0.180144 0.977225 -0.112119 -0.180171 0.948525 -0.108826 -0.297418 0.948521 -0.108809 -0.297437 0.906022 -0.103934 -0.41027 0.906031 -0.103957 -0.410245 0.850314 -0.0975639 -0.517153 0.850323 -0.0975822 -0.517134 0.782147 -0.0897584 -0.616595 0.782148 -0.0897593 -0.616594 0.702588 -0.080629 -0.707014 0.702582 -0.0806207 -0.707021 0.612874 -0.0703268 -0.787045 0.612857 -0.0703073 -0.78706 0.514134 -0.0589818 -0.855679 0.514139 -0.0589861 -0.855676 0.407973 -0.0468059 -0.911793 0.407975 -0.0468073 -0.911793 0.295667 -0.0339221 -0.954689 0.295675 -0.033929 -0.954686 0.179019 -0.0205427 -0.983631 0.179017 -0.0205405 -0.983632 0.0595755 -0.00683573 -0.9982 0.0602692 -0.00984514 -0.998134 0.996812 0.0569953 -0.0558303 0.991188 0.114426 -0.066728 0.991202 0.113745 -0.0676844 0.983854 0.170229 -0.055256 0.969239 0.1677 -0.180148 0.958077 0.222788 -0.18015 0.929938 0.216244 -0.29741 0.916073 0.268997 -0.297407 0.875018 0.256941 -0.410275 0.858918 0.306482 -0.410278 0.806094 0.287633 -0.517184 0.788346 0.333212 -0.517186 0.725149 0.306501 -0.616617 0.706485 0.347361 -0.61662 0.634631 0.312033 -0.707021 0.615789 0.347742 -0.707021 0.537177 0.303349 -0.787032 0.518991 0.333513 -0.787031 0.435377 0.27978 -0.855669 0.418686 0.304191 -0.855669 0.332216 0.241368 -0.911797 0.317896 0.259936 -0.911798 0.230394 0.188387 -0.954688 0.219259 0.201238 -0.954688 0.132755 0.121844 -0.983631 0.125579 0.129229 -0.983631 0.0419494 0.0431685 -0.998187 0.0421284 0.0442295 -0.998133 0.0392617 0.0453029 -0.998201 0.0393105 0.0470208 -0.99812 0.0365218 0.0473653 -0.99821 0.0362389 0.049544 -0.998114 0.0337395 0.0493389 -0.998212 0.0329563 0.0517829 -0.998114 0.0308904 0.0512355 -0.998209 0.029482 0.0536983 -0.998122 0.0279968 0.0530471 -0.9982 0.0258469 0.0553105 -0.998135 0.0250199 0.0548037 -0.998184 0.0221028 0.0565708 -0.998154 0.0219956 0.0564854 -0.998161 0.018646 0.0573967 -0.998177 0.0556699 0.171365 -0.983634 0.0556966 0.171387 -0.983628 0.0919862 0.283056 -0.954682 0.0919629 0.283038 -0.95469 0.126888 0.390528 -0.911804 0.126938 0.390564 -0.911782 0.159969 0.492193 -0.855661 0.159882 0.492138 -0.855709 0.190606 0.58671 -0.787045 0.1906 0.586707 -0.78705 0.218497 0.672579 -0.707034 0.21855 0.672605 -0.706993 0.243283 0.74872 -0.61663 0.243378 0.748755 -0.616549 0.264598 0.814039 -0.517039 0.264423 0.813991 -0.517203 0.281755 0.867346 -0.410275 0.281768 0.867348 -0.410262 0.294981 0.908019 -0.29747 0.294984 0.908019 -0.297466 0.303914 0.935508 -0.180171 0.304013 0.935498 -0.180057 0.308219 0.948443 -0.0738742 0.253752 0.96581 -0.0531073 0.227229 0.970913 -0.0754714 0.198334 0.978732 -0.0524223 0.152234 0.985712 -0.0720938 0.142184 0.988021 -0.059982 0.0763768 0.995216 -0.0609319 0.0853343 0.993503 -0.0753002 0.0284792 0.998192 -0.0529235 0.0280532 0.983263 -0.180018 -0.0279871 0.983265 -0.180018 -0.0271638 0.95434 -0.297486 -0.0818114 0.951215 -0.297485 -0.0781442 0.908577 -0.410343 -0.129898 0.902634 -0.41034 -0.121906 0.847103 -0.517258 -0.169974 0.838783 -0.517255 -0.156368 0.771642 -0.616536 -0.200113 0.761468 -0.61654 -0.179753 0.683995 -0.706994 -0.218508 0.672617 -0.706994 -0.190601 0.586712 -0.787045 -0.223826 0.574856 -0.787047 -0.187755 0.482216 -0.855696 -0.214965 0.470718 -0.855695 -0.170604 0.37358 -0.911774 -0.19165 0.363228 -0.911776 -0.138879 0.263213 -0.954689 -0.153677 0.254859 -0.954689 -0.0930417 0.154301 -0.983633 -0.101704 0.148734 -0.983633 -0.0342358 0.0500671 -0.998159 -0.0368371 0.0477741 -0.998179 -0.0375831 0.0480358 -0.998138 -0.0393192 0.0453707 -0.998196 -0.0407707 0.0456718 -0.998124 -0.0417144 0.0429228 -0.998207 -0.0437321 0.0430334 -0.998116 -0.0440325 0.040413 -0.998212 -0.0464554 0.0401291 -0.998114 -0.0462885 0.0378473 -0.998211 -0.0488971 0.0369986 -0.998118 -0.0484706 0.0352205 -0.998203 -0.0510443 0.0336679 -0.998129 -0.0505796 0.0324984 -0.998191 -0.0528666 0.0301419 -0.998147 -0.0526502 0.0297509 -0.99817 -0.0542708 0.0266865 -0.99817 -0.161676 0.0795004 -0.983636 -0.161705 0.0795494 -0.983628 -0.267078 0.131386 -0.954676 -0.267049 0.131335 -0.954692 -0.368498 0.181228 -0.911793 -0.368485 0.181202 -0.911803 -0.464359 0.228347 -0.855703 -0.464392 0.22842 -0.855666 -0.553597 0.272296 -0.78701 -0.553569 0.272224 -0.787055 -0.634637 0.312089 -0.706991 -0.634617 0.312026 -0.707036 -0.706484 0.347361 -0.616621 -0.706506 0.347463 -0.616537 -0.768086 0.377748 -0.517059 -0.768075 0.37766 -0.517139 -0.818353 0.402382 -0.410349 -0.818354 0.402404 -0.410327 -0.856804 0.421311 -0.297295 -0.856815 0.421212 -0.297404 -0.882745 0.433959 -0.180111 -0.88276 0.433902 -0.180179 -0.896238 0.440527 -0.0519014 -0.909929 0.40792 -0.0750351 0.978944 0.189873 -0.074951 0.972693 0.226219 -0.0519027 0.958063 0.222817 -0.180187 0.943779 0.277148 -0.180194 0.916064 0.269009 -0.297423 0.89923 0.320821 -0.297423 0.858951 0.306451 -0.410232 0.84004 0.355027 -0.41023 0.788375 0.333192 -0.517153 0.768096 0.3776 -0.517153 0.706536 0.347337 -0.616574 0.68554 0.387132 -0.616574 0.615788 0.347742 -0.707022 0.594928 0.382333 -0.707024 0.518968 0.333517 -0.787044 0.499079 0.362606 -0.787044 0.418679 0.304192 -0.855672 0.400629 0.327601 -0.855672 0.317879 0.259935 -0.911804 0.302522 0.277656 -0.911805 0.21926 0.201238 -0.954687 0.207411 0.21343 -0.954687 0.125586 0.12923 -0.98363 0.118018 0.136177 -0.98363 0.961588 0.264233 -0.0743575 0.957971 0.281264 -0.056415 0.943803 0.277104 -0.180137 0.926432 0.330566 -0.180137 0.899204 0.320851 -0.297466 0.879425 0.371649 -0.297472 0.840058 0.355012 -0.410207 0.818447 0.402342 -0.410203 0.768105 0.377594 -0.517143 0.745276 0.420865 -0.517143 0.68554 0.387132 -0.616574 0.66232 0.425642 -0.616572 0.594928 0.382333 -0.707024 0.572117 0.415691 -0.707024 0.499058 0.362608 -0.787055 0.477542 0.390509 -0.787055 0.400615 0.327602 -0.855678 0.381282 0.349912 -0.855678 0.302551 0.277659 -0.911794 0.286206 0.294477 -0.911795 0.207441 0.213436 -0.95468 0.194923 0.224927 -0.954679 0.11801 0.136174 -0.983631 0.110031 0.142699 -0.983631 0.9391 0.337274 -0.0658621 0.939613 0.335236 -0.0688746 0.926449 0.330539 -0.1801 0.906075 0.382878 -0.18009 0.879446 0.371626 -0.297437 0.856793 0.421233 -0.297438 0.818416 0.402365 -0.410242 0.794075 0.448495 -0.410241 0.745212 0.420898 -0.517208 0.719955 0.462772 -0.51721 0.662235 0.425671 -0.616643 0.636867 0.462763 -0.616645 0.572093 0.415696 -0.707041 0.547439 0.447664 -0.707042 0.477544 0.390509 -0.787054 0.454495 0.417108 -0.787054 0.381276 0.349912 -0.855681 0.360652 0.371133 -0.855681 0.286152 0.294469 -0.911814 0.268887 0.310311 -0.911815 0.194894 0.224919 -0.954687 0.181722 0.235691 -0.954687 0.110021 0.142695 -0.983633 0.101709 0.148734 -0.983633 0.919724 0.388725 -0.0547744 0.909924 0.407918 -0.0751113 0.89621 0.44058 -0.0519383 0.876095 0.476419 -0.0740492 0.869315 0.490954 -0.0570605 0.837585 0.542431 -0.0649678 0.839157 0.539366 -0.0700021 0.807878 0.586844 -0.0542996 0.795846 0.578104 -0.180071 0.761492 0.622661 -0.180065 0.73911 0.60436 -0.297431 0.703355 0.645622 -0.29743 0.671816 0.616672 -0.410341 0.63562 0.653917 -0.410342 0.596593 0.613766 -0.517076 0.560499 0.646891 -0.517081 0.515533 0.594994 -0.61661 0.480721 0.623461 -0.616607 0.431821 0.560041 -0.707026 0.399215 0.583734 -0.707023 0.348261 0.509229 -0.78702 0.318617 0.528286 -0.787018 0.267278 0.443162 -0.855669 0.241514 0.457715 -0.855668 0.191656 0.363225 -0.911776 0.170624 0.37357 -0.911775 0.123642 0.270707 -0.954689 0.10796 0.277333 -0.954689 0.0653623 0.167906 -0.983634 0.793061 0.604462 -0.0753625 0.773063 0.632194 -0.0520063 0.761448 0.622696 -0.180129 0.724732 0.66507 -0.180128 0.703472 0.645561 -0.297285 0.665468 0.684671 -0.297286 0.635586 0.653927 -0.410377 0.597121 0.68923 -0.410376 0.560446 0.646898 -0.51713 0.522637 0.677805 -0.517137 0.480734 0.623461 -0.616596 0.44435 0.649895 -0.616595 0.399102 0.583717 -0.707101 0.365126 0.60555 -0.707101 0.318522 0.528258 -0.787075 0.287818 0.545597 -0.787073 0.241442 0.457684 -0.855705 0.214959 0.470704 -0.855704 0.170592 0.373553 -0.911788 0.148992 0.382683 -0.911787 0.107981 0.277348 -0.954682 0.744541 0.663512 -0.0735611 0.73548 0.675098 -0.0575566 0.724632 0.66514 -0.180268 0.685505 0.705399 -0.180265 0.665394 0.684704 -0.297375 0.625314 0.721489 -0.297383 0.597313 0.689182 -0.410176 0.556929 0.722211 -0.410173 0.522684 0.677802 -0.517095 0.483136 0.706538 -0.517091 0.444406 0.649899 -0.616551 0.406656 0.674159 -0.616555 0.365292 0.605586 -0.706984 0.330051 0.625487 -0.706988 0.287913 0.545631 -0.787015 0.256292 0.561175 -0.787018 0.214978 0.470713 -0.855695 0.187712 0.482234 -0.855695 0.148951 0.382658 -0.911804 0.691991 0.719078 -0.0638467 0.695233 0.715236 -0.0713374 0.685609 0.705334 -0.180124 0.644122 0.743414 -0.180118 0.625173 0.721543 -0.297548 0.582943 0.75607 -0.297548 0.556849 0.722226 -0.410255 0.514736 0.752819 -0.410258 0.483093 0.706539 -0.51713 0.442031 0.732929 -0.51713 0.406581 0.674149 -0.616615 0.367382 0.696287 -0.616615 0.330021 0.625479 -0.70701 0.293792 0.643292 -0.707009 0.256288 0.561174 -0.78702 0.223838 0.574888 -0.78702 0.187777 0.482271 -0.85566 0.653874 0.754681 -0.0538955 0.634463 0.769267 -0.0754051 0.609873 0.790782 -0.0521357 0.573712 0.815777 -0.0732289 0.563394 0.824122 -0.0584057 0.510056 0.857833 -0.0629813 0.514996 0.854134 -0.0723537 0.466079 0.883133 -0.0533509 0.459113 0.869935 -0.180077 0.408675 0.894738 -0.180078 0.396661 0.868437 -0.297452 0.346413 0.889672 -0.297457 0.330892 0.84981 -0.410284 0.442428 0.893618 -0.0755228 0.414835 0.908391 -0.0523268 0.408607 0.894753 -0.180158 0.356899 0.916606 -0.180157 0.346412 0.889672 -0.297459 0.372806 0.925056 -0.072706 0.362185 0.930226 -0.0591719 0.356883 0.916608 -0.180175 0.301188 0.951549 -0.06198 0 0.997131 -0.0756983 -0.0284792 0.998192 -0.0529235 -0.0280528 0.983249 -0.180096 -0.0841152 0.980047 -0.180089 -0.0816471 0.951291 -0.297288 -0.135862 0.945075 -0.29728 -0.129773 0.902721 -0.410188 -0.18104 0.893851 -0.410189 -0.169901 0.838854 -0.517162 -0.217551 0.827776 -0.517164 -0.200121 0.761457 -0.616551 -0.243265 0.748791 -0.61655 -0.218514 0.672607 -0.707002 -0.256563 0.659036 -0.706998 -0.223809 0.5749 -0.78702 -0.256256 0.561188 -0.787021 -0.214958 0.470747 -0.855682 -0.241506 0.4577 -0.855679 -0.191652 0.363216 -0.91178 -0.212075 0.351681 -0.911781 -0.153678 0.254842 -0.954693 -0.167982 0.245651 -0.954693 -0.101704 0.148727 -0.983634 -0.11002 0.142685 -0.983634 -0.0763217 0.994497 -0.0717636 -0.0854188 0.994487 -0.0608174 -0.0841769 0.980028 -0.180163 -0.140098 0.973607 -0.180171 -0.135983 0.94501 -0.29743 -0.189597 0.935729 -0.297429 -0.181102 0.893802 -0.410268 -0.231843 0.882003 -0.410267 -0.21758 0.827744 -0.517203 -0.264567 0.813946 -0.517201 -0.243348 0.748665 -0.616671 -0.285612 0.733578 -0.616675 -0.256578 0.659006 -0.707022 -0.293786 0.643278 -0.707024 -0.256272 0.561138 -0.78705 -0.287868 0.545601 -0.787052 -0.241502 0.457721 -0.855668 -0.267265 0.443169 -0.85567 -0.212078 0.35166 -0.911789 -0.231806 0.338977 -0.91179 -0.167982 0.245646 -0.954694 -0.18171 0.235671 -0.954694 -0.110021 0.142693 -0.983633 -0.118003 0.136165 -0.983633 -0.142184 0.988021 -0.059982 -0.152234 0.985712 -0.0720938 -0.198334 0.978732 -0.0524224 -0.227229 0.970913 -0.0754714 -0.253751 0.965811 -0.0531071 -0.301004 0.950968 -0.0711138 -0.308476 0.949231 -0.061661 -0.362185 0.930226 -0.0591719 -0.356885 0.916612 -0.180157 -0.408669 0.894725 -0.180157 -0.396656 0.868424 -0.297494 -0.445516 0.844401 -0.297492 -0.425569 0.806595 -0.410239 -0.470942 0.780971 -0.410242 -0.441988 0.732956 -0.517129 -0.483123 0.706519 -0.51713 -0.444386 0.64987 -0.616596 -0.480726 0.623467 -0.616596 -0.431835 0.560058 -0.707003 -0.463098 0.534495 -0.707004 -0.403969 0.46625 -0.787032 -0.42992 0.442432 -0.787034 -0.360663 0.371159 -0.855665 -0.381306 0.34992 -0.855664 -0.302534 0.277632 -0.911808 -0.317872 0.259933 -0.911807 -0.230389 0.188395 -0.954687 -0.240777 0.174924 -0.954688 -0.145775 0.105905 -0.983633 -0.151591 0.0974001 -0.983633 -0.372806 0.925056 -0.072706 -0.414834 0.908391 -0.0523271 -0.408613 0.894767 -0.180076 -0.458885 0.870056 -0.180077 -0.445414 0.844514 -0.297325 -0.493103 0.817587 -0.297321 -0.470981 0.780908 -0.410317 -0.514721 0.752796 -0.410317 -0.483107 0.706558 -0.517091 -0.522653 0.677824 -0.517096 -0.48073 0.623454 -0.616607 -0.515551 0.594979 -0.61661 -0.463103 0.534451 -0.707035 -0.492865 0.507142 -0.70703 -0.429919 0.442372 -0.787068 -0.454509 0.417067 -0.787068 -0.381302 0.349891 -0.855678 -0.400603 0.327617 -0.855678 -0.31788 0.259966 -0.911795 -0.332235 0.241352 -0.911794 -0.240771 0.174908 -0.954692 -0.25035 0.160899 -0.954692 -0.151608 0.0974382 -0.983626 -0.156902 0.0886601 -0.983627 -0.442428 0.893618 -0.0755237 -0.466079 0.883133 -0.0533518 -0.459087 0.869886 -0.180382 -0.507963 0.84228 -0.180385 -0.493085 0.81761 -0.29729 -0.538856 0.788194 -0.297296 -0.514692 0.752849 -0.410256 -0.556906 0.722182 -0.410254 -0.522668 0.677782 -0.517136 -0.560481 0.646869 -0.517128 -0.515546 0.595007 -0.616587 -0.54869 0.56458 -0.616594 -0.492865 0.507138 -0.707033 -0.521006 0.478175 -0.707037 -0.454516 0.417151 -0.787019 -0.477579 0.390539 -0.787018 -0.400596 0.327586 -0.855693 -0.418663 0.304153 -0.855694 -0.33224 0.241369 -0.911788 -0.345463 0.22203 -0.911788 -0.250351 0.160901 -0.954691 -0.259128 0.14635 -0.954691 -0.156868 0.0885953 -0.983638 -0.509806 0.857411 -0.0703164 -0.515338 0.854701 -0.0625489 -0.50789 0.842348 -0.18027 -0.55522 0.811932 -0.180269 -0.538924 0.7881 -0.297422 -0.58297 0.756102 -0.297414 -0.556872 0.722254 -0.410174 -0.597179 0.689296 -0.41018 -0.560467 0.64692 -0.51708 -0.596512 0.613845 -0.517077 -0.548684 0.564627 -0.616556 -0.580034 0.532372 -0.616556 -0.521007 0.478195 -0.707023 -0.54748 0.447634 -0.707029 -0.47757 0.390474 -0.787056 -0.499049 0.36262 -0.787055 -0.418681 0.304223 -0.855661 -0.435362 0.279827 -0.855662 -0.34547 0.22205 -0.911781 -0.357569 0.201983 -0.911783 -0.259145 0.146386 -0.954681 -0.563394 0.824121 -0.0584078 -0.573711 0.815778 -0.0732292 -0.609872 0.790783 -0.0521362 -0.634463 0.769266 -0.0754063 -0.653874 0.754681 -0.0538968 -0.691713 0.71879 -0.0698225 -0.695609 0.715622 -0.0633469 -0.735489 0.675088 -0.0575552 -0.72466 0.665148 -0.180127 -0.761441 0.622705 -0.180129 -0.739056 0.604398 -0.297488 -0.772464 0.561073 -0.297483 -0.737841 0.535925 -0.410335 -0.767183 0.493006 -0.410336 -0.720006 0.46269 -0.517213 -0.745247 0.420835 -0.517208 -0.685504 0.387099 -0.616635 -0.744565 0.663481 -0.0735883 -0.773061 0.632192 -0.0520555 -0.761446 0.622694 -0.180143 -0.795803 0.578137 -0.180152 -0.772438 0.561163 -0.297381 -0.80316 0.516236 -0.297381 -0.767173 0.493105 -0.410237 -0.794052 0.448531 -0.410246 -0.745256 0.420969 -0.517087 -0.79303 0.604502 -0.0753783 -0.807905 0.586812 -0.0542303 -0.795841 0.57805 -0.180263 -0.827459 0.531806 -0.180259 -0.803169 0.516195 -0.297427 -0.831349 0.46947 -0.297415 -0.794057 0.448411 -0.410367 -0.837336 0.542321 -0.0689667 -0.839441 0.539616 -0.0644475 -0.827427 0.531893 -0.180152 -0.856466 0.483744 -0.180161 -0.831336 0.46955 -0.297326 -0.869287 0.491012 -0.0569804 -0.876104 0.4764 -0.0740519 -0.91972 0.388743 -0.0547151 -0.938957 0.337185 -0.0683147 -0.939833 0.335295 -0.0655089 -0.957962 0.281297 -0.0564002 -0.943787 0.277134 -0.180176 -0.958055 0.222866 -0.180169 -0.929943 0.216326 -0.297337 -0.940786 0.162822 -0.297341 -0.898633 0.155526 -0.410209 -0.906054 0.103899 -0.410209 -0.850293 0.0975048 -0.517199 -0.854465 0.0489401 -0.517198 -0.786059 0.0450221 -0.61651 -0.787352 0 -0.616504 -0.707209 0 -0.707005 -0.706054 -0.0403504 -0.707008 -0.615818 -0.0351935 -0.787102 -0.612805 -0.0703009 -0.787101 -0.514195 -0.0589884 -0.855642 -0.50999 -0.0882433 -0.855642 -0.404648 -0.0700161 -0.911788 -0.399998 -0.0929834 -0.911787 -0.289892 -0.0673881 -0.954684 -0.285563 -0.0838606 -0.954684 -0.172912 -0.0507788 -0.983627 -0.16974 -0.0605418 -0.983627 -0.0564419 -0.0201313 -0.998203 -0.0565706 -0.0231588 -0.99813 -0.055403 -0.0234146 -0.99819 -0.0546901 -0.0266498 -0.998148 -0.0542703 -0.0266874 -0.99817 -0.0526509 -0.0297495 -0.99817 -0.156898 -0.0886526 -0.983628 -0.151613 -0.0974158 -0.983628 -0.151585 -0.0974158 -0.983632 -0.145769 -0.105921 -0.983632 -0.145787 -0.105922 -0.983629 -0.139505 -0.114067 -0.983629 -0.139479 -0.114064 -0.983634 -0.132745 -0.121835 -0.983634 -0.132765 -0.121839 -0.98363 -0.125591 -0.12922 -0.983631 -0.125574 -0.129216 -0.983633 -0.117993 -0.136175 -0.983633 -0.117988 -0.136173 -0.983634 -0.110025 -0.142686 -0.983634 -0.110031 -0.142688 -0.983633 -0.101706 -0.148737 -0.983633 -0.101702 -0.148735 -0.983633 -0.0930367 -0.154304 -0.983633 -0.0930533 -0.154312 -0.98363 -0.0840984 -0.159369 -0.983631 -0.0840967 -0.159368 -0.983631 -0.0748528 -0.163912 -0.983631 -0.0748559 -0.163914 -0.98363 -0.0653805 -0.167918 -0.983631 -0.0653678 -0.167908 -0.983633 -0.0556774 -0.171367 -0.983633 -0.0556782 -0.171367 -0.983633 -0.045807 -0.174267 -0.983633 -0.045811 -0.17427 -0.983632 -0.0357814 -0.176602 -0.983632 -0.0357843 -0.176605 -0.983631 -0.0256464 -0.178359 -0.983631 -0.0256459 -0.178359 -0.983631 -0.0154185 -0.179531 -0.983631 -0.0154182 -0.179531 -0.983632 -0.00514593 -0.180118 -0.983632 -0.00514694 -0.180119 -0.983631 0.00514597 -0.180119 -0.983631 0.0051469 -0.180117 -0.983632 0.0154184 -0.179531 -0.983632 0.0154182 -0.179531 -0.983631 0.0256464 -0.178359 -0.983631 0.025646 -0.17836 -0.983631 0.0357822 -0.176606 -0.983631 0.0357836 -0.176602 -0.983632 0.0458081 -0.174271 -0.983632 0.0458099 -0.174266 -0.983633 0.0556776 -0.171367 -0.983633 0.0556779 -0.171366 -0.983633 0.0653759 -0.167905 -0.983633 0.0653727 -0.167921 -0.983631 0.074854 -0.163915 -0.98363 0.0748546 -0.163911 -0.983631 0.0840977 -0.159367 -0.983631 0.0840975 -0.159369 -0.983631 0.0930444 -0.154317 -0.98363 0.0930449 -0.154299 -0.983633 0.101707 -0.148731 -0.983633 0.101708 -0.148746 -0.983631 0.110034 -0.142697 -0.983631 0.110033 -0.142693 -0.983632 0.118 -0.136178 -0.983632 0.118001 -0.136181 -0.983631 0.125583 -0.129222 -0.983631 0.125582 -0.129219 -0.983632 0.132752 -0.12184 -0.983632 0.132752 -0.121839 -0.983632 0.139492 -0.114061 -0.983632 0.139492 -0.114061 -0.983632 0.145776 -0.105912 -0.983632 0.145777 -0.105915 -0.983632 0.151586 -0.0974192 -0.983632 0.151586 -0.0974186 -0.983632 0.1569 -0.0886058 -0.983632 0.156902 -0.0886093 -0.983631 0.161704 -0.0795078 -0.983631 0.161697 -0.0794965 -0.983633 0.165971 -0.0701389 -0.983633 0.165972 -0.0701409 -0.983633 0.169709 -0.0605446 -0.983633 0.169715 -0.0605524 -0.983631 0.172894 -0.0507675 -0.983631 0.172892 -0.0507658 -0.983632 0.175508 -0.0408152 -0.983632 0.175505 -0.0408118 -0.983632 0.17755 -0.0307237 -0.983632 0.177552 -0.030726 -0.983632 -0.961591 0.26421 -0.0744017 -0.972703 0.22617 -0.0519318 -0.958057 0.222764 -0.180287 -0.969238 0.167552 -0.180286 -0.940751 0.162627 -0.297557 -0.948491 0.108758 -0.29755 -0.906051 0.103892 -0.410217 -0.910491 0.0521792 -0.410224 -0.854482 0.0489694 -0.517168 -0.855881 0 -0.517172 -0.787352 0 -0.616504 -0.786069 -0.044933 -0.616504 -0.706045 -0.0403587 -0.707016 -0.702592 -0.0805901 -0.707015 -0.612817 -0.0702926 -0.787092 -0.607794 -0.105196 -0.787096 -0.509957 -0.0882623 -0.85566 -0.504079 -0.117265 -0.85566 -0.399895 -0.0930284 -0.911828 -0.393934 -0.115704 -0.911827 -0.285542 -0.0838674 -0.95469 -0.280292 -0.100025 -0.954689 -0.169686 -0.0605544 -0.983636 -0.165954 -0.0701411 -0.983636 -0.978946 0.18986 -0.0749562 -0.98383 0.170331 -0.055376 -0.969249 0.167806 -0.179992 -0.977238 0.112292 -0.179991 -0.948547 0.108996 -0.297284 -0.95323 0.0545342 -0.297284 -0.910451 0.0520868 -0.410325 -0.911941 0 -0.410322 -0.855881 0 -0.517172 -0.854483 -0.048941 -0.517168 -0.785993 -0.0450182 -0.616595 -0.782149 -0.0897473 -0.616594 -0.702562 -0.0806151 -0.707041 -0.696816 -0.120588 -0.707041 -0.607811 -0.105185 -0.787085 -0.600813 -0.139724 -0.787084 -0.50413 -0.117239 -0.855633 -0.496628 -0.145775 -0.855634 -0.394043 -0.115664 -0.911785 -0.386786 -0.138 -0.911785 -0.280326 -0.100016 -0.95468 -0.274169 -0.11583 -0.95468 -0.166003 -0.0701325 -0.983628 -0.161703 -0.0795459 -0.983628 -0.161678 -0.0795052 -0.983636 -0.156871 -0.0886009 -0.983637 -0.991115 0.114508 -0.0676624 -0.991292 0.113667 -0.0664809 -0.977214 0.112053 -0.180268 -0.982016 0.0561271 -0.180263 -0.953214 0.054481 -0.297345 -0.95477 0 -0.297345 -0.911941 0 -0.410322 -0.910446 -0.0521765 -0.410324 -0.854463 -0.0489682 -0.517199 -0.850295 -0.0974815 -0.5172 -0.78222 -0.089677 -0.616515 -0.775822 -0.134184 -0.616518 -0.69689 -0.120532 -0.706977 -0.688847 -0.160203 -0.706983 -0.600806 -0.139728 -0.787089 -0.591865 -0.173762 -0.787085 -0.496591 -0.145791 -0.855653 -0.487442 -0.173953 -0.855652 -0.386737 -0.138015 -0.911804 -0.378242 -0.159836 -0.911803 -0.274126 -0.115839 -0.954692 -0.267049 -0.131333 -0.954692 -0.267079 -0.131385 -0.954676 -0.259148 -0.14638 -0.954681 -0.25914 -0.146363 -0.954686 -0.250372 -0.160901 -0.954686 -0.99682 0.056962 -0.0557192 -0.996486 0.038147 -0.0745667 -0.998658 0 -0.0517878 -0.996486 -0.038152 -0.0745617 -0.99682 -0.0569521 -0.0557292 -0.991182 -0.114516 -0.0666646 -0.991199 -0.113657 -0.0678707 -0.983823 -0.170359 -0.0554047 -0.969191 -0.167826 -0.180288 -0.958034 -0.222861 -0.180286 -0.929896 -0.216315 -0.29749 -0.916046 -0.26899 -0.297496 -0.875066 -0.256957 -0.410163 -0.859005 -0.306399 -0.410159 -0.806216 -0.287569 -0.51703 -0.788498 -0.333093 -0.51703 -0.725272 -0.306383 -0.616531 -0.706482 -0.347514 -0.616536 -0.706444 -0.347339 -0.616679 -0.685432 -0.387124 -0.616699 -0.615778 -0.347783 -0.707011 -0.615768 -0.347744 -0.707039 -0.53718 -0.303362 -0.787025 -0.53718 -0.30336 -0.787026 -0.450568 -0.254448 -0.855713 -0.450587 -0.254498 -0.855688 -0.357546 -0.201947 -0.911799 -0.357554 -0.201965 -0.911793 -0.978952 -0.189836 -0.074932 -0.972713 -0.226131 -0.051909 -0.958095 -0.222733 -0.180124 -0.9438 -0.277124 -0.18012 -0.916056 -0.268977 -0.297478 -0.899229 -0.32077 -0.297477 -0.858987 -0.306415 -0.410184 -0.840075 -0.354999 -0.410183 -0.788397 -0.333161 -0.51714 -0.768075 -0.37766 -0.51714 -0.768095 -0.377821 -0.516993 -0.745351 -0.42089 -0.517014 -0.685504 -0.387095 -0.616637 -0.662274 -0.425612 -0.616642 -0.594965 -0.382355 -0.706981 -0.572158 -0.415706 -0.706982 -0.499074 -0.362607 -0.787046 -0.477566 -0.390498 -0.787046 -0.400628 -0.327588 -0.855677 -0.381281 -0.349916 -0.855677 -0.302543 -0.277656 -0.911798 -0.28619 -0.294485 -0.911797 -0.20742 -0.213433 -0.954685 -0.194892 -0.22493 -0.954685 -0.961591 -0.26421 -0.0744015 -0.957962 -0.281297 -0.0564007 -0.943793 -0.277136 -0.180137 -0.926417 -0.330609 -0.180136 -0.899143 -0.320875 -0.297626 -0.879332 -0.371743 -0.297627 -0.839958 -0.355097 -0.410337 -0.818354 -0.402403 -0.410328 -0.818353 -0.402382 -0.410349 -0.794006 -0.448504 -0.410366 -0.745231 -0.420953 -0.517137 -0.720055 -0.462704 -0.517132 -0.662312 -0.425599 -0.61661 -0.636868 -0.462807 -0.616611 -0.572074 -0.415722 -0.707041 -0.547481 -0.447616 -0.70704 -0.477616 -0.390495 -0.787017 -0.454546 -0.417118 -0.78702 -0.381316 -0.349918 -0.855661 -0.360674 -0.371156 -0.855662 -0.286164 -0.294481 -0.911807 -0.268893 -0.310335 -0.911805 -0.194893 -0.22493 -0.954685 -0.181742 -0.235683 -0.954685 -0.939098 -0.337281 -0.065844 -0.939604 -0.335275 -0.0688081 -0.926437 -0.330577 -0.180093 -0.906092 -0.382836 -0.180096 -0.879474 -0.37159 -0.2974 -0.856815 -0.421213 -0.297402 -0.856804 -0.42131 -0.297295 -0.831335 -0.469552 -0.297326 -0.794035 -0.448484 -0.41033 -0.767186 -0.493006 -0.410331 -0.720042 -0.46271 -0.517146 -0.692399 -0.503139 -0.517141 -0.636888 -0.462801 -0.616595 -0.609471 -0.498354 -0.616594 -0.547428 -0.447623 -0.707076 -0.52097 -0.478162 -0.707073 -0.454461 -0.417118 -0.787069 -0.429882 -0.44241 -0.787067 -0.360642 -0.371152 -0.855677 -0.338916 -0.391091 -0.855677 -0.268943 -0.310346 -0.911787 -0.250756 -0.325217 -0.911787 -0.181714 -0.235674 -0.954692 -0.167975 -0.245657 -0.954692 -0.919746 -0.388681 -0.054731 -0.909948 -0.407871 -0.0750686 -0.896207 -0.440595 -0.0518516 -0.876111 -0.476404 -0.0739548 -0.869329 -0.49094 -0.0569692 -0.837565 -0.54247 -0.0648879 -0.839132 -0.539416 -0.069904 -0.807869 -0.586863 -0.054214 -0.795809 -0.578102 -0.180237 -0.761419 -0.622702 -0.180233 -0.739066 -0.604421 -0.297416 -0.70339 -0.645591 -0.297415 -0.671861 -0.616653 -0.410295 -0.635595 -0.653971 -0.410293 -0.596551 -0.613798 -0.517086 -0.560512 -0.646872 -0.517091 -0.515544 -0.594975 -0.616619 -0.48074 -0.623436 -0.616617 -0.431833 -0.560012 -0.707041 -0.399154 -0.583756 -0.707039 -0.348182 -0.50921 -0.787067 -0.318537 -0.528263 -0.787066 -0.267221 -0.443159 -0.855689 -0.241471 -0.457702 -0.855687 -0.191607 -0.363188 -0.911801 -0.170586 -0.373525 -0.9118 -0.123634 -0.270716 -0.954687 -0.107969 -0.277336 -0.954687 -0.793003 -0.60454 -0.0753453 -0.773088 -0.632157 -0.052085 -0.761473 -0.622659 -0.180153 -0.724712 -0.665084 -0.180154 -0.703441 -0.645564 -0.297351 -0.665419 -0.684688 -0.297355 -0.635573 -0.653978 -0.410316 -0.597209 -0.689192 -0.410312 -0.560534 -0.646869 -0.517071 -0.522694 -0.677807 -0.517077 -0.480766 -0.623437 -0.616596 -0.444367 -0.649882 -0.616596 -0.399152 -0.583756 -0.707041 -0.365166 -0.6056 -0.707038 -0.318533 -0.528261 -0.787068 -0.287889 -0.545568 -0.787068 -0.241538 -0.45773 -0.855653 -0.215005 -0.470772 -0.855656 -0.170593 -0.373529 -0.911797 -0.148974 -0.382667 -0.911796 -0.107968 -0.277335 -0.954688 -0.0919633 -0.283046 -0.954687 -0.744574 -0.663466 -0.0736346 -0.735494 -0.675078 -0.0575957 -0.724652 -0.665127 -0.180239 -0.685544 -0.705369 -0.180234 -0.665436 -0.68468 -0.297334 -0.625294 -0.721524 -0.29734 -0.597263 -0.689178 -0.410257 -0.556831 -0.72224 -0.410255 -0.522581 -0.677816 -0.51718 -0.483116 -0.706489 -0.517178 -0.444409 -0.649886 -0.616562 -0.406596 -0.674185 -0.616567 -0.365243 -0.605616 -0.706984 -0.33006 -0.625483 -0.706988 -0.287891 -0.545569 -0.787066 -0.25624 -0.561133 -0.787065 -0.214969 -0.470754 -0.855675 -0.187756 -0.482253 -0.855675 -0.148988 -0.382676 -0.91179 -0.126902 -0.390555 -0.911791 -0.0919713 -0.283052 -0.954685 -0.0756654 -0.28784 -0.954685 -0.692002 -0.719063 -0.0638891 -0.695209 -0.715263 -0.0712973 -0.685574 -0.705351 -0.180193 -0.644105 -0.743411 -0.180192 -0.625179 -0.721568 -0.297475 -0.582959 -0.756088 -0.297471 -0.556858 -0.722235 -0.410228 -0.514806 -0.752786 -0.41023 -0.483144 -0.706488 -0.517152 -0.441983 -0.732942 -0.517153 -0.406548 -0.674178 -0.616606 -0.367386 -0.696295 -0.616605 -0.330017 -0.625471 -0.707018 -0.293779 -0.643287 -0.707018 -0.256265 -0.561143 -0.787049 -0.223807 -0.574859 -0.78705 -0.187752 -0.482251 -0.855677 -0.15992 -0.492181 -0.855677 -0.126899 -0.390553 -0.911792 -0.10439 -0.397162 -0.911792 -0.0756532 -0.287829 -0.954689 -0.059101 -0.29168 -0.954688 -0.653914 -0.754648 -0.0538809 -0.634436 -0.769283 -0.0754644 -0.609828 -0.790814 -0.0521802 -0.573737 -0.815759 -0.073233 -0.563427 -0.824098 -0.0584207 -0.510036 -0.857842 -0.0630013 -0.51503 -0.854103 -0.0724756 -0.466036 -0.88315 -0.0534463 -0.459069 -0.869948 -0.180128 -0.408645 -0.894742 -0.18013 -0.396643 -0.868463 -0.2974 -0.346432 -0.889683 -0.297404 -0.330912 -0.849825 -0.410238 -0.281814 -0.867343 -0.41024 -0.264485 -0.814009 -0.517143 -0.21758 -0.827781 -0.517143 -0.200135 -0.761411 -0.616603 -0.156342 -0.771596 -0.616601 -0.140437 -0.693099 -0.70703 -0.100629 -0.699991 -0.707026 -0.0877788 -0.610602 -0.787058 -0.0527874 -0.61462 -0.787055 -0.044284 -0.515613 -0.855676 -0.0147831 -0.5173 -0.855676 -0.0117307 -0.410487 -0.911791 0.011725 -0.410487 -0.911791 0.00849749 -0.297494 -0.954686 0.0254656 -0.296524 -0.954686 -0.442447 -0.893606 -0.0755601 -0.414848 -0.908383 -0.0523592 -0.408621 -0.894747 -0.180158 -0.356883 -0.916612 -0.180157 -0.346399 -0.889684 -0.297441 -0.29498 -0.908029 -0.29744 -0.28176 -0.867335 -0.410295 -0.231826 -0.881997 -0.41029 -0.217576 -0.82778 -0.517147 -0.169975 -0.838849 -0.517147 -0.156348 -0.7716 -0.616595 -0.11205 -0.779266 -0.616595 -0.100653 -0.700008 -0.707006 -0.0605205 -0.704611 -0.707008 -0.0527913 -0.614624 -0.787052 -0.0176169 -0.616635 -0.787052 -0.0147788 -0.517295 -0.855679 0.014783 -0.517295 -0.855679 0.0117304 -0.410479 -0.911794 0.0351418 -0.409138 -0.911795 0.0254687 -0.296519 -0.954687 0.0423571 -0.29458 -0.954688 -0.372828 -0.925045 -0.0727352 -0.362171 -0.930233 -0.0591557 -0.356869 -0.916614 -0.180174 -0.303914 -0.935508 -0.180169 -0.294987 -0.908029 -0.297432 -0.242737 -0.923371 -0.29743 -0.231862 -0.882005 -0.410252 -0.181106 -0.893808 -0.410253 -0.16997 -0.838847 -0.517152 -0.121794 -0.847183 -0.517153 -0.112028 -0.779254 -0.616614 -0.067355 -0.784381 -0.616611 -0.0605039 -0.704598 -0.707023 -0.0201954 -0.706903 -0.707023 -0.0176166 -0.616635 -0.787052 0.0176169 -0.616635 -0.787052 0.0147789 -0.5173 -0.855676 0.044278 -0.515614 -0.855676 0.0351354 -0.409149 -0.911791 0.0584455 -0.406475 -0.911791 0.0423567 -0.294581 -0.954687 0.059102 -0.291684 -0.954687 -0.30113 -0.951568 -0.0619651 -0.308157 -0.948465 -0.0738503 -0.303947 -0.935505 -0.180131 -0.250063 -0.951325 -0.180134 -0.242714 -0.923369 -0.297455 -0.189597 -0.935723 -0.297449 -0.181104 -0.893808 -0.410255 -0.129785 -0.902688 -0.410256 -0.121806 -0.847189 -0.517141 -0.0732544 -0.85276 -0.51714 -0.067382 -0.784399 -0.616585 -0.0224916 -0.786966 -0.616586 -0.0202036 -0.70691 -0.707015 0.0201956 -0.70691 -0.707015 0.0176166 -0.616635 -0.787052 0.0527877 -0.614624 -0.787052 0.0442834 -0.515606 -0.855681 0.0736525 -0.512237 -0.85568 0.0584454 -0.406475 -0.911791 0.0815555 -0.402476 -0.911791 0.0591042 -0.291679 -0.954688 0.0756622 -0.287827 -0.954689 -0.253863 -0.965779 -0.0531497 -0.227215 -0.970904 -0.0756209 -0.198301 -0.978731 -0.0525577 -0.152244 -0.985701 -0.0722112 -0.142063 -0.988041 -0.0599421 -0.0764153 -0.995215 -0.0608893 -0.0853523 -0.993507 -0.075225 -0.0284978 -0.998196 -0.0528481 -0.0280707 -0.983237 -0.180156 0.0280876 -0.983237 -0.180156 0.0272625 -0.954354 -0.29743 0.0816985 -0.951242 -0.29743 0.0780383 -0.908626 -0.410255 0.129785 -0.902689 -0.410255 0.121805 -0.847182 -0.517153 0.169975 -0.838846 -0.517152 0.156348 -0.771595 -0.616601 0.200146 -0.761409 -0.616602 0.179791 -0.683975 -0.707003 0.218536 -0.6726 -0.707002 0.190621 -0.586686 -0.78706 0.223802 -0.574846 -0.787061 0.187754 -0.482255 -0.855675 0.214992 -0.470744 -0.855674 0.170591 -0.373523 -0.9118 0.19162 -0.363181 -0.911801 0.138888 -0.263237 -0.954681 0.153696 -0.254877 -0.954681 0 -0.997135 -0.075638 0.0284978 -0.998196 -0.0528481 0.0280708 -0.983241 -0.180136 0.0841637 -0.980036 -0.180128 0.0816912 -0.951245 -0.297421 0.135874 -0.945031 -0.297412 0.129786 -0.902688 -0.410256 0.181106 -0.893807 -0.410255 0.169971 -0.83885 -0.517147 0.21758 -0.827779 -0.517147 0.200137 -0.76142 -0.616591 0.243306 -0.748746 -0.616589 0.218552 -0.67257 -0.707025 0.256552 -0.65901 -0.707027 0.223794 -0.574865 -0.787049 0.256283 -0.561136 -0.787049 0.214995 -0.470735 -0.855679 0.241477 -0.457714 -0.855679 0.191616 -0.363204 -0.911793 0.212069 -0.351654 -0.911793 0.153697 -0.25486 -0.954685 0.167986 -0.245677 -0.954685 0.0763603 -0.994499 -0.0716964 0.0854366 -0.994488 -0.0607751 0.0841942 -0.980026 -0.180165 0.14 -0.973621 -0.180174 0.135888 -0.945024 -0.29743 0.189598 -0.935729 -0.297429 0.181105 -0.893808 -0.410253 0.23183 -0.882013 -0.410253 0.217576 -0.827783 -0.517143 0.264515 -0.814 -0.517143 0.243309 -0.748741 -0.616594 0.285614 -0.733647 -0.616593 0.256555 -0.659003 -0.707032 0.293773 -0.643273 -0.707034 0.256274 -0.561162 -0.787033 0.287873 -0.54563 -0.78703 0.24148 -0.457697 -0.855687 0.267265 -0.443134 -0.855688 0.212072 -0.351623 -0.911804 0.231792 -0.338947 -0.911804 0.167986 -0.245645 -0.954693 0.181724 -0.235662 -0.954693 0.142063 -0.988041 -0.0599421 0.152244 -0.985701 -0.0722112 0.198301 -0.978731 -0.0525576 0.227215 -0.970904 -0.0756209 0.253864 -0.965779 -0.0531499 0.300946 -0.950988 -0.0710917 0.308413 -0.949253 -0.0616465 0.362171 -0.930233 -0.0591557 0.35687 -0.916617 -0.180157 0.408642 -0.894737 -0.180158 0.396639 -0.868456 -0.297426 0.445553 -0.844406 -0.297425 0.425588 -0.806568 -0.410271 0.470924 -0.780965 -0.410273 0.44197 -0.73295 -0.517153 0.483124 -0.706501 -0.517153 0.444394 -0.649863 -0.616597 0.480749 -0.623449 -0.616597 0.431849 -0.560034 -0.707013 0.463107 -0.534476 -0.707013 0.403967 -0.466222 -0.78705 0.429929 -0.442394 -0.78705 0.360668 -0.371125 -0.855678 0.381273 -0.349923 -0.855678 0.302545 -0.277669 -0.911793 0.317902 -0.259945 -0.911793 0.230396 -0.188392 -0.954686 0.240773 -0.174935 -0.954686 0.372828 -0.925045 -0.0727352 0.414849 -0.908383 -0.0523589 0.408624 -0.894751 -0.180131 0.458997 -0.869986 -0.18013 0.44552 -0.844442 -0.297373 0.493024 -0.817619 -0.297367 0.470923 -0.780967 -0.410271 0.514794 -0.752771 -0.410273 0.483135 -0.706476 -0.517177 0.522656 -0.677759 -0.517177 0.480755 -0.623424 -0.616617 0.515517 -0.594998 -0.616619 0.463104 -0.534505 -0.706993 0.49289 -0.507169 -0.706993 0.429929 -0.442384 -0.787057 0.454484 -0.417116 -0.787057 0.381273 -0.349924 -0.855678 0.400624 -0.327592 -0.855678 0.317904 -0.259952 -0.911791 0.332226 -0.241378 -0.911791 0.240772 -0.174932 -0.954687 0.250366 -0.160901 -0.954687 0.442447 -0.893606 -0.0755592 0.466036 -0.88315 -0.0534454 0.459061 -0.869932 -0.180226 0.507978 -0.842303 -0.180235 0.493063 -0.817571 -0.297435 0.53891 -0.788105 -0.297435 0.514774 -0.752808 -0.41023 0.556839 -0.722248 -0.410229 0.52262 -0.677865 -0.517077 0.560519 -0.646881 -0.517072 0.515525 -0.594955 -0.616655 0.548669 -0.564531 -0.616658 0.492892 -0.507141 -0.707012 0.521026 -0.478191 -0.707012 0.454485 -0.417121 -0.787054 0.477559 -0.390492 -0.787054 0.400622 -0.327582 -0.855682 0.418669 -0.304178 -0.855682 0.332225 -0.241374 -0.911792 0.345461 -0.222017 -0.911792 0.250367 -0.160903 -0.954687 0.259143 -0.146349 -0.954687 0.509783 -0.857417 -0.0704141 0.515377 -0.854677 -0.0625601 0.507938 -0.842341 -0.18017 0.55515 -0.812001 -0.180174 0.53886 -0.788174 -0.297342 0.582983 -0.756122 -0.297338 0.556849 -0.722227 -0.410253 0.597225 -0.689212 -0.410255 0.560525 -0.646859 -0.517092 0.5965 -0.613847 -0.517088 0.548658 -0.564614 -0.616591 0.580031 -0.532332 -0.616592 0.521026 -0.478179 -0.70702 0.547464 -0.447667 -0.70702 0.47756 -0.390506 -0.787046 0.499073 -0.362608 -0.787046 0.418672 -0.304193 -0.855675 0.435359 -0.27979 -0.855675 0.345461 -0.222016 -0.911793 0.357569 -0.201938 -0.911793 0.259144 -0.146352 -0.954686 0.267081 -0.13131 -0.954686 0.563426 -0.824099 -0.0584186 0.573737 -0.815759 -0.0732326 0.609829 -0.790813 -0.0521797 0.634436 -0.769283 -0.0754632 0.653914 -0.754648 -0.0538796 0.691728 -0.718777 -0.0697968 0.69558 -0.715646 -0.0633947 0.735485 -0.675088 -0.057597 0.724655 -0.665147 -0.180154 0.761472 -0.62266 -0.180153 0.739104 -0.60437 -0.297426 0.772394 -0.561199 -0.297427 0.737791 -0.536057 -0.410253 0.767215 -0.493025 -0.410253 0.720049 -0.462715 -0.517131 0.745248 -0.420924 -0.517135 0.68551 -0.387183 -0.616575 0.706516 -0.347374 -0.616577 0.634627 -0.312028 -0.707027 0.651421 -0.275256 -0.707026 0.568216 -0.240098 -0.787073 0.580988 -0.2073 -0.78707 0.487427 -0.173917 -0.855668 0.496559 -0.145807 -0.855669 0.394014 -0.115696 -0.911794 0.399979 -0.0930072 -0.911793 0.289876 -0.0674051 -0.954688 0.293252 -0.0507482 -0.954687 0.744549 -0.663497 -0.0736074 0.77309 -0.632158 -0.0520358 0.761473 -0.622658 -0.180156 0.795768 -0.578184 -0.180156 0.772394 -0.561201 -0.297424 0.803209 -0.516132 -0.297426 0.767217 -0.493004 -0.410274 0.7941 -0.448422 -0.410271 0.745242 -0.420832 -0.517218 0.768064 -0.377585 -0.517211 0.706504 -0.347321 -0.61662 0.725176 -0.30644 -0.616615 0.651428 -0.275276 -0.707011 0.666064 -0.237682 -0.707012 0.581002 -0.207328 -0.787052 0.591903 -0.173781 -0.787052 0.496543 -0.145784 -0.855682 0.504052 -0.117222 -0.855682 0.399991 -0.0930218 -0.911786 0.404647 -0.0700306 -0.911788 0.293257 -0.0507528 -0.954686 0.793035 -0.604501 -0.0753295 0.807842 -0.586895 -0.0542834 0.795789 -0.578138 -0.180214 0.827506 -0.531751 -0.180209 0.803208 -0.516137 -0.297421 0.83134 -0.469484 -0.297421 0.794099 -0.448453 -0.41024 0.818401 -0.402394 -0.410241 0.768072 -0.377648 -0.517153 0.788385 -0.33317 -0.517153 0.725182 -0.306461 -0.616598 0.741495 -0.264563 -0.616597 0.666047 -0.237644 -0.707041 0.678531 -0.199233 -0.707038 0.591914 -0.1738 -0.78704 0.600864 -0.139736 -0.787043 0.504051 -0.117221 -0.855682 0.509924 -0.0882394 -0.855682 0.404637 -0.07002 -0.911793 0.837354 -0.542281 -0.0690634 0.839468 -0.539565 -0.0645256 0.827468 -0.531851 -0.180084 0.856489 -0.48373 -0.180091 0.831333 -0.469523 -0.297378 0.856776 -0.421303 -0.297385 0.818402 -0.402433 -0.410202 0.840049 -0.355031 -0.410207 0.78839 -0.333199 -0.517127 0.806119 -0.287655 -0.517133 0.741507 -0.264598 -0.616567 0.755409 -0.221807 -0.616571 0.678531 -0.199234 -0.707037 0.688803 -0.160173 -0.707033 0.600854 -0.139721 -0.787053 0.60785 -0.105195 -0.787053 0.509933 -0.0882496 -0.855676 0.869357 -0.490881 -0.0570493 0.876101 -0.476422 -0.0739511 0.896179 -0.440648 -0.0518881 0.909943 -0.407869 -0.0751448 0.91975 -0.388663 -0.0547903 0.938928 -0.337258 -0.0683506 0.939805 -0.335366 -0.0655415 0.957971 -0.281264 -0.0564155 0.943803 -0.277104 -0.180138 0.958079 -0.222788 -0.180142 0.929926 -0.216241 -0.297452 0.940753 -0.162816 -0.297445 0.898617 -0.155524 -0.410244 0.961588 -0.264233 -0.0743574 0.972703 -0.226181 -0.0518799 0.958079 -0.222781 -0.18015 0.96923 -0.167748 -0.180149 0.940754 -0.162819 -0.297442 0.97895 -0.189849 -0.0749267 0.983848 -0.170258 -0.0552846 0.969229 -0.167728 -0.180172 0.991132 -0.11442 -0.0675614 0.0613424 -0.00198739 -0.998115 0.0597635 0 -0.998213 0.0613424 0.00198739 -0.998115 0.0597167 0.00341456 -0.99821 0.0609835 0.00594403 -0.998121 0.0595743 0.00683649 -0.9982 0.0602674 0.00984596 -0.998134 0.0593392 0.0102682 -0.998185 0.0592094 0.0136585 -0.998152 0.059006 0.0137221 -0.998163 0.057928 0.0170074 -0.998176 0.172893 0.0507607 -0.983632 0.172884 0.0507635 -0.983633 0.285559 0.0838481 -0.954686 0.285554 0.0838498 -0.954687 0.394014 0.115698 -0.911794 0.394016 0.115697 -0.911793 0.496539 0.145801 -0.855682 0.496564 0.14579 -0.855669 0.591917 0.173786 -0.78704 0.591898 0.173795 -0.787052 0.678532 0.199233 -0.707037 0.678531 0.199233 -0.707037 0.755405 0.221805 -0.616576 0.755409 0.221802 -0.616572 0.82123 0.241129 -0.517144 0.821228 0.241131 -0.517147 0.87503 0.256928 -0.410257 0.0597162 -0.00341498 -0.99821 0.0609826 -0.0059446 -0.998121 0.0593392 -0.0102682 -0.998185 0.0592093 -0.0136585 -0.998152 0.059006 -0.0137221 -0.998163 0.0579272 -0.0170094 -0.998176 0.0583682 -0.0175131 -0.998142 0.0565778 -0.0201845 -0.998194 0.0573514 -0.0213436 -0.998126 0.0551548 -0.0233065 -0.998206 0.0559881 -0.025069 -0.998117 0.0536421 -0.0263752 -0.998212 0.0542849 -0.0286634 -0.998114 0.0520515 -0.029395 -0.998212 0.0522681 -0.032088 -0.998117 0.0503763 -0.0323752 -0.998205 0.0499523 -0.0353135 -0.998127 0.0486144 -0.0353204 -0.998193 0.0473621 -0.0383103 -0.998143 0.0467601 -0.038235 -0.998174 0.0446099 -0.0409429 -0.998165 0.0446902 -0.0412106 -0.998151 0.0419537 -0.0431697 -0.998187 0.0421329 -0.0442313 -0.998132 0.0392594 -0.0453073 -0.998201 0.0393078 -0.047017 -0.99812 0.0365203 -0.0473613 -0.99821 0.0362375 -0.0495383 -0.998115 0.0337356 -0.049333 -0.998213 0.0329522 -0.0517766 -0.998115 0.0308886 -0.0512298 -0.998209 0.029476 -0.0536994 -0.998122 0.0279942 -0.0530497 -0.998199 0.0258499 -0.0553071 -0.998135 0.0250263 -0.0548025 -0.998184 0.0221043 -0.0565726 -0.998154 0.0219926 -0.0564838 -0.998161 0.0186474 -0.0573938 -0.998177 0.0184619 -0.0580993 -0.99814 0.0152662 -0.0580784 -0.998195 0.0147209 -0.0594092 -0.998125 0.0118868 -0.0586684 -0.998207 0.0108699 -0.0603757 -0.998117 0.00850702 -0.0591625 -0.998212 0.0069443 -0.0609927 -0.998114 0.00511533 -0.0595624 -0.998212 0.00297756 -0.0612502 -0.998118 0.0017105 -0.0598707 -0.998205 -0.000990578 -0.0611499 -0.998128 -0.00171665 -0.060086 -0.998192 -0.00492439 -0.0606928 -0.998144 -0.00517079 -0.0602081 -0.998172 -0.00861343 -0.0599025 -0.998167 -0.00883213 -0.0601707 -0.998149 -0.0119489 -0.0589747 -0.998188 -0.0127689 -0.059756 -0.998131 -0.0152367 -0.0579661 -0.998202 -0.0166613 -0.0589854 -0.99812 -0.0184781 -0.0568727 -0.99821 -0.0204733 -0.0578662 -0.998114 -0.0216837 -0.0556906 -0.998213 -0.0241712 -0.0564027 -0.998115 -0.0248541 -0.0544254 -0.998208 -0.0277183 -0.0546183 -0.998123 -0.0280011 -0.0530628 -0.998199 -0.0310796 -0.0525177 -0.998136 -0.03112 -0.0516134 -0.998182 -0.0342374 -0.0501338 -0.998156 -0.0342318 -0.0500611 -0.998159 -0.0368338 -0.0477678 -0.998179 -0.0375793 -0.0480293 -0.998139 -0.0393122 -0.0453698 -0.998196 -0.0407713 -0.0456724 -0.998124 -0.0417158 -0.042921 -0.998207 -0.0437308 -0.0430315 -0.998116 -0.0440312 -0.0404125 -0.998212 -0.0464553 -0.0401284 -0.998114 -0.0462885 -0.0378479 -0.998211 -0.0488977 -0.036999 -0.998118 -0.0484711 -0.0352209 -0.998203 -0.0510462 -0.0336674 -0.998129 -0.0505827 -0.0325009 -0.998191 -0.0528694 -0.0301443 -0.998146 -0.0581134 -0.0195077 -0.998119 -0.05737 -0.0168527 -0.998211 -0.172887 -0.0507863 -0.983632 -0.175509 -0.0408105 -0.983632 -0.289861 -0.0674002 -0.954693 -0.293235 -0.0507486 -0.954692 -0.404627 -0.0700267 -0.911797 -0.407966 -0.0468114 -0.911796 -0.514179 -0.0589987 -0.855651 -0.516714 -0.0294973 -0.85565 -0.615862 -0.0351572 -0.787069 -0.616862 0 -0.787071 -0.707209 0 -0.707005 -0.706059 0.040366 -0.707002 -0.785998 0.0449362 -0.616594 -0.782158 0.0896555 -0.616596 -0.850272 0.097463 -0.517242 -0.84331 0.145896 -0.517246 -0.898614 0.155464 -0.410274 -0.888265 0.206538 -0.410278 -0.929931 0.216226 -0.297447 -0.916053 0.269024 -0.297443 -0.943784 0.277168 -0.180138 -0.926449 0.33052 -0.180137 -0.05934 -0.0157306 -0.998114 -0.0582147 -0.0135335 -0.998212 -0.175524 -0.0408051 -0.983629 -0.177567 -0.0307311 -0.983629 -0.293234 -0.0507493 -0.954693 -0.29565 -0.0339368 -0.954693 -0.40794 -0.0468263 -0.911807 -0.409949 -0.0234339 -0.911807 -0.516664 -0.029534 -0.855679 -0.517508 0 -0.855679 -0.616862 0 -0.787071 -0.615855 0.0351956 -0.787073 -0.706046 0.04035 -0.707016 -0.70259 0.0806055 -0.707015 -0.782212 0.0897402 -0.616516 -0.775801 0.134318 -0.616516 -0.843361 0.146016 -0.517128 -0.833657 0.193901 -0.517125 -0.888282 0.206607 -0.410206 -0.875047 0.256951 -0.410207 -0.916051 0.268992 -0.297478 -0.899187 0.320892 -0.297476 -0.926436 0.330617 -0.180025 -0.906053 0.382966 -0.180016 -0.0602053 -0.0118464 -0.998116 -0.0589637 -0.0102017 -0.998208 -0.177582 -0.0307246 -0.983626 -0.179048 -0.020529 -0.983626 -0.29571 -0.033905 -0.954676 -0.297166 -0.0169721 -0.954675 -0.409978 -0.0234151 -0.911795 -0.410648 0 -0.911794 -0.517507 0 -0.855679 -0.516665 0.0294945 -0.855679 -0.615815 0.0351546 -0.787106 -0.612796 0.0702794 -0.78711 -0.702567 0.0805749 -0.707041 -0.696823 0.12054 -0.707041 -0.77573 0.13419 -0.616633 -0.766796 0.178305 -0.616629 -0.833638 0.193848 -0.517176 -0.821209 0.241138 -0.517174 -0.875046 0.256947 -0.410211 -0.858973 0.30641 -0.410217 -0.899186 0.320755 -0.297626 -0.879408 0.371562 -0.29763 -0.906078 0.382831 -0.180175 -0.0607174 -0.00791228 -0.998124 -0.0596227 -0.00684431 -0.998197 -0.179007 -0.0205489 -0.983633 -0.179887 -0.0102978 -0.983633 -0.297106 -0.0170082 -0.954693 -0.297593 0 -0.954693 -0.410648 0 -0.911794 -0.409981 0.023439 -0.911793 -0.516716 0.0295412 -0.855647 -0.51419 0.0589965 -0.855645 -0.612826 0.0703137 -0.787084 -0.60781 0.105201 -0.787083 -0.696874 0.120616 -0.706979 -0.688842 0.160226 -0.706983 -0.766824 0.178364 -0.616577 -0.75541 0.22179 -0.616575 -0.821199 0.241106 -0.517204 -0.806102 0.287579 -0.517202 -0.858977 0.306443 -0.410184 -0.840023 0.355124 -0.410182 -0.879397 0.37177 -0.297403 -0.0608784 -0.00394865 -0.998137 -0.0601971 -0.00344248 -0.998181 -0.179904 -0.0102881 -0.98363 -0.180198 0 -0.98363 -0.297593 0 -0.954693 -0.297107 0.0169687 -0.954693 -0.409951 0.0234136 -0.911807 -0.407942 0.0468087 -0.911807 -0.514194 0.0590004 -0.855642 -0.509987 0.0882676 -0.855642 -0.607808 0.105198 -0.787085 -0.600812 0.13973 -0.787083 -0.688826 0.160199 -0.707004 -0.678559 0.199242 -0.707008 -0.755418 0.22181 -0.616558 -0.741503 0.264641 -0.616554 -0.806133 0.287707 -0.517083 -0.788426 0.333173 -0.517088 -0.840012 0.354972 -0.410335 -0.0606809 0 -0.998157 -0.0606809 0 -0.998157 -0.180198 0 -0.98363 -0.179904 0.0102988 -0.98363 -0.297162 0.0170115 -0.954675 -0.295707 0.0339434 -0.954676 -0.407963 0.046829 -0.911797 -0.404629 0.0700129 -0.911797 -0.509961 0.0882384 -0.85566 -0.504086 0.117229 -0.85566 -0.600807 0.139722 -0.787089 -0.591856 0.173793 -0.787085 -0.678565 0.199254 -0.706999 -0.666067 0.237707 -0.707001 -0.741498 0.264627 -0.616566 -0.725231 0.30642 -0.61656 -0.788416 0.333117 -0.517139 -0.0601971 0.00344204 -0.998181 -0.0608792 0.00394871 -0.998137 -0.0596238 0.00684532 -0.998197 -0.0607164 0.00791126 -0.998124 -0.0589616 0.0102013 -0.998208 -0.060204 0.0118475 -0.998116 -0.0582147 0.0135335 -0.998212 -0.0593401 0.0157306 -0.998114 -0.0573727 0.0168513 -0.998211 -0.0581173 0.019509 -0.998119 -0.056442 0.0201341 -0.998203 -0.0565708 0.0231633 -0.99813 -0.055402 0.0234193 -0.998189 -0.0546903 0.0266489 -0.998148 -0.0342413 0.0501387 -0.998155 -0.031122 0.0516195 -0.998182 -0.0930412 0.15432 -0.98363 -0.0841013 0.159368 -0.983631 -0.138883 0.263176 -0.954699 -0.123628 0.270677 -0.954699 -0.170612 0.373545 -0.911787 -0.148965 0.382695 -0.911786 -0.187732 0.482287 -0.855661 -0.159907 0.492215 -0.85566 -0.190604 0.586705 -0.78705 -0.156824 0.596628 -0.787046 -0.179778 0.683955 -0.707026 -0.14047 0.693092 -0.70703 -0.156385 0.771622 -0.616558 -0.111985 0.779306 -0.616557 -0.121747 0.847243 -0.517066 -0.0732572 0.852806 -0.517064 -0.0780528 0.908634 -0.410235 -0.0258952 0.911617 -0.410225 -0.0271094 0.954361 -0.297422 0.0271644 0.95436 -0.297421 0.0279867 0.983251 -0.180096 0.0841781 0.980042 -0.180088 -0.0310819 0.0525203 -0.998136 -0.0280062 0.0530649 -0.998198 -0.0841025 0.159354 -0.983633 -0.0748463 0.163904 -0.983633 -0.123621 0.270715 -0.954689 -0.107973 0.277328 -0.954689 -0.148978 0.382648 -0.911804 -0.126923 0.390516 -0.911805 -0.159945 0.492119 -0.855708 -0.131584 0.500443 -0.855712 -0.156858 0.596565 -0.787087 -0.122568 0.604539 -0.78709 -0.14051 0.693035 -0.707078 -0.100675 0.699934 -0.707077 -0.112077 0.779207 -0.616664 -0.0673392 0.784343 -0.616661 -0.0732195 0.852836 -0.517021 -0.0244134 0.855622 -0.517025 -0.0260093 0.911554 -0.410356 0.0258936 0.911557 -0.410357 0.0271089 0.954341 -0.297485 0.0816418 0.951229 -0.297486 0.084114 0.980034 -0.180163 0.140109 0.973606 -0.180171 -0.0277233 0.0546216 -0.998122 -0.0248484 0.054428 -0.998209 -0.074842 0.163934 -0.983628 -0.0653735 0.167935 -0.983628 -0.107967 0.277352 -0.954683 -0.0919704 0.283061 -0.954682 -0.126903 0.390575 -0.911782 -0.104392 0.397185 -0.911782 -0.131551 0.500515 -0.855675 -0.102745 0.507217 -0.855672 -0.122486 0.604672 -0.787 -0.0877523 0.610681 -0.787 -0.100592 0.700037 -0.706986 -0.0605399 0.70463 -0.706987 -0.0673849 0.7843 -0.616712 -0.0225738 0.786863 -0.616714 -0.0245438 0.855531 -0.517169 0.0244109 0.855534 -0.517171 0.026011 0.911613 -0.410227 0.0781481 0.908626 -0.410234 0.0818163 0.951276 -0.297289 0.13599 0.945056 -0.297279 0.140098 0.973605 -0.180185 0.195357 0.964037 -0.18019 -0.024169 0.0563944 -0.998116 -0.021683 0.0556829 -0.998213 -0.0653806 0.1679 -0.983634 -0.0556875 0.171359 -0.983634 -0.0919788 0.283033 -0.95469 -0.0756448 0.287828 -0.95469 -0.104388 0.397196 -0.911778 -0.0815356 0.402507 -0.911779 -0.102746 0.507215 -0.855673 -0.0737028 0.512242 -0.855673 -0.0878467 0.610543 -0.787096 -0.0528337 0.614565 -0.787095 -0.0605733 0.704593 -0.707022 -0.0201826 0.706903 -0.707022 -0.0224681 0.786953 -0.616604 0.0225764 0.786951 -0.616602 0.0245463 0.855617 -0.517027 0.0732594 0.852833 -0.51702 0.0780487 0.908586 -0.410342 0.129764 0.902652 -0.410342 0.135855 0.945029 -0.297429 0.189663 0.935716 -0.297428 0.195403 0.964038 -0.180136 0.249953 0.951354 -0.180134 -0.0204676 0.0578672 -0.998114 -0.0184768 0.0568759 -0.99821 -0.0556788 0.171392 -0.983628 -0.0458117 0.174291 -0.983628 -0.0756504 0.287813 -0.954694 -0.0591279 0.291656 -0.954694 -0.0815811 0.40241 -0.911817 -0.0584362 0.406415 -0.911818 -0.0736622 0.512309 -0.855636 -0.0442819 0.515679 -0.855637 -0.0527793 0.614635 -0.787044 -0.0175515 0.616648 -0.787043 -0.0201221 0.706964 -0.706964 0.0201843 0.706963 -0.706963 0.0224657 0.786868 -0.616713 0.0673357 0.784303 -0.616712 0.0732173 0.85281 -0.517063 0.121923 0.847219 -0.517064 0.129907 0.902701 -0.410189 0.18111 0.893837 -0.410188 0.189593 0.935706 -0.297505 0.242663 0.923365 -0.29751 0.250018 0.951352 -0.180059 -0.0166652 0.0589826 -0.99812 -0.0152425 0.0579647 -0.998202 -0.0458228 0.174256 -0.983634 -0.0357886 0.176589 -0.983634 -0.0591149 0.291687 -0.954685 -0.0423255 0.294591 -0.954686 -0.058401 0.40648 -0.911792 -0.0351823 0.409143 -0.911792 -0.0443365 0.5156 -0.855682 -0.0147869 0.51729 -0.855682 -0.0176246 0.616564 -0.787107 0.0175491 0.616565 -0.787108 0.0201205 0.706906 -0.707021 0.0605369 0.704596 -0.707022 0.0673882 0.784338 -0.616662 0.111973 0.779221 -0.616665 0.121731 0.847129 -0.517256 0.16989 0.838799 -0.517256 0.181034 0.893816 -0.410267 0.231833 0.882006 -0.410268 0.242705 0.923368 -0.297465 -0.0127683 0.0597594 -0.998131 -0.0119451 0.058975 -0.998188 -0.0357746 0.176625 -0.983628 -0.0256435 0.178379 -0.983628 -0.0423446 0.294552 -0.954697 -0.0254744 0.296489 -0.954696 -0.0351572 0.409184 -0.911774 -0.0116911 0.410528 -0.911773 -0.0147334 0.517359 -0.855642 0.0147888 0.517359 -0.855641 0.0176269 0.616645 -0.787044 0.0528394 0.614631 -0.787043 0.0605762 0.704627 -0.706988 0.100688 0.700025 -0.706985 0.112089 0.77929 -0.616558 0.156365 0.771626 -0.616558 0.169985 0.838837 -0.517164 0.217586 0.827767 -0.517163 0.231844 0.882008 -0.410256 -0.0088307 0.0601701 -0.998149 -0.00861446 0.0599049 -0.998167 -0.0256494 0.178366 -0.98363 -0.0154121 0.179539 -0.98363 -0.0254544 0.296524 -0.954686 -0.00850547 0.297493 -0.954686 -0.0117354 0.410465 -0.911801 0.0116893 0.410465 -0.911801 0.0147315 0.517293 -0.855682 0.0442754 0.515604 -0.855682 0.0527738 0.614571 -0.787094 0.0877346 0.610558 -0.787097 0.10058 0.699949 -0.707075 0.14046 0.693045 -0.707079 0.156389 0.771638 -0.616537 0.200124 0.761466 -0.616539 0.217545 0.827753 -0.517202 -0.00517491 0.0602102 -0.998172 -0.00492801 0.060696 -0.998144 -0.001716 0.0600883 -0.998192 -0.000991303 0.0611503 -0.998128 0.00170979 0.0598711 -0.998205 0.00298187 0.061256 -0.998118 0.00511971 0.059568 -0.998211 0.0069446 0.0609951 -0.998114 0.00850793 0.0591641 -0.998212 0.0108702 0.060377 -0.998116 0.0118842 0.0586745 -0.998206 0.0147199 0.0594157 -0.998125 0.0152706 0.0580716 -0.998196 0.018463 0.0580925 -0.99814 0.0446874 0.0412086 -0.998151 0.0446065 0.040939 -0.998165 0.13276 0.121845 -0.98363 0.139502 0.114064 -0.98363 0.2304 0.188388 -0.954686 0.240782 0.174924 -0.954686 0.332241 0.241367 -0.911788 0.345464 0.222028 -0.911789 0.435331 0.279786 -0.855691 0.450602 0.254465 -0.85569 0.537168 0.303351 -0.787038 0.553603 0.272199 -0.78704 0.634623 0.312036 -0.707027 0.651414 0.27527 -0.707026 0.725224 0.30646 -0.616549 0.741532 0.264561 -0.616553 0.806128 0.287608 -0.517145 0.0467568 0.0382317 -0.998174 0.0473595 0.0383071 -0.998143 0.0486116 0.0353184 -0.998193 0.049952 0.0353115 -0.998127 0.0503759 0.0323743 -0.998205 0.0522658 0.0320875 -0.998118 0.0520494 0.0293942 -0.998212 0.0542829 0.0286626 -0.998114 0.0536402 0.0263743 -0.998212 0.0559822 0.0250704 -0.998117 0.05515 0.0233096 -0.998206 0.0573511 0.0213431 -0.998126 0.0565802 0.0201881 -0.998194 0.0583717 0.0175142 -0.998141 -0.0272624 -0.954351 -0.297441 -0.0272715 -0.954354 -0.29743 -0.0816909 -0.951242 -0.29743 -0.081699 -0.951244 -0.297421 -0.135889 -0.945029 -0.297412 -0.135873 -0.945026 -0.297429 -0.189615 -0.935726 -0.297429 -0.0260498 -0.911601 -0.410251 -0.0260408 -0.911596 -0.410261 -0.0780381 -0.90862 -0.410269 -0.0780506 -0.908625 -0.410255 -0.129786 -0.902688 -0.410255 0.0272715 -0.954351 -0.297441 0.0260497 -0.911596 -0.410261 0.0260409 -0.911601 -0.410251 0.0244397 -0.855547 -0.517148 0.0244327 -0.855552 -0.517141 0.0224741 -0.786967 -0.616585 0.0224912 -0.786953 -0.616603 0.0202034 -0.706902 -0.707023 -0.0244398 -0.855551 -0.517141 -0.0244326 -0.855547 -0.517148 -0.0732518 -0.852759 -0.517143 -0.0224737 -0.786953 -0.616604 -0.00849732 -0.297488 -0.954688 -0.00850094 -0.297493 -0.954686 -0.0254692 -0.296524 -0.954686 -0.0254652 -0.296519 -0.954687 -0.0423566 -0.29458 -0.954688 -0.0423573 -0.294581 -0.954687 -0.0591052 -0.291684 -0.954687 0.0085008 -0.297488 -0.954688 0.983636 0 -0.180168 0.983636 0 -0.180168 0.982032 -0.0561404 -0.180169 0.982035 -0.0561574 -0.180149 0.954747 0 -0.29742 0.954747 0 -0.29742 0.95319 -0.0545079 -0.297419 0.95319 -0.0545094 -0.297417 0.982034 0.0561478 -0.180158 0.982033 0.0561503 -0.180161 0.977223 0.112138 -0.180166 0.977222 0.112141 -0.18017 0.969231 0.167718 -0.180171 0.911972 0 -0.410252 0.911972 0 -0.410252 0.910483 -0.0520671 -0.410256 0.910479 -0.0520572 -0.410267 0.95319 0.0545003 -0.297419 0.953191 0.0544987 -0.297417 0.948525 0.108827 -0.297418 0.948517 0.108843 -0.297437 0.940754 0.162817 -0.297443 0.940768 0.162793 -0.297413 0.929939 0.216243 -0.297409 0.85589 0 -0.517158 0.85589 0 -0.517158 0.854496 -0.0488564 -0.517155 0.854498 -0.0488599 -0.517152 0.910484 0.0520576 -0.410256 0.910483 0.0520585 -0.410257 0.906028 0.103957 -0.41025 0.906032 0.103952 -0.410245 0.898619 0.155512 -0.410244 0.898611 0.155523 -0.410258 0.888268 0.206557 -0.410261 0.888271 0.206554 -0.410257 0.787283 0 -0.616592 0.787283 0 -0.616592 0.785999 -0.0449431 -0.616592 0.785997 -0.0449405 -0.616594 0.854496 0.0488599 -0.517155 0.854498 0.0488567 -0.517151 0.850314 0.0975653 -0.517153 0.850315 0.0975642 -0.517152 0.843357 0.145944 -0.517155 0.843354 0.145948 -0.51716 0.833645 0.193866 -0.517157 0.833654 0.193857 -0.517146 0.707199 0 -0.707015 0.707199 0 -0.707015 0.706043 -0.040369 -0.707017 0.706044 -0.0403705 -0.707016 0.785993 0.0449475 -0.616599 0.785997 0.0449432 -0.616594 0.782149 0.0897451 -0.616595 0.78215 0.0897441 -0.616594 0.775747 0.134269 -0.616594 0.775771 0.134248 -0.616568 0.766845 0.178318 -0.616565 0.766832 0.178328 -0.616578 0.616882 0 -0.787056 0.616882 0 -0.787056 0.615879 -0.035215 -0.787053 0.615887 -0.0352233 -0.787047 0.706049 0.0403708 -0.707012 0.706044 0.0403755 -0.707016 0.70259 0.0806092 -0.707015 0.702582 0.0806155 -0.707021 0.696834 0.120599 -0.707021 0.696822 0.120608 -0.707031 0.6888 0.160173 -0.707035 0.688803 0.16017 -0.707033 0.517516 0 -0.855673 0.517517 0 -0.855673 0.516673 -0.0295491 -0.855673 0.516664 -0.0295416 -0.855678 0.615873 0.0352225 -0.787058 0.615882 0.0352152 -0.787051 0.612863 0.0703184 -0.787054 0.612868 0.0703152 -0.787051 0.607853 0.105196 -0.78705 0.607849 0.105199 -0.787053 0.600852 0.139733 -0.787052 0.600867 0.139725 -0.787043 0.410647 0 -0.911794 0.410647 0 -0.911794 0.409977 -0.0234414 -0.911795 0.40998 -0.0234443 -0.911793 0.516673 0.0295463 -0.855673 0.516669 0.0295489 -0.855675 0.514144 0.0589868 -0.855673 0.514138 0.0589909 -0.855676 0.509934 0.0882412 -0.855676 0.509922 0.0882479 -0.855682 0.504051 0.117222 -0.855682 0.504052 0.117221 -0.855681 0.297611 0 -0.954687 0.297611 0 -0.954687 0.297124 -0.0169908 -0.954688 0.297122 -0.0169892 -0.954688 0.409981 0.0234443 -0.911793 0.40998 0.023445 -0.911793 0.407973 0.0468072 -0.911793 0.407975 0.0468062 -0.911793 0.404637 0.070019 -0.911793 0.404635 0.0700199 -0.911794 0.399973 0.0930193 -0.911794 0.399976 0.0930182 -0.911793 0.180191 0 -0.983632 0.180191 0 -0.983632 0.179897 -0.0102863 -0.983632 0.179899 -0.0102878 -0.983631 0.297124 0.0169894 -0.954688 0.297122 0.0169906 -0.954688 0.295666 0.033928 -0.954689 0.295676 0.0339231 -0.954686 0.293257 0.0507493 -0.954686 0.293263 0.0507467 -0.954684 0.289889 0.0674106 -0.954683 0.289878 0.0674151 -0.954686 0.179897 0.0102864 -0.983632 0.179897 0.0102864 -0.983632 0.179015 0.020543 -0.983632 0.179016 0.0205423 -0.983632 0.177553 0.0307242 -0.983632 0.177549 0.0307256 -0.983632 0.175504 0.0408143 -0.983632 0.175509 0.0408127 -0.983632 0.741516 0.264571 -0.616568 0.666042 0.237642 -0.707046 0.66605 0.237638 -0.70704 0.581023 0.207302 -0.787044 0.58101 0.207307 -0.787052 0.487406 0.173909 -0.855682 0.487433 0.173899 -0.855668 0.386777 0.137989 -0.911791 0.386773 0.13799 -0.911792 0.280311 0.100007 -0.954685 0.280304 0.100009 -0.954687 0.169707 0.0605496 -0.983633 0.169702 0.0605507 -0.983633 0.906033 0.382938 -0.180175 0.88271 0.434004 -0.180178 0.856773 0.421252 -0.297467 0.831326 0.469477 -0.297471 0.794119 0.448466 -0.410187 0.767241 0.493044 -0.410181 0.72006 0.462725 -0.517106 0.692467 0.503084 -0.517104 0.636939 0.462743 -0.616585 0.60951 0.498317 -0.616586 0.547538 0.447651 -0.706973 0.521066 0.478208 -0.70697 0.454491 0.417108 -0.787057 0.429931 0.44238 -0.787057 0.360694 0.371138 -0.855662 0.338945 0.391101 -0.855661 0.268939 0.310323 -0.911796 0.250719 0.325221 -0.911796 0.181691 0.235681 -0.954695 0.167976 0.245646 -0.954695 0.101706 0.148732 -0.983633 0.0930331 0.154307 -0.983633 0.651381 0.275285 -0.707051 0.568236 0.240153 -0.787042 0.568245 0.24015 -0.787036 0.553612 0.272197 -0.787034 0.476674 0.20147 -0.855682 0.476693 0.201464 -0.855673 0.464422 0.228335 -0.855672 0.464409 0.228338 -0.855679 0.450625 0.254461 -0.855679 0.378259 0.159868 -0.911791 0.37825 0.15987 -0.911794 0.368519 0.181175 -0.911794 0.368506 0.181178 -0.911799 0.35755 0.201937 -0.9118 0.357599 0.201931 -0.911782 0.345483 0.222027 -0.911781 0.274141 0.115856 -0.954685 0.274129 0.115859 -0.954689 0.267072 0.131308 -0.954689 0.267083 0.131306 -0.954686 0.259147 0.146346 -0.954686 0.259124 0.146348 -0.954692 0.250346 0.160901 -0.954692 0.250367 0.1609 -0.954687 0.240778 0.174924 -0.954687 0.165971 0.070144 -0.983633 0.165972 0.0701437 -0.983633 0.161697 0.0795046 -0.983633 0.161706 0.0795036 -0.983631 0.156902 0.0886085 -0.983631 0.156906 0.0886083 -0.98363 0.151593 0.0974219 -0.98363 0.151579 0.0974219 -0.983632 0.145774 0.105911 -0.983633 0.145784 0.105911 -0.983631 0.139498 0.114064 -0.983631 0.882744 0.43396 -0.180114 0.856485 0.483729 -0.180111 0.831295 0.469503 -0.297515 0.803137 0.516189 -0.297523 0.767181 0.49308 -0.410252 0.737778 0.536076 -0.410251 0.692405 0.503107 -0.517163 0.662602 0.541757 -0.517164 0.60948 0.498324 -0.61661 0.580014 0.532329 -0.616612 0.521046 0.478209 -0.706984 0.492924 0.507149 -0.706983 0.429974 0.442382 -0.787032 0.404008 0.466216 -0.787032 0.338911 0.391096 -0.855677 0.315996 0.409833 -0.855677 0.250768 0.325235 -0.911777 0.231823 0.339 -0.911777 0.167985 0.245649 -0.954692 0.15367 0.254847 -0.954693 0.0930497 0.154315 -0.98363 0.0841079 0.159364 -0.983631 0.856497 0.483716 -0.18009 0.827525 0.531764 -0.180084 0.803206 0.516137 -0.297428 0.772417 0.561168 -0.297427 0.737837 0.536046 -0.410185 0.70602 0.57731 -0.410181 0.662558 0.541771 -0.517205 0.630569 0.578686 -0.517209 0.580049 0.532323 -0.616583 0.548672 0.564611 -0.616582 0.492833 0.50715 -0.707046 0.463059 0.534471 -0.707049 0.403915 0.466206 -0.787086 0.376691 0.488465 -0.787087 0.316064 0.409849 -0.855645 0.292128 0.427236 -0.855646 0.231787 0.338988 -0.91179 0.212066 0.351666 -0.911789 0.153685 0.254855 -0.954688 0.138897 0.263203 -0.954689 0.0840958 0.159357 -0.983633 0.0748313 0.163911 -0.983633 0.795753 0.578186 -0.180214 0.772373 0.561198 -0.297485 0.705977 0.577329 -0.410228 0.739065 0.604387 -0.297488 0.827448 0.53184 -0.180209 0.630573 0.578685 -0.517206 0.671922 0.616632 -0.410227 0.548658 0.564612 -0.616593 0.59645 0.613794 -0.517208 0.644115 0.743418 -0.180128 0.600707 0.778912 -0.180129 0.583062 0.756032 -0.297412 0.538835 0.788161 -0.29742 0.514678 0.752826 -0.410317 0.470926 0.780942 -0.410315 0.441972 0.732927 -0.517183 0.399416 0.756961 -0.517182 0.367403 0.696291 -0.616598 0.327043 0.71614 -0.616593 0.293772 0.643285 -0.707024 0.256555 0.659015 -0.707021 0.223796 0.574867 -0.787047 0.515564 0.594993 -0.616585 0.463124 0.534473 -0.707004 0.431852 0.560044 -0.707004 0.376652 0.488459 -0.78711 0.348107 0.509194 -0.787111 0.292064 0.427218 -0.855677 0.267256 0.443155 -0.85568 0.212086 0.351675 -0.911781 0.191645 0.36322 -0.91178 0.138864 0.263186 -0.954699 0.123608 0.270686 -0.954699 0.0748574 0.163928 -0.983628 0.0653915 0.167928 -0.983628 0.600715 0.778908 -0.180119 0.555236 0.811955 -0.180115 0.538946 0.788133 -0.297295 0.493108 0.817596 -0.29729 0.470998 0.780937 -0.410243 0.425596 0.806579 -0.410241 0.399415 0.756961 -0.517183 0.35556 0.778519 -0.51719 0.327074 0.716148 -0.616567 0.285599 0.733671 -0.616571 0.256534 0.659007 -0.707036 0.555111 0.812006 -0.180271 0.507974 0.842297 -0.180271 0.493081 0.817602 -0.29732 0.445541 0.844447 -0.297324 0.425562 0.80658 -0.410275 0.378856 0.829545 -0.410272 0.355552 0.778518 -0.517197 0.310415 0.797592 -0.517195 0.285529 0.733649 -0.61663 0.458859 0.870006 -0.180383 0.445389 0.844468 -0.297492 0.37886 0.829545 -0.410268 0.396623 0.86844 -0.297493 0.507879 0.84233 -0.180388 0.31059 0.797629 -0.517033 0.33091 0.849812 -0.410266 0.20011 0.76146 -0.616551 0.179786 0.683986 -0.706994 0.179744 0.683963 -0.707026 0.140519 0.693081 -0.707031 0.15687 0.596616 -0.787046 0.15681 0.596577 -0.787087 0.122464 0.604562 -0.787088 0.122591 0.604653 -0.786998 0.087864 0.610663 -0.787001 0.131536 0.500457 -0.855711 0.131599 0.500503 -0.855674 0.102747 0.507216 -0.855672 0.102745 0.507215 -0.855673 0.0736537 0.51225 -0.855672 0.0737117 0.512303 -0.855636 0.0443428 0.515673 -0.855637 0.104386 0.397186 -0.911782 0.104395 0.397194 -0.911778 0.0815978 0.402493 -0.911779 0.0815184 0.402421 -0.911818 0.0583928 0.406422 -0.911818 0.0584447 0.406474 -0.911791 0.0351538 0.409146 -0.911791 0.0351856 0.409182 -0.911774 0.0117372 0.410526 -0.911773 0.0756539 0.287826 -0.95469 0.0756413 0.287815 -0.954694 0.0591095 0.291661 -0.954694 0.0591334 0.291684 -0.954685 0.0423496 0.294587 -0.954686 0.0423203 0.294555 -0.954697 0.0254516 0.296492 -0.954696 0.0254772 0.296523 -0.954686 0.00848507 0.297494 -0.954686 0.00850637 0.297523 -0.954677 -0.0084859 0.297523 -0.954677 0.0458304 0.174285 -0.983628 0.0458039 0.174261 -0.983634 0.0357684 0.176594 -0.983634 0.0357952 0.176622 -0.983628 0.0256511 0.178377 -0.983628 0.0256418 0.178367 -0.98363 0.0154307 0.179537 -0.98363 0.0154096 0.17951 -0.983636 0.00514316 0.180096 -0.983636 0.00513639 0.180086 -0.983637 -0.00514288 0.180086 -0.983637 -0.00513668 0.180096 -0.983636 -0.0154283 0.179508 -0.983635 -0.140109 0.973603 -0.180185 -0.195401 0.964028 -0.18019 -0.189657 0.935692 -0.297506 -0.242702 0.923355 -0.29751 -0.231834 0.882011 -0.410256 -0.281756 0.867352 -0.410262 -0.264453 0.814087 -0.517037 -0.31045 0.797682 -0.517034 -0.285546 0.733693 -0.61657 -0.32705 0.716158 -0.616567 -0.293777 0.643299 -0.707009 -0.330041 0.625468 -0.707009 -0.287878 0.545564 -0.787074 -0.318579 0.528225 -0.787074 -0.267268 0.443147 -0.85568 -0.2921 0.427194 -0.855677 -0.231805 0.339013 -0.911777 -0.250743 0.325252 -0.911778 -0.181712 0.235707 -0.954685 -0.194907 0.224919 -0.954685 -0.118005 0.136175 -0.983632 -0.125582 0.12922 -0.983632 -0.195358 0.964047 -0.180136 -0.250015 0.951338 -0.180134 -0.242667 0.923378 -0.297465 -0.294934 0.908035 -0.297467 -0.281729 0.867379 -0.410223 -0.330918 0.84983 -0.410222 -0.310555 0.797535 -0.517197 -0.355558 0.778515 -0.517198 -0.327066 0.716129 -0.616594 -0.367389 0.696298 -0.616599 -0.330032 0.625497 -0.706989 -0.365185 0.605648 -0.706986 -0.31856 0.528321 -0.787018 -0.348171 0.509287 -0.787022 -0.292094 0.42726 -0.855646 -0.316018 0.409883 -0.855645 -0.250743 0.325219 -0.91179 -0.268916 0.310361 -0.91179 -0.19491 0.22495 -0.954677 -0.20743 0.213458 -0.954677 -0.125585 0.129234 -0.98363 -0.132762 0.121849 -0.98363 -0.249957 0.951368 -0.180058 -0.303921 0.935528 -0.180057 -0.294978 0.908 -0.297528 -0.34646 0.889631 -0.297527 -0.330947 0.849797 -0.410266 -0.378856 0.829547 -0.410268 -0.355553 0.778522 -0.517189 -0.399415 0.756961 -0.517183 -0.367397 0.69628 -0.616615 -0.406631 0.67412 -0.616614 -0.365231 0.605485 -0.707102 -0.399172 0.583671 -0.7071 -0.348194 0.509131 -0.787113 -0.376673 0.488442 -0.78711 -0.31602 0.409792 -0.855688 -0.338939 0.391049 -0.855687 -0.268907 0.310251 -0.91183 -0.28615 0.294426 -0.911829 -0.207424 0.213423 -0.954686 -0.219273 0.201231 -0.954686 -0.132758 0.121835 -0.983632 -0.139496 0.114058 -0.983632 -0.356898 0.916603 -0.180175 -0.346412 0.889673 -0.297457 -0.378859 0.829543 -0.410272 -0.396629 0.868452 -0.297452 -0.304007 0.935478 -0.180171 -0.399415 0.756961 -0.517183 -0.42559 0.806565 -0.410275 -0.406605 0.674191 -0.616554 -0.442014 0.732902 -0.517183 -0.555128 0.812029 -0.180114 -0.600708 0.778914 -0.180119 -0.583036 0.755999 -0.297548 -0.62528 0.721451 -0.297545 -0.597254 0.689113 -0.410379 -0.635608 0.653906 -0.410378 -0.596541 0.613715 -0.517198 -0.630562 0.578708 -0.517193 -0.580036 0.532337 -0.616584 -0.60952 0.498312 -0.61658 -0.547477 0.447588 -0.70706 -0.572084 0.415677 -0.707059 -0.499047 0.362608 -0.787063 -0.518955 0.333489 -0.787064 -0.435339 0.279756 -0.855697 -0.450581 0.254482 -0.855696 -0.35755 0.20194 -0.9118 -0.444369 0.649924 -0.61655 -0.399147 0.583784 -0.707021 -0.43184 0.560028 -0.707024 -0.37667 0.488481 -0.787087 -0.403972 0.466157 -0.787086 -0.33894 0.391115 -0.855657 -0.360664 0.371175 -0.855658 -0.28616 0.2945 -0.911802 -0.302537 0.277648 -0.911802 -0.219274 0.201234 -0.954685 -0.230392 0.188405 -0.954685 -0.139504 0.11408 -0.983628 -0.145786 0.105933 -0.983628 -0.600714 0.778908 -0.180128 -0.644121 0.743412 -0.180127 -0.625207 0.721582 -0.297381 -0.665447 0.684653 -0.297373 -0.635596 0.65394 -0.410341 -0.671916 0.616564 -0.410339 -0.630575 0.578629 -0.517266 -0.662583 0.541685 -0.517263 -0.60952 0.498304 -0.616586 -0.636862 0.462848 -0.616587 -0.572098 0.415779 -0.706988 -0.594938 0.382383 -0.706988 -0.518973 0.333558 -0.787023 -0.53718 0.303361 -0.787026 -0.450568 0.254449 -0.855713 -0.644116 0.743419 -0.180117 -0.685523 0.705418 -0.180123 -0.665413 0.684723 -0.297287 -0.703404 0.645634 -0.297288 -0.671878 0.616697 -0.4102 -0.706013 0.577305 -0.410201 -0.662573 0.541784 -0.517173 -0.692379 0.503133 -0.517174 -0.636859 0.462788 -0.616635 -0.662292 0.4256 -0.616632 -0.594924 0.382308 -0.70704 -0.615767 0.347745 -0.707039 -0.537182 0.303365 -0.787023 -0.724721 0.665044 -0.180266 -0.703449 0.645525 -0.297417 -0.705986 0.577429 -0.410073 -0.739034 0.604459 -0.297417 -0.685591 0.705316 -0.180264 -0.692377 0.50317 -0.51714 -0.7378 0.53618 -0.410075 -0.662299 0.425674 -0.616572 -0.720007 0.462763 -0.517146 -0.856459 0.483767 -0.180133 -0.685516 0.387173 -0.616575 -0.615777 0.347785 -0.707011 -0.72524 0.306454 -0.616532 -0.651376 0.275242 -0.707072 -0.651394 0.275291 -0.707036 -0.568264 0.240158 -0.78702 -0.568236 0.240098 -0.787058 -0.476694 0.201418 -0.855683 -0.47671 0.201449 -0.855667 -0.378241 0.159838 -0.911803 -0.378241 0.159838 -0.911803 -0.274159 0.115855 -0.95468 -0.274135 0.115818 -0.954692 -0.165963 0.0701181 -0.983636 -0.165993 0.0701629 -0.983628 -0.666028 0.237619 -0.707067 -0.580945 0.207264 -0.787112 -0.581016 0.2074 -0.787023 -0.487429 0.173993 -0.855652 -0.487395 0.173937 -0.855682 -0.386776 0.138029 -0.911785 -0.386748 0.137986 -0.911804 -0.280298 0.100007 -0.954689 -0.280319 0.100035 -0.95468 -0.169719 0.0605662 -0.98363 -0.169694 0.0605338 -0.983636 -0.591831 0.173752 -0.787112 -0.496599 0.145767 -0.855653 -0.496621 0.1458 -0.855634 -0.504122 0.117275 -0.855633 -0.394022 0.115729 -0.911786 -0.393952 0.115637 -0.911828 -0.399909 0.092976 -0.911827 -0.399967 0.0930451 -0.911794 -0.404634 0.0700181 -0.911794 -0.285546 0.0838557 -0.954689 -0.285559 0.0838724 -0.954684 -0.289887 0.0674061 -0.954684 -0.289876 0.0673941 -0.954689 -0.293245 0.0507514 -0.954689 -0.293235 0.0507414 -0.954693 -0.295655 0.0338987 -0.954693 -0.1729 0.0507835 -0.983629 -0.17289 0.0507724 -0.983632 -0.175512 0.0408021 -0.983631 -0.175523 0.0408135 -0.983629 -0.177569 0.0307223 -0.983629 -0.177581 0.0307336 -0.983626 -0.179044 0.0205558 -0.983626 -0.179005 0.0205241 -0.983634 -0.179886 0.0102857 -0.983634 -0.982014 0.0561159 -0.180276 -0.983614 0 -0.180286 -0.95477 0 -0.297345 -0.953211 -0.0545421 -0.297344 -0.910492 -0.0520977 -0.410233 -0.906042 -0.103897 -0.410236 -0.850278 -0.0975029 -0.517225 -0.843311 -0.145983 -0.517219 -0.775713 -0.134281 -0.616634 -0.766785 -0.178355 -0.616628 -0.688821 -0.160221 -0.707004 -0.678556 -0.199252 -0.707008 -0.591822 -0.173783 -0.787113 -0.580911 -0.207363 -0.787111 -0.487379 -0.173976 -0.855683 -0.476685 -0.201439 -0.855683 -0.378238 -0.159837 -0.911805 -0.368484 -0.181195 -0.911805 -0.368499 -0.181226 -0.911792 -0.983614 0 -0.180286 -0.982011 -0.0561363 -0.180288 -0.953233 -0.0544913 -0.297284 -0.948575 -0.10875 -0.297286 -0.906056 -0.103875 -0.410209 -0.898638 -0.155495 -0.41021 -0.843361 -0.14593 -0.517153 -0.833647 -0.193851 -0.51716 -0.766836 -0.178315 -0.616576 -0.755406 -0.221806 -0.616574 -0.678568 -0.199245 -0.706999 -0.666077 -0.237675 -0.707002 -0.581011 -0.207321 -0.787048 -0.568245 -0.240101 -0.787051 -0.476719 -0.201429 -0.855667 -0.464394 -0.228416 -0.855666 -0.464361 -0.228342 -0.855704 -0.982019 -0.0561064 -0.180252 -0.977194 -0.112268 -0.180245 -0.948467 -0.108968 -0.297552 -0.94072 -0.16281 -0.297555 -0.898617 -0.155523 -0.410245 -0.888276 -0.20657 -0.410238 -0.833634 -0.193863 -0.517176 -0.821217 -0.241111 -0.517174 -0.755424 -0.221794 -0.616557 -0.741508 -0.26463 -0.616553 -0.666037 -0.237695 -0.707033 -0.651415 -0.275254 -0.707031 -0.568233 -0.240106 -0.787058 -0.55357 -0.272222 -0.787055 -0.553597 -0.272291 -0.787012 -0.969287 -0.167589 -0.179993 -0.940803 -0.162665 -0.297372 -0.888296 -0.206546 -0.410206 -0.929951 -0.216231 -0.297381 -0.977265 -0.112059 -0.17999 -0.821154 -0.241164 -0.517248 -0.875036 -0.256989 -0.410207 -0.741448 -0.264667 -0.616609 -0.806021 -0.287717 -0.517251 -0.906051 -0.382893 -0.180177 -0.882727 -0.433968 -0.18018 -0.882731 -0.433953 -0.180198 -0.856456 -0.483736 -0.180231 -0.831338 -0.46955 -0.297322 -0.803222 -0.516172 -0.297324 -0.767179 -0.49301 -0.410338 -0.737716 -0.536098 -0.410334 -0.692375 -0.503148 -0.517164 -0.662608 -0.54175 -0.517163 -0.609519 -0.498344 -0.616555 -0.58004 -0.532364 -0.616557 -0.520982 -0.478161 -0.707064 -0.492815 -0.507147 -0.707061 -0.42991 -0.442412 -0.787051 -0.403985 -0.466204 -0.787051 -0.338893 -0.391088 -0.855688 -0.315981 -0.409825 -0.855687 -0.250744 -0.325213 -0.911792 -0.231808 -0.338971 -0.911792 -0.168001 -0.245667 -0.954685 -0.153689 -0.254865 -0.954685 -0.725185 -0.306431 -0.61661 -0.65141 -0.275256 -0.707036 -0.634618 -0.312025 -0.707036 -0.634638 -0.312087 -0.706991 -0.856495 -0.483692 -0.180162 -0.827476 -0.531816 -0.180153 -0.803182 -0.516202 -0.297379 -0.772468 -0.561123 -0.29738 -0.737893 -0.536007 -0.410135 -0.706034 -0.577322 -0.410142 -0.662552 -0.541768 -0.517216 -0.630534 -0.57872 -0.517213 -0.580029 -0.532366 -0.616565 -0.548744 -0.564558 -0.616567 -0.492939 -0.507145 -0.706976 -0.46314 -0.534492 -0.706979 -0.403966 -0.466202 -0.787062 -0.376705 -0.488494 -0.787062 -0.316051 -0.409841 -0.855653 -0.292125 -0.42722 -0.855655 -0.231774 -0.33896 -0.911804 -0.212058 -0.351634 -0.911803 -0.153704 -0.254872 -0.954681 -0.138903 -0.263229 -0.954681 -0.594882 -0.382375 -0.707039 -0.518907 -0.33354 -0.787075 -0.518992 -0.333525 -0.787025 -0.435376 -0.27979 -0.855667 -0.435333 -0.279795 -0.855687 -0.345454 -0.222028 -0.911792 -0.345455 -0.222028 -0.911792 -0.250348 -0.160902 -0.954692 -0.795793 -0.578117 -0.180263 -0.772432 -0.561147 -0.297426 -0.705958 -0.577355 -0.410225 -0.739058 -0.604426 -0.297426 -0.499028 -0.362612 -0.787073 -0.418698 -0.304179 -0.855668 -0.418619 -0.304184 -0.855705 -0.400573 -0.327588 -0.855703 -0.332229 -0.241369 -0.911792 -0.332241 -0.241369 -0.911788 -0.317903 -0.259962 -0.911788 -0.31788 -0.259961 -0.911796 -0.302547 -0.277656 -0.911796 -0.24076 -0.174925 -0.954692 -0.240774 -0.174926 -0.954688 -0.230382 -0.188403 -0.954688 -0.230396 -0.188405 -0.954684 -0.219279 -0.201234 -0.954684 -0.219272 -0.201233 -0.954686 -0.207417 -0.213432 -0.954686 -0.827411 -0.531881 -0.18026 -0.6306 -0.578704 -0.517152 -0.671926 -0.616629 -0.410226 -0.548627 -0.564569 -0.616661 -0.596479 -0.613812 -0.517153 -0.644154 -0.743384 -0.180127 -0.600707 -0.778912 -0.180128 -0.583076 -0.756051 -0.297338 -0.538925 -0.788129 -0.297343 -0.514762 -0.752792 -0.410274 -0.470923 -0.780967 -0.410272 -0.441963 -0.732941 -0.517172 -0.399375 -0.756991 -0.517169 -0.367348 -0.696287 -0.616635 -0.327018 -0.716119 -0.61663 -0.293756 -0.64328 -0.707035 -0.25655 -0.659005 -0.707032 -0.223789 -0.574851 -0.787061 -0.190635 -0.586681 -0.78706 -0.15993 -0.492188 -0.855671 -0.131565 -0.500513 -0.855673 -0.1044 -0.39717 -0.911787 -0.0815562 -0.40248 -0.911789 -0.515497 -0.594977 -0.616656 -0.463091 -0.53449 -0.707013 -0.431874 -0.560016 -0.707013 -0.37672 -0.488497 -0.787054 -0.348204 -0.509215 -0.787054 -0.292138 -0.427224 -0.855649 -0.267296 -0.443186 -0.855652 -0.212086 -0.351645 -0.911793 -0.191629 -0.363198 -0.911793 -0.138876 -0.263215 -0.954689 -0.123628 -0.270712 -0.954689 -0.600666 -0.778932 -0.180181 -0.555149 -0.812 -0.180179 -0.538843 -0.78815 -0.297436 -0.493014 -0.8176 -0.297434 -0.470923 -0.780967 -0.410271 -0.425592 -0.806567 -0.41027 -0.399436 -0.756997 -0.517113 -0.355603 -0.778547 -0.517119 -0.327097 -0.716138 -0.616565 -0.285663 -0.733646 -0.616571 -0.256609 -0.659029 -0.706988 -0.218538 -0.672608 -0.706993 -0.190616 -0.58667 -0.787073 -0.156802 -0.596603 -0.787069 -0.131543 -0.500498 -0.855686 -0.102771 -0.507192 -0.855683 -0.0815527 -0.402476 -0.911791 -0.0584455 -0.406475 -0.911791 -0.555154 -0.811998 -0.180173 -0.507984 -0.842313 -0.18017 -0.493073 -0.817589 -0.297368 -0.445559 -0.84442 -0.297375 -0.425586 -0.806567 -0.410276 -0.378853 -0.829546 -0.410273 -0.355559 -0.77854 -0.517158 -0.310482 -0.797591 -0.517155 -0.28558 -0.73362 -0.61664 -0.243258 -0.748725 -0.616633 -0.218526 -0.672603 -0.707002 -0.179794 -0.683974 -0.707003 -0.156832 -0.596622 -0.787049 -0.122518 -0.6046 -0.78705 -0.102781 -0.5072 -0.855678 -0.0736532 -0.512242 -0.855677 -0.0584453 -0.406475 -0.911791 -0.0351427 -0.409148 -0.911791 -0.458989 -0.86997 -0.180224 -0.445512 -0.844427 -0.297426 -0.378844 -0.829545 -0.410283 -0.396618 -0.868465 -0.297427 -0.507932 -0.842331 -0.180233 -0.310539 -0.797603 -0.517102 -0.33087 -0.849821 -0.41028 -0.24331 -0.748745 -0.616589 -0.264521 -0.814019 -0.517109 -0.195355 -0.964048 -0.180135 -0.250064 -0.951325 -0.180133 -0.200148 -0.761417 -0.616591 -0.179791 -0.683973 -0.707006 -0.140462 -0.693115 -0.707009 -0.122525 -0.604605 -0.787045 -0.087793 -0.610614 -0.787047 -0.0736486 -0.512237 -0.85568 -0.0442774 -0.515606 -0.855681 -0.0351346 -0.409139 -0.911796 -0.0117247 -0.41048 -0.911794 -0.14 -0.973623 -0.180162 -0.195326 -0.964047 -0.180168 -0.0841631 -0.980029 -0.180165 -0.13999 -0.973622 -0.180174 -0.0841948 -0.980033 -0.180128 -0.0280877 -0.983241 -0.180136 0.0780501 -0.908619 -0.410269 0.0732519 -0.852761 -0.51714 0.0732543 -0.852759 -0.517143 0.0673802 -0.784379 -0.616611 0.0673567 -0.784401 -0.616585 0.0605052 -0.704613 -0.707008 0.0605193 -0.704597 -0.707023 0.052791 -0.61462 -0.787055 0.13999 -0.973624 -0.180162 0.195354 -0.964042 -0.180168 0.189615 -0.935719 -0.29745 0.242734 -0.923364 -0.297455 0.231858 -0.881989 -0.41029 0.281807 -0.86732 -0.410294 0.264492 -0.814029 -0.517109 0.310493 -0.79762 -0.517104 0.2856 -0.733671 -0.61657 0.32704 -0.716164 -0.616567 0.293764 -0.643295 -0.707018 0.330046 -0.625456 -0.707018 0.28789 -0.545568 -0.787068 0.318536 -0.52826 -0.787068 0.267253 -0.443212 -0.855651 0.292131 -0.427229 -0.855649 0.231791 -0.338984 -0.911791 0.25075 -0.325209 -0.911791 0.181725 -0.235688 -0.954687 0.194894 -0.22492 -0.954687 0.121795 -0.84719 -0.517141 0.112047 -0.779251 -0.616614 0.112031 -0.779269 -0.616595 0.156343 -0.771601 -0.616595 0.100632 -0.700011 -0.707006 0.10065 -0.699988 -0.707027 0.140458 -0.693095 -0.70703 0.140441 -0.693119 -0.707009 0.179793 -0.683972 -0.707006 0.0877913 -0.610601 -0.787057 0.0877808 -0.610616 -0.787047 0.12252 -0.604607 -0.787045 0.122524 -0.604599 -0.78705 0.156809 -0.596628 -0.787049 0.156825 -0.596597 -0.787069 0.19063 -0.586666 -0.787072 0.0736494 -0.512242 -0.855677 0.102773 -0.507201 -0.855678 0.0815535 -0.40248 -0.911789 0.104393 -0.397172 -0.911788 0.0756567 -0.287842 -0.954685 0.0919659 -0.283054 -0.954685 0.102779 -0.50719 -0.855684 0.195327 -0.964053 -0.180134 0.250063 -0.951326 -0.180132 0.242716 -0.923377 -0.29743 0.295028 -0.908016 -0.297432 0.281806 -0.867321 -0.410292 0.330866 -0.849813 -0.4103 0.310527 -0.797573 -0.517155 0.355592 -0.778526 -0.517157 0.327076 -0.716092 -0.616631 0.367375 -0.696274 -0.616634 0.330032 -0.625499 -0.706987 0.365194 -0.605645 -0.706985 0.318535 -0.528265 -0.787065 0.348195 -0.509202 -0.787066 0.292132 -0.427215 -0.855655 0.316025 -0.40986 -0.855654 0.25075 -0.325203 -0.911794 0.268918 -0.310347 -0.911794 0.194893 -0.224918 -0.954688 0.207417 -0.213424 -0.954688 0.13156 -0.500494 -0.855686 0.131549 -0.500518 -0.855673 0.159923 -0.49219 -0.855671 0.159927 -0.492178 -0.855677 0.187755 -0.48225 -0.855677 0.250064 -0.951325 -0.180135 0.303916 -0.935515 -0.180132 0.294992 -0.908044 -0.297382 0.346381 -0.889713 -0.297373 0.330853 -0.849827 -0.41028 0.378852 -0.829541 -0.410283 0.35557 -0.778562 -0.517119 0.39939 -0.75702 -0.517115 0.36736 -0.696308 -0.616605 0.406581 -0.674158 -0.616606 0.365215 -0.605569 -0.707039 0.399153 -0.583755 -0.707041 0.348191 -0.509225 -0.787053 0.376712 -0.488503 -0.787053 0.316026 -0.409809 -0.855677 0.338894 -0.39111 -0.855677 0.268918 -0.310353 -0.911791 0.286201 -0.294491 -0.911792 0.207417 -0.213425 -0.954687 0.219262 -0.201237 -0.954687 0.104398 -0.39716 -0.911792 0.126901 -0.390552 -0.911792 0.0919688 -0.283044 -0.954687 0.107968 -0.277335 -0.954688 0.1269 -0.390556 -0.911791 0.356882 -0.916609 -0.180174 0.346403 -0.889694 -0.297404 0.378846 -0.829549 -0.410273 0.396622 -0.868472 -0.2974 0.148979 -0.382679 -0.91179 0.148983 -0.382663 -0.911797 0.170589 -0.373531 -0.911797 0.123631 -0.270717 -0.954687 0.107968 -0.277336 -0.954687 0.123632 -0.270711 -0.954689 0.303944 -0.935498 -0.180169 0.39942 -0.756968 -0.517169 0.42559 -0.806565 -0.410276 0.138891 -0.263207 -0.954689 0.406564 -0.674204 -0.616567 0.441979 -0.732932 -0.517171 0.555153 -0.811998 -0.180179 0.600701 -0.778905 -0.180181 0.58305 -0.756017 -0.297473 0.625266 -0.721492 -0.297475 0.597246 -0.68916 -0.410312 0.635589 -0.653963 -0.410315 0.596519 -0.613764 -0.517165 0.63057 -0.578725 -0.517165 0.580031 -0.532341 -0.616585 0.60947 -0.498367 -0.616586 0.547464 -0.447664 -0.707022 0.57213 -0.415677 -0.707022 0.49907 -0.362596 -0.787054 0.518962 -0.333506 -0.787053 0.435354 -0.279776 -0.855682 0.450616 -0.254468 -0.855682 0.35756 -0.201919 -0.9118 0.368511 -0.181169 -0.911799 0.267076 -0.1313 -0.954689 0.274132 -0.11585 -0.954689 0.444382 -0.649903 -0.616564 0.399153 -0.583756 -0.70704 0.431856 -0.559993 -0.707042 0.376713 -0.488488 -0.787062 0.403968 -0.466202 -0.787062 0.338894 -0.391103 -0.855681 0.360667 -0.371119 -0.855681 0.286202 -0.294496 -0.91179 0.302547 -0.277678 -0.91179 0.219262 -0.20124 -0.954687 0.230396 -0.188391 -0.954687 0.600672 -0.778939 -0.180129 0.644112 -0.74342 -0.180128 0.625206 -0.721599 -0.297341 0.665424 -0.684691 -0.297336 0.635582 -0.653985 -0.410292 0.671872 -0.616641 -0.410295 0.630568 -0.578733 -0.517157 0.662583 -0.541786 -0.517157 0.60947 -0.498356 -0.616594 0.636921 -0.462756 -0.616594 0.572131 -0.415683 -0.707018 0.59492 -0.382355 -0.707018 0.518971 -0.333543 -0.787031 0.537173 -0.303354 -0.787033 0.450618 -0.254474 -0.855679 0.464415 -0.228326 -0.855679 0.368515 -0.181177 -0.911796 0.37825 -0.159862 -0.911796 0.274139 -0.115861 -0.954685 0.28031 -0.100012 -0.954685 0.644146 -0.743375 -0.180193 0.685549 -0.705374 -0.180195 0.665432 -0.684676 -0.297354 0.703388 -0.645622 -0.297351 0.67186 -0.616683 -0.410251 0.705996 -0.57729 -0.410251 0.662583 -0.541791 -0.517152 0.692447 -0.503061 -0.517153 0.63692 -0.462721 -0.616622 0.662277 -0.425638 -0.616621 0.594919 -0.382347 -0.707023 0.615789 -0.347741 -0.707022 0.53717 -0.303343 -0.78704 0.553605 -0.272188 -0.787042 0.464421 -0.228339 -0.855672 0.476688 -0.201476 -0.855673 0.378257 -0.159874 -0.911791 0.386777 -0.137991 -0.911791 0.280305 -0.100005 -0.954687 0.285555 -0.0838467 -0.954687 0.724693 -0.665082 -0.18024 0.703416 -0.645555 -0.297429 0.705995 -0.577293 -0.410248 0.739105 -0.604367 -0.29743 0.685568 -0.705345 -0.180236 0.692444 -0.503115 -0.517103 0.73779 -0.536063 -0.410248 0.662275 -0.425613 -0.616641 0.720049 -0.462742 -0.517107 0.856519 -0.483632 -0.18021 0.882706 -0.434003 -0.180202 0.856782 -0.421256 -0.297436 0.879435 -0.371654 -0.297436 0.840048 -0.355009 -0.410231 0.858955 -0.306441 -0.410232 0.806103 -0.287586 -0.517197 0.821204 -0.24112 -0.51719 0.755406 -0.221801 -0.616576 0.766835 -0.178315 -0.616578 0.688801 -0.16017 -0.707035 0.696827 -0.120579 -0.707031 0.607838 -0.105181 -0.787064 0.685498 -0.387107 -0.616637 0.615789 -0.347741 -0.707021 0.634629 -0.312036 -0.707021 0.55361 -0.272201 -0.787034 0.568242 -0.240155 -0.787036 0.476678 -0.201458 -0.855683 0.487412 -0.173891 -0.855682 0.386774 -0.137988 -0.911792 0.394016 -0.115699 -0.911793 0.285559 -0.0838513 -0.954686 0.28988 -0.0674085 -0.954686 0.882701 -0.434021 -0.18018 0.906061 -0.382872 -0.180176 0.879436 -0.371621 -0.297472 0.899217 -0.320816 -0.297465 0.858956 -0.306452 -0.410221 0.875031 -0.256973 -0.410227 0.821219 -0.24117 -0.517143 0.833652 -0.193867 -0.517146 0.766842 -0.17833 -0.616564 0.77577 -0.134252 -0.616569 0.696835 -0.120592 -0.707021 0.906059 -0.382878 -0.180169 0.926427 -0.330564 -0.180168 0.899217 -0.320855 -0.297423 0.916068 -0.268995 -0.297424 0.875025 -0.256943 -0.410257 0.888278 -0.206524 -0.410257 0.833635 -0.193819 -0.517192 0.843343 -0.145918 -0.517185 0.775755 -0.134223 -0.616595 0.943803 -0.277105 -0.180137 0.916066 -0.268962 -0.29746 0.888286 -0.206558 -0.410222 0.929926 -0.21624 -0.297453 0.926423 -0.330591 -0.180136 0.843368 -0.145975 -0.517129 0.898621 -0.155538 -0.410229 0.999266 0.0383064 4.45945e-09 0.999266 0.0383064 4.45945e-09 0.999266 -0.0383114 -4.46003e-09 0.999266 -0.0383114 -6.69004e-09 0.993402 -0.114682 -2.00261e-08 0.993402 -0.114682 -2.00261e-08 0.98171 -0.190384 -3.32454e-08 0.98171 -0.190384 -3.32454e-08 0.964258 -0.264967 -4.62693e-08 0.964258 -0.264967 -4.62693e-08 0.941129 -0.338049 -5.90311e-08 0.941129 -0.338049 -5.90311e-08 0.912523 -0.409026 -7.14253e-08 0.912523 -0.409026 -7.14253e-08 0.878507 -0.47773 -8.34227e-08 0.878507 -0.47773 -8.34227e-08 0.839358 -0.543579 -9.49214e-08 0.839358 -0.543579 -9.49214e-08 0.795295 -0.606223 -1.05861e-07 0.795295 -0.606223 -1.05861e-07 0.746574 -0.665302 -1.16177e-07 0.746574 -0.665302 -1.16177e-07 0.693419 -0.720534 -1.25822e-07 0.693419 -0.720534 -1.25822e-07 0.636251 -0.771482 -1.34719e-07 0.636251 -0.771482 -1.34719e-07 0.575282 -0.817955 -1.42834e-07 0.575282 -0.817955 -1.19028e-07 0.511051 -0.85955 -1.25081e-07 0.511051 -0.85955 -1.25081e-07 0.443716 -0.896168 -1.3041e-07 0.443716 -0.896168 -1.3041e-07 0.373818 -0.927502 -1.34969e-07 0.373818 -0.927502 -1.34969e-07 0.30171 -0.9534 -1.38738e-07 0.30171 -0.9534 -1.38738e-07 0.227868 -0.973692 -1.41691e-07 0.227868 -0.973692 -1.41691e-07 0.152643 -0.988281 -1.43814e-07 0.152643 -0.988281 -1.43814e-07 0.0765573 -0.997065 -1.45092e-07 0.0765573 -0.997065 -1.45092e-07 0 -1 -1.45519e-07 0 -1 -1.45519e-07 -0.0765573 -0.997065 -1.45092e-07 -0.0765573 -0.997065 -1.45092e-07 -0.152643 -0.988281 -1.43814e-07 -0.152643 -0.988281 -1.43814e-07 -0.227867 -0.973692 -1.41691e-07 -0.227867 -0.973692 -1.41691e-07 -0.30171 -0.9534 -1.38738e-07 -0.30171 -0.9534 -1.38738e-07 -0.373818 -0.927502 -1.34969e-07 -0.373818 -0.927502 -1.34969e-07 -0.443716 -0.896168 -1.3041e-07 -0.443716 -0.896168 -1.3041e-07 -0.511052 -0.85955 -1.25081e-07 -0.511052 -0.85955 -1.25081e-07 -0.575282 -0.817955 -1.19028e-07 -0.575281 -0.817956 -1.42834e-07 -0.636251 -0.771482 -1.34719e-07 -0.636251 -0.771482 -1.34719e-07 -0.693419 -0.720535 -1.25822e-07 -0.693419 -0.720535 -1.25822e-07 -0.746601 -0.665272 -1.16172e-07 -0.746601 -0.665272 -1.16172e-07 -0.795264 -0.606264 -1.05868e-07 -0.795264 -0.606264 -1.05868e-07 -0.839334 -0.543616 -9.49278e-08 -0.839334 -0.543616 -9.49278e-08 -0.878517 -0.477712 -8.34195e-08 -0.878517 -0.477712 -8.34195e-08 -0.912523 -0.409025 -7.14252e-08 -0.912523 -0.409025 -7.14252e-08 -0.941141 -0.338015 -5.90252e-08 -0.941141 -0.338015 -5.90252e-08 -0.964264 -0.264944 -4.62654e-08 -0.964264 -0.264944 -4.62654e-08 -0.981712 -0.190371 -3.32432e-08 -0.981712 -0.190371 -3.32432e-08 -0.993392 -0.114771 -2.00416e-08 -0.993392 -0.114771 -2.00416e-08 -0.999268 -0.0382585 -6.68081e-09 -0.999268 -0.0382585 -4.45387e-09 -0.999268 0.0382535 4.45329e-09 -0.999268 0.0382535 4.45329e-09 -0.993392 0.114771 1.33611e-08 -0.993392 0.114771 1.33611e-08 -0.981707 0.190396 2.2165e-08 -0.981707 0.190396 2.2165e-08 -0.964264 0.264944 3.08435e-08 -0.964264 0.264944 3.08435e-08 -0.941155 0.337974 3.93454e-08 -0.941155 0.337974 3.93454e-08 -0.912502 0.409073 4.76224e-08 -0.912502 0.409073 4.76224e-08 -0.878517 0.477712 5.5613e-08 -0.878517 0.477712 5.5613e-08 -0.839334 0.543616 6.32852e-08 -0.839334 0.543616 6.32852e-08 -0.795292 0.606226 7.0574e-08 -0.795292 0.606226 7.0574e-08 -0.74659 0.665285 7.74494e-08 -0.74659 0.665285 7.74494e-08 -0.693405 0.720548 8.38829e-08 -0.693405 0.720548 8.38829e-08 -0.636274 0.771463 8.98101e-08 -0.636274 0.771463 8.98101e-08 -0.575256 0.817974 9.52247e-08 -0.575256 0.817974 9.52247e-08 -0.511071 0.859539 1.00063e-07 -0.511071 0.859539 1.00063e-07 -0.443695 0.896178 1.04329e-07 -0.443695 0.896178 1.04329e-07 -0.373796 0.927511 1.07976e-07 -0.373796 0.927511 1.07976e-07 -0.301768 0.953381 1.10988e-07 -0.301768 0.953381 1.10988e-07 -0.227878 0.97369 1.13352e-07 -0.227878 0.97369 1.13352e-07 -0.152632 0.988283 1.15051e-07 -0.152632 0.988283 1.15051e-07 -0.076519 0.997068 1.16074e-07 -0.076519 0.997068 1.16074e-07 0 1 1.16415e-07 0 1 1.16415e-07 0.076519 0.997068 1.16074e-07 0.076519 0.997068 1.16074e-07 0.152632 0.988283 1.15051e-07 0.152632 0.988283 1.15051e-07 0.227879 0.973689 1.13352e-07 0.227879 0.973689 1.13352e-07 0.301768 0.953381 1.10988e-07 0.301768 0.953381 1.10988e-07 0.373796 0.927511 1.07976e-07 0.373796 0.927511 1.07976e-07 0.443695 0.896178 1.04329e-07 0.443695 0.896178 1.04329e-07 0.51107 0.859539 1.00063e-07 0.51107 0.859539 1.00063e-07 0.575256 0.817973 9.52246e-08 0.575256 0.817973 9.52246e-08 0.636274 0.771463 8.98101e-08 0.636274 0.771463 8.98101e-08 0.693405 0.720548 8.38828e-08 0.693405 0.720548 8.38828e-08 0.746563 0.665314 7.74528e-08 0.746563 0.665314 7.74528e-08 0.795323 0.606186 7.05693e-08 0.795323 0.606186 7.05693e-08 0.839358 0.543579 6.3281e-08 0.839358 0.543579 6.3281e-08 0.878507 0.47773 5.56151e-08 0.878507 0.47773 5.56151e-08 0.912501 0.409074 4.76225e-08 0.912501 0.409074 4.76225e-08 0.941143 0.338008 3.93493e-08 0.941143 0.338008 3.93493e-08 0.964258 0.264966 3.08461e-08 0.964258 0.264966 3.08461e-08 0.981705 0.190408 2.21665e-08 0.981705 0.190408 2.21665e-08 0.993402 0.114682 1.33507e-08 0.993402 0.114682 1.33507e-08 1 0 0 1 0 0 0 -1 0 0 -1 0 0 1.24176e-07 -1 0 1.24176e-07 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1.24176e-07 1 0 -1.24176e-07 1 0.493609 -0.869684 0 0.493609 -0.869684 0 -0.506366 -0.862319 0 -0.506366 -0.862319 0 -0.999973 0.0073656 0 -0.999973 0.0073656 0 -0.494708 0.869059 0 -0.494708 0.869059 0 0.505283 0.862954 0 0.505283 0.862954 0 0.999981 -0.00610871 0 0.999981 -0.00610871 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 5.72673e-17 1 1.31134e-07 0 1 1.31134e-07 -1 1.77636e-16 0 -1 1.77636e-16 0 -1 6.83215e-17 -1.09315e-15 -1 -2.96061e-16 0 1 0 0 1 0 0 1 0 0 1 0 0 -5.11167e-14 -1.31134e-07 1 -6.85979e-14 -1.31134e-07 1 3.00475e-14 -1.31134e-07 1 3.65904e-14 -1.31134e-07 1 6.41258e-14 -1.31134e-07 1 6.38173e-14 -1.31134e-07 1 -6.45639e-14 -1.31134e-07 1 0 -1.31134e-07 1 6.87076e-14 -1.31134e-07 1 0 -1.31134e-07 1 0 -1.31134e-07 1 0 -1.31134e-07 1 8.28918e-14 -1.31134e-07 1 0 -1.31134e-07 1 0 -1.31134e-07 1 -2.08794e-13 -1.31134e-07 1 1.34021e-13 -1.31135e-07 1 0 -1.31134e-07 1 0 -1.31134e-07 1 0 -1.31134e-07 1 2.92055e-13 -1.31134e-07 1 -2.7611e-13 -1.31134e-07 1 8.86487e-13 -1.31134e-07 1 -3.9615e-13 -1.31134e-07 1 -1.09868e-13 -1.31134e-07 1 1.65247e-14 -1.31134e-07 1 1.52332e-14 -1.31134e-07 1 -3.43054e-13 -1.31134e-07 1 1.02107e-13 -1.31134e-07 1 3.02301e-13 -1.31134e-07 1 -2.76168e-13 -1.31134e-07 1 1.27022e-14 -1.31134e-07 1 1.90519e-14 -1.31134e-07 1 1.31676e-13 -1.31134e-07 1 -1.31426e-14 -1.31134e-07 1 -3.40401e-14 -1.31134e-07 1 -1.51864e-13 -1.31134e-07 1 4.38036e-13 -1.31135e-07 1 0 -1.31134e-07 1 0 -1.31134e-07 1 -4.38036e-13 -1.31135e-07 1 1.51864e-13 -1.31134e-07 1 3.23381e-14 -1.31134e-07 1 1.31426e-14 -1.31134e-07 1 -1.31676e-13 -1.31134e-07 1 -1.90519e-14 -1.31134e-07 1 -1.27022e-14 -1.31134e-07 1 2.76167e-13 -1.31134e-07 1 -2.95729e-13 -1.31134e-07 1 -1.02107e-13 -1.31134e-07 1 3.43075e-13 -1.31134e-07 1 -1.52319e-14 -1.31134e-07 1 -3.3047e-14 -1.31134e-07 1 9.15615e-14 -1.31134e-07 1 3.96153e-13 -1.31134e-07 1 -8.8658e-13 -1.31134e-07 1 0 -1.31134e-07 1 4.92999e-15 -1.31134e-07 1 0 -1.31134e-07 1 -3.99682e-13 -1.31134e-07 1 4.98901e-13 -1.31134e-07 1 -4.16611e-13 -1.31134e-07 1 1.38226e-13 -1.31134e-07 1 -7.20101e-14 -1.31134e-07 1 4.11377e-14 -1.31134e-07 1 -2.64595e-14 -1.31134e-07 1 1.42129e-13 -1.31134e-07 1 -1.0212e-13 -1.31134e-07 1 3.28378e-13 -1.31134e-07 1 -1.25597e-13 -1.31134e-07 1 3.61971e-14 -1.31134e-07 1 -2.05907e-13 -1.31134e-07 1 -2.85292e-13 -1.31134e-07 1 1.0048e-13 -1.31134e-07 1 1.50198e-13 -1.31134e-07 1 0 -1.31134e-07 1 2.26228e-14 -1.31134e-07 1 -6.78971e-14 -1.31134e-07 1 -3.30399e-14 -1.31134e-07 1 2.57282e-13 -1.31134e-07 1 -1.30019e-13 -1.31134e-07 1 -1.91992e-14 -1.31134e-07 1 1.40156e-13 -1.31134e-07 1 -2.75707e-13 -1.31134e-07 1 4.50396e-13 -1.31134e-07 1 -4.70706e-14 -1.31134e-07 1 -5.82156e-13 -1.31134e-07 1 8.16361e-13 -1.31134e-07 1 -4.46898e-13 -1.31134e-07 1 0 -1.31134e-07 1 -1.57135e-13 -1.31134e-07 1 3.63877e-13 -1.31134e-07 1 -4.67834e-13 -1.31134e-07 1 1.77976e-13 -1.31134e-07 1 2.64471e-14 -1.31134e-07 1 -2.29741e-13 -1.31134e-07 1 -5.82981e-13 -1.31134e-07 1 4.84006e-13 -1.31134e-07 1 4.02577e-13 -1.31134e-07 1 -3.1561e-13 -1.31134e-07 1 -5.22911e-14 -1.31134e-07 1 -1.57723e-13 -1.31134e-07 1 1.48635e-13 -1.31134e-07 1 -3.27608e-14 -1.31134e-07 1 -2.11072e-14 -1.31134e-07 1 8.76702e-14 -1.31134e-07 1 -2.03657e-14 -1.31134e-07 1 -1.52354e-14 -1.31134e-07 1 2.04676e-14 -1.31134e-07 1 -1.56232e-14 -1.31134e-07 1 -1.33924e-14 -1.31134e-07 1 5.57464e-15 -1.31134e-07 1 2.05571e-14 -1.31134e-07 1 -1.25537e-14 -1.31134e-07 1 4.60411e-14 -1.31134e-07 1 -9.45358e-14 -1.31134e-07 1 3.1186e-14 -1.31134e-07 1 -2.65788e-14 -1.31134e-07 1 -3.44298e-14 -1.31134e-07 1 0 -1.31134e-07 1 1.75409e-14 -1.31134e-07 1 -1.21515e-13 -1.31134e-07 1 0 -1.31134e-07 1 0 -1.31134e-07 1 4.27294e-15 -1.31134e-07 1 4.45018e-15 -1.31134e-07 1 -6.67163e-15 -1.31134e-07 1 -6.47514e-15 -1.31134e-07 1 -6.01533e-15 -1.31134e-07 1 -6.60966e-15 -1.31134e-07 1 2.97984e-15 -1.31134e-07 1 3.08448e-15 -1.31134e-07 1 2.36181e-15 -1.31134e-07 1 2.44418e-15 -1.31134e-07 1 3.51208e-15 -1.31134e-07 1 3.74399e-15 -1.31134e-07 1 -4.65466e-15 -1.31134e-07 1 -4.55082e-15 -1.31134e-07 1 2.90215e-15 -1.31134e-07 1 2.26271e-15 -1.31134e-07 1 -1.74624e-15 -1.31134e-07 1 -1.6343e-15 -1.31134e-07 1 1.46982e-15 -1.31134e-07 1 1.86193e-15 -1.31134e-07 1 -1.19845e-15 -1.31134e-07 1 -2.03897e-15 -1.31134e-07 1 6.17724e-16 -1.31134e-07 1 6.11112e-16 -1.31134e-07 1 4.19838e-15 -1.31134e-07 1 4.67543e-15 -1.31134e-07 1 -5.15677e-16 -1.31134e-07 1 -6.31088e-16 -1.31134e-07 1 1.12342e-15 -1.31134e-07 1 1.30146e-15 -1.31134e-07 1 4.20638e-16 -1.31134e-07 1 1.07268e-15 -1.31134e-07 1 -2.7131e-15 -1.31134e-07 1 -3.20221e-15 -1.31134e-07 1 3.63139e-15 -1.31135e-07 1 1.85648e-15 -1.31134e-07 1 -1.78187e-13 -1.31135e-07 1 1.77956e-14 -1.31134e-07 1 0 -1.31134e-07 1 -1.12891e-14 -1.31134e-07 1 6.64405e-14 -1.31134e-07 1 -7.07543e-14 -1.31134e-07 1 2.8018e-14 -1.31134e-07 1 3.05224e-15 -1.31134e-07 1 -5.74205e-15 -1.31134e-07 1 1.64291e-14 -1.31134e-07 1 -1.85023e-14 -1.31134e-07 1 5.16139e-14 -1.31134e-07 1 -4.58341e-14 -1.31134e-07 1 0 -1.31134e-07 1 5.113e-14 -1.31134e-07 1 -1.24878e-13 -1.31134e-07 1 1.71275e-13 -1.31134e-07 1 -1.33667e-13 -1.31134e-07 1 1.17419e-14 -1.31134e-07 1 5.02183e-14 -1.31134e-07 1 -9.5575e-14 -1.31134e-07 1 2.5768e-13 -1.31134e-07 1 -1.72717e-13 -1.31134e-07 1 -2.4456e-13 -1.31134e-07 1 5.06101e-13 -1.31134e-07 1 4.98191e-15 -1.31134e-07 1 7.28306e-15 -1.31134e-07 1 7.20055e-15 -1.31134e-07 1 6.47514e-15 -1.31134e-07 1 6.5437e-15 -1.31134e-07 1 -6.74675e-15 -1.31134e-07 1 -6.7495e-15 -1.31134e-07 1 0 -1.31134e-07 1 0 -1.31134e-07 1 1.12095e-14 -1.31134e-07 1 -1.13494e-13 -1.31134e-07 1 0 -1.31134e-07 1 6.1289e-14 -1.31134e-07 1 -5.03527e-14 -1.31134e-07 1 0 -1.31134e-07 1 -1.32875e-14 -1.31134e-07 1</float_array>\n                    <technique_common>\n                        <accessor count=\"7858\" source=\"#shape0-lib-normals-array\" stride=\"3\">\n                            <param name=\"X\" type=\"float\"/>\n                            <param name=\"Y\" type=\"float\"/>\n                            <param name=\"Z\" type=\"float\"/>\n                        </accessor>\n                    </technique_common>\n                </source>\n                <vertices id=\"shape0-lib-vertices\">\n                    <input semantic=\"POSITION\" source=\"#shape0-lib-positions\"/>\n                </vertices>\n                <triangles count=\"7858\">\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#shape0-lib-vertices\"/>\n                    <input offset=\"1\" semantic=\"NORMAL\" source=\"#shape0-lib-normals\"/>\n                    <p>0 0 162 0 3 0 3 1 162 1 1 1 3 2 1 2 2 2 3 3 2 3 4 3 4 4 2 4 61 4 4 5 61 5 5 5 5 6 61 6 33 6 5 7 33 7 32 7 5 8 32 8 6 8 6 9 32 9 39 9 6 10 39 10 26 10 26 11 39 11 7 11 26 12 7 12 8 12 8 13 7 13 59 13 8 14 59 14 9 14 9 15 59 15 10 15 9 16 10 16 11 16 9 17 11 17 23 17 23 18 11 18 12 18 23 19 12 19 22 19 22 20 12 20 13 20 22 21 13 21 21 21 21 22 13 22 14 22 21 23 14 23 19 23 19 24 14 24 56 24 19 25 56 25 54 25 19 26 54 26 15 26 15 27 54 27 53 27 15 28 53 28 17 28 17 29 53 29 16 29 17 30 16 30 182 30 182 31 179 31 17 31 17 32 179 32 15 32 179 33 178 33 15 33 15 34 178 34 19 34 178 35 18 35 19 35 19 36 18 36 20 36 19 37 20 37 21 37 21 38 20 38 175 38 21 39 175 39 22 39 22 40 175 40 173 40 22 41 173 41 23 41 23 42 173 42 171 42 23 43 171 43 9 43 9 44 171 44 24 44 9 45 24 45 25 45 9 46 25 46 8 46 8 47 25 47 168 47 8 48 168 48 26 48 26 49 168 49 166 49 26 50 166 50 6 50 6 51 166 51 27 51 6 52 27 52 5 52 5 53 27 53 164 53 5 54 164 54 28 54 5 55 28 55 4 55 4 56 28 56 0 56 4 57 0 57 3 57 2 58 1 58 29 58 29 59 1 59 279 59 29 60 279 60 63 60 63 61 279 61 65 61 63 62 65 62 62 62 62 63 65 63 31 63 62 64 31 64 60 64 60 65 31 65 30 65 60 66 30 66 86 66 86 67 30 67 88 67 88 68 30 68 89 68 89 69 30 69 31 69 89 70 31 70 65 70 35 71 64 71 86 71 86 72 64 72 37 72 86 73 37 73 60 73 60 74 37 74 32 74 60 75 32 75 33 75 84 76 34 76 35 76 35 77 34 77 36 77 35 78 36 78 37 78 37 79 36 79 39 79 37 80 39 80 32 80 83 81 38 81 84 81 84 82 38 82 58 82 84 83 58 83 36 83 36 84 58 84 7 84 36 85 7 85 39 85 83 86 81 86 38 86 38 87 81 87 58 87 58 88 81 88 57 88 57 89 81 89 40 89 57 90 40 90 41 90 41 91 40 91 43 91 41 92 43 92 42 92 42 93 43 93 45 93 42 94 45 94 44 94 44 95 45 95 46 95 44 96 46 96 47 96 47 97 46 97 48 97 47 98 48 98 49 98 47 99 49 99 55 99 55 100 49 100 50 100 55 101 50 101 52 101 52 102 50 102 51 102 52 103 51 103 16 103 16 104 53 104 52 104 52 105 53 105 55 105 53 106 54 106 55 106 55 107 54 107 47 107 54 108 56 108 47 108 47 109 56 109 14 109 47 110 14 110 44 110 44 111 14 111 13 111 44 112 13 112 42 112 42 113 13 113 12 113 42 114 12 114 41 114 41 115 12 115 11 115 41 116 11 116 57 116 57 117 11 117 10 117 57 118 10 118 59 118 57 119 59 119 58 119 58 120 59 120 7 120 60 121 33 121 62 121 62 122 33 122 61 122 62 123 61 123 2 123 62 124 2 124 29 124 62 125 29 125 63 125 35 126 37 126 64 126 84 127 36 127 34 127 65 128 279 128 66 128 66 129 279 129 186 129 66 130 186 130 118 130 66 131 118 131 67 131 67 132 118 132 117 132 67 133 117 133 87 133 87 134 117 134 116 134 87 135 116 135 115 135 87 136 115 136 69 136 69 137 115 137 68 137 69 138 68 138 85 138 85 139 68 139 113 139 85 140 113 140 82 140 82 141 113 141 112 141 82 142 112 142 80 142 80 143 112 143 70 143 80 144 70 144 111 144 80 145 111 145 71 145 71 146 111 146 72 146 71 147 72 147 73 147 73 148 72 148 108 148 73 149 108 149 74 149 74 150 108 150 75 150 74 151 75 151 79 151 79 152 75 152 104 152 79 153 104 153 103 153 79 154 103 154 76 154 76 155 103 155 77 155 76 156 77 156 78 156 78 157 77 157 100 157 78 158 100 158 51 158 51 159 50 159 78 159 78 160 50 160 76 160 50 161 49 161 76 161 76 162 49 162 79 162 49 163 48 163 79 163 79 164 48 164 46 164 79 165 46 165 74 165 74 166 46 166 45 166 74 167 45 167 73 167 73 168 45 168 43 168 73 169 43 169 71 169 71 170 43 170 40 170 71 171 40 171 80 171 80 172 40 172 81 172 80 173 81 173 83 173 80 174 83 174 82 174 82 175 83 175 84 175 82 176 84 176 85 176 85 177 84 177 35 177 85 178 35 178 69 178 69 179 35 179 86 179 69 180 86 180 87 180 87 181 86 181 88 181 87 182 88 182 89 182 87 183 89 183 67 183 67 184 89 184 65 184 67 185 65 185 66 185 118 186 186 186 90 186 90 187 186 187 187 187 90 188 187 188 134 188 90 189 134 189 91 189 91 190 134 190 92 190 91 191 92 191 93 191 93 192 92 192 133 192 93 193 133 193 95 193 93 194 95 194 94 194 94 195 95 195 132 195 94 196 132 196 114 196 114 197 132 197 131 197 114 198 131 198 96 198 96 199 131 199 129 199 96 200 129 200 110 200 110 201 129 201 97 201 110 202 97 202 128 202 110 203 128 203 109 203 109 204 128 204 127 204 109 205 127 205 107 205 107 206 127 206 98 206 107 207 98 207 106 207 106 208 98 208 126 208 106 209 126 209 105 209 105 210 126 210 125 210 105 211 125 211 99 211 105 212 99 212 102 212 102 213 99 213 123 213 102 214 123 214 101 214 101 215 123 215 121 215 101 216 121 216 100 216 100 217 77 217 101 217 101 218 77 218 102 218 77 219 103 219 102 219 102 220 103 220 105 220 103 221 104 221 105 221 105 222 104 222 75 222 105 223 75 223 106 223 106 224 75 224 108 224 106 225 108 225 107 225 107 226 108 226 72 226 107 227 72 227 109 227 109 228 72 228 111 228 109 229 111 229 110 229 110 230 111 230 70 230 110 231 70 231 112 231 110 232 112 232 96 232 96 233 112 233 113 233 96 234 113 234 114 234 114 235 113 235 68 235 114 236 68 236 94 236 94 237 68 237 115 237 94 238 115 238 93 238 93 239 115 239 116 239 93 240 116 240 117 240 93 241 117 241 91 241 91 242 117 242 118 242 91 243 118 243 90 243 119 244 181 244 120 244 120 245 181 245 121 245 120 246 121 246 123 246 120 247 123 247 122 247 122 248 123 248 99 248 122 249 99 249 124 249 124 250 99 250 125 250 124 251 125 251 126 251 124 252 126 252 149 252 149 253 126 253 98 253 149 254 98 254 147 254 147 255 98 255 127 255 147 256 127 256 146 256 146 257 127 257 128 257 146 258 128 258 145 258 145 259 128 259 97 259 145 260 97 260 129 260 145 261 129 261 130 261 130 262 129 262 131 262 130 263 131 263 144 263 144 264 131 264 132 264 144 265 132 265 142 265 142 266 132 266 95 266 142 267 95 267 139 267 139 268 95 268 133 268 139 269 133 269 92 269 139 270 92 270 135 270 135 271 92 271 134 271 135 272 134 272 137 272 137 273 134 273 187 273 137 274 187 274 136 274 136 275 161 275 137 275 137 276 161 276 135 276 161 277 138 277 135 277 135 278 138 278 139 278 138 279 140 279 139 279 139 280 140 280 141 280 139 281 141 281 142 281 142 282 141 282 143 282 142 283 143 283 144 283 144 284 143 284 158 284 144 285 158 285 130 285 130 286 158 286 157 286 130 287 157 287 145 287 145 288 157 288 156 288 145 289 156 289 155 289 145 290 155 290 146 290 146 291 155 291 154 291 146 292 154 292 147 292 147 293 154 293 153 293 147 294 153 294 149 294 149 295 153 295 148 295 149 296 148 296 124 296 124 297 148 297 150 297 124 298 150 298 151 298 124 299 151 299 122 299 122 300 151 300 119 300 122 301 119 301 120 301 179 302 182 302 180 302 180 303 182 303 181 303 180 304 181 304 119 304 180 305 119 305 152 305 152 306 119 306 151 306 152 307 151 307 177 307 177 308 151 308 150 308 177 309 150 309 148 309 177 310 148 310 176 310 176 311 148 311 153 311 176 312 153 312 174 312 174 313 153 313 154 313 174 314 154 314 172 314 172 315 154 315 155 315 172 316 155 316 170 316 170 317 155 317 156 317 170 318 156 318 157 318 170 319 157 319 169 319 169 320 157 320 158 320 169 321 158 321 167 321 167 322 158 322 143 322 167 323 143 323 165 323 165 324 143 324 141 324 165 325 141 325 159 325 159 326 141 326 140 326 159 327 140 327 138 327 159 328 138 328 160 328 160 329 138 329 161 329 160 330 161 330 163 330 163 331 161 331 136 331 163 332 136 332 162 332 162 333 0 333 163 333 163 334 0 334 160 334 0 335 28 335 160 335 160 336 28 336 159 336 28 337 164 337 159 337 159 338 164 338 27 338 159 339 27 339 165 339 165 340 27 340 166 340 165 341 166 341 167 341 167 342 166 342 168 342 167 343 168 343 169 343 169 344 168 344 25 344 169 345 25 345 170 345 170 346 25 346 24 346 170 347 24 347 171 347 170 348 171 348 172 348 172 349 171 349 173 349 172 350 173 350 174 350 174 351 173 351 175 351 174 352 175 352 176 352 176 353 175 353 20 353 176 354 20 354 177 354 177 355 20 355 18 355 177 356 18 356 178 356 177 357 178 357 152 357 152 358 178 358 179 358 152 359 179 359 180 359 121 360 181 360 3830 360 3830 361 181 361 3917 361 181 362 182 362 3917 362 3917 363 182 363 3873 363 182 364 16 364 3873 364 3873 365 16 365 3915 365 189 366 284 366 3811 366 3811 367 284 367 283 367 3811 368 283 368 183 368 183 369 283 369 184 369 183 370 184 370 604 370 283 371 451 371 184 371 184 372 451 372 280 372 280 373 451 373 185 373 280 374 185 374 186 374 186 375 185 375 346 375 186 376 346 376 187 376 187 377 346 377 188 377 187 378 188 378 136 378 136 379 188 379 3815 379 136 380 3815 380 278 380 346 381 189 381 188 381 188 382 189 382 3811 382 217 383 3055 383 191 383 191 384 3055 384 190 384 191 385 190 385 192 385 192 386 190 386 3047 386 192 387 3047 387 646 387 646 388 3047 388 193 388 646 389 193 389 194 389 194 390 193 390 3014 390 194 391 3014 391 196 391 196 392 3014 392 195 392 196 393 195 393 197 393 197 394 195 394 3001 394 197 395 3001 395 198 395 198 396 3001 396 2592 396 198 397 2592 397 199 397 199 398 2592 398 2593 398 199 399 2593 399 1265 399 1265 400 2593 400 200 400 1265 401 200 401 201 401 201 402 200 402 3000 402 201 403 3000 403 1284 403 1284 404 3000 404 203 404 1284 405 203 405 202 405 202 406 203 406 204 406 202 407 204 407 205 407 205 408 204 408 2998 408 205 409 2998 409 206 409 206 410 2998 410 2995 410 206 411 2995 411 1308 411 1308 412 2995 412 207 412 1308 413 207 413 1309 413 1309 414 207 414 209 414 1309 415 209 415 208 415 208 416 209 416 210 416 208 417 210 417 1312 417 1312 418 210 418 211 418 1312 419 211 419 212 419 212 420 211 420 213 420 212 421 213 421 1313 421 1313 422 213 422 214 422 1313 423 214 423 1056 423 1056 424 214 424 2992 424 1056 425 2992 425 215 425 215 426 2992 426 2990 426 215 427 2990 427 1054 427 1054 428 2990 428 216 428 1054 429 216 429 251 429 251 430 216 430 2988 430 251 431 2988 431 274 431 274 432 2988 432 2987 432 274 433 2987 433 2985 433 3055 434 217 434 218 434 218 435 217 435 1216 435 218 436 1216 436 219 436 219 437 1216 437 220 437 219 438 220 438 221 438 221 439 220 439 222 439 221 440 222 440 282 440 282 441 222 441 223 441 282 442 223 442 281 442 281 443 223 443 1554 443 281 444 1554 444 1553 444 1553 445 1552 445 281 445 281 446 1552 446 224 446 281 447 224 447 1549 447 1549 448 1547 448 281 448 281 449 1547 449 1546 449 281 450 1546 450 225 450 225 451 226 451 281 451 281 452 226 452 661 452 281 453 661 453 227 453 227 454 228 454 281 454 281 455 228 455 663 455 281 456 663 456 664 456 664 457 665 457 281 457 281 458 665 458 1545 458 281 459 1545 459 1544 459 1544 460 229 460 281 460 281 461 229 461 230 461 281 462 230 462 231 462 281 463 231 463 604 463 604 464 231 464 1540 464 604 465 1540 465 232 465 232 466 1539 466 604 466 604 467 1539 467 233 467 604 468 233 468 1514 468 1514 469 234 469 604 469 604 470 234 470 235 470 604 471 235 471 236 471 236 472 1479 472 604 472 604 473 1479 473 792 473 604 474 792 474 237 474 237 475 793 475 604 475 604 476 793 476 238 476 604 477 238 477 1478 477 1478 478 1476 478 604 478 604 479 1476 479 239 479 604 480 239 480 240 480 240 481 1473 481 604 481 604 482 1473 482 1472 482 604 483 1472 483 1460 483 1460 484 241 484 604 484 604 485 241 485 1439 485 604 486 1439 486 1438 486 604 487 1438 487 183 487 183 488 1438 488 1418 488 183 489 1418 489 242 489 242 490 1392 490 183 490 183 491 1392 491 243 491 183 492 243 492 244 492 244 493 911 493 183 493 183 494 911 494 245 494 183 495 245 495 913 495 913 496 246 496 183 496 183 497 246 497 915 497 183 498 915 498 247 498 247 499 917 499 183 499 183 500 917 500 919 500 183 501 919 501 1380 501 1380 502 1379 502 183 502 183 503 1379 503 1377 503 183 504 1377 504 1376 504 1376 505 248 505 183 505 183 506 248 506 1374 506 183 507 1374 507 249 507 249 508 1372 508 183 508 183 509 1372 509 1354 509 183 510 1354 510 1342 510 1342 511 250 511 183 511 183 512 250 512 1315 512 183 513 1315 513 1314 513 1314 514 251 514 183 514 183 515 251 515 274 515 2962 516 2948 516 274 516 274 517 2948 517 252 517 274 518 252 518 260 518 260 519 252 519 2950 519 260 520 2950 520 2951 520 2951 521 3180 521 260 521 260 522 3180 522 3179 522 260 523 3179 523 253 523 253 524 3177 524 260 524 260 525 3177 525 254 525 260 526 254 526 3175 526 3175 527 3174 527 260 527 260 528 3174 528 255 528 260 529 255 529 256 529 256 530 257 530 260 530 260 531 257 531 2339 531 260 532 2339 532 2342 532 2342 533 2343 533 260 533 260 534 2343 534 2345 534 260 535 2345 535 2347 535 2347 536 2348 536 260 536 260 537 2348 537 258 537 260 538 258 538 259 538 259 539 3163 539 260 539 260 540 3163 540 3161 540 260 541 3161 541 3160 541 260 542 3160 542 265 542 265 543 3160 543 3158 543 265 544 3158 544 3145 544 3145 545 261 545 265 545 265 546 261 546 3123 546 265 547 3123 547 3116 547 3116 548 262 548 265 548 265 549 262 549 3090 549 265 550 3090 550 263 550 263 551 264 551 265 551 265 552 264 552 2378 552 265 553 2378 553 2380 553 2380 554 2381 554 265 554 265 555 2381 555 2383 555 265 556 2383 556 266 556 266 557 2384 557 265 557 265 558 2384 558 267 558 265 559 267 559 3068 559 3068 560 3067 560 265 560 265 561 3067 561 3066 561 265 562 3066 562 282 562 2985 563 268 563 274 563 274 564 268 564 269 564 274 565 269 565 270 565 270 566 2984 566 274 566 274 567 2984 567 271 567 274 568 271 568 2980 568 2980 569 2979 569 274 569 274 570 2979 570 272 570 274 571 272 571 2978 571 2978 572 2975 572 274 572 274 573 2975 573 273 573 274 574 273 574 2972 574 2972 575 2971 575 274 575 274 576 2971 576 275 576 274 577 275 577 2969 577 2969 578 276 578 274 578 274 579 276 579 277 579 274 580 277 580 2967 580 2967 581 2965 581 274 581 274 582 2965 582 2963 582 274 583 2963 583 2325 583 2325 584 2962 584 274 584 274 585 2140 585 278 585 278 586 2140 586 1 586 278 587 1 587 162 587 1 588 2140 588 279 588 279 589 2140 589 2139 589 279 590 2139 590 186 590 186 591 2139 591 280 591 280 592 2139 592 281 592 281 593 2139 593 265 593 281 594 265 594 282 594 260 595 2140 595 274 595 162 596 136 596 278 596 452 597 283 597 285 597 285 598 283 598 284 598 285 599 284 599 312 599 285 600 312 600 310 600 310 601 312 601 343 601 310 602 343 602 287 602 287 603 343 603 286 603 287 604 286 604 341 604 287 605 341 605 307 605 307 606 341 606 340 606 307 607 340 607 306 607 306 608 340 608 288 608 306 609 288 609 303 609 303 610 288 610 339 610 303 611 339 611 289 611 289 612 339 612 337 612 289 613 337 613 336 613 289 614 336 614 300 614 300 615 336 615 290 615 300 616 290 616 298 616 298 617 290 617 333 617 298 618 333 618 297 618 297 619 333 619 332 619 297 620 332 620 291 620 291 621 332 621 331 621 291 622 331 622 329 622 291 623 329 623 294 623 294 624 329 624 292 624 294 625 292 625 293 625 293 626 292 626 465 626 293 627 465 627 464 627 464 628 460 628 293 628 293 629 460 629 294 629 460 630 459 630 294 630 294 631 459 631 291 631 459 632 295 632 291 632 291 633 295 633 296 633 291 634 296 634 297 634 297 635 296 635 457 635 297 636 457 636 298 636 298 637 457 637 299 637 298 638 299 638 300 638 300 639 299 639 301 639 300 640 301 640 289 640 289 641 301 641 302 641 289 642 302 642 304 642 289 643 304 643 303 643 303 644 304 644 305 644 303 645 305 645 306 645 306 646 305 646 308 646 306 647 308 647 307 647 307 648 308 648 309 648 307 649 309 649 287 649 287 650 309 650 454 650 287 651 454 651 311 651 287 652 311 652 310 652 310 653 311 653 452 653 310 654 452 654 285 654 312 655 284 655 344 655 344 656 284 656 189 656 344 657 189 657 348 657 344 658 348 658 313 658 313 659 348 659 349 659 313 660 349 660 342 660 342 661 349 661 314 661 342 662 314 662 315 662 342 663 315 663 317 663 317 664 315 664 316 664 317 665 316 665 318 665 318 666 316 666 351 666 318 667 351 667 319 667 319 668 351 668 352 668 319 669 352 669 338 669 338 670 352 670 320 670 338 671 320 671 321 671 338 672 321 672 335 672 335 673 321 673 355 673 335 674 355 674 334 674 334 675 355 675 322 675 334 676 322 676 323 676 323 677 322 677 357 677 323 678 357 678 330 678 330 679 357 679 324 679 330 680 324 680 325 680 330 681 325 681 328 681 328 682 325 682 326 682 328 683 326 683 327 683 327 684 326 684 3822 684 327 685 3822 685 465 685 465 686 292 686 327 686 327 687 292 687 328 687 292 688 329 688 328 688 328 689 329 689 330 689 329 690 331 690 330 690 330 691 331 691 332 691 330 692 332 692 323 692 323 693 332 693 333 693 323 694 333 694 334 694 334 695 333 695 290 695 334 696 290 696 335 696 335 697 290 697 336 697 335 698 336 698 338 698 338 699 336 699 337 699 338 700 337 700 339 700 338 701 339 701 319 701 319 702 339 702 288 702 319 703 288 703 318 703 318 704 288 704 340 704 318 705 340 705 317 705 317 706 340 706 341 706 317 707 341 707 342 707 342 708 341 708 286 708 342 709 286 709 343 709 342 710 343 710 313 710 313 711 343 711 312 711 313 712 312 712 344 712 348 713 189 713 345 713 345 714 189 714 346 714 345 715 346 715 347 715 347 716 346 716 371 716 347 717 371 717 345 717 345 718 371 718 370 718 345 719 370 719 348 719 348 720 370 720 349 720 349 721 370 721 375 721 349 722 375 722 314 722 314 723 375 723 315 723 315 724 375 724 350 724 315 725 350 725 316 725 316 726 350 726 367 726 316 727 367 727 351 727 351 728 367 728 366 728 351 729 366 729 352 729 352 730 366 730 353 730 352 731 353 731 320 731 320 732 353 732 321 732 321 733 353 733 354 733 321 734 354 734 355 734 355 735 354 735 363 735 355 736 363 736 322 736 322 737 363 737 356 737 322 738 356 738 357 738 357 739 356 739 358 739 357 740 358 740 324 740 324 741 358 741 325 741 325 742 358 742 360 742 325 743 360 743 326 743 326 744 360 744 359 744 326 745 359 745 3822 745 3822 746 359 746 389 746 389 747 359 747 391 747 391 748 359 748 360 748 391 749 360 749 392 749 392 750 360 750 358 750 392 751 358 751 361 751 361 752 358 752 393 752 393 753 358 753 356 753 393 754 356 754 362 754 362 755 356 755 363 755 362 756 363 756 395 756 395 757 363 757 354 757 395 758 354 758 364 758 364 759 354 759 353 759 364 760 353 760 398 760 398 761 353 761 365 761 365 762 353 762 366 762 365 763 366 763 400 763 400 764 366 764 367 764 400 765 367 765 368 765 368 766 367 766 369 766 368 767 369 767 400 767 370 768 371 768 377 768 377 769 371 769 372 769 377 770 372 770 376 770 376 771 372 771 402 771 376 772 402 772 374 772 369 773 373 773 374 773 374 774 373 774 350 774 374 775 350 775 375 775 375 776 370 776 377 776 374 777 375 777 376 777 376 778 375 778 377 778 367 779 350 779 369 779 369 780 350 780 373 780 371 781 346 781 403 781 403 782 346 782 185 782 403 783 185 783 421 783 403 784 421 784 378 784 378 785 421 785 420 785 378 786 420 786 379 786 379 787 420 787 419 787 379 788 419 788 417 788 379 789 417 789 401 789 401 790 417 790 380 790 401 791 380 791 382 791 382 792 380 792 381 792 382 793 381 793 399 793 399 794 381 794 383 794 399 795 383 795 397 795 397 796 383 796 414 796 397 797 414 797 412 797 397 798 412 798 396 798 396 799 412 799 411 799 396 800 411 800 394 800 394 801 411 801 409 801 394 802 409 802 384 802 384 803 409 803 385 803 384 804 385 804 386 804 386 805 385 805 407 805 386 806 407 806 406 806 386 807 406 807 387 807 387 808 406 808 388 808 387 809 388 809 390 809 390 810 388 810 3824 810 390 811 3824 811 389 811 389 812 391 812 390 812 390 813 391 813 387 813 391 814 392 814 387 814 387 815 392 815 386 815 392 816 361 816 386 816 386 817 361 817 393 817 386 818 393 818 384 818 384 819 393 819 362 819 384 820 362 820 394 820 394 821 362 821 395 821 394 822 395 822 396 822 396 823 395 823 364 823 396 824 364 824 397 824 397 825 364 825 398 825 397 826 398 826 365 826 397 827 365 827 399 827 399 828 365 828 400 828 399 829 400 829 382 829 382 830 400 830 369 830 382 831 369 831 401 831 401 832 369 832 374 832 401 833 374 833 379 833 379 834 374 834 402 834 379 835 402 835 372 835 379 836 372 836 378 836 378 837 372 837 371 837 378 838 371 838 403 838 437 839 461 839 404 839 404 840 461 840 3824 840 404 841 3824 841 388 841 404 842 388 842 405 842 405 843 388 843 406 843 405 844 406 844 408 844 408 845 406 845 407 845 408 846 407 846 385 846 408 847 385 847 434 847 434 848 385 848 409 848 434 849 409 849 410 849 410 850 409 850 411 850 410 851 411 851 431 851 431 852 411 852 412 852 431 853 412 853 413 853 413 854 412 854 414 854 413 855 414 855 383 855 413 856 383 856 428 856 428 857 383 857 381 857 428 858 381 858 415 858 415 859 381 859 380 859 415 860 380 860 416 860 416 861 380 861 417 861 416 862 417 862 418 862 418 863 417 863 419 863 418 864 419 864 420 864 418 865 420 865 424 865 424 866 420 866 421 866 424 867 421 867 422 867 422 868 421 868 185 868 422 869 185 869 451 869 451 870 423 870 422 870 422 871 423 871 424 871 423 872 449 872 424 872 424 873 449 873 418 873 449 874 425 874 418 874 418 875 425 875 426 875 418 876 426 876 416 876 416 877 426 877 446 877 416 878 446 878 415 878 415 879 446 879 427 879 415 880 427 880 428 880 428 881 427 881 429 881 428 882 429 882 413 882 413 883 429 883 430 883 413 884 430 884 443 884 413 885 443 885 431 885 431 886 443 886 432 886 431 887 432 887 410 887 410 888 432 888 433 888 410 889 433 889 434 889 434 890 433 890 440 890 434 891 440 891 408 891 408 892 440 892 439 892 408 893 439 893 435 893 408 894 435 894 405 894 405 895 435 895 437 895 405 896 437 896 404 896 460 897 464 897 436 897 436 898 464 898 461 898 436 899 461 899 437 899 436 900 437 900 438 900 438 901 437 901 435 901 438 902 435 902 441 902 441 903 435 903 439 903 441 904 439 904 440 904 441 905 440 905 442 905 442 906 440 906 433 906 442 907 433 907 458 907 458 908 433 908 432 908 458 909 432 909 444 909 444 910 432 910 443 910 444 911 443 911 456 911 456 912 443 912 430 912 456 913 430 913 429 913 456 914 429 914 445 914 445 915 429 915 427 915 445 916 427 916 455 916 455 917 427 917 446 917 455 918 446 918 447 918 447 919 446 919 426 919 447 920 426 920 453 920 453 921 426 921 425 921 453 922 425 922 449 922 453 923 449 923 448 923 448 924 449 924 423 924 448 925 423 925 450 925 450 926 423 926 451 926 450 927 451 927 283 927 283 928 452 928 450 928 450 929 452 929 448 929 452 930 311 930 448 930 448 931 311 931 453 931 311 932 454 932 453 932 453 933 454 933 309 933 453 934 309 934 447 934 447 935 309 935 308 935 447 936 308 936 455 936 455 937 308 937 305 937 455 938 305 938 445 938 445 939 305 939 304 939 445 940 304 940 456 940 456 941 304 941 302 941 456 942 302 942 301 942 456 943 301 943 444 943 444 944 301 944 299 944 444 945 299 945 458 945 458 946 299 946 457 946 458 947 457 947 442 947 442 948 457 948 296 948 442 949 296 949 441 949 441 950 296 950 295 950 441 951 295 951 459 951 441 952 459 952 438 952 438 953 459 953 460 953 438 954 460 954 436 954 3824 955 461 955 3832 955 3832 956 461 956 462 956 461 957 464 957 462 957 462 958 464 958 463 958 464 959 465 959 463 959 463 960 465 960 466 960 498 961 184 961 500 961 500 962 184 962 280 962 500 963 280 963 502 963 502 964 280 964 536 964 502 965 536 965 501 965 501 966 536 966 535 966 501 967 535 967 467 967 501 968 467 968 468 968 468 969 467 969 533 969 468 970 533 970 503 970 503 971 533 971 469 971 503 972 469 972 504 972 504 973 469 973 471 973 504 974 471 974 470 974 470 975 471 975 530 975 470 976 530 976 505 976 505 977 530 977 472 977 505 978 472 978 529 978 505 979 529 979 506 979 506 980 529 980 473 980 506 981 473 981 474 981 474 982 473 982 475 982 474 983 475 983 507 983 507 984 475 984 476 984 507 985 476 985 477 985 477 986 476 986 478 986 477 987 478 987 479 987 477 988 479 988 480 988 480 989 479 989 526 989 480 990 526 990 508 990 508 991 526 991 525 991 508 992 525 992 481 992 508 993 481 993 509 993 509 994 481 994 483 994 509 995 483 995 482 995 482 996 483 996 484 996 482 997 484 997 485 997 485 998 484 998 486 998 485 999 486 999 591 999 485 1000 591 1000 487 1000 487 1001 591 1001 488 1001 487 1002 488 1002 489 1002 489 1003 488 1003 592 1003 489 1004 592 1004 490 1004 490 1005 592 1005 594 1005 490 1006 594 1006 491 1006 491 1007 594 1007 492 1007 491 1008 492 1008 596 1008 491 1009 596 1009 493 1009 493 1010 596 1010 599 1010 493 1011 599 1011 494 1011 494 1012 599 1012 600 1012 494 1013 600 1013 495 1013 495 1014 600 1014 601 1014 495 1015 601 1015 496 1015 496 1016 601 1016 602 1016 496 1017 602 1017 499 1017 499 1018 602 1018 497 1018 499 1019 497 1019 498 1019 499 1020 498 1020 500 1020 499 1021 500 1021 502 1021 496 1022 499 1022 501 1022 501 1023 499 1023 502 1023 495 1024 496 1024 468 1024 468 1025 496 1025 501 1025 494 1026 495 1026 503 1026 503 1027 495 1027 468 1027 493 1028 494 1028 504 1028 504 1029 494 1029 503 1029 491 1030 493 1030 470 1030 470 1031 493 1031 504 1031 490 1032 491 1032 505 1032 505 1033 491 1033 470 1033 489 1034 490 1034 506 1034 506 1035 490 1035 505 1035 487 1036 489 1036 474 1036 474 1037 489 1037 506 1037 485 1038 487 1038 507 1038 507 1039 487 1039 474 1039 482 1040 485 1040 477 1040 477 1041 485 1041 507 1041 509 1042 482 1042 480 1042 480 1043 482 1043 477 1043 508 1044 509 1044 480 1044 536 1045 280 1045 537 1045 537 1046 280 1046 281 1046 537 1047 281 1047 538 1047 538 1048 281 1048 551 1048 538 1049 551 1049 511 1049 511 1050 551 1050 510 1050 511 1051 510 1051 512 1051 511 1052 512 1052 513 1052 513 1053 512 1053 514 1053 513 1054 514 1054 516 1054 516 1055 514 1055 515 1055 516 1056 515 1056 540 1056 540 1057 515 1057 574 1057 540 1058 574 1058 541 1058 541 1059 574 1059 517 1059 541 1060 517 1060 519 1060 519 1061 517 1061 518 1061 519 1062 518 1062 572 1062 519 1063 572 1063 545 1063 545 1064 572 1064 571 1064 545 1065 571 1065 520 1065 520 1066 571 1066 521 1066 520 1067 521 1067 547 1067 547 1068 521 1068 569 1068 547 1069 569 1069 522 1069 522 1070 569 1070 567 1070 522 1071 567 1071 566 1071 522 1072 566 1072 550 1072 550 1073 566 1073 523 1073 550 1074 523 1074 524 1074 524 1075 523 1075 3825 1075 524 1076 3825 1076 525 1076 524 1077 525 1077 549 1077 549 1078 525 1078 526 1078 549 1079 526 1079 548 1079 548 1080 526 1080 479 1080 548 1081 479 1081 527 1081 527 1082 479 1082 478 1082 527 1083 478 1083 476 1083 527 1084 476 1084 546 1084 546 1085 476 1085 475 1085 546 1086 475 1086 544 1086 544 1087 475 1087 473 1087 544 1088 473 1088 528 1088 528 1089 473 1089 529 1089 528 1090 529 1090 543 1090 543 1091 529 1091 472 1091 543 1092 472 1092 530 1092 543 1093 530 1093 542 1093 542 1094 530 1094 471 1094 542 1095 471 1095 531 1095 531 1096 471 1096 469 1096 531 1097 469 1097 539 1097 539 1098 469 1098 533 1098 539 1099 533 1099 532 1099 532 1100 533 1100 467 1100 532 1101 467 1101 534 1101 534 1102 467 1102 535 1102 534 1103 535 1103 536 1103 534 1104 536 1104 537 1104 534 1105 537 1105 538 1105 532 1106 534 1106 511 1106 511 1107 534 1107 538 1107 539 1108 532 1108 513 1108 513 1109 532 1109 511 1109 531 1110 539 1110 516 1110 516 1111 539 1111 513 1111 542 1112 531 1112 540 1112 540 1113 531 1113 516 1113 543 1114 542 1114 541 1114 541 1115 542 1115 540 1115 528 1116 543 1116 519 1116 519 1117 543 1117 541 1117 544 1118 528 1118 545 1118 545 1119 528 1119 519 1119 546 1120 544 1120 520 1120 520 1121 544 1121 545 1121 527 1122 546 1122 547 1122 547 1123 546 1123 520 1123 548 1124 527 1124 522 1124 522 1125 527 1125 547 1125 549 1126 548 1126 550 1126 550 1127 548 1127 522 1127 524 1128 549 1128 550 1128 551 1129 281 1129 552 1129 552 1130 281 1130 604 1130 552 1131 604 1131 578 1131 578 1132 604 1132 606 1132 578 1133 606 1133 579 1133 579 1134 606 1134 607 1134 579 1135 607 1135 553 1135 579 1136 553 1136 554 1136 554 1137 553 1137 555 1137 554 1138 555 1138 556 1138 556 1139 555 1139 557 1139 556 1140 557 1140 581 1140 581 1141 557 1141 608 1141 581 1142 608 1142 584 1142 584 1143 608 1143 610 1143 584 1144 610 1144 582 1144 582 1145 610 1145 611 1145 582 1146 611 1146 612 1146 582 1147 612 1147 558 1147 558 1148 612 1148 615 1148 558 1149 615 1149 559 1149 559 1150 615 1150 560 1150 559 1151 560 1151 587 1151 587 1152 560 1152 561 1152 587 1153 561 1153 562 1153 562 1154 561 1154 618 1154 562 1155 618 1155 619 1155 562 1156 619 1156 563 1156 563 1157 619 1157 564 1157 563 1158 564 1158 565 1158 565 1159 564 1159 621 1159 565 1160 621 1160 3825 1160 565 1161 3825 1161 588 1161 588 1162 3825 1162 523 1162 588 1163 523 1163 589 1163 589 1164 523 1164 566 1164 589 1165 566 1165 568 1165 568 1166 566 1166 567 1166 568 1167 567 1167 569 1167 568 1168 569 1168 586 1168 586 1169 569 1169 521 1169 586 1170 521 1170 570 1170 570 1171 521 1171 571 1171 570 1172 571 1172 585 1172 585 1173 571 1173 572 1173 585 1174 572 1174 583 1174 583 1175 572 1175 518 1175 583 1176 518 1176 517 1176 583 1177 517 1177 573 1177 573 1178 517 1178 574 1178 573 1179 574 1179 575 1179 575 1180 574 1180 515 1180 575 1181 515 1181 580 1181 580 1182 515 1182 514 1182 580 1183 514 1183 576 1183 576 1184 514 1184 512 1184 576 1185 512 1185 577 1185 577 1186 512 1186 510 1186 577 1187 510 1187 551 1187 577 1188 551 1188 552 1188 577 1189 552 1189 578 1189 576 1190 577 1190 579 1190 579 1191 577 1191 578 1191 580 1192 576 1192 554 1192 554 1193 576 1193 579 1193 575 1194 580 1194 556 1194 556 1195 580 1195 554 1195 573 1196 575 1196 581 1196 581 1197 575 1197 556 1197 583 1198 573 1198 584 1198 584 1199 573 1199 581 1199 585 1200 583 1200 582 1200 582 1201 583 1201 584 1201 570 1202 585 1202 558 1202 558 1203 585 1203 582 1203 586 1204 570 1204 559 1204 559 1205 570 1205 558 1205 568 1206 586 1206 587 1206 587 1207 586 1207 559 1207 589 1208 568 1208 562 1208 562 1209 568 1209 587 1209 588 1210 589 1210 563 1210 563 1211 589 1211 562 1211 565 1212 588 1212 563 1212 621 1213 620 1213 481 1213 481 1214 620 1214 590 1214 481 1215 590 1215 483 1215 483 1216 590 1216 622 1216 483 1217 622 1217 484 1217 484 1218 622 1218 623 1218 484 1219 623 1219 486 1219 486 1220 623 1220 591 1220 591 1221 623 1221 624 1221 591 1222 624 1222 488 1222 488 1223 624 1223 627 1223 488 1224 627 1224 592 1224 592 1225 627 1225 593 1225 592 1226 593 1226 594 1226 594 1227 593 1227 595 1227 594 1228 595 1228 492 1228 492 1229 595 1229 596 1229 596 1230 595 1230 597 1230 596 1231 597 1231 599 1231 599 1232 597 1232 598 1232 599 1233 598 1233 600 1233 600 1234 598 1234 628 1234 600 1235 628 1235 601 1235 601 1236 628 1236 630 1236 601 1237 630 1237 602 1237 602 1238 630 1238 632 1238 602 1239 632 1239 497 1239 497 1240 632 1240 498 1240 498 1241 632 1241 603 1241 498 1242 603 1242 184 1242 184 1243 603 1243 605 1243 184 1244 605 1244 604 1244 604 1245 605 1245 606 1245 606 1246 605 1246 634 1246 606 1247 634 1247 607 1247 607 1248 634 1248 553 1248 553 1249 634 1249 633 1249 553 1250 633 1250 555 1250 555 1251 633 1251 631 1251 555 1252 631 1252 557 1252 557 1253 631 1253 609 1253 557 1254 609 1254 608 1254 608 1255 609 1255 629 1255 608 1256 629 1256 610 1256 610 1257 629 1257 613 1257 610 1258 613 1258 611 1258 611 1259 613 1259 612 1259 612 1260 613 1260 614 1260 612 1261 614 1261 615 1261 615 1262 614 1262 616 1262 615 1263 616 1263 560 1263 560 1264 616 1264 626 1264 560 1265 626 1265 561 1265 561 1266 626 1266 617 1266 561 1267 617 1267 618 1267 618 1268 617 1268 619 1268 619 1269 617 1269 625 1269 619 1270 625 1270 564 1270 564 1271 625 1271 620 1271 564 1272 620 1272 621 1272 622 1273 590 1273 620 1273 623 1274 622 1274 625 1274 625 1275 622 1275 620 1275 624 1276 623 1276 617 1276 617 1277 623 1277 625 1277 627 1278 624 1278 626 1278 626 1279 624 1279 617 1279 593 1280 627 1280 616 1280 616 1281 627 1281 626 1281 595 1282 593 1282 614 1282 614 1283 593 1283 616 1283 597 1284 595 1284 613 1284 613 1285 595 1285 614 1285 598 1286 597 1286 629 1286 629 1287 597 1287 613 1287 628 1288 598 1288 609 1288 609 1289 598 1289 629 1289 630 1290 628 1290 631 1290 631 1291 628 1291 609 1291 632 1292 630 1292 633 1292 633 1293 630 1293 631 1293 603 1294 632 1294 634 1294 634 1295 632 1295 633 1295 605 1296 603 1296 634 1296 621 1297 481 1297 3863 1297 3863 1298 481 1298 635 1298 481 1299 525 1299 635 1299 635 1300 525 1300 3833 1300 2137 1301 1572 1301 636 1301 636 1302 1572 1302 1574 1302 636 1303 1574 1303 2050 1303 2050 1304 1574 1304 637 1304 2050 1305 637 1305 1215 1305 1215 1306 637 1306 639 1306 1215 1307 639 1307 638 1307 638 1308 639 1308 640 1308 638 1309 640 1309 2036 1309 2036 1310 640 1310 641 1310 2036 1311 641 1311 2038 1311 2038 1312 641 1312 1592 1312 2038 1313 1592 1313 2039 1313 2039 1314 1592 1314 1594 1314 2039 1315 1594 1315 2040 1315 2040 1316 1594 1316 642 1316 2040 1317 642 1317 643 1317 643 1318 642 1318 644 1318 643 1319 644 1319 2042 1319 2042 1320 644 1320 1617 1320 2042 1321 1617 1321 2045 1321 2045 1322 1617 1322 1622 1322 2045 1323 1622 1323 645 1323 645 1324 1622 1324 1629 1324 645 1325 1629 1325 2048 1325 2048 1326 1629 1326 1630 1326 2048 1327 1630 1327 1225 1327 1225 1328 1630 1328 646 1328 1225 1329 646 1329 194 1329 1572 1330 2137 1330 647 1330 647 1331 2137 1331 2136 1331 647 1332 2136 1332 1578 1332 1578 1333 2136 1333 682 1333 1578 1334 682 1334 648 1334 648 1335 682 1335 683 1335 648 1336 683 1336 1583 1336 1583 1337 683 1337 684 1337 1583 1338 684 1338 1224 1338 1224 1339 684 1339 685 1339 1224 1340 685 1340 649 1340 649 1341 685 1341 650 1341 649 1342 650 1342 1659 1342 1659 1343 650 1343 651 1343 1659 1344 651 1344 652 1344 652 1345 651 1345 653 1345 652 1346 653 1346 1664 1346 1664 1347 653 1347 654 1347 1664 1348 654 1348 1668 1348 1668 1349 654 1349 689 1349 1668 1350 689 1350 1672 1350 1672 1351 689 1351 655 1351 1672 1352 655 1352 656 1352 656 1353 655 1353 692 1353 656 1354 692 1354 1682 1354 1682 1355 692 1355 657 1355 1682 1356 657 1356 1546 1356 1546 1357 657 1357 225 1357 225 1358 657 1358 658 1358 225 1359 658 1359 226 1359 226 1360 658 1360 659 1360 226 1361 659 1361 661 1361 661 1362 659 1362 660 1362 661 1363 660 1363 227 1363 227 1364 660 1364 1695 1364 227 1365 1695 1365 228 1365 228 1366 1695 1366 662 1366 228 1367 662 1367 663 1367 663 1368 662 1368 1721 1368 663 1369 1721 1369 664 1369 664 1370 1721 1370 666 1370 664 1371 666 1371 665 1371 665 1372 666 1372 744 1372 665 1373 744 1373 1746 1373 1746 1374 744 1374 667 1374 1746 1375 667 1375 668 1375 668 1376 667 1376 669 1376 668 1377 669 1377 670 1377 670 1378 669 1378 763 1378 670 1379 763 1379 1744 1379 1744 1380 763 1380 1718 1380 1744 1381 1718 1381 1742 1381 1742 1382 1718 1382 672 1382 1742 1383 672 1383 671 1383 671 1384 672 1384 673 1384 671 1385 673 1385 674 1385 674 1386 673 1386 1738 1386 674 1387 1738 1387 675 1387 675 1388 1738 1388 676 1388 675 1389 676 1389 677 1389 677 1390 676 1390 678 1390 677 1391 678 1391 1535 1391 1535 1392 678 1392 777 1392 1535 1393 777 1393 679 1393 679 1394 777 1394 776 1394 679 1395 776 1395 680 1395 680 1396 776 1396 2119 1396 680 1397 2119 1397 2118 1397 2136 1398 681 1398 682 1398 682 1399 681 1399 694 1399 682 1400 694 1400 683 1400 683 1401 694 1401 695 1401 683 1402 695 1402 684 1402 684 1403 695 1403 697 1403 684 1404 697 1404 685 1404 685 1405 697 1405 698 1405 685 1406 698 1406 650 1406 650 1407 698 1407 686 1407 650 1408 686 1408 651 1408 651 1409 686 1409 687 1409 651 1410 687 1410 653 1410 653 1411 687 1411 702 1411 653 1412 702 1412 654 1412 654 1413 702 1413 688 1413 654 1414 688 1414 689 1414 689 1415 688 1415 690 1415 689 1416 690 1416 655 1416 655 1417 690 1417 691 1417 655 1418 691 1418 692 1418 692 1419 691 1419 693 1419 692 1420 693 1420 657 1420 657 1421 693 1421 658 1421 681 1422 2134 1422 694 1422 694 1423 2134 1423 704 1423 694 1424 704 1424 695 1424 695 1425 704 1425 696 1425 695 1426 696 1426 697 1426 697 1427 696 1427 707 1427 697 1428 707 1428 698 1428 698 1429 707 1429 699 1429 698 1430 699 1430 686 1430 686 1431 699 1431 700 1431 686 1432 700 1432 687 1432 687 1433 700 1433 701 1433 687 1434 701 1434 702 1434 702 1435 701 1435 709 1435 702 1436 709 1436 688 1436 688 1437 709 1437 710 1437 688 1438 710 1438 690 1438 690 1439 710 1439 711 1439 690 1440 711 1440 691 1440 691 1441 711 1441 703 1441 691 1442 703 1442 693 1442 693 1443 703 1443 714 1443 693 1444 714 1444 658 1444 658 1445 714 1445 659 1445 2134 1446 2133 1446 704 1446 704 1447 2133 1447 705 1447 704 1448 705 1448 696 1448 696 1449 705 1449 706 1449 696 1450 706 1450 707 1450 707 1451 706 1451 1649 1451 707 1452 1649 1452 699 1452 699 1453 1649 1453 1650 1453 699 1454 1650 1454 700 1454 700 1455 1650 1455 1651 1455 700 1456 1651 1456 701 1456 701 1457 1651 1457 708 1457 701 1458 708 1458 709 1458 709 1459 708 1459 1654 1459 709 1460 1654 1460 710 1460 710 1461 1654 1461 1656 1461 710 1462 1656 1462 711 1462 711 1463 1656 1463 712 1463 711 1464 712 1464 703 1464 703 1465 712 1465 713 1465 703 1466 713 1466 714 1466 714 1467 713 1467 715 1467 714 1468 715 1468 659 1468 659 1469 715 1469 660 1469 705 1470 2133 1470 716 1470 716 1471 2133 1471 2132 1471 716 1472 2132 1472 1683 1472 1683 1473 2132 1473 2131 1473 1683 1474 2131 1474 1710 1474 1710 1475 2131 1475 717 1475 1710 1476 717 1476 1711 1476 1711 1477 717 1477 731 1477 1711 1478 731 1478 1707 1478 1707 1479 731 1479 732 1479 1707 1480 732 1480 718 1480 718 1481 732 1481 719 1481 718 1482 719 1482 1712 1482 1712 1483 719 1483 735 1483 1712 1484 735 1484 720 1484 720 1485 735 1485 721 1485 720 1486 721 1486 722 1486 722 1487 721 1487 723 1487 722 1488 723 1488 724 1488 724 1489 723 1489 739 1489 724 1490 739 1490 725 1490 725 1491 739 1491 726 1491 725 1492 726 1492 727 1492 727 1493 726 1493 741 1493 727 1494 741 1494 728 1494 728 1495 741 1495 742 1495 728 1496 742 1496 729 1496 729 1497 742 1497 730 1497 729 1498 730 1498 666 1498 666 1499 730 1499 744 1499 717 1500 745 1500 731 1500 731 1501 745 1501 746 1501 731 1502 746 1502 732 1502 732 1503 746 1503 733 1503 732 1504 733 1504 719 1504 719 1505 733 1505 734 1505 719 1506 734 1506 735 1506 735 1507 734 1507 749 1507 735 1508 749 1508 721 1508 721 1509 749 1509 736 1509 721 1510 736 1510 723 1510 723 1511 736 1511 737 1511 723 1512 737 1512 739 1512 739 1513 737 1513 738 1513 739 1514 738 1514 726 1514 726 1515 738 1515 740 1515 726 1516 740 1516 741 1516 741 1517 740 1517 743 1517 741 1518 743 1518 742 1518 742 1519 743 1519 753 1519 742 1520 753 1520 730 1520 730 1521 753 1521 667 1521 730 1522 667 1522 744 1522 745 1523 2129 1523 746 1523 746 1524 2129 1524 747 1524 746 1525 747 1525 733 1525 733 1526 747 1526 755 1526 733 1527 755 1527 734 1527 734 1528 755 1528 748 1528 734 1529 748 1529 749 1529 749 1530 748 1530 750 1530 749 1531 750 1531 736 1531 736 1532 750 1532 757 1532 736 1533 757 1533 737 1533 737 1534 757 1534 760 1534 737 1535 760 1535 738 1535 738 1536 760 1536 762 1536 738 1537 762 1537 740 1537 740 1538 762 1538 751 1538 740 1539 751 1539 743 1539 743 1540 751 1540 752 1540 743 1541 752 1541 753 1541 753 1542 752 1542 669 1542 753 1543 669 1543 667 1543 2129 1544 2126 1544 747 1544 747 1545 2126 1545 754 1545 747 1546 754 1546 755 1546 755 1547 754 1547 756 1547 755 1548 756 1548 748 1548 748 1549 756 1549 1714 1549 748 1550 1714 1550 750 1550 750 1551 1714 1551 758 1551 750 1552 758 1552 757 1552 757 1553 758 1553 759 1553 757 1554 759 1554 760 1554 760 1555 759 1555 1717 1555 760 1556 1717 1556 762 1556 762 1557 1717 1557 761 1557 762 1558 761 1558 751 1558 751 1559 761 1559 1719 1559 751 1560 1719 1560 752 1560 752 1561 1719 1561 763 1561 752 1562 763 1562 669 1562 754 1563 2126 1563 1713 1563 1713 1564 2126 1564 764 1564 1713 1565 764 1565 765 1565 765 1566 764 1566 2123 1566 765 1567 2123 1567 1735 1567 1735 1568 2123 1568 766 1568 1735 1569 766 1569 767 1569 767 1570 766 1570 770 1570 767 1571 770 1571 1734 1571 1734 1572 770 1572 771 1572 1734 1573 771 1573 768 1573 768 1574 771 1574 769 1574 768 1575 769 1575 1737 1575 1737 1576 769 1576 676 1576 1737 1577 676 1577 1738 1577 766 1578 2121 1578 770 1578 770 1579 2121 1579 773 1579 770 1580 773 1580 771 1580 771 1581 773 1581 774 1581 771 1582 774 1582 769 1582 769 1583 774 1583 678 1583 769 1584 678 1584 676 1584 2121 1585 772 1585 773 1585 773 1586 772 1586 775 1586 773 1587 775 1587 774 1587 774 1588 775 1588 777 1588 774 1589 777 1589 678 1589 772 1590 2119 1590 775 1590 775 1591 2119 1591 776 1591 775 1592 776 1592 777 1592 680 1593 2118 1593 778 1593 778 1594 2118 1594 2117 1594 778 1595 2117 1595 1489 1595 1489 1596 2117 1596 2114 1596 1489 1597 2114 1597 1488 1597 1488 1598 2114 1598 779 1598 1488 1599 779 1599 1487 1599 1487 1600 779 1600 805 1600 1487 1601 805 1601 780 1601 780 1602 805 1602 781 1602 780 1603 781 1603 1485 1603 1485 1604 781 1604 807 1604 1485 1605 807 1605 782 1605 782 1606 807 1606 810 1606 782 1607 810 1607 783 1607 783 1608 810 1608 784 1608 783 1609 784 1609 786 1609 786 1610 784 1610 785 1610 786 1611 785 1611 787 1611 787 1612 785 1612 811 1612 787 1613 811 1613 788 1613 788 1614 811 1614 812 1614 788 1615 812 1615 1481 1615 1481 1616 812 1616 789 1616 1481 1617 789 1617 790 1617 790 1618 789 1618 814 1618 790 1619 814 1619 1480 1619 1480 1620 814 1620 791 1620 1480 1621 791 1621 1479 1621 1479 1622 791 1622 792 1622 792 1623 791 1623 832 1623 792 1624 832 1624 237 1624 237 1625 832 1625 833 1625 237 1626 833 1626 793 1626 793 1627 833 1627 855 1627 793 1628 855 1628 794 1628 794 1629 855 1629 795 1629 794 1630 795 1630 897 1630 897 1631 795 1631 796 1631 897 1632 796 1632 896 1632 896 1633 796 1633 797 1633 896 1634 797 1634 894 1634 894 1635 797 1635 1798 1635 894 1636 1798 1636 798 1636 798 1637 1798 1637 1806 1637 798 1638 1806 1638 799 1638 799 1639 1806 1639 872 1639 799 1640 872 1640 800 1640 800 1641 872 1641 877 1641 800 1642 877 1642 801 1642 801 1643 877 1643 881 1643 801 1644 881 1644 890 1644 890 1645 881 1645 880 1645 890 1646 880 1646 802 1646 802 1647 880 1647 803 1647 802 1648 803 1648 887 1648 887 1649 803 1649 884 1649 887 1650 884 1650 885 1650 885 1651 884 1651 2101 1651 885 1652 2101 1652 804 1652 2114 1653 816 1653 779 1653 779 1654 816 1654 819 1654 779 1655 819 1655 805 1655 805 1656 819 1656 806 1656 805 1657 806 1657 781 1657 781 1658 806 1658 808 1658 781 1659 808 1659 807 1659 807 1660 808 1660 809 1660 807 1661 809 1661 810 1661 810 1662 809 1662 823 1662 810 1663 823 1663 784 1663 784 1664 823 1664 824 1664 784 1665 824 1665 785 1665 785 1666 824 1666 825 1666 785 1667 825 1667 811 1667 811 1668 825 1668 827 1668 811 1669 827 1669 812 1669 812 1670 827 1670 813 1670 812 1671 813 1671 789 1671 789 1672 813 1672 830 1672 789 1673 830 1673 814 1673 814 1674 830 1674 815 1674 814 1675 815 1675 791 1675 791 1676 815 1676 832 1676 816 1677 817 1677 819 1677 819 1678 817 1678 818 1678 819 1679 818 1679 806 1679 806 1680 818 1680 820 1680 806 1681 820 1681 808 1681 808 1682 820 1682 821 1682 808 1683 821 1683 809 1683 809 1684 821 1684 822 1684 809 1685 822 1685 823 1685 823 1686 822 1686 836 1686 823 1687 836 1687 824 1687 824 1688 836 1688 838 1688 824 1689 838 1689 825 1689 825 1690 838 1690 826 1690 825 1691 826 1691 827 1691 827 1692 826 1692 828 1692 827 1693 828 1693 813 1693 813 1694 828 1694 829 1694 813 1695 829 1695 830 1695 830 1696 829 1696 841 1696 830 1697 841 1697 815 1697 815 1698 841 1698 831 1698 815 1699 831 1699 832 1699 832 1700 831 1700 833 1700 817 1701 2111 1701 818 1701 818 1702 2111 1702 842 1702 818 1703 842 1703 820 1703 820 1704 842 1704 834 1704 820 1705 834 1705 821 1705 821 1706 834 1706 845 1706 821 1707 845 1707 822 1707 822 1708 845 1708 835 1708 822 1709 835 1709 836 1709 836 1710 835 1710 837 1710 836 1711 837 1711 838 1711 838 1712 837 1712 839 1712 838 1713 839 1713 826 1713 826 1714 839 1714 849 1714 826 1715 849 1715 828 1715 828 1716 849 1716 850 1716 828 1717 850 1717 829 1717 829 1718 850 1718 840 1718 829 1719 840 1719 841 1719 841 1720 840 1720 853 1720 841 1721 853 1721 831 1721 831 1722 853 1722 854 1722 831 1723 854 1723 833 1723 833 1724 854 1724 855 1724 2111 1725 2110 1725 842 1725 842 1726 2110 1726 843 1726 842 1727 843 1727 834 1727 834 1728 843 1728 844 1728 834 1729 844 1729 845 1729 845 1730 844 1730 1777 1730 845 1731 1777 1731 835 1731 835 1732 1777 1732 846 1732 835 1733 846 1733 837 1733 837 1734 846 1734 847 1734 837 1735 847 1735 839 1735 839 1736 847 1736 848 1736 839 1737 848 1737 849 1737 849 1738 848 1738 851 1738 849 1739 851 1739 850 1739 850 1740 851 1740 1781 1740 850 1741 1781 1741 840 1741 840 1742 1781 1742 852 1742 840 1743 852 1743 853 1743 853 1744 852 1744 1784 1744 853 1745 1784 1745 854 1745 854 1746 1784 1746 795 1746 854 1747 795 1747 855 1747 843 1748 2110 1748 856 1748 856 1749 2110 1749 857 1749 856 1750 857 1750 1791 1750 1791 1751 857 1751 2108 1751 1791 1752 2108 1752 1801 1752 1801 1753 2108 1753 858 1753 1801 1754 858 1754 859 1754 859 1755 858 1755 864 1755 859 1756 864 1756 1799 1756 1799 1757 864 1757 866 1757 1799 1758 866 1758 860 1758 860 1759 866 1759 867 1759 860 1760 867 1760 1804 1760 1804 1761 867 1761 870 1761 1804 1762 870 1762 861 1762 861 1763 870 1763 871 1763 861 1764 871 1764 862 1764 862 1765 871 1765 872 1765 862 1766 872 1766 1806 1766 858 1767 863 1767 864 1767 864 1768 863 1768 865 1768 864 1769 865 1769 866 1769 866 1770 865 1770 868 1770 866 1771 868 1771 867 1771 867 1772 868 1772 869 1772 867 1773 869 1773 870 1773 870 1774 869 1774 876 1774 870 1775 876 1775 871 1775 871 1776 876 1776 877 1776 871 1777 877 1777 872 1777 863 1778 2105 1778 865 1778 865 1779 2105 1779 873 1779 865 1780 873 1780 868 1780 868 1781 873 1781 874 1781 868 1782 874 1782 869 1782 869 1783 874 1783 875 1783 869 1784 875 1784 876 1784 876 1785 875 1785 881 1785 876 1786 881 1786 877 1786 2105 1787 878 1787 873 1787 873 1788 878 1788 879 1788 873 1789 879 1789 874 1789 874 1790 879 1790 1805 1790 874 1791 1805 1791 875 1791 875 1792 1805 1792 880 1792 875 1793 880 1793 881 1793 879 1794 878 1794 882 1794 882 1795 878 1795 883 1795 882 1796 883 1796 884 1796 884 1797 883 1797 2101 1797 2100 1798 899 1798 804 1798 804 1799 899 1799 1431 1799 804 1800 1431 1800 885 1800 885 1801 1431 1801 886 1801 885 1802 886 1802 887 1802 887 1803 886 1803 888 1803 887 1804 888 1804 802 1804 802 1805 888 1805 889 1805 802 1806 889 1806 890 1806 890 1807 889 1807 1470 1807 890 1808 1470 1808 801 1808 801 1809 1470 1809 891 1809 801 1810 891 1810 800 1810 800 1811 891 1811 892 1811 800 1812 892 1812 799 1812 799 1813 892 1813 1810 1813 799 1814 1810 1814 798 1814 798 1815 1810 1815 893 1815 798 1816 893 1816 894 1816 894 1817 893 1817 895 1817 894 1818 895 1818 896 1818 896 1819 895 1819 898 1819 896 1820 898 1820 897 1820 897 1821 898 1821 1477 1821 897 1822 1477 1822 794 1822 794 1823 1477 1823 238 1823 794 1824 238 1824 793 1824 899 1825 2100 1825 900 1825 900 1826 2100 1826 2098 1826 900 1827 2098 1827 901 1827 901 1828 2098 1828 930 1828 901 1829 930 1829 902 1829 902 1830 930 1830 931 1830 902 1831 931 1831 903 1831 903 1832 931 1832 932 1832 903 1833 932 1833 904 1833 904 1834 932 1834 934 1834 904 1835 934 1835 905 1835 905 1836 934 1836 935 1836 905 1837 935 1837 1390 1837 1390 1838 935 1838 907 1838 1390 1839 907 1839 906 1839 906 1840 907 1840 939 1840 906 1841 939 1841 1387 1841 1387 1842 939 1842 908 1842 1387 1843 908 1843 1385 1843 1385 1844 908 1844 940 1844 1385 1845 940 1845 1384 1845 1384 1846 940 1846 941 1846 1384 1847 941 1847 1382 1847 1382 1848 941 1848 943 1848 1382 1849 943 1849 909 1849 909 1850 943 1850 944 1850 909 1851 944 1851 910 1851 910 1852 944 1852 945 1852 910 1853 945 1853 244 1853 244 1854 945 1854 958 1854 244 1855 958 1855 911 1855 911 1856 958 1856 973 1856 911 1857 973 1857 245 1857 245 1858 973 1858 912 1858 245 1859 912 1859 913 1859 913 1860 912 1860 1836 1860 913 1861 1836 1861 246 1861 246 1862 1836 1862 914 1862 246 1863 914 1863 915 1863 915 1864 914 1864 916 1864 915 1865 916 1865 247 1865 247 1866 916 1866 1881 1866 247 1867 1881 1867 917 1867 917 1868 1881 1868 918 1868 917 1869 918 1869 919 1869 919 1870 918 1870 920 1870 919 1871 920 1871 921 1871 921 1872 920 1872 1006 1872 921 1873 1006 1873 1909 1873 1909 1874 1006 1874 1873 1874 1909 1875 1873 1875 1908 1875 1908 1876 1873 1876 1871 1876 1908 1877 1871 1877 1907 1877 1907 1878 1871 1878 922 1878 1907 1879 922 1879 1906 1879 1906 1880 922 1880 923 1880 1906 1881 923 1881 1905 1881 1905 1882 923 1882 924 1882 1905 1883 924 1883 1904 1883 1904 1884 924 1884 1025 1884 1904 1885 1025 1885 1903 1885 1903 1886 1025 1886 1031 1886 1903 1887 1031 1887 1370 1887 1370 1888 1031 1888 925 1888 1370 1889 925 1889 1360 1889 1360 1890 925 1890 1036 1890 1360 1891 1036 1891 926 1891 926 1892 1036 1892 1037 1892 926 1893 1037 1893 927 1893 927 1894 1037 1894 928 1894 927 1895 928 1895 929 1895 930 1896 2095 1896 931 1896 931 1897 2095 1897 947 1897 931 1898 947 1898 932 1898 932 1899 947 1899 948 1899 932 1900 948 1900 934 1900 934 1901 948 1901 933 1901 934 1902 933 1902 935 1902 935 1903 933 1903 936 1903 935 1904 936 1904 907 1904 907 1905 936 1905 937 1905 907 1906 937 1906 939 1906 939 1907 937 1907 938 1907 939 1908 938 1908 908 1908 908 1909 938 1909 953 1909 908 1910 953 1910 940 1910 940 1911 953 1911 956 1911 940 1912 956 1912 941 1912 941 1913 956 1913 942 1913 941 1914 942 1914 943 1914 943 1915 942 1915 957 1915 943 1916 957 1916 944 1916 944 1917 957 1917 946 1917 944 1918 946 1918 945 1918 945 1919 946 1919 958 1919 2095 1920 960 1920 947 1920 947 1921 960 1921 961 1921 947 1922 961 1922 948 1922 948 1923 961 1923 949 1923 948 1924 949 1924 933 1924 933 1925 949 1925 950 1925 933 1926 950 1926 936 1926 936 1927 950 1927 951 1927 936 1928 951 1928 937 1928 937 1929 951 1929 952 1929 937 1930 952 1930 938 1930 938 1931 952 1931 954 1931 938 1932 954 1932 953 1932 953 1933 954 1933 967 1933 953 1934 967 1934 956 1934 956 1935 967 1935 955 1935 956 1936 955 1936 942 1936 942 1937 955 1937 969 1937 942 1938 969 1938 957 1938 957 1939 969 1939 971 1939 957 1940 971 1940 946 1940 946 1941 971 1941 959 1941 946 1942 959 1942 958 1942 958 1943 959 1943 973 1943 960 1944 962 1944 961 1944 961 1945 962 1945 1827 1945 961 1946 1827 1946 949 1946 949 1947 1827 1947 963 1947 949 1948 963 1948 950 1948 950 1949 963 1949 1828 1949 950 1950 1828 1950 951 1950 951 1951 1828 1951 964 1951 951 1952 964 1952 952 1952 952 1953 964 1953 965 1953 952 1954 965 1954 954 1954 954 1955 965 1955 966 1955 954 1956 966 1956 967 1956 967 1957 966 1957 968 1957 967 1958 968 1958 955 1958 955 1959 968 1959 970 1959 955 1960 970 1960 969 1960 969 1961 970 1961 1832 1961 969 1962 1832 1962 971 1962 971 1963 1832 1963 1833 1963 971 1964 1833 1964 959 1964 959 1965 1833 1965 972 1965 959 1966 972 1966 973 1966 973 1967 972 1967 912 1967 1827 1968 962 1968 1837 1968 1837 1969 962 1969 974 1969 1837 1970 974 1970 1839 1970 1839 1971 974 1971 2092 1971 1839 1972 2092 1972 975 1972 975 1973 2092 1973 2089 1973 975 1974 2089 1974 1860 1974 1860 1975 2089 1975 982 1975 1860 1976 982 1976 1862 1976 1862 1977 982 1977 976 1977 1862 1978 976 1978 1861 1978 1861 1979 976 1979 977 1979 1861 1980 977 1980 1864 1980 1864 1981 977 1981 985 1981 1864 1982 985 1982 1874 1982 1874 1983 985 1983 986 1983 1874 1984 986 1984 1875 1984 1875 1985 986 1985 989 1985 1875 1986 989 1986 1876 1986 1876 1987 989 1987 990 1987 1876 1988 990 1988 978 1988 978 1989 990 1989 991 1989 978 1990 991 1990 1878 1990 1878 1991 991 1991 979 1991 1878 1992 979 1992 1880 1992 1880 1993 979 1993 993 1993 1880 1994 993 1994 980 1994 980 1995 993 1995 981 1995 980 1996 981 1996 1881 1996 1881 1997 981 1997 918 1997 2089 1998 2088 1998 982 1998 982 1999 2088 1999 983 1999 982 2000 983 2000 976 2000 976 2001 983 2001 996 2001 976 2002 996 2002 977 2002 977 2003 996 2003 984 2003 977 2004 984 2004 985 2004 985 2005 984 2005 987 2005 985 2006 987 2006 986 2006 986 2007 987 2007 988 2007 986 2008 988 2008 989 2008 989 2009 988 2009 1000 2009 989 2010 1000 2010 990 2010 990 2011 1000 2011 1001 2011 990 2012 1001 2012 991 2012 991 2013 1001 2013 992 2013 991 2014 992 2014 979 2014 979 2015 992 2015 1003 2015 979 2016 1003 2016 993 2016 993 2017 1003 2017 1004 2017 993 2018 1004 2018 981 2018 981 2019 1004 2019 994 2019 981 2020 994 2020 918 2020 918 2021 994 2021 920 2021 2088 2022 995 2022 983 2022 983 2023 995 2023 997 2023 983 2024 997 2024 996 2024 996 2025 997 2025 998 2025 996 2026 998 2026 984 2026 984 2027 998 2027 1008 2027 984 2028 1008 2028 987 2028 987 2029 1008 2029 999 2029 987 2030 999 2030 988 2030 988 2031 999 2031 1011 2031 988 2032 1011 2032 1000 2032 1000 2033 1011 2033 1013 2033 1000 2034 1013 2034 1001 2034 1001 2035 1013 2035 1014 2035 1001 2036 1014 2036 992 2036 992 2037 1014 2037 1015 2037 992 2038 1015 2038 1003 2038 1003 2039 1015 2039 1002 2039 1003 2040 1002 2040 1004 2040 1004 2041 1002 2041 1005 2041 1004 2042 1005 2042 994 2042 994 2043 1005 2043 1006 2043 994 2044 1006 2044 920 2044 995 2045 2085 2045 997 2045 997 2046 2085 2046 1007 2046 997 2047 1007 2047 998 2047 998 2048 1007 2048 1009 2048 998 2049 1009 2049 1008 2049 1008 2050 1009 2050 1867 2050 1008 2051 1867 2051 999 2051 999 2052 1867 2052 1010 2052 999 2053 1010 2053 1011 2053 1011 2054 1010 2054 1012 2054 1011 2055 1012 2055 1013 2055 1013 2056 1012 2056 1868 2056 1013 2057 1868 2057 1014 2057 1014 2058 1868 2058 1016 2058 1014 2059 1016 2059 1015 2059 1015 2060 1016 2060 1870 2060 1015 2061 1870 2061 1002 2061 1002 2062 1870 2062 1872 2062 1002 2063 1872 2063 1005 2063 1005 2064 1872 2064 1873 2064 1005 2065 1873 2065 1006 2065 1007 2066 2085 2066 1866 2066 1866 2067 2085 2067 2084 2067 1866 2068 2084 2068 1891 2068 1891 2069 2084 2069 1017 2069 1891 2070 1017 2070 1892 2070 1892 2071 1017 2071 2081 2071 1892 2072 2081 2072 1018 2072 1018 2073 2081 2073 1019 2073 1018 2074 1019 2074 1020 2074 1020 2075 1019 2075 1029 2075 1020 2076 1029 2076 1901 2076 1901 2077 1029 2077 1022 2077 1901 2078 1022 2078 1021 2078 1021 2079 1022 2079 1024 2079 1021 2080 1024 2080 1023 2080 1023 2081 1024 2081 1025 2081 1023 2082 1025 2082 924 2082 2081 2083 1026 2083 1019 2083 1019 2084 1026 2084 1027 2084 1019 2085 1027 2085 1029 2085 1029 2086 1027 2086 1028 2086 1029 2087 1028 2087 1022 2087 1022 2088 1028 2088 1030 2088 1022 2089 1030 2089 1024 2089 1024 2090 1030 2090 1031 2090 1024 2091 1031 2091 1025 2091 1026 2092 2078 2092 1027 2092 1027 2093 2078 2093 1033 2093 1027 2094 1033 2094 1028 2094 1028 2095 1033 2095 1032 2095 1028 2096 1032 2096 1030 2096 1030 2097 1032 2097 925 2097 1030 2098 925 2098 1031 2098 2078 2099 1034 2099 1033 2099 1033 2100 1034 2100 1035 2100 1033 2101 1035 2101 1032 2101 1032 2102 1035 2102 1036 2102 1032 2103 1036 2103 925 2103 1035 2104 1034 2104 1037 2104 1037 2105 1034 2105 928 2105 927 2106 929 2106 1341 2106 1341 2107 929 2107 1038 2107 1341 2108 1038 2108 1327 2108 1327 2109 1038 2109 1092 2109 1327 2110 1092 2110 1039 2110 1039 2111 1092 2111 1040 2111 1039 2112 1040 2112 1326 2112 1326 2113 1040 2113 1095 2113 1326 2114 1095 2114 1041 2114 1041 2115 1095 2115 1096 2115 1041 2116 1096 2116 1042 2116 1042 2117 1096 2117 1043 2117 1042 2118 1043 2118 1044 2118 1044 2119 1043 2119 1045 2119 1044 2120 1045 2120 1046 2120 1046 2121 1045 2121 1047 2121 1046 2122 1047 2122 1322 2122 1322 2123 1047 2123 1099 2123 1322 2124 1099 2124 1320 2124 1320 2125 1099 2125 1048 2125 1320 2126 1048 2126 1049 2126 1049 2127 1048 2127 1050 2127 1049 2128 1050 2128 1317 2128 1317 2129 1050 2129 1101 2129 1317 2130 1101 2130 1316 2130 1316 2131 1101 2131 1051 2131 1316 2132 1051 2132 1052 2132 1052 2133 1051 2133 1104 2133 1052 2134 1104 2134 1053 2134 1053 2135 1104 2135 1105 2135 1053 2136 1105 2136 1054 2136 1054 2137 1105 2137 215 2137 215 2138 1105 2138 1055 2138 215 2139 1055 2139 1056 2139 1056 2140 1055 2140 1057 2140 1056 2141 1057 2141 1058 2141 1058 2142 1057 2142 1059 2142 1058 2143 1059 2143 1996 2143 1996 2144 1059 2144 1970 2144 1996 2145 1970 2145 1992 2145 1992 2146 1970 2146 1060 2146 1992 2147 1060 2147 1061 2147 1061 2148 1060 2148 1969 2148 1061 2149 1969 2149 1981 2149 1981 2150 1969 2150 1062 2150 1981 2151 1062 2151 1976 2151 1976 2152 1062 2152 1063 2152 1976 2153 1063 2153 1972 2153 1972 2154 1063 2154 1951 2154 1972 2155 1951 2155 1064 2155 1064 2156 1951 2156 1065 2156 1064 2157 1065 2157 1303 2157 1303 2158 1065 2158 1968 2158 1303 2159 1968 2159 1304 2159 1304 2160 1968 2160 1967 2160 1304 2161 1967 2161 1066 2161 1066 2162 1967 2162 1067 2162 1066 2163 1067 2163 1068 2163 1068 2164 1067 2164 1159 2164 1068 2165 1159 2165 1264 2165 1264 2166 1159 2166 2061 2166 1264 2167 2061 2167 1069 2167 1069 2168 2061 2168 1070 2168 1069 2169 1070 2169 1238 2169 1238 2170 1070 2170 2060 2170 1238 2171 2060 2171 1237 2171 1237 2172 2060 2172 1160 2172 1237 2173 1160 2173 1071 2173 1071 2174 1160 2174 1072 2174 1071 2175 1072 2175 1235 2175 1235 2176 1072 2176 1162 2176 1235 2177 1162 2177 1073 2177 1073 2178 1162 2178 1163 2178 1073 2179 1163 2179 1234 2179 1234 2180 1163 2180 1074 2180 1234 2181 1074 2181 1232 2181 1232 2182 1074 2182 1164 2182 1232 2183 1164 2183 1230 2183 1230 2184 1164 2184 1075 2184 1230 2185 1075 2185 1076 2185 1076 2186 1075 2186 1077 2186 1076 2187 1077 2187 1078 2187 1078 2188 1077 2188 1166 2188 1078 2189 1166 2189 1080 2189 1080 2190 1166 2190 1079 2190 1080 2191 1079 2191 1227 2191 1227 2192 1079 2192 1170 2192 1227 2193 1170 2193 1226 2193 1226 2194 1170 2194 1172 2194 1226 2195 1172 2195 197 2195 197 2196 1172 2196 196 2196 196 2197 1172 2197 1081 2197 196 2198 1081 2198 2047 2198 2047 2199 1081 2199 1186 2199 2047 2200 1186 2200 1082 2200 1082 2201 1186 2201 1083 2201 1082 2202 1083 2202 2046 2202 2046 2203 1083 2203 2014 2203 2046 2204 2014 2204 1084 2204 1084 2205 2014 2205 2023 2205 1084 2206 2023 2206 2044 2206 2044 2207 2023 2207 2034 2207 2044 2208 2034 2208 2043 2208 2043 2209 2034 2209 1085 2209 2043 2210 1085 2210 2041 2210 2041 2211 1085 2211 1086 2211 2041 2212 1086 2212 1087 2212 1087 2213 1086 2213 1206 2213 1087 2214 1206 2214 1088 2214 1088 2215 1206 2215 1213 2215 1088 2216 1213 2216 2037 2216 2037 2217 1213 2217 1089 2217 2037 2218 1089 2218 2035 2218 2035 2219 1089 2219 2032 2219 2035 2220 2032 2220 1090 2220 1090 2221 2032 2221 1091 2221 1090 2222 1091 2222 1214 2222 1038 2223 1106 2223 1092 2223 1092 2224 1106 2224 1093 2224 1092 2225 1093 2225 1040 2225 1040 2226 1093 2226 1094 2226 1040 2227 1094 2227 1095 2227 1095 2228 1094 2228 1109 2228 1095 2229 1109 2229 1096 2229 1096 2230 1109 2230 1097 2230 1096 2231 1097 2231 1043 2231 1043 2232 1097 2232 1111 2232 1043 2233 1111 2233 1045 2233 1045 2234 1111 2234 1098 2234 1045 2235 1098 2235 1047 2235 1047 2236 1098 2236 1113 2236 1047 2237 1113 2237 1099 2237 1099 2238 1113 2238 1115 2238 1099 2239 1115 2239 1048 2239 1048 2240 1115 2240 1118 2240 1048 2241 1118 2241 1050 2241 1050 2242 1118 2242 1100 2242 1050 2243 1100 2243 1101 2243 1101 2244 1100 2244 1102 2244 1101 2245 1102 2245 1051 2245 1051 2246 1102 2246 1103 2246 1051 2247 1103 2247 1104 2247 1104 2248 1103 2248 1122 2248 1104 2249 1122 2249 1105 2249 1105 2250 1122 2250 1055 2250 1106 2251 1107 2251 1093 2251 1093 2252 1107 2252 1124 2252 1093 2253 1124 2253 1094 2253 1094 2254 1124 2254 1108 2254 1094 2255 1108 2255 1109 2255 1109 2256 1108 2256 1110 2256 1109 2257 1110 2257 1097 2257 1097 2258 1110 2258 1112 2258 1097 2259 1112 2259 1111 2259 1111 2260 1112 2260 1125 2260 1111 2261 1125 2261 1098 2261 1098 2262 1125 2262 1114 2262 1098 2263 1114 2263 1113 2263 1113 2264 1114 2264 1116 2264 1113 2265 1116 2265 1115 2265 1115 2266 1116 2266 1117 2266 1115 2267 1117 2267 1118 2267 1118 2268 1117 2268 1119 2268 1118 2269 1119 2269 1100 2269 1100 2270 1119 2270 1129 2270 1100 2271 1129 2271 1102 2271 1102 2272 1129 2272 1120 2272 1102 2273 1120 2273 1103 2273 1103 2274 1120 2274 1121 2274 1103 2275 1121 2275 1122 2275 1122 2276 1121 2276 1123 2276 1122 2277 1123 2277 1055 2277 1055 2278 1123 2278 1057 2278 1107 2279 2073 2279 1124 2279 1124 2280 2073 2280 1131 2280 1124 2281 1131 2281 1108 2281 1108 2282 1131 2282 1937 2282 1108 2283 1937 2283 1110 2283 1110 2284 1937 2284 1938 2284 1110 2285 1938 2285 1112 2285 1112 2286 1938 2286 1561 2286 1112 2287 1561 2287 1125 2287 1125 2288 1561 2288 1126 2288 1125 2289 1126 2289 1114 2289 1114 2290 1126 2290 1127 2290 1114 2291 1127 2291 1116 2291 1116 2292 1127 2292 1128 2292 1116 2293 1128 2293 1117 2293 1117 2294 1128 2294 1570 2294 1117 2295 1570 2295 1119 2295 1119 2296 1570 2296 1571 2296 1119 2297 1571 2297 1129 2297 1129 2298 1571 2298 1959 2298 1129 2299 1959 2299 1120 2299 1120 2300 1959 2300 1130 2300 1120 2301 1130 2301 1121 2301 1121 2302 1130 2302 1964 2302 1121 2303 1964 2303 1123 2303 1123 2304 1964 2304 1059 2304 1123 2305 1059 2305 1057 2305 1131 2306 2073 2306 1132 2306 1132 2307 2073 2307 1133 2307 1132 2308 1133 2308 1941 2308 1941 2309 1133 2309 2070 2309 1941 2310 2070 2310 1134 2310 1134 2311 2070 2311 2067 2311 1134 2312 2067 2312 1135 2312 1135 2313 2067 2313 1140 2313 1135 2314 1140 2314 1946 2314 1946 2315 1140 2315 1136 2315 1946 2316 1136 2316 1947 2316 1947 2317 1136 2317 1141 2317 1947 2318 1141 2318 1137 2318 1137 2319 1141 2319 1143 2319 1137 2320 1143 2320 1566 2320 1566 2321 1143 2321 1144 2321 1566 2322 1144 2322 1952 2322 1952 2323 1144 2323 1138 2323 1952 2324 1138 2324 1957 2324 1957 2325 1138 2325 1147 2325 1957 2326 1147 2326 1958 2326 1958 2327 1147 2327 1062 2327 1958 2328 1062 2328 1969 2328 2067 2329 1139 2329 1140 2329 1140 2330 1139 2330 1148 2330 1140 2331 1148 2331 1136 2331 1136 2332 1148 2332 1151 2332 1136 2333 1151 2333 1141 2333 1141 2334 1151 2334 1142 2334 1141 2335 1142 2335 1143 2335 1143 2336 1142 2336 1145 2336 1143 2337 1145 2337 1144 2337 1144 2338 1145 2338 1146 2338 1144 2339 1146 2339 1138 2339 1138 2340 1146 2340 1154 2340 1138 2341 1154 2341 1147 2341 1147 2342 1154 2342 1063 2342 1147 2343 1063 2343 1062 2343 1139 2344 2065 2344 1148 2344 1148 2345 2065 2345 1149 2345 1148 2346 1149 2346 1151 2346 1151 2347 1149 2347 1150 2347 1151 2348 1150 2348 1142 2348 1142 2349 1150 2349 1152 2349 1142 2350 1152 2350 1145 2350 1145 2351 1152 2351 1153 2351 1145 2352 1153 2352 1146 2352 1146 2353 1153 2353 1950 2353 1146 2354 1950 2354 1154 2354 1154 2355 1950 2355 1951 2355 1154 2356 1951 2356 1063 2356 2065 2357 2063 2357 1149 2357 1149 2358 2063 2358 1150 2358 1150 2359 2063 2359 1155 2359 1155 2360 2063 2360 1156 2360 1155 2361 1156 2361 1157 2361 1157 2362 1156 2362 1158 2362 1157 2363 1158 2363 1966 2363 1966 2364 1158 2364 2062 2364 1966 2365 2062 2365 1067 2365 1067 2366 2062 2366 1159 2366 2060 2367 1173 2367 1160 2367 1160 2368 1173 2368 1174 2368 1160 2369 1174 2369 1072 2369 1072 2370 1174 2370 1161 2370 1072 2371 1161 2371 1162 2371 1162 2372 1161 2372 1177 2372 1162 2373 1177 2373 1163 2373 1163 2374 1177 2374 1179 2374 1163 2375 1179 2375 1074 2375 1074 2376 1179 2376 1165 2376 1074 2377 1165 2377 1164 2377 1164 2378 1165 2378 1180 2378 1164 2379 1180 2379 1075 2379 1075 2380 1180 2380 1182 2380 1075 2381 1182 2381 1077 2381 1077 2382 1182 2382 1167 2382 1077 2383 1167 2383 1166 2383 1166 2384 1167 2384 1168 2384 1166 2385 1168 2385 1079 2385 1079 2386 1168 2386 1169 2386 1079 2387 1169 2387 1170 2387 1170 2388 1169 2388 1171 2388 1170 2389 1171 2389 1172 2389 1172 2390 1171 2390 1081 2390 1173 2391 1187 2391 1174 2391 1174 2392 1187 2392 1175 2392 1174 2393 1175 2393 1161 2393 1161 2394 1175 2394 1176 2394 1161 2395 1176 2395 1177 2395 1177 2396 1176 2396 1178 2396 1177 2397 1178 2397 1179 2397 1179 2398 1178 2398 1188 2398 1179 2399 1188 2399 1165 2399 1165 2400 1188 2400 1190 2400 1165 2401 1190 2401 1180 2401 1180 2402 1190 2402 1181 2402 1180 2403 1181 2403 1182 2403 1182 2404 1181 2404 1191 2404 1182 2405 1191 2405 1167 2405 1167 2406 1191 2406 1183 2406 1167 2407 1183 2407 1168 2407 1168 2408 1183 2408 1184 2408 1168 2409 1184 2409 1169 2409 1169 2410 1184 2410 1185 2410 1169 2411 1185 2411 1171 2411 1171 2412 1185 2412 1186 2412 1171 2413 1186 2413 1081 2413 1187 2414 2057 2414 1175 2414 1175 2415 2057 2415 2004 2415 1175 2416 2004 2416 1176 2416 1176 2417 2004 2417 2005 2417 1176 2418 2005 2418 1178 2418 1178 2419 2005 2419 2007 2419 1178 2420 2007 2420 1188 2420 1188 2421 2007 2421 1189 2421 1188 2422 1189 2422 1190 2422 1190 2423 1189 2423 2010 2423 1190 2424 2010 2424 1181 2424 1181 2425 2010 2425 1192 2425 1181 2426 1192 2426 1191 2426 1191 2427 1192 2427 1193 2427 1191 2428 1193 2428 1183 2428 1183 2429 1193 2429 2013 2429 1183 2430 2013 2430 1184 2430 1184 2431 2013 2431 1194 2431 1184 2432 1194 2432 1185 2432 1185 2433 1194 2433 1083 2433 1185 2434 1083 2434 1186 2434 2004 2435 2057 2435 1196 2435 1196 2436 2057 2436 1195 2436 1196 2437 1195 2437 2015 2437 2015 2438 1195 2438 2054 2438 2015 2439 2054 2439 1197 2439 1197 2440 2054 2440 1199 2440 1197 2441 1199 2441 1198 2441 1198 2442 1199 2442 1200 2442 1198 2443 1200 2443 2029 2443 2029 2444 1200 2444 1201 2444 2029 2445 1201 2445 1202 2445 1202 2446 1201 2446 1203 2446 1202 2447 1203 2447 2031 2447 2031 2448 1203 2448 1204 2448 2031 2449 1204 2449 2030 2449 2030 2450 1204 2450 1086 2450 2030 2451 1086 2451 1085 2451 1199 2452 2053 2452 1200 2452 1200 2453 2053 2453 1207 2453 1200 2454 1207 2454 1201 2454 1201 2455 1207 2455 1205 2455 1201 2456 1205 2456 1203 2456 1203 2457 1205 2457 1209 2457 1203 2458 1209 2458 1204 2458 1204 2459 1209 2459 1206 2459 1204 2460 1206 2460 1086 2460 2053 2461 2051 2461 1207 2461 1207 2462 2051 2462 1211 2462 1207 2463 1211 2463 1205 2463 1205 2464 1211 2464 1208 2464 1205 2465 1208 2465 1209 2465 1209 2466 1208 2466 1213 2466 1209 2467 1213 2467 1206 2467 2051 2468 1210 2468 1211 2468 1211 2469 1210 2469 1212 2469 1211 2470 1212 2470 1208 2470 1208 2471 1212 2471 1089 2471 1208 2472 1089 2472 1213 2472 1212 2473 1210 2473 2032 2473 2032 2474 1210 2474 1091 2474 1090 2475 1214 2475 1215 2475 1215 2476 1214 2476 2050 2476 192 2477 1628 2477 191 2477 191 2478 1628 2478 1627 2478 191 2479 1627 2479 217 2479 217 2480 1627 2480 1634 2480 217 2481 1634 2481 1216 2481 1216 2482 1634 2482 1217 2482 1216 2483 1217 2483 220 2483 220 2484 1217 2484 1638 2484 220 2485 1638 2485 222 2485 222 2486 1638 2486 1639 2486 222 2487 1639 2487 1557 2487 1557 2488 1639 2488 1640 2488 1557 2489 1640 2489 1648 2489 1648 2490 1640 2490 1626 2490 1648 2491 1626 2491 1646 2491 1646 2492 1626 2492 1218 2492 1646 2493 1218 2493 1644 2493 1644 2494 1218 2494 1621 2494 1644 2495 1621 2495 1219 2495 1219 2496 1621 2496 1220 2496 1219 2497 1220 2497 1221 2497 1221 2498 1220 2498 1602 2498 1221 2499 1602 2499 1642 2499 1642 2500 1602 2500 1222 2500 1642 2501 1222 2501 1223 2501 1223 2502 1222 2502 1589 2502 1223 2503 1589 2503 1224 2503 1224 2504 1589 2504 1583 2504 1628 2505 192 2505 1630 2505 1630 2506 192 2506 646 2506 1225 2507 194 2507 2047 2507 2047 2508 194 2508 196 2508 197 2509 198 2509 1226 2509 1226 2510 198 2510 1239 2510 1226 2511 1239 2511 1227 2511 1227 2512 1239 2512 1228 2512 1227 2513 1228 2513 1080 2513 1080 2514 1228 2514 1241 2514 1080 2515 1241 2515 1078 2515 1078 2516 1241 2516 1243 2516 1078 2517 1243 2517 1076 2517 1076 2518 1243 2518 1229 2518 1076 2519 1229 2519 1230 2519 1230 2520 1229 2520 1231 2520 1230 2521 1231 2521 1232 2521 1232 2522 1231 2522 1233 2522 1232 2523 1233 2523 1234 2523 1234 2524 1233 2524 1247 2524 1234 2525 1247 2525 1073 2525 1073 2526 1247 2526 1236 2526 1073 2527 1236 2527 1235 2527 1235 2528 1236 2528 1249 2528 1235 2529 1249 2529 1071 2529 1071 2530 1249 2530 1250 2530 1071 2531 1250 2531 1237 2531 1237 2532 1250 2532 1238 2532 198 2533 199 2533 1239 2533 1239 2534 199 2534 1240 2534 1239 2535 1240 2535 1228 2535 1228 2536 1240 2536 1254 2536 1228 2537 1254 2537 1241 2537 1241 2538 1254 2538 1242 2538 1241 2539 1242 2539 1243 2539 1243 2540 1242 2540 1244 2540 1243 2541 1244 2541 1229 2541 1229 2542 1244 2542 1245 2542 1229 2543 1245 2543 1231 2543 1231 2544 1245 2544 1257 2544 1231 2545 1257 2545 1233 2545 1233 2546 1257 2546 1246 2546 1233 2547 1246 2547 1247 2547 1247 2548 1246 2548 1248 2548 1247 2549 1248 2549 1236 2549 1236 2550 1248 2550 1260 2550 1236 2551 1260 2551 1249 2551 1249 2552 1260 2552 1251 2552 1249 2553 1251 2553 1250 2553 1250 2554 1251 2554 1252 2554 1250 2555 1252 2555 1238 2555 1238 2556 1252 2556 1069 2556 199 2557 1265 2557 1240 2557 1240 2558 1265 2558 1253 2558 1240 2559 1253 2559 1254 2559 1254 2560 1253 2560 1255 2560 1254 2561 1255 2561 1242 2561 1242 2562 1255 2562 1266 2562 1242 2563 1266 2563 1244 2563 1244 2564 1266 2564 1256 2564 1244 2565 1256 2565 1245 2565 1245 2566 1256 2566 1270 2566 1245 2567 1270 2567 1257 2567 1257 2568 1270 2568 1271 2568 1257 2569 1271 2569 1246 2569 1246 2570 1271 2570 1258 2570 1246 2571 1258 2571 1248 2571 1248 2572 1258 2572 1259 2572 1248 2573 1259 2573 1260 2573 1260 2574 1259 2574 1261 2574 1260 2575 1261 2575 1251 2575 1251 2576 1261 2576 1262 2576 1251 2577 1262 2577 1252 2577 1252 2578 1262 2578 1263 2578 1252 2579 1263 2579 1069 2579 1069 2580 1263 2580 1264 2580 1265 2581 201 2581 1253 2581 1253 2582 201 2582 1274 2582 1253 2583 1274 2583 1255 2583 1255 2584 1274 2584 1267 2584 1255 2585 1267 2585 1266 2585 1266 2586 1267 2586 1268 2586 1266 2587 1268 2587 1256 2587 1256 2588 1268 2588 1269 2588 1256 2589 1269 2589 1270 2589 1270 2590 1269 2590 1278 2590 1270 2591 1278 2591 1271 2591 1271 2592 1278 2592 1279 2592 1271 2593 1279 2593 1258 2593 1258 2594 1279 2594 1281 2594 1258 2595 1281 2595 1259 2595 1259 2596 1281 2596 1272 2596 1259 2597 1272 2597 1261 2597 1261 2598 1272 2598 1273 2598 1261 2599 1273 2599 1262 2599 1262 2600 1273 2600 1282 2600 1262 2601 1282 2601 1263 2601 1263 2602 1282 2602 1283 2602 1263 2603 1283 2603 1264 2603 1264 2604 1283 2604 1068 2604 201 2605 1284 2605 1274 2605 1274 2606 1284 2606 1285 2606 1274 2607 1285 2607 1267 2607 1267 2608 1285 2608 1275 2608 1267 2609 1275 2609 1268 2609 1268 2610 1275 2610 1276 2610 1268 2611 1276 2611 1269 2611 1269 2612 1276 2612 1277 2612 1269 2613 1277 2613 1278 2613 1278 2614 1277 2614 1287 2614 1278 2615 1287 2615 1279 2615 1279 2616 1287 2616 1288 2616 1279 2617 1288 2617 1281 2617 1281 2618 1288 2618 1280 2618 1281 2619 1280 2619 1272 2619 1272 2620 1280 2620 1290 2620 1272 2621 1290 2621 1273 2621 1273 2622 1290 2622 1291 2622 1273 2623 1291 2623 1282 2623 1282 2624 1291 2624 1292 2624 1282 2625 1292 2625 1283 2625 1283 2626 1292 2626 1066 2626 1283 2627 1066 2627 1068 2627 1284 2628 202 2628 1285 2628 1285 2629 202 2629 1293 2629 1285 2630 1293 2630 1275 2630 1275 2631 1293 2631 1286 2631 1275 2632 1286 2632 1276 2632 1276 2633 1286 2633 1295 2633 1276 2634 1295 2634 1277 2634 1277 2635 1295 2635 1297 2635 1277 2636 1297 2636 1287 2636 1287 2637 1297 2637 1298 2637 1287 2638 1298 2638 1288 2638 1288 2639 1298 2639 1289 2639 1288 2640 1289 2640 1280 2640 1280 2641 1289 2641 1299 2641 1280 2642 1299 2642 1290 2642 1290 2643 1299 2643 1300 2643 1290 2644 1300 2644 1291 2644 1291 2645 1300 2645 1302 2645 1291 2646 1302 2646 1292 2646 1292 2647 1302 2647 1304 2647 1292 2648 1304 2648 1066 2648 202 2649 205 2649 1293 2649 1293 2650 205 2650 1294 2650 1293 2651 1294 2651 1286 2651 1286 2652 1294 2652 2003 2652 1286 2653 2003 2653 1295 2653 1295 2654 2003 2654 1296 2654 1295 2655 1296 2655 1297 2655 1297 2656 1296 2656 1991 2656 1297 2657 1991 2657 1298 2657 1298 2658 1991 2658 1980 2658 1298 2659 1980 2659 1289 2659 1289 2660 1980 2660 1974 2660 1289 2661 1974 2661 1299 2661 1299 2662 1974 2662 1971 2662 1299 2663 1971 2663 1300 2663 1300 2664 1971 2664 1301 2664 1300 2665 1301 2665 1302 2665 1302 2666 1301 2666 1303 2666 1302 2667 1303 2667 1304 2667 1294 2668 205 2668 1305 2668 1305 2669 205 2669 206 2669 1305 2670 206 2670 1306 2670 1306 2671 206 2671 1308 2671 1306 2672 1308 2672 1307 2672 1307 2673 1308 2673 1309 2673 1307 2674 1309 2674 1310 2674 1310 2675 1309 2675 208 2675 1310 2676 208 2676 1311 2676 1311 2677 208 2677 1312 2677 1311 2678 1312 2678 1999 2678 1999 2679 1312 2679 212 2679 1999 2680 212 2680 1997 2680 1997 2681 212 2681 1313 2681 1997 2682 1313 2682 1058 2682 1058 2683 1313 2683 1056 2683 1054 2684 251 2684 1053 2684 1053 2685 251 2685 1052 2685 251 2686 1314 2686 1052 2686 1052 2687 1314 2687 1316 2687 1314 2688 1315 2688 1316 2688 1316 2689 1315 2689 1318 2689 1316 2690 1318 2690 1317 2690 1317 2691 1318 2691 1319 2691 1317 2692 1319 2692 1049 2692 1049 2693 1319 2693 1330 2693 1049 2694 1330 2694 1320 2694 1320 2695 1330 2695 1321 2695 1320 2696 1321 2696 1322 2696 1322 2697 1321 2697 1323 2697 1322 2698 1323 2698 1046 2698 1046 2699 1323 2699 1335 2699 1046 2700 1335 2700 1044 2700 1044 2701 1335 2701 1324 2701 1044 2702 1324 2702 1042 2702 1042 2703 1324 2703 1336 2703 1042 2704 1336 2704 1041 2704 1041 2705 1336 2705 1338 2705 1041 2706 1338 2706 1326 2706 1326 2707 1338 2707 1325 2707 1326 2708 1325 2708 1039 2708 1039 2709 1325 2709 1339 2709 1039 2710 1339 2710 1327 2710 1327 2711 1339 2711 1341 2711 1315 2712 250 2712 1318 2712 1318 2713 250 2713 1328 2713 1318 2714 1328 2714 1319 2714 1319 2715 1328 2715 1329 2715 1319 2716 1329 2716 1330 2716 1330 2717 1329 2717 1331 2717 1330 2718 1331 2718 1321 2718 1321 2719 1331 2719 1332 2719 1321 2720 1332 2720 1323 2720 1323 2721 1332 2721 1333 2721 1323 2722 1333 2722 1335 2722 1335 2723 1333 2723 1334 2723 1335 2724 1334 2724 1324 2724 1324 2725 1334 2725 1347 2725 1324 2726 1347 2726 1336 2726 1336 2727 1347 2727 1337 2727 1336 2728 1337 2728 1338 2728 1338 2729 1337 2729 1350 2729 1338 2730 1350 2730 1325 2730 1325 2731 1350 2731 1352 2731 1325 2732 1352 2732 1339 2732 1339 2733 1352 2733 1340 2733 1339 2734 1340 2734 1341 2734 1341 2735 1340 2735 927 2735 250 2736 1342 2736 1328 2736 1328 2737 1342 2737 1356 2737 1328 2738 1356 2738 1329 2738 1329 2739 1356 2739 1343 2739 1329 2740 1343 2740 1331 2740 1331 2741 1343 2741 1344 2741 1331 2742 1344 2742 1332 2742 1332 2743 1344 2743 1357 2743 1332 2744 1357 2744 1333 2744 1333 2745 1357 2745 1345 2745 1333 2746 1345 2746 1334 2746 1334 2747 1345 2747 1346 2747 1334 2748 1346 2748 1347 2748 1347 2749 1346 2749 1348 2749 1347 2750 1348 2750 1337 2750 1337 2751 1348 2751 1349 2751 1337 2752 1349 2752 1350 2752 1350 2753 1349 2753 1351 2753 1350 2754 1351 2754 1352 2754 1352 2755 1351 2755 1353 2755 1352 2756 1353 2756 1340 2756 1340 2757 1353 2757 926 2757 1340 2758 926 2758 927 2758 1342 2759 1354 2759 1356 2759 1356 2760 1354 2760 1355 2760 1356 2761 1355 2761 1343 2761 1343 2762 1355 2762 1361 2762 1343 2763 1361 2763 1344 2763 1344 2764 1361 2764 1362 2764 1344 2765 1362 2765 1357 2765 1357 2766 1362 2766 1358 2766 1357 2767 1358 2767 1345 2767 1345 2768 1358 2768 1359 2768 1345 2769 1359 2769 1346 2769 1346 2770 1359 2770 1364 2770 1346 2771 1364 2771 1348 2771 1348 2772 1364 2772 1366 2772 1348 2773 1366 2773 1349 2773 1349 2774 1366 2774 1368 2774 1349 2775 1368 2775 1351 2775 1351 2776 1368 2776 1369 2776 1351 2777 1369 2777 1353 2777 1353 2778 1369 2778 1360 2778 1353 2779 1360 2779 926 2779 1354 2780 1372 2780 1355 2780 1355 2781 1372 2781 1371 2781 1355 2782 1371 2782 1361 2782 1361 2783 1371 2783 1931 2783 1361 2784 1931 2784 1362 2784 1362 2785 1931 2785 1925 2785 1362 2786 1925 2786 1358 2786 1358 2787 1925 2787 1363 2787 1358 2788 1363 2788 1359 2788 1359 2789 1363 2789 1365 2789 1359 2790 1365 2790 1364 2790 1364 2791 1365 2791 1367 2791 1364 2792 1367 2792 1366 2792 1366 2793 1367 2793 1918 2793 1366 2794 1918 2794 1368 2794 1368 2795 1918 2795 1902 2795 1368 2796 1902 2796 1369 2796 1369 2797 1902 2797 1370 2797 1369 2798 1370 2798 1360 2798 1371 2799 1372 2799 1936 2799 1936 2800 1372 2800 249 2800 1936 2801 249 2801 1373 2801 1373 2802 249 2802 1374 2802 1373 2803 1374 2803 1375 2803 1375 2804 1374 2804 248 2804 1375 2805 248 2805 1933 2805 1933 2806 248 2806 1376 2806 1933 2807 1376 2807 1932 2807 1932 2808 1376 2808 1377 2808 1932 2809 1377 2809 1378 2809 1378 2810 1377 2810 1379 2810 1378 2811 1379 2811 1381 2811 1381 2812 1379 2812 1380 2812 1381 2813 1380 2813 921 2813 921 2814 1380 2814 919 2814 244 2815 243 2815 910 2815 910 2816 243 2816 1391 2816 910 2817 1391 2817 909 2817 909 2818 1391 2818 1393 2818 909 2819 1393 2819 1382 2819 1382 2820 1393 2820 1383 2820 1382 2821 1383 2821 1384 2821 1384 2822 1383 2822 1396 2822 1384 2823 1396 2823 1385 2823 1385 2824 1396 2824 1386 2824 1385 2825 1386 2825 1387 2825 1387 2826 1386 2826 1388 2826 1387 2827 1388 2827 906 2827 906 2828 1388 2828 1389 2828 906 2829 1389 2829 1390 2829 1390 2830 1389 2830 1401 2830 1390 2831 1401 2831 905 2831 905 2832 1401 2832 1402 2832 905 2833 1402 2833 904 2833 904 2834 1402 2834 1403 2834 904 2835 1403 2835 903 2835 903 2836 1403 2836 1404 2836 903 2837 1404 2837 902 2837 902 2838 1404 2838 901 2838 243 2839 1392 2839 1391 2839 1391 2840 1392 2840 1407 2840 1391 2841 1407 2841 1393 2841 1393 2842 1407 2842 1394 2842 1393 2843 1394 2843 1383 2843 1383 2844 1394 2844 1395 2844 1383 2845 1395 2845 1396 2845 1396 2846 1395 2846 1397 2846 1396 2847 1397 2847 1386 2847 1386 2848 1397 2848 1398 2848 1386 2849 1398 2849 1388 2849 1388 2850 1398 2850 1399 2850 1388 2851 1399 2851 1389 2851 1389 2852 1399 2852 1400 2852 1389 2853 1400 2853 1401 2853 1401 2854 1400 2854 1410 2854 1401 2855 1410 2855 1402 2855 1402 2856 1410 2856 1413 2856 1402 2857 1413 2857 1403 2857 1403 2858 1413 2858 1415 2858 1403 2859 1415 2859 1404 2859 1404 2860 1415 2860 1405 2860 1404 2861 1405 2861 901 2861 901 2862 1405 2862 900 2862 1392 2863 242 2863 1407 2863 1407 2864 242 2864 1406 2864 1407 2865 1406 2865 1394 2865 1394 2866 1406 2866 1420 2866 1394 2867 1420 2867 1395 2867 1395 2868 1420 2868 1408 2868 1395 2869 1408 2869 1397 2869 1397 2870 1408 2870 1423 2870 1397 2871 1423 2871 1398 2871 1398 2872 1423 2872 1409 2872 1398 2873 1409 2873 1399 2873 1399 2874 1409 2874 1426 2874 1399 2875 1426 2875 1400 2875 1400 2876 1426 2876 1411 2876 1400 2877 1411 2877 1410 2877 1410 2878 1411 2878 1412 2878 1410 2879 1412 2879 1413 2879 1413 2880 1412 2880 1414 2880 1413 2881 1414 2881 1415 2881 1415 2882 1414 2882 1416 2882 1415 2883 1416 2883 1405 2883 1405 2884 1416 2884 1417 2884 1405 2885 1417 2885 900 2885 900 2886 1417 2886 899 2886 242 2887 1418 2887 1406 2887 1406 2888 1418 2888 1419 2888 1406 2889 1419 2889 1420 2889 1420 2890 1419 2890 1421 2890 1420 2891 1421 2891 1408 2891 1408 2892 1421 2892 1422 2892 1408 2893 1422 2893 1423 2893 1423 2894 1422 2894 1424 2894 1423 2895 1424 2895 1409 2895 1409 2896 1424 2896 1425 2896 1409 2897 1425 2897 1426 2897 1426 2898 1425 2898 1427 2898 1426 2899 1427 2899 1411 2899 1411 2900 1427 2900 1428 2900 1411 2901 1428 2901 1412 2901 1412 2902 1428 2902 1429 2902 1412 2903 1429 2903 1414 2903 1414 2904 1429 2904 1430 2904 1414 2905 1430 2905 1416 2905 1416 2906 1430 2906 1436 2906 1416 2907 1436 2907 1417 2907 1417 2908 1436 2908 1437 2908 1417 2909 1437 2909 899 2909 899 2910 1437 2910 1431 2910 1418 2911 1438 2911 1419 2911 1419 2912 1438 2912 1440 2912 1419 2913 1440 2913 1421 2913 1421 2914 1440 2914 1432 2914 1421 2915 1432 2915 1422 2915 1422 2916 1432 2916 1443 2916 1422 2917 1443 2917 1424 2917 1424 2918 1443 2918 1444 2918 1424 2919 1444 2919 1425 2919 1425 2920 1444 2920 1433 2920 1425 2921 1433 2921 1427 2921 1427 2922 1433 2922 1445 2922 1427 2923 1445 2923 1428 2923 1428 2924 1445 2924 1434 2924 1428 2925 1434 2925 1429 2925 1429 2926 1434 2926 1435 2926 1429 2927 1435 2927 1430 2927 1430 2928 1435 2928 1448 2928 1430 2929 1448 2929 1436 2929 1436 2930 1448 2930 1450 2930 1436 2931 1450 2931 1437 2931 1437 2932 1450 2932 886 2932 1437 2933 886 2933 1431 2933 1438 2934 1439 2934 1440 2934 1440 2935 1439 2935 1441 2935 1440 2936 1441 2936 1432 2936 1432 2937 1441 2937 1442 2937 1432 2938 1442 2938 1443 2938 1443 2939 1442 2939 1451 2939 1443 2940 1451 2940 1444 2940 1444 2941 1451 2941 1453 2941 1444 2942 1453 2942 1433 2942 1433 2943 1453 2943 1454 2943 1433 2944 1454 2944 1445 2944 1445 2945 1454 2945 1446 2945 1445 2946 1446 2946 1434 2946 1434 2947 1446 2947 1458 2947 1434 2948 1458 2948 1435 2948 1435 2949 1458 2949 1447 2949 1435 2950 1447 2950 1448 2950 1448 2951 1447 2951 1449 2951 1448 2952 1449 2952 1450 2952 1450 2953 1449 2953 888 2953 1450 2954 888 2954 886 2954 1439 2955 241 2955 1441 2955 1441 2956 241 2956 1459 2956 1441 2957 1459 2957 1442 2957 1442 2958 1459 2958 1462 2958 1442 2959 1462 2959 1451 2959 1451 2960 1462 2960 1452 2960 1451 2961 1452 2961 1453 2961 1453 2962 1452 2962 1466 2962 1453 2963 1466 2963 1454 2963 1454 2964 1466 2964 1455 2964 1454 2965 1455 2965 1446 2965 1446 2966 1455 2966 1456 2966 1446 2967 1456 2967 1458 2967 1458 2968 1456 2968 1457 2968 1458 2969 1457 2969 1447 2969 1447 2970 1457 2970 1469 2970 1447 2971 1469 2971 1449 2971 1449 2972 1469 2972 889 2972 1449 2973 889 2973 888 2973 241 2974 1460 2974 1459 2974 1459 2975 1460 2975 1461 2975 1459 2976 1461 2976 1462 2976 1462 2977 1461 2977 1463 2977 1462 2978 1463 2978 1452 2978 1452 2979 1463 2979 1464 2979 1452 2980 1464 2980 1466 2980 1466 2981 1464 2981 1465 2981 1466 2982 1465 2982 1455 2982 1455 2983 1465 2983 1812 2983 1455 2984 1812 2984 1456 2984 1456 2985 1812 2985 1467 2985 1456 2986 1467 2986 1457 2986 1457 2987 1467 2987 1468 2987 1457 2988 1468 2988 1469 2988 1469 2989 1468 2989 1470 2989 1469 2990 1470 2990 889 2990 1461 2991 1460 2991 1471 2991 1471 2992 1460 2992 1472 2992 1471 2993 1472 2993 1826 2993 1826 2994 1472 2994 1473 2994 1826 2995 1473 2995 1474 2995 1474 2996 1473 2996 240 2996 1474 2997 240 2997 1475 2997 1475 2998 240 2998 239 2998 1475 2999 239 2999 1825 2999 1825 3000 239 3000 1476 3000 1825 3001 1476 3001 1824 3001 1824 3002 1476 3002 1478 3002 1824 3003 1478 3003 1477 3003 1477 3004 1478 3004 238 3004 1479 3005 236 3005 1480 3005 1480 3006 236 3006 1490 3006 1480 3007 1490 3007 790 3007 790 3008 1490 3008 1491 3008 790 3009 1491 3009 1481 3009 1481 3010 1491 3010 1482 3010 1481 3011 1482 3011 788 3011 788 3012 1482 3012 1483 3012 788 3013 1483 3013 787 3013 787 3014 1483 3014 1495 3014 787 3015 1495 3015 786 3015 786 3016 1495 3016 1484 3016 786 3017 1484 3017 783 3017 783 3018 1484 3018 1499 3018 783 3019 1499 3019 782 3019 782 3020 1499 3020 1500 3020 782 3021 1500 3021 1485 3021 1485 3022 1500 3022 1486 3022 1485 3023 1486 3023 780 3023 780 3024 1486 3024 1501 3024 780 3025 1501 3025 1487 3025 1487 3026 1501 3026 1502 3026 1487 3027 1502 3027 1488 3027 1488 3028 1502 3028 1489 3028 236 3029 235 3029 1490 3029 1490 3030 235 3030 1492 3030 1490 3031 1492 3031 1491 3031 1491 3032 1492 3032 1493 3032 1491 3033 1493 3033 1482 3033 1482 3034 1493 3034 1494 3034 1482 3035 1494 3035 1483 3035 1483 3036 1494 3036 1496 3036 1483 3037 1496 3037 1495 3037 1495 3038 1496 3038 1497 3038 1495 3039 1497 3039 1484 3039 1484 3040 1497 3040 1498 3040 1484 3041 1498 3041 1499 3041 1499 3042 1498 3042 1505 3042 1499 3043 1505 3043 1500 3043 1500 3044 1505 3044 1506 3044 1500 3045 1506 3045 1486 3045 1486 3046 1506 3046 1508 3046 1486 3047 1508 3047 1501 3047 1501 3048 1508 3048 1511 3048 1501 3049 1511 3049 1502 3049 1502 3050 1511 3050 1503 3050 1502 3051 1503 3051 1489 3051 1489 3052 1503 3052 778 3052 235 3053 234 3053 1492 3053 1492 3054 234 3054 1513 3054 1492 3055 1513 3055 1493 3055 1493 3056 1513 3056 1515 3056 1493 3057 1515 3057 1494 3057 1494 3058 1515 3058 1504 3058 1494 3059 1504 3059 1496 3059 1496 3060 1504 3060 1517 3060 1496 3061 1517 3061 1497 3061 1497 3062 1517 3062 1518 3062 1497 3063 1518 3063 1498 3063 1498 3064 1518 3064 1519 3064 1498 3065 1519 3065 1505 3065 1505 3066 1519 3066 1507 3066 1505 3067 1507 3067 1506 3067 1506 3068 1507 3068 1509 3068 1506 3069 1509 3069 1508 3069 1508 3070 1509 3070 1510 3070 1508 3071 1510 3071 1511 3071 1511 3072 1510 3072 1520 3072 1511 3073 1520 3073 1503 3073 1503 3074 1520 3074 1512 3074 1503 3075 1512 3075 778 3075 778 3076 1512 3076 680 3076 234 3077 1514 3077 1513 3077 1513 3078 1514 3078 1522 3078 1513 3079 1522 3079 1515 3079 1515 3080 1522 3080 1523 3080 1515 3081 1523 3081 1504 3081 1504 3082 1523 3082 1516 3082 1504 3083 1516 3083 1517 3083 1517 3084 1516 3084 1526 3084 1517 3085 1526 3085 1518 3085 1518 3086 1526 3086 1528 3086 1518 3087 1528 3087 1519 3087 1519 3088 1528 3088 1529 3088 1519 3089 1529 3089 1507 3089 1507 3090 1529 3090 1531 3090 1507 3091 1531 3091 1509 3091 1509 3092 1531 3092 1532 3092 1509 3093 1532 3093 1510 3093 1510 3094 1532 3094 1534 3094 1510 3095 1534 3095 1520 3095 1520 3096 1534 3096 1521 3096 1520 3097 1521 3097 1512 3097 1512 3098 1521 3098 679 3098 1512 3099 679 3099 680 3099 1514 3100 233 3100 1522 3100 1522 3101 233 3101 1536 3101 1522 3102 1536 3102 1523 3102 1523 3103 1536 3103 1524 3103 1523 3104 1524 3104 1516 3104 1516 3105 1524 3105 1525 3105 1516 3106 1525 3106 1526 3106 1526 3107 1525 3107 1527 3107 1526 3108 1527 3108 1528 3108 1528 3109 1527 3109 1530 3109 1528 3110 1530 3110 1529 3110 1529 3111 1530 3111 1762 3111 1529 3112 1762 3112 1531 3112 1531 3113 1762 3113 1753 3113 1531 3114 1753 3114 1532 3114 1532 3115 1753 3115 1533 3115 1532 3116 1533 3116 1534 3116 1534 3117 1533 3117 1739 3117 1534 3118 1739 3118 1521 3118 1521 3119 1739 3119 1535 3119 1521 3120 1535 3120 679 3120 1536 3121 233 3121 1537 3121 1537 3122 233 3122 1539 3122 1537 3123 1539 3123 1538 3123 1538 3124 1539 3124 232 3124 1538 3125 232 3125 1774 3125 1774 3126 232 3126 1540 3126 1774 3127 1540 3127 1541 3127 1541 3128 1540 3128 231 3128 1541 3129 231 3129 1542 3129 1542 3130 231 3130 230 3130 1542 3131 230 3131 1760 3131 1760 3132 230 3132 229 3132 1760 3133 229 3133 1761 3133 1761 3134 229 3134 1544 3134 1761 3135 1544 3135 1543 3135 1543 3136 1544 3136 1545 3136 1543 3137 1545 3137 1746 3137 1746 3138 1545 3138 665 3138 1682 3139 1546 3139 1681 3139 1681 3140 1546 3140 1547 3140 1681 3141 1547 3141 1548 3141 1548 3142 1547 3142 1549 3142 1548 3143 1549 3143 1550 3143 1550 3144 1549 3144 224 3144 1550 3145 224 3145 1678 3145 1678 3146 224 3146 1552 3146 1678 3147 1552 3147 1551 3147 1551 3148 1552 3148 1553 3148 1551 3149 1553 3149 1555 3149 1555 3150 1553 3150 1554 3150 1555 3151 1554 3151 1556 3151 1556 3152 1554 3152 223 3152 1556 3153 223 3153 1557 3153 1557 3154 223 3154 222 3154 1137 3155 1565 3155 1945 3155 1945 3156 1565 3156 1564 3156 1945 3157 1564 3157 1558 3157 1558 3158 1564 3158 1559 3158 1558 3159 1559 3159 1560 3159 1560 3160 1559 3160 1126 3160 1560 3161 1126 3161 1561 3161 1565 3162 1562 3162 1564 3162 1564 3163 1562 3163 1563 3163 1564 3164 1563 3164 1559 3164 1559 3165 1563 3165 1127 3165 1559 3166 1127 3166 1126 3166 1137 3167 1566 3167 1565 3167 1565 3168 1566 3168 1567 3168 1565 3169 1567 3169 1562 3169 1562 3170 1567 3170 1953 3170 1562 3171 1953 3171 1568 3171 1568 3172 1953 3172 1569 3172 1568 3173 1569 3173 1570 3173 1570 3174 1569 3174 1571 3174 1562 3175 1568 3175 1563 3175 1563 3176 1568 3176 1128 3176 1563 3177 1128 3177 1127 3177 1568 3178 1570 3178 1128 3178 1572 3179 1576 3179 1574 3179 1574 3180 1576 3180 1573 3180 1574 3181 1573 3181 637 3181 637 3182 1573 3182 639 3182 1576 3183 1575 3183 1573 3183 1573 3184 1575 3184 1580 3184 1573 3185 1580 3185 639 3185 639 3186 1580 3186 640 3186 1576 3187 1572 3187 1581 3187 1581 3188 1572 3188 647 3188 1581 3189 647 3189 1577 3189 1577 3190 647 3190 1578 3190 1577 3191 1578 3191 648 3191 1575 3192 1579 3192 1580 3192 1580 3193 1579 3193 1584 3193 1580 3194 1584 3194 640 3194 640 3195 1584 3195 641 3195 1575 3196 1576 3196 1582 3196 1582 3197 1576 3197 1581 3197 1582 3198 1581 3198 1587 3198 1587 3199 1581 3199 1577 3199 1587 3200 1577 3200 1588 3200 1588 3201 1577 3201 648 3201 1588 3202 648 3202 1583 3202 1579 3203 1597 3203 1584 3203 1584 3204 1597 3204 1591 3204 1584 3205 1591 3205 641 3205 641 3206 1591 3206 1592 3206 1579 3207 1575 3207 1585 3207 1585 3208 1575 3208 1582 3208 1585 3209 1582 3209 1586 3209 1586 3210 1582 3210 1587 3210 1586 3211 1587 3211 1595 3211 1595 3212 1587 3212 1588 3212 1595 3213 1588 3213 1589 3213 1589 3214 1588 3214 1583 3214 1597 3215 1590 3215 1591 3215 1591 3216 1590 3216 1593 3216 1591 3217 1593 3217 1592 3217 1592 3218 1593 3218 1594 3218 1597 3219 1579 3219 1598 3219 1598 3220 1579 3220 1585 3220 1598 3221 1585 3221 1599 3221 1599 3222 1585 3222 1586 3222 1599 3223 1586 3223 1601 3223 1601 3224 1586 3224 1595 3224 1601 3225 1595 3225 1222 3225 1222 3226 1595 3226 1589 3226 1590 3227 1603 3227 1593 3227 1593 3228 1603 3228 1596 3228 1593 3229 1596 3229 1594 3229 1594 3230 1596 3230 642 3230 1590 3231 1597 3231 1605 3231 1605 3232 1597 3232 1598 3232 1605 3233 1598 3233 1607 3233 1607 3234 1598 3234 1599 3234 1607 3235 1599 3235 1600 3235 1600 3236 1599 3236 1601 3236 1600 3237 1601 3237 1602 3237 1602 3238 1601 3238 1222 3238 1603 3239 1609 3239 1596 3239 1596 3240 1609 3240 1604 3240 1596 3241 1604 3241 642 3241 642 3242 1604 3242 644 3242 1603 3243 1590 3243 1610 3243 1610 3244 1590 3244 1605 3244 1610 3245 1605 3245 1606 3245 1606 3246 1605 3246 1607 3246 1606 3247 1607 3247 1613 3247 1613 3248 1607 3248 1600 3248 1613 3249 1600 3249 1220 3249 1220 3250 1600 3250 1602 3250 1609 3251 1608 3251 1604 3251 1604 3252 1608 3252 1615 3252 1604 3253 1615 3253 644 3253 644 3254 1615 3254 1617 3254 1609 3255 1603 3255 1618 3255 1618 3256 1603 3256 1610 3256 1618 3257 1610 3257 1611 3257 1611 3258 1610 3258 1606 3258 1611 3259 1606 3259 1612 3259 1612 3260 1606 3260 1613 3260 1612 3261 1613 3261 1621 3261 1621 3262 1613 3262 1220 3262 1608 3263 1614 3263 1615 3263 1615 3264 1614 3264 1616 3264 1615 3265 1616 3265 1617 3265 1617 3266 1616 3266 1622 3266 1608 3267 1609 3267 1624 3267 1624 3268 1609 3268 1618 3268 1624 3269 1618 3269 1619 3269 1619 3270 1618 3270 1611 3270 1619 3271 1611 3271 1620 3271 1620 3272 1611 3272 1612 3272 1620 3273 1612 3273 1218 3273 1218 3274 1612 3274 1621 3274 1614 3275 1635 3275 1616 3275 1616 3276 1635 3276 1623 3276 1616 3277 1623 3277 1622 3277 1622 3278 1623 3278 1629 3278 1614 3279 1608 3279 1625 3279 1625 3280 1608 3280 1624 3280 1625 3281 1624 3281 1632 3281 1632 3282 1624 3282 1619 3282 1632 3283 1619 3283 1633 3283 1633 3284 1619 3284 1620 3284 1633 3285 1620 3285 1626 3285 1626 3286 1620 3286 1218 3286 1635 3287 1627 3287 1623 3287 1623 3288 1627 3288 1628 3288 1623 3289 1628 3289 1629 3289 1629 3290 1628 3290 1630 3290 1635 3291 1614 3291 1631 3291 1631 3292 1614 3292 1625 3292 1631 3293 1625 3293 1636 3293 1636 3294 1625 3294 1632 3294 1636 3295 1632 3295 1637 3295 1637 3296 1632 3296 1633 3296 1637 3297 1633 3297 1640 3297 1640 3298 1633 3298 1626 3298 1627 3299 1635 3299 1634 3299 1634 3300 1635 3300 1631 3300 1634 3301 1631 3301 1217 3301 1217 3302 1631 3302 1636 3302 1217 3303 1636 3303 1638 3303 1638 3304 1636 3304 1637 3304 1638 3305 1637 3305 1639 3305 1639 3306 1637 3306 1640 3306 1224 3307 649 3307 1223 3307 1223 3308 649 3308 1641 3308 1223 3309 1641 3309 1642 3309 1642 3310 1641 3310 1661 3310 1642 3311 1661 3311 1221 3311 1221 3312 1661 3312 1665 3312 1221 3313 1665 3313 1219 3313 1219 3314 1665 3314 1643 3314 1219 3315 1643 3315 1644 3315 1644 3316 1643 3316 1645 3316 1644 3317 1645 3317 1646 3317 1646 3318 1645 3318 1647 3318 1646 3319 1647 3319 1648 3319 1648 3320 1647 3320 1556 3320 1648 3321 1556 3321 1557 3321 705 3322 716 3322 706 3322 706 3323 716 3323 1684 3323 706 3324 1684 3324 1649 3324 1649 3325 1684 3325 1685 3325 1649 3326 1685 3326 1650 3326 1650 3327 1685 3327 1687 3327 1650 3328 1687 3328 1651 3328 1651 3329 1687 3329 1652 3329 1651 3330 1652 3330 708 3330 708 3331 1652 3331 1653 3331 708 3332 1653 3332 1654 3332 1654 3333 1653 3333 1655 3333 1654 3334 1655 3334 1656 3334 1656 3335 1655 3335 1657 3335 1656 3336 1657 3336 712 3336 712 3337 1657 3337 1692 3337 712 3338 1692 3338 713 3338 713 3339 1692 3339 1658 3339 713 3340 1658 3340 715 3340 715 3341 1658 3341 1694 3341 715 3342 1694 3342 660 3342 660 3343 1694 3343 1695 3343 1641 3344 649 3344 1659 3344 1661 3345 1641 3345 1662 3345 1662 3346 1641 3346 1659 3346 1662 3347 1659 3347 652 3347 1665 3348 1661 3348 1660 3348 1660 3349 1661 3349 1662 3349 1660 3350 1662 3350 1663 3350 1663 3351 1662 3351 652 3351 1663 3352 652 3352 1664 3352 1643 3353 1665 3353 1669 3353 1669 3354 1665 3354 1660 3354 1669 3355 1660 3355 1666 3355 1666 3356 1660 3356 1663 3356 1666 3357 1663 3357 1667 3357 1667 3358 1663 3358 1664 3358 1667 3359 1664 3359 1668 3359 1645 3360 1643 3360 1673 3360 1673 3361 1643 3361 1669 3361 1673 3362 1669 3362 1670 3362 1670 3363 1669 3363 1666 3363 1670 3364 1666 3364 1671 3364 1671 3365 1666 3365 1667 3365 1671 3366 1667 3366 1676 3366 1676 3367 1667 3367 1668 3367 1676 3368 1668 3368 1672 3368 1647 3369 1645 3369 1677 3369 1677 3370 1645 3370 1673 3370 1677 3371 1673 3371 1679 3371 1679 3372 1673 3372 1670 3372 1679 3373 1670 3373 1674 3373 1674 3374 1670 3374 1671 3374 1674 3375 1671 3375 1675 3375 1675 3376 1671 3376 1676 3376 1675 3377 1676 3377 1680 3377 1680 3378 1676 3378 1672 3378 1680 3379 1672 3379 656 3379 1556 3380 1647 3380 1555 3380 1555 3381 1647 3381 1677 3381 1555 3382 1677 3382 1551 3382 1551 3383 1677 3383 1679 3383 1551 3384 1679 3384 1678 3384 1678 3385 1679 3385 1674 3385 1678 3386 1674 3386 1550 3386 1550 3387 1674 3387 1675 3387 1550 3388 1675 3388 1548 3388 1548 3389 1675 3389 1680 3389 1548 3390 1680 3390 1681 3390 1681 3391 1680 3391 656 3391 1681 3392 656 3392 1682 3392 716 3393 1683 3393 1684 3393 1684 3394 1683 3394 1696 3394 1684 3395 1696 3395 1685 3395 1685 3396 1696 3396 1686 3396 1685 3397 1686 3397 1687 3397 1687 3398 1686 3398 1688 3398 1687 3399 1688 3399 1652 3399 1652 3400 1688 3400 1689 3400 1652 3401 1689 3401 1653 3401 1653 3402 1689 3402 1699 3402 1653 3403 1699 3403 1655 3403 1655 3404 1699 3404 1690 3404 1655 3405 1690 3405 1657 3405 1657 3406 1690 3406 1691 3406 1657 3407 1691 3407 1692 3407 1692 3408 1691 3408 1693 3408 1692 3409 1693 3409 1658 3409 1658 3410 1693 3410 1704 3410 1658 3411 1704 3411 1694 3411 1694 3412 1704 3412 1706 3412 1694 3413 1706 3413 1695 3413 1695 3414 1706 3414 662 3414 1683 3415 1710 3415 1696 3415 1696 3416 1710 3416 1708 3416 1696 3417 1708 3417 1686 3417 1686 3418 1708 3418 1697 3418 1686 3419 1697 3419 1688 3419 1688 3420 1697 3420 1709 3420 1688 3421 1709 3421 1689 3421 1689 3422 1709 3422 1698 3422 1689 3423 1698 3423 1699 3423 1699 3424 1698 3424 1700 3424 1699 3425 1700 3425 1690 3425 1690 3426 1700 3426 1701 3426 1690 3427 1701 3427 1691 3427 1691 3428 1701 3428 1702 3428 1691 3429 1702 3429 1693 3429 1693 3430 1702 3430 1703 3430 1693 3431 1703 3431 1704 3431 1704 3432 1703 3432 1705 3432 1704 3433 1705 3433 1706 3433 1706 3434 1705 3434 1720 3434 1706 3435 1720 3435 662 3435 662 3436 1720 3436 1721 3436 1711 3437 1707 3437 1708 3437 1708 3438 1707 3438 1697 3438 1709 3439 1697 3439 718 3439 718 3440 1697 3440 1707 3440 1710 3441 1711 3441 1708 3441 1698 3442 1709 3442 1712 3442 1712 3443 1709 3443 718 3443 1700 3444 1698 3444 720 3444 720 3445 1698 3445 1712 3445 754 3446 1713 3446 756 3446 756 3447 1713 3447 1722 3447 756 3448 1722 3448 1714 3448 1714 3449 1722 3449 1715 3449 1714 3450 1715 3450 758 3450 758 3451 1715 3451 1724 3451 758 3452 1724 3452 759 3452 759 3453 1724 3453 1716 3453 759 3454 1716 3454 1717 3454 1717 3455 1716 3455 1726 3455 1717 3456 1726 3456 761 3456 761 3457 1726 3457 1727 3457 761 3458 1727 3458 1719 3458 1719 3459 1727 3459 1718 3459 1719 3460 1718 3460 763 3460 1700 3461 720 3461 722 3461 1700 3462 722 3462 1701 3462 1701 3463 722 3463 724 3463 1701 3464 724 3464 1702 3464 1702 3465 724 3465 725 3465 1702 3466 725 3466 1703 3466 1703 3467 725 3467 727 3467 1703 3468 727 3468 1705 3468 1705 3469 727 3469 728 3469 1705 3470 728 3470 1720 3470 1720 3471 728 3471 729 3471 1720 3472 729 3472 1721 3472 1721 3473 729 3473 666 3473 1713 3474 765 3474 1722 3474 1722 3475 765 3475 1723 3475 1722 3476 1723 3476 1715 3476 1715 3477 1723 3477 1729 3477 1715 3478 1729 3478 1724 3478 1724 3479 1729 3479 1725 3479 1724 3480 1725 3480 1716 3480 1716 3481 1725 3481 1731 3481 1716 3482 1731 3482 1726 3482 1726 3483 1731 3483 1733 3483 1726 3484 1733 3484 1727 3484 1727 3485 1733 3485 672 3485 1727 3486 672 3486 1718 3486 765 3487 1735 3487 1723 3487 1723 3488 1735 3488 1728 3488 1723 3489 1728 3489 1729 3489 1729 3490 1728 3490 1730 3490 1729 3491 1730 3491 1725 3491 1725 3492 1730 3492 1732 3492 1725 3493 1732 3493 1731 3493 1731 3494 1732 3494 1736 3494 1731 3495 1736 3495 1733 3495 1733 3496 1736 3496 673 3496 1733 3497 673 3497 672 3497 767 3498 1734 3498 1728 3498 1728 3499 1734 3499 1730 3499 1732 3500 1730 3500 768 3500 768 3501 1730 3501 1734 3501 1735 3502 767 3502 1728 3502 1736 3503 1732 3503 1737 3503 1737 3504 1732 3504 768 3504 673 3505 1736 3505 1738 3505 1738 3506 1736 3506 1737 3506 1535 3507 1739 3507 677 3507 677 3508 1739 3508 1740 3508 677 3509 1740 3509 675 3509 675 3510 1740 3510 1741 3510 675 3511 1741 3511 674 3511 674 3512 1741 3512 1749 3512 674 3513 1749 3513 671 3513 671 3514 1749 3514 1750 3514 671 3515 1750 3515 1742 3515 1742 3516 1750 3516 1743 3516 1742 3517 1743 3517 1744 3517 1744 3518 1743 3518 1745 3518 1744 3519 1745 3519 670 3519 670 3520 1745 3520 1752 3520 670 3521 1752 3521 668 3521 668 3522 1752 3522 1543 3522 668 3523 1543 3523 1746 3523 1739 3524 1533 3524 1740 3524 1740 3525 1533 3525 1747 3525 1740 3526 1747 3526 1741 3526 1741 3527 1747 3527 1748 3527 1741 3528 1748 3528 1749 3528 1749 3529 1748 3529 1756 3529 1749 3530 1756 3530 1750 3530 1750 3531 1756 3531 1757 3531 1750 3532 1757 3532 1743 3532 1743 3533 1757 3533 1751 3533 1743 3534 1751 3534 1745 3534 1745 3535 1751 3535 1759 3535 1745 3536 1759 3536 1752 3536 1752 3537 1759 3537 1761 3537 1752 3538 1761 3538 1543 3538 1533 3539 1753 3539 1747 3539 1747 3540 1753 3540 1754 3540 1747 3541 1754 3541 1748 3541 1748 3542 1754 3542 1765 3542 1748 3543 1765 3543 1756 3543 1756 3544 1765 3544 1755 3544 1756 3545 1755 3545 1757 3545 1757 3546 1755 3546 1770 3546 1757 3547 1770 3547 1751 3547 1751 3548 1770 3548 1758 3548 1751 3549 1758 3549 1759 3549 1759 3550 1758 3550 1760 3550 1759 3551 1760 3551 1761 3551 1754 3552 1753 3552 1762 3552 1765 3553 1754 3553 1763 3553 1763 3554 1754 3554 1762 3554 1763 3555 1762 3555 1530 3555 1755 3556 1765 3556 1764 3556 1764 3557 1765 3557 1763 3557 1764 3558 1763 3558 1767 3558 1767 3559 1763 3559 1530 3559 1767 3560 1530 3560 1527 3560 1770 3561 1755 3561 1766 3561 1766 3562 1755 3562 1764 3562 1766 3563 1764 3563 1768 3563 1768 3564 1764 3564 1767 3564 1768 3565 1767 3565 1769 3565 1769 3566 1767 3566 1527 3566 1769 3567 1527 3567 1525 3567 1758 3568 1770 3568 1771 3568 1771 3569 1770 3569 1766 3569 1771 3570 1766 3570 1772 3570 1772 3571 1766 3571 1768 3571 1772 3572 1768 3572 1775 3572 1775 3573 1768 3573 1769 3573 1775 3574 1769 3574 1773 3574 1773 3575 1769 3575 1525 3575 1773 3576 1525 3576 1524 3576 1760 3577 1758 3577 1542 3577 1542 3578 1758 3578 1771 3578 1542 3579 1771 3579 1541 3579 1541 3580 1771 3580 1772 3580 1541 3581 1772 3581 1774 3581 1774 3582 1772 3582 1775 3582 1774 3583 1775 3583 1538 3583 1538 3584 1775 3584 1773 3584 1538 3585 1773 3585 1537 3585 1537 3586 1773 3586 1524 3586 1537 3587 1524 3587 1536 3587 843 3588 856 3588 844 3588 844 3589 856 3589 1776 3589 844 3590 1776 3590 1777 3590 1777 3591 1776 3591 1786 3591 1777 3592 1786 3592 846 3592 846 3593 1786 3593 1778 3593 846 3594 1778 3594 847 3594 847 3595 1778 3595 1787 3595 847 3596 1787 3596 848 3596 848 3597 1787 3597 1779 3597 848 3598 1779 3598 851 3598 851 3599 1779 3599 1780 3599 851 3600 1780 3600 1781 3600 1781 3601 1780 3601 1782 3601 1781 3602 1782 3602 852 3602 852 3603 1782 3603 1783 3603 852 3604 1783 3604 1784 3604 1784 3605 1783 3605 796 3605 1784 3606 796 3606 795 3606 856 3607 1791 3607 1776 3607 1776 3608 1791 3608 1785 3608 1776 3609 1785 3609 1786 3609 1786 3610 1785 3610 1793 3610 1786 3611 1793 3611 1778 3611 1778 3612 1793 3612 1788 3612 1778 3613 1788 3613 1787 3613 1787 3614 1788 3614 1789 3614 1787 3615 1789 3615 1779 3615 1779 3616 1789 3616 1794 3616 1779 3617 1794 3617 1780 3617 1780 3618 1794 3618 1796 3618 1780 3619 1796 3619 1782 3619 1782 3620 1796 3620 1790 3620 1782 3621 1790 3621 1783 3621 1783 3622 1790 3622 797 3622 1783 3623 797 3623 796 3623 1791 3624 1801 3624 1785 3624 1785 3625 1801 3625 1792 3625 1785 3626 1792 3626 1793 3626 1793 3627 1792 3627 1800 3627 1793 3628 1800 3628 1788 3628 1788 3629 1800 3629 1802 3629 1788 3630 1802 3630 1789 3630 1789 3631 1802 3631 1803 3631 1789 3632 1803 3632 1794 3632 1794 3633 1803 3633 1795 3633 1794 3634 1795 3634 1796 3634 1796 3635 1795 3635 1797 3635 1796 3636 1797 3636 1790 3636 1790 3637 1797 3637 1798 3637 1790 3638 1798 3638 797 3638 859 3639 1799 3639 1792 3639 1792 3640 1799 3640 1800 3640 1802 3641 1800 3641 860 3641 860 3642 1800 3642 1799 3642 1801 3643 859 3643 1792 3643 1803 3644 1802 3644 1804 3644 1804 3645 1802 3645 860 3645 1795 3646 1803 3646 861 3646 861 3647 1803 3647 1804 3647 879 3648 882 3648 1805 3648 1805 3649 882 3649 803 3649 1805 3650 803 3650 880 3650 884 3651 803 3651 882 3651 1795 3652 861 3652 862 3652 1795 3653 862 3653 1797 3653 1797 3654 862 3654 1806 3654 1797 3655 1806 3655 1798 3655 891 3656 1470 3656 1468 3656 892 3657 891 3657 1807 3657 1807 3658 891 3658 1468 3658 1807 3659 1468 3659 1467 3659 1810 3660 892 3660 1808 3660 1808 3661 892 3661 1807 3661 1808 3662 1807 3662 1809 3662 1809 3663 1807 3663 1467 3663 1809 3664 1467 3664 1812 3664 893 3665 1810 3665 1814 3665 1814 3666 1810 3666 1808 3666 1814 3667 1808 3667 1811 3667 1811 3668 1808 3668 1809 3668 1811 3669 1809 3669 1815 3669 1815 3670 1809 3670 1812 3670 1815 3671 1812 3671 1465 3671 895 3672 893 3672 1813 3672 1813 3673 893 3673 1814 3673 1813 3674 1814 3674 1820 3674 1820 3675 1814 3675 1811 3675 1820 3676 1811 3676 1821 3676 1821 3677 1811 3677 1815 3677 1821 3678 1815 3678 1816 3678 1816 3679 1815 3679 1465 3679 1816 3680 1465 3680 1464 3680 898 3681 895 3681 1817 3681 1817 3682 895 3682 1813 3682 1817 3683 1813 3683 1818 3683 1818 3684 1813 3684 1820 3684 1818 3685 1820 3685 1819 3685 1819 3686 1820 3686 1821 3686 1819 3687 1821 3687 1822 3687 1822 3688 1821 3688 1816 3688 1822 3689 1816 3689 1823 3689 1823 3690 1816 3690 1464 3690 1823 3691 1464 3691 1463 3691 1477 3692 898 3692 1824 3692 1824 3693 898 3693 1817 3693 1824 3694 1817 3694 1825 3694 1825 3695 1817 3695 1818 3695 1825 3696 1818 3696 1475 3696 1475 3697 1818 3697 1819 3697 1475 3698 1819 3698 1474 3698 1474 3699 1819 3699 1822 3699 1474 3700 1822 3700 1826 3700 1826 3701 1822 3701 1823 3701 1826 3702 1823 3702 1471 3702 1471 3703 1823 3703 1463 3703 1471 3704 1463 3704 1461 3704 1827 3705 1837 3705 963 3705 963 3706 1837 3706 1838 3706 963 3707 1838 3707 1828 3707 1828 3708 1838 3708 1842 3708 1828 3709 1842 3709 964 3709 964 3710 1842 3710 1829 3710 964 3711 1829 3711 965 3711 965 3712 1829 3712 1843 3712 965 3713 1843 3713 966 3713 966 3714 1843 3714 1830 3714 966 3715 1830 3715 968 3715 968 3716 1830 3716 1844 3716 968 3717 1844 3717 970 3717 970 3718 1844 3718 1831 3718 970 3719 1831 3719 1832 3719 1832 3720 1831 3720 1846 3720 1832 3721 1846 3721 1833 3721 1833 3722 1846 3722 1834 3722 1833 3723 1834 3723 972 3723 972 3724 1834 3724 1835 3724 972 3725 1835 3725 912 3725 912 3726 1835 3726 1836 3726 1837 3727 1839 3727 1838 3727 1838 3728 1839 3728 1840 3728 1838 3729 1840 3729 1842 3729 1842 3730 1840 3730 1841 3730 1842 3731 1841 3731 1829 3731 1829 3732 1841 3732 1851 3732 1829 3733 1851 3733 1843 3733 1843 3734 1851 3734 1853 3734 1843 3735 1853 3735 1830 3735 1830 3736 1853 3736 1854 3736 1830 3737 1854 3737 1844 3737 1844 3738 1854 3738 1855 3738 1844 3739 1855 3739 1831 3739 1831 3740 1855 3740 1845 3740 1831 3741 1845 3741 1846 3741 1846 3742 1845 3742 1847 3742 1846 3743 1847 3743 1834 3743 1834 3744 1847 3744 1857 3744 1834 3745 1857 3745 1835 3745 1835 3746 1857 3746 1848 3746 1835 3747 1848 3747 1836 3747 1836 3748 1848 3748 914 3748 1839 3749 975 3749 1840 3749 1840 3750 975 3750 1849 3750 1840 3751 1849 3751 1841 3751 1841 3752 1849 3752 1850 3752 1841 3753 1850 3753 1851 3753 1851 3754 1850 3754 1852 3754 1851 3755 1852 3755 1853 3755 1853 3756 1852 3756 1863 3756 1853 3757 1863 3757 1854 3757 1854 3758 1863 3758 1865 3758 1854 3759 1865 3759 1855 3759 1855 3760 1865 3760 1856 3760 1855 3761 1856 3761 1845 3761 1845 3762 1856 3762 1877 3762 1845 3763 1877 3763 1847 3763 1847 3764 1877 3764 1858 3764 1847 3765 1858 3765 1857 3765 1857 3766 1858 3766 1879 3766 1857 3767 1879 3767 1848 3767 1848 3768 1879 3768 1859 3768 1848 3769 1859 3769 914 3769 914 3770 1859 3770 916 3770 1860 3771 1862 3771 1849 3771 1849 3772 1862 3772 1850 3772 1852 3773 1850 3773 1861 3773 1861 3774 1850 3774 1862 3774 975 3775 1860 3775 1849 3775 1863 3776 1852 3776 1864 3776 1864 3777 1852 3777 1861 3777 1865 3778 1863 3778 1874 3778 1874 3779 1863 3779 1864 3779 1007 3780 1866 3780 1009 3780 1009 3781 1866 3781 1882 3781 1009 3782 1882 3782 1867 3782 1867 3783 1882 3783 1884 3783 1867 3784 1884 3784 1010 3784 1010 3785 1884 3785 1886 3785 1010 3786 1886 3786 1012 3786 1012 3787 1886 3787 1888 3787 1012 3788 1888 3788 1868 3788 1868 3789 1888 3789 1889 3789 1868 3790 1889 3790 1016 3790 1016 3791 1889 3791 1869 3791 1016 3792 1869 3792 1870 3792 1870 3793 1869 3793 1890 3793 1870 3794 1890 3794 1872 3794 1872 3795 1890 3795 1871 3795 1872 3796 1871 3796 1873 3796 1865 3797 1874 3797 1875 3797 1865 3798 1875 3798 1856 3798 1856 3799 1875 3799 1876 3799 1856 3800 1876 3800 1877 3800 1877 3801 1876 3801 978 3801 1877 3802 978 3802 1858 3802 1858 3803 978 3803 1878 3803 1858 3804 1878 3804 1879 3804 1879 3805 1878 3805 1880 3805 1879 3806 1880 3806 1859 3806 1859 3807 1880 3807 980 3807 1859 3808 980 3808 916 3808 916 3809 980 3809 1881 3809 1866 3810 1891 3810 1882 3810 1882 3811 1891 3811 1883 3811 1882 3812 1883 3812 1884 3812 1884 3813 1883 3813 1885 3813 1884 3814 1885 3814 1886 3814 1886 3815 1885 3815 1894 3815 1886 3816 1894 3816 1888 3816 1888 3817 1894 3817 1887 3817 1888 3818 1887 3818 1889 3818 1889 3819 1887 3819 1898 3819 1889 3820 1898 3820 1869 3820 1869 3821 1898 3821 1900 3821 1869 3822 1900 3822 1890 3822 1890 3823 1900 3823 922 3823 1890 3824 922 3824 1871 3824 1891 3825 1892 3825 1883 3825 1883 3826 1892 3826 1893 3826 1883 3827 1893 3827 1885 3827 1885 3828 1893 3828 1895 3828 1885 3829 1895 3829 1894 3829 1894 3830 1895 3830 1896 3830 1894 3831 1896 3831 1887 3831 1887 3832 1896 3832 1897 3832 1887 3833 1897 3833 1898 3833 1898 3834 1897 3834 1899 3834 1898 3835 1899 3835 1900 3835 1900 3836 1899 3836 923 3836 1900 3837 923 3837 922 3837 1018 3838 1020 3838 1893 3838 1893 3839 1020 3839 1895 3839 1896 3840 1895 3840 1901 3840 1901 3841 1895 3841 1020 3841 1892 3842 1018 3842 1893 3842 1897 3843 1896 3843 1021 3843 1021 3844 1896 3844 1901 3844 1899 3845 1897 3845 1023 3845 1023 3846 1897 3846 1021 3846 1037 3847 1036 3847 1035 3847 1899 3848 1023 3848 924 3848 924 3849 923 3849 1899 3849 1370 3850 1902 3850 1903 3850 1903 3851 1902 3851 1910 3851 1903 3852 1910 3852 1904 3852 1904 3853 1910 3853 1912 3853 1904 3854 1912 3854 1905 3854 1905 3855 1912 3855 1913 3855 1905 3856 1913 3856 1906 3856 1906 3857 1913 3857 1914 3857 1906 3858 1914 3858 1907 3858 1907 3859 1914 3859 1915 3859 1907 3860 1915 3860 1908 3860 1908 3861 1915 3861 1917 3861 1908 3862 1917 3862 1909 3862 1909 3863 1917 3863 1381 3863 1909 3864 1381 3864 921 3864 1902 3865 1918 3865 1910 3865 1910 3866 1918 3866 1911 3866 1910 3867 1911 3867 1912 3867 1912 3868 1911 3868 1919 3868 1912 3869 1919 3869 1913 3869 1913 3870 1919 3870 1920 3870 1913 3871 1920 3871 1914 3871 1914 3872 1920 3872 1926 3872 1914 3873 1926 3873 1915 3873 1915 3874 1926 3874 1916 3874 1915 3875 1916 3875 1917 3875 1917 3876 1916 3876 1378 3876 1917 3877 1378 3877 1381 3877 1911 3878 1918 3878 1367 3878 1919 3879 1911 3879 1923 3879 1923 3880 1911 3880 1367 3880 1923 3881 1367 3881 1365 3881 1920 3882 1919 3882 1921 3882 1921 3883 1919 3883 1923 3883 1921 3884 1923 3884 1922 3884 1922 3885 1923 3885 1365 3885 1922 3886 1365 3886 1363 3886 1926 3887 1920 3887 1927 3887 1927 3888 1920 3888 1921 3888 1927 3889 1921 3889 1928 3889 1928 3890 1921 3890 1922 3890 1928 3891 1922 3891 1924 3891 1924 3892 1922 3892 1363 3892 1924 3893 1363 3893 1925 3893 1916 3894 1926 3894 1934 3894 1934 3895 1926 3895 1927 3895 1934 3896 1927 3896 1935 3896 1935 3897 1927 3897 1928 3897 1935 3898 1928 3898 1929 3898 1929 3899 1928 3899 1924 3899 1929 3900 1924 3900 1930 3900 1930 3901 1924 3901 1925 3901 1930 3902 1925 3902 1931 3902 1378 3903 1916 3903 1932 3903 1932 3904 1916 3904 1934 3904 1932 3905 1934 3905 1933 3905 1933 3906 1934 3906 1935 3906 1933 3907 1935 3907 1375 3907 1375 3908 1935 3908 1929 3908 1375 3909 1929 3909 1373 3909 1373 3910 1929 3910 1930 3910 1373 3911 1930 3911 1936 3911 1936 3912 1930 3912 1931 3912 1936 3913 1931 3913 1371 3913 1131 3914 1132 3914 1937 3914 1937 3915 1132 3915 1939 3915 1937 3916 1939 3916 1938 3916 1938 3917 1939 3917 1940 3917 1938 3918 1940 3918 1561 3918 1561 3919 1940 3919 1560 3919 1132 3920 1941 3920 1939 3920 1939 3921 1941 3921 1942 3921 1939 3922 1942 3922 1940 3922 1940 3923 1942 3923 1944 3923 1940 3924 1944 3924 1560 3924 1560 3925 1944 3925 1558 3925 1941 3926 1134 3926 1942 3926 1942 3927 1134 3927 1943 3927 1942 3928 1943 3928 1944 3928 1944 3929 1943 3929 1948 3929 1944 3930 1948 3930 1558 3930 1558 3931 1948 3931 1945 3931 1135 3932 1946 3932 1943 3932 1943 3933 1946 3933 1948 3933 1945 3934 1948 3934 1947 3934 1947 3935 1948 3935 1946 3935 1134 3936 1135 3936 1943 3936 1137 3937 1945 3937 1947 3937 1150 3938 1155 3938 1152 3938 1152 3939 1155 3939 1949 3939 1152 3940 1949 3940 1153 3940 1153 3941 1949 3941 1962 3941 1153 3942 1962 3942 1950 3942 1950 3943 1962 3943 1065 3943 1950 3944 1065 3944 1951 3944 1567 3945 1566 3945 1952 3945 1953 3946 1567 3946 1955 3946 1955 3947 1567 3947 1952 3947 1955 3948 1952 3948 1957 3948 1569 3949 1953 3949 1954 3949 1954 3950 1953 3950 1955 3950 1954 3951 1955 3951 1956 3951 1956 3952 1955 3952 1957 3952 1956 3953 1957 3953 1958 3953 1569 3954 1954 3954 1571 3954 1571 3955 1954 3955 1959 3955 1959 3956 1954 3956 1960 3956 1960 3957 1954 3957 1956 3957 1960 3958 1956 3958 1961 3958 1961 3959 1956 3959 1958 3959 1961 3960 1958 3960 1969 3960 1155 3961 1157 3961 1949 3961 1949 3962 1157 3962 1965 3962 1949 3963 1965 3963 1962 3963 1962 3964 1965 3964 1968 3964 1962 3965 1968 3965 1065 3965 1959 3966 1960 3966 1130 3966 1130 3967 1960 3967 1963 3967 1130 3968 1963 3968 1964 3968 1964 3969 1963 3969 1970 3969 1964 3970 1970 3970 1059 3970 1963 3971 1960 3971 1961 3971 1157 3972 1966 3972 1965 3972 1965 3973 1966 3973 1967 3973 1965 3974 1967 3974 1968 3974 1067 3975 1967 3975 1966 3975 1969 3976 1060 3976 1961 3976 1961 3977 1060 3977 1963 3977 1060 3978 1970 3978 1963 3978 1064 3979 1303 3979 1301 3979 1972 3980 1064 3980 1973 3980 1973 3981 1064 3981 1301 3981 1973 3982 1301 3982 1971 3982 1976 3983 1972 3983 1977 3983 1977 3984 1972 3984 1973 3984 1977 3985 1973 3985 1979 3985 1979 3986 1973 3986 1971 3986 1979 3987 1971 3987 1974 3987 1981 3988 1976 3988 1975 3988 1975 3989 1976 3989 1977 3989 1975 3990 1977 3990 1978 3990 1978 3991 1977 3991 1979 3991 1978 3992 1979 3992 1982 3992 1982 3993 1979 3993 1974 3993 1982 3994 1974 3994 1980 3994 1061 3995 1981 3995 1985 3995 1985 3996 1981 3996 1975 3996 1985 3997 1975 3997 1987 3997 1987 3998 1975 3998 1978 3998 1987 3999 1978 3999 1988 3999 1988 4000 1978 4000 1982 4000 1988 4001 1982 4001 1983 4001 1983 4002 1982 4002 1980 4002 1983 4003 1980 4003 1991 4003 1992 4004 1061 4004 1984 4004 1984 4005 1061 4005 1985 4005 1984 4006 1985 4006 1994 4006 1994 4007 1985 4007 1987 4007 1994 4008 1987 4008 1986 4008 1986 4009 1987 4009 1988 4009 1986 4010 1988 4010 1989 4010 1989 4011 1988 4011 1983 4011 1989 4012 1983 4012 1990 4012 1990 4013 1983 4013 1991 4013 1990 4014 1991 4014 1296 4014 1996 4015 1992 4015 1998 4015 1998 4016 1992 4016 1984 4016 1998 4017 1984 4017 2000 4017 2000 4018 1984 4018 1994 4018 2000 4019 1994 4019 1993 4019 1993 4020 1994 4020 1986 4020 1993 4021 1986 4021 1995 4021 1995 4022 1986 4022 1989 4022 1995 4023 1989 4023 2001 4023 2001 4024 1989 4024 1990 4024 2001 4025 1990 4025 2002 4025 2002 4026 1990 4026 1296 4026 2002 4027 1296 4027 2003 4027 1058 4028 1996 4028 1997 4028 1997 4029 1996 4029 1998 4029 1997 4030 1998 4030 1999 4030 1999 4031 1998 4031 2000 4031 1999 4032 2000 4032 1311 4032 1311 4033 2000 4033 1993 4033 1311 4034 1993 4034 1310 4034 1310 4035 1993 4035 1995 4035 1310 4036 1995 4036 1307 4036 1307 4037 1995 4037 2001 4037 1307 4038 2001 4038 1306 4038 1306 4039 2001 4039 2002 4039 1306 4040 2002 4040 1305 4040 1305 4041 2002 4041 2003 4041 1305 4042 2003 4042 1294 4042 2004 4043 1196 4043 2005 4043 2005 4044 1196 4044 2006 4044 2005 4045 2006 4045 2007 4045 2007 4046 2006 4046 2008 4046 2007 4047 2008 4047 1189 4047 1189 4048 2008 4048 2009 4048 1189 4049 2009 4049 2010 4049 2010 4050 2009 4050 2011 4050 2010 4051 2011 4051 1192 4051 1192 4052 2011 4052 2012 4052 1192 4053 2012 4053 1193 4053 1193 4054 2012 4054 2021 4054 1193 4055 2021 4055 2013 4055 2013 4056 2021 4056 2022 4056 2013 4057 2022 4057 1194 4057 1194 4058 2022 4058 2014 4058 1194 4059 2014 4059 1083 4059 1196 4060 2015 4060 2006 4060 2006 4061 2015 4061 2016 4061 2006 4062 2016 4062 2008 4062 2008 4063 2016 4063 2017 4063 2008 4064 2017 4064 2009 4064 2009 4065 2017 4065 2018 4065 2009 4066 2018 4066 2011 4066 2011 4067 2018 4067 2019 4067 2011 4068 2019 4068 2012 4068 2012 4069 2019 4069 2020 4069 2012 4070 2020 4070 2021 4070 2021 4071 2020 4071 2027 4071 2021 4072 2027 4072 2022 4072 2022 4073 2027 4073 2023 4073 2022 4074 2023 4074 2014 4074 2015 4075 1197 4075 2016 4075 2016 4076 1197 4076 2024 4076 2016 4077 2024 4077 2017 4077 2017 4078 2024 4078 2028 4078 2017 4079 2028 4079 2018 4079 2018 4080 2028 4080 2025 4080 2018 4081 2025 4081 2019 4081 2019 4082 2025 4082 2026 4082 2019 4083 2026 4083 2020 4083 2020 4084 2026 4084 2033 4084 2020 4085 2033 4085 2027 4085 2027 4086 2033 4086 2034 4086 2027 4087 2034 4087 2023 4087 1198 4088 2029 4088 2024 4088 2024 4089 2029 4089 2028 4089 2025 4090 2028 4090 1202 4090 1202 4091 2028 4091 2029 4091 1197 4092 1198 4092 2024 4092 2026 4093 2025 4093 2031 4093 2031 4094 2025 4094 1202 4094 2033 4095 2026 4095 2030 4095 2030 4096 2026 4096 2031 4096 2032 4097 1089 4097 1212 4097 2033 4098 2030 4098 1085 4098 1085 4099 2034 4099 2033 4099 1215 4100 638 4100 1090 4100 1090 4101 638 4101 2035 4101 638 4102 2036 4102 2035 4102 2035 4103 2036 4103 2037 4103 2036 4104 2038 4104 2037 4104 2037 4105 2038 4105 1088 4105 2038 4106 2039 4106 1088 4106 1088 4107 2039 4107 1087 4107 2039 4108 2040 4108 1087 4108 1087 4109 2040 4109 2041 4109 2040 4110 643 4110 2041 4110 2041 4111 643 4111 2043 4111 643 4112 2042 4112 2043 4112 2043 4113 2042 4113 2044 4113 2042 4114 2045 4114 2044 4114 2044 4115 2045 4115 1084 4115 2045 4116 645 4116 1084 4116 1084 4117 645 4117 2046 4117 1225 4118 2047 4118 1082 4118 645 4119 2048 4119 2046 4119 2046 4120 2048 4120 1082 4120 2048 4121 1225 4121 1082 4121 3874 4122 2137 4122 2049 4122 2049 4123 2137 4123 636 4123 2049 4124 636 4124 3875 4124 3875 4125 636 4125 2050 4125 3875 4126 2050 4126 3876 4126 3876 4127 2050 4127 1214 4127 3876 4128 1214 4128 3879 4128 3879 4129 1214 4129 1091 4129 3879 4130 1091 4130 3881 4130 3881 4131 1091 4131 1210 4131 3881 4132 1210 4132 3882 4132 3882 4133 1210 4133 2051 4133 3882 4134 2051 4134 2052 4134 2052 4135 2051 4135 2053 4135 2052 4136 2053 4136 3883 4136 3883 4137 2053 4137 1199 4137 3883 4138 1199 4138 3884 4138 3884 4139 1199 4139 2054 4139 3884 4140 2054 4140 2055 4140 2055 4141 2054 4141 1195 4141 2055 4142 1195 4142 2056 4142 2056 4143 1195 4143 2057 4143 2056 4144 2057 4144 2058 4144 2058 4145 2057 4145 1187 4145 2058 4146 1187 4146 3888 4146 3888 4147 1187 4147 1173 4147 3888 4148 1173 4148 2059 4148 2059 4149 1173 4149 2060 4149 2059 4150 2060 4150 3890 4150 3890 4151 2060 4151 1070 4151 3890 4152 1070 4152 3892 4152 3892 4153 1070 4153 2061 4153 3892 4154 2061 4154 3894 4154 3894 4155 2061 4155 1159 4155 3894 4156 1159 4156 3895 4156 3895 4157 1159 4157 2062 4157 3895 4158 2062 4158 3896 4158 3896 4159 2062 4159 1158 4159 3896 4160 1158 4160 3835 4160 3835 4161 1158 4161 1156 4161 3835 4162 1156 4162 3872 4162 3872 4163 1156 4163 2063 4163 3872 4164 2063 4164 2064 4164 2064 4165 2063 4165 2065 4165 2064 4166 2065 4166 2066 4166 2066 4167 2065 4167 1139 4167 2066 4168 1139 4168 2068 4168 2068 4169 1139 4169 2067 4169 2068 4170 2067 4170 2069 4170 2069 4171 2067 4171 2070 4171 2069 4172 2070 4172 2071 4172 2071 4173 2070 4173 1133 4173 2071 4174 1133 4174 2072 4174 2072 4175 1133 4175 2073 4175 2072 4176 2073 4176 3871 4176 3871 4177 2073 4177 1107 4177 3871 4178 1107 4178 2074 4178 2074 4179 1107 4179 1106 4179 2074 4180 1106 4180 2075 4180 2075 4181 1106 4181 1038 4181 2075 4182 1038 4182 2076 4182 2076 4183 1038 4183 929 4183 2076 4184 929 4184 2077 4184 2077 4185 929 4185 928 4185 2077 4186 928 4186 3870 4186 3870 4187 928 4187 1034 4187 3870 4188 1034 4188 2079 4188 2079 4189 1034 4189 2078 4189 2079 4190 2078 4190 3869 4190 3869 4191 2078 4191 1026 4191 3869 4192 1026 4192 2080 4192 2080 4193 1026 4193 2081 4193 2080 4194 2081 4194 2082 4194 2082 4195 2081 4195 1017 4195 2082 4196 1017 4196 2083 4196 2083 4197 1017 4197 2084 4197 2083 4198 2084 4198 2086 4198 2086 4199 2084 4199 2085 4199 2086 4200 2085 4200 3867 4200 3867 4201 2085 4201 995 4201 3867 4202 995 4202 2087 4202 2087 4203 995 4203 2088 4203 2087 4204 2088 4204 2090 4204 2090 4205 2088 4205 2089 4205 2090 4206 2089 4206 2091 4206 2091 4207 2089 4207 2092 4207 2091 4208 2092 4208 3866 4208 3866 4209 2092 4209 974 4209 3866 4210 974 4210 3865 4210 3865 4211 974 4211 962 4211 3865 4212 962 4212 2093 4212 2093 4213 962 4213 960 4213 2093 4214 960 4214 2094 4214 2094 4215 960 4215 2095 4215 2094 4216 2095 4216 2096 4216 2096 4217 2095 4217 930 4217 2096 4218 930 4218 2097 4218 2097 4219 930 4219 2098 4219 2097 4220 2098 4220 2099 4220 2099 4221 2098 4221 2100 4221 2099 4222 2100 4222 3864 4222 3864 4223 2100 4223 804 4223 3864 4224 804 4224 3862 4224 3862 4225 804 4225 2101 4225 3862 4226 2101 4226 2102 4226 2102 4227 2101 4227 883 4227 2102 4228 883 4228 2103 4228 2103 4229 883 4229 878 4229 2103 4230 878 4230 2104 4230 2104 4231 878 4231 2105 4231 2104 4232 2105 4232 3861 4232 3861 4233 2105 4233 863 4233 3861 4234 863 4234 2106 4234 2106 4235 863 4235 858 4235 2106 4236 858 4236 2107 4236 2107 4237 858 4237 2108 4237 2107 4238 2108 4238 2109 4238 2109 4239 2108 4239 857 4239 2109 4240 857 4240 3860 4240 3860 4241 857 4241 2110 4241 3860 4242 2110 4242 3859 4242 3859 4243 2110 4243 2111 4243 3859 4244 2111 4244 2112 4244 2112 4245 2111 4245 817 4245 2112 4246 817 4246 2113 4246 2113 4247 817 4247 816 4247 2113 4248 816 4248 3858 4248 3858 4249 816 4249 2114 4249 3858 4250 2114 4250 2115 4250 2115 4251 2114 4251 2117 4251 2115 4252 2117 4252 2116 4252 2116 4253 2117 4253 2118 4253 2116 4254 2118 4254 3857 4254 3857 4255 2118 4255 2119 4255 3857 4256 2119 4256 3856 4256 3856 4257 2119 4257 772 4257 3856 4258 772 4258 3855 4258 3855 4259 772 4259 2121 4259 3855 4260 2121 4260 2120 4260 2120 4261 2121 4261 766 4261 2120 4262 766 4262 2122 4262 2122 4263 766 4263 2123 4263 2122 4264 2123 4264 2124 4264 2124 4265 2123 4265 764 4265 2124 4266 764 4266 2125 4266 2125 4267 764 4267 2126 4267 2125 4268 2126 4268 2127 4268 2127 4269 2126 4269 2129 4269 2127 4270 2129 4270 2128 4270 2128 4271 2129 4271 745 4271 2128 4272 745 4272 3853 4272 3853 4273 745 4273 717 4273 3853 4274 717 4274 2130 4274 2130 4275 717 4275 2131 4275 2130 4276 2131 4276 3852 4276 3852 4277 2131 4277 2132 4277 3852 4278 2132 4278 3851 4278 3851 4279 2132 4279 2133 4279 3851 4280 2133 4280 3909 4280 3909 4281 2133 4281 2134 4281 3909 4282 2134 4282 3911 4282 3911 4283 2134 4283 681 4283 3911 4284 681 4284 2135 4284 2135 4285 681 4285 2136 4285 2135 4286 2136 4286 3874 4286 3874 4287 2136 4287 2137 4287 2138 4288 2139 4288 2174 4288 2174 4289 2139 4289 2140 4289 2174 4290 2140 4290 2141 4290 2141 4291 2140 4291 2143 4291 2141 4292 2143 4292 2142 4292 2142 4293 2143 4293 2210 4293 2142 4294 2210 4294 2209 4294 2142 4295 2209 4295 2177 4295 2177 4296 2209 4296 2144 4296 2177 4297 2144 4297 2179 4297 2179 4298 2144 4298 2145 4298 2179 4299 2145 4299 2146 4299 2146 4300 2145 4300 2147 4300 2146 4301 2147 4301 2148 4301 2148 4302 2147 4302 2150 4302 2148 4303 2150 4303 2149 4303 2149 4304 2150 4304 2206 4304 2149 4305 2206 4305 2151 4305 2149 4306 2151 4306 2182 4306 2182 4307 2151 4307 2205 4307 2182 4308 2205 4308 2185 4308 2185 4309 2205 4309 2204 4309 2185 4310 2204 4310 2153 4310 2153 4311 2204 4311 2152 4311 2153 4312 2152 4312 2154 4312 2154 4313 2152 4313 2155 4313 2154 4314 2155 4314 2156 4314 2154 4315 2156 4315 2186 4315 2186 4316 2156 4316 2202 4316 2186 4317 2202 4317 2157 4317 2157 4318 2202 4318 2158 4318 2157 4319 2158 4319 2159 4319 2157 4320 2159 4320 2160 4320 2160 4321 2159 4321 2272 4321 2160 4322 2272 4322 2187 4322 2187 4323 2272 4323 2161 4323 2187 4324 2161 4324 2184 4324 2184 4325 2161 4325 2162 4325 2184 4326 2162 4326 2273 4326 2184 4327 2273 4327 2163 4327 2163 4328 2273 4328 2164 4328 2163 4329 2164 4329 2165 4329 2165 4330 2164 4330 2166 4330 2165 4331 2166 4331 2183 4331 2183 4332 2166 4332 2167 4332 2183 4333 2167 4333 2168 4333 2168 4334 2167 4334 2169 4334 2168 4335 2169 4335 2170 4335 2168 4336 2170 4336 2181 4336 2181 4337 2170 4337 2171 4337 2181 4338 2171 4338 2180 4338 2180 4339 2171 4339 2276 4339 2180 4340 2276 4340 2178 4340 2178 4341 2276 4341 2172 4341 2178 4342 2172 4342 2176 4342 2176 4343 2172 4343 2279 4343 2176 4344 2279 4344 2175 4344 2175 4345 2279 4345 2173 4345 2175 4346 2173 4346 2138 4346 2175 4347 2138 4347 2174 4347 2175 4348 2174 4348 2141 4348 2176 4349 2175 4349 2142 4349 2142 4350 2175 4350 2141 4350 2178 4351 2176 4351 2177 4351 2177 4352 2176 4352 2142 4352 2180 4353 2178 4353 2179 4353 2179 4354 2178 4354 2177 4354 2181 4355 2180 4355 2146 4355 2146 4356 2180 4356 2179 4356 2168 4357 2181 4357 2148 4357 2148 4358 2181 4358 2146 4358 2183 4359 2168 4359 2149 4359 2149 4360 2168 4360 2148 4360 2165 4361 2183 4361 2182 4361 2182 4362 2183 4362 2149 4362 2163 4363 2165 4363 2185 4363 2185 4364 2165 4364 2182 4364 2184 4365 2163 4365 2153 4365 2153 4366 2163 4366 2185 4366 2187 4367 2184 4367 2154 4367 2154 4368 2184 4368 2153 4368 2160 4369 2187 4369 2186 4369 2186 4370 2187 4370 2154 4370 2157 4371 2160 4371 2186 4371 2143 4372 2140 4372 2188 4372 2188 4373 2140 4373 260 4373 2188 4374 260 4374 2211 4374 2211 4375 260 4375 2256 4375 2211 4376 2256 4376 2213 4376 2213 4377 2256 4377 2189 4377 2213 4378 2189 4378 2255 4378 2213 4379 2255 4379 2190 4379 2190 4380 2255 4380 2191 4380 2190 4381 2191 4381 2192 4381 2192 4382 2191 4382 2253 4382 2192 4383 2253 4383 2193 4383 2193 4384 2253 4384 2251 4384 2193 4385 2251 4385 2194 4385 2194 4386 2251 4386 2195 4386 2194 4387 2195 4387 2219 4387 2219 4388 2195 4388 2250 4388 2219 4389 2250 4389 2196 4389 2219 4390 2196 4390 2217 4390 2217 4391 2196 4391 2197 4391 2217 4392 2197 4392 2223 4392 2223 4393 2197 4393 2248 4393 2223 4394 2248 4394 2198 4394 2198 4395 2248 4395 2199 4395 2198 4396 2199 4396 2200 4396 2200 4397 2199 4397 2246 4397 2200 4398 2246 4398 2201 4398 2200 4399 2201 4399 2226 4399 2226 4400 2201 4400 2244 4400 2226 4401 2244 4401 2225 4401 2225 4402 2244 4402 3826 4402 2225 4403 3826 4403 2158 4403 2225 4404 2158 4404 2224 4404 2224 4405 2158 4405 2202 4405 2224 4406 2202 4406 2203 4406 2203 4407 2202 4407 2156 4407 2203 4408 2156 4408 2221 4408 2221 4409 2156 4409 2155 4409 2221 4410 2155 4410 2152 4410 2221 4411 2152 4411 2222 4411 2222 4412 2152 4412 2204 4412 2222 4413 2204 4413 2220 4413 2220 4414 2204 4414 2205 4414 2220 4415 2205 4415 2218 4415 2218 4416 2205 4416 2151 4416 2218 4417 2151 4417 2216 4417 2216 4418 2151 4418 2206 4418 2216 4419 2206 4419 2150 4419 2216 4420 2150 4420 2207 4420 2207 4421 2150 4421 2147 4421 2207 4422 2147 4422 2215 4422 2215 4423 2147 4423 2145 4423 2215 4424 2145 4424 2208 4424 2208 4425 2145 4425 2144 4425 2208 4426 2144 4426 2212 4426 2212 4427 2144 4427 2209 4427 2212 4428 2209 4428 2214 4428 2214 4429 2209 4429 2210 4429 2214 4430 2210 4430 2143 4430 2214 4431 2143 4431 2188 4431 2214 4432 2188 4432 2211 4432 2212 4433 2214 4433 2213 4433 2213 4434 2214 4434 2211 4434 2208 4435 2212 4435 2190 4435 2190 4436 2212 4436 2213 4436 2215 4437 2208 4437 2192 4437 2192 4438 2208 4438 2190 4438 2207 4439 2215 4439 2193 4439 2193 4440 2215 4440 2192 4440 2216 4441 2207 4441 2194 4441 2194 4442 2207 4442 2193 4442 2218 4443 2216 4443 2219 4443 2219 4444 2216 4444 2194 4444 2220 4445 2218 4445 2217 4445 2217 4446 2218 4446 2219 4446 2222 4447 2220 4447 2223 4447 2223 4448 2220 4448 2217 4448 2221 4449 2222 4449 2198 4449 2198 4450 2222 4450 2223 4450 2203 4451 2221 4451 2200 4451 2200 4452 2221 4452 2198 4452 2224 4453 2203 4453 2226 4453 2226 4454 2203 4454 2200 4454 2225 4455 2224 4455 2226 4455 2256 4456 260 4456 2227 4456 2227 4457 260 4457 265 4457 2227 4458 265 4458 2258 4458 2258 4459 265 4459 2283 4459 2258 4460 2283 4460 2259 4460 2259 4461 2283 4461 2228 4461 2259 4462 2228 4462 2285 4462 2259 4463 2285 4463 2229 4463 2229 4464 2285 4464 2230 4464 2229 4465 2230 4465 2232 4465 2232 4466 2230 4466 2231 4466 2232 4467 2231 4467 2261 4467 2261 4468 2231 4468 2287 4468 2261 4469 2287 4469 2233 4469 2233 4470 2287 4470 2289 4470 2233 4471 2289 4471 2263 4471 2263 4472 2289 4472 2234 4472 2263 4473 2234 4473 2235 4473 2263 4474 2235 4474 2266 4474 2266 4475 2235 4475 2236 4475 2266 4476 2236 4476 2237 4476 2237 4477 2236 4477 2238 4477 2237 4478 2238 4478 2239 4478 2239 4479 2238 4479 2291 4479 2239 4480 2291 4480 2240 4480 2240 4481 2291 4481 2241 4481 2240 4482 2241 4482 2242 4482 2240 4483 2242 4483 2269 4483 2269 4484 2242 4484 2243 4484 2269 4485 2243 4485 2270 4485 2270 4486 2243 4486 2293 4486 2270 4487 2293 4487 3826 4487 2270 4488 3826 4488 2268 4488 2268 4489 3826 4489 2244 4489 2268 4490 2244 4490 2245 4490 2245 4491 2244 4491 2201 4491 2245 4492 2201 4492 2247 4492 2247 4493 2201 4493 2246 4493 2247 4494 2246 4494 2199 4494 2247 4495 2199 4495 2267 4495 2267 4496 2199 4496 2248 4496 2267 4497 2248 4497 2249 4497 2249 4498 2248 4498 2197 4498 2249 4499 2197 4499 2265 4499 2265 4500 2197 4500 2196 4500 2265 4501 2196 4501 2264 4501 2264 4502 2196 4502 2250 4502 2264 4503 2250 4503 2195 4503 2264 4504 2195 4504 2252 4504 2252 4505 2195 4505 2251 4505 2252 4506 2251 4506 2262 4506 2262 4507 2251 4507 2253 4507 2262 4508 2253 4508 2260 4508 2260 4509 2253 4509 2191 4509 2260 4510 2191 4510 2254 4510 2254 4511 2191 4511 2255 4511 2254 4512 2255 4512 2257 4512 2257 4513 2255 4513 2189 4513 2257 4514 2189 4514 2256 4514 2257 4515 2256 4515 2227 4515 2257 4516 2227 4516 2258 4516 2254 4517 2257 4517 2259 4517 2259 4518 2257 4518 2258 4518 2260 4519 2254 4519 2229 4519 2229 4520 2254 4520 2259 4520 2262 4521 2260 4521 2232 4521 2232 4522 2260 4522 2229 4522 2252 4523 2262 4523 2261 4523 2261 4524 2262 4524 2232 4524 2264 4525 2252 4525 2233 4525 2233 4526 2252 4526 2261 4526 2265 4527 2264 4527 2263 4527 2263 4528 2264 4528 2233 4528 2249 4529 2265 4529 2266 4529 2266 4530 2265 4530 2263 4530 2267 4531 2249 4531 2237 4531 2237 4532 2249 4532 2266 4532 2247 4533 2267 4533 2239 4533 2239 4534 2267 4534 2237 4534 2245 4535 2247 4535 2240 4535 2240 4536 2247 4536 2239 4536 2268 4537 2245 4537 2269 4537 2269 4538 2245 4538 2240 4538 2270 4539 2268 4539 2269 4539 2293 4540 2292 4540 2159 4540 2159 4541 2292 4541 2271 4541 2159 4542 2271 4542 2272 4542 2272 4543 2271 4543 2295 4543 2272 4544 2295 4544 2161 4544 2161 4545 2295 4545 2297 4545 2161 4546 2297 4546 2162 4546 2162 4547 2297 4547 2273 4547 2273 4548 2297 4548 2274 4548 2273 4549 2274 4549 2164 4549 2164 4550 2274 4550 2299 4550 2164 4551 2299 4551 2166 4551 2166 4552 2299 4552 2302 4552 2166 4553 2302 4553 2167 4553 2167 4554 2302 4554 2303 4554 2167 4555 2303 4555 2169 4555 2169 4556 2303 4556 2170 4556 2170 4557 2303 4557 2304 4557 2170 4558 2304 4558 2171 4558 2171 4559 2304 4559 2275 4559 2171 4560 2275 4560 2276 4560 2276 4561 2275 4561 2277 4561 2276 4562 2277 4562 2172 4562 2172 4563 2277 4563 2278 4563 2172 4564 2278 4564 2279 4564 2279 4565 2278 4565 2280 4565 2279 4566 2280 4566 2173 4566 2173 4567 2280 4567 2138 4567 2138 4568 2280 4568 2281 4568 2138 4569 2281 4569 2139 4569 2139 4570 2281 4570 2282 4570 2139 4571 2282 4571 265 4571 265 4572 2282 4572 2283 4572 2283 4573 2282 4573 2284 4573 2283 4574 2284 4574 2228 4574 2228 4575 2284 4575 2285 4575 2285 4576 2284 4576 2286 4576 2285 4577 2286 4577 2230 4577 2230 4578 2286 4578 2305 4578 2230 4579 2305 4579 2231 4579 2231 4580 2305 4580 2306 4580 2231 4581 2306 4581 2287 4581 2287 4582 2306 4582 2288 4582 2287 4583 2288 4583 2289 4583 2289 4584 2288 4584 2290 4584 2289 4585 2290 4585 2234 4585 2234 4586 2290 4586 2235 4586 2235 4587 2290 4587 2301 4587 2235 4588 2301 4588 2236 4588 2236 4589 2301 4589 2300 4589 2236 4590 2300 4590 2238 4590 2238 4591 2300 4591 2298 4591 2238 4592 2298 4592 2291 4592 2291 4593 2298 4593 2296 4593 2291 4594 2296 4594 2241 4594 2241 4595 2296 4595 2242 4595 2242 4596 2296 4596 2294 4596 2242 4597 2294 4597 2243 4597 2243 4598 2294 4598 2292 4598 2243 4599 2292 4599 2293 4599 2295 4600 2271 4600 2292 4600 2297 4601 2295 4601 2294 4601 2294 4602 2295 4602 2292 4602 2274 4603 2297 4603 2296 4603 2296 4604 2297 4604 2294 4604 2299 4605 2274 4605 2298 4605 2298 4606 2274 4606 2296 4606 2302 4607 2299 4607 2300 4607 2300 4608 2299 4608 2298 4608 2303 4609 2302 4609 2301 4609 2301 4610 2302 4610 2300 4610 2304 4611 2303 4611 2290 4611 2290 4612 2303 4612 2301 4612 2275 4613 2304 4613 2288 4613 2288 4614 2304 4614 2290 4614 2277 4615 2275 4615 2306 4615 2306 4616 2275 4616 2288 4616 2278 4617 2277 4617 2305 4617 2305 4618 2277 4618 2306 4618 2280 4619 2278 4619 2286 4619 2286 4620 2278 4620 2305 4620 2281 4621 2280 4621 2284 4621 2284 4622 2280 4622 2286 4622 2282 4623 2281 4623 2284 4623 2293 4624 2159 4624 3846 4624 3846 4625 2159 4625 3914 4625 2159 4626 2158 4626 3914 4626 3914 4627 2158 4627 3916 4627 2326 4628 3198 4628 3722 4628 3722 4629 3198 4629 2307 4629 3722 4630 2307 4630 2308 4630 2308 4631 2307 4631 3194 4631 2308 4632 3194 4632 2309 4632 2309 4633 3194 4633 2311 4633 2309 4634 2311 4634 2310 4634 2310 4635 2311 4635 2312 4635 2310 4636 2312 4636 2313 4636 2313 4637 2312 4637 2314 4637 2313 4638 2314 4638 2944 4638 2944 4639 2314 4639 2315 4639 2944 4640 2315 4640 3715 4640 3715 4641 2315 4641 2316 4641 3715 4642 2316 4642 3716 4642 3716 4643 2316 4643 2317 4643 3716 4644 2317 4644 2318 4644 2318 4645 2317 4645 3230 4645 2318 4646 3230 4646 3698 4646 3698 4647 3230 4647 2320 4647 3698 4648 2320 4648 2319 4648 2319 4649 2320 4649 3240 4649 2319 4650 3240 4650 2321 4650 2321 4651 3240 4651 3250 4651 2321 4652 3250 4652 2322 4652 2322 4653 3250 4653 2324 4653 2322 4654 2324 4654 2323 4654 2323 4655 2324 4655 2325 4655 2323 4656 2325 4656 2963 4656 3198 4657 2326 4657 3201 4657 3201 4658 2326 4658 3810 4658 3201 4659 3810 4659 3202 4659 3202 4660 3810 4660 2399 4660 3202 4661 2399 4661 2327 4661 2327 4662 2399 4662 2400 4662 2327 4663 2400 4663 2961 4663 2961 4664 2400 4664 2401 4664 2961 4665 2401 4665 3173 4665 3173 4666 2401 4666 2329 4666 3173 4667 2329 4667 2328 4667 2328 4668 2329 4668 2403 4668 2328 4669 2403 4669 3170 4669 3170 4670 2403 4670 2330 4670 3170 4671 2330 4671 2331 4671 2331 4672 2330 4672 2332 4672 2331 4673 2332 4673 2333 4673 2333 4674 2332 4674 2334 4674 2333 4675 2334 4675 2335 4675 2335 4676 2334 4676 2336 4676 2335 4677 2336 4677 3168 4677 3168 4678 2336 4678 2407 4678 3168 4679 2407 4679 3167 4679 3167 4680 2407 4680 2337 4680 3167 4681 2337 4681 3166 4681 3166 4682 2337 4682 2408 4682 3166 4683 2408 4683 256 4683 256 4684 2408 4684 257 4684 257 4685 2408 4685 2338 4685 257 4686 2338 4686 2339 4686 2339 4687 2338 4687 2340 4687 2339 4688 2340 4688 2342 4688 2342 4689 2340 4689 2341 4689 2342 4690 2341 4690 2343 4690 2343 4691 2341 4691 3303 4691 2343 4692 3303 4692 2345 4692 2345 4693 3303 4693 2344 4693 2345 4694 2344 4694 2347 4694 2347 4695 2344 4695 2346 4695 2347 4696 2346 4696 2348 4696 2348 4697 2346 4697 2449 4697 2348 4698 2449 4698 3165 4698 3165 4699 2449 4699 2447 4699 3165 4700 2447 4700 3360 4700 3360 4701 2447 4701 2350 4701 3360 4702 2350 4702 2349 4702 2349 4703 2350 4703 2478 4703 2349 4704 2478 4704 2351 4704 2351 4705 2478 4705 2352 4705 2351 4706 2352 4706 3346 4706 3346 4707 2352 4707 3336 4707 3346 4708 3336 4708 3348 4708 3348 4709 3336 4709 2353 4709 3348 4710 2353 4710 2354 4710 2354 4711 2353 4711 2355 4711 2354 4712 2355 4712 3155 4712 3155 4713 2355 4713 2356 4713 3155 4714 2356 4714 3144 4714 3144 4715 2356 4715 2483 4715 3144 4716 2483 4716 3133 4716 3133 4717 2483 4717 2357 4717 3133 4718 2357 4718 2358 4718 2358 4719 2357 4719 2489 4719 2358 4720 2489 4720 3122 4720 3122 4721 2489 4721 2488 4721 3122 4722 2488 4722 2359 4722 2359 4723 2488 4723 3790 4723 2359 4724 3790 4724 2360 4724 2360 4725 3790 4725 3788 4725 2360 4726 3788 4726 2361 4726 2361 4727 3788 4727 2362 4727 2361 4728 2362 4728 3075 4728 3075 4729 2362 4729 2490 4729 3075 4730 2490 4730 2363 4730 2363 4731 2490 4731 2492 4731 2363 4732 2492 4732 2364 4732 2364 4733 2492 4733 2365 4733 2364 4734 2365 4734 3072 4734 3072 4735 2365 4735 2366 4735 3072 4736 2366 4736 2367 4736 2367 4737 2366 4737 2494 4737 2367 4738 2494 4738 2368 4738 2368 4739 2494 4739 2495 4739 2368 4740 2495 4740 2369 4740 2369 4741 2495 4741 2370 4741 2369 4742 2370 4742 3070 4742 3070 4743 2370 4743 2372 4743 3070 4744 2372 4744 2371 4744 2371 4745 2372 4745 2373 4745 2371 4746 2373 4746 2374 4746 2374 4747 2373 4747 2500 4747 2374 4748 2500 4748 2375 4748 2375 4749 2500 4749 2502 4749 2375 4750 2502 4750 2376 4750 2376 4751 2502 4751 2377 4751 2376 4752 2377 4752 2378 4752 2378 4753 2377 4753 2379 4753 2378 4754 2379 4754 2380 4754 2380 4755 2379 4755 3378 4755 2380 4756 3378 4756 2381 4756 2381 4757 3378 4757 2382 4757 2381 4758 2382 4758 2383 4758 2383 4759 2382 4759 3399 4759 2383 4760 3399 4760 266 4760 266 4761 3399 4761 3418 4761 266 4762 3418 4762 2384 4762 2384 4763 3418 4763 2522 4763 2384 4764 2522 4764 267 4764 267 4765 2522 4765 2535 4765 267 4766 2535 4766 3068 4766 3068 4767 2535 4767 2385 4767 3068 4768 2385 4768 3453 4768 3453 4769 2385 4769 2386 4769 3453 4770 2386 4770 3452 4770 3452 4771 2386 4771 2387 4771 3452 4772 2387 4772 3448 4772 3448 4773 2387 4773 2389 4773 3448 4774 2389 4774 2388 4774 2388 4775 2389 4775 3428 4775 2388 4776 3428 4776 3446 4776 3446 4777 3428 4777 3435 4777 3446 4778 3435 4778 3444 4778 3444 4779 3435 4779 2391 4779 3444 4780 2391 4780 2390 4780 2390 4781 2391 4781 2392 4781 2390 4782 2392 4782 3062 4782 3062 4783 2392 4783 2393 4783 3062 4784 2393 4784 3063 4784 3063 4785 2393 4785 2573 4785 3063 4786 2573 4786 2394 4786 2394 4787 2573 4787 2396 4787 2394 4788 2396 4788 2395 4788 2395 4789 2396 4789 2576 4789 2395 4790 2576 4790 2397 4790 2397 4791 2576 4791 2398 4791 2397 4792 2398 4792 3768 4792 3810 4793 3808 4793 2399 4793 2399 4794 3808 4794 2409 4794 2399 4795 2409 4795 2400 4795 2400 4796 2409 4796 2410 4796 2400 4797 2410 4797 2401 4797 2401 4798 2410 4798 2412 4798 2401 4799 2412 4799 2329 4799 2329 4800 2412 4800 2413 4800 2329 4801 2413 4801 2403 4801 2403 4802 2413 4802 2402 4802 2403 4803 2402 4803 2330 4803 2330 4804 2402 4804 2404 4804 2330 4805 2404 4805 2332 4805 2332 4806 2404 4806 2405 4806 2332 4807 2405 4807 2334 4807 2334 4808 2405 4808 2406 4808 2334 4809 2406 4809 2336 4809 2336 4810 2406 4810 2417 4810 2336 4811 2417 4811 2407 4811 2407 4812 2417 4812 2419 4812 2407 4813 2419 4813 2337 4813 2337 4814 2419 4814 2420 4814 2337 4815 2420 4815 2408 4815 2408 4816 2420 4816 2338 4816 3808 4817 3806 4817 2409 4817 2409 4818 3806 4818 2421 4818 2409 4819 2421 4819 2410 4819 2410 4820 2421 4820 2411 4820 2410 4821 2411 4821 2412 4821 2412 4822 2411 4822 2423 4822 2412 4823 2423 4823 2413 4823 2413 4824 2423 4824 2426 4824 2413 4825 2426 4825 2402 4825 2402 4826 2426 4826 2427 4826 2402 4827 2427 4827 2404 4827 2404 4828 2427 4828 2414 4828 2404 4829 2414 4829 2405 4829 2405 4830 2414 4830 2415 4830 2405 4831 2415 4831 2406 4831 2406 4832 2415 4832 2416 4832 2406 4833 2416 4833 2417 4833 2417 4834 2416 4834 2418 4834 2417 4835 2418 4835 2419 4835 2419 4836 2418 4836 2431 4836 2419 4837 2431 4837 2420 4837 2420 4838 2431 4838 2433 4838 2420 4839 2433 4839 2338 4839 2338 4840 2433 4840 2340 4840 3806 4841 2422 4841 2421 4841 2421 4842 2422 4842 3266 4842 2421 4843 3266 4843 2411 4843 2411 4844 3266 4844 3268 4844 2411 4845 3268 4845 2423 4845 2423 4846 3268 4846 2424 4846 2423 4847 2424 4847 2426 4847 2426 4848 2424 4848 2425 4848 2426 4849 2425 4849 2427 4849 2427 4850 2425 4850 3272 4850 2427 4851 3272 4851 2414 4851 2414 4852 3272 4852 3273 4852 2414 4853 3273 4853 2415 4853 2415 4854 3273 4854 2428 4854 2415 4855 2428 4855 2416 4855 2416 4856 2428 4856 2429 4856 2416 4857 2429 4857 2418 4857 2418 4858 2429 4858 2430 4858 2418 4859 2430 4859 2431 4859 2431 4860 2430 4860 2432 4860 2431 4861 2432 4861 2433 4861 2433 4862 2432 4862 2434 4862 2433 4863 2434 4863 2340 4863 2340 4864 2434 4864 2341 4864 3266 4865 2422 4865 3267 4865 3267 4866 2422 4866 3804 4866 3267 4867 3804 4867 2435 4867 2435 4868 3804 4868 3803 4868 2435 4869 3803 4869 2436 4869 2436 4870 3803 4870 2438 4870 2436 4871 2438 4871 2437 4871 2437 4872 2438 4872 2439 4872 2437 4873 2439 4873 3317 4873 3317 4874 2439 4874 2451 4874 3317 4875 2451 4875 3319 4875 3319 4876 2451 4876 2452 4876 3319 4877 2452 4877 2440 4877 2440 4878 2452 4878 2442 4878 2440 4879 2442 4879 2441 4879 2441 4880 2442 4880 2455 4880 2441 4881 2455 4881 3324 4881 3324 4882 2455 4882 2443 4882 3324 4883 2443 4883 3326 4883 3326 4884 2443 4884 2444 4884 3326 4885 2444 4885 3327 4885 3327 4886 2444 4886 2445 4886 3327 4887 2445 4887 3328 4887 3328 4888 2445 4888 2457 4888 3328 4889 2457 4889 3329 4889 3329 4890 2457 4890 2446 4890 3329 4891 2446 4891 2448 4891 2448 4892 2446 4892 2447 4892 2448 4893 2447 4893 2449 4893 2438 4894 2459 4894 2439 4894 2439 4895 2459 4895 2450 4895 2439 4896 2450 4896 2451 4896 2451 4897 2450 4897 2453 4897 2451 4898 2453 4898 2452 4898 2452 4899 2453 4899 2462 4899 2452 4900 2462 4900 2442 4900 2442 4901 2462 4901 2454 4901 2442 4902 2454 4902 2455 4902 2455 4903 2454 4903 2456 4903 2455 4904 2456 4904 2443 4904 2443 4905 2456 4905 2464 4905 2443 4906 2464 4906 2444 4906 2444 4907 2464 4907 2465 4907 2444 4908 2465 4908 2445 4908 2445 4909 2465 4909 2458 4909 2445 4910 2458 4910 2457 4910 2457 4911 2458 4911 2467 4911 2457 4912 2467 4912 2446 4912 2446 4913 2467 4913 2350 4913 2446 4914 2350 4914 2447 4914 2459 4915 2460 4915 2450 4915 2450 4916 2460 4916 2461 4916 2450 4917 2461 4917 2453 4917 2453 4918 2461 4918 2469 4918 2453 4919 2469 4919 2462 4919 2462 4920 2469 4920 2470 4920 2462 4921 2470 4921 2454 4921 2454 4922 2470 4922 2472 4922 2454 4923 2472 4923 2456 4923 2456 4924 2472 4924 2474 4924 2456 4925 2474 4925 2464 4925 2464 4926 2474 4926 2463 4926 2464 4927 2463 4927 2465 4927 2465 4928 2463 4928 2477 4928 2465 4929 2477 4929 2458 4929 2458 4930 2477 4930 2466 4930 2458 4931 2466 4931 2467 4931 2467 4932 2466 4932 2478 4932 2467 4933 2478 4933 2350 4933 2460 4934 3799 4934 2461 4934 2461 4935 3799 4935 2468 4935 2461 4936 2468 4936 2469 4936 2469 4937 2468 4937 3322 4937 2469 4938 3322 4938 2470 4938 2470 4939 3322 4939 2471 4939 2470 4940 2471 4940 2472 4940 2472 4941 2471 4941 2473 4941 2472 4942 2473 4942 2474 4942 2474 4943 2473 4943 2475 4943 2474 4944 2475 4944 2463 4944 2463 4945 2475 4945 2476 4945 2463 4946 2476 4946 2477 4946 2477 4947 2476 4947 3323 4947 2477 4948 3323 4948 2466 4948 2466 4949 3323 4949 2352 4949 2466 4950 2352 4950 2478 4950 2468 4951 3799 4951 3321 4951 3321 4952 3799 4952 3797 4952 3321 4953 3797 4953 2479 4953 2479 4954 3797 4954 3795 4954 2479 4955 3795 4955 3344 4955 3344 4956 3795 4956 3794 4956 3344 4957 3794 4957 2480 4957 2480 4958 3794 4958 2481 4958 2480 4959 2481 4959 3343 4959 3343 4960 2481 4960 2484 4960 3343 4961 2484 4961 2482 4961 2482 4962 2484 4962 2483 4962 2482 4963 2483 4963 2356 4963 3794 4964 2485 4964 2481 4964 2481 4965 2485 4965 2486 4965 2481 4966 2486 4966 2484 4966 2484 4967 2486 4967 2357 4967 2484 4968 2357 4968 2483 4968 2485 4969 2487 4969 2486 4969 2486 4970 2487 4970 2489 4970 2486 4971 2489 4971 2357 4971 2487 4972 2488 4972 2489 4972 2362 4973 3786 4973 2490 4973 2490 4974 3786 4974 2491 4974 2490 4975 2491 4975 2492 4975 2492 4976 2491 4976 2493 4976 2492 4977 2493 4977 2365 4977 2365 4978 2493 4978 2506 4978 2365 4979 2506 4979 2366 4979 2366 4980 2506 4980 2507 4980 2366 4981 2507 4981 2494 4981 2494 4982 2507 4982 2496 4982 2494 4983 2496 4983 2495 4983 2495 4984 2496 4984 2510 4984 2495 4985 2510 4985 2370 4985 2370 4986 2510 4986 2497 4986 2370 4987 2497 4987 2372 4987 2372 4988 2497 4988 2498 4988 2372 4989 2498 4989 2373 4989 2373 4990 2498 4990 2499 4990 2373 4991 2499 4991 2500 4991 2500 4992 2499 4992 2501 4992 2500 4993 2501 4993 2502 4993 2502 4994 2501 4994 2503 4994 2502 4995 2503 4995 2377 4995 2377 4996 2503 4996 2379 4996 3786 4997 2513 4997 2491 4997 2491 4998 2513 4998 2504 4998 2491 4999 2504 4999 2493 4999 2493 5000 2504 5000 2505 5000 2493 5001 2505 5001 2506 5001 2506 5002 2505 5002 2508 5002 2506 5003 2508 5003 2507 5003 2507 5004 2508 5004 3369 5004 2507 5005 3369 5005 2496 5005 2496 5006 3369 5006 2509 5006 2496 5007 2509 5007 2510 5007 2510 5008 2509 5008 3371 5008 2510 5009 3371 5009 2497 5009 2497 5010 3371 5010 2511 5010 2497 5011 2511 5011 2498 5011 2498 5012 2511 5012 2512 5012 2498 5013 2512 5013 2499 5013 2499 5014 2512 5014 3373 5014 2499 5015 3373 5015 2501 5015 2501 5016 3373 5016 3375 5016 2501 5017 3375 5017 2503 5017 2503 5018 3375 5018 3377 5018 2503 5019 3377 5019 2379 5019 2379 5020 3377 5020 3378 5020 2504 5021 2513 5021 3367 5021 3367 5022 2513 5022 3784 5022 3367 5023 3784 5023 3387 5023 3387 5024 3784 5024 3782 5024 3387 5025 3782 5025 3388 5025 3388 5026 3782 5026 3780 5026 3388 5027 3780 5027 3401 5027 3401 5028 3780 5028 2514 5028 3401 5029 2514 5029 2515 5029 2515 5030 2514 5030 2525 5030 2515 5031 2525 5031 3403 5031 3403 5032 2525 5032 2516 5032 3403 5033 2516 5033 3404 5033 3404 5034 2516 5034 2526 5034 3404 5035 2526 5035 3407 5035 3407 5036 2526 5036 2527 5036 3407 5037 2527 5037 3412 5037 3412 5038 2527 5038 2528 5038 3412 5039 2528 5039 3414 5039 3414 5040 2528 5040 2517 5040 3414 5041 2517 5041 2518 5041 2518 5042 2517 5042 2530 5042 2518 5043 2530 5043 3416 5043 3416 5044 2530 5044 2533 5044 3416 5045 2533 5045 2520 5045 2520 5046 2533 5046 2519 5046 2520 5047 2519 5047 2521 5047 2521 5048 2519 5048 2534 5048 2521 5049 2534 5049 2522 5049 2522 5050 2534 5050 2535 5050 3780 5051 3779 5051 2514 5051 2514 5052 3779 5052 2523 5052 2514 5053 2523 5053 2525 5053 2525 5054 2523 5054 2524 5054 2525 5055 2524 5055 2516 5055 2516 5056 2524 5056 2537 5056 2516 5057 2537 5057 2526 5057 2526 5058 2537 5058 2539 5058 2526 5059 2539 5059 2527 5059 2527 5060 2539 5060 2529 5060 2527 5061 2529 5061 2528 5061 2528 5062 2529 5062 2542 5062 2528 5063 2542 5063 2517 5063 2517 5064 2542 5064 2531 5064 2517 5065 2531 5065 2530 5065 2530 5066 2531 5066 2532 5066 2530 5067 2532 5067 2533 5067 2533 5068 2532 5068 2543 5068 2533 5069 2543 5069 2519 5069 2519 5070 2543 5070 2544 5070 2519 5071 2544 5071 2534 5071 2534 5072 2544 5072 2545 5072 2534 5073 2545 5073 2535 5073 2535 5074 2545 5074 2385 5074 3779 5075 3777 5075 2523 5075 2523 5076 3777 5076 2536 5076 2523 5077 2536 5077 2524 5077 2524 5078 2536 5078 2538 5078 2524 5079 2538 5079 2537 5079 2537 5080 2538 5080 2540 5080 2537 5081 2540 5081 2539 5081 2539 5082 2540 5082 2541 5082 2539 5083 2541 5083 2529 5083 2529 5084 2541 5084 2551 5084 2529 5085 2551 5085 2542 5085 2542 5086 2551 5086 2552 5086 2542 5087 2552 5087 2531 5087 2531 5088 2552 5088 2555 5088 2531 5089 2555 5089 2532 5089 2532 5090 2555 5090 2557 5090 2532 5091 2557 5091 2543 5091 2543 5092 2557 5092 2558 5092 2543 5093 2558 5093 2544 5093 2544 5094 2558 5094 2546 5094 2544 5095 2546 5095 2545 5095 2545 5096 2546 5096 2386 5096 2545 5097 2386 5097 2385 5097 3777 5098 2547 5098 2536 5098 2536 5099 2547 5099 2548 5099 2536 5100 2548 5100 2538 5100 2538 5101 2548 5101 2549 5101 2538 5102 2549 5102 2540 5102 2540 5103 2549 5103 2550 5103 2540 5104 2550 5104 2541 5104 2541 5105 2550 5105 3408 5105 2541 5106 3408 5106 2551 5106 2551 5107 3408 5107 2553 5107 2551 5108 2553 5108 2552 5108 2552 5109 2553 5109 2554 5109 2552 5110 2554 5110 2555 5110 2555 5111 2554 5111 2556 5111 2555 5112 2556 5112 2557 5112 2557 5113 2556 5113 3409 5113 2557 5114 3409 5114 2558 5114 2558 5115 3409 5115 3411 5115 2558 5116 3411 5116 2546 5116 2546 5117 3411 5117 2387 5117 2546 5118 2387 5118 2386 5118 2548 5119 2547 5119 2559 5119 2559 5120 2547 5120 2561 5120 2559 5121 2561 5121 2560 5121 2560 5122 2561 5122 2562 5122 2560 5123 2562 5123 3429 5123 3429 5124 2562 5124 2566 5124 3429 5125 2566 5125 3437 5125 3437 5126 2566 5126 2563 5126 3437 5127 2563 5127 3436 5127 3436 5128 2563 5128 2567 5128 3436 5129 2567 5129 2564 5129 2564 5130 2567 5130 2565 5130 2564 5131 2565 5131 3442 5131 3442 5132 2565 5132 2569 5132 3442 5133 2569 5133 3441 5133 3441 5134 2569 5134 2392 5134 3441 5135 2392 5135 2391 5135 2566 5136 3774 5136 2563 5136 2563 5137 3774 5137 2570 5137 2563 5138 2570 5138 2567 5138 2567 5139 2570 5139 2571 5139 2567 5140 2571 5140 2565 5140 2565 5141 2571 5141 2568 5141 2565 5142 2568 5142 2569 5142 2569 5143 2568 5143 2393 5143 2569 5144 2393 5144 2392 5144 3774 5145 3772 5145 2570 5145 2570 5146 3772 5146 2574 5146 2570 5147 2574 5147 2571 5147 2571 5148 2574 5148 2572 5148 2571 5149 2572 5149 2568 5149 2568 5150 2572 5150 2573 5150 2568 5151 2573 5151 2393 5151 3772 5152 3770 5152 2574 5152 2574 5153 3770 5153 2575 5153 2574 5154 2575 5154 2572 5154 2572 5155 2575 5155 2396 5155 2572 5156 2396 5156 2573 5156 2575 5157 3770 5157 2576 5157 2576 5158 3770 5158 2398 5158 2397 5159 3768 5159 2577 5159 2577 5160 3768 5160 3766 5160 2577 5161 3766 5161 2578 5161 2578 5162 3766 5162 2638 5162 2578 5163 2638 5163 2579 5163 2579 5164 2638 5164 2640 5164 2579 5165 2640 5165 2580 5165 2580 5166 2640 5166 2641 5166 2580 5167 2641 5167 3011 5167 3011 5168 2641 5168 2581 5168 3011 5169 2581 5169 3009 5169 3009 5170 2581 5170 2582 5170 3009 5171 2582 5171 3008 5171 3008 5172 2582 5172 2646 5172 3008 5173 2646 5173 3007 5173 3007 5174 2646 5174 2583 5174 3007 5175 2583 5175 2584 5175 2584 5176 2583 5176 2585 5176 2584 5177 2585 5177 3003 5177 3003 5178 2585 5178 2586 5178 3003 5179 2586 5179 2587 5179 2587 5180 2586 5180 2588 5180 2587 5181 2588 5181 2589 5181 2589 5182 2588 5182 2650 5182 2589 5183 2650 5183 2591 5183 2591 5184 2650 5184 2590 5184 2591 5185 2590 5185 3001 5185 3001 5186 2590 5186 2592 5186 2592 5187 2590 5187 2659 5187 2592 5188 2659 5188 2593 5188 2593 5189 2659 5189 2594 5189 2593 5190 2594 5190 2595 5190 2595 5191 2594 5191 2673 5191 2595 5192 2673 5192 2596 5192 2596 5193 2673 5193 3528 5193 2596 5194 3528 5194 2999 5194 2999 5195 3528 5195 3537 5195 2999 5196 3537 5196 2597 5196 2597 5197 3537 5197 3539 5197 2597 5198 3539 5198 2997 5198 2997 5199 3539 5199 2598 5199 2997 5200 2598 5200 2996 5200 2996 5201 2598 5201 2599 5201 2996 5202 2599 5202 2600 5202 2600 5203 2599 5203 2709 5203 2600 5204 2709 5204 2601 5204 2601 5205 2709 5205 2710 5205 2601 5206 2710 5206 2994 5206 2994 5207 2710 5207 2602 5207 2994 5208 2602 5208 2603 5208 2603 5209 2602 5209 3511 5209 2603 5210 3511 5210 2993 5210 2993 5211 3511 5211 2604 5211 2993 5212 2604 5212 2605 5212 2605 5213 2604 5213 2606 5213 2605 5214 2606 5214 2607 5214 2607 5215 2606 5215 2608 5215 2607 5216 2608 5216 2991 5216 2991 5217 2608 5217 2609 5217 2991 5218 2609 5218 2989 5218 2989 5219 2609 5219 2764 5219 2989 5220 2764 5220 2610 5220 2610 5221 2764 5221 3192 5221 2610 5222 3192 5222 2611 5222 2611 5223 3192 5223 2612 5223 2611 5224 2612 5224 2613 5224 2613 5225 2612 5225 2614 5225 2613 5226 2614 5226 2615 5226 2615 5227 2614 5227 2616 5227 2615 5228 2616 5228 2986 5228 2986 5229 2616 5229 2617 5229 2986 5230 2617 5230 2618 5230 2618 5231 2617 5231 2792 5231 2618 5232 2792 5232 2619 5232 2619 5233 2792 5233 2793 5233 2619 5234 2793 5234 2620 5234 2620 5235 2793 5235 2818 5235 2620 5236 2818 5236 2621 5236 2621 5237 2818 5237 2622 5237 2621 5238 2622 5238 2983 5238 2983 5239 2622 5239 3644 5239 2983 5240 3644 5240 2982 5240 2982 5241 3644 5241 3650 5241 2982 5242 3650 5242 2981 5242 2981 5243 3650 5243 2623 5243 2981 5244 2623 5244 2625 5244 2625 5245 2623 5245 2624 5245 2625 5246 2624 5246 2626 5246 2626 5247 2624 5247 2842 5247 2626 5248 2842 5248 2977 5248 2977 5249 2842 5249 2849 5249 2977 5250 2849 5250 2976 5250 2976 5251 2849 5251 3604 5251 2976 5252 3604 5252 2974 5252 2974 5253 3604 5253 3606 5253 2974 5254 3606 5254 2973 5254 2973 5255 3606 5255 3641 5255 2973 5256 3641 5256 2627 5256 2627 5257 3641 5257 2628 5257 2627 5258 2628 5258 2629 5258 2629 5259 2628 5259 3668 5259 2629 5260 3668 5260 2630 5260 2630 5261 3668 5261 2863 5261 2630 5262 2863 5262 2970 5262 2970 5263 2863 5263 2874 5263 2970 5264 2874 5264 2632 5264 2632 5265 2874 5265 2631 5265 2632 5266 2631 5266 2968 5266 2968 5267 2631 5267 3662 5267 2968 5268 3662 5268 2633 5268 2633 5269 3662 5269 2634 5269 2633 5270 2634 5270 2966 5270 2966 5271 2634 5271 3685 5271 2966 5272 3685 5272 2636 5272 2636 5273 3685 5273 2635 5273 2636 5274 2635 5274 2964 5274 2964 5275 2635 5275 2637 5275 2964 5276 2637 5276 2323 5276 2323 5277 2637 5277 2322 5277 3766 5278 3765 5278 2638 5278 2638 5279 3765 5279 2639 5279 2638 5280 2639 5280 2640 5280 2640 5281 2639 5281 2642 5281 2640 5282 2642 5282 2641 5282 2641 5283 2642 5283 2643 5283 2641 5284 2643 5284 2581 5284 2581 5285 2643 5285 2644 5285 2581 5286 2644 5286 2582 5286 2582 5287 2644 5287 2645 5287 2582 5288 2645 5288 2646 5288 2646 5289 2645 5289 2647 5289 2646 5290 2647 5290 2583 5290 2583 5291 2647 5291 2655 5291 2583 5292 2655 5292 2585 5292 2585 5293 2655 5293 2648 5293 2585 5294 2648 5294 2586 5294 2586 5295 2648 5295 2658 5295 2586 5296 2658 5296 2588 5296 2588 5297 2658 5297 2649 5297 2588 5298 2649 5298 2650 5298 2650 5299 2649 5299 2651 5299 2650 5300 2651 5300 2590 5300 2590 5301 2651 5301 2659 5301 3765 5302 3764 5302 2639 5302 2639 5303 3764 5303 2662 5303 2639 5304 2662 5304 2642 5304 2642 5305 2662 5305 2652 5305 2642 5306 2652 5306 2643 5306 2643 5307 2652 5307 2663 5307 2643 5308 2663 5308 2644 5308 2644 5309 2663 5309 2653 5309 2644 5310 2653 5310 2645 5310 2645 5311 2653 5311 2664 5311 2645 5312 2664 5312 2647 5312 2647 5313 2664 5313 2654 5313 2647 5314 2654 5314 2655 5314 2655 5315 2654 5315 2666 5315 2655 5316 2666 5316 2648 5316 2648 5317 2666 5317 2656 5317 2648 5318 2656 5318 2658 5318 2658 5319 2656 5319 2657 5319 2658 5320 2657 5320 2649 5320 2649 5321 2657 5321 2669 5321 2649 5322 2669 5322 2651 5322 2651 5323 2669 5323 2671 5323 2651 5324 2671 5324 2659 5324 2659 5325 2671 5325 2660 5325 2659 5326 2660 5326 2594 5326 2594 5327 2660 5327 2673 5327 3764 5328 2661 5328 2662 5328 2662 5329 2661 5329 3471 5329 2662 5330 3471 5330 2652 5330 2652 5331 3471 5331 3472 5331 2652 5332 3472 5332 2663 5332 2663 5333 3472 5333 3474 5333 2663 5334 3474 5334 2653 5334 2653 5335 3474 5335 3476 5335 2653 5336 3476 5336 2664 5336 2664 5337 3476 5337 3477 5337 2664 5338 3477 5338 2654 5338 2654 5339 3477 5339 2665 5339 2654 5340 2665 5340 2666 5340 2666 5341 2665 5341 3480 5341 2666 5342 3480 5342 2656 5342 2656 5343 3480 5343 2667 5343 2656 5344 2667 5344 2657 5344 2657 5345 2667 5345 2668 5345 2657 5346 2668 5346 2669 5346 2669 5347 2668 5347 2670 5347 2669 5348 2670 5348 2671 5348 2671 5349 2670 5349 2672 5349 2671 5350 2672 5350 2660 5350 2660 5351 2672 5351 2685 5351 2660 5352 2685 5352 2673 5352 2673 5353 2685 5353 3528 5353 3471 5354 2661 5354 3473 5354 3473 5355 2661 5355 3763 5355 3473 5356 3763 5356 3484 5356 3484 5357 3763 5357 3762 5357 3484 5358 3762 5358 2674 5358 2674 5359 3762 5359 3760 5359 2674 5360 3760 5360 3501 5360 3501 5361 3760 5361 2675 5361 3501 5362 2675 5362 2676 5362 2676 5363 2675 5363 2686 5363 2676 5364 2686 5364 2677 5364 2677 5365 2686 5365 2679 5365 2677 5366 2679 5366 2678 5366 2678 5367 2679 5367 2680 5367 2678 5368 2680 5368 3502 5368 3502 5369 2680 5369 2690 5369 3502 5370 2690 5370 3512 5370 3512 5371 2690 5371 2691 5371 3512 5372 2691 5372 2681 5372 2681 5373 2691 5373 2693 5373 2681 5374 2693 5374 2682 5374 2682 5375 2693 5375 3525 5375 2682 5376 3525 5376 3492 5376 3492 5377 3525 5377 2683 5377 3492 5378 2683 5378 3483 5378 3483 5379 2683 5379 2684 5379 3483 5380 2684 5380 2672 5380 2672 5381 2684 5381 2685 5381 3760 5382 3759 5382 2675 5382 2675 5383 3759 5383 2700 5383 2675 5384 2700 5384 2686 5384 2686 5385 2700 5385 2687 5385 2686 5386 2687 5386 2679 5386 2679 5387 2687 5387 2688 5387 2679 5388 2688 5388 2680 5388 2680 5389 2688 5389 2689 5389 2680 5390 2689 5390 2690 5390 2690 5391 2689 5391 2704 5391 2690 5392 2704 5392 2691 5392 2691 5393 2704 5393 2692 5393 2691 5394 2692 5394 2693 5394 2693 5395 2692 5395 2705 5395 2693 5396 2705 5396 2694 5396 2694 5397 2705 5397 2695 5397 2694 5398 2695 5398 2696 5398 2696 5399 2695 5399 2697 5399 2696 5400 2697 5400 3534 5400 3534 5401 2697 5401 2698 5401 3534 5402 2698 5402 3536 5402 3536 5403 2698 5403 2699 5403 3536 5404 2699 5404 2599 5404 2599 5405 2699 5405 2709 5405 3759 5406 3758 5406 2700 5406 2700 5407 3758 5407 2712 5407 2700 5408 2712 5408 2687 5408 2687 5409 2712 5409 2713 5409 2687 5410 2713 5410 2688 5410 2688 5411 2713 5411 2701 5411 2688 5412 2701 5412 2689 5412 2689 5413 2701 5413 2702 5413 2689 5414 2702 5414 2704 5414 2704 5415 2702 5415 2703 5415 2704 5416 2703 5416 2692 5416 2692 5417 2703 5417 2715 5417 2692 5418 2715 5418 2705 5418 2705 5419 2715 5419 2706 5419 2705 5420 2706 5420 2695 5420 2695 5421 2706 5421 2707 5421 2695 5422 2707 5422 2697 5422 2697 5423 2707 5423 2718 5423 2697 5424 2718 5424 2698 5424 2698 5425 2718 5425 2720 5425 2698 5426 2720 5426 2699 5426 2699 5427 2720 5427 2708 5427 2699 5428 2708 5428 2709 5428 2709 5429 2708 5429 2710 5429 3758 5430 3757 5430 2712 5430 2712 5431 3757 5431 2711 5431 2712 5432 2711 5432 2713 5432 2713 5433 2711 5433 3503 5433 2713 5434 3503 5434 2701 5434 2701 5435 3503 5435 3504 5435 2701 5436 3504 5436 2702 5436 2702 5437 3504 5437 3506 5437 2702 5438 3506 5438 2703 5438 2703 5439 3506 5439 2714 5439 2703 5440 2714 5440 2715 5440 2715 5441 2714 5441 3507 5441 2715 5442 3507 5442 2706 5442 2706 5443 3507 5443 2716 5443 2706 5444 2716 5444 2707 5444 2707 5445 2716 5445 2717 5445 2707 5446 2717 5446 2718 5446 2718 5447 2717 5447 2719 5447 2718 5448 2719 5448 2720 5448 2720 5449 2719 5449 2721 5449 2720 5450 2721 5450 2708 5450 2708 5451 2721 5451 3510 5451 2708 5452 3510 5452 2710 5452 2710 5453 3510 5453 2602 5453 2711 5454 3757 5454 2722 5454 2722 5455 3757 5455 2724 5455 2722 5456 2724 5456 2723 5456 2723 5457 2724 5457 2725 5457 2723 5458 2725 5458 3540 5458 3540 5459 2725 5459 2733 5459 3540 5460 2733 5460 3541 5460 3541 5461 2733 5461 2735 5461 3541 5462 2735 5462 3529 5462 3529 5463 2735 5463 2726 5463 3529 5464 2726 5464 3531 5464 3531 5465 2726 5465 2727 5465 3531 5466 2727 5466 3544 5466 3544 5467 2727 5467 2737 5467 3544 5468 2737 5468 2728 5468 2728 5469 2737 5469 2739 5469 2728 5470 2739 5470 2729 5470 2729 5471 2739 5471 2730 5471 2729 5472 2730 5472 3558 5472 3558 5473 2730 5473 2731 5473 3558 5474 2731 5474 3559 5474 3559 5475 2731 5475 2742 5475 3559 5476 2742 5476 3560 5476 3560 5477 2742 5477 2744 5477 3560 5478 2744 5478 2732 5478 2732 5479 2744 5479 2746 5479 2732 5480 2746 5480 2606 5480 2606 5481 2746 5481 2608 5481 2733 5482 2734 5482 2735 5482 2735 5483 2734 5483 2748 5483 2735 5484 2748 5484 2726 5484 2726 5485 2748 5485 2736 5485 2726 5486 2736 5486 2727 5486 2727 5487 2736 5487 2738 5487 2727 5488 2738 5488 2737 5488 2737 5489 2738 5489 2751 5489 2737 5490 2751 5490 2739 5490 2739 5491 2751 5491 2740 5491 2739 5492 2740 5492 2730 5492 2730 5493 2740 5493 2754 5493 2730 5494 2754 5494 2731 5494 2731 5495 2754 5495 2741 5495 2731 5496 2741 5496 2742 5496 2742 5497 2741 5497 2743 5497 2742 5498 2743 5498 2744 5498 2744 5499 2743 5499 2745 5499 2744 5500 2745 5500 2746 5500 2746 5501 2745 5501 2747 5501 2746 5502 2747 5502 2608 5502 2608 5503 2747 5503 2609 5503 2734 5504 3751 5504 2748 5504 2748 5505 3751 5505 2749 5505 2748 5506 2749 5506 2736 5506 2736 5507 2749 5507 2750 5507 2736 5508 2750 5508 2738 5508 2738 5509 2750 5509 2759 5509 2738 5510 2759 5510 2751 5510 2751 5511 2759 5511 2752 5511 2751 5512 2752 5512 2740 5512 2740 5513 2752 5513 2753 5513 2740 5514 2753 5514 2754 5514 2754 5515 2753 5515 2755 5515 2754 5516 2755 5516 2741 5516 2741 5517 2755 5517 2756 5517 2741 5518 2756 5518 2743 5518 2743 5519 2756 5519 2760 5519 2743 5520 2760 5520 2745 5520 2745 5521 2760 5521 2762 5521 2745 5522 2762 5522 2747 5522 2747 5523 2762 5523 2763 5523 2747 5524 2763 5524 2609 5524 2609 5525 2763 5525 2764 5525 3751 5526 2757 5526 2749 5526 2749 5527 2757 5527 2758 5527 2749 5528 2758 5528 2750 5528 2750 5529 2758 5529 3545 5529 2750 5530 3545 5530 2759 5530 2759 5531 3545 5531 3546 5531 2759 5532 3546 5532 2752 5532 2752 5533 3546 5533 3548 5533 2752 5534 3548 5534 2753 5534 2753 5535 3548 5535 3550 5535 2753 5536 3550 5536 2755 5536 2755 5537 3550 5537 3552 5537 2755 5538 3552 5538 2756 5538 2756 5539 3552 5539 3553 5539 2756 5540 3553 5540 2760 5540 2760 5541 3553 5541 2761 5541 2760 5542 2761 5542 2762 5542 2762 5543 2761 5543 3556 5543 2762 5544 3556 5544 2763 5544 2763 5545 3556 5545 2765 5545 2763 5546 2765 5546 2764 5546 2764 5547 2765 5547 3192 5547 2758 5548 2757 5548 2766 5548 2766 5549 2757 5549 2768 5549 2766 5550 2768 5550 2767 5550 2767 5551 2768 5551 2769 5551 2767 5552 2769 5552 3567 5552 3567 5553 2769 5553 2770 5553 3567 5554 2770 5554 3578 5554 3578 5555 2770 5555 2783 5555 3578 5556 2783 5556 3577 5556 3577 5557 2783 5557 2771 5557 3577 5558 2771 5558 2772 5558 2772 5559 2771 5559 2773 5559 2772 5560 2773 5560 2774 5560 2774 5561 2773 5561 2784 5561 2774 5562 2784 5562 3581 5562 3581 5563 2784 5563 2786 5563 3581 5564 2786 5564 2775 5564 2775 5565 2786 5565 2776 5565 2775 5566 2776 5566 2777 5566 2777 5567 2776 5567 2787 5567 2777 5568 2787 5568 2778 5568 2778 5569 2787 5569 2779 5569 2778 5570 2779 5570 2780 5570 2780 5571 2779 5571 2781 5571 2780 5572 2781 5572 2782 5572 2782 5573 2781 5573 2791 5573 2782 5574 2791 5574 2617 5574 2617 5575 2791 5575 2792 5575 2770 5576 2794 5576 2783 5576 2783 5577 2794 5577 2795 5577 2783 5578 2795 5578 2771 5578 2771 5579 2795 5579 2797 5579 2771 5580 2797 5580 2773 5580 2773 5581 2797 5581 2798 5581 2773 5582 2798 5582 2784 5582 2784 5583 2798 5583 2785 5583 2784 5584 2785 5584 2786 5584 2786 5585 2785 5585 2801 5585 2786 5586 2801 5586 2776 5586 2776 5587 2801 5587 2802 5587 2776 5588 2802 5588 2787 5588 2787 5589 2802 5589 2788 5589 2787 5590 2788 5590 2779 5590 2779 5591 2788 5591 2789 5591 2779 5592 2789 5592 2781 5592 2781 5593 2789 5593 2790 5593 2781 5594 2790 5594 2791 5594 2791 5595 2790 5595 2806 5595 2791 5596 2806 5596 2792 5596 2792 5597 2806 5597 2793 5597 2794 5598 3748 5598 2795 5598 2795 5599 3748 5599 2796 5599 2795 5600 2796 5600 2797 5600 2797 5601 2796 5601 2808 5601 2797 5602 2808 5602 2798 5602 2798 5603 2808 5603 2799 5603 2798 5604 2799 5604 2785 5604 2785 5605 2799 5605 2800 5605 2785 5606 2800 5606 2801 5606 2801 5607 2800 5607 2813 5607 2801 5608 2813 5608 2802 5608 2802 5609 2813 5609 2803 5609 2802 5610 2803 5610 2788 5610 2788 5611 2803 5611 2804 5611 2788 5612 2804 5612 2789 5612 2789 5613 2804 5613 2805 5613 2789 5614 2805 5614 2790 5614 2790 5615 2805 5615 2816 5615 2790 5616 2816 5616 2806 5616 2806 5617 2816 5617 2807 5617 2806 5618 2807 5618 2793 5618 2793 5619 2807 5619 2818 5619 3748 5620 2819 5620 2796 5620 2796 5621 2819 5621 2809 5621 2796 5622 2809 5622 2808 5622 2808 5623 2809 5623 2810 5623 2808 5624 2810 5624 2799 5624 2799 5625 2810 5625 2811 5625 2799 5626 2811 5626 2800 5626 2800 5627 2811 5627 2812 5627 2800 5628 2812 5628 2813 5628 2813 5629 2812 5629 2814 5629 2813 5630 2814 5630 2803 5630 2803 5631 2814 5631 3190 5631 2803 5632 3190 5632 2804 5632 2804 5633 3190 5633 2815 5633 2804 5634 2815 5634 2805 5634 2805 5635 2815 5635 3612 5635 2805 5636 3612 5636 2816 5636 2816 5637 3612 5637 2817 5637 2816 5638 2817 5638 2807 5638 2807 5639 2817 5639 3617 5639 2807 5640 3617 5640 2818 5640 2818 5641 3617 5641 2622 5641 2809 5642 2819 5642 3586 5642 3586 5643 2819 5643 3746 5643 3586 5644 3746 5644 2820 5644 2820 5645 3746 5645 3745 5645 2820 5646 3745 5646 3588 5646 3588 5647 3745 5647 2821 5647 3588 5648 2821 5648 2822 5648 2822 5649 2821 5649 2823 5649 2822 5650 2823 5650 3589 5650 3589 5651 2823 5651 2832 5651 3589 5652 2832 5652 3590 5652 3590 5653 2832 5653 2824 5653 3590 5654 2824 5654 2825 5654 2825 5655 2824 5655 2826 5655 2825 5656 2826 5656 3608 5656 3608 5657 2826 5657 2834 5657 3608 5658 2834 5658 3609 5658 3609 5659 2834 5659 2827 5659 3609 5660 2827 5660 2828 5660 2828 5661 2827 5661 2829 5661 2828 5662 2829 5662 3631 5662 3631 5663 2829 5663 2837 5663 3631 5664 2837 5664 3648 5664 3648 5665 2837 5665 2840 5665 3648 5666 2840 5666 3649 5666 3649 5667 2840 5667 2830 5667 3649 5668 2830 5668 2624 5668 2624 5669 2830 5669 2842 5669 2821 5670 3742 5670 2823 5670 2823 5671 3742 5671 2843 5671 2823 5672 2843 5672 2832 5672 2832 5673 2843 5673 2831 5673 2832 5674 2831 5674 2824 5674 2824 5675 2831 5675 2845 5675 2824 5676 2845 5676 2826 5676 2826 5677 2845 5677 2833 5677 2826 5678 2833 5678 2834 5678 2834 5679 2833 5679 2835 5679 2834 5680 2835 5680 2827 5680 2827 5681 2835 5681 2836 5681 2827 5682 2836 5682 2829 5682 2829 5683 2836 5683 2838 5683 2829 5684 2838 5684 2837 5684 2837 5685 2838 5685 2839 5685 2837 5686 2839 5686 2840 5686 2840 5687 2839 5687 2847 5687 2840 5688 2847 5688 2830 5688 2830 5689 2847 5689 2841 5689 2830 5690 2841 5690 2842 5690 2842 5691 2841 5691 2849 5691 3742 5692 3741 5692 2843 5692 2843 5693 3741 5693 3593 5693 2843 5694 3593 5694 2831 5694 2831 5695 3593 5695 2844 5695 2831 5696 2844 5696 2845 5696 2845 5697 2844 5697 3595 5697 2845 5698 3595 5698 2833 5698 2833 5699 3595 5699 3596 5699 2833 5700 3596 5700 2835 5700 2835 5701 3596 5701 3598 5701 2835 5702 3598 5702 2836 5702 2836 5703 3598 5703 3600 5703 2836 5704 3600 5704 2838 5704 2838 5705 3600 5705 2846 5705 2838 5706 2846 5706 2839 5706 2839 5707 2846 5707 3602 5707 2839 5708 3602 5708 2847 5708 2847 5709 3602 5709 2848 5709 2847 5710 2848 5710 2841 5710 2841 5711 2848 5711 3603 5711 2841 5712 3603 5712 2849 5712 2849 5713 3603 5713 3604 5713 3593 5714 3741 5714 3594 5714 3594 5715 3741 5715 3739 5715 3594 5716 3739 5716 3619 5716 3619 5717 3739 5717 3738 5717 3619 5718 3738 5718 2850 5718 2850 5719 3738 5719 2864 5719 2850 5720 2864 5720 2851 5720 2851 5721 2864 5721 2865 5721 2851 5722 2865 5722 3646 5722 3646 5723 2865 5723 2866 5723 3646 5724 2866 5724 2852 5724 2852 5725 2866 5725 2868 5725 2852 5726 2868 5726 2853 5726 2853 5727 2868 5727 2869 5727 2853 5728 2869 5728 2854 5728 2854 5729 2869 5729 2871 5729 2854 5730 2871 5730 2855 5730 2855 5731 2871 5731 2872 5731 2855 5732 2872 5732 2857 5732 2857 5733 2872 5733 2856 5733 2857 5734 2856 5734 3665 5734 3665 5735 2856 5735 2859 5735 3665 5736 2859 5736 2858 5736 2858 5737 2859 5737 2860 5737 2858 5738 2860 5738 2861 5738 2861 5739 2860 5739 2862 5739 2861 5740 2862 5740 3668 5740 3668 5741 2862 5741 2863 5741 2864 5742 3736 5742 2865 5742 2865 5743 3736 5743 2867 5743 2865 5744 2867 5744 2866 5744 2866 5745 2867 5745 2876 5745 2866 5746 2876 5746 2868 5746 2868 5747 2876 5747 2870 5747 2868 5748 2870 5748 2869 5748 2869 5749 2870 5749 2878 5749 2869 5750 2878 5750 2871 5750 2871 5751 2878 5751 2879 5751 2871 5752 2879 5752 2872 5752 2872 5753 2879 5753 2873 5753 2872 5754 2873 5754 2856 5754 2856 5755 2873 5755 2880 5755 2856 5756 2880 5756 2859 5756 2859 5757 2880 5757 2881 5757 2859 5758 2881 5758 2860 5758 2860 5759 2881 5759 2883 5759 2860 5760 2883 5760 2862 5760 2862 5761 2883 5761 2884 5761 2862 5762 2884 5762 2863 5762 2863 5763 2884 5763 2874 5763 3736 5764 3735 5764 2867 5764 2867 5765 3735 5765 2875 5765 2867 5766 2875 5766 2876 5766 2876 5767 2875 5767 2888 5767 2876 5768 2888 5768 2870 5768 2870 5769 2888 5769 2877 5769 2870 5770 2877 5770 2878 5770 2878 5771 2877 5771 2890 5771 2878 5772 2890 5772 2879 5772 2879 5773 2890 5773 2892 5773 2879 5774 2892 5774 2873 5774 2873 5775 2892 5775 2893 5775 2873 5776 2893 5776 2880 5776 2880 5777 2893 5777 2894 5777 2880 5778 2894 5778 2881 5778 2881 5779 2894 5779 2882 5779 2881 5780 2882 5780 2883 5780 2883 5781 2882 5781 2885 5781 2883 5782 2885 5782 2884 5782 2884 5783 2885 5783 2899 5783 2884 5784 2899 5784 2874 5784 2874 5785 2899 5785 2631 5785 3735 5786 2886 5786 2875 5786 2875 5787 2886 5787 2887 5787 2875 5788 2887 5788 2888 5788 2888 5789 2887 5789 2889 5789 2888 5790 2889 5790 2877 5790 2877 5791 2889 5791 3653 5791 2877 5792 3653 5792 2890 5792 2890 5793 3653 5793 2891 5793 2890 5794 2891 5794 2892 5794 2892 5795 2891 5795 3657 5795 2892 5796 3657 5796 2893 5796 2893 5797 3657 5797 2895 5797 2893 5798 2895 5798 2894 5798 2894 5799 2895 5799 2896 5799 2894 5800 2896 5800 2882 5800 2882 5801 2896 5801 2897 5801 2882 5802 2897 5802 2885 5802 2885 5803 2897 5803 2898 5803 2885 5804 2898 5804 2899 5804 2899 5805 2898 5805 3660 5805 2899 5806 3660 5806 2631 5806 2631 5807 3660 5807 3662 5807 2887 5808 2886 5808 2901 5808 2901 5809 2886 5809 2900 5809 2901 5810 2900 5810 2902 5810 2902 5811 2900 5811 2903 5811 2902 5812 2903 5812 3677 5812 3677 5813 2903 5813 2904 5813 3677 5814 2904 5814 3687 5814 3687 5815 2904 5815 2914 5815 3687 5816 2914 5816 3690 5816 3690 5817 2914 5817 2916 5817 3690 5818 2916 5818 3692 5818 3692 5819 2916 5819 2905 5819 3692 5820 2905 5820 3691 5820 3691 5821 2905 5821 2906 5821 3691 5822 2906 5822 2907 5822 2907 5823 2906 5823 2918 5823 2907 5824 2918 5824 3699 5824 3699 5825 2918 5825 2909 5825 3699 5826 2909 5826 2908 5826 2908 5827 2909 5827 2910 5827 2908 5828 2910 5828 3701 5828 3701 5829 2910 5829 2911 5829 3701 5830 2911 5830 3702 5830 3702 5831 2911 5831 2912 5831 3702 5832 2912 5832 3703 5832 3703 5833 2912 5833 2920 5833 3703 5834 2920 5834 2637 5834 2637 5835 2920 5835 2322 5835 2904 5836 2913 5836 2914 5836 2914 5837 2913 5837 2915 5837 2914 5838 2915 5838 2916 5838 2916 5839 2915 5839 2917 5839 2916 5840 2917 5840 2905 5840 2905 5841 2917 5841 2923 5841 2905 5842 2923 5842 2906 5842 2906 5843 2923 5843 2924 5843 2906 5844 2924 5844 2918 5844 2918 5845 2924 5845 2919 5845 2918 5846 2919 5846 2909 5846 2909 5847 2919 5847 2926 5847 2909 5848 2926 5848 2910 5848 2910 5849 2926 5849 2928 5849 2910 5850 2928 5850 2911 5850 2911 5851 2928 5851 2930 5851 2911 5852 2930 5852 2912 5852 2912 5853 2930 5853 2921 5853 2912 5854 2921 5854 2920 5854 2920 5855 2921 5855 2321 5855 2920 5856 2321 5856 2322 5856 2913 5857 3729 5857 2915 5857 2915 5858 3729 5858 2931 5858 2915 5859 2931 5859 2917 5859 2917 5860 2931 5860 2922 5860 2917 5861 2922 5861 2923 5861 2923 5862 2922 5862 2934 5862 2923 5863 2934 5863 2924 5863 2924 5864 2934 5864 2925 5864 2924 5865 2925 5865 2919 5865 2919 5866 2925 5866 2936 5866 2919 5867 2936 5867 2926 5867 2926 5868 2936 5868 2927 5868 2926 5869 2927 5869 2928 5869 2928 5870 2927 5870 2929 5870 2928 5871 2929 5871 2930 5871 2930 5872 2929 5872 2937 5872 2930 5873 2937 5873 2921 5873 2921 5874 2937 5874 2319 5874 2921 5875 2319 5875 2321 5875 3729 5876 3727 5876 2931 5876 2931 5877 3727 5877 2932 5877 2931 5878 2932 5878 2922 5878 2922 5879 2932 5879 2933 5879 2922 5880 2933 5880 2934 5880 2934 5881 2933 5881 3695 5881 2934 5882 3695 5882 2925 5882 2925 5883 3695 5883 2935 5883 2925 5884 2935 5884 2936 5884 2936 5885 2935 5885 3696 5885 2936 5886 3696 5886 2927 5886 2927 5887 3696 5887 3697 5887 2927 5888 3697 5888 2929 5888 2929 5889 3697 5889 2938 5889 2929 5890 2938 5890 2937 5890 2937 5891 2938 5891 3698 5891 2937 5892 3698 5892 2319 5892 2932 5893 3727 5893 3694 5893 3694 5894 3727 5894 3726 5894 3694 5895 3726 5895 2939 5895 2939 5896 3726 5896 2940 5896 2939 5897 2940 5897 3719 5897 3719 5898 2940 5898 3725 5898 3719 5899 3725 5899 2941 5899 2941 5900 3725 5900 2942 5900 2941 5901 2942 5901 3718 5901 3718 5902 2942 5902 2943 5902 3718 5903 2943 5903 3720 5903 3720 5904 2943 5904 2313 5904 3720 5905 2313 5905 2944 5905 3725 5906 2945 5906 2942 5906 2942 5907 2945 5907 2946 5907 2942 5908 2946 5908 2943 5908 2943 5909 2946 5909 2310 5909 2943 5910 2310 5910 2313 5910 2945 5911 2947 5911 2946 5911 2946 5912 2947 5912 2309 5912 2946 5913 2309 5913 2310 5913 2947 5914 2308 5914 2309 5914 2962 5915 2949 5915 2948 5915 2948 5916 2949 5916 3248 5916 2948 5917 3248 5917 252 5917 252 5918 3248 5918 3255 5918 252 5919 3255 5919 2950 5919 2950 5920 3255 5920 3256 5920 2950 5921 3256 5921 2951 5921 2951 5922 3256 5922 3258 5922 2951 5923 3258 5923 3180 5923 3180 5924 3258 5924 2952 5924 3180 5925 2952 5925 3178 5925 3178 5926 2952 5926 2954 5926 3178 5927 2954 5927 2953 5927 2953 5928 2954 5928 3246 5928 2953 5929 3246 5929 3263 5929 3263 5930 3246 5930 2955 5930 3263 5931 2955 5931 2956 5931 2956 5932 2955 5932 3238 5932 2956 5933 3238 5933 3261 5933 3261 5934 3238 5934 3228 5934 3261 5935 3228 5935 2957 5935 2957 5936 3228 5936 3220 5936 2957 5937 3220 5937 2958 5937 2958 5938 3220 5938 3221 5938 2958 5939 3221 5939 2960 5939 2960 5940 3221 5940 2959 5940 2960 5941 2959 5941 3173 5941 3173 5942 2959 5942 2961 5942 2949 5943 2962 5943 2324 5943 2324 5944 2962 5944 2325 5944 2323 5945 2963 5945 2964 5945 2964 5946 2963 5946 2965 5946 2964 5947 2965 5947 2636 5947 2636 5948 2965 5948 2966 5948 2965 5949 2967 5949 2966 5949 2966 5950 2967 5950 2633 5950 2967 5951 277 5951 2633 5951 2633 5952 277 5952 2968 5952 277 5953 276 5953 2968 5953 2968 5954 276 5954 2632 5954 276 5955 2969 5955 2632 5955 2632 5956 2969 5956 2970 5956 2969 5957 275 5957 2970 5957 2970 5958 275 5958 2630 5958 275 5959 2971 5959 2630 5959 2630 5960 2971 5960 2629 5960 2971 5961 2972 5961 2629 5961 2629 5962 2972 5962 2627 5962 2627 5963 2972 5963 2973 5963 2973 5964 2972 5964 273 5964 2973 5965 273 5965 2974 5965 2974 5966 273 5966 2975 5966 2974 5967 2975 5967 2976 5967 2976 5968 2975 5968 2978 5968 2976 5969 2978 5969 2977 5969 2977 5970 2978 5970 272 5970 2977 5971 272 5971 2626 5971 2626 5972 272 5972 2979 5972 2626 5973 2979 5973 2625 5973 2625 5974 2979 5974 2980 5974 2625 5975 2980 5975 2981 5975 2981 5976 2980 5976 271 5976 2981 5977 271 5977 2982 5977 2982 5978 271 5978 2984 5978 2982 5979 2984 5979 2983 5979 2983 5980 2984 5980 2621 5980 2984 5981 270 5981 2621 5981 2621 5982 270 5982 2620 5982 270 5983 269 5983 2620 5983 2620 5984 269 5984 2619 5984 269 5985 268 5985 2619 5985 2619 5986 268 5986 2618 5986 268 5987 2985 5987 2618 5987 2618 5988 2985 5988 2986 5988 2985 5989 2987 5989 2986 5989 2986 5990 2987 5990 2615 5990 2987 5991 2988 5991 2615 5991 2615 5992 2988 5992 2613 5992 2988 5993 216 5993 2613 5993 2613 5994 216 5994 2611 5994 2611 5995 216 5995 2610 5995 2610 5996 216 5996 2990 5996 2610 5997 2990 5997 2989 5997 2989 5998 2990 5998 2992 5998 2989 5999 2992 5999 2991 5999 2991 6000 2992 6000 214 6000 2991 6001 214 6001 2607 6001 2607 6002 214 6002 213 6002 2607 6003 213 6003 2605 6003 2605 6004 213 6004 211 6004 2605 6005 211 6005 2993 6005 2993 6006 211 6006 210 6006 2993 6007 210 6007 2603 6007 2603 6008 210 6008 209 6008 2603 6009 209 6009 2994 6009 2994 6010 209 6010 207 6010 2994 6011 207 6011 2601 6011 2601 6012 207 6012 2600 6012 207 6013 2995 6013 2600 6013 2600 6014 2995 6014 2996 6014 2995 6015 2998 6015 2996 6015 2996 6016 2998 6016 2997 6016 2998 6017 204 6017 2997 6017 2997 6018 204 6018 2597 6018 204 6019 203 6019 2597 6019 2597 6020 203 6020 2999 6020 203 6021 3000 6021 2999 6021 2999 6022 3000 6022 2596 6022 3000 6023 200 6023 2596 6023 2596 6024 200 6024 2595 6024 200 6025 2593 6025 2595 6025 3001 6026 195 6026 2591 6026 2591 6027 195 6027 3002 6027 2591 6028 3002 6028 2589 6028 2589 6029 3002 6029 3016 6029 2589 6030 3016 6030 2587 6030 2587 6031 3016 6031 3018 6031 2587 6032 3018 6032 3003 6032 3003 6033 3018 6033 3004 6033 3003 6034 3004 6034 2584 6034 2584 6035 3004 6035 3005 6035 2584 6036 3005 6036 3007 6036 3007 6037 3005 6037 3006 6037 3007 6038 3006 6038 3008 6038 3008 6039 3006 6039 3020 6039 3008 6040 3020 6040 3009 6040 3009 6041 3020 6041 3010 6041 3009 6042 3010 6042 3011 6042 3011 6043 3010 6043 3012 6043 3011 6044 3012 6044 2580 6044 2580 6045 3012 6045 3023 6045 2580 6046 3023 6046 2579 6046 2579 6047 3023 6047 3013 6047 2579 6048 3013 6048 2578 6048 2578 6049 3013 6049 2577 6049 195 6050 3014 6050 3002 6050 3002 6051 3014 6051 3015 6051 3002 6052 3015 6052 3016 6052 3016 6053 3015 6053 3017 6053 3016 6054 3017 6054 3018 6054 3018 6055 3017 6055 3026 6055 3018 6056 3026 6056 3004 6056 3004 6057 3026 6057 3027 6057 3004 6058 3027 6058 3005 6058 3005 6059 3027 6059 3028 6059 3005 6060 3028 6060 3006 6060 3006 6061 3028 6061 3019 6061 3006 6062 3019 6062 3020 6062 3020 6063 3019 6063 3021 6063 3020 6064 3021 6064 3010 6064 3010 6065 3021 6065 3032 6065 3010 6066 3032 6066 3012 6066 3012 6067 3032 6067 3022 6067 3012 6068 3022 6068 3023 6068 3023 6069 3022 6069 3035 6069 3023 6070 3035 6070 3013 6070 3013 6071 3035 6071 3024 6071 3013 6072 3024 6072 2577 6072 2577 6073 3024 6073 2397 6073 3014 6074 193 6074 3015 6074 3015 6075 193 6075 3037 6075 3015 6076 3037 6076 3017 6076 3017 6077 3037 6077 3038 6077 3017 6078 3038 6078 3026 6078 3026 6079 3038 6079 3025 6079 3026 6080 3025 6080 3027 6080 3027 6081 3025 6081 3043 6081 3027 6082 3043 6082 3028 6082 3028 6083 3043 6083 3029 6083 3028 6084 3029 6084 3019 6084 3019 6085 3029 6085 3030 6085 3019 6086 3030 6086 3021 6086 3021 6087 3030 6087 3031 6087 3021 6088 3031 6088 3032 6088 3032 6089 3031 6089 3033 6089 3032 6090 3033 6090 3022 6090 3022 6091 3033 6091 3034 6091 3022 6092 3034 6092 3035 6092 3035 6093 3034 6093 3036 6093 3035 6094 3036 6094 3024 6094 3024 6095 3036 6095 2395 6095 3024 6096 2395 6096 2397 6096 193 6097 3047 6097 3037 6097 3037 6098 3047 6098 3039 6098 3037 6099 3039 6099 3038 6099 3038 6100 3039 6100 3040 6100 3038 6101 3040 6101 3025 6101 3025 6102 3040 6102 3041 6102 3025 6103 3041 6103 3043 6103 3043 6104 3041 6104 3042 6104 3043 6105 3042 6105 3029 6105 3029 6106 3042 6106 3044 6106 3029 6107 3044 6107 3030 6107 3030 6108 3044 6108 3051 6108 3030 6109 3051 6109 3031 6109 3031 6110 3051 6110 3045 6110 3031 6111 3045 6111 3033 6111 3033 6112 3045 6112 3046 6112 3033 6113 3046 6113 3034 6113 3034 6114 3046 6114 3053 6114 3034 6115 3053 6115 3036 6115 3036 6116 3053 6116 2394 6116 3036 6117 2394 6117 2395 6117 3047 6118 190 6118 3039 6118 3039 6119 190 6119 3056 6119 3039 6120 3056 6120 3040 6120 3040 6121 3056 6121 3058 6121 3040 6122 3058 6122 3041 6122 3041 6123 3058 6123 3048 6123 3041 6124 3048 6124 3042 6124 3042 6125 3048 6125 3049 6125 3042 6126 3049 6126 3044 6126 3044 6127 3049 6127 3050 6127 3044 6128 3050 6128 3051 6128 3051 6129 3050 6129 3061 6129 3051 6130 3061 6130 3045 6130 3045 6131 3061 6131 3052 6131 3045 6132 3052 6132 3046 6132 3046 6133 3052 6133 3054 6133 3046 6134 3054 6134 3053 6134 3053 6135 3054 6135 3063 6135 3053 6136 3063 6136 2394 6136 190 6137 3055 6137 3056 6137 3056 6138 3055 6138 3057 6138 3056 6139 3057 6139 3058 6139 3058 6140 3057 6140 3469 6140 3058 6141 3469 6141 3048 6141 3048 6142 3469 6142 3059 6142 3048 6143 3059 6143 3049 6143 3049 6144 3059 6144 3060 6144 3049 6145 3060 6145 3050 6145 3050 6146 3060 6146 3459 6146 3050 6147 3459 6147 3061 6147 3061 6148 3459 6148 3454 6148 3061 6149 3454 6149 3052 6149 3052 6150 3454 6150 3443 6150 3052 6151 3443 6151 3054 6151 3054 6152 3443 6152 3062 6152 3054 6153 3062 6153 3063 6153 3057 6154 3055 6154 3470 6154 3470 6155 3055 6155 218 6155 3470 6156 218 6156 3064 6156 3064 6157 218 6157 219 6157 3064 6158 219 6158 3467 6158 3467 6159 219 6159 221 6159 3467 6160 221 6160 3466 6160 3466 6161 221 6161 282 6161 3466 6162 282 6162 3065 6162 3065 6163 282 6163 3066 6163 3065 6164 3066 6164 3451 6164 3451 6165 3066 6165 3067 6165 3451 6166 3067 6166 3453 6166 3453 6167 3067 6167 3068 6167 2378 6168 264 6168 2376 6168 2376 6169 264 6169 3069 6169 2376 6170 3069 6170 2375 6170 2375 6171 3069 6171 3078 6171 2375 6172 3078 6172 2374 6172 2374 6173 3078 6173 3080 6173 2374 6174 3080 6174 2371 6174 2371 6175 3080 6175 3082 6175 2371 6176 3082 6176 3070 6176 3070 6177 3082 6177 3083 6177 3070 6178 3083 6178 2369 6178 2369 6179 3083 6179 3084 6179 2369 6180 3084 6180 2368 6180 2368 6181 3084 6181 3086 6181 2368 6182 3086 6182 2367 6182 2367 6183 3086 6183 3071 6183 2367 6184 3071 6184 3072 6184 3072 6185 3071 6185 3073 6185 3072 6186 3073 6186 2364 6186 2364 6187 3073 6187 3074 6187 2364 6188 3074 6188 2363 6188 2363 6189 3074 6189 3076 6189 2363 6190 3076 6190 3075 6190 3075 6191 3076 6191 2361 6191 264 6192 263 6192 3069 6192 3069 6193 263 6193 3077 6193 3069 6194 3077 6194 3078 6194 3078 6195 3077 6195 3079 6195 3078 6196 3079 6196 3080 6196 3080 6197 3079 6197 3092 6197 3080 6198 3092 6198 3082 6198 3082 6199 3092 6199 3081 6199 3082 6200 3081 6200 3083 6200 3083 6201 3081 6201 3094 6201 3083 6202 3094 6202 3084 6202 3084 6203 3094 6203 3085 6203 3084 6204 3085 6204 3086 6204 3086 6205 3085 6205 3097 6205 3086 6206 3097 6206 3071 6206 3071 6207 3097 6207 3087 6207 3071 6208 3087 6208 3073 6208 3073 6209 3087 6209 3100 6209 3073 6210 3100 6210 3074 6210 3074 6211 3100 6211 3088 6211 3074 6212 3088 6212 3076 6212 3076 6213 3088 6213 3089 6213 3076 6214 3089 6214 2361 6214 2361 6215 3089 6215 2360 6215 263 6216 3090 6216 3077 6216 3077 6217 3090 6217 3091 6217 3077 6218 3091 6218 3079 6218 3079 6219 3091 6219 3101 6219 3079 6220 3101 6220 3092 6220 3092 6221 3101 6221 3093 6221 3092 6222 3093 6222 3081 6222 3081 6223 3093 6223 3095 6223 3081 6224 3095 6224 3094 6224 3094 6225 3095 6225 3096 6225 3094 6226 3096 6226 3085 6226 3085 6227 3096 6227 3105 6227 3085 6228 3105 6228 3097 6228 3097 6229 3105 6229 3108 6229 3097 6230 3108 6230 3087 6230 3087 6231 3108 6231 3098 6231 3087 6232 3098 6232 3100 6232 3100 6233 3098 6233 3099 6233 3100 6234 3099 6234 3088 6234 3088 6235 3099 6235 3111 6235 3088 6236 3111 6236 3089 6236 3089 6237 3111 6237 3113 6237 3089 6238 3113 6238 2360 6238 2360 6239 3113 6239 2359 6239 3090 6240 262 6240 3091 6240 3091 6241 262 6241 3115 6241 3091 6242 3115 6242 3101 6242 3101 6243 3115 6243 3102 6243 3101 6244 3102 6244 3093 6244 3093 6245 3102 6245 3103 6245 3093 6246 3103 6246 3095 6246 3095 6247 3103 6247 3104 6247 3095 6248 3104 6248 3096 6248 3096 6249 3104 6249 3106 6249 3096 6250 3106 6250 3105 6250 3105 6251 3106 6251 3107 6251 3105 6252 3107 6252 3108 6252 3108 6253 3107 6253 3118 6253 3108 6254 3118 6254 3098 6254 3098 6255 3118 6255 3109 6255 3098 6256 3109 6256 3099 6256 3099 6257 3109 6257 3110 6257 3099 6258 3110 6258 3111 6258 3111 6259 3110 6259 3112 6259 3111 6260 3112 6260 3113 6260 3113 6261 3112 6261 3114 6261 3113 6262 3114 6262 2359 6262 2359 6263 3114 6263 3122 6263 262 6264 3116 6264 3115 6264 3115 6265 3116 6265 3124 6265 3115 6266 3124 6266 3102 6266 3102 6267 3124 6267 3125 6267 3102 6268 3125 6268 3103 6268 3103 6269 3125 6269 3126 6269 3103 6270 3126 6270 3104 6270 3104 6271 3126 6271 3117 6271 3104 6272 3117 6272 3106 6272 3106 6273 3117 6273 3128 6273 3106 6274 3128 6274 3107 6274 3107 6275 3128 6275 3130 6275 3107 6276 3130 6276 3118 6276 3118 6277 3130 6277 3119 6277 3118 6278 3119 6278 3109 6278 3109 6279 3119 6279 3120 6279 3109 6280 3120 6280 3110 6280 3110 6281 3120 6281 3131 6281 3110 6282 3131 6282 3112 6282 3112 6283 3131 6283 3121 6283 3112 6284 3121 6284 3114 6284 3114 6285 3121 6285 2358 6285 3114 6286 2358 6286 3122 6286 3116 6287 3123 6287 3124 6287 3124 6288 3123 6288 3134 6288 3124 6289 3134 6289 3125 6289 3125 6290 3134 6290 3135 6290 3125 6291 3135 6291 3126 6291 3126 6292 3135 6292 3127 6292 3126 6293 3127 6293 3117 6293 3117 6294 3127 6294 3138 6294 3117 6295 3138 6295 3128 6295 3128 6296 3138 6296 3129 6296 3128 6297 3129 6297 3130 6297 3130 6298 3129 6298 3140 6298 3130 6299 3140 6299 3119 6299 3119 6300 3140 6300 3141 6300 3119 6301 3141 6301 3120 6301 3120 6302 3141 6302 3142 6302 3120 6303 3142 6303 3131 6303 3131 6304 3142 6304 3132 6304 3131 6305 3132 6305 3121 6305 3121 6306 3132 6306 3133 6306 3121 6307 3133 6307 2358 6307 3123 6308 261 6308 3134 6308 3134 6309 261 6309 3146 6309 3134 6310 3146 6310 3135 6310 3135 6311 3146 6311 3136 6311 3135 6312 3136 6312 3127 6312 3127 6313 3136 6313 3137 6313 3127 6314 3137 6314 3138 6314 3138 6315 3137 6315 3149 6315 3138 6316 3149 6316 3129 6316 3129 6317 3149 6317 3139 6317 3129 6318 3139 6318 3140 6318 3140 6319 3139 6319 3152 6319 3140 6320 3152 6320 3141 6320 3141 6321 3152 6321 3153 6321 3141 6322 3153 6322 3142 6322 3142 6323 3153 6323 3143 6323 3142 6324 3143 6324 3132 6324 3132 6325 3143 6325 3144 6325 3132 6326 3144 6326 3133 6326 261 6327 3145 6327 3146 6327 3146 6328 3145 6328 3156 6328 3146 6329 3156 6329 3136 6329 3136 6330 3156 6330 3147 6330 3136 6331 3147 6331 3137 6331 3137 6332 3147 6332 3148 6332 3137 6333 3148 6333 3149 6333 3149 6334 3148 6334 3150 6334 3149 6335 3150 6335 3139 6335 3139 6336 3150 6336 3151 6336 3139 6337 3151 6337 3152 6337 3152 6338 3151 6338 3350 6338 3152 6339 3350 6339 3153 6339 3153 6340 3350 6340 3154 6340 3153 6341 3154 6341 3143 6341 3143 6342 3154 6342 3155 6342 3143 6343 3155 6343 3144 6343 3156 6344 3145 6344 3157 6344 3157 6345 3145 6345 3158 6345 3157 6346 3158 6346 3365 6346 3365 6347 3158 6347 3160 6347 3365 6348 3160 6348 3159 6348 3159 6349 3160 6349 3161 6349 3159 6350 3161 6350 3162 6350 3162 6351 3161 6351 3163 6351 3162 6352 3163 6352 3164 6352 3164 6353 3163 6353 259 6353 3164 6354 259 6354 3362 6354 3362 6355 259 6355 258 6355 3362 6356 258 6356 3165 6356 3165 6357 258 6357 2348 6357 256 6358 255 6358 3166 6358 3166 6359 255 6359 3295 6359 3166 6360 3295 6360 3167 6360 3167 6361 3295 6361 3289 6361 3167 6362 3289 6362 3168 6362 3168 6363 3289 6363 3169 6363 3168 6364 3169 6364 2335 6364 2335 6365 3169 6365 3283 6365 2335 6366 3283 6366 2333 6366 2333 6367 3283 6367 3279 6367 2333 6368 3279 6368 2331 6368 2331 6369 3279 6369 3171 6369 2331 6370 3171 6370 3170 6370 3170 6371 3171 6371 3172 6371 3170 6372 3172 6372 2328 6372 2328 6373 3172 6373 2960 6373 2328 6374 2960 6374 3173 6374 3295 6375 255 6375 3294 6375 3294 6376 255 6376 3174 6376 3294 6377 3174 6377 3293 6377 3293 6378 3174 6378 3175 6378 3293 6379 3175 6379 3291 6379 3291 6380 3175 6380 254 6380 3291 6381 254 6381 3290 6381 3290 6382 254 6382 3177 6382 3290 6383 3177 6383 3176 6383 3176 6384 3177 6384 253 6384 3176 6385 253 6385 3265 6385 3265 6386 253 6386 3179 6386 3265 6387 3179 6387 3178 6387 3178 6388 3179 6388 3180 6388 3589 6389 3183 6389 3587 6389 3587 6390 3183 6390 3182 6390 3587 6391 3182 6391 3181 6391 3181 6392 3182 6392 3185 6392 3181 6393 3185 6393 3585 6393 3585 6394 3185 6394 2811 6394 3585 6395 2811 6395 2810 6395 3183 6396 3184 6396 3182 6396 3182 6397 3184 6397 3189 6397 3182 6398 3189 6398 3185 6398 3185 6399 3189 6399 2812 6399 3185 6400 2812 6400 2811 6400 3589 6401 3590 6401 3183 6401 3183 6402 3590 6402 3591 6402 3183 6403 3591 6403 3184 6403 3184 6404 3591 6404 3186 6404 3184 6405 3186 6405 3187 6405 3187 6406 3186 6406 3188 6406 3187 6407 3188 6407 3190 6407 3190 6408 3188 6408 2815 6408 3184 6409 3187 6409 3189 6409 3189 6410 3187 6410 2814 6410 3189 6411 2814 6411 2812 6411 3187 6412 3190 6412 2814 6412 2782 6413 2616 6413 3191 6413 3191 6414 2616 6414 2614 6414 3191 6415 2614 6415 3575 6415 3575 6416 2614 6416 2612 6416 3575 6417 2612 6417 3193 6417 3193 6418 2612 6418 3192 6418 3193 6419 3192 6419 2765 6419 2616 6420 2782 6420 2617 6420 3198 6421 3197 6421 2307 6421 2307 6422 3197 6422 3196 6422 2307 6423 3196 6423 3194 6423 3194 6424 3196 6424 2311 6424 3197 6425 3203 6425 3196 6425 3196 6426 3203 6426 3195 6426 3196 6427 3195 6427 2311 6427 2311 6428 3195 6428 2312 6428 3197 6429 3198 6429 3199 6429 3199 6430 3198 6430 3201 6430 3199 6431 3201 6431 3200 6431 3200 6432 3201 6432 3202 6432 3200 6433 3202 6433 2327 6433 3203 6434 3208 6434 3195 6434 3195 6435 3208 6435 3204 6435 3195 6436 3204 6436 2312 6436 2312 6437 3204 6437 2314 6437 3203 6438 3197 6438 3205 6438 3205 6439 3197 6439 3199 6439 3205 6440 3199 6440 3209 6440 3209 6441 3199 6441 3200 6441 3209 6442 3200 6442 3210 6442 3210 6443 3200 6443 2327 6443 3210 6444 2327 6444 2961 6444 3208 6445 3206 6445 3204 6445 3204 6446 3206 6446 3207 6446 3204 6447 3207 6447 2314 6447 2314 6448 3207 6448 2315 6448 3208 6449 3203 6449 3213 6449 3213 6450 3203 6450 3205 6450 3213 6451 3205 6451 3215 6451 3215 6452 3205 6452 3209 6452 3215 6453 3209 6453 3211 6453 3211 6454 3209 6454 3210 6454 3211 6455 3210 6455 2959 6455 2959 6456 3210 6456 2961 6456 3206 6457 3224 6457 3207 6457 3207 6458 3224 6458 3217 6458 3207 6459 3217 6459 2315 6459 2315 6460 3217 6460 2316 6460 3206 6461 3208 6461 3212 6461 3212 6462 3208 6462 3213 6462 3212 6463 3213 6463 3214 6463 3214 6464 3213 6464 3215 6464 3214 6465 3215 6465 3216 6465 3216 6466 3215 6466 3211 6466 3216 6467 3211 6467 3221 6467 3221 6468 3211 6468 2959 6468 3224 6469 3222 6469 3217 6469 3217 6470 3222 6470 3218 6470 3217 6471 3218 6471 2316 6471 2316 6472 3218 6472 2317 6472 3224 6473 3206 6473 3226 6473 3226 6474 3206 6474 3212 6474 3226 6475 3212 6475 3227 6475 3227 6476 3212 6476 3214 6476 3227 6477 3214 6477 3219 6477 3219 6478 3214 6478 3216 6478 3219 6479 3216 6479 3220 6479 3220 6480 3216 6480 3221 6480 3222 6481 3229 6481 3218 6481 3218 6482 3229 6482 3223 6482 3218 6483 3223 6483 2317 6483 2317 6484 3223 6484 3230 6484 3222 6485 3224 6485 3232 6485 3232 6486 3224 6486 3226 6486 3232 6487 3226 6487 3225 6487 3225 6488 3226 6488 3227 6488 3225 6489 3227 6489 3233 6489 3233 6490 3227 6490 3219 6490 3233 6491 3219 6491 3228 6491 3228 6492 3219 6492 3220 6492 3229 6493 3241 6493 3223 6493 3223 6494 3241 6494 3231 6494 3223 6495 3231 6495 3230 6495 3230 6496 3231 6496 2320 6496 3229 6497 3222 6497 3235 6497 3235 6498 3222 6498 3232 6498 3235 6499 3232 6499 3236 6499 3236 6500 3232 6500 3225 6500 3236 6501 3225 6501 3237 6501 3237 6502 3225 6502 3233 6502 3237 6503 3233 6503 3238 6503 3238 6504 3233 6504 3228 6504 3241 6505 3239 6505 3231 6505 3231 6506 3239 6506 3234 6506 3231 6507 3234 6507 2320 6507 2320 6508 3234 6508 3240 6508 3241 6509 3229 6509 3243 6509 3243 6510 3229 6510 3235 6510 3243 6511 3235 6511 3245 6511 3245 6512 3235 6512 3236 6512 3245 6513 3236 6513 3247 6513 3247 6514 3236 6514 3237 6514 3247 6515 3237 6515 2955 6515 2955 6516 3237 6516 3238 6516 3239 6517 3254 6517 3234 6517 3234 6518 3254 6518 3249 6518 3234 6519 3249 6519 3240 6519 3240 6520 3249 6520 3250 6520 3239 6521 3241 6521 3242 6521 3242 6522 3241 6522 3243 6522 3242 6523 3243 6523 3244 6523 3244 6524 3243 6524 3245 6524 3244 6525 3245 6525 3253 6525 3253 6526 3245 6526 3247 6526 3253 6527 3247 6527 3246 6527 3246 6528 3247 6528 2955 6528 3254 6529 3248 6529 3249 6529 3249 6530 3248 6530 2949 6530 3249 6531 2949 6531 3250 6531 3250 6532 2949 6532 2324 6532 3254 6533 3239 6533 3257 6533 3257 6534 3239 6534 3242 6534 3257 6535 3242 6535 3251 6535 3251 6536 3242 6536 3244 6536 3251 6537 3244 6537 3252 6537 3252 6538 3244 6538 3253 6538 3252 6539 3253 6539 2954 6539 2954 6540 3253 6540 3246 6540 3248 6541 3254 6541 3255 6541 3255 6542 3254 6542 3257 6542 3255 6543 3257 6543 3256 6543 3256 6544 3257 6544 3251 6544 3256 6545 3251 6545 3258 6545 3258 6546 3251 6546 3252 6546 3258 6547 3252 6547 2952 6547 2952 6548 3252 6548 2954 6548 2960 6549 3172 6549 2958 6549 2958 6550 3172 6550 3259 6550 2958 6551 3259 6551 2957 6551 2957 6552 3259 6552 3260 6552 2957 6553 3260 6553 3261 6553 3261 6554 3260 6554 3262 6554 3261 6555 3262 6555 2956 6555 2956 6556 3262 6556 3284 6556 2956 6557 3284 6557 3263 6557 3263 6558 3284 6558 3264 6558 3263 6559 3264 6559 2953 6559 2953 6560 3264 6560 3265 6560 2953 6561 3265 6561 3178 6561 3266 6562 3267 6562 3268 6562 3268 6563 3267 6563 3269 6563 3268 6564 3269 6564 2424 6564 2424 6565 3269 6565 3270 6565 2424 6566 3270 6566 2425 6566 2425 6567 3270 6567 3271 6567 2425 6568 3271 6568 3272 6568 3272 6569 3271 6569 3297 6569 3272 6570 3297 6570 3273 6570 3273 6571 3297 6571 3298 6571 3273 6572 3298 6572 2428 6572 2428 6573 3298 6573 3299 6573 2428 6574 3299 6574 2429 6574 2429 6575 3299 6575 3274 6575 2429 6576 3274 6576 2430 6576 2430 6577 3274 6577 3275 6577 2430 6578 3275 6578 2432 6578 2432 6579 3275 6579 3276 6579 2432 6580 3276 6580 2434 6580 2434 6581 3276 6581 3302 6581 2434 6582 3302 6582 2341 6582 2341 6583 3302 6583 3303 6583 3259 6584 3172 6584 3171 6584 3260 6585 3259 6585 3278 6585 3278 6586 3259 6586 3171 6586 3278 6587 3171 6587 3279 6587 3262 6588 3260 6588 3277 6588 3277 6589 3260 6589 3278 6589 3277 6590 3278 6590 3281 6590 3281 6591 3278 6591 3279 6591 3281 6592 3279 6592 3283 6592 3284 6593 3262 6593 3286 6593 3286 6594 3262 6594 3277 6594 3286 6595 3277 6595 3280 6595 3280 6596 3277 6596 3281 6596 3280 6597 3281 6597 3282 6597 3282 6598 3281 6598 3283 6598 3282 6599 3283 6599 3169 6599 3264 6600 3284 6600 3285 6600 3285 6601 3284 6601 3286 6601 3285 6602 3286 6602 3287 6602 3287 6603 3286 6603 3280 6603 3287 6604 3280 6604 3292 6604 3292 6605 3280 6605 3282 6605 3292 6606 3282 6606 3288 6606 3288 6607 3282 6607 3169 6607 3288 6608 3169 6608 3289 6608 3265 6609 3264 6609 3176 6609 3176 6610 3264 6610 3285 6610 3176 6611 3285 6611 3290 6611 3290 6612 3285 6612 3287 6612 3290 6613 3287 6613 3291 6613 3291 6614 3287 6614 3292 6614 3291 6615 3292 6615 3293 6615 3293 6616 3292 6616 3288 6616 3293 6617 3288 6617 3294 6617 3294 6618 3288 6618 3289 6618 3294 6619 3289 6619 3295 6619 3267 6620 2435 6620 3269 6620 3269 6621 2435 6621 3304 6621 3269 6622 3304 6622 3270 6622 3270 6623 3304 6623 3296 6623 3270 6624 3296 6624 3271 6624 3271 6625 3296 6625 3305 6625 3271 6626 3305 6626 3297 6626 3297 6627 3305 6627 3307 6627 3297 6628 3307 6628 3298 6628 3298 6629 3307 6629 3308 6629 3298 6630 3308 6630 3299 6630 3299 6631 3308 6631 3310 6631 3299 6632 3310 6632 3274 6632 3274 6633 3310 6633 3311 6633 3274 6634 3311 6634 3275 6634 3275 6635 3311 6635 3300 6635 3275 6636 3300 6636 3276 6636 3276 6637 3300 6637 3301 6637 3276 6638 3301 6638 3302 6638 3302 6639 3301 6639 3314 6639 3302 6640 3314 6640 3303 6640 3303 6641 3314 6641 2344 6641 2435 6642 2436 6642 3304 6642 3304 6643 2436 6643 3316 6643 3304 6644 3316 6644 3296 6644 3296 6645 3316 6645 3318 6645 3296 6646 3318 6646 3305 6646 3305 6647 3318 6647 3306 6647 3305 6648 3306 6648 3307 6648 3307 6649 3306 6649 3320 6649 3307 6650 3320 6650 3308 6650 3308 6651 3320 6651 3309 6651 3308 6652 3309 6652 3310 6652 3310 6653 3309 6653 3325 6653 3310 6654 3325 6654 3311 6654 3311 6655 3325 6655 3312 6655 3311 6656 3312 6656 3300 6656 3300 6657 3312 6657 3313 6657 3300 6658 3313 6658 3301 6658 3301 6659 3313 6659 3315 6659 3301 6660 3315 6660 3314 6660 3314 6661 3315 6661 3330 6661 3314 6662 3330 6662 2344 6662 2344 6663 3330 6663 2346 6663 2437 6664 3317 6664 3316 6664 3316 6665 3317 6665 3318 6665 3306 6666 3318 6666 3319 6666 3319 6667 3318 6667 3317 6667 2436 6668 2437 6668 3316 6668 3320 6669 3306 6669 2440 6669 2440 6670 3306 6670 3319 6670 3309 6671 3320 6671 2441 6671 2441 6672 3320 6672 2440 6672 2468 6673 3321 6673 3322 6673 3322 6674 3321 6674 3331 6674 3322 6675 3331 6675 2471 6675 2471 6676 3331 6676 3332 6676 2471 6677 3332 6677 2473 6677 2473 6678 3332 6678 3333 6678 2473 6679 3333 6679 2475 6679 2475 6680 3333 6680 3334 6680 2475 6681 3334 6681 2476 6681 2476 6682 3334 6682 3335 6682 2476 6683 3335 6683 3323 6683 3323 6684 3335 6684 3336 6684 3323 6685 3336 6685 2352 6685 3309 6686 2441 6686 3324 6686 3309 6687 3324 6687 3325 6687 3325 6688 3324 6688 3326 6688 3325 6689 3326 6689 3312 6689 3312 6690 3326 6690 3327 6690 3312 6691 3327 6691 3313 6691 3313 6692 3327 6692 3328 6692 3313 6693 3328 6693 3315 6693 3315 6694 3328 6694 3329 6694 3315 6695 3329 6695 3330 6695 3330 6696 3329 6696 2448 6696 3330 6697 2448 6697 2346 6697 2346 6698 2448 6698 2449 6698 3321 6699 2479 6699 3331 6699 3331 6700 2479 6700 3337 6700 3331 6701 3337 6701 3332 6701 3332 6702 3337 6702 3338 6702 3332 6703 3338 6703 3333 6703 3333 6704 3338 6704 3340 6704 3333 6705 3340 6705 3334 6705 3334 6706 3340 6706 3342 6706 3334 6707 3342 6707 3335 6707 3335 6708 3342 6708 2353 6708 3335 6709 2353 6709 3336 6709 2479 6710 3344 6710 3337 6710 3337 6711 3344 6711 3345 6711 3337 6712 3345 6712 3338 6712 3338 6713 3345 6713 3339 6713 3338 6714 3339 6714 3340 6714 3340 6715 3339 6715 3341 6715 3340 6716 3341 6716 3342 6716 3342 6717 3341 6717 2355 6717 3342 6718 2355 6718 2353 6718 2480 6719 3343 6719 3345 6719 3345 6720 3343 6720 3339 6720 3341 6721 3339 6721 2482 6721 2482 6722 3339 6722 3343 6722 3344 6723 2480 6723 3345 6723 2355 6724 3341 6724 2356 6724 2356 6725 3341 6725 2482 6725 2354 6726 3155 6726 3154 6726 3348 6727 2354 6727 3349 6727 3349 6728 2354 6728 3154 6728 3349 6729 3154 6729 3350 6729 3346 6730 3348 6730 3347 6730 3347 6731 3348 6731 3349 6731 3347 6732 3349 6732 3351 6732 3351 6733 3349 6733 3350 6733 3351 6734 3350 6734 3151 6734 2351 6735 3346 6735 3354 6735 3354 6736 3346 6736 3347 6736 3354 6737 3347 6737 3356 6737 3356 6738 3347 6738 3351 6738 3356 6739 3351 6739 3352 6739 3352 6740 3351 6740 3151 6740 3352 6741 3151 6741 3150 6741 2349 6742 2351 6742 3353 6742 3353 6743 2351 6743 3354 6743 3353 6744 3354 6744 3355 6744 3355 6745 3354 6745 3356 6745 3355 6746 3356 6746 3357 6746 3357 6747 3356 6747 3352 6747 3357 6748 3352 6748 3358 6748 3358 6749 3352 6749 3150 6749 3358 6750 3150 6750 3148 6750 3360 6751 2349 6751 3361 6751 3361 6752 2349 6752 3353 6752 3361 6753 3353 6753 3363 6753 3363 6754 3353 6754 3355 6754 3363 6755 3355 6755 3364 6755 3364 6756 3355 6756 3357 6756 3364 6757 3357 6757 3359 6757 3359 6758 3357 6758 3358 6758 3359 6759 3358 6759 3366 6759 3366 6760 3358 6760 3148 6760 3366 6761 3148 6761 3147 6761 3165 6762 3360 6762 3362 6762 3362 6763 3360 6763 3361 6763 3362 6764 3361 6764 3164 6764 3164 6765 3361 6765 3363 6765 3164 6766 3363 6766 3162 6766 3162 6767 3363 6767 3364 6767 3162 6768 3364 6768 3159 6768 3159 6769 3364 6769 3359 6769 3159 6770 3359 6770 3365 6770 3365 6771 3359 6771 3366 6771 3365 6772 3366 6772 3157 6772 3157 6773 3366 6773 3147 6773 3157 6774 3147 6774 3156 6774 2504 6775 3367 6775 2505 6775 2505 6776 3367 6776 3379 6776 2505 6777 3379 6777 2508 6777 2508 6778 3379 6778 3368 6778 2508 6779 3368 6779 3369 6779 3369 6780 3368 6780 3380 6780 3369 6781 3380 6781 2509 6781 2509 6782 3380 6782 3370 6782 2509 6783 3370 6783 3371 6783 3371 6784 3370 6784 3372 6784 3371 6785 3372 6785 2511 6785 2511 6786 3372 6786 3383 6786 2511 6787 3383 6787 2512 6787 2512 6788 3383 6788 3384 6788 2512 6789 3384 6789 3373 6789 3373 6790 3384 6790 3374 6790 3373 6791 3374 6791 3375 6791 3375 6792 3374 6792 3376 6792 3375 6793 3376 6793 3377 6793 3377 6794 3376 6794 3386 6794 3377 6795 3386 6795 3378 6795 3378 6796 3386 6796 2382 6796 3367 6797 3387 6797 3379 6797 3379 6798 3387 6798 3389 6798 3379 6799 3389 6799 3368 6799 3368 6800 3389 6800 3390 6800 3368 6801 3390 6801 3380 6801 3380 6802 3390 6802 3381 6802 3380 6803 3381 6803 3370 6803 3370 6804 3381 6804 3382 6804 3370 6805 3382 6805 3372 6805 3372 6806 3382 6806 3393 6806 3372 6807 3393 6807 3383 6807 3383 6808 3393 6808 3394 6808 3383 6809 3394 6809 3384 6809 3384 6810 3394 6810 3396 6810 3384 6811 3396 6811 3374 6811 3374 6812 3396 6812 3385 6812 3374 6813 3385 6813 3376 6813 3376 6814 3385 6814 3397 6814 3376 6815 3397 6815 3386 6815 3386 6816 3397 6816 3398 6816 3386 6817 3398 6817 2382 6817 2382 6818 3398 6818 3399 6818 3387 6819 3388 6819 3389 6819 3389 6820 3388 6820 3402 6820 3389 6821 3402 6821 3390 6821 3390 6822 3402 6822 3391 6822 3390 6823 3391 6823 3381 6823 3381 6824 3391 6824 3392 6824 3381 6825 3392 6825 3382 6825 3382 6826 3392 6826 3406 6826 3382 6827 3406 6827 3393 6827 3393 6828 3406 6828 3405 6828 3393 6829 3405 6829 3394 6829 3394 6830 3405 6830 3395 6830 3394 6831 3395 6831 3396 6831 3396 6832 3395 6832 3413 6832 3396 6833 3413 6833 3385 6833 3385 6834 3413 6834 3415 6834 3385 6835 3415 6835 3397 6835 3397 6836 3415 6836 3417 6836 3397 6837 3417 6837 3398 6837 3398 6838 3417 6838 3400 6838 3398 6839 3400 6839 3399 6839 3399 6840 3400 6840 3418 6840 3401 6841 2515 6841 3402 6841 3402 6842 2515 6842 3391 6842 3392 6843 3391 6843 3403 6843 3403 6844 3391 6844 2515 6844 3388 6845 3401 6845 3402 6845 3406 6846 3392 6846 3404 6846 3404 6847 3392 6847 3403 6847 3405 6848 3406 6848 3407 6848 3407 6849 3406 6849 3404 6849 2548 6850 2559 6850 2549 6850 2549 6851 2559 6851 3419 6851 2549 6852 3419 6852 2550 6852 2550 6853 3419 6853 3421 6853 2550 6854 3421 6854 3408 6854 3408 6855 3421 6855 3422 6855 3408 6856 3422 6856 2553 6856 2553 6857 3422 6857 3424 6857 2553 6858 3424 6858 2554 6858 2554 6859 3424 6859 3425 6859 2554 6860 3425 6860 2556 6860 2556 6861 3425 6861 3427 6861 2556 6862 3427 6862 3409 6862 3409 6863 3427 6863 3410 6863 3409 6864 3410 6864 3411 6864 3411 6865 3410 6865 2389 6865 3411 6866 2389 6866 2387 6866 3405 6867 3407 6867 3412 6867 3405 6868 3412 6868 3395 6868 3395 6869 3412 6869 3414 6869 3395 6870 3414 6870 3413 6870 3413 6871 3414 6871 2518 6871 3413 6872 2518 6872 3415 6872 3415 6873 2518 6873 3416 6873 3415 6874 3416 6874 3417 6874 3417 6875 3416 6875 2520 6875 3417 6876 2520 6876 3400 6876 3400 6877 2520 6877 2521 6877 3400 6878 2521 6878 3418 6878 3418 6879 2521 6879 2522 6879 2559 6880 2560 6880 3419 6880 3419 6881 2560 6881 3430 6881 3419 6882 3430 6882 3421 6882 3421 6883 3430 6883 3420 6883 3421 6884 3420 6884 3422 6884 3422 6885 3420 6885 3431 6885 3422 6886 3431 6886 3424 6886 3424 6887 3431 6887 3423 6887 3424 6888 3423 6888 3425 6888 3425 6889 3423 6889 3426 6889 3425 6890 3426 6890 3427 6890 3427 6891 3426 6891 3433 6891 3427 6892 3433 6892 3410 6892 3410 6893 3433 6893 3428 6893 3410 6894 3428 6894 2389 6894 2560 6895 3429 6895 3430 6895 3430 6896 3429 6896 3438 6896 3430 6897 3438 6897 3420 6897 3420 6898 3438 6898 3432 6898 3420 6899 3432 6899 3431 6899 3431 6900 3432 6900 3439 6900 3431 6901 3439 6901 3423 6901 3423 6902 3439 6902 3440 6902 3423 6903 3440 6903 3426 6903 3426 6904 3440 6904 3434 6904 3426 6905 3434 6905 3433 6905 3433 6906 3434 6906 3435 6906 3433 6907 3435 6907 3428 6907 3437 6908 3436 6908 3438 6908 3438 6909 3436 6909 3432 6909 3439 6910 3432 6910 2564 6910 2564 6911 3432 6911 3436 6911 3429 6912 3437 6912 3438 6912 3440 6913 3439 6913 3442 6913 3442 6914 3439 6914 2564 6914 3434 6915 3440 6915 3441 6915 3441 6916 3440 6916 3442 6916 2576 6917 2396 6917 2575 6917 3434 6918 3441 6918 2391 6918 2391 6919 3435 6919 3434 6919 3062 6920 3443 6920 2390 6920 2390 6921 3443 6921 3455 6921 2390 6922 3455 6922 3444 6922 3444 6923 3455 6923 3445 6923 3444 6924 3445 6924 3446 6924 3446 6925 3445 6925 3447 6925 3446 6926 3447 6926 2388 6926 2388 6927 3447 6927 3449 6927 2388 6928 3449 6928 3448 6928 3448 6929 3449 6929 3450 6929 3448 6930 3450 6930 3452 6930 3452 6931 3450 6931 3451 6931 3452 6932 3451 6932 3453 6932 3443 6933 3454 6933 3455 6933 3455 6934 3454 6934 3456 6934 3455 6935 3456 6935 3445 6935 3445 6936 3456 6936 3457 6936 3445 6937 3457 6937 3447 6937 3447 6938 3457 6938 3464 6938 3447 6939 3464 6939 3449 6939 3449 6940 3464 6940 3458 6940 3449 6941 3458 6941 3450 6941 3450 6942 3458 6942 3065 6942 3450 6943 3065 6943 3451 6943 3456 6944 3454 6944 3459 6944 3457 6945 3456 6945 3461 6945 3461 6946 3456 6946 3459 6946 3461 6947 3459 6947 3060 6947 3464 6948 3457 6948 3460 6948 3460 6949 3457 6949 3461 6949 3460 6950 3461 6950 3462 6950 3462 6951 3461 6951 3060 6951 3462 6952 3060 6952 3059 6952 3458 6953 3464 6953 3463 6953 3463 6954 3464 6954 3460 6954 3463 6955 3460 6955 3468 6955 3468 6956 3460 6956 3462 6956 3468 6957 3462 6957 3465 6957 3465 6958 3462 6958 3059 6958 3465 6959 3059 6959 3469 6959 3065 6960 3458 6960 3466 6960 3466 6961 3458 6961 3463 6961 3466 6962 3463 6962 3467 6962 3467 6963 3463 6963 3468 6963 3467 6964 3468 6964 3064 6964 3064 6965 3468 6965 3465 6965 3064 6966 3465 6966 3470 6966 3470 6967 3465 6967 3469 6967 3470 6968 3469 6968 3057 6968 3471 6969 3473 6969 3472 6969 3472 6970 3473 6970 3475 6970 3472 6971 3475 6971 3474 6971 3474 6972 3475 6972 3485 6972 3474 6973 3485 6973 3476 6973 3476 6974 3485 6974 3478 6974 3476 6975 3478 6975 3477 6975 3477 6976 3478 6976 3479 6976 3477 6977 3479 6977 2665 6977 2665 6978 3479 6978 3481 6978 2665 6979 3481 6979 3480 6979 3480 6980 3481 6980 3482 6980 3480 6981 3482 6981 2667 6981 2667 6982 3482 6982 3490 6982 2667 6983 3490 6983 2668 6983 2668 6984 3490 6984 3491 6984 2668 6985 3491 6985 2670 6985 2670 6986 3491 6986 3483 6986 2670 6987 3483 6987 2672 6987 3473 6988 3484 6988 3475 6988 3475 6989 3484 6989 3486 6989 3475 6990 3486 6990 3485 6990 3485 6991 3486 6991 3494 6991 3485 6992 3494 6992 3478 6992 3478 6993 3494 6993 3487 6993 3478 6994 3487 6994 3479 6994 3479 6995 3487 6995 3488 6995 3479 6996 3488 6996 3481 6996 3481 6997 3488 6997 3489 6997 3481 6998 3489 6998 3482 6998 3482 6999 3489 6999 3499 6999 3482 7000 3499 7000 3490 7000 3490 7001 3499 7001 3500 7001 3490 7002 3500 7002 3491 7002 3491 7003 3500 7003 3492 7003 3491 7004 3492 7004 3483 7004 3484 7005 2674 7005 3486 7005 3486 7006 2674 7006 3493 7006 3486 7007 3493 7007 3494 7007 3494 7008 3493 7008 3495 7008 3494 7009 3495 7009 3487 7009 3487 7010 3495 7010 3496 7010 3487 7011 3496 7011 3488 7011 3488 7012 3496 7012 3497 7012 3488 7013 3497 7013 3489 7013 3489 7014 3497 7014 3498 7014 3489 7015 3498 7015 3499 7015 3499 7016 3498 7016 3513 7016 3499 7017 3513 7017 3500 7017 3500 7018 3513 7018 2682 7018 3500 7019 2682 7019 3492 7019 3501 7020 2676 7020 3493 7020 3493 7021 2676 7021 3495 7021 3496 7022 3495 7022 2677 7022 2677 7023 3495 7023 2676 7023 2674 7024 3501 7024 3493 7024 3497 7025 3496 7025 2678 7025 2678 7026 3496 7026 2677 7026 3498 7027 3497 7027 3502 7027 3502 7028 3497 7028 2678 7028 2711 7029 2722 7029 3503 7029 3503 7030 2722 7030 2723 7030 3503 7031 2723 7031 3504 7031 3504 7032 2723 7032 3505 7032 3504 7033 3505 7033 3506 7033 3506 7034 3505 7034 3514 7034 3506 7035 3514 7035 2714 7035 2714 7036 3514 7036 3515 7036 2714 7037 3515 7037 3507 7037 3507 7038 3515 7038 3516 7038 3507 7039 3516 7039 2716 7039 2716 7040 3516 7040 3517 7040 2716 7041 3517 7041 2717 7041 2717 7042 3517 7042 3508 7042 2717 7043 3508 7043 2719 7043 2719 7044 3508 7044 3509 7044 2719 7045 3509 7045 2721 7045 2721 7046 3509 7046 3522 7046 2721 7047 3522 7047 3510 7047 3510 7048 3522 7048 3523 7048 3510 7049 3523 7049 2602 7049 2602 7050 3523 7050 3511 7050 3498 7051 3502 7051 3512 7051 3498 7052 3512 7052 3513 7052 3513 7053 3512 7053 2681 7053 3513 7054 2681 7054 2682 7054 2723 7055 3540 7055 3505 7055 3505 7056 3540 7056 3542 7056 3505 7057 3542 7057 3514 7057 3514 7058 3542 7058 3530 7058 3514 7059 3530 7059 3515 7059 3515 7060 3530 7060 3543 7060 3515 7061 3543 7061 3516 7061 3516 7062 3543 7062 3518 7062 3516 7063 3518 7063 3517 7063 3517 7064 3518 7064 3519 7064 3517 7065 3519 7065 3508 7065 3508 7066 3519 7066 3557 7066 3508 7067 3557 7067 3509 7067 3509 7068 3557 7068 3520 7068 3509 7069 3520 7069 3522 7069 3522 7070 3520 7070 3521 7070 3522 7071 3521 7071 3523 7071 3523 7072 3521 7072 3524 7072 3523 7073 3524 7073 3511 7073 3511 7074 3524 7074 2604 7074 2693 7075 2694 7075 3525 7075 3525 7076 2694 7076 3526 7076 3525 7077 3526 7077 2683 7077 2683 7078 3526 7078 3527 7078 2683 7079 3527 7079 2684 7079 2684 7080 3527 7080 3538 7080 2684 7081 3538 7081 2685 7081 2685 7082 3538 7082 3528 7082 3541 7083 3529 7083 3542 7083 3542 7084 3529 7084 3530 7084 3543 7085 3530 7085 3531 7085 3531 7086 3530 7086 3529 7086 3526 7087 2694 7087 2696 7087 3527 7088 3526 7088 3533 7088 3533 7089 3526 7089 2696 7089 3533 7090 2696 7090 3534 7090 3538 7091 3527 7091 3532 7091 3532 7092 3527 7092 3533 7092 3532 7093 3533 7093 3535 7093 3535 7094 3533 7094 3534 7094 3535 7095 3534 7095 3536 7095 3528 7096 3538 7096 3537 7096 3537 7097 3538 7097 3532 7097 3537 7098 3532 7098 3539 7098 3539 7099 3532 7099 3535 7099 3539 7100 3535 7100 2598 7100 2598 7101 3535 7101 3536 7101 2598 7102 3536 7102 2599 7102 3540 7103 3541 7103 3542 7103 3518 7104 3543 7104 3544 7104 3544 7105 3543 7105 3531 7105 3519 7106 3518 7106 2728 7106 2728 7107 3518 7107 3544 7107 2758 7108 2766 7108 3545 7108 3545 7109 2766 7109 3561 7109 3545 7110 3561 7110 3546 7110 3546 7111 3561 7111 3547 7111 3546 7112 3547 7112 3548 7112 3548 7113 3547 7113 3549 7113 3548 7114 3549 7114 3550 7114 3550 7115 3549 7115 3551 7115 3550 7116 3551 7116 3552 7116 3552 7117 3551 7117 3554 7117 3552 7118 3554 7118 3553 7118 3553 7119 3554 7119 3555 7119 3553 7120 3555 7120 2761 7120 2761 7121 3555 7121 3565 7121 2761 7122 3565 7122 3556 7122 3556 7123 3565 7123 3566 7123 3556 7124 3566 7124 2765 7124 2765 7125 3566 7125 3193 7125 3519 7126 2728 7126 2729 7126 3519 7127 2729 7127 3557 7127 3557 7128 2729 7128 3558 7128 3557 7129 3558 7129 3520 7129 3520 7130 3558 7130 3559 7130 3520 7131 3559 7131 3521 7131 3521 7132 3559 7132 3560 7132 3521 7133 3560 7133 3524 7133 3524 7134 3560 7134 2732 7134 3524 7135 2732 7135 2604 7135 2604 7136 2732 7136 2606 7136 2766 7137 2767 7137 3561 7137 3561 7138 2767 7138 3568 7138 3561 7139 3568 7139 3547 7139 3547 7140 3568 7140 3562 7140 3547 7141 3562 7141 3549 7141 3549 7142 3562 7142 3563 7142 3549 7143 3563 7143 3551 7143 3551 7144 3563 7144 3570 7144 3551 7145 3570 7145 3554 7145 3554 7146 3570 7146 3571 7146 3554 7147 3571 7147 3555 7147 3555 7148 3571 7148 3564 7148 3555 7149 3564 7149 3565 7149 3565 7150 3564 7150 3573 7150 3565 7151 3573 7151 3566 7151 3566 7152 3573 7152 3574 7152 3566 7153 3574 7153 3193 7153 3193 7154 3574 7154 3575 7154 2767 7155 3567 7155 3568 7155 3568 7156 3567 7156 3579 7156 3568 7157 3579 7157 3562 7157 3562 7158 3579 7158 3576 7158 3562 7159 3576 7159 3563 7159 3563 7160 3576 7160 3569 7160 3563 7161 3569 7161 3570 7161 3570 7162 3569 7162 3580 7162 3570 7163 3580 7163 3571 7163 3571 7164 3580 7164 3572 7164 3571 7165 3572 7165 3564 7165 3564 7166 3572 7166 3582 7166 3564 7167 3582 7167 3573 7167 3573 7168 3582 7168 3583 7168 3573 7169 3583 7169 3574 7169 3574 7170 3583 7170 3584 7170 3574 7171 3584 7171 3575 7171 3575 7172 3584 7172 3191 7172 3578 7173 3577 7173 3579 7173 3579 7174 3577 7174 3576 7174 3569 7175 3576 7175 2772 7175 2772 7176 3576 7176 3577 7176 3567 7177 3578 7177 3579 7177 3580 7178 3569 7178 2774 7178 2774 7179 3569 7179 2772 7179 3572 7180 3580 7180 3581 7180 3581 7181 3580 7181 2774 7181 3585 7182 2810 7182 3586 7182 3586 7183 2810 7183 2809 7183 3572 7184 3581 7184 2775 7184 3572 7185 2775 7185 3582 7185 3582 7186 2775 7186 2777 7186 3582 7187 2777 7187 3583 7187 3583 7188 2777 7188 2778 7188 3583 7189 2778 7189 3584 7189 3584 7190 2778 7190 2780 7190 3584 7191 2780 7191 3191 7191 3191 7192 2780 7192 2782 7192 3181 7193 3585 7193 2820 7193 2820 7194 3585 7194 3586 7194 3587 7195 3181 7195 3588 7195 3588 7196 3181 7196 2820 7196 3588 7197 2822 7197 3587 7197 3587 7198 2822 7198 3589 7198 3590 7199 2825 7199 3591 7199 3591 7200 2825 7200 3607 7200 3591 7201 3607 7201 3186 7201 3186 7202 3607 7202 3592 7202 3186 7203 3592 7203 3188 7203 3188 7204 3592 7204 3610 7204 3188 7205 3610 7205 2815 7205 2815 7206 3610 7206 3612 7206 3593 7207 3594 7207 2844 7207 2844 7208 3594 7208 3620 7208 2844 7209 3620 7209 3595 7209 3595 7210 3620 7210 3597 7210 3595 7211 3597 7211 3596 7211 3596 7212 3597 7212 3621 7212 3596 7213 3621 7213 3598 7213 3598 7214 3621 7214 3599 7214 3598 7215 3599 7215 3600 7215 3600 7216 3599 7216 3623 7216 3600 7217 3623 7217 2846 7217 2846 7218 3623 7218 3601 7218 2846 7219 3601 7219 3602 7219 3602 7220 3601 7220 3624 7220 3602 7221 3624 7221 2848 7221 2848 7222 3624 7222 3626 7222 2848 7223 3626 7223 3603 7223 3603 7224 3626 7224 3605 7224 3603 7225 3605 7225 3604 7225 3604 7226 3605 7226 3606 7226 3607 7227 2825 7227 3608 7227 3592 7228 3607 7228 3611 7228 3611 7229 3607 7229 3608 7229 3611 7230 3608 7230 3609 7230 3610 7231 3592 7231 3614 7231 3614 7232 3592 7232 3611 7232 3614 7233 3611 7233 3616 7233 3616 7234 3611 7234 3609 7234 3616 7235 3609 7235 2828 7235 3612 7236 3610 7236 3613 7236 3613 7237 3610 7237 3614 7237 3613 7238 3614 7238 3630 7238 3630 7239 3614 7239 3616 7239 3630 7240 3616 7240 3615 7240 3615 7241 3616 7241 2828 7241 3615 7242 2828 7242 3631 7242 3612 7243 3613 7243 2817 7243 2817 7244 3613 7244 3618 7244 2817 7245 3618 7245 3617 7245 3617 7246 3618 7246 3643 7246 3617 7247 3643 7247 2622 7247 2622 7248 3643 7248 3644 7248 3618 7249 3613 7249 3630 7249 3594 7250 3619 7250 3620 7250 3620 7251 3619 7251 3632 7251 3620 7252 3632 7252 3597 7252 3597 7253 3632 7253 3633 7253 3597 7254 3633 7254 3621 7254 3621 7255 3633 7255 3622 7255 3621 7256 3622 7256 3599 7256 3599 7257 3622 7257 3635 7257 3599 7258 3635 7258 3623 7258 3623 7259 3635 7259 3637 7259 3623 7260 3637 7260 3601 7260 3601 7261 3637 7261 3639 7261 3601 7262 3639 7262 3624 7262 3624 7263 3639 7263 3625 7263 3624 7264 3625 7264 3626 7264 3626 7265 3625 7265 3627 7265 3626 7266 3627 7266 3605 7266 3605 7267 3627 7267 3628 7267 3605 7268 3628 7268 3606 7268 3606 7269 3628 7269 3641 7269 3618 7270 3630 7270 3629 7270 3629 7271 3630 7271 3615 7271 3629 7272 3615 7272 3645 7272 3645 7273 3615 7273 3631 7273 3645 7274 3631 7274 3648 7274 3619 7275 2850 7275 3632 7275 3632 7276 2850 7276 3652 7276 3632 7277 3652 7277 3633 7277 3633 7278 3652 7278 3634 7278 3633 7279 3634 7279 3622 7279 3622 7280 3634 7280 3647 7280 3622 7281 3647 7281 3635 7281 3635 7282 3647 7282 3636 7282 3635 7283 3636 7283 3637 7283 3637 7284 3636 7284 3638 7284 3637 7285 3638 7285 3639 7285 3639 7286 3638 7286 3640 7286 3639 7287 3640 7287 3625 7287 3625 7288 3640 7288 3664 7288 3625 7289 3664 7289 3627 7289 3627 7290 3664 7290 3666 7290 3627 7291 3666 7291 3628 7291 3628 7292 3666 7292 3667 7292 3628 7293 3667 7293 3641 7293 3641 7294 3667 7294 2628 7294 3618 7295 3629 7295 3643 7295 3643 7296 3629 7296 3642 7296 3643 7297 3642 7297 3644 7297 3644 7298 3642 7298 3650 7298 3642 7299 3629 7299 3645 7299 2851 7300 3646 7300 3652 7300 3652 7301 3646 7301 3634 7301 3647 7302 3634 7302 2852 7302 2852 7303 3634 7303 3646 7303 3642 7304 3645 7304 3651 7304 3651 7305 3645 7305 3648 7305 3651 7306 3648 7306 3649 7306 2623 7307 3650 7307 3651 7307 3651 7308 3650 7308 3642 7308 2623 7309 3651 7309 3649 7309 2850 7310 2851 7310 3652 7310 3636 7311 3647 7311 2853 7311 2853 7312 3647 7312 2852 7312 2624 7313 2623 7313 3649 7313 3638 7314 3636 7314 2854 7314 2854 7315 3636 7315 2853 7315 2887 7316 2901 7316 2889 7316 2889 7317 2901 7317 3654 7317 2889 7318 3654 7318 3653 7318 3653 7319 3654 7319 3655 7319 3653 7320 3655 7320 2891 7320 2891 7321 3655 7321 3656 7321 2891 7322 3656 7322 3657 7322 3657 7323 3656 7323 3671 7323 3657 7324 3671 7324 2895 7324 2895 7325 3671 7325 3658 7325 2895 7326 3658 7326 2896 7326 2896 7327 3658 7327 3659 7327 2896 7328 3659 7328 2897 7328 2897 7329 3659 7329 3674 7329 2897 7330 3674 7330 2898 7330 2898 7331 3674 7331 3661 7331 2898 7332 3661 7332 3660 7332 3660 7333 3661 7333 3663 7333 3660 7334 3663 7334 3662 7334 3662 7335 3663 7335 2634 7335 3638 7336 2854 7336 2855 7336 3638 7337 2855 7337 3640 7337 3640 7338 2855 7338 2857 7338 3640 7339 2857 7339 3664 7339 3664 7340 2857 7340 3665 7340 3664 7341 3665 7341 3666 7341 3666 7342 3665 7342 2858 7342 3666 7343 2858 7343 3667 7343 3667 7344 2858 7344 2861 7344 3667 7345 2861 7345 2628 7345 2628 7346 2861 7346 3668 7346 2901 7347 2902 7347 3654 7347 3654 7348 2902 7348 3678 7348 3654 7349 3678 7349 3655 7349 3655 7350 3678 7350 3669 7350 3655 7351 3669 7351 3656 7351 3656 7352 3669 7352 3670 7352 3656 7353 3670 7353 3671 7353 3671 7354 3670 7354 3680 7354 3671 7355 3680 7355 3658 7355 3658 7356 3680 7356 3672 7356 3658 7357 3672 7357 3659 7357 3659 7358 3672 7358 3673 7358 3659 7359 3673 7359 3674 7359 3674 7360 3673 7360 3683 7360 3674 7361 3683 7361 3661 7361 3661 7362 3683 7362 3675 7362 3661 7363 3675 7363 3663 7363 3663 7364 3675 7364 3676 7364 3663 7365 3676 7365 2634 7365 2634 7366 3676 7366 3685 7366 2902 7367 3677 7367 3678 7367 3678 7368 3677 7368 3688 7368 3678 7369 3688 7369 3669 7369 3669 7370 3688 7370 3679 7370 3669 7371 3679 7371 3670 7371 3670 7372 3679 7372 3689 7372 3670 7373 3689 7373 3680 7373 3680 7374 3689 7374 3693 7374 3680 7375 3693 7375 3672 7375 3672 7376 3693 7376 3681 7376 3672 7377 3681 7377 3673 7377 3673 7378 3681 7378 3700 7378 3673 7379 3700 7379 3683 7379 3683 7380 3700 7380 3682 7380 3683 7381 3682 7381 3675 7381 3675 7382 3682 7382 3684 7382 3675 7383 3684 7383 3676 7383 3676 7384 3684 7384 3686 7384 3676 7385 3686 7385 3685 7385 3685 7386 3686 7386 2635 7386 3687 7387 3690 7387 3688 7387 3688 7388 3690 7388 3679 7388 3689 7389 3679 7389 3692 7389 3692 7390 3679 7390 3690 7390 3677 7391 3687 7391 3688 7391 3693 7392 3689 7392 3691 7392 3691 7393 3689 7393 3692 7393 3681 7394 3693 7394 2907 7394 2907 7395 3693 7395 3691 7395 2932 7396 3694 7396 2933 7396 2933 7397 3694 7397 3704 7397 2933 7398 3704 7398 3695 7398 3695 7399 3704 7399 3705 7399 3695 7400 3705 7400 2935 7400 2935 7401 3705 7401 3706 7401 2935 7402 3706 7402 3696 7402 3696 7403 3706 7403 3707 7403 3696 7404 3707 7404 3697 7404 3697 7405 3707 7405 3708 7405 3697 7406 3708 7406 2938 7406 2938 7407 3708 7407 2318 7407 2938 7408 2318 7408 3698 7408 3681 7409 2907 7409 3699 7409 3681 7410 3699 7410 3700 7410 3700 7411 3699 7411 2908 7411 3700 7412 2908 7412 3682 7412 3682 7413 2908 7413 3701 7413 3682 7414 3701 7414 3684 7414 3684 7415 3701 7415 3702 7415 3684 7416 3702 7416 3686 7416 3686 7417 3702 7417 3703 7417 3686 7418 3703 7418 2635 7418 2635 7419 3703 7419 2637 7419 3694 7420 2939 7420 3704 7420 3704 7421 2939 7421 3710 7421 3704 7422 3710 7422 3705 7422 3705 7423 3710 7423 3711 7423 3705 7424 3711 7424 3706 7424 3706 7425 3711 7425 3713 7425 3706 7426 3713 7426 3707 7426 3707 7427 3713 7427 3709 7427 3707 7428 3709 7428 3708 7428 3708 7429 3709 7429 3716 7429 3708 7430 3716 7430 2318 7430 2939 7431 3719 7431 3710 7431 3710 7432 3719 7432 3712 7432 3710 7433 3712 7433 3711 7433 3711 7434 3712 7434 3714 7434 3711 7435 3714 7435 3713 7435 3713 7436 3714 7436 3717 7436 3713 7437 3717 7437 3709 7437 3709 7438 3717 7438 3715 7438 3709 7439 3715 7439 3716 7439 2941 7440 3718 7440 3712 7440 3712 7441 3718 7441 3714 7441 3717 7442 3714 7442 3720 7442 3720 7443 3714 7443 3718 7443 3719 7444 2941 7444 3712 7444 3715 7445 3717 7445 2944 7445 2944 7446 3717 7446 3720 7446 3908 7447 2326 7447 3721 7447 3721 7448 2326 7448 3722 7448 3721 7449 3722 7449 3907 7449 3907 7450 3722 7450 2308 7450 3907 7451 2308 7451 3723 7451 3723 7452 2308 7452 2947 7452 3723 7453 2947 7453 3724 7453 3724 7454 2947 7454 2945 7454 3724 7455 2945 7455 3906 7455 3906 7456 2945 7456 3725 7456 3906 7457 3725 7457 3905 7457 3905 7458 3725 7458 2940 7458 3905 7459 2940 7459 3904 7459 3904 7460 2940 7460 3726 7460 3904 7461 3726 7461 3728 7461 3728 7462 3726 7462 3727 7462 3728 7463 3727 7463 3903 7463 3903 7464 3727 7464 3729 7464 3903 7465 3729 7465 3730 7465 3730 7466 3729 7466 2913 7466 3730 7467 2913 7467 3731 7467 3731 7468 2913 7468 2904 7468 3731 7469 2904 7469 3732 7469 3732 7470 2904 7470 2903 7470 3732 7471 2903 7471 3902 7471 3902 7472 2903 7472 2900 7472 3902 7473 2900 7473 3901 7473 3901 7474 2900 7474 2886 7474 3901 7475 2886 7475 3733 7475 3733 7476 2886 7476 3735 7476 3733 7477 3735 7477 3734 7477 3734 7478 3735 7478 3736 7478 3734 7479 3736 7479 3900 7479 3900 7480 3736 7480 2864 7480 3900 7481 2864 7481 3737 7481 3737 7482 2864 7482 3738 7482 3737 7483 3738 7483 3899 7483 3899 7484 3738 7484 3739 7484 3899 7485 3739 7485 3898 7485 3898 7486 3739 7486 3741 7486 3898 7487 3741 7487 3740 7487 3740 7488 3741 7488 3742 7488 3740 7489 3742 7489 3743 7489 3743 7490 3742 7490 2821 7490 3743 7491 2821 7491 3744 7491 3744 7492 2821 7492 3745 7492 3744 7493 3745 7493 3897 7493 3897 7494 3745 7494 3746 7494 3897 7495 3746 7495 3747 7495 3747 7496 3746 7496 2819 7496 3747 7497 2819 7497 3893 7497 3893 7498 2819 7498 3748 7498 3893 7499 3748 7499 3749 7499 3749 7500 3748 7500 2794 7500 3749 7501 2794 7501 3891 7501 3891 7502 2794 7502 2770 7502 3891 7503 2770 7503 3889 7503 3889 7504 2770 7504 2769 7504 3889 7505 2769 7505 3750 7505 3750 7506 2769 7506 2768 7506 3750 7507 2768 7507 3887 7507 3887 7508 2768 7508 2757 7508 3887 7509 2757 7509 3886 7509 3886 7510 2757 7510 3751 7510 3886 7511 3751 7511 3885 7511 3885 7512 3751 7512 2734 7512 3885 7513 2734 7513 3752 7513 3752 7514 2734 7514 2733 7514 3752 7515 2733 7515 3753 7515 3753 7516 2733 7516 2725 7516 3753 7517 2725 7517 3754 7517 3754 7518 2725 7518 2724 7518 3754 7519 2724 7519 3755 7519 3755 7520 2724 7520 3757 7520 3755 7521 3757 7521 3756 7521 3756 7522 3757 7522 3758 7522 3756 7523 3758 7523 3880 7523 3880 7524 3758 7524 3759 7524 3880 7525 3759 7525 3878 7525 3878 7526 3759 7526 3760 7526 3878 7527 3760 7527 3877 7527 3877 7528 3760 7528 3762 7528 3877 7529 3762 7529 3761 7529 3761 7530 3762 7530 3763 7530 3761 7531 3763 7531 3913 7531 3913 7532 3763 7532 2661 7532 3913 7533 2661 7533 3912 7533 3912 7534 2661 7534 3764 7534 3912 7535 3764 7535 3910 7535 3910 7536 3764 7536 3765 7536 3910 7537 3765 7537 3850 7537 3850 7538 3765 7538 3766 7538 3850 7539 3766 7539 3767 7539 3767 7540 3766 7540 3768 7540 3767 7541 3768 7541 3849 7541 3849 7542 3768 7542 2398 7542 3849 7543 2398 7543 3769 7543 3769 7544 2398 7544 3770 7544 3769 7545 3770 7545 3771 7545 3771 7546 3770 7546 3772 7546 3771 7547 3772 7547 3773 7547 3773 7548 3772 7548 3774 7548 3773 7549 3774 7549 3848 7549 3848 7550 3774 7550 2566 7550 3848 7551 2566 7551 3847 7551 3847 7552 2566 7552 2562 7552 3847 7553 2562 7553 3775 7553 3775 7554 2562 7554 2561 7554 3775 7555 2561 7555 3845 7555 3845 7556 2561 7556 2547 7556 3845 7557 2547 7557 3844 7557 3844 7558 2547 7558 3777 7558 3844 7559 3777 7559 3776 7559 3776 7560 3777 7560 3779 7560 3776 7561 3779 7561 3778 7561 3778 7562 3779 7562 3780 7562 3778 7563 3780 7563 3781 7563 3781 7564 3780 7564 3782 7564 3781 7565 3782 7565 3783 7565 3783 7566 3782 7566 3784 7566 3783 7567 3784 7567 3785 7567 3785 7568 3784 7568 2513 7568 3785 7569 2513 7569 3843 7569 3843 7570 2513 7570 3786 7570 3843 7571 3786 7571 3842 7571 3842 7572 3786 7572 2362 7572 3842 7573 2362 7573 3787 7573 3787 7574 2362 7574 3788 7574 3787 7575 3788 7575 3789 7575 3789 7576 3788 7576 3790 7576 3789 7577 3790 7577 3791 7577 3791 7578 3790 7578 2488 7578 3791 7579 2488 7579 3792 7579 3792 7580 2488 7580 2487 7580 3792 7581 2487 7581 3793 7581 3793 7582 2487 7582 2485 7582 3793 7583 2485 7583 3841 7583 3841 7584 2485 7584 3794 7584 3841 7585 3794 7585 3840 7585 3840 7586 3794 7586 3795 7586 3840 7587 3795 7587 3796 7587 3796 7588 3795 7588 3797 7588 3796 7589 3797 7589 3798 7589 3798 7590 3797 7590 3799 7590 3798 7591 3799 7591 3800 7591 3800 7592 3799 7592 2460 7592 3800 7593 2460 7593 3801 7593 3801 7594 2460 7594 2459 7594 3801 7595 2459 7595 3802 7595 3802 7596 2459 7596 2438 7596 3802 7597 2438 7597 3838 7597 3838 7598 2438 7598 3803 7598 3838 7599 3803 7599 3805 7599 3805 7600 3803 7600 3804 7600 3805 7601 3804 7601 3837 7601 3837 7602 3804 7602 2422 7602 3837 7603 2422 7603 3807 7603 3807 7604 2422 7604 3806 7604 3807 7605 3806 7605 3836 7605 3836 7606 3806 7606 3808 7606 3836 7607 3808 7607 3809 7607 3809 7608 3808 7608 3810 7608 3809 7609 3810 7609 3908 7609 3908 7610 3810 7610 2326 7610 3815 7611 188 7611 3813 7611 3813 7612 188 7612 3817 7612 188 7613 3811 7613 3817 7613 3817 7614 3811 7614 3828 7614 3813 7615 3817 7615 3812 7615 3812 7616 3817 7616 3828 7616 3813 7617 3812 7617 3829 7617 3829 7618 3812 7618 3834 7618 3813 7619 3814 7619 3815 7619 3815 7620 3814 7620 278 7620 3829 7621 3816 7621 3813 7621 3813 7622 3816 7622 3817 7622 3816 7623 3818 7623 3817 7623 3817 7624 3818 7624 3819 7624 3813 7625 3817 7625 3814 7625 3814 7626 3817 7626 3819 7626 16 7627 51 7627 3915 7627 3915 7628 51 7628 3820 7628 51 7629 100 7629 3820 7629 3820 7630 100 7630 3821 7630 100 7631 121 7631 3821 7631 3821 7632 121 7632 3830 7632 465 7633 3822 7633 466 7633 466 7634 3822 7634 3823 7634 3822 7635 389 7635 3823 7635 3823 7636 389 7636 3831 7636 389 7637 3824 7637 3831 7637 3831 7638 3824 7638 3832 7638 3825 7639 621 7639 3854 7639 3854 7640 621 7640 3863 7640 525 7641 3825 7641 3833 7641 3833 7642 3825 7642 3854 7642 3826 7643 2293 7643 3839 7643 3839 7644 2293 7644 3846 7644 2158 7645 3826 7645 3916 7645 3916 7646 3826 7646 3839 7646 3827 7647 3868 7647 274 7647 274 7648 3868 7648 183 7648 3818 7649 3827 7649 3819 7649 3819 7650 3827 7650 274 7650 3819 7651 274 7651 278 7651 278 7652 3814 7652 3819 7652 3811 7653 183 7653 3828 7653 3828 7654 183 7654 3868 7654 3828 7655 3868 7655 3834 7655 3834 7656 3812 7656 3828 7656 3829 7657 3823 7657 3816 7657 3816 7658 3823 7658 3831 7658 3816 7659 3831 7659 3830 7659 3830 7660 3831 7660 3821 7660 3821 7661 3831 7661 3832 7661 3821 7662 3832 7662 3833 7662 3833 7663 3832 7663 462 7663 3833 7664 462 7664 635 7664 635 7665 462 7665 463 7665 635 7666 463 7666 3868 7666 3868 7667 463 7667 3834 7667 3834 7668 463 7668 466 7668 3834 7669 466 7669 3823 7669 3829 7670 3834 7670 3823 7670 3827 7671 3896 7671 3868 7671 3868 7672 3896 7672 3835 7672 3868 7673 3835 7673 3872 7673 3818 7674 3916 7674 3827 7674 3827 7675 3916 7675 3839 7675 3827 7676 3839 7676 3809 7676 3809 7677 3839 7677 3836 7677 3836 7678 3839 7678 3807 7678 3807 7679 3839 7679 3837 7679 3837 7680 3839 7680 3805 7680 3805 7681 3839 7681 3838 7681 3838 7682 3839 7682 3802 7682 3802 7683 3839 7683 3801 7683 3801 7684 3839 7684 3800 7684 3800 7685 3839 7685 3798 7685 3798 7686 3839 7686 3796 7686 3796 7687 3839 7687 3840 7687 3840 7688 3839 7688 3841 7688 3841 7689 3839 7689 3793 7689 3793 7690 3839 7690 3792 7690 3792 7691 3839 7691 3791 7691 3791 7692 3839 7692 3789 7692 3789 7693 3839 7693 3787 7693 3787 7694 3839 7694 3842 7694 3842 7695 3839 7695 3843 7695 3843 7696 3839 7696 3846 7696 3843 7697 3846 7697 3785 7697 3785 7698 3846 7698 3783 7698 3783 7699 3846 7699 3781 7699 3781 7700 3846 7700 3778 7700 3778 7701 3846 7701 3776 7701 3776 7702 3846 7702 3844 7702 3844 7703 3846 7703 3845 7703 3845 7704 3846 7704 3775 7704 3775 7705 3846 7705 3847 7705 3847 7706 3846 7706 3848 7706 3848 7707 3846 7707 3773 7707 3773 7708 3846 7708 3771 7708 3771 7709 3846 7709 3769 7709 3769 7710 3846 7710 3849 7710 3849 7711 3846 7711 3767 7711 3767 7712 3846 7712 3850 7712 3850 7713 3846 7713 3854 7713 3850 7714 3854 7714 3909 7714 3909 7715 3854 7715 3851 7715 3851 7716 3854 7716 3852 7716 3852 7717 3854 7717 2130 7717 2130 7718 3854 7718 3853 7718 3853 7719 3854 7719 2128 7719 2128 7720 3854 7720 2127 7720 2127 7721 3854 7721 2125 7721 2125 7722 3854 7722 2124 7722 2124 7723 3854 7723 2122 7723 2122 7724 3854 7724 2120 7724 2120 7725 3854 7725 3855 7725 3855 7726 3854 7726 3856 7726 3856 7727 3854 7727 3857 7727 3857 7728 3854 7728 2116 7728 2116 7729 3854 7729 2115 7729 2115 7730 3854 7730 3858 7730 3858 7731 3854 7731 2113 7731 2113 7732 3854 7732 3863 7732 2113 7733 3863 7733 2112 7733 2112 7734 3863 7734 3859 7734 3859 7735 3863 7735 3860 7735 3860 7736 3863 7736 2109 7736 2109 7737 3863 7737 2107 7737 2107 7738 3863 7738 2106 7738 2106 7739 3863 7739 3861 7739 3861 7740 3863 7740 2104 7740 2104 7741 3863 7741 2103 7741 2103 7742 3863 7742 2102 7742 2102 7743 3863 7743 3862 7743 3862 7744 3863 7744 3864 7744 3864 7745 3863 7745 2099 7745 2099 7746 3863 7746 2097 7746 2097 7747 3863 7747 2096 7747 2096 7748 3863 7748 2094 7748 2094 7749 3863 7749 2093 7749 2093 7750 3863 7750 3865 7750 3865 7751 3863 7751 3868 7751 3865 7752 3868 7752 3866 7752 3866 7753 3868 7753 2091 7753 2091 7754 3868 7754 2090 7754 2090 7755 3868 7755 2087 7755 2087 7756 3868 7756 3867 7756 3867 7757 3868 7757 2086 7757 2086 7758 3868 7758 2083 7758 2083 7759 3868 7759 2082 7759 2082 7760 3868 7760 2080 7760 2080 7761 3868 7761 3869 7761 3869 7762 3868 7762 2079 7762 2079 7763 3868 7763 3870 7763 3870 7764 3868 7764 2077 7764 2077 7765 3868 7765 2076 7765 2076 7766 3868 7766 2075 7766 2075 7767 3868 7767 2074 7767 2074 7768 3868 7768 3871 7768 3871 7769 3868 7769 2072 7769 2072 7770 3868 7770 2071 7770 2071 7771 3868 7771 2069 7771 2069 7772 3868 7772 2068 7772 2068 7773 3868 7773 2066 7773 2066 7774 3868 7774 2064 7774 2064 7775 3868 7775 3872 7775 3816 7776 3917 7776 3818 7776 3818 7777 3917 7777 3873 7777 3818 7778 3873 7778 3915 7778 3874 7779 2049 7779 3761 7779 3761 7780 2049 7780 3875 7780 3761 7781 3875 7781 3877 7781 3877 7782 3875 7782 3876 7782 3877 7783 3876 7783 3878 7783 3878 7784 3876 7784 3879 7784 3878 7785 3879 7785 3880 7785 3880 7786 3879 7786 3881 7786 3880 7787 3881 7787 3756 7787 3756 7788 3881 7788 3882 7788 3756 7789 3882 7789 3755 7789 3755 7790 3882 7790 2052 7790 3755 7791 2052 7791 3754 7791 3754 7792 2052 7792 3883 7792 3754 7793 3883 7793 3753 7793 3753 7794 3883 7794 3884 7794 3753 7795 3884 7795 3752 7795 3752 7796 3884 7796 2055 7796 3752 7797 2055 7797 3885 7797 3885 7798 2055 7798 2056 7798 3885 7799 2056 7799 3886 7799 3886 7800 2056 7800 2058 7800 3886 7801 2058 7801 3887 7801 3887 7802 2058 7802 3888 7802 3887 7803 3888 7803 3750 7803 3750 7804 3888 7804 2059 7804 3750 7805 2059 7805 3889 7805 3889 7806 2059 7806 3890 7806 3889 7807 3890 7807 3891 7807 3891 7808 3890 7808 3892 7808 3891 7809 3892 7809 3749 7809 3749 7810 3892 7810 3894 7810 3749 7811 3894 7811 3893 7811 3893 7812 3894 7812 3895 7812 3893 7813 3895 7813 3747 7813 3747 7814 3895 7814 3896 7814 3747 7815 3896 7815 3897 7815 3897 7816 3896 7816 3827 7816 3897 7817 3827 7817 3744 7817 3744 7818 3827 7818 3743 7818 3743 7819 3827 7819 3740 7819 3740 7820 3827 7820 3898 7820 3898 7821 3827 7821 3899 7821 3899 7822 3827 7822 3737 7822 3737 7823 3827 7823 3900 7823 3900 7824 3827 7824 3734 7824 3734 7825 3827 7825 3733 7825 3733 7826 3827 7826 3901 7826 3901 7827 3827 7827 3902 7827 3902 7828 3827 7828 3732 7828 3732 7829 3827 7829 3731 7829 3731 7830 3827 7830 3730 7830 3730 7831 3827 7831 3903 7831 3903 7832 3827 7832 3728 7832 3728 7833 3827 7833 3904 7833 3904 7834 3827 7834 3905 7834 3905 7835 3827 7835 3906 7835 3906 7836 3827 7836 3724 7836 3724 7837 3827 7837 3723 7837 3723 7838 3827 7838 3907 7838 3907 7839 3827 7839 3721 7839 3721 7840 3827 7840 3908 7840 3908 7841 3827 7841 3809 7841 3850 7842 3909 7842 3910 7842 3910 7843 3909 7843 3911 7843 3910 7844 3911 7844 3912 7844 3912 7845 3911 7845 2135 7845 3912 7846 2135 7846 3913 7846 3913 7847 2135 7847 3874 7847 3913 7848 3874 7848 3761 7848 3846 7849 3914 7849 3854 7849 3854 7850 3914 7850 3833 7850 3833 7851 3914 7851 3821 7851 3821 7852 3914 7852 3820 7852 3820 7853 3914 7853 3916 7853 3820 7854 3916 7854 3915 7854 3915 7855 3916 7855 3818 7855 3863 7856 635 7856 3868 7856 3830 7857 3917 7857 3816 7857</p>\n                </triangles>\n            </mesh>\n        </geometry>\n    </library_geometries>\n    <library_visual_scenes>\n        <visual_scene id=\"VisualSceneNode\" name=\"VisualScene\">\n            <node id=\"node\" name=\"node\">\n                <instance_geometry url=\"#shape0-lib\">\n                    <bind_material>\n                        <technique_common/>\n                    </bind_material>\n                </instance_geometry>\n            </node>\n        </visual_scene>\n    </library_visual_scenes>\n    <scene>\n        <instance_visual_scene url=\"#VisualSceneNode\"/>\n    </scene>\n</COLLADA>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/multi_peg_board/model.config",
    "content": "<?xml version=\"1.0\"?>\n\n<model>\n  <name>Peg board</name>\n  <version>1.0</version>\n  <sdf version='1.5'>model.sdf</sdf>\n\n  <author>\n    <name>Cristian beltran</name>\n    <email>nanaki07@gmail.com</email>\n  </author>\n\n  <description>\n    Board for peg of 9cm\n  </description>\n</model>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/multi_peg_board/model.sdf",
    "content": "<?xml version='1.0'?>\n<sdf version='1.6'>\n  <model name='multi_peg_board'>\n    <static>true</static>\n    <link name='board'>\n      <pose frame=''>0 0 0.01 0 3.14159 1.5707</pose>\n      <self_collide>0</self_collide>\n      <kinematic>0</kinematic>\n      <gravity>1</gravity>\n      <inertial>\n        <mass>1</mass>\n        <pose frame=''>0 0 0 0 0 0</pose>\n        <inertia>\n          <ixx>0.999223</ixx>\n          <ixy>0.039421</ixy>\n          <ixz>0.000141</ixz>\n          <iyy>0.999222</iyy>\n          <iyz>-0.001474</iyz>\n          <izz>0.999999</izz>\n        </inertia>\n      </inertial>\n      <visual name='visual'>\n        <transparency> 0.1 </transparency>\n        <pose frame=''>0 0 0 0 0 0</pose>\n        <geometry>\n          <mesh>\n            <uri>model://multi_peg_board/meshes/board.dae</uri>\n              <scale>1.02 1.02 .8</scale>\n          </mesh>\n        </geometry>\n        <material>\n          <script>\n            <uri>model://media/materials/scripts/gazebo.material</uri>\n            <name>Gazebo/Blue</name>\n          </script>\n        </material>\n        <transparency>0</transparency>\n        <cast_shadows>1</cast_shadows>\n      </visual>\n      <collision name='collision'>\n        <pose frame=''>0 0 0 0 0 0</pose>\n        <laser_retro>0</laser_retro>\n        <max_contacts>10</max_contacts>\n        <geometry>\n          <mesh>\n            <uri>model://multi_peg_board/meshes/board.dae</uri>\n            <scale>1.02 1.02 0.8</scale>\n          </mesh>\n        </geometry>\n        <surface>\n          <friction>\n            <ode>\n              <mu>1</mu>\n              <mu2>1</mu2>\n              <fdir1>0 0 0</fdir1>\n              <slip1>0.1</slip1>\n              <slip2>0.1</slip2>\n            </ode>\n            <torsional>\n              <coefficient>1</coefficient>\n              <patch_radius>0</patch_radius>\n              <surface_radius>0</surface_radius>\n              <use_patch_radius>1</use_patch_radius>\n              <ode>\n                <slip>0</slip>\n              </ode>\n            </torsional>\n          </friction>\n          <bounce>\n            <restitution_coefficient>0</restitution_coefficient>\n            <threshold>1e+06</threshold>\n          </bounce>\n          <contact>\n            <collide_without_contact>0</collide_without_contact>\n            <collide_without_contact_bitmask>1</collide_without_contact_bitmask>\n            <collide_bitmask>1</collide_bitmask>\n            <ode>\n              <soft_cfm>0.01</soft_cfm>\n              <soft_erp>0.2</soft_erp>\n              <kp>1e+13</kp>\n              <kd>1</kd>\n              <max_vel>0.01</max_vel>\n              <min_depth>0</min_depth>\n            </ode>\n            <bullet>\n              <split_impulse>1</split_impulse>\n              <split_impulse_penetration_threshold>-0.01</split_impulse_penetration_threshold>\n              <soft_cfm>0</soft_cfm>\n              <soft_erp>0.1</soft_erp>\n              <kp>1e+13</kp>\n              <kd>1</kd>\n            </bullet>\n          </contact>\n        </surface>\n      </collision>\n    </link>\n    <static>1</static>\n    <allow_auto_disable>1</allow_auto_disable>\n  </model>\n</sdf>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/peg_board/model.config",
    "content": "<?xml version=\"1.0\"?>\n\n<model>\n  <name>Peg board</name>\n  <version>1.0</version>\n  <sdf version='1.5'>model.sdf</sdf>\n\n  <author>\n    <name>Cristian beltran</name>\n    <email>nanaki07@gmail.com</email>\n  </author>\n\n  <description>\n    Board for peg of 9cm\n  </description>\n</model>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/peg_board/model.sdf",
    "content": "<?xml version='1.0'?>\n<sdf version='1.6'>\n  <model name='peg_board'>\n    <static>true</static>\n    <link name='board'>\n      <pose frame=''>0 0 0 0 0 0</pose>\n      <self_collide>0</self_collide>\n      <kinematic>0</kinematic>\n      <gravity>1</gravity>\n      <inertial>\n        <mass>1</mass>\n        <pose frame=''>-0.050000 0.05 0.015 0 0 0</pose>\n        <inertia>\n          <ixx>0.895563</ixx>\n          <ixy>-0.444935</ixy>\n          <ixz>0.0</ixz>\n          <iyy>0.895563</iyy>\n          <iyz>0</iyz>\n          <izz>1</izz>\n        </inertia>\n      </inertial>\n      <visual name='visual'>\n        <pose frame=''>0.050000 -0.05 0 0 -0 0</pose>\n        <geometry>\n          <mesh>\n            <uri>model://peg_board/meshes/board.stl</uri>\n              <scale>1.1 1.1 .8</scale>\n          </mesh>\n        </geometry>\n        <material>\n          <script>\n            <uri>model://media/materials/scripts/gazebo.material</uri>\n            <name>Gazebo/Wood</name>\n          </script>\n        </material>\n        <transparency>0</transparency>\n        <cast_shadows>1</cast_shadows>\n      </visual>\n      <collision name='collision'>\n        <pose frame=''>0.050000 -0.05 0 0 0 0</pose>\n        <laser_retro>0</laser_retro>\n        <max_contacts>10</max_contacts>\n        <geometry>\n          <mesh>\n            <uri>model://peg_board/meshes/board.stl</uri>\n            <scale>1.1 1.1 0.8</scale>\n          </mesh>\n        </geometry>\n        <surface>\n          <friction>\n            <ode>\n              <mu>1</mu>\n              <mu2>1</mu2>\n              <fdir1>0 0 0</fdir1>\n              <slip1>0.1</slip1>\n              <slip2>0.1</slip2>\n            </ode>\n            <torsional>\n              <coefficient>1</coefficient>\n              <patch_radius>0</patch_radius>\n              <surface_radius>0</surface_radius>\n              <use_patch_radius>1</use_patch_radius>\n              <ode>\n                <slip>0</slip>\n              </ode>\n            </torsional>\n          </friction>\n          <bounce>\n            <restitution_coefficient>0</restitution_coefficient>\n            <threshold>1e+06</threshold>\n          </bounce>\n          <contact>\n            <collide_without_contact>0</collide_without_contact>\n            <collide_without_contact_bitmask>1</collide_without_contact_bitmask>\n            <collide_bitmask>1</collide_bitmask>\n            <ode>\n              <soft_cfm>0</soft_cfm>\n              <soft_erp>0.1</soft_erp>\n              <kp>1e+13</kp>\n              <kd>1</kd>\n              <max_vel>0.01</max_vel>\n              <min_depth>0</min_depth>\n            </ode>\n            <bullet>\n              <split_impulse>1</split_impulse>\n              <split_impulse_penetration_threshold>-0.01</split_impulse_penetration_threshold>\n              <soft_cfm>0</soft_cfm>\n              <soft_erp>0.1</soft_erp>\n              <kp>1e+13</kp>\n              <kd>1</kd>\n            </bullet>\n          </contact>\n        </surface>\n      </collision>\n    </link>\n    <static>1</static>\n    <allow_auto_disable>1</allow_auto_disable>\n  </model>\n</sdf>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/simple_peg_board/meshes/simple_board.dae",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<COLLADA xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" version=\"1.4.1\">\n    <asset>\n        <contributor>\n            <author>VCGLab</author>\n            <authoring_tool>VCGLib | MeshLab</authoring_tool>\n        </contributor>\n        <up_axis>Y_UP</up_axis>\n        <created>水 1月 8 04:41:54 2020</created>\n        <modified>水 1月 8 04:41:54 2020</modified>\n    </asset>\n    <library_images/>\n    <library_materials/>\n    <library_effects/>\n    <library_geometries>\n        <geometry id=\"shape0-lib\" name=\"shape0\">\n            <mesh>\n                <source id=\"shape0-lib-positions\" name=\"position\">\n                    <float_array id=\"shape0-lib-positions-array\" count=\"528\">0.00516667 0.020984 -0.0150997 -0.00516667 0.0208918 -0.0144657 -0.0140486 0.0207847 -0.0140486 -0.00516667 0.0207194 -0.0138486 -0.0135866 0.0206194 -0.0135866 -0.013143 0.0204096 -0.013143 -0.0127221 0.0201574 -0.0127221 -0.012328 0.0198651 -0.012328 -0.0119645 0.0195355 -0.0119645 -0.0116349 0.019172 -0.0116349 -0.00516667 0.0193017 -0.0117452 -0.0113427 0.0187779 -0.0113427 -0.0110904 0.018357 -0.0110904 -0.00516667 0.0182413 -0.0110305 -0.0108806 0.0179134 -0.0108806 -0.0107153 0.0174514 -0.0107153 -0.0105961 0.0169755 -0.0105961 -0.00516667 0.0170343 -0.0106082 -0.0105241 0.0164901 -0.0105241 -0.0105 0.016 -0.0105 0.0105 0.016 -0.0105 0.00516667 0.0170343 -0.0106082 0.0110904 0.018357 -0.0110904 0.0116349 0.019172 -0.0116349 0.012328 0.0198651 -0.012328 0.0127221 0.0201574 -0.0127221 0.013143 0.0204096 -0.013143 0.00516667 0.0208918 -0.0144657 0.0145245 0.0209039 -0.0145245 0.00516667 0.0207194 -0.0138486 -0.00516667 0.020984 -0.0150997 -0.00516667 0.0204695 -0.0132587 0.00516667 0.0204695 -0.0132587 0.00516667 0.0201462 -0.0127055 -0.00516667 0.0197548 -0.0121983 0.00516667 0.0197548 -0.0121983 -0.00516667 0.0201462 -0.0127055 0.00516667 0.0187945 -0.0113538 0.00516667 0.0193017 -0.0117452 0.00516667 0.0182413 -0.0110305 -0.00516667 0.0187945 -0.0113538 0.00516667 0.0176514 -0.0107806 0.00516667 0.0164003 -0.010516 -0.00516667 0.0176514 -0.0107806 -0.00516667 0.0164003 -0.010516 -0.0150099 0.0209759 -0.0150099 -0.0155 0.021 0.0155 -0.0145245 0.0209039 0.0145245 -0.0140486 0.0207847 0.0140486 -0.0132587 0.0204695 0.00516667 -0.013143 0.0204096 0.013143 -0.0127221 0.0201574 0.0127221 -0.012328 0.0198651 0.012328 -0.0127055 0.0201462 0.00516667 -0.0119645 0.0195355 0.0119645 -0.0117452 0.0193017 0.00516667 -0.0116349 0.019172 0.0116349 -0.0113427 0.0187779 0.0113427 -0.0113538 0.0187945 0.00516667 -0.0110904 0.018357 0.0110904 -0.0110305 0.0182413 0.00516667 -0.0108806 0.0179134 0.0108806 -0.0107806 0.0176514 0.00516667 -0.0107153 0.0174514 0.0107153 -0.0105961 0.0169755 0.0105961 -0.0106082 0.0170343 0.00516667 -0.0105241 0.0164901 0.0105241 -0.0105 0.016 0.0105 -0.0106082 0.0170343 -0.00516667 -0.0107806 0.0176514 -0.00516667 -0.0117452 0.0193017 -0.00516667 -0.0127055 0.0201462 -0.00516667 -0.0138486 0.0207194 -0.00516667 -0.0145245 0.0209039 -0.0145245 -0.0144657 0.0208918 -0.00516667 -0.0150997 0.020984 -0.00516667 -0.0150997 0.020984 0.00516667 -0.0144657 0.0208918 0.00516667 -0.0138486 0.0207194 0.00516667 -0.0132587 0.0204695 -0.00516667 -0.0121983 0.0197548 0.00516667 -0.0121983 0.0197548 -0.00516667 -0.0113538 0.0187945 -0.00516667 -0.0110305 0.0182413 -0.00516667 -0.010516 0.0164003 -0.00516667 -0.010516 0.0164003 0.00516667 -0.0150099 0.0209759 0.0150099 0.0150099 0.0209759 0.0150099 0.00516667 0.0208918 0.0144657 0.0145245 0.0209039 0.0145245 0.0140486 0.0207847 0.0140486 0.0127221 0.0201574 0.0127221 0.012328 0.0198651 0.012328 0.0119645 0.0195355 0.0119645 0.00516667 0.0193017 0.0117452 0.0116349 0.019172 0.0116349 0.0113427 0.0187779 0.0113427 0.00516667 0.0187945 0.0113538 0.0110904 0.018357 0.0110904 0.00516667 0.0176514 0.0107806 0.0107153 0.0174514 0.0107153 0.0105961 0.0169755 0.0105961 0.00516667 0.0170343 0.0106082 0.0105241 0.0164901 0.0105241 0.00516667 0.0164003 0.010516 -0.00516667 0.0164003 0.010516 -0.00516667 0.0176514 0.0107806 -0.00516667 0.0182413 0.0110305 -0.00516667 0.0187945 0.0113538 -0.00516667 0.0193017 0.0117452 -0.00516667 0.0197548 0.0121983 -0.0135866 0.0206194 0.0135866 -0.00516667 0.0204695 0.0132587 -0.00516667 0.0207194 0.0138486 -0.00516667 0.020984 0.0150997 -0.00516667 0.0208918 0.0144657 0.00516667 0.020984 0.0150997 0.00516667 0.0207194 0.0138486 0.00516667 0.0204695 0.0132587 0.00516667 0.0201462 0.0127055 -0.00516667 0.0201462 0.0127055 0.00516667 0.0197548 0.0121983 0.00516667 0.0182413 0.0110305 -0.00516667 0.0170343 0.0106082 0.010516 0.0164003 -0.00516667 0.0105 0.016 0.0105 0.010516 0.0164003 0.00516667 0.0107806 0.0176514 0.00516667 0.0108806 0.0179134 0.0108806 0.0117452 0.0193017 0.00516667 0.013143 0.0204096 0.013143 0.0135866 0.0206194 0.0135866 0.0150997 0.020984 0.00516667 0.0144657 0.0208918 0.00516667 0.0138486 0.0207194 0.00516667 0.0144657 0.0208918 -0.00516667 0.0138486 0.0207194 -0.00516667 0.0132587 0.0204695 0.00516667 0.0127055 0.0201462 0.00516667 0.0121983 0.0197548 0.00516667 0.0113538 0.0187945 0.00516667 0.0110305 0.0182413 0.00516667 0.0110305 0.0182413 -0.00516667 0.0106082 0.0170343 0.00516667 0.0150099 0.0209759 -0.0150099 0.0150997 0.020984 -0.00516667 0.0140486 0.0207847 -0.0140486 0.0135866 0.0206194 -0.0135866 0.0132587 0.0204695 -0.00516667 0.0127055 0.0201462 -0.00516667 0.0121983 0.0197548 -0.00516667 0.0117452 0.0193017 -0.00516667 0.0119645 0.0195355 -0.0119645 0.0113427 0.0187779 -0.0113427 0.0113538 0.0187945 -0.00516667 0.0108806 0.0179134 -0.0108806 0.0107806 0.0176514 -0.00516667 0.0107153 0.0174514 -0.0107153 0.0105961 0.0169755 -0.0105961 0.0105241 0.0164901 -0.0105241 0.0106082 0.0170343 -0.00516667 0.075 0.021 -0.075 0.0155 0.021 -0.0155 -0.0155 0.021 -0.0155 0.0155 0.021 0.0155 -0.0105 0 0.0105 -0.075 0 0.075 -0.075 0.021 0.075 0.075 0 0.075 0.075 0.021 0.075 -0.075 0 -0.075 -0.075 0.021 -0.075 0.0105 0 -0.0105 0.075 0 -0.075 0.0105 0 0.0105 -0.0105 0 -0.0105</float_array>\n                    <technique_common>\n                        <accessor count=\"176\" source=\"#shape0-lib-positions-array\" stride=\"3\">\n                            <param name=\"X\" type=\"float\"/>\n                            <param name=\"Y\" type=\"float\"/>\n                            <param name=\"Z\" type=\"float\"/>\n                        </accessor>\n                    </technique_common>\n                </source>\n                <source id=\"shape0-lib-normals\" name=\"normal\">\n                    <float_array id=\"shape0-lib-normals-array\" count=\"1056\">0.000363625 0.998778 0.0494308 0 0.999197 0.0400607 0 0.999197 0.0400607 -0.000363625 0.998778 0.0494308 0.000527103 0.989253 0.146214 0.000373071 0.989613 0.143758 -0.000278244 0.969966 0.243241 0.00102001 0.963105 0.269125 -0.000679316 0.941328 0.337492 0.00120119 0.920781 0.390078 -0.000579788 0.903765 0.428028 0.000834117 0.863342 0.504618 0.000135927 0.857788 0.514003 -0.000124899 0.803148 0.59578 0.00111953 0.791723 0.61088 -0.000775579 0.740563 0.671987 0.00151117 0.707109 0.707103 -0.000829384 0.671147 0.741324 0.00123904 0.610876 0.791725 -0.000152362 0.595626 0.803262 0.000165403 0.514176 0.857685 0.00112264 0.50462 0.863341 -0.000800265 0.427246 0.904135 0.00176982 0.390073 0.920782 -0.00104986 0.336555 0.941663 0.00163255 0.269126 0.963104 -0.000475351 0.242871 0.970059 0.000608844 0.146816 0.989164 0.000926745 0.143756 0.989613 -0.00067475 0.0490349 0.998797 0 0.0400607 0.999197 0 0.0400607 0.999197 0.00067475 0.0490349 0.998797 -0.000926745 0.143756 0.989613 -0.000608844 0.146816 0.989164 0.000475351 0.242871 0.970059 -0.00163255 0.269126 0.963104 0.00104986 0.336555 0.941663 -0.00176982 0.390073 0.920782 0.000800265 0.427246 0.904135 -0.00112264 0.50462 0.863341 -0.000165403 0.514176 0.857685 0.000152362 0.595626 0.803262 -0.00123905 0.610876 0.791725 0.000829384 0.671147 0.741324 -0.00151117 0.707109 0.707103 0.000775579 0.740563 0.671987 -0.00111953 0.791723 0.61088 0.000124899 0.803148 0.59578 -0.000135927 0.857788 0.514003 -0.000834117 0.863342 0.504618 0.000579788 0.903765 0.428028 -0.00120119 0.920781 0.390078 0.000679316 0.941328 0.337492 -0.00102001 0.963105 0.269125 0.000278244 0.969966 0.243241 -0.000373071 0.989613 0.143758 -0.000527103 0.989253 0.146214 0 0.989613 0.143758 0 0.963105 0.269125 0 0.989613 0.143758 0 0.920782 0.390078 0 0.963105 0.269125 0 0.863342 0.504618 0 0.920782 0.390078 0 0.791723 0.61088 0 0.863342 0.504618 0 0.70711 0.707104 0 0.791723 0.61088 0 0.610877 0.791726 0 0.70711 0.707104 0 0.504621 0.863341 0 0.610877 0.791726 0 0.390074 0.920784 0 0.504621 0.863341 0 0.269126 0.963105 0 0.390074 0.920784 0 0.143756 0.989613 0 0.269126 0.963105 0 0.143756 0.989613 0.0494308 0.998778 -0.000363625 0.0400607 0.999197 0 0.0400607 0.999197 0 0.0494308 0.998778 0.000363625 0.146214 0.989253 -0.000527103 0.143758 0.989613 -0.000373071 0.243241 0.969966 0.000278244 0.269125 0.963105 -0.00102001 0.337492 0.941328 0.000679316 0.390078 0.920781 -0.00120119 0.428028 0.903765 0.000579788 0.504618 0.863342 -0.000834117 0.514003 0.857788 -0.000135927 0.59578 0.803148 0.000124899 0.61088 0.791723 -0.00111953 0.671987 0.740563 0.000775579 0.707103 0.707109 -0.00151117 0.741324 0.671147 0.000829384 0.791725 0.610876 -0.00123904 0.803262 0.595626 0.000152362 0.857685 0.514176 -0.000165403 0.863341 0.50462 -0.00112264 0.904135 0.427246 0.000800265 0.920782 0.390073 -0.00176982 0.941663 0.336555 0.00104986 0.963104 0.269126 -0.00163255 0.970059 0.242871 0.000475351 0.989164 0.146816 -0.000608844 0.989613 0.143756 -0.000926745 0.998797 0.0490349 0.00067475 0.999197 0.0400607 0 0.999197 0.0400607 0 0.998797 0.0490349 -0.00067475 0.989613 0.143756 0.000926745 0.989164 0.146816 0.000608844 0.970059 0.242871 -0.000475351 0.963104 0.269126 0.00163255 0.941663 0.336555 -0.00104986 0.920782 0.390073 0.00176982 0.904135 0.427246 -0.000800265 0.863341 0.50462 0.00112264 0.857685 0.514176 0.000165403 0.803262 0.595626 -0.000152362 0.791725 0.610876 0.00123905 0.741324 0.671147 -0.000829384 0.707103 0.707109 0.00151117 0.671987 0.740563 -0.000775579 0.61088 0.791723 0.00111953 0.59578 0.803148 -0.000124899 0.514003 0.857788 0.000135927 0.504618 0.863342 0.000834117 0.428028 0.903765 -0.000579788 0.390078 0.920781 0.00120119 0.337492 0.941328 -0.000679316 0.269125 0.963105 0.00102001 0.243241 0.969966 -0.000278244 0.143758 0.989613 0.000373071 0.146214 0.989253 0.000527103 0.143758 0.989613 0 0.269125 0.963105 0 0.143758 0.989613 0 0.390078 0.920782 0 0.269125 0.963105 0 0.504618 0.863342 0 0.390078 0.920782 0 0.61088 0.791723 0 0.504618 0.863342 0 0.707104 0.70711 0 0.61088 0.791723 0 0.791726 0.610877 0 0.707104 0.70711 0 0.863341 0.504621 0 0.791726 0.610877 0 0.920784 0.390074 0 0.863341 0.504621 0 0.963105 0.269126 0 0.920784 0.390074 0 0.989613 0.143756 0 0.963105 0.269126 0 0.989613 0.143756 0 -0.000363625 0.998778 -0.0494308 0 0.999197 -0.0400607 0 0.999197 -0.0400607 0.000363625 0.998778 -0.0494308 -0.000527103 0.989253 -0.146214 -0.000373071 0.989613 -0.143758 0.000278244 0.969966 -0.243241 -0.00102001 0.963105 -0.269125 0.000679316 0.941328 -0.337492 -0.00120119 0.920781 -0.390078 0.000579788 0.903765 -0.428028 -0.000834117 0.863342 -0.504618 -0.000135927 0.857788 -0.514003 0.000124899 0.803148 -0.59578 -0.00111953 0.791723 -0.61088 0.000775579 0.740563 -0.671987 -0.00151117 0.707109 -0.707103 0.000829384 0.671147 -0.741324 -0.00123904 0.610876 -0.791725 0.000152362 0.595626 -0.803262 -0.000165403 0.514176 -0.857685 -0.00112264 0.50462 -0.863341 0.000800265 0.427246 -0.904135 -0.00176982 0.390073 -0.920782 0.00104986 0.336555 -0.941663 -0.00163255 0.269126 -0.963104 0.000475351 0.242871 -0.970059 -0.000608844 0.146816 -0.989164 -0.000926745 0.143756 -0.989613 0.00067475 0.0490349 -0.998797 0 0.0400607 -0.999197 0 0.0400607 -0.999197 -0.00067475 0.0490349 -0.998797 0.000926745 0.143756 -0.989613 0.000608844 0.146816 -0.989164 -0.000475351 0.242871 -0.970059 0.00163255 0.269126 -0.963104 -0.00104986 0.336555 -0.941663 0.00176982 0.390073 -0.920782 -0.000800265 0.427246 -0.904135 0.00112264 0.50462 -0.863341 0.000165403 0.514176 -0.857685 -0.000152362 0.595626 -0.803262 0.00123905 0.610876 -0.791725 -0.000829384 0.671147 -0.741324 0.00151117 0.707109 -0.707103 -0.000775579 0.740563 -0.671987 0.00111953 0.791723 -0.61088 -0.000124899 0.803148 -0.59578 0.000135927 0.857788 -0.514003 0.000834117 0.863342 -0.504618 -0.000579788 0.903765 -0.428028 0.00120119 0.920781 -0.390078 -0.000679316 0.941328 -0.337492 0.00102001 0.963105 -0.269125 -0.000278244 0.969966 -0.243241 0.000373071 0.989613 -0.143758 0.000527103 0.989253 -0.146214 0 0.989613 -0.143758 0 0.963105 -0.269125 0 0.989613 -0.143758 0 0.920782 -0.390078 0 0.963105 -0.269125 0 0.863342 -0.504618 0 0.920782 -0.390078 0 0.791723 -0.61088 0 0.863342 -0.504618 0 0.70711 -0.707104 0 0.791723 -0.61088 0 0.610877 -0.791726 0 0.70711 -0.707104 0 0.504621 -0.863341 0 0.610877 -0.791726 0 0.390074 -0.920784 0 0.504621 -0.863341 0 0.269126 -0.963105 0 0.390074 -0.920784 0 0.143756 -0.989613 0 0.269126 -0.963105 0 0.143756 -0.989613 -0.998797 0.0490349 -0.00067475 -0.999197 0.0400607 0 -0.999197 0.0400607 0 -0.998797 0.0490349 0.00067475 -0.989613 0.143756 -0.000926745 -0.989164 0.146816 -0.000608844 -0.970059 0.242871 0.000475351 -0.963104 0.269126 -0.00163255 -0.941663 0.336555 0.00104986 -0.920782 0.390073 -0.00176982 -0.904135 0.427246 0.000800265 -0.863341 0.50462 -0.00112264 -0.857685 0.514176 -0.000165403 -0.803262 0.595626 0.000152362 -0.791725 0.610876 -0.00123905 -0.741324 0.671147 0.000829384 -0.707103 0.707109 -0.00151117 -0.671987 0.740563 0.000775579 -0.61088 0.791723 -0.00111953 -0.59578 0.803148 0.000124899 -0.514003 0.857788 -0.000135927 -0.504618 0.863342 -0.000834117 -0.428028 0.903765 0.000579788 -0.390078 0.920781 -0.00120119 -0.337492 0.941328 0.000679316 -0.269125 0.963105 -0.00102001 -0.243241 0.969966 0.000278244 -0.143758 0.989613 -0.000373071 -0.146214 0.989253 -0.000527103 -0.0494308 0.998778 0.000363625 -0.0400607 0.999197 0 -0.0400607 0.999197 0 -0.143758 0.989613 0 -0.143758 0.989613 0 -0.269125 0.963105 0 -0.269125 0.963105 0 -0.390078 0.920782 0 -0.390078 0.920782 0 -0.504618 0.863342 0 -0.504618 0.863342 0 -0.61088 0.791723 0 -0.61088 0.791723 0 -0.707104 0.70711 0 -0.707104 0.70711 0 -0.791726 0.610877 0 -0.791726 0.610877 0 -0.863341 0.504621 0 -0.863341 0.504621 0 -0.920784 0.390074 0 -0.920784 0.390074 0 -0.963105 0.269126 0 -0.963105 0.269126 0 -0.989613 0.143756 0 -0.989613 0.143756 0 -0.0494308 0.998778 -0.000363625 -0.146214 0.989253 0.000527103 -0.143758 0.989613 0.000373071 -0.243241 0.969966 -0.000278244 -0.269125 0.963105 0.00102001 -0.337492 0.941328 -0.000679316 -0.390078 0.920781 0.00120119 -0.428028 0.903765 -0.000579788 -0.504618 0.863342 0.000834117 -0.514003 0.857788 0.000135927 -0.59578 0.803148 -0.000124899 -0.61088 0.791723 0.00111953 -0.671987 0.740563 -0.000775579 -0.707103 0.707109 0.00151117 -0.741324 0.671147 -0.000829384 -0.791725 0.610876 0.00123904 -0.803262 0.595626 -0.000152362 -0.857685 0.514176 0.000165403 -0.863341 0.50462 0.00112264 -0.904135 0.427246 -0.000800265 -0.920782 0.390073 0.00176982 -0.941663 0.336555 -0.00104986 -0.963104 0.269126 0.00163255 -0.970059 0.242871 -0.000475351 -0.989164 0.146816 0.000608844 -0.989613 0.143756 0.000926745 -1 0 0 -1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 -1 0 0 -1 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0</float_array>\n                    <technique_common>\n                        <accessor count=\"352\" source=\"#shape0-lib-normals-array\" stride=\"3\">\n                            <param name=\"X\" type=\"float\"/>\n                            <param name=\"Y\" type=\"float\"/>\n                            <param name=\"Z\" type=\"float\"/>\n                        </accessor>\n                    </technique_common>\n                </source>\n                <vertices id=\"shape0-lib-vertices\">\n                    <input semantic=\"POSITION\" source=\"#shape0-lib-positions\"/>\n                </vertices>\n                <triangles count=\"352\">\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#shape0-lib-vertices\"/>\n                    <input offset=\"1\" semantic=\"NORMAL\" source=\"#shape0-lib-normals\"/>\n                    <p>144 0 162 0 0 0 0 1 162 1 163 1 0 2 163 2 30 2 30 3 163 3 45 3 30 4 45 4 73 4 30 5 73 5 1 5 1 6 73 6 2 6 1 7 2 7 3 7 3 8 2 8 4 8 3 9 4 9 31 9 31 10 4 10 5 10 31 11 5 11 36 11 36 12 5 12 6 12 36 13 6 13 7 13 36 14 7 14 34 14 34 15 7 15 8 15 34 16 8 16 10 16 10 17 8 17 9 17 10 18 9 18 40 18 40 19 9 19 11 19 40 20 11 20 12 20 40 21 12 21 13 21 13 22 12 22 14 22 13 23 14 23 43 23 43 24 14 24 15 24 43 25 15 25 17 25 17 26 15 26 16 26 17 27 16 27 18 27 17 28 18 28 44 28 44 29 18 29 19 29 44 30 19 30 20 30 44 31 20 31 42 31 42 32 20 32 159 32 42 33 159 33 21 33 21 34 159 34 158 34 21 35 158 35 157 35 21 36 157 36 41 36 41 37 157 37 155 37 41 38 155 38 39 38 39 39 155 39 22 39 39 40 22 40 37 40 37 41 22 41 153 41 37 42 153 42 23 42 37 43 23 43 38 43 38 44 23 44 152 44 38 45 152 45 35 45 35 46 152 46 24 46 35 47 24 47 33 47 33 48 24 48 25 48 33 49 25 49 26 49 33 50 26 50 32 50 32 51 26 51 147 51 32 52 147 52 29 52 29 53 147 53 146 53 29 54 146 54 27 54 27 55 146 55 28 55 27 56 28 56 0 56 0 57 28 57 144 57 27 58 0 58 30 58 29 59 27 59 1 59 1 60 27 60 30 60 32 61 29 61 3 61 3 62 29 62 1 62 33 63 32 63 31 63 31 64 32 64 3 64 35 65 33 65 36 65 36 66 33 66 31 66 38 67 35 67 34 67 34 68 35 68 36 68 37 69 38 69 10 69 10 70 38 70 34 70 39 71 37 71 40 71 40 72 37 72 10 72 41 73 39 73 13 73 13 74 39 74 40 74 21 75 41 75 43 75 43 76 41 76 13 76 42 77 21 77 17 77 17 78 21 78 43 78 44 79 42 79 17 79 45 80 163 80 75 80 75 81 163 81 46 81 75 82 46 82 76 82 76 83 46 83 86 83 76 84 86 84 47 84 76 85 47 85 77 85 77 86 47 86 48 86 77 87 48 87 78 87 78 88 48 88 111 88 78 89 111 89 49 89 49 90 111 90 50 90 49 91 50 91 53 91 53 92 50 92 51 92 53 93 51 93 52 93 53 94 52 94 80 94 80 95 52 95 54 95 80 96 54 96 55 96 55 97 54 97 56 97 55 98 56 98 58 98 58 99 56 99 57 99 58 100 57 100 59 100 58 101 59 101 60 101 60 102 59 102 61 102 60 103 61 103 62 103 62 104 61 104 63 104 62 105 63 105 65 105 65 106 63 106 64 106 65 107 64 107 66 107 65 108 66 108 85 108 85 109 66 109 67 109 85 110 67 110 19 110 85 111 19 111 84 111 84 112 19 112 18 112 84 113 18 113 68 113 68 114 18 114 16 114 68 115 16 115 15 115 68 116 15 116 69 116 69 117 15 117 14 117 69 118 14 118 83 118 83 119 14 119 12 119 83 120 12 120 82 120 82 121 12 121 11 121 82 122 11 122 9 122 82 123 9 123 70 123 70 124 9 124 8 124 70 125 8 125 81 125 81 126 8 126 7 126 81 127 7 127 71 127 71 128 7 128 6 128 71 129 6 129 5 129 71 130 5 130 79 130 79 131 5 131 4 131 79 132 4 132 72 132 72 133 4 133 2 133 72 134 2 134 74 134 74 135 2 135 73 135 74 136 73 136 75 136 75 137 73 137 45 137 74 138 75 138 76 138 72 139 74 139 77 139 77 140 74 140 76 140 79 141 72 141 78 141 78 142 72 142 77 142 71 143 79 143 49 143 49 144 79 144 78 144 81 145 71 145 53 145 53 146 71 146 49 146 70 147 81 147 80 147 80 148 81 148 53 148 82 149 70 149 55 149 55 150 70 150 80 150 83 151 82 151 58 151 58 152 82 152 55 152 69 153 83 153 60 153 60 154 83 154 58 154 68 155 69 155 62 155 62 156 69 156 60 156 84 157 68 157 65 157 65 158 68 158 62 158 85 159 84 159 65 159 86 160 46 160 114 160 114 161 46 161 164 161 114 162 164 162 116 162 116 163 164 163 87 163 116 164 87 164 89 164 116 165 89 165 88 165 88 166 89 166 90 166 88 167 90 167 117 167 117 168 90 168 131 168 117 169 131 169 118 169 118 170 131 170 130 170 118 171 130 171 119 171 119 172 130 172 91 172 119 173 91 173 92 173 119 174 92 174 121 174 121 175 92 175 93 175 121 176 93 176 94 176 94 177 93 177 95 177 94 178 95 178 97 178 97 179 95 179 96 179 97 180 96 180 98 180 97 181 98 181 122 181 122 182 98 182 128 182 122 183 128 183 99 183 99 184 128 184 100 184 99 185 100 185 102 185 102 186 100 186 101 186 102 187 101 187 103 187 102 188 103 188 104 188 104 189 103 189 125 189 104 190 125 190 67 190 104 191 67 191 105 191 105 192 67 192 66 192 105 193 66 193 123 193 123 194 66 194 64 194 123 195 64 195 63 195 123 196 63 196 106 196 106 197 63 197 61 197 106 198 61 198 107 198 107 199 61 199 59 199 107 200 59 200 108 200 108 201 59 201 57 201 108 202 57 202 56 202 108 203 56 203 109 203 109 204 56 204 54 204 109 205 54 205 110 205 110 206 54 206 52 206 110 207 52 207 120 207 120 208 52 208 51 208 120 209 51 209 50 209 120 210 50 210 112 210 112 211 50 211 111 211 112 212 111 212 113 212 113 213 111 213 48 213 113 214 48 214 115 214 115 215 48 215 47 215 115 216 47 216 114 216 114 217 47 217 86 217 115 218 114 218 116 218 113 219 115 219 88 219 88 220 115 220 116 220 112 221 113 221 117 221 117 222 113 222 88 222 120 223 112 223 118 223 118 224 112 224 117 224 110 225 120 225 119 225 119 226 120 226 118 226 109 227 110 227 121 227 121 228 110 228 119 228 108 229 109 229 94 229 94 230 109 230 121 230 107 231 108 231 97 231 97 232 108 232 94 232 106 233 107 233 122 233 122 234 107 234 97 234 123 235 106 235 99 235 99 236 106 236 122 236 105 237 123 237 102 237 102 238 123 238 99 238 104 239 105 239 102 239 159 240 20 240 124 240 124 241 20 241 125 241 124 242 125 242 126 242 126 243 125 243 103 243 126 244 103 244 143 244 143 245 103 245 101 245 143 246 101 246 100 246 143 247 100 247 127 247 127 248 100 248 128 248 127 249 128 249 141 249 141 250 128 250 98 250 141 251 98 251 140 251 140 252 98 252 96 252 140 253 96 253 95 253 140 254 95 254 129 254 129 255 95 255 93 255 129 256 93 256 139 256 139 257 93 257 92 257 139 258 92 258 138 258 138 259 92 259 91 259 138 260 91 260 130 260 138 261 130 261 137 261 137 262 130 262 131 262 137 263 131 263 134 263 134 264 131 264 90 264 134 265 90 265 133 265 133 266 90 266 89 266 133 267 89 267 132 267 132 268 89 268 87 268 132 269 87 269 164 269 164 270 162 270 132 270 132 271 162 271 145 271 132 272 145 272 133 272 133 273 145 273 135 273 133 274 135 274 134 274 134 275 135 275 136 275 134 276 136 276 137 276 137 277 136 277 148 277 137 278 148 278 138 278 138 279 148 279 149 279 138 280 149 280 139 280 139 281 149 281 150 281 139 282 150 282 129 282 129 283 150 283 151 283 129 284 151 284 140 284 140 285 151 285 154 285 140 286 154 286 141 286 141 287 154 287 142 287 141 288 142 288 127 288 127 289 142 289 156 289 127 290 156 290 143 290 143 291 156 291 160 291 143 292 160 292 126 292 126 293 160 293 124 293 162 294 144 294 145 294 145 295 144 295 28 295 145 296 28 296 135 296 135 297 28 297 146 297 135 298 146 298 136 298 136 299 146 299 147 299 136 300 147 300 148 300 148 301 147 301 26 301 148 302 26 302 149 302 149 303 26 303 25 303 149 304 25 304 24 304 149 305 24 305 150 305 150 306 24 306 152 306 150 307 152 307 151 307 151 308 152 308 23 308 151 309 23 309 154 309 154 310 23 310 153 310 154 311 153 311 22 311 154 312 22 312 142 312 142 313 22 313 155 313 142 314 155 314 156 314 156 315 155 315 157 315 156 316 157 316 160 316 160 317 157 317 158 317 160 318 158 318 159 318 160 319 159 319 124 319 125 320 20 320 174 320 174 321 20 321 172 321 20 322 19 322 172 322 172 323 19 323 175 323 167 324 169 324 164 324 164 325 169 325 161 325 164 326 161 326 162 326 162 327 161 327 171 327 162 328 171 328 163 328 163 329 171 329 167 329 163 330 167 330 46 330 46 331 167 331 164 331 19 332 67 332 175 332 175 333 67 333 165 333 67 334 125 334 165 334 165 335 125 335 174 335 166 336 168 336 167 336 167 337 168 337 169 337 170 338 166 338 171 338 171 339 166 339 167 339 173 340 170 340 161 340 161 341 170 341 171 341 168 342 173 342 169 342 169 343 173 343 161 343 170 344 173 344 172 344 172 345 173 345 168 345 172 346 168 346 174 346 174 347 168 347 166 347 174 348 166 348 165 348 165 349 166 349 170 349 165 350 170 350 175 350 175 351 170 351 172 351</p>\n                </triangles>\n            </mesh>\n        </geometry>\n    </library_geometries>\n    <library_visual_scenes>\n        <visual_scene id=\"VisualSceneNode\" name=\"VisualScene\">\n            <node id=\"node\" name=\"node\">\n                <instance_geometry url=\"#shape0-lib\">\n                    <bind_material>\n                        <technique_common/>\n                    </bind_material>\n                </instance_geometry>\n            </node>\n        </visual_scene>\n    </library_visual_scenes>\n    <scene>\n        <instance_visual_scene url=\"#VisualSceneNode\"/>\n    </scene>\n</COLLADA>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/simple_peg_board/model.config",
    "content": "<?xml version=\"1.0\"?>\n\n<model>\n  <name>Simple Peg board</name>\n  <version>1.0</version>\n  <sdf version='1.5'>model.sdf</sdf>\n\n  <author>\n    <name>Cristian beltran</name>\n    <email>nanaki07@gmail.com</email>\n  </author>\n\n  <description>\n    Board for square peg of 2cm\n  </description>\n</model>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/simple_peg_board/model.sdf",
    "content": "<?xml version='1.0'?>\n<sdf version='1.6'>\n  <model name='simple_peg_board'>\n    <static>true</static>\n    <link name='board'>\n      <pose frame=''>0.0 0.0 -0.01 1.5707 0 0</pose>\n      <self_collide>0</self_collide>\n      <kinematic>0</kinematic>\n      <gravity>1</gravity>\n      <inertial>\n        <mass>1</mass>\n        <pose frame=''>0 0 0 0 0 0</pose>\n        <inertia>\n          <ixx>0.999223</ixx>\n          <ixy>0.039421</ixy>\n          <ixz>0.000141</ixz>\n          <iyy>0.999222</iyy>\n          <iyz>-0.001474</iyz>\n          <izz>0.999999</izz>\n        </inertia>\n      </inertial>\n      <visual name='visual'>\n        <transparency> 0.2 </transparency>\n        <pose frame=''>0 0 0 0 0 0</pose>\n        <geometry>\n          <mesh>\n            <uri>model://simple_peg_board/meshes/simple_board.dae</uri>\n              <scale>1.0 1.0 1.0</scale>\n          </mesh>\n        </geometry>\n        <material>\n          <script>\n            <uri>model://media/materials/scripts/gazebo.material</uri>\n            <name>Gazebo/Red</name>\n          </script>\n        </material>\n        <transparency>0</transparency>\n        <cast_shadows>1</cast_shadows>\n      </visual>\n      <collision name='collision'>\n        <pose frame=''>0 0 0 0 0 0</pose>\n        <laser_retro>0</laser_retro>\n        <max_contacts>10</max_contacts>\n        <geometry>\n          <mesh>\n            <uri>model://simple_peg_board/meshes/simple_board.dae</uri>\n            <scale>1.0 1.0 1.0</scale>\n          </mesh>\n        </geometry>\n        <surface>\n          <friction>\n            <ode>\n              <mu>1</mu>\n              <mu2>1</mu2>\n              <fdir1>0 0 0</fdir1>\n              <slip1>0.1</slip1>\n              <slip2>0.1</slip2>\n            </ode>\n            <torsional>\n              <coefficient>1</coefficient>\n              <patch_radius>0</patch_radius>\n              <surface_radius>0</surface_radius>\n              <use_patch_radius>1</use_patch_radius>\n              <ode>\n                <slip>0</slip>\n              </ode>\n            </torsional>\n          </friction>\n          <bounce>\n            <restitution_coefficient>0</restitution_coefficient>\n            <threshold>1e+06</threshold>\n          </bounce>\n          <contact>\n            <collide_without_contact>0</collide_without_contact>\n            <collide_without_contact_bitmask>1</collide_without_contact_bitmask>\n            <collide_bitmask>1</collide_bitmask>\n            <ode>\n              <kp>2.5e+6</kp>\n              <kd>1</kd>\n              <max_vel>0.01</max_vel>\n              <min_depth>0</min_depth>\n            </ode>\n          </contact>\n        </surface>\n      </collision>\n    </link>\n    <static>1</static>\n    <allow_auto_disable>1</allow_auto_disable>\n  </model>\n</sdf>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/ur3_base/meshes/dualbase.dae",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<COLLADA xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" version=\"1.4.1\">\n    <asset>\n        <contributor>\n            <author>VCGLab</author>\n            <authoring_tool>VCGLib | MeshLab</authoring_tool>\n        </contributor>\n        <up_axis>Y_UP</up_axis>\n        <created>月 11月 18 09:01:17 2019</created>\n        <modified>月 11月 18 09:01:17 2019</modified>\n    </asset>\n    <library_images/>\n    <library_materials/>\n    <library_effects/>\n    <library_geometries>\n        <geometry id=\"shape0-lib\" name=\"shape0\">\n            <mesh>\n                <source id=\"shape0-lib-positions\" name=\"position\">\n                    <float_array id=\"shape0-lib-positions-array\" count=\"36420\">-1.14742 -0.22052 1.66495 -1.24918 -0.220519 1.64973 -1.12918 -0.220519 1.64973 -1.23107 -0.220521 1.75421 -1.12918 -0.220519 1.76973 -1.24918 -0.220519 1.76973 -1.24918 -0.215519 1.76973 -1.23088 -0.215516 1.66506 -1.24918 -0.215519 1.64973 -1.12918 -0.215519 1.64973 -1.23049 -0.215518 1.75443 -1.14748 -0.215519 1.7541 -1.12918 -0.215519 1.76973 -1.14746 -0.220519 1.7542 -1.14757 -0.215522 1.66557 -1.23123 -0.220518 1.66533 -1.14702 -0.22051 0.975133 -1.24918 -0.220519 1.07973 -1.14742 -0.220523 1.06407 -1.12918 -0.220519 1.07973 -1.24918 -0.220519 0.959733 -1.12918 -0.220519 0.959733 -1.24918 -0.215519 1.07973 -1.24918 -0.215519 0.959733 -1.12918 -0.215519 0.959733 -1.12918 -0.215519 1.07973 -1.14701 -0.215521 1.064 -1.23063 -0.215526 1.06434 -1.23095 -0.220518 1.06397 -1.14703 -0.215516 0.975832 -1.23096 -0.220515 0.975004 -1.23151 -0.215526 0.975527 -1.15918 -0.370519 0.994733 -1.15918 -0.370519 1.04473 -1.15918 -0.390391 1.03516 -1.14521 -0.397492 1.04473 -1.14518 -0.375019 1.04473 -1.14518 -0.388819 1.03665 -1.14518 -0.375019 0.994733 -1.14518 -0.397519 0.994733 -1.09618 -0.446519 1.04473 -1.07368 -0.446519 1.04473 -1.09618 -0.446519 0.994733 -1.07368 -0.446519 0.994733 -1.06918 -0.460519 0.994733 -1.06918 -0.451019 0.994733 -1.15918 -0.460519 1.04473 -1.06918 -0.460519 1.04473 -1.15918 -0.460519 0.994733 -1.06918 -0.451019 1.04473 -1.14968 -0.370519 1.04473 -1.14968 -0.370519 0.994733 -1.08915 -0.46052 1.00466 -1.08929 -0.446514 1.00447 -1.08918 -0.446518 1.03503 -1.08895 -0.460519 1.03478 -1.15918 -0.390303 1.00482 -1.14517 -0.390374 1.00473 -1.15918 -0.460519 1.68473 -1.08869 -0.46052 1.69467 -1.08745 -0.446517 1.69492 -1.07368 -0.446519 1.68473 -1.0959 -0.446802 1.68473 -1.14518 -0.375019 1.73473 -1.14518 -0.388578 1.69302 -1.14518 -0.375019 1.68473 -1.14968 -0.370519 1.73473 -1.15918 -0.370519 1.73473 -1.15918 -0.370519 1.68473 -1.06918 -0.460519 1.68473 -1.14519 -0.397512 1.68473 -1.14968 -0.370519 1.68473 -1.06918 -0.451019 1.73473 -1.07368 -0.446519 1.73473 -1.06918 -0.451019 1.68473 -1.06918 -0.460519 1.73473 -1.15918 -0.460519 1.73473 -1.09618 -0.446519 1.73473 -1.14518 -0.397519 1.73473 -1.15918 -0.390407 1.72503 -1.14517 -0.390605 1.72517 -1.15918 -0.390266 1.69495 -1.08948 -0.460519 1.72487 -1.08959 -0.446514 1.72488 0.0808214 -0.515519 1.58973 0.0808214 -0.465519 1.58973 0.080822 -0.475714 1.60922 0.0808229 -0.505389 1.60953 0.0668214 -0.515519 1.59423 0.0668211 -0.507703 1.60723 0.0668228 -0.502947 1.61259 0.0668214 -0.515519 1.61673 0.0668214 -0.465519 1.59423 0.0668214 -0.465519 1.61673 0.0178214 -0.515519 1.66573 -0.00467862 -0.515519 1.66573 -0.00917862 -0.515519 1.67023 -0.00917862 -0.465519 1.67973 0.0808214 -0.515519 1.67973 0.0106967 -0.475239 1.67973 -0.00917862 -0.515519 1.67973 0.0808214 -0.465519 1.67973 0.0713214 -0.465519 1.58973 0.0713214 -0.515519 1.58973 0.0178214 -0.465519 1.66573 -0.00467862 -0.465519 1.66573 -0.00917862 -0.465519 1.67023 0.0109137 -0.475192 1.66572 0.0105054 -0.505801 1.67973 0.0135557 -0.502298 1.66573 0.00846779 -0.508328 1.66573 0.0668132 -0.475678 1.60936 0.0808214 -0.465519 1.13973 0.0808214 -0.465519 1.04973 0.0808214 -0.515519 1.13973 0.0808221 -0.475744 1.12014 0.066817 -0.47562 1.11988 0.0668214 -0.465519 1.11273 0.0668214 -0.465519 1.13523 0.0178214 -0.465519 1.06373 0.0108206 -0.505907 1.06373 -0.00467862 -0.465519 1.06373 0.0178214 -0.515519 1.06373 -0.00467862 -0.515519 1.06373 -0.00917862 -0.465519 1.05923 -0.00917862 -0.515519 1.04973 0.0106772 -0.475495 1.04973 -0.00917862 -0.465519 1.04973 0.0808214 -0.515519 1.04973 0.0713214 -0.515519 1.13973 0.0713214 -0.465519 1.13973 0.0668214 -0.515519 1.13523 0.0668214 -0.515519 1.11273 -0.00917862 -0.515519 1.05923 0.0109256 -0.475242 1.06373 0.0106396 -0.505751 1.04973 0.080822 -0.505376 1.1202 0.0668135 -0.5053 1.12013 -1.15918 -0.465519 1.67973 -1.15918 -0.515519 1.67973 -1.06918 -0.465519 1.67973 -1.08875 -0.50555 1.67973 -1.09618 -0.465519 1.66573 -1.07368 -0.515519 1.66573 -1.08778 -0.505847 1.66573 -1.09619 -0.515519 1.66572 -1.07368 -0.465519 1.66573 -1.14518 -0.515519 1.59423 -1.14564 -0.515515 1.61627 -1.14518 -0.465519 1.61673 -1.14968 -0.515519 1.58973 -1.15918 -0.465519 1.58973 -1.14968 -0.465519 1.58973 -1.15918 -0.515519 1.58973 -1.15918 -0.475475 1.60953 -1.06918 -0.515519 1.67023 -1.06918 -0.515519 1.67973 -1.06918 -0.465519 1.67023 -1.14518 -0.465519 1.59423 -1.14518 -0.475526 1.60968 -1.15918 -0.50524 1.60953 -1.14518 -0.502071 1.60781 -1.08913 -0.475486 1.67973 -1.08916 -0.475391 1.66572 -1.15918 -0.465519 1.13973 -1.14518 -0.505258 1.11997 -1.14518 -0.515519 1.13523 -1.14518 -0.465519 1.13523 -1.14518 -0.465519 1.11273 -1.14518 -0.515519 1.11273 -1.09618 -0.465519 1.06373 -1.07368 -0.465519 1.06373 -1.06918 -0.515519 1.05923 -1.06918 -0.465519 1.04973 -1.06918 -0.515519 1.04973 -1.15918 -0.515519 1.04973 -1.08929 -0.475502 1.04973 -1.15918 -0.465519 1.04973 -1.14968 -0.515519 1.13973 -1.15918 -0.515519 1.13973 -1.09618 -0.515519 1.06373 -1.07368 -0.515519 1.06373 -1.14968 -0.465519 1.13973 -1.06918 -0.465519 1.05923 -1.08948 -0.475429 1.06374 -1.08872 -0.505716 1.04973 -1.08881 -0.505902 1.06373 -1.14518 -0.47519 1.11998 -1.15918 -0.475476 1.12005 -1.15918 -0.505251 1.12016 -1.21418 -0.460519 1.13973 -1.16418 -0.460519 1.04973 -1.21418 -0.460519 1.04973 -1.17368 -0.46052 1.1202 -1.21418 -0.446519 1.13523 -1.16418 -0.446519 1.11273 -1.16418 -0.446519 1.13523 -1.1738 -0.446515 1.12002 -1.21418 -0.446519 1.11273 -1.21418 -0.397519 1.06373 -1.16418 -0.375019 1.06373 -1.16418 -0.397512 1.06372 -1.21418 -0.375019 1.06373 -1.21418 -0.370519 1.04973 -1.16418 -0.370519 1.04973 -1.16418 -0.370519 1.05923 -1.16418 -0.460519 1.13973 -1.21418 -0.451019 1.13973 -1.16418 -0.451019 1.13973 -1.21418 -0.370519 1.05923 -1.20447 -0.390987 1.06373 -1.17426 -0.390079 1.04973 -1.17307 -0.388018 1.06373 -1.20435 -0.390648 1.04973 -1.20452 -0.460519 1.11993 -1.20453 -0.446519 1.1197 -1.21418 -0.370519 1.67973 -1.16418 -0.370519 1.67973 -1.16418 -0.375019 1.66573 -1.17298 -0.389203 1.66573 -1.21418 -0.375019 1.66573 -1.21418 -0.397519 1.66573 -1.16418 -0.397519 1.66573 -1.16418 -0.446519 1.61673 -1.16418 -0.446519 1.59423 -1.21418 -0.446519 1.61673 -1.16418 -0.451019 1.58973 -1.21418 -0.451019 1.58973 -1.16418 -0.460519 1.58973 -1.21418 -0.460519 1.58973 -1.21418 -0.460519 1.67973 -1.16418 -0.460519 1.67973 -1.16418 -0.370519 1.67023 -1.21418 -0.370519 1.67023 -1.21418 -0.446519 1.59423 -1.20454 -0.44651 1.60947 -1.17445 -0.460519 1.60945 -1.17437 -0.446517 1.60962 -1.20453 -0.460519 1.6094 -1.20428 -0.390528 1.67973 -1.20429 -0.390796 1.66573 -1.17382 -0.390071 1.67973 -0.609179 -0.460519 1.68473 -0.699179 -0.460519 1.73473 -0.699179 -0.460519 1.68473 -0.609179 -0.460519 1.73473 -0.679237 -0.460522 1.72492 -0.694679 -0.446519 1.68473 -0.681056 -0.446517 1.72643 -0.672179 -0.446519 1.68473 -0.67218 -0.44652 1.73473 -0.623179 -0.375019 1.68473 -0.623179 -0.397519 1.73473 -0.623179 -0.397519 1.68473 -0.623179 -0.375019 1.73473 -0.618679 -0.370519 1.73473 -0.609179 -0.370519 1.73473 -0.609179 -0.370519 1.68473 -0.694679 -0.446519 1.73473 -0.699179 -0.451019 1.68473 -0.699179 -0.451019 1.73473 -0.618679 -0.370519 1.68473 -0.623188 -0.390297 1.69443 -0.609179 -0.390776 1.72497 -0.623181 -0.390871 1.72507 -0.609178 -0.390276 1.69458 -0.679195 -0.460519 1.69484 -0.679075 -0.446511 1.69464 -0.699179 -0.460519 1.04473 -0.679452 -0.460519 1.00478 -0.679459 -0.46052 1.03514 -0.699179 -0.460519 0.994733 -0.694679 -0.446519 0.994733 -0.672286 -0.446625 1.04473 -0.694679 -0.446519 1.04473 -0.681317 -0.446518 1.03589 -0.672179 -0.446519 0.994733 -0.623179 -0.397519 1.04473 -0.623179 -0.375019 1.04473 -0.623179 -0.397519 0.994733 -0.623179 -0.375019 0.994733 -0.618679 -0.370519 0.994733 -0.618679 -0.370519 1.04473 -0.609179 -0.460519 1.04473 -0.609179 -0.370519 1.04473 -0.609178 -0.390272 1.00459 -0.609179 -0.460519 0.994733 -0.699179 -0.451019 1.04473 -0.699179 -0.451019 0.994733 -0.609179 -0.370519 0.994733 -0.623189 -0.390296 1.00443 -0.609179 -0.389977 1.03472 -0.623183 -0.390039 1.0348 -0.679424 -0.446511 1.00458 -0.549179 -0.515519 1.58973 -0.54918 -0.505596 1.60949 -0.549181 -0.475446 1.60905 -0.535179 -0.476284 1.6063 -0.535179 -0.465519 1.59423 -0.535179 -0.515519 1.59423 -0.535179 -0.515519 1.61673 -0.463679 -0.515519 1.66573 -0.463679 -0.465519 1.66573 -0.459179 -0.465519 1.67023 -0.549179 -0.465519 1.67973 -0.459179 -0.465519 1.67973 -0.459179 -0.515519 1.67973 -0.549179 -0.465519 1.58973 -0.535436 -0.465522 1.61647 -0.486179 -0.465519 1.66573 -0.539679 -0.515519 1.58973 -0.539679 -0.465519 1.58973 -0.549179 -0.515519 1.67973 -0.486179 -0.515519 1.66573 -0.459179 -0.515519 1.67023 -0.479256 -0.505936 1.66572 -0.479015 -0.475433 1.67973 -0.47912 -0.475279 1.66573 -0.479161 -0.505845 1.67973 -0.535173 -0.50577 1.60967 -0.609179 -0.465519 1.13973 -0.609179 -0.515519 1.13973 -0.609178 -0.505438 1.11982 -0.609177 -0.475792 1.12042 -0.62318 -0.47156 1.11984 -0.623179 -0.465519 1.13523 -0.623179 -0.479723 1.12034 -0.623179 -0.465519 1.11273 -0.623179 -0.515519 1.13523 -0.623179 -0.515519 1.11273 -0.672179 -0.515519 1.06373 -0.672179 -0.465519 1.06373 -0.694679 -0.465519 1.06373 -0.694679 -0.515519 1.06373 -0.699179 -0.515519 1.04973 -0.609179 -0.515519 1.04973 -0.699179 -0.465519 1.04973 -0.679081 -0.475713 1.04973 -0.609179 -0.465519 1.04973 -0.699179 -0.465519 1.05923 -0.618679 -0.515519 1.13973 -0.618679 -0.465519 1.13973 -0.699179 -0.515519 1.05923 -0.679397 -0.505804 1.06373 -0.678899 -0.475404 1.06373 -0.67957 -0.505805 1.04973 -0.623184 -0.50562 1.11964 -1.15718 -0.243769 1.76973 -1.15718 -0.239519 1.76973 -1.15718 -0.243769 1.64973 -1.15918 -0.239519 1.64973 -1.15718 -0.250519 1.64973 -1.14818 -0.250519 1.76973 -1.14818 -0.248519 1.76973 -1.14818 -0.248519 1.64973 -1.15243 -0.248519 1.76973 -1.15243 -0.245183 1.76973 -1.14876 -0.241519 1.64973 -1.14876 -0.241519 1.76973 -1.13959 -0.241519 1.76973 -1.13593 -0.245183 1.76973 -1.13593 -0.248519 1.76973 -1.13593 -0.245183 1.64973 -1.14018 -0.248519 1.76973 -1.14018 -0.248519 1.64973 -1.14018 -0.250519 1.76973 -1.12918 -0.248519 1.64973 -1.13118 -0.250519 1.76973 -1.12918 -0.239519 1.76973 -1.13118 -0.239519 1.64973 -1.13451 -0.243769 1.64973 -1.13845 -0.235725 1.76973 -1.13118 -0.231519 1.64973 -1.13118 -0.231519 1.76973 -1.12918 -0.231519 1.76973 -1.13118 -0.220519 1.76973 -1.14018 -0.222519 1.76973 -1.14018 -0.222519 1.64973 -1.15243 -0.225855 1.64973 -1.15243 -0.222519 1.76973 -1.14818 -0.220519 1.64973 -1.15918 -0.222519 1.64973 -1.15718 -0.220519 1.76973 -1.15918 -0.231519 1.76973 -1.15918 -0.231519 1.64973 -1.15018 -0.230933 1.64973 -1.15018 -0.240105 1.64973 -1.15718 -0.239519 1.64973 -1.15243 -0.245183 1.64973 -1.15243 -0.248519 1.64973 -1.1544 -0.226666 1.64973 -1.15718 -0.231519 1.64973 -1.15718 -0.220519 1.64973 -1.14818 -0.222519 1.64973 -1.14497 -0.229747 1.64973 -1.13959 -0.229519 1.64973 -1.13818 -0.230933 1.64973 -1.13593 -0.225855 1.64973 -1.13593 -0.222519 1.64973 -1.14018 -0.220519 1.64973 -1.13118 -0.227269 1.64973 -1.13878 -0.238212 1.64973 -1.13818 -0.240105 1.64973 -1.14347 -0.241292 1.64971 -1.13118 -0.243769 1.64973 -1.12918 -0.239519 1.64973 -1.14018 -0.250519 1.64973 -1.14818 -0.250519 1.64973 -1.15918 -0.248519 1.64973 -1.15243 -0.222519 1.64973 -1.15707 -0.227059 1.64991 -1.13593 -0.248519 1.64973 -1.12918 -0.231519 1.64973 -1.13118 -0.220519 1.64973 -1.13336 -0.221814 1.64973 -1.1303 -0.223902 1.64977 -1.13593 -0.225855 1.76973 -1.13451 -0.227269 1.64973 -1.15918 -0.239519 1.76973 -1.15918 -0.248519 1.76973 -1.15384 -0.243769 1.76973 -1.14388 -0.241221 1.76973 -1.13818 -0.240105 1.76973 -1.12918 -0.248519 1.76973 -1.13118 -0.239519 1.76973 -1.13118 -0.243769 1.76973 -1.13118 -0.227269 1.76973 -1.12918 -0.222519 1.76973 -1.14018 -0.220519 1.76973 -1.13451 -0.227269 1.76973 -1.14342 -0.23189 1.76971 -1.14452 -0.229764 1.76973 -1.15018 -0.230933 1.76973 -1.14876 -0.229519 1.76973 -1.15243 -0.225855 1.76973 -1.14818 -0.222519 1.76973 -1.14818 -0.220519 1.76973 -1.15718 -0.231519 1.76973 -1.15384 -0.227269 1.76973 -1.15718 -0.227269 1.76973 -1.15002 -0.234833 1.76973 -1.15018 -0.240105 1.76973 -1.13818 -0.230933 1.76973 -1.15718 -0.250519 1.76973 -1.13593 -0.222519 1.76973 -1.13469 -0.245859 1.64973 -1.13451 -0.243769 1.76973 -1.13023 -0.247134 1.76973 -1.13369 -0.24885 1.76952 -1.13118 -0.250519 1.64973 -1.1313 -0.24555 1.64968 -1.15632 -0.225621 1.76972 -1.15489 -0.221535 1.64984 -1.15699 -0.221969 1.76979 -1.15462 -0.249149 1.76969 -1.15786 -0.246026 1.76961 -1.15766 -0.248283 1.64975 -1.15384 -0.243769 1.64973 -1.15437 -0.248553 1.64976 -1.15003 -0.234297 1.64973 -1.14858 -0.233251 1.67975 -1.14779 -0.234435 1.7697 -1.14898 -0.238163 1.76973 -1.1474 -0.236771 1.64982 -1.14958 -0.238212 1.64973 -1.14629 -0.24022 1.76973 -1.14687 -0.240919 1.64973 -1.14557 -0.238742 1.64978 -1.14273 -0.238882 1.76964 -1.14213 -0.240201 1.64973 -1.13959 -0.241519 1.64973 -1.14148 -0.240919 1.76973 -1.13954 -0.237623 1.76973 -1.14114 -0.236807 1.65003 -1.14086 -0.236302 1.76965 -1.13956 -0.233445 1.76973 -1.13878 -0.232826 1.64973 -1.13959 -0.229519 1.76973 -1.14159 -0.230724 1.76973 -1.14148 -0.230119 1.64973 -1.14278 -0.232295 1.64981 -1.14633 -0.230577 1.76973 -1.14622 -0.230835 1.64973 -1.14876 -0.229519 1.64973 -1.24718 -0.239519 1.76973 -1.24918 -0.248519 1.76973 -1.23818 -0.250519 1.64973 -1.23818 -0.248519 1.76973 -1.23448 -0.241221 1.76973 -1.23505 -0.24069 1.64973 -1.22593 -0.248519 1.76973 -1.23018 -0.248519 1.76973 -1.23018 -0.248519 1.64973 -1.23018 -0.250519 1.76973 -1.23018 -0.250519 1.64973 -1.21918 -0.239519 1.76973 -1.22118 -0.239519 1.64973 -1.22451 -0.243769 1.76973 -1.22451 -0.243769 1.64973 -1.22839 -0.23452 1.76973 -1.22818 -0.230933 1.64973 -1.22818 -0.230933 1.76973 -1.22118 -0.227269 1.64973 -1.22118 -0.231519 1.76973 -1.21918 -0.231519 1.76973 -1.22118 -0.220519 1.76973 -1.21918 -0.222519 1.76973 -1.23018 -0.220519 1.64973 -1.23018 -0.220519 1.76973 -1.23018 -0.222519 1.76973 -1.23018 -0.222519 1.64973 -1.23393 -0.229785 1.76973 -1.24243 -0.225855 1.76973 -1.23818 -0.222519 1.64973 -1.23818 -0.220519 1.76973 -1.24918 -0.222519 1.64973 -1.24918 -0.231519 1.76973 -1.24718 -0.231519 1.76973 -1.24384 -0.227269 1.76973 -1.23991 -0.235274 1.76973 -1.24718 -0.239519 1.64973 -1.24918 -0.239519 1.64973 -1.24718 -0.243769 1.64973 -1.24243 -0.248519 1.64973 -1.24018 -0.230933 1.64973 -1.24384 -0.227269 1.64973 -1.24718 -0.231519 1.64973 -1.24918 -0.231519 1.64973 -1.23818 -0.220519 1.64973 -1.24243 -0.222519 1.64973 -1.23876 -0.229519 1.64973 -1.22959 -0.229519 1.64973 -1.22451 -0.227269 1.64973 -1.22593 -0.225855 1.64973 -1.22593 -0.222519 1.64973 -1.22118 -0.220519 1.64973 -1.21918 -0.222519 1.64973 -1.22118 -0.231519 1.64973 -1.21918 -0.231519 1.64973 -1.22818 -0.240105 1.64973 -1.22118 -0.243769 1.64973 -1.21918 -0.239519 1.64973 -1.22118 -0.250519 1.64973 -1.23818 -0.248519 1.64973 -1.24718 -0.250519 1.64973 -1.24384 -0.243769 1.64973 -1.24718 -0.227269 1.64973 -1.24243 -0.225855 1.64973 -1.22593 -0.245183 1.64973 -1.22593 -0.248519 1.64973 -1.22038 -0.2239 1.7696 -1.22376 -0.22178 1.64949 -1.22341 -0.226085 1.64973 -1.24918 -0.239519 1.76973 -1.23818 -0.250519 1.76973 -1.24718 -0.250519 1.76973 -1.24243 -0.245183 1.76973 -1.24432 -0.244454 1.76972 -1.22959 -0.241519 1.76973 -1.22533 -0.246192 1.76975 -1.21918 -0.248519 1.76973 -1.22118 -0.239519 1.76973 -1.22118 -0.243769 1.76973 -1.22515 -0.222764 1.76971 -1.22395 -0.226631 1.7697 -1.24018 -0.230933 1.76973 -1.23876 -0.229519 1.76973 -1.24243 -0.222519 1.76973 -1.23818 -0.222519 1.76973 -1.24718 -0.220519 1.76973 -1.24918 -0.222519 1.76973 -1.24018 -0.240105 1.76973 -1.24718 -0.243769 1.76973 -1.24329 -0.248418 1.76976 -1.24782 -0.248055 1.76957 -1.24718 -0.227269 1.76973 -1.22118 -0.227269 1.76973 -1.22593 -0.225855 1.76973 -1.22034 -0.247828 1.76985 -1.22349 -0.249211 1.64982 -1.22021 -0.246512 1.64979 -1.24718 -0.220519 1.64973 -1.24516 -0.221817 1.76973 -1.24783 -0.224918 1.64971 -1.24634 -0.249197 1.64975 -1.24918 -0.248519 1.64973 -1.24303 -0.245699 1.64974 -1.24018 -0.232776 1.64973 -1.23898 -0.232875 1.64973 -1.23944 -0.234338 1.64973 -1.23775 -0.235164 1.64975 -1.23898 -0.238135 1.70973 -1.23754 -0.234142 1.76971 -1.24018 -0.240105 1.64973 -1.24018 -0.238262 1.76973 -1.23876 -0.241519 1.76973 -1.23876 -0.241519 1.64973 -1.23682 -0.240319 1.64973 -1.23628 -0.240053 1.76973 -1.23278 -0.238745 1.76957 -1.23144 -0.241519 1.76973 -1.22959 -0.241519 1.64973 -1.23153 -0.240319 1.76973 -1.2324 -0.239889 1.64973 -1.22938 -0.238106 1.76973 -1.22818 -0.240105 1.76973 -1.22878 -0.238212 1.64973 -1.2297 -0.237141 1.64973 -1.23096 -0.236909 1.76955 -1.22818 -0.232776 1.64973 -1.22983 -0.233516 1.64974 -1.22938 -0.232875 1.76973 -1.22938 -0.232875 1.64973 -1.22959 -0.229519 1.76973 -1.23299 -0.229652 1.64973 -1.23153 -0.230719 1.64973 -1.23293 -0.232298 1.64985 -1.23159 -0.230724 1.76973 -1.2334 -0.232206 1.76961 -1.23628 -0.23088 1.64973 -1.23687 -0.230119 1.76973 -1.23897 -0.232932 1.76973 -1.15718 -0.243769 0.959733 -1.15718 -0.239519 0.959733 -1.15718 -0.239519 1.07973 -1.15918 -0.239519 1.07973 -1.15918 -0.248519 0.959733 -1.14818 -0.248519 1.07973 -1.14818 -0.248519 0.959733 -1.15243 -0.248519 0.959733 -1.14455 -0.241256 1.07973 -1.14018 -0.248519 1.07973 -1.14018 -0.248519 0.959733 -1.14018 -0.250519 1.07973 -1.13118 -0.250519 0.959733 -1.13118 -0.250519 1.07973 -1.12918 -0.248519 0.959733 -1.12918 -0.239519 0.959733 -1.13118 -0.239519 1.07973 -1.13118 -0.239519 0.959733 -1.13451 -0.243769 0.959733 -1.13451 -0.243769 1.07973 -1.13818 -0.230933 0.959733 -1.13451 -0.227269 1.07973 -1.13118 -0.231519 1.07973 -1.13118 -0.231519 0.959733 -1.13118 -0.220519 0.959733 -1.12918 -0.222519 0.959733 -1.14018 -0.222519 1.07973 -1.14018 -0.222519 0.959733 -1.14493 -0.229751 0.959733 -1.15243 -0.225855 0.959733 -1.14818 -0.222519 1.07973 -1.14818 -0.222519 0.959733 -1.14818 -0.220519 0.959733 -1.15918 -0.222519 1.07973 -1.14818 -0.220519 1.07973 -1.15718 -0.220519 0.959733 -1.15918 -0.231519 1.07973 -1.15918 -0.231519 0.959733 -1.15718 -0.231519 1.07973 -1.15384 -0.227269 1.07973 -1.14995 -0.235068 1.07973 -1.14958 -0.232826 0.959733 -1.15718 -0.243769 1.07973 -1.15918 -0.239519 0.959733 -1.15243 -0.245183 0.959733 -1.14818 -0.250519 0.959733 -1.15718 -0.231519 0.959733 -1.15918 -0.222519 0.959733 -1.13959 -0.229519 0.959733 -1.13593 -0.225855 0.959733 -1.13593 -0.222519 0.959733 -1.14018 -0.220519 0.959733 -1.12918 -0.231519 0.959733 -1.13118 -0.227269 0.959733 -1.14395 -0.241252 0.959733 -1.13818 -0.240105 0.959733 -1.13593 -0.245183 0.959733 -1.13118 -0.243769 0.959733 -1.14018 -0.250519 0.959733 -1.13593 -0.248519 0.959733 -1.14876 -0.241519 0.959733 -1.15718 -0.250519 0.959733 -1.15018 -0.230933 0.959733 -1.15384 -0.243769 0.959733 -1.15243 -0.222519 0.959733 -1.15718 -0.227269 0.959733 -1.15384 -0.227269 0.959733 -1.13423 -0.226971 0.959911 -1.13344 -0.221897 0.959758 -1.13473 -0.224618 1.07973 -1.14818 -0.250519 1.07973 -1.15243 -0.248519 1.07973 -1.14876 -0.241519 1.07973 -1.14148 -0.240919 1.07973 -1.13959 -0.241519 1.07973 -1.1384 -0.235528 1.07973 -1.13593 -0.245183 1.07973 -1.13593 -0.248519 1.07973 -1.12918 -0.239519 1.07973 -1.13118 -0.227269 1.07973 -1.12918 -0.231519 1.07973 -1.14018 -0.220519 1.07973 -1.14876 -0.229519 1.07973 -1.15243 -0.225855 1.07973 -1.15243 -0.222519 1.07973 -1.15718 -0.227269 1.07973 -1.15018 -0.240105 1.07973 -1.14397 -0.229783 1.07973 -1.13818 -0.230933 1.07973 -1.15384 -0.243769 1.07973 -1.15243 -0.245183 1.07973 -1.13118 -0.243769 1.07973 -1.13593 -0.222519 1.07973 -1.13118 -0.220519 1.07973 -1.13074 -0.225118 1.07969 -1.13593 -0.225855 1.07973 -1.13313 -0.244964 1.07971 -1.13445 -0.247713 1.07971 -1.13404 -0.248648 0.959726 -1.12918 -0.248519 1.07973 -1.13002 -0.246807 0.959648 -1.15484 -0.221841 0.959659 -1.15561 -0.22163 1.07994 -1.1578 -0.225185 0.959709 -1.15758 -0.225054 1.07977 -1.15372 -0.2472 1.07975 -1.15918 -0.248519 1.07973 -1.15472 -0.249001 0.959776 -1.15846 -0.246578 0.959674 -1.15605 -0.245365 1.07973 -1.15018 -0.230933 1.07973 -1.14897 -0.232932 1.07973 -1.14757 -0.23475 1.07968 -1.14787 -0.23494 0.959745 -1.14826 -0.2375 1.07971 -1.15018 -0.238262 1.07973 -1.14898 -0.238163 1.07973 -1.14881 -0.237623 0.959733 -1.15018 -0.240105 0.959733 -1.14655 -0.240238 1.01973 -1.14692 -0.241519 0.959733 -1.14293 -0.23874 1.07966 -1.14419 -0.239202 0.974714 -1.13959 -0.241519 0.959733 -1.14159 -0.240313 0.959733 -1.13818 -0.240105 1.07973 -1.13954 -0.237623 1.07973 -1.13894 -0.23719 0.959733 -1.14086 -0.234921 1.07965 -1.14088 -0.234106 0.959759 -1.13878 -0.232826 0.959733 -1.13938 -0.232875 1.07973 -1.14144 -0.229519 0.959733 -1.13959 -0.229519 1.07973 -1.14206 -0.230816 1.07973 -1.14262 -0.231225 0.959734 -1.14355 -0.232201 1.07969 -1.14557 -0.232296 1.01966 -1.14687 -0.230119 1.07973 -1.14876 -0.229519 0.959733 -1.14677 -0.230724 0.959733 -1.24918 -0.239519 1.07973 -1.24918 -0.239519 0.959733 -1.24918 -0.248519 1.07973 -1.24718 -0.250519 0.959733 -1.24718 -0.250519 1.07973 -1.23818 -0.248519 1.07973 -1.24243 -0.248519 0.959733 -1.24243 -0.245183 1.07973 -1.22959 -0.241519 1.07973 -1.23018 -0.248519 1.07973 -1.22118 -0.250519 0.959733 -1.22118 -0.243769 1.07973 -1.22118 -0.239519 0.959733 -1.22118 -0.227269 1.07973 -1.22118 -0.231519 0.959733 -1.22118 -0.231519 1.07973 -1.22118 -0.220519 1.07973 -1.22118 -0.220519 0.959733 -1.23018 -0.220519 1.07973 -1.23018 -0.220519 0.959733 -1.23018 -0.222519 1.07973 -1.22593 -0.222519 0.959733 -1.23876 -0.229519 1.07973 -1.23818 -0.222519 1.07973 -1.23818 -0.220519 1.07973 -1.24918 -0.222519 0.959733 -1.24718 -0.220519 1.07973 -1.24918 -0.231519 1.07973 -1.24718 -0.231519 1.07973 -1.24718 -0.227269 1.07973 -1.24384 -0.227269 0.959733 -1.23988 -0.235819 0.959733 -1.24018 -0.240105 1.07973 -1.24718 -0.239519 0.959733 -1.24243 -0.245183 0.959733 -1.24018 -0.230933 0.959733 -1.24718 -0.231519 0.959733 -1.24918 -0.231519 0.959733 -1.23818 -0.220519 0.959733 -1.23818 -0.222519 0.959733 -1.24243 -0.222519 0.959733 -1.22818 -0.230933 0.959733 -1.22451 -0.227269 0.959733 -1.22593 -0.225855 0.959733 -1.23018 -0.222519 0.959733 -1.21918 -0.231519 0.959733 -1.22118 -0.227269 0.959733 -1.22451 -0.243769 0.959733 -1.22593 -0.245183 0.959733 -1.21918 -0.239519 0.959733 -1.21918 -0.248519 0.959733 -1.23018 -0.248519 0.959733 -1.23018 -0.250519 0.959733 -1.23876 -0.241519 0.959733 -1.23818 -0.248519 0.959733 -1.23818 -0.250519 0.959733 -1.24918 -0.248519 0.959733 -1.23876 -0.229519 0.959733 -1.23497 -0.229752 0.959733 -1.24718 -0.243769 0.959733 -1.24384 -0.243769 0.959733 -1.24718 -0.227269 0.959733 -1.24243 -0.225855 0.959733 -1.22126 -0.244129 0.960025 -1.22593 -0.248519 0.959733 -1.21921 -0.222261 0.959742 -1.2238 -0.222184 0.959698 -1.22342 -0.221549 1.07972 -1.22039 -0.224937 0.959764 -1.22449 -0.225331 0.959758 -1.24718 -0.239519 1.07973 -1.23818 -0.250519 1.07973 -1.23876 -0.241519 1.07973 -1.22848 -0.235819 1.07973 -1.22543 -0.245991 1.07974 -1.22593 -0.248519 1.07973 -1.21918 -0.239519 1.07973 -1.22118 -0.239519 1.07973 -1.22377 -0.226775 1.07977 -1.22818 -0.230933 1.07973 -1.21918 -0.231519 1.07973 -1.21918 -0.222519 1.07973 -1.22593 -0.225855 1.07973 -1.24018 -0.230933 1.07973 -1.23989 -0.235221 1.07973 -1.24243 -0.225855 1.07973 -1.24243 -0.222519 1.07973 -1.24918 -0.222519 1.07973 -1.24384 -0.243769 1.07973 -1.24243 -0.248519 1.07973 -1.24718 -0.243769 1.07973 -1.23018 -0.250519 1.07973 -1.22451 -0.243769 1.07973 -1.22593 -0.222519 1.07973 -1.22138 -0.245622 1.07945 -1.21918 -0.248519 1.07973 -1.22214 -0.249212 0.959756 -1.24767 -0.222888 1.07971 -1.24483 -0.221921 0.959753 -1.24767 -0.225081 0.959666 -1.24384 -0.227269 1.07973 -1.24487 -0.221863 1.07969 -1.24481 -0.249142 0.959773 -1.24805 -0.246412 0.959728 -1.24777 -0.246291 1.07974 -1.24459 -0.249057 1.07974 -1.24388 -0.245576 0.95987 -1.23871 -0.233415 1.07973 -1.23754 -0.234142 0.959765 -1.23755 -0.236969 1.07964 -1.23755 -0.236971 0.959796 -1.24018 -0.240105 0.959733 -1.23958 -0.238212 1.07973 -1.23897 -0.238106 0.959733 -1.23544 -0.241385 0.959734 -1.23682 -0.240319 0.959733 -1.23526 -0.239407 0.959752 -1.23677 -0.240313 1.07973 -1.23557 -0.238744 1.07961 -1.22959 -0.241519 0.959733 -1.23211 -0.240177 1.01973 -1.23144 -0.241519 1.07973 -1.22818 -0.240105 1.07973 -1.22818 -0.240105 0.959733 -1.22938 -0.238163 0.959733 -1.22984 -0.23734 0.959709 -1.22938 -0.238106 1.07973 -1.23063 -0.235318 1.07969 -1.22818 -0.232776 0.959733 -1.22948 -0.233431 0.959733 -1.22938 -0.232875 0.959733 -1.23153 -0.230719 0.959733 -1.23159 -0.230724 1.07973 -1.22938 -0.232875 1.07973 -1.22959 -0.229519 0.959733 -1.22959 -0.229519 1.07973 -1.23213 -0.230832 0.959734 -1.23274 -0.232223 1.07855 -1.23506 -0.232127 0.989742 -1.23628 -0.23088 0.959733 -1.23677 -0.230724 1.07973 -1.23545 -0.229652 1.07973 -1.23682 -0.230719 1.07973 -1.23958 -0.232826 0.959733 -1.2034 -0.220519 1.70103 -1.2034 -0.520519 1.70103 -1.21718 -0.520519 1.70298 -1.21018 -0.520519 1.69015 -1.20418 -0.520519 1.68873 -1.19959 -0.520519 1.68873 -1.18243 -0.520519 1.68507 -1.19593 -0.520519 1.68507 -1.18243 -0.520519 1.68173 -1.17818 -0.520519 1.67973 -1.19593 -0.520519 1.68173 -1.20018 -0.520519 1.67973 -1.17418 -0.520519 1.68873 -1.16959 -0.520519 1.68873 -1.16451 -0.520519 1.68648 -1.16593 -0.520519 1.68507 -1.17018 -0.520519 1.68173 -1.16818 -0.520519 1.69932 -1.16451 -0.520519 1.70298 -1.16918 -0.520519 1.71266 -1.16451 -0.520519 1.71648 -1.16118 -0.520519 1.72073 -1.15918 -0.520519 1.69873 -1.16593 -0.520519 1.73773 -1.17018 -0.520519 1.73773 -1.16959 -0.520519 1.73073 -1.17876 -0.520519 1.73073 -1.18243 -0.520519 1.7344 -1.19959 -0.520519 1.73073 -1.19593 -0.520519 1.7344 -1.19593 -0.520519 1.73773 -1.17818 -0.520519 1.73973 -1.18243 -0.520519 1.73773 -1.20018 -0.520519 1.73773 -1.20418 -0.520519 1.73073 -1.20876 -0.520519 1.73073 -1.21018 -0.520519 1.72473 -1.21018 -0.520519 1.72015 -1.21718 -0.520519 1.72873 -1.20818 -0.520519 1.73973 -1.21243 -0.520519 1.73773 -1.21018 -0.520519 1.69932 -1.16818 -0.520519 1.72932 -1.21384 -0.520519 1.70298 -1.21718 -0.220519 1.72073 -1.21918 -0.520519 1.72073 -1.21718 -0.220519 1.71648 -1.21718 -0.520519 1.72073 -1.21718 -0.520519 1.71648 -1.21018 -0.220519 1.72015 -1.21384 -0.520519 1.71648 -1.21018 -0.220519 1.72473 -1.21018 -0.520519 1.72932 -1.21384 -0.520519 1.73298 -1.21718 -0.520519 1.73298 -1.21718 -0.220519 1.72873 -1.21918 -0.520519 1.72873 -1.21918 -0.220519 1.72873 -1.21918 -0.520519 1.73773 -1.21718 -0.220519 1.73973 -1.21718 -0.520519 1.73973 -1.21863 -0.22056 1.73902 -1.21918 -0.220519 1.73773 -1.20818 -0.520519 1.73773 -1.21243 -0.220519 1.7344 -1.21243 -0.520519 1.7344 -1.20418 -0.220519 1.73073 -1.19959 -0.220519 1.73073 -1.19593 -0.220519 1.7344 -1.17818 -0.220519 1.73973 -1.20018 -0.520519 1.73973 -1.17818 -0.520519 1.73773 -1.17418 -0.520519 1.73073 -1.17418 -0.220519 1.73073 -1.16959 -0.220519 1.73073 -1.16593 -0.520519 1.7344 -1.17018 -0.220519 1.73773 -1.17018 -0.220519 1.73973 -1.17018 -0.520519 1.73973 -1.16118 -0.520519 1.73973 -1.15918 -0.520519 1.73773 -1.15984 -0.220603 1.73928 -1.16118 -0.220519 1.73973 -1.15918 -0.520519 1.72873 -1.16118 -0.520519 1.72873 -1.16118 -0.220519 1.73298 -1.16451 -0.220519 1.73298 -1.16118 -0.520519 1.73298 -1.16451 -0.520519 1.73298 -1.16818 -0.520519 1.72473 -1.16818 -0.220519 1.72473 -1.16818 -0.520519 1.72015 -1.16118 -0.520519 1.71648 -1.16118 -0.220519 1.72073 -1.15918 -0.220519 1.72073 -1.16118 -0.520519 1.69873 -1.16118 -0.520519 1.70298 -1.16451 -0.220519 1.70298 -1.16818 -0.520519 1.69473 -1.16818 -0.220519 1.69473 -1.16818 -0.520519 1.69015 -1.16451 -0.220519 1.68648 -1.16118 -0.220519 1.68648 -1.16118 -0.520519 1.68648 -1.16118 -0.220519 1.69073 -1.16118 -0.520519 1.69073 -1.15983 -0.52048 1.68038 -1.16118 -0.220519 1.67973 -1.17018 -0.220519 1.67973 -1.16593 -0.220519 1.68173 -1.16593 -0.520519 1.68173 -1.17876 -0.520519 1.68873 -1.17818 -0.520519 1.68173 -1.17818 -0.220519 1.67973 -1.20018 -0.220519 1.68173 -1.20018 -0.520519 1.68173 -1.19593 -0.220519 1.68507 -1.19959 -0.220519 1.68873 -1.20418 -0.220519 1.68873 -1.20876 -0.220519 1.68873 -1.20876 -0.520519 1.68873 -1.21243 -0.520519 1.68507 -1.21243 -0.520519 1.68173 -1.20818 -0.520519 1.68173 -1.21918 -0.520519 1.68173 -1.21793 -0.520518 1.67973 -1.21718 -0.220519 1.67973 -1.21918 -0.220519 1.68173 -1.21918 -0.220519 1.69073 -1.21718 -0.220519 1.69073 -1.21918 -0.520519 1.69073 -1.21718 -0.520519 1.69073 -1.21718 -0.520519 1.68648 -1.21384 -0.520519 1.68648 -1.21018 -0.520519 1.69473 -1.21018 -0.220519 1.69473 -1.21018 -0.220519 1.69932 -1.21718 -0.220519 1.70298 -1.21718 -0.220519 1.69873 -1.21718 -0.520519 1.69873 -1.21918 -0.520519 1.69873 -1.21918 -0.220519 1.72073 -1.21918 -0.220519 1.69873 -1.21384 -0.220519 1.71648 -1.21018 -0.220519 1.72932 -1.21718 -0.220519 1.73298 -1.21384 -0.220519 1.73298 -1.21243 -0.220519 1.73773 -1.20818 -0.220519 1.73973 -1.20818 -0.220519 1.73773 -1.20876 -0.220519 1.73073 -1.18243 -0.220519 1.7344 -1.18243 -0.220519 1.73773 -1.19593 -0.220519 1.73773 -1.20018 -0.220519 1.73973 -1.20018 -0.220519 1.73773 -1.17818 -0.220519 1.73773 -1.17876 -0.220519 1.73073 -1.16818 -0.220519 1.72932 -1.16818 -0.220519 1.72015 -1.16593 -0.220519 1.7344 -1.16118 -0.220519 1.72873 -1.16593 -0.220519 1.73773 -1.15918 -0.220519 1.72873 -1.16451 -0.220519 1.71648 -1.16918 -0.220519 1.7068 -1.16118 -0.220519 1.70298 -1.16118 -0.220519 1.71648 -1.15918 -0.220519 1.69873 -1.16118 -0.220519 1.69873 -1.16818 -0.220519 1.69015 -1.16959 -0.220519 1.68873 -1.15918 -0.220519 1.69073 -1.15918 -0.220519 1.68173 -1.16593 -0.220519 1.68507 -1.17018 -0.220519 1.68173 -1.17418 -0.220519 1.68873 -1.17876 -0.220519 1.68873 -1.18243 -0.220519 1.68507 -1.19593 -0.220519 1.68173 -1.20018 -0.220519 1.67973 -1.18243 -0.220519 1.68173 -1.17818 -0.220519 1.68173 -1.21384 -0.220519 1.68648 -1.21018 -0.220519 1.69015 -1.21243 -0.220519 1.68173 -1.21243 -0.220519 1.68507 -1.21718 -0.220519 1.68648 -1.20818 -0.220519 1.68173 -1.20818 -0.220519 1.67973 -1.21384 -0.220519 1.70298 -1.16818 -0.220519 1.69932 -1.20918 -0.520519 1.7068 -1.20907 -0.348258 1.7068 -1.20907 -0.312723 1.7068 -1.20907 -0.332233 1.7068 -1.20918 -0.220519 1.71266 -1.20889 -0.220519 1.70651 -1.20918 -0.520519 1.71225 -1.20889 -0.520519 1.71295 -1.2034 -0.220519 1.71844 -1.2034 -0.520519 1.71844 -1.20194 -0.520519 1.71873 -1.20194 -0.220519 1.71873 -1.19901 -0.220785 1.71948 -1.19896 -0.520406 1.71951 -1.19818 -0.520519 1.72249 -1.19789 -0.220519 1.72395 -1.19515 -0.520519 1.7267 -1.19211 -0.220519 1.72973 -1.19169 -0.520519 1.72973 -1.18625 -0.520519 1.72973 -1.18596 -0.220519 1.72944 -1.18666 -0.220519 1.72973 -1.18047 -0.220519 1.72395 -1.18047 -0.520519 1.72395 -1.17935 -0.220604 1.71945 -1.17731 -0.520492 1.71881 -1.18018 -0.220519 1.72249 -1.1797 -0.520513 1.72016 -1.17642 -0.220519 1.71873 -1.1752 -0.318994 1.71862 -1.1752 -0.330142 1.71862 -1.1752 -0.307846 1.71862 -1.17496 -0.520519 1.71844 -1.17496 -0.220519 1.71844 -1.1693 -0.220519 1.71278 -1.16918 -0.520519 1.70722 -1.17221 -0.520519 1.70377 -1.17566 -0.520519 1.70073 -1.17973 -0.396743 1.69921 -1.17566 -0.220519 1.70073 -1.17946 -0.220655 1.69985 -1.17841 -0.520518 1.70052 -1.18018 -0.520519 1.69773 -1.18047 -0.520519 1.69551 -1.18047 -0.220519 1.69551 -1.18596 -0.520519 1.69003 -1.18626 -0.220519 1.68973 -1.1921 -0.520519 1.68973 -1.1924 -0.220519 1.69003 -1.19169 -0.220519 1.68973 -1.19789 -0.220519 1.69551 -1.19789 -0.520519 1.69551 -1.19818 -0.520519 1.69697 -1.1987 -0.221314 1.69938 -1.19818 -0.220519 1.69697 -1.19889 -0.520261 1.69975 -1.20112 -0.220546 1.70066 -1.20106 -0.520505 1.70065 -1.17248 -0.520511 1.69782 -1.17648 -0.220489 1.69744 -1.17204 -0.220509 1.6975 -1.17765 -0.220687 1.69519 -1.17286 -0.220649 1.69155 -1.17661 -0.220635 1.69228 -1.17057 -0.22053 1.69422 -1.17661 -0.520256 1.69714 -1.17447 -0.33673 1.69805 -1.17081 -0.520475 1.69538 -1.17155 -0.520526 1.69197 -1.17577 -0.519738 1.69163 -1.17746 -0.520516 1.69372 -1.20632 -0.519303 1.72746 -1.20145 -0.220504 1.72711 -1.2008 -0.220708 1.72371 -1.20702 -0.220494 1.72259 -1.20693 -0.220494 1.72729 -1.2032 -0.220437 1.7214 -1.20072 -0.520059 1.72545 -1.203 -0.386384 1.72779 -1.20767 -0.520495 1.72505 -1.20223 -0.52052 1.72168 -1.20239 -0.520398 1.72774 -1.2061 -0.520297 1.72182 -1.17379 -0.220565 1.72827 -1.17773 -0.220556 1.72532 -1.17057 -0.220609 1.72491 -1.17611 -0.220978 1.72185 -1.17295 -0.220589 1.72128 -1.17541 -0.520405 1.72804 -1.17616 -0.520398 1.72188 -1.17306 -0.520432 1.72125 -1.17219 -0.520393 1.72757 -1.17739 -0.520454 1.72588 -1.17742 -0.520514 1.72361 -1.17081 -0.520467 1.72538 -1.20137 -0.220498 1.69674 -1.20701 -0.220521 1.69664 -1.20449 -0.220503 1.69835 -1.2076 -0.22052 1.6944 -1.20198 -0.220485 1.69188 -1.20635 -0.220562 1.69202 -1.20425 -0.520361 1.69115 -1.20755 -0.520506 1.69386 -1.20707 -0.520491 1.6966 -1.20456 -0.52052 1.69814 -1.20108 -0.520184 1.69308 -1.20159 -0.520296 1.69721 -1.2034 -0.520519 1.02844 -1.20336 -0.220519 1.02848 -1.21718 -0.220519 1.02648 -1.21918 -0.220519 1.00873 -1.21718 -0.220519 1.01298 -1.21018 -0.220519 1.03015 -1.21018 -0.220519 1.03473 -1.21918 -0.220519 1.04773 -1.21918 -0.220519 1.03873 -1.21718 -0.220519 1.04973 -1.20418 -0.220519 1.04073 -1.19959 -0.220519 1.04073 -1.17876 -0.220519 1.04073 -1.19593 -0.220519 1.0444 -1.18243 -0.220519 1.04773 -1.20018 -0.220519 1.04773 -1.16959 -0.220519 1.04073 -1.17418 -0.220519 1.04073 -1.16593 -0.220519 1.0444 -1.16451 -0.220519 1.04298 -1.16818 -0.220519 1.03473 -1.16818 -0.220519 1.03015 -1.16593 -0.220519 1.04773 -1.16118 -0.220519 1.04298 -1.15918 -0.220519 1.03873 -1.16118 -0.220519 1.03873 -1.15918 -0.220519 1.04773 -1.16451 -0.220519 1.02648 -1.16451 -0.220519 1.01298 -1.16118 -0.220519 1.01298 -1.16118 -0.220519 1.00873 -1.16118 -0.220519 1.02648 -1.16959 -0.220519 0.998733 -1.16818 -0.220519 1.00015 -1.16118 -0.220519 0.996483 -1.16593 -0.220519 0.995068 -1.17018 -0.220519 0.991733 -1.17418 -0.220519 0.998733 -1.18626 -0.220519 0.999734 -1.19593 -0.220519 0.995068 -1.18243 -0.220519 0.991733 -1.20018 -0.220519 0.989733 -1.17818 -0.220519 0.989733 -1.20018 -0.220519 0.991733 -1.19593 -0.220519 0.991733 -1.20418 -0.220519 0.998733 -1.21018 -0.220519 1.00473 -1.21018 -0.220519 1.00932 -1.21243 -0.220519 0.991733 -1.21718 -0.220519 1.00073 -1.21384 -0.220519 1.01298 -1.16818 -0.220519 1.00932 -1.19837 -0.220715 1.00889 -1.21718 -0.520519 1.00873 -1.21718 -0.220519 1.00873 -1.21018 -0.520519 1.00932 -1.21018 -0.220519 1.00015 -1.21384 -0.220519 0.996483 -1.21718 -0.520519 0.996483 -1.21718 -0.520519 1.00073 -1.21718 -0.220519 0.996483 -1.21918 -0.220519 1.00073 -1.21918 -0.220519 0.991733 -1.2186 -0.520427 0.990269 -1.21718 -0.220519 0.989733 -1.20818 -0.520519 0.989733 -1.20818 -0.220519 0.989733 -1.21243 -0.520519 0.991733 -1.20818 -0.220519 0.991733 -1.21243 -0.220519 0.995068 -1.20876 -0.220519 0.998733 -1.20418 -0.520519 0.998733 -1.19959 -0.220519 0.998733 -1.19593 -0.520519 0.995068 -1.17818 -0.520519 0.991733 -1.17818 -0.220519 0.991733 -1.18243 -0.220519 0.995068 -1.17876 -0.220519 0.998733 -1.16959 -0.520519 0.998733 -1.16593 -0.520519 0.991733 -1.16593 -0.220519 0.991733 -1.17018 -0.520519 0.991733 -1.17018 -0.220519 0.989733 -1.15918 -0.220519 0.991733 -1.17018 -0.520519 0.989733 -1.15984 -0.220528 0.990312 -1.16118 -0.220519 0.989733 -1.15918 -0.220519 1.00073 -1.16118 -0.220519 1.00073 -1.16118 -0.520519 0.996483 -1.16451 -0.220519 0.996483 -1.16818 -0.220519 1.00473 -1.15918 -0.220519 1.00873 -1.16118 -0.520519 1.03073 -1.15918 -0.220519 1.03073 -1.16118 -0.220519 1.03073 -1.16451 -0.520519 1.02648 -1.16818 -0.220519 1.03932 -1.16818 -0.520519 1.03932 -1.16118 -0.520519 1.03873 -1.15918 -0.520519 1.03873 -1.15925 -0.520506 1.04825 -1.1599 -0.256363 1.04924 -1.16056 -0.520519 1.04973 -1.16118 -0.220519 1.04973 -1.17018 -0.520519 1.04973 -1.17018 -0.220519 1.04973 -1.17018 -0.520519 1.04773 -1.17018 -0.220519 1.04773 -1.16959 -0.520519 1.04073 -1.17418 -0.520519 1.04073 -1.18243 -0.220519 1.0444 -1.17818 -0.220519 1.04773 -1.20018 -0.520519 1.04973 -1.17818 -0.220519 1.04973 -1.20018 -0.220519 1.04973 -1.19593 -0.220519 1.04773 -1.19959 -0.520519 1.04073 -1.20876 -0.520519 1.04073 -1.20876 -0.220519 1.04073 -1.21243 -0.220519 1.0444 -1.21243 -0.520519 1.04773 -1.21243 -0.220519 1.04773 -1.20818 -0.520519 1.04773 -1.20818 -0.220519 1.04773 -1.20818 -0.220519 1.04973 -1.21918 -0.520519 1.04773 -1.21863 -0.22053 1.04903 -1.21824 -0.520438 1.04947 -1.21918 -0.520519 1.03873 -1.21718 -0.220519 1.03873 -1.21718 -0.220519 1.04298 -1.21384 -0.220519 1.04298 -1.21018 -0.220519 1.03932 -1.21718 -0.520519 1.02648 -1.21384 -0.220519 1.02648 -1.21718 -0.520519 1.03073 -1.21718 -0.220519 1.03073 -1.21918 -0.220519 1.03073 -1.21918 -0.520519 1.00873 -1.21918 -0.520519 1.03073 -1.21718 -0.520519 1.01298 -1.21018 -0.520519 1.00473 -1.21384 -0.520519 0.996483 -1.21918 -0.520519 1.00073 -1.21918 -0.520519 0.991733 -1.21243 -0.520519 0.995068 -1.20818 -0.520519 0.991733 -1.20876 -0.520519 0.998733 -1.19959 -0.520519 0.998733 -1.18243 -0.520519 0.995068 -1.17876 -0.520519 0.998733 -1.18243 -0.520519 0.991733 -1.19593 -0.520519 0.991733 -1.17818 -0.520519 0.989733 -1.20018 -0.520519 0.989733 -1.20018 -0.520519 0.991733 -1.17418 -0.520519 0.998733 -1.16818 -0.520519 1.00015 -1.17075 -0.520314 1.00398 -1.16818 -0.520519 1.00473 -1.16818 -0.520519 1.00932 -1.16593 -0.520519 0.995068 -1.16451 -0.520519 0.996483 -1.16118 -0.520519 1.00073 -1.1594 -0.520515 0.9907 -1.15918 -0.520519 0.991733 -1.16451 -0.520519 1.01298 -1.16818 -0.520519 1.03015 -1.16118 -0.520519 1.01298 -1.16118 -0.520519 1.02648 -1.16118 -0.520519 1.00873 -1.16818 -0.520519 1.03473 -1.16451 -0.520519 1.04298 -1.16118 -0.520519 1.04298 -1.16593 -0.520519 1.0444 -1.16593 -0.520519 1.04773 -1.17876 -0.520519 1.04073 -1.18243 -0.520519 1.0444 -1.19593 -0.520519 1.0444 -1.19593 -0.520519 1.04773 -1.17818 -0.520519 1.04973 -1.18243 -0.520519 1.04773 -1.17818 -0.520519 1.04773 -1.20018 -0.520519 1.04773 -1.20418 -0.520519 1.04073 -1.21018 -0.520519 1.03932 -1.21018 -0.520519 1.03473 -1.21018 -0.520519 1.03015 -1.21243 -0.520519 1.0444 -1.21384 -0.520519 1.04298 -1.21718 -0.520519 1.04298 -1.21718 -0.520519 1.03873 -1.20818 -0.520519 1.04973 -1.21384 -0.520519 1.02648 -1.20269 -0.520519 1.01073 -1.21018 -0.520519 1.00015 -1.21384 -0.520519 1.01298 -1.20918 -0.220519 1.02266 -1.20918 -0.520519 1.0168 -1.20901 -0.520519 1.02283 -1.20918 -0.220519 1.01722 -1.20894 -0.220519 1.01656 -1.2034 -0.220519 1.01103 -1.2034 -0.520519 1.01103 -1.19891 -0.519914 1.00979 -1.20098 -0.220528 1.01062 -1.19818 -0.220519 1.00622 -1.19818 -0.520519 1.00697 -1.1921 -0.520519 0.999734 -1.19807 -0.411361 1.0058 -1.19807 -0.401605 1.0058 -1.19807 -0.389992 1.0058 -1.19169 -0.220519 0.999733 -1.19515 -0.220519 1.00277 -1.18596 -0.520519 1.00003 -1.18047 -0.220519 1.00551 -1.18047 -0.520519 1.00551 -1.17642 -0.520519 1.01073 -1.18018 -0.520519 1.00697 -1.18018 -0.220519 1.00773 -1.17924 -0.220545 1.01014 -1.1792 -0.519995 1.01003 -1.17642 -0.220519 1.01073 -1.17496 -0.220519 1.01103 -1.1752 -0.389528 1.01085 -1.17496 -0.520519 1.01103 -1.1752 -0.409502 1.01085 -1.1752 -0.37838 1.01085 -1.16933 -0.520519 1.01665 -1.16918 -0.520519 1.02266 -1.16918 -0.220519 1.0168 -1.16934 -0.220519 1.02282 -1.17496 -0.220519 1.02844 -1.17496 -0.520519 1.02844 -1.1792 -0.52048 1.02936 -1.17642 -0.520519 1.02873 -1.17872 -0.220522 1.02912 -1.17993 -0.220523 1.03047 -1.18047 -0.520519 1.03395 -1.18047 -0.220519 1.03395 -1.18018 -0.520519 1.03173 -1.18596 -0.220519 1.03944 -1.19211 -0.220519 1.03973 -1.18625 -0.520519 1.03973 -1.1924 -0.520519 1.03944 -1.19789 -0.520519 1.03395 -1.19789 -0.220519 1.03395 -1.19818 -0.520519 1.03249 -1.20194 -0.220519 1.02873 -1.20286 -0.520517 1.0287 -1.19963 -0.520332 1.02907 -1.19829 -0.22052 1.03145 -1.19999 -0.22054 1.02896 -1.17712 -0.520523 1.037 -1.17106 -0.5205 1.0332 -1.17303 -0.374621 1.03166 -1.17431 -0.520451 1.03122 -1.17202 -0.520294 1.03762 -1.17545 -0.220655 1.03808 -1.17153 -0.220564 1.03729 -1.17709 -0.520094 1.03281 -1.17641 -0.220553 1.03185 -1.17741 -0.220525 1.03584 -1.1709 -0.220638 1.03336 -1.20143 -0.520069 1.00687 -1.20568 -0.220559 1.00811 -1.20093 -0.520372 1.0032 -1.20226 -0.220719 1.00764 -1.20573 -0.520289 1.00799 -1.20733 -0.520459 1.00321 -1.20755 -0.220542 1.0035 -1.20436 -0.52052 1.00129 -1.20418 -0.220566 1.00128 -1.20732 -0.362902 1.00588 -1.20053 -0.220556 1.00469 -1.17583 -0.52009 1.00783 -1.17348 -0.519925 1.00139 -1.17291 -0.52051 1.0081 -1.17746 -0.520484 1.0053 -1.1742 -0.337121 1.00797 -1.17647 -0.52054 1.00204 -1.17597 -0.220503 1.00175 -1.17297 -0.220582 1.00153 -1.17085 -0.220752 1.00334 -1.1776 -0.220545 1.00399 -1.17616 -0.220638 1.00757 -1.17148 -0.220816 1.0069 -1.20492 -0.520392 1.03806 -1.20165 -0.520362 1.03233 -1.20521 -0.520268 1.03121 -1.20759 -0.520413 1.03558 -1.20075 -0.520308 1.03572 -1.20761 -0.220717 1.0337 -1.20501 -0.22056 1.03128 -1.20674 -0.220587 1.03709 -1.2026 -0.359972 1.03766 -1.2036 -0.220601 1.03815 -1.20091 -0.220565 1.03589 -1.20123 -0.220698 1.03282 -1.2034 -0.481812 1.67973 -1.2034 -0.481812 1.04973 -1.20269 -0.481519 1.67973 -1.20269 -0.481519 1.04973 -1.21918 -0.479519 1.04973 -1.21918 -0.501519 1.04973 -1.21718 -0.497269 1.04973 -1.21718 -0.483769 1.04973 -1.21384 -0.483769 1.04973 -1.21384 -0.497269 1.04973 -1.21018 -0.480105 1.04973 -1.20988 -0.475519 1.04973 -1.21018 -0.476039 1.04973 -1.21018 -0.470933 1.04973 -1.21384 -0.467269 1.04973 -1.20876 -0.469519 1.04973 -1.21243 -0.465855 1.04973 -1.21243 -0.462519 1.04973 -1.2047 -0.469519 1.04973 -1.20418 -0.469819 1.04973 -1.19959 -0.469519 1.04973 -1.1924 -0.470812 1.04973 -1.19593 -0.465855 1.04973 -1.18243 -0.465855 1.04973 -1.17876 -0.469519 1.04973 -1.18243 -0.462519 1.04973 -1.17818 -0.460519 1.04973 -1.20018 -0.462519 1.04973 -1.17418 -0.469819 1.04973 -1.16818 -0.474999 1.04973 -1.16848 -0.475519 1.04973 -1.16818 -0.476039 1.04973 -1.16593 -0.465855 1.04973 -1.17018 -0.462519 1.04973 -1.17018 -0.460519 1.04973 -1.16451 -0.483769 1.04973 -1.16118 -0.501519 1.04973 -1.15918 -0.479519 1.04973 -1.16818 -0.504999 1.04973 -1.16848 -0.505519 1.04973 -1.16118 -0.513769 1.04973 -1.16451 -0.513769 1.04973 -1.16593 -0.518519 1.04973 -1.17018 -0.518519 1.04973 -1.16959 -0.511519 1.04973 -1.17366 -0.511519 1.04973 -1.1747 -0.511519 1.04973 -1.17876 -0.511519 1.04973 -1.19593 -0.515183 1.04973 -1.19593 -0.518519 1.04973 -1.19959 -0.511519 1.04973 -1.20418 -0.511219 1.04973 -1.2047 -0.511519 1.04973 -1.21243 -0.515183 1.04973 -1.20876 -0.511519 1.04973 -1.21384 -0.513769 1.04973 -1.21018 -0.510105 1.04973 -1.21018 -0.506039 1.04973 -1.21018 -0.504999 1.04973 -1.21718 -0.513769 1.04973 -1.21718 -0.509519 1.04973 -1.21243 -0.518519 1.04973 -1.21018 -0.500933 1.04973 -1.201 -0.504192 1.04975 -1.21718 -0.501519 1.04973 -1.21018 -0.504999 1.67973 -1.21018 -0.506039 1.67973 -1.20988 -0.505519 1.04973 -1.21718 -0.509519 1.67973 -1.21918 -0.509519 1.67973 -1.21918 -0.509519 1.04973 -1.21759 -0.520519 1.04973 -1.21918 -0.518519 1.04973 -1.21893 -0.519448 1.3527 -1.20818 -0.518519 1.04973 -1.20818 -0.518519 1.67973 -1.21243 -0.518519 1.67973 -1.21243 -0.515183 1.67973 -1.20366 -0.511519 1.04973 -1.19593 -0.515183 1.67973 -1.19593 -0.518519 1.67973 -1.20018 -0.518519 1.67973 -1.20018 -0.518519 1.04973 -1.17818 -0.518519 1.67973 -1.17818 -0.518519 1.04973 -1.18243 -0.518519 1.67973 -1.18243 -0.518519 1.04973 -1.18243 -0.515183 1.04973 -1.1747 -0.511519 1.67973 -1.17418 -0.511219 1.04973 -1.16593 -0.515183 1.04973 -1.16593 -0.518519 1.67973 -1.17018 -0.518519 1.67973 -1.17018 -0.520519 1.67973 -1.16118 -0.520519 1.67973 -1.15998 -0.520052 1.67963 -1.15987 -0.519954 1.04974 -1.15928 -0.519097 1.39673 -1.15918 -0.518519 1.04973 -1.15918 -0.509519 1.67973 -1.16118 -0.509519 1.04973 -1.16118 -0.513769 1.67973 -1.16451 -0.513769 1.67973 -1.16818 -0.510105 1.67973 -1.16818 -0.506039 1.67973 -1.16818 -0.510105 1.04973 -1.16818 -0.506039 1.04973 -1.16848 -0.505519 1.67973 -1.16818 -0.500933 1.04973 -1.16451 -0.497269 1.04973 -1.16118 -0.501519 1.67973 -1.16118 -0.497269 1.04973 -1.15918 -0.479519 1.67973 -1.16118 -0.479519 1.67973 -1.16118 -0.479519 1.04973 -1.16118 -0.483769 1.04973 -1.16818 -0.480105 1.04973 -1.16848 -0.475519 1.67973 -1.16818 -0.470933 1.67973 -1.16818 -0.470933 1.04973 -1.16451 -0.467269 1.04973 -1.16118 -0.467269 1.04973 -1.16118 -0.467269 1.67973 -1.16118 -0.471519 1.04973 -1.16118 -0.471519 1.67973 -1.16118 -0.460519 1.04973 -1.16118 -0.460519 1.67973 -1.15925 -0.462001 1.36002 -1.15979 -0.460983 1.05024 -1.15949 -0.461371 1.67975 -1.15993 -0.461001 1.53009 -1.17018 -0.462519 1.67973 -1.16593 -0.462519 1.04973 -1.16593 -0.465855 1.67973 -1.16959 -0.469519 1.04973 -1.16959 -0.469519 1.67973 -1.17366 -0.469519 1.67973 -1.17366 -0.469519 1.04973 -1.17418 -0.469819 1.67973 -1.1747 -0.469519 1.04973 -1.1747 -0.469519 1.67973 -1.17876 -0.469519 1.67973 -1.18243 -0.462519 1.67973 -1.17818 -0.462519 1.67973 -1.17818 -0.460519 1.67973 -1.17818 -0.462519 1.04973 -1.20018 -0.460519 1.04973 -1.20018 -0.460519 1.67973 -1.20018 -0.462519 1.67973 -1.19593 -0.462519 1.04973 -1.19593 -0.465855 1.67973 -1.20366 -0.469519 1.04973 -1.20418 -0.469819 1.67973 -1.20818 -0.462519 1.67973 -1.20818 -0.462519 1.04973 -1.20818 -0.460519 1.67973 -1.20818 -0.460519 1.04973 -1.21816 -0.46082 1.56449 -1.21718 -0.460519 1.67973 -1.21718 -0.460519 1.04973 -1.21918 -0.462519 1.67973 -1.21918 -0.462519 1.04973 -1.21823 -0.460763 1.04976 -1.21862 -0.461241 1.67964 -1.21718 -0.471519 1.67973 -1.21918 -0.471519 1.04973 -1.21718 -0.471519 1.04973 -1.21718 -0.467269 1.67973 -1.21718 -0.467269 1.04973 -1.21384 -0.467269 1.67973 -1.21018 -0.470933 1.67973 -1.21018 -0.474999 1.04973 -1.20988 -0.475519 1.67973 -1.21718 -0.483769 1.67973 -1.21718 -0.479519 1.67973 -1.21918 -0.479519 1.67973 -1.21718 -0.479519 1.04973 -1.21918 -0.501519 1.67973 -1.21718 -0.497269 1.67973 -1.21718 -0.501519 1.67973 -1.21018 -0.500933 1.67973 -1.20988 -0.505519 1.67973 -1.21018 -0.510105 1.67973 -1.21384 -0.513769 1.67973 -1.21718 -0.513769 1.67973 -1.21918 -0.518519 1.67973 -1.20818 -0.520519 1.67973 -1.20876 -0.511519 1.67973 -1.2047 -0.511519 1.67973 -1.20418 -0.511219 1.67973 -1.20366 -0.511519 1.67973 -1.19959 -0.511519 1.67973 -1.18596 -0.510226 1.67973 -1.18243 -0.515183 1.67973 -1.17876 -0.511519 1.67973 -1.17418 -0.511219 1.67973 -1.17366 -0.511519 1.67973 -1.16959 -0.511519 1.67973 -1.16818 -0.504999 1.67973 -1.16818 -0.500933 1.67973 -1.17496 -0.499226 1.67973 -1.16593 -0.515183 1.67973 -1.16118 -0.509519 1.67973 -1.16451 -0.497269 1.67973 -1.16451 -0.483769 1.67973 -1.16118 -0.483769 1.67973 -1.16118 -0.497269 1.67973 -1.15918 -0.501519 1.67973 -1.16818 -0.476039 1.67973 -1.16818 -0.474999 1.67973 -1.16451 -0.467269 1.67973 -1.16593 -0.462519 1.67973 -1.17018 -0.460519 1.67973 -1.18596 -0.470812 1.67973 -1.18243 -0.465855 1.67973 -1.19593 -0.462519 1.67973 -1.20366 -0.469519 1.67973 -1.2047 -0.469519 1.67973 -1.21243 -0.465855 1.67973 -1.20876 -0.469519 1.67973 -1.21018 -0.474999 1.67973 -1.21018 -0.476039 1.67973 -1.21918 -0.471519 1.67973 -1.21243 -0.462519 1.67973 -1.21018 -0.480105 1.67973 -1.21384 -0.483769 1.67973 -1.19959 -0.469519 1.67973 -1.16818 -0.480105 1.67973 -1.21384 -0.497269 1.67973 -1.20889 -0.487297 1.67973 -1.20918 -0.488004 1.67973 -1.20918 -0.488004 1.04973 -1.20889 -0.487297 1.04973 -1.20907 -0.487586 1.36703 -1.20918 -0.493034 1.67973 -1.20889 -0.493741 1.04973 -1.20918 -0.493034 1.04973 -1.20889 -0.493741 1.67973 -1.2034 -0.499226 1.67973 -1.2034 -0.499226 1.04973 -1.20118 -0.499519 1.67973 -1.20194 -0.499519 1.04973 -1.19897 -0.500547 1.35464 -1.19877 -0.500553 1.6795 -1.20016 -0.499711 1.32992 -1.19901 -0.500287 1.04998 -1.19818 -0.503276 1.67973 -1.1981 -0.504393 1.38103 -1.19789 -0.504741 1.67973 -1.19789 -0.504741 1.04973 -1.19818 -0.502519 1.04973 -1.1924 -0.510226 1.04973 -1.19169 -0.510519 1.04973 -1.1924 -0.510226 1.67973 -1.19169 -0.510519 1.67973 -1.18666 -0.510519 1.67973 -1.18666 -0.510519 1.04973 -1.18596 -0.510226 1.04973 -1.18047 -0.504741 1.67973 -1.18047 -0.504741 1.04973 -1.18018 -0.502519 1.04973 -1.18018 -0.502519 1.67973 -1.17718 -0.499519 1.04973 -1.17718 -0.499519 1.67973 -1.17917 -0.5002 1.6796 -1.17967 -0.500954 1.5194 -1.17821 -0.499711 1.36879 -1.17937 -0.500387 1.05008 -1.17566 -0.499519 1.04973 -1.17566 -0.499519 1.67973 -1.17496 -0.499226 1.04973 -1.16947 -0.493741 1.04973 -1.16947 -0.493741 1.67973 -1.16918 -0.493034 1.67973 -1.16918 -0.493034 1.04973 -1.16918 -0.488004 1.67973 -1.16947 -0.487297 1.67973 -1.16918 -0.488004 1.04973 -1.16922 -0.487705 1.36703 -1.16947 -0.487297 1.04973 -1.17566 -0.481519 1.04973 -1.17496 -0.481812 1.67973 -1.17566 -0.481519 1.67973 -1.17496 -0.481812 1.04973 -1.17718 -0.481519 1.67973 -1.17718 -0.481519 1.04973 -1.17934 -0.480648 1.04992 -1.17845 -0.481266 1.67973 -1.1799 -0.479715 1.33061 -1.17802 -0.481373 1.25218 -1.17902 -0.480796 1.38476 -1.17994 -0.479761 1.67972 -1.18018 -0.478519 1.67973 -1.18018 -0.478519 1.04973 -1.18047 -0.476297 1.67973 -1.18047 -0.476297 1.04973 -1.18666 -0.470519 1.67973 -1.18666 -0.470519 1.04973 -1.18627 -0.470612 1.38103 -1.18596 -0.470812 1.04973 -1.1924 -0.470812 1.67973 -1.19169 -0.470519 1.67973 -1.19169 -0.470519 1.04973 -1.19789 -0.476297 1.67973 -1.19807 -0.476586 1.36703 -1.19789 -0.476297 1.04973 -1.19818 -0.477004 1.67973 -1.19818 -0.477762 1.04973 -1.19899 -0.480683 1.67935 -1.19818 -0.478519 1.67973 -1.19957 -0.480926 1.52738 -1.19832 -0.479351 1.32853 -1.19909 -0.48063 1.32853 -1.20118 -0.481519 1.67973 -1.19904 -0.48085 1.04982 -1.20118 -0.481519 1.04973 -1.17783 -0.475393 1.67966 -1.17523 -0.47214 1.67974 -1.17318 -0.478898 1.6797 -1.17172 -0.473264 1.51583 -1.17622 -0.478298 1.67967 -1.17083 -0.474703 1.67971 -1.17261 -0.472489 1.67968 -1.17462 -0.472183 1.54113 -1.17098 -0.474356 1.27653 -1.171 -0.476808 1.67968 -1.17755 -0.475422 1.3921 -1.17707 -0.473846 1.40273 -1.17085 -0.47581 1.31906 -1.17692 -0.47737 1.29956 -1.17199 -0.478124 1.35213 -1.17547 -0.478626 1.2974 -1.17421 -0.47208 1.04972 -1.17179 -0.473062 1.04974 -1.17289 -0.478757 1.04973 -1.17585 -0.478619 1.0497 -1.17758 -0.476165 1.04977 -1.17663 -0.473044 1.04979 -1.17071 -0.47594 1.04965 -1.20725 -0.503795 1.04964 -1.20745 -0.506669 1.67963 -1.20101 -0.50421 1.67966 -1.20094 -0.506773 1.67974 -1.20213 -0.508219 1.67954 -1.20739 -0.504487 1.67966 -1.2036 -0.508817 1.41946 -1.20517 -0.508857 1.67975 -1.20648 -0.507931 1.38944 -1.20627 -0.50278 1.67972 -1.20248 -0.502538 1.67968 -1.20445 -0.502105 1.67972 -1.2014 -0.503577 1.31788 -1.20588 -0.502575 1.15998 -1.20747 -0.505969 1.29592 -1.20085 -0.505182 1.34268 -1.20118 -0.507036 1.39682 -1.20091 -0.506879 1.04972 -1.20364 -0.508914 1.04977 -1.20696 -0.507668 1.04972 -1.20425 -0.502117 1.04981 -1.20216 -0.502769 1.04974 -1.17385 -0.508982 1.04972 -1.17091 -0.504351 1.04979 -1.17059 -0.504893 1.67981 -1.17663 -0.507982 1.67972 -1.17336 -0.502199 1.67972 -1.17761 -0.505212 1.67965 -1.17295 -0.508822 1.67974 -1.17639 -0.502907 1.67969 -1.17169 -0.503245 1.54113 -1.17218 -0.50824 1.49703 -1.1711 -0.506615 1.47813 -1.17169 -0.503245 1.29543 -1.17447 -0.508842 1.55648 -1.17096 -0.504428 1.44978 -1.17339 -0.502304 1.2972 -1.17682 -0.503486 1.38166 -1.17547 -0.502411 1.31886 -1.17103 -0.506662 1.23243 -1.17724 -0.506793 1.33638 -1.17747 -0.504996 1.37861 -1.17685 -0.50757 1.04975 -1.17605 -0.508326 1.21648 -1.17763 -0.504391 1.0496 -1.17332 -0.502028 1.04973 -1.17155 -0.507711 1.04974 -1.20651 -0.472865 1.0497 -1.20576 -0.478602 1.67961 -1.20492 -0.472202 1.67973 -1.20176 -0.477951 1.67972 -1.20747 -0.476536 1.67974 -1.20748 -0.474643 1.67972 -1.20123 -0.473519 1.67963 -1.20348 -0.478865 1.67968 -1.20331 -0.472248 1.43708 -1.2074 -0.476382 1.5049 -1.20098 -0.476682 1.41513 -1.20182 -0.47316 1.34504 -1.20547 -0.478626 1.3349 -1.20633 -0.472841 1.6797 -1.20695 -0.477372 1.40923 -1.20736 -0.476442 1.19896 -1.20386 -0.478963 1.04983 -1.20461 -0.472183 1.21353 -1.20085 -0.475228 1.33505 -1.20588 -0.472574 1.21353 -1.20248 -0.472248 1.04985 -1.20676 -0.477858 1.04971 -1.20157 -0.477735 1.04975 -1.20754 -0.474991 1.04973 -1.20069 -0.475436 1.04973 -1.15918 -0.481519 1.00622 -1.15918 -0.481812 1.00551 0.140821 -0.481812 1.00551 0.140821 -0.501519 0.991733 0.140821 -0.497269 0.991733 0.140821 -0.480105 0.998733 0.140821 -0.476039 0.998733 0.140821 -0.475519 0.999032 0.140821 -0.474999 0.998733 0.140821 -0.469519 1.00015 0.140821 -0.467269 0.991733 0.140821 -0.467269 0.995068 0.140821 -0.465855 0.996483 0.140821 -0.469519 1.00421 0.140821 -0.469819 1.00473 0.140821 -0.469519 1.00525 0.140821 -0.469519 1.00932 0.140821 -0.465855 1.01298 0.140821 -0.469519 1.03015 0.140821 -0.465855 1.02648 0.140821 -0.462519 1.02648 0.140821 -0.460519 1.03073 0.140821 -0.469519 1.03421 0.140821 -0.469519 1.03525 0.140821 -0.474999 1.04073 0.140821 -0.480105 1.04073 0.140821 -0.462519 1.04298 0.140821 -0.465855 1.04298 0.140821 -0.467269 1.04773 0.140821 -0.471519 1.04773 0.140821 -0.483769 1.0444 0.140821 -0.497269 1.0444 0.140821 -0.500933 1.04073 0.140821 -0.505519 1.04043 0.140821 -0.511519 1.03932 0.140821 -0.513769 1.0444 0.140821 -0.509519 1.04773 0.140821 -0.518519 1.04298 0.140821 -0.520519 1.03873 0.140821 -0.511519 1.03525 0.140821 -0.511519 1.00932 0.140821 -0.515183 1.01298 0.140821 -0.518519 1.01298 0.140821 -0.520519 1.00873 0.140821 -0.520519 1.03073 0.140821 -0.511519 1.00525 0.140821 -0.511219 1.00473 0.140821 -0.511519 1.00421 0.140821 -0.510105 0.998733 0.140821 -0.506039 0.998733 0.140821 -0.505519 0.999032 0.140821 -0.504999 0.998733 0.140821 -0.500933 0.998733 0.140821 -0.515183 0.996483 0.140821 -0.509519 0.991733 0.140821 -0.518519 0.996483 0.140821 -0.518519 0.989733 0.140821 -0.481519 1.00622 0.140821 -0.470933 0.998733 0.14082 -0.499846 1.03027 0.140821 -0.483769 0.995068 0.140821 -0.501519 0.989733 0.140821 -0.497269 0.995068 -1.15918 -0.500933 0.998733 -1.15918 -0.505519 0.999032 -1.15918 -0.510105 0.998733 -1.15918 -0.513769 0.995068 -1.15918 -0.513769 0.991733 0.140821 -0.513769 0.995068 0.140821 -0.513769 0.991733 -1.15918 -0.509519 0.991733 -1.15918 -0.509519 0.989733 0.140821 -0.509519 0.989733 -0.505372 -0.520391 0.991051 0.140389 -0.520028 0.990559 -1.15918 -0.518519 0.989733 -0.804449 -0.519798 0.990257 0.140821 -0.520519 0.991733 -0.370064 -0.51991 0.990317 -0.163755 -0.519342 0.989932 -1.15923 -0.520068 0.990421 -1.15918 -0.520519 1.00073 0.140821 -0.520519 1.00073 0.140821 -0.518519 1.00073 -1.15918 -0.518519 1.00073 -1.15918 -0.515183 0.996483 0.140821 -0.511519 1.00015 -1.15918 -0.511519 1.00525 -1.15918 -0.511519 1.00932 -1.15918 -0.515183 1.01298 -1.15918 -0.518519 1.01298 -1.15918 -0.518519 1.00873 0.140821 -0.518519 1.00873 -1.15918 -0.520519 1.03073 -1.15918 -0.518519 1.03073 -1.15918 -0.518519 1.02648 0.140821 -0.518519 1.03073 0.140821 -0.518519 1.02648 0.140821 -0.515183 1.02648 0.140821 -0.511519 1.03015 -1.15918 -0.511519 1.03421 -1.15918 -0.511219 1.03473 0.140821 -0.511519 1.03421 0.140821 -0.511219 1.03473 -1.15918 -0.511519 1.03525 -1.15918 -0.511519 1.03932 -1.15918 -0.515183 1.04298 -1.15918 -0.518519 1.04298 0.140821 -0.515183 1.04298 -1.15918 -0.518519 1.03873 0.140821 -0.518519 1.03873 0.140786 -0.519572 1.04948 -0.781183 -0.519201 1.04961 -0.796703 -0.519966 1.04906 -0.462347 -0.519201 1.04961 -0.523495 -0.520412 1.04834 -0.344434 -0.519972 1.04905 -1.15918 -0.520519 1.04773 0.140821 -0.520519 1.04773 -1.15918 -0.509519 1.04773 0.140821 -0.513769 1.04773 -1.15918 -0.513769 1.0444 0.140821 -0.510105 1.04073 -1.15918 -0.506039 1.04073 0.140821 -0.506039 1.04073 -1.15918 -0.504999 1.04073 0.140821 -0.504999 1.04073 -1.15918 -0.500933 1.04073 -1.15918 -0.497269 1.04773 0.140821 -0.497269 1.04773 -1.15918 -0.501519 1.04973 0.140821 -0.501519 1.04773 0.140821 -0.479519 1.04973 0.140821 -0.479519 1.04773 -1.15918 -0.479519 1.04773 0.140821 -0.483769 1.04773 -1.15918 -0.480105 1.04073 0.140821 -0.476039 1.04073 0.140821 -0.475519 1.04043 -1.15918 -0.475519 1.04043 0.140821 -0.470933 1.04073 -1.15918 -0.467269 1.04773 0.140821 -0.467269 1.0444 -1.15918 -0.471519 1.04773 -0.45954 -0.460587 1.04825 -1.15918 -0.460519 1.04773 -0.444575 -0.461016 1.049 -0.42961 -0.461838 1.04961 0.140821 -0.460519 1.04773 -0.283696 -0.461128 1.04913 0.140788 -0.461329 1.04937 -0.813306 -0.460904 1.04886 -1.13722 -0.461347 1.04923 -1.15918 -0.462519 1.04973 -0.864545 -0.461538 1.04944 -1.15918 -0.460519 1.03873 0.140821 -0.460519 1.03873 -1.15918 -0.462519 1.03873 0.140821 -0.462519 1.03873 -1.15918 -0.462519 1.04298 -1.15918 -0.465855 1.04298 0.140821 -0.469519 1.03932 -1.15918 -0.469819 1.03473 0.140821 -0.469819 1.03473 -1.15918 -0.469519 1.03421 -1.15918 -0.465855 1.02648 -1.15918 -0.462519 1.02648 -1.15918 -0.462519 1.03073 0.140821 -0.462519 1.03073 -1.15918 -0.460519 1.03073 -1.15918 -0.460519 1.00873 -1.15918 -0.462519 1.00873 0.140821 -0.462519 1.00873 0.140821 -0.462519 1.01298 -1.15918 -0.469819 1.00473 -1.15918 -0.469519 1.00421 -1.15918 -0.465855 0.996483 -1.15918 -0.462519 1.00073 0.140821 -0.462519 0.996483 0.140821 -0.462519 1.00073 -1.15918 -0.460519 1.00073 -1.15918 -0.460519 0.991733 -1.15918 -0.462519 0.989733 0.140821 -0.462519 0.989733 0.140808 -0.461251 0.990252 -0.536239 -0.462092 0.989801 -0.359459 -0.46178 0.98989 -1.15904 -0.461766 0.989866 -0.42961 -0.460647 0.991051 -0.0255407 -0.461182 0.990273 -1.1591 -0.460726 0.990754 -0.62381 -0.461224 0.990234 0.140821 -0.471519 0.989733 -1.15918 -0.471519 0.989733 -1.15918 -0.471519 0.991733 0.140821 -0.471519 0.991733 -1.15918 -0.467269 0.991733 -1.15918 -0.475519 0.999032 -1.15918 -0.476039 0.998733 -1.15918 -0.483769 0.995068 0.140821 -0.483769 0.991733 0.140821 -0.479519 0.991733 -1.15918 -0.479519 0.989733 0.140821 -0.479519 0.989733 -1.15918 -0.501519 0.989733 -1.15918 -0.479519 0.991733 -1.15918 -0.483769 0.991733 -1.15918 -0.501519 0.991733 -1.15918 -0.497269 0.991733 -1.15918 -0.493741 1.00003 -1.15918 -0.504999 0.998733 -1.15918 -0.506039 0.998733 -1.15918 -0.511519 1.00015 -1.15918 -0.518519 0.996483 -1.15918 -0.511519 1.00421 -1.15918 -0.511219 1.00473 -1.15918 -0.515183 1.02648 -1.15918 -0.511519 1.03015 -1.15918 -0.520519 1.00873 -1.15918 -0.510105 1.04073 -1.15918 -0.505519 1.04043 -1.15918 -0.513769 1.04773 -1.15918 -0.509519 1.04973 -1.15765 -0.519708 1.04936 -1.15918 -0.497269 1.0444 -1.15918 -0.483769 1.0444 -1.15918 -0.483769 1.04773 -1.15918 -0.501519 1.04773 -1.15918 -0.476039 1.04073 -1.15918 -0.474999 1.04073 -1.15918 -0.467269 1.0444 -1.15918 -0.470933 1.04073 -1.15918 -0.471519 1.04973 -1.15918 -0.469519 1.03932 -1.15918 -0.469519 1.03525 -1.15918 -0.469519 1.03015 -1.15918 -0.465855 1.01298 -1.15918 -0.469519 1.00932 -1.15918 -0.462519 1.01298 -1.15918 -0.469519 1.00525 -1.15918 -0.467269 0.995068 -1.15918 -0.469519 1.00015 -1.15918 -0.470933 0.998733 -1.15918 -0.474999 0.998733 -1.15918 -0.480105 0.998733 -1.15918 -0.462519 0.996483 -1.15918 -0.497269 0.995068 0.140821 -0.488004 0.999733 -0.586008 -0.487586 0.999836 -1.15918 -0.488004 0.999733 -1.15918 -0.487297 1.00003 0.140821 -0.487297 1.00003 -1.15918 -0.493034 0.999733 -0.507741 -0.493393 0.99981 0.140821 -0.493034 0.999733 0.140821 -0.493741 1.00003 0.140821 -0.499226 1.00551 0.140821 -0.499519 1.00622 -1.15918 -0.499519 1.00622 -1.15918 -0.499226 1.00551 0.140821 -0.499519 1.00773 -1.15903 -0.500166 1.00972 -1.05246 -0.501148 1.01037 -0.98507 -0.499711 1.00875 -0.642472 -0.49953 1.00799 -0.625623 -0.499711 1.00875 -0.485213 -0.501877 1.01063 -0.530144 -0.49953 1.00799 -0.620708 -0.500446 1.00983 -0.389735 -0.499711 1.00875 -1.15918 -0.499519 1.00773 -0.558226 -0.499711 1.00875 -0.600348 -0.499711 1.00875 -0.299873 -0.499711 1.00875 0.140813 -0.499886 1.00918 -0.181665 -0.500224 1.00954 0.140735 -0.500871 1.01028 0.140821 -0.502519 1.01073 -1.15918 -0.502519 1.01073 0.140821 -0.504741 1.01103 -1.15918 -0.504034 1.01073 -0.611784 -0.504452 1.01084 -0.227951 -0.504452 1.01084 0.140821 -0.504034 1.01073 -1.15918 -0.504741 1.01103 -0.509674 -0.510422 1.01681 -1.15918 -0.510519 1.01722 0.140821 -0.510226 1.01651 0.140821 -0.510519 1.01722 -1.15918 -0.510226 1.01651 0.140821 -0.510519 1.02225 0.140821 -0.510226 1.02295 -1.15918 -0.510226 1.02295 -1.15918 -0.510519 1.02225 -0.492627 -0.510437 1.02261 0.140821 -0.504034 1.02873 -1.15918 -0.504034 1.02873 -1.15918 -0.504741 1.02844 0.140821 -0.504741 1.02844 -0.335615 -0.504449 1.02863 0.140801 -0.501272 1.02895 -1.15918 -0.499519 1.03173 -0.9963 -0.499711 1.03071 -1.15918 -0.502519 1.02873 -0.499254 -0.501877 1.02883 -0.423433 -0.501497 1.02892 -0.384118 -0.50033 1.02973 0.140821 -0.502519 1.02873 -0.695827 -0.501497 1.02892 -0.372886 -0.501497 1.02892 -0.232476 -0.501497 1.02892 -0.39816 -0.501497 1.02892 -0.941456 -0.500622 1.02953 -0.667746 -0.500263 1.0298 -0.0330942 -0.50033 1.02973 -1.15903 -0.500203 1.02965 -0.581393 -0.499666 1.0309 0.140821 -0.499519 1.03173 -0.240198 -0.499711 1.03071 -1.15918 -0.499226 1.03395 0.140821 -0.499226 1.03395 -1.15918 -0.499519 1.03325 0.140821 -0.499519 1.03325 -0.465357 -0.499429 1.03363 -1.15918 -0.493034 1.03973 -0.851013 -0.49337 1.03967 -1.15918 -0.493741 1.03944 0.140821 -0.493741 1.03944 0.140821 -0.493034 1.03973 -1.15918 -0.487297 1.03944 -0.50657 -0.487646 1.03966 -1.15918 -0.488004 1.03973 0.140821 -0.488004 1.03973 0.140821 -0.487297 1.03944 -1.15918 -0.481812 1.03395 -1.15918 -0.481519 1.03325 0.140821 -0.481519 1.03325 -0.425565 -0.481627 1.03367 -1.15918 -0.481605 1.0336 0.140821 -0.481812 1.03395 -1.15918 -0.478519 1.02873 0.140821 -0.478519 1.02873 -0.475033 -0.47916 1.02883 -0.787181 -0.480608 1.02962 -0.756554 -0.479541 1.02892 -0.419221 -0.480725 1.02975 -1.15918 -0.481519 1.03173 -0.931713 -0.481328 1.03071 -0.605965 -0.481328 1.03071 -0.454323 -0.481418 1.03109 0.140821 -0.481519 1.03173 -0.0864502 -0.480641 1.02965 0.140743 -0.480701 1.02947 -1.15879 -0.480718 1.02955 -0.103299 -0.479541 1.02892 0.140821 -0.476297 1.02844 -1.15918 -0.476297 1.02844 -1.15918 -0.477004 1.02873 -0.490518 -0.476631 1.02866 0.140821 -0.477004 1.02873 -1.15918 -0.470812 1.02295 0.140821 -0.470812 1.02295 0.140821 -0.470519 1.02225 -0.904931 -0.470612 1.02264 -1.15918 -0.470519 1.02225 0.140821 -0.470812 1.01651 0.140821 -0.470519 1.01722 -1.15918 -0.470519 1.01722 -0.437442 -0.470623 1.0168 -1.15918 -0.470812 1.01651 -0.52142 -0.47668 1.01081 -1.15918 -0.477004 1.01073 -1.15918 -0.476297 1.01103 0.140821 -0.477004 1.01073 0.140821 -0.476297 1.01103 -1.15918 -0.481519 1.00773 -1.15918 -0.478519 1.01073 -0.693151 -0.480524 1.00992 -0.355861 -0.481373 1.00856 -0.14393 -0.480682 1.00976 -0.914689 -0.479541 1.01054 -0.563141 -0.47916 1.01063 0.140821 -0.478519 1.01073 -0.152896 -0.479541 1.01054 -1.15889 -0.480653 1.00985 0.140821 -0.481519 1.00773 -0.999108 -0.481328 1.00875 0.140717 -0.480734 1.00986 0.140795 -0.478446 1.03228 -1.1591 -0.472299 1.03351 -1.15912 -0.474016 1.03775 -1.15918 -0.478896 1.03532 -1.15916 -0.477483 1.03769 -1.15916 -0.477476 1.03172 -1.02137 -0.473275 1.03715 -1.15918 -0.472149 1.0354 -0.946494 -0.476822 1.03781 -0.923792 -0.47812 1.0326 -0.968799 -0.472849 1.03269 -0.7537 -0.478816 1.03414 -1.15909 -0.473977 1.03169 -0.998273 -0.475482 1.03137 -1.02456 -0.475264 1.03808 -0.507187 -0.478609 1.03609 -0.818247 -0.478293 1.03667 -0.960037 -0.477071 1.03175 -0.564541 -0.477565 1.03741 -0.592321 -0.472244 1.03426 -0.518738 -0.476212 1.03802 -0.412196 -0.474362 1.03159 -0.530836 -0.473936 1.03768 -0.480502 -0.472849 1.03269 -0.437886 -0.478051 1.03251 -0.472537 -0.47574 1.03137 -0.514755 -0.472534 1.03628 -0.179399 -0.472196 1.03444 -0.161537 -0.477013 1.0318 -0.228986 -0.475673 1.03802 -0.143554 -0.473364 1.03217 -0.0826162 -0.472489 1.03607 -0.137978 -0.477364 1.03756 -0.0858024 -0.475199 1.03141 -0.0523465 -0.478804 1.03547 -0.0433852 -0.478639 1.03359 -0.0308391 -0.47613 1.03803 -0.0738252 -0.473835 1.03761 0.140767 -0.472143 1.03575 0.140827 -0.478325 1.0368 0.0261155 -0.472411 1.03344 0.140751 -0.473967 1.03175 0.140849 -0.474879 1.0383 -1.15917 -0.508691 1.00342 -1.15916 -0.502842 1.00259 -1.15908 -0.503538 1.00752 -1.15915 -0.50684 1.0016 -1.15914 -0.507626 1.00775 -1.00464 -0.507432 1.002 -1.15918 -0.502133 1.0054 -0.917221 -0.507774 1.0072 -0.78738 -0.504752 1.00802 -0.769756 -0.508803 1.00546 -1.15918 -0.504494 1.00145 -0.860067 -0.506285 1.00802 -0.817252 -0.50316 1.00709 -0.62707 -0.502849 1.00268 -0.630556 -0.502196 1.00444 -0.630656 -0.507191 1.00183 -0.674068 -0.50423 1.00162 -0.588238 -0.508627 1.00344 -0.407218 -0.502324 1.0059 -0.495238 -0.506175 1.00803 -0.503006 -0.504517 1.00797 -0.417971 -0.507462 1.00751 -0.408015 -0.50316 1.00709 0.0490167 -0.508188 1.00268 -0.397161 -0.504656 1.00151 -0.665306 -0.506109 1.00138 -0.141313 -0.503258 1.00714 -0.228786 -0.502324 1.0059 -0.455012 -0.508504 1.00629 0.140683 -0.504508 1.0015 -0.10502 -0.505049 1.00802 -0.0766418 -0.503124 1.00234 -0.0794297 -0.507195 1.00763 0.140857 -0.508416 1.00662 0.0739096 -0.505666 1.00136 0.14081 -0.504912 1.00832 0.140776 -0.506972 1.00168 0.140793 -0.508929 1.00444 0.140817 -0.502219 1.00585 0.140711 -0.502445 1.00321 -1.15919 -0.508197 1.03231 -1.15903 -0.502544 1.03646 -1.15917 -0.508881 1.03546 -0.983634 -0.504188 1.03777 -1.15898 -0.50528 1.03818 -1.15918 -0.502038 1.03485 -1.1591 -0.507431 1.03765 -1.15897 -0.50495 1.03134 -1.15913 -0.502868 1.03256 -0.848119 -0.505657 1.03137 -0.923792 -0.50812 1.0326 -0.914135 -0.507098 1.03179 -0.885159 -0.503606 1.03201 -1.00345 -0.50879 1.03385 -0.727837 -0.503368 1.0373 -0.507436 -0.502234 1.03547 -0.451577 -0.508627 1.03344 -0.714444 -0.505571 1.03803 -0.468479 -0.508803 1.03547 -0.440425 -0.504945 1.03146 -0.556176 -0.503606 1.03201 -0.667696 -0.507878 1.03709 -0.643102 -0.502411 1.03344 -0.426535 -0.507308 1.03197 -0.382524 -0.506472 1.03795 -0.257463 -0.508294 1.03667 -0.151917 -0.505099 1.03806 -0.0523465 -0.502849 1.03269 0.14066 -0.503727 1.03776 -0.139429 -0.506941 1.03776 -0.284546 -0.503493 1.03736 -0.0527448 -0.506966 1.03172 0.140781 -0.508851 1.03405 0.1407 -0.502073 1.03514 -0.0767414 -0.505138 1.03145 0.140765 -0.508304 1.03281 0.140669 -0.506901 1.03792 0.1408 -0.506354 1.03138 0.140772 -0.503477 1.03192 0.140822 -0.50868 1.036 0.140769 -0.476215 1.00126 0.140754 -0.47888 1.00385 -1.15927 -0.475283 1.00844 -1.15922 -0.475791 1.00108 -1.08311 -0.473571 1.00204 -1.15913 -0.472393 1.00329 -1.15918 -0.478681 1.00339 -0.981226 -0.477502 1.00204 -0.962062 -0.472839 1.00672 -1.15918 -0.472149 1.00535 -0.95924 -0.476674 1.00787 -0.847788 -0.475673 1.00803 -1.15912 -0.478771 1.00605 -0.670334 -0.474482 1.00789 -0.635833 -0.478804 1.00546 -0.49962 -0.472534 1.00629 -1.07514 -0.47563 1.00136 -0.613928 -0.477877 1.00709 -0.445055 -0.477379 1.00198 -0.440972 -0.476861 1.00778 -0.354246 -0.475059 1.00804 -0.457053 -0.472849 1.00268 -0.496135 -0.474582 1.00151 -0.179399 -0.472196 1.00444 -0.264233 -0.473576 1.00751 -0.0587191 -0.473979 1.00179 -0.117068 -0.478667 1.00354 -0.102331 -0.475469 1.00802 -0.126427 -0.477669 1.0073 0.140694 -0.471962 1.00494 -0.00574723 -0.478609 1.00609 -0.103427 -0.476145 1.00148 -0.0712651 -0.478867 1.00473 0.0440383 -0.478189 1.00268 0.14074 -0.476096 1.00833 0.140761 -0.473057 1.00233 0.140682 -0.473121 1.0071 0.140821 -0.481812 1.69551 0.140821 -0.481519 1.69622 -1.15918 -0.481812 1.69551 -0.478684 -0.481623 1.6958 -1.15918 -0.481519 1.69622 0.140821 -0.497269 1.68173 0.140821 -0.497269 1.68507 0.140821 -0.467269 1.68173 0.140821 -0.467269 1.68507 0.140821 -0.465855 1.68648 0.140821 -0.469519 1.69015 0.140821 -0.471519 1.67973 0.140821 -0.462519 1.68648 0.140821 -0.462519 1.69073 0.140821 -0.469519 1.69421 0.140821 -0.469819 1.69473 0.140821 -0.469519 1.69525 0.140821 -0.469519 1.69932 0.140821 -0.465855 1.70298 0.140821 -0.465855 1.71648 0.140821 -0.469819 1.72473 0.140821 -0.469519 1.72421 0.140821 -0.469519 1.72932 0.140821 -0.474999 1.73073 0.140821 -0.480105 1.73073 0.140821 -0.467269 1.73773 0.140821 -0.471519 1.73973 0.140821 -0.462519 1.73298 0.140821 -0.497269 1.7344 0.140821 -0.483769 1.73773 0.140821 -0.501519 1.73773 0.140821 -0.504999 1.73073 0.140821 -0.506039 1.73073 0.140821 -0.515183 1.73298 0.140821 -0.513769 1.7344 0.140821 -0.509519 1.73773 0.140821 -0.509519 1.73973 0.140821 -0.518519 1.73298 0.140821 -0.518519 1.72873 0.140821 -0.511519 1.72932 0.140821 -0.511219 1.72473 0.140821 -0.511519 1.72421 0.140821 -0.511519 1.72015 0.140821 -0.515183 1.71648 0.140821 -0.511519 1.69932 0.140821 -0.518519 1.71648 0.140821 -0.520519 1.69873 0.140821 -0.518519 1.69873 0.140821 -0.511519 1.69525 0.140821 -0.511519 1.69421 0.140821 -0.513769 1.68507 0.140821 -0.510105 1.68873 0.140821 -0.505519 1.68903 0.140821 -0.500933 1.68873 0.140821 -0.518519 1.68648 0.140821 -0.513769 1.68173 0.140806 -0.477935 1.69731 0.140821 -0.500933 1.73073 0.140821 -0.511519 1.69015 0.140821 -0.481519 1.72173 -1.15918 -0.501519 1.68173 0.140821 -0.501519 1.68173 -1.15918 -0.500933 1.68873 0.140821 -0.504999 1.68873 -1.15918 -0.505519 1.68903 0.140821 -0.506039 1.68873 -1.15918 -0.510105 1.68873 -1.15918 -0.513769 1.68507 -1.15918 -0.509519 1.68173 0.140821 -0.509519 1.68173 0.140821 -0.509519 1.67973 -0.549334 -0.519201 1.67986 0.14082 -0.519866 1.68041 -1.15913 -0.519835 1.68032 -1.15918 -0.520519 1.68173 -0.499293 -0.520391 1.68105 -0.463692 -0.51985 1.68026 -0.975854 -0.519528 1.68006 -1.15918 -0.520519 1.69073 0.140821 -0.520519 1.68173 0.140821 -0.520519 1.69073 -1.15918 -0.518519 1.69073 0.140821 -0.518519 1.69073 0.140821 -0.515183 1.68648 -1.15918 -0.511219 1.69473 0.140821 -0.511219 1.69473 -1.15918 -0.511519 1.69932 0.140821 -0.518519 1.70298 -1.15918 -0.518519 1.69873 -1.15918 -0.518519 1.72073 0.140821 -0.520519 1.72073 0.140821 -0.518519 1.72073 -1.15918 -0.511519 1.72421 0.140821 -0.511519 1.72525 -1.15918 -0.515183 1.73298 -1.15918 -0.518519 1.73298 -1.15918 -0.518519 1.72873 0.140821 -0.520519 1.72873 -1.15915 -0.520386 1.73852 -0.933761 -0.519799 1.73926 -0.614574 -0.519201 1.7396 0.140821 -0.518519 1.73973 -0.139185 -0.519799 1.73926 -0.250725 -0.520335 1.73852 0.117485 -0.51996 1.73899 -1.15911 -0.519471 1.73955 -1.15918 -0.518519 1.73973 0.140821 -0.520519 1.73773 -0.725179 -0.520451 1.73825 -1.15918 -0.509519 1.73973 -1.15918 -0.509519 1.73773 0.140821 -0.513769 1.73773 -1.15918 -0.513769 1.7344 0.140821 -0.510105 1.73073 -1.15918 -0.506039 1.73073 -1.15918 -0.505519 1.73043 0.140821 -0.505519 1.73043 -1.15918 -0.504999 1.73073 0.140821 -0.497269 1.73773 -1.15918 -0.497269 1.73773 -1.15918 -0.501519 1.73973 0.140821 -0.501519 1.73973 -1.15918 -0.479519 1.73973 0.140821 -0.479519 1.73973 -1.15918 -0.479519 1.73773 0.140821 -0.479519 1.73773 -1.15918 -0.483769 1.73773 -1.15918 -0.483769 1.7344 0.140821 -0.483769 1.7344 -1.15918 -0.476039 1.73073 0.140821 -0.476039 1.73073 0.140821 -0.475519 1.73043 0.140821 -0.470933 1.73073 0.140821 -0.467269 1.7344 -1.15918 -0.471519 1.73773 0.140821 -0.471519 1.73773 -0.0947563 -0.461538 1.73943 0.140821 -0.462519 1.73973 -0.51496 -0.462092 1.73966 -1.15918 -0.460519 1.73773 -1.02542 -0.461389 1.73934 -0.571782 -0.461239 1.73926 -1.15918 -0.462519 1.73973 -0.229037 -0.461003 1.73897 0.139174 -0.460995 1.73896 -0.545125 -0.460624 1.73829 -0.915989 -0.460793 1.73873 0.140821 -0.460519 1.73773 0.140821 -0.462519 1.72873 -1.15918 -0.462519 1.73298 -1.15918 -0.469519 1.72932 0.140821 -0.465855 1.73298 0.140821 -0.469519 1.72525 0.140821 -0.469519 1.72015 -1.15918 -0.465855 1.71648 -1.15918 -0.462519 1.71648 0.140821 -0.462519 1.71648 0.140821 -0.462519 1.72073 -1.15918 -0.462519 1.72073 0.140821 -0.462519 1.69873 0.140821 -0.462519 1.70298 -1.15918 -0.469519 1.69525 -1.15918 -0.469819 1.69473 -1.15918 -0.465855 1.68648 -1.15918 -0.462519 1.69073 -1.15918 -0.460519 1.69073 0.140821 -0.460519 1.69073 -1.15914 -0.461201 1.68033 -0.474506 -0.460647 1.68105 0.140824 -0.460733 1.68071 -0.819005 -0.461215 1.68024 -1.15918 -0.462519 1.67973 -0.554479 -0.462092 1.6798 0.140821 -0.462519 1.67973 -0.530247 -0.461165 1.68029 -0.24433 -0.461468 1.68009 0.140821 -0.460519 1.68173 -0.07792 -0.46082 1.68075 -1.15918 -0.471519 1.67973 -1.15918 -0.467269 1.68173 0.140821 -0.471519 1.68173 0.140821 -0.470933 1.68873 0.140821 -0.474999 1.68873 0.140821 -0.475519 1.68903 -1.15918 -0.480105 1.68873 0.140821 -0.476039 1.68873 0.140821 -0.480105 1.68873 -1.15918 -0.483769 1.68173 0.140821 -0.483769 1.68173 0.140821 -0.479519 1.68173 -1.15918 -0.479519 1.68173 0.140821 -0.479519 1.67973 -1.15918 -0.497269 1.68173 -1.15918 -0.483769 1.68507 -1.15918 -0.497269 1.68507 -1.15918 -0.504999 1.68873 -1.15918 -0.506039 1.68873 -1.15918 -0.511519 1.69015 -1.15918 -0.515183 1.68648 -1.15918 -0.513769 1.68173 -1.15918 -0.518519 1.67973 -1.15918 -0.518519 1.68648 -1.15918 -0.511519 1.69421 -1.15918 -0.511519 1.69525 -1.15918 -0.515183 1.71648 -1.15918 -0.511519 1.72015 -1.15918 -0.515183 1.70298 -1.15918 -0.518519 1.71648 -1.15918 -0.518519 1.70298 -1.15918 -0.520519 1.72073 -1.15918 -0.511519 1.72525 -1.15918 -0.511219 1.72473 -1.15918 -0.510105 1.73073 -1.15918 -0.500933 1.73073 -1.15918 -0.513769 1.73773 -1.15918 -0.497269 1.7344 -1.15918 -0.501519 1.73773 -1.15918 -0.475519 1.73043 -1.15918 -0.474999 1.73073 -1.15918 -0.470933 1.73073 -1.15918 -0.467269 1.73773 -1.15918 -0.467269 1.7344 -1.15918 -0.471519 1.73973 -1.15918 -0.465855 1.73298 -1.15918 -0.461363 1.73927 -1.15918 -0.460519 1.72873 -1.15918 -0.462519 1.72873 -1.15918 -0.469519 1.72525 -1.15918 -0.469819 1.72473 -1.15918 -0.469519 1.72421 -1.15918 -0.469519 1.72015 -1.15918 -0.465855 1.70298 -1.15918 -0.460519 1.69873 -1.15918 -0.460519 1.72073 -1.15918 -0.462519 1.69873 -1.15918 -0.462519 1.70298 -1.15918 -0.469519 1.69932 -1.15918 -0.469519 1.69421 -1.15918 -0.470933 1.68873 -1.15918 -0.474999 1.68873 -1.15918 -0.475519 1.68903 -1.15918 -0.476039 1.68873 -1.15918 -0.462519 1.68648 -1.15918 -0.467269 1.68507 -1.15918 -0.471519 1.68173 -1.15918 -0.460519 1.68173 -1.15918 -0.469519 1.69015 -1.15918 -0.504741 1.71844 -1.15918 -0.511519 1.72932 -1.15918 -0.502519 1.70073 -1.15918 -0.480105 1.73073 -1.15918 -0.488004 1.68973 -1.15918 -0.487297 1.69003 -0.448456 -0.487586 1.68984 0.140821 -0.487297 1.69003 0.140821 -0.488004 1.68973 0.140821 -0.483769 1.68507 -0.191865 -0.493077 1.68973 0.140821 -0.493741 1.69003 -1.15918 -0.493741 1.69003 -0.466704 -0.493452 1.68984 -1.15918 -0.493034 1.68973 0.140821 -0.493034 1.68973 0.140821 -0.499226 1.69551 -1.15918 -0.499226 1.69551 -1.15918 -0.499519 1.69622 0.140821 -0.499519 1.69622 -0.451868 -0.499424 1.69582 -0.815438 -0.500337 1.69975 0.140821 -0.499519 1.69773 -1.15911 -0.499931 1.69927 -0.704252 -0.499711 1.69876 -0.385873 -0.499666 1.69857 -0.258101 -0.500479 1.69989 -0.924343 -0.499711 1.69876 -1.15918 -0.499519 1.69773 0.140813 -0.499915 1.69914 -0.521369 -0.501687 1.70058 -1.15919 -0.501397 1.70052 0.140821 -0.502519 1.70073 0.140819 -0.501409 1.70052 -0.415181 -0.504452 1.70084 0.140821 -0.504034 1.70073 -1.15918 -0.504034 1.70073 -1.15918 -0.504741 1.70103 0.140821 -0.504741 1.70103 0.140821 -0.510519 1.70722 -1.15918 -0.510519 1.70722 -0.499305 -0.510415 1.7068 0.140821 -0.515183 1.70298 -1.15918 -0.510226 1.70651 0.140821 -0.510226 1.70651 0.140821 -0.510519 1.71225 -1.06732 -0.510403 1.71271 -1.04576 -0.510403 1.71271 -0.358707 -0.510403 1.71271 -1.05608 -0.510403 1.71271 -1.15918 -0.510519 1.71225 -1.15918 -0.510226 1.71295 0.140821 -0.510226 1.71295 0.140821 -0.504034 1.71873 -0.646816 -0.504416 1.71863 0.140821 -0.504741 1.71844 -0.401824 -0.504077 1.71873 -1.15918 -0.504034 1.71873 -1.15918 -0.502519 1.71873 -0.86818 -0.501497 1.71892 0.140821 -0.499519 1.72173 -0.52172 -0.501877 1.71883 0.140286 -0.500714 1.7193 0.140821 -0.502519 1.71873 -0.238794 -0.501497 1.71892 -0.4681 -0.500644 1.71951 -1.15909 -0.500185 1.71969 -0.868793 -0.500414 1.71964 -0.19597 -0.500464 1.71958 -1.15918 -0.499519 1.72173 -0.555418 -0.49962 1.72109 -0.784987 -0.499711 1.72071 -0.0527519 -0.499711 1.72071 0.140821 -0.499226 1.72395 0.140821 -0.499519 1.72325 -0.538673 -0.499402 1.72371 -1.15918 -0.499519 1.72325 -1.15918 -0.499226 1.72395 0.140821 -0.493741 1.72944 -1.15918 -0.493741 1.72944 -1.15918 -0.493034 1.72973 -0.507038 -0.493393 1.72966 0.140821 -0.493034 1.72973 -1.15918 -0.488004 1.72973 -0.928598 -0.487586 1.72963 -0.94172 -0.487586 1.72963 -0.954843 -0.487586 1.72963 -1.15918 -0.487297 1.72944 -0.519458 -0.487705 1.72969 0.140821 -0.487297 1.72944 0.140821 -0.488004 1.72973 -1.15918 -0.481519 1.72325 0.140821 -0.481812 1.72395 -1.15918 -0.481812 1.72395 -0.708796 -0.48163 1.72369 0.140821 -0.481519 1.72325 -1.15918 -0.481519 1.72173 -1.15918 -0.478519 1.71873 0.140771 -0.480801 1.71957 -1.1588 -0.480738 1.71957 -0.420625 -0.481418 1.72109 -0.356037 -0.479541 1.71892 0.140821 -0.478519 1.71873 -0.816578 -0.48124 1.72054 -0.280216 -0.480507 1.71951 -0.657917 -0.480574 1.71958 -0.600349 -0.47916 1.71883 -0.0696011 -0.479766 1.71905 -1.15918 -0.476297 1.71844 -1.15918 -0.477004 1.71873 -0.528948 -0.476586 1.71863 0.140821 -0.476297 1.71844 0.140821 -0.477004 1.71873 -1.15918 -0.470519 1.71225 0.140821 -0.470519 1.71225 -1.15918 -0.470812 1.71295 0.140821 -0.470812 1.71295 -0.422211 -0.470589 1.71258 -1.15918 -0.470812 1.70651 -1.15918 -0.470519 1.70722 0.140821 -0.470812 1.70651 0.140821 -0.470519 1.70722 0.140821 -0.477004 1.70073 -1.15918 -0.476297 1.70103 -1.15918 -0.477004 1.70073 -0.422211 -0.476586 1.70084 0.140821 -0.476297 1.70103 -1.15918 -0.481519 1.69773 0.140821 -0.478519 1.70073 0.140799 -0.47977 1.70048 -1.15917 -0.480812 1.69985 -0.942243 -0.480488 1.69995 -0.534005 -0.480488 1.69995 -0.378502 -0.47916 1.70063 -0.0527516 -0.480524 1.69992 0.140716 -0.481107 1.69932 -0.982258 -0.479541 1.70054 -1.15918 -0.478519 1.70073 -0.73795 -0.479541 1.70054 -0.933114 -0.481328 1.69876 0.140821 -0.481519 1.69773 -0.149634 -0.481328 1.69876 -0.555593 -0.481418 1.69837 -1.15919 -0.472091 1.72393 0.140794 -0.478591 1.72627 -1.1589 -0.476492 1.72815 -1.15909 -0.472633 1.72664 -1.15918 -0.476045 1.72137 -1.15909 -0.473593 1.72192 -1.15918 -0.478714 1.72346 -1.15905 -0.477766 1.7222 -0.863453 -0.472411 1.72344 -0.944777 -0.47452 1.72784 -0.895116 -0.477339 1.72752 -1.15913 -0.478718 1.72606 -0.714693 -0.475756 1.72801 -0.487074 -0.474679 1.72151 -0.633443 -0.478714 1.7259 -0.532677 -0.478189 1.72268 -0.681437 -0.472234 1.72546 -0.60168 -0.473394 1.72733 -0.543021 -0.475467 1.72805 -0.669687 -0.478841 1.72444 -0.303067 -0.47704 1.72773 -0.469351 -0.47695 1.72166 -0.5042 -0.477981 1.72699 -0.106115 -0.478893 1.72502 -0.130211 -0.472183 1.72459 -0.128817 -0.473967 1.72175 -0.114081 -0.472534 1.72629 -0.425141 -0.472534 1.72629 -0.128817 -0.478626 1.72344 -0.149827 -0.477281 1.72189 -0.217859 -0.472711 1.72286 -0.157693 -0.475537 1.72136 -0.273394 -0.474817 1.72802 0.140682 -0.474066 1.72788 0.140799 -0.478929 1.72445 0.140664 -0.47686 1.72793 0.140722 -0.475751 1.72125 0.140579 -0.472608 1.72256 0.140816 -0.472215 1.72602 -1.15914 -0.503056 1.6971 -1.15918 -0.504418 1.69795 -1.03969 -0.504088 1.69166 -1.12708 -0.507465 1.69751 -1.15916 -0.502797 1.69263 -1.15917 -0.508788 1.696 -1.15908 -0.508515 1.69298 -1.15901 -0.506031 1.69133 -1.15918 -0.502108 1.69532 -1.15905 -0.506076 1.6981 -0.818646 -0.508188 1.69269 -0.787977 -0.508714 1.6959 -0.664161 -0.502411 1.69344 -0.932357 -0.50695 1.69166 -0.756713 -0.508848 1.69451 -0.463774 -0.503675 1.69756 -0.48329 -0.506901 1.69775 -0.60636 -0.503124 1.69234 -0.735404 -0.504619 1.69151 -0.562947 -0.504681 1.69799 -0.449237 -0.505004 1.69144 -0.147138 -0.508803 1.69546 -0.415781 -0.502534 1.69629 -0.219128 -0.50499 1.69803 -0.182088 -0.507061 1.69768 -0.426335 -0.506712 1.69159 -0.547613 -0.502145 1.69502 -0.122843 -0.50316 1.69709 -0.26065 -0.508294 1.69668 -0.341152 -0.508627 1.69344 -0.39955 -0.507914 1.69234 -0.0232718 -0.50695 1.69166 -0.235358 -0.504753 1.69151 0.140809 -0.508198 1.69258 0.140782 -0.502148 1.69537 0.140821 -0.507853 1.69749 0.140798 -0.50234 1.69344 0.14081 -0.508878 1.69413 0.140742 -0.506174 1.69135 0.140668 -0.503825 1.69176 0.140718 -0.503852 1.69776 -1.15913 -0.506186 1.7281 -1.15916 -0.508139 1.72249 -1.15917 -0.508844 1.72467 -1.1591 -0.503981 1.72783 -1.15913 -0.505455 1.72113 -1.15918 -0.502782 1.72265 -1.15912 -0.507689 1.72731 -1.15914 -0.502532 1.72642 -1.15918 -0.502114 1.72431 -0.974236 -0.50441 1.72784 -0.965412 -0.503606 1.722 -1.07315 -0.508504 1.72629 -0.853297 -0.507613 1.72213 -0.900693 -0.505582 1.72143 -0.58321 -0.508627 1.72344 -0.523616 -0.504273 1.7216 -0.408015 -0.50316 1.7271 -0.741976 -0.508893 1.72502 -0.528396 -0.506162 1.72146 -0.501412 -0.507462 1.72751 -0.407218 -0.504356 1.72793 -0.430319 -0.502234 1.72546 -0.493247 -0.507432 1.722 -0.547115 -0.502411 1.72344 -0.584852 -0.508504 1.72629 -0.416179 -0.505892 1.72805 -0.141164 -0.505537 1.72136 -0.199612 -0.503108 1.72704 -0.061507 -0.508294 1.72668 -0.134393 -0.506511 1.72784 -0.113583 -0.508128 1.72264 -0.184179 -0.503606 1.722 -0.0957596 -0.508803 1.72546 0.140764 -0.507168 1.72174 0.140686 -0.507595 1.72761 0.140828 -0.508895 1.72418 0.140818 -0.502169 1.72549 0.140825 -0.504079 1.72158 0.140821 -0.50246 1.7232 0.140736 -0.503848 1.72786 -1.15902 -0.47365 1.69755 0.140823 -0.477396 1.6918 -1.15915 -0.478825 1.69359 -1.15907 -0.475219 1.69111 -0.968697 -0.476133 1.69803 -0.974774 -0.472849 1.69269 -1.15925 -0.471916 1.69439 -1.15918 -0.478005 1.69722 -0.921502 -0.473808 1.69751 -0.860067 -0.478503 1.69629 -0.937532 -0.477134 1.69181 -0.852102 -0.475496 1.69136 -0.815061 -0.472324 1.6959 -0.894718 -0.472196 1.69444 -0.834776 -0.478626 1.69344 -0.550102 -0.474918 1.69803 -0.480403 -0.478867 1.69473 -0.528097 -0.475583 1.69137 -0.961233 -0.474087 1.69166 -0.683627 -0.477339 1.69758 -0.558566 -0.477914 1.69234 -0.321388 -0.472411 1.69344 -0.53656 -0.476358 1.698 -0.558566 -0.47695 1.69166 -0.464472 -0.473123 1.69234 -0.414337 -0.47303 1.69696 -0.257463 -0.476846 1.69777 -0.251056 -0.474301 1.69782 -0.276581 -0.476438 1.69151 -0.324374 -0.474087 1.69166 -0.179399 -0.472196 1.69444 -0.401443 -0.472234 1.69546 -0.12344 -0.474235 1.69172 -0.419167 -0.478503 1.69629 0.140765 -0.472363 1.69611 0.140593 -0.473922 1.69781 0.140692 -0.473965 1.69163 0.1408 -0.472363 1.69332 0.140739 -0.47902 1.69526 -0.0710661 -0.478189 1.69269 0.0376658 -0.476864 1.69776 -0.5934 -0.481812 1.04973 -0.5934 -0.481812 1.67973 -0.609179 -0.479519 1.04973 -0.603843 -0.483769 1.04973 -0.603843 -0.497269 1.04973 -0.607179 -0.467269 1.04973 -0.602429 -0.465855 1.04973 -0.602429 -0.462519 1.04973 -0.598764 -0.469519 1.04973 -0.594179 -0.469819 1.04973 -0.589593 -0.469519 1.04973 -0.572429 -0.465855 1.04973 -0.568764 -0.469519 1.04973 -0.585929 -0.465855 1.04973 -0.572429 -0.462519 1.04973 -0.590179 -0.460519 1.04973 -0.564179 -0.469819 1.04973 -0.563659 -0.469519 1.04973 -0.558179 -0.470933 1.04973 -0.558179 -0.474999 1.04973 -0.558479 -0.475519 1.04973 -0.558179 -0.476039 1.04973 -0.558179 -0.480105 1.04973 -0.551179 -0.467269 1.04973 -0.555929 -0.462519 1.04973 -0.560179 -0.460519 1.04973 -0.554514 -0.483769 1.04973 -0.551179 -0.483769 1.04973 -0.558179 -0.504999 1.04973 -0.558179 -0.506039 1.04973 -0.555929 -0.515183 1.04973 -0.551179 -0.509519 1.04973 -0.549179 -0.509519 1.04973 -0.555929 -0.518519 1.04973 -0.560179 -0.520519 1.04973 -0.559593 -0.511519 1.04973 -0.563659 -0.511519 1.04973 -0.564698 -0.511519 1.04973 -0.568764 -0.511519 1.04973 -0.575957 -0.510226 1.04973 -0.572429 -0.515183 1.04973 -0.585929 -0.518519 1.04973 -0.568179 -0.518519 1.04973 -0.590179 -0.518519 1.04973 -0.593659 -0.511519 1.04973 -0.598764 -0.511519 1.04973 -0.600179 -0.510105 1.04973 -0.609179 -0.509519 1.04973 -0.607179 -0.513769 1.04973 -0.607179 -0.509519 1.04973 -0.609179 -0.518519 1.04973 -0.558179 -0.500933 1.04973 -0.600179 -0.480105 1.04973 -0.607179 -0.501519 1.67973 -0.607179 -0.501519 1.04973 -0.607179 -0.497269 1.04973 -0.600179 -0.500933 1.04973 -0.600179 -0.504999 1.04973 -0.599879 -0.505519 1.04973 -0.599879 -0.505519 1.67973 -0.600179 -0.506039 1.67973 -0.600179 -0.506039 1.04973 -0.603843 -0.513769 1.67973 -0.603843 -0.513769 1.04973 -0.607179 -0.509519 1.67973 -0.609179 -0.509519 1.67973 -0.608831 -0.519619 1.61839 -0.607179 -0.520519 1.67973 -0.607179 -0.520519 1.04973 -0.608845 -0.519528 1.26893 -0.609024 -0.519383 1.04973 -0.598179 -0.520519 1.67973 -0.598179 -0.520519 1.04973 -0.598179 -0.518519 1.04973 -0.602429 -0.518519 1.04973 -0.602429 -0.515183 1.04973 -0.594698 -0.511519 1.67973 -0.594698 -0.511519 1.04973 -0.594179 -0.511219 1.67973 -0.594179 -0.511219 1.04973 -0.593659 -0.511519 1.67973 -0.589593 -0.511519 1.04973 -0.585929 -0.515183 1.04973 -0.590179 -0.520519 1.67973 -0.590179 -0.520519 1.04973 -0.568179 -0.520519 1.04973 -0.572429 -0.518519 1.04973 -0.568764 -0.511519 1.67973 -0.564698 -0.511519 1.67973 -0.564179 -0.511219 1.04973 -0.564179 -0.511219 1.67973 -0.563659 -0.511519 1.67973 -0.555929 -0.518519 1.67973 -0.560179 -0.520519 1.67973 -0.560179 -0.518519 1.04973 -0.551179 -0.520519 1.67973 -0.54978 -0.519848 1.67972 -0.551179 -0.520519 1.04973 -0.549913 -0.519989 1.20196 -0.549179 -0.518519 1.04973 -0.549179 -0.509519 1.67973 -0.551179 -0.513769 1.67973 -0.551179 -0.513769 1.04973 -0.554514 -0.513769 1.04973 -0.558179 -0.510105 1.67973 -0.558179 -0.510105 1.04973 -0.558179 -0.506039 1.67973 -0.558479 -0.505519 1.67973 -0.558479 -0.505519 1.04973 -0.554514 -0.497269 1.04973 -0.551179 -0.501519 1.67973 -0.551179 -0.497269 1.04973 -0.551179 -0.501519 1.04973 -0.549179 -0.501519 1.04973 -0.549179 -0.479519 1.04973 -0.551179 -0.479519 1.04973 -0.551179 -0.479519 1.67973 -0.558179 -0.476039 1.67973 -0.558479 -0.475519 1.67973 -0.554514 -0.467269 1.67973 -0.554514 -0.467269 1.04973 -0.551179 -0.467269 1.67973 -0.551179 -0.471519 1.04973 -0.551179 -0.471519 1.67973 -0.549179 -0.471519 1.04973 -0.549179 -0.462519 1.67973 -0.549558 -0.461463 1.49943 -0.549657 -0.461182 1.04985 -0.550838 -0.460519 1.67973 -0.551179 -0.460519 1.04973 -0.549179 -0.462519 1.04973 -0.560179 -0.460519 1.67973 -0.560179 -0.462519 1.67973 -0.560179 -0.462519 1.04973 -0.555929 -0.465855 1.67973 -0.555929 -0.465855 1.04973 -0.559593 -0.469519 1.04973 -0.564698 -0.469519 1.04973 -0.568179 -0.462519 1.04973 -0.568179 -0.462519 1.67973 -0.568179 -0.460519 1.04973 -0.590179 -0.462519 1.67973 -0.590179 -0.462519 1.04973 -0.585929 -0.462519 1.04973 -0.585929 -0.462519 1.67973 -0.585929 -0.465855 1.67973 -0.589593 -0.469519 1.67973 -0.593659 -0.469519 1.04973 -0.593659 -0.469519 1.67973 -0.594698 -0.469519 1.04973 -0.598179 -0.462519 1.04973 -0.598179 -0.462519 1.67973 -0.598179 -0.460519 1.04973 -0.608531 -0.46119 1.04973 -0.609179 -0.462519 1.04973 -0.60786 -0.460647 1.36094 -0.608491 -0.460913 1.67948 -0.609179 -0.462519 1.67973 -0.609021 -0.46178 1.33724 -0.609179 -0.471519 1.67973 -0.609179 -0.471519 1.04973 -0.607179 -0.471519 1.04973 -0.603843 -0.467269 1.04973 -0.600179 -0.470933 1.67973 -0.600179 -0.470933 1.04973 -0.600179 -0.474999 1.04973 -0.599879 -0.475519 1.67973 -0.599879 -0.475519 1.04973 -0.600179 -0.476039 1.04973 -0.603843 -0.483769 1.67973 -0.607179 -0.483769 1.67973 -0.607179 -0.483769 1.04973 -0.609179 -0.479519 1.67973 -0.607179 -0.479519 1.04973 -0.609179 -0.501519 1.04973 -0.607179 -0.479519 1.67973 -0.609179 -0.501519 1.67973 -0.607179 -0.497269 1.67973 -0.603843 -0.497269 1.67973 -0.600179 -0.500933 1.67973 -0.600179 -0.504999 1.67973 -0.600179 -0.510105 1.67973 -0.602429 -0.515183 1.67973 -0.607179 -0.513769 1.67973 -0.609179 -0.518519 1.67973 -0.602429 -0.518519 1.67973 -0.598179 -0.518519 1.67973 -0.598764 -0.511519 1.67973 -0.589593 -0.511519 1.67973 -0.585929 -0.515183 1.67973 -0.572429 -0.515183 1.67973 -0.572429 -0.518519 1.67973 -0.568179 -0.520519 1.67973 -0.585929 -0.518519 1.67973 -0.590179 -0.518519 1.67973 -0.568179 -0.518519 1.67973 -0.555929 -0.515183 1.67973 -0.559593 -0.511519 1.67973 -0.558179 -0.504999 1.67973 -0.558179 -0.500933 1.67973 -0.554514 -0.513769 1.67973 -0.551179 -0.509519 1.67973 -0.560179 -0.518519 1.67973 -0.549179 -0.518519 1.67973 -0.554514 -0.497269 1.67973 -0.554514 -0.483769 1.67973 -0.551179 -0.497269 1.67973 -0.551179 -0.483769 1.67973 -0.549179 -0.501519 1.67973 -0.549179 -0.479519 1.67973 -0.558179 -0.480105 1.67973 -0.558179 -0.474999 1.67973 -0.558179 -0.470933 1.67973 -0.549179 -0.471519 1.67973 -0.549983 -0.460825 1.67948 -0.555929 -0.462519 1.67973 -0.559593 -0.469519 1.67973 -0.563659 -0.469519 1.67973 -0.564179 -0.469819 1.67973 -0.564698 -0.469519 1.67973 -0.568764 -0.469519 1.67973 -0.572429 -0.465855 1.67973 -0.572429 -0.462519 1.67973 -0.594179 -0.469819 1.67973 -0.594698 -0.469519 1.67973 -0.598764 -0.469519 1.67973 -0.600179 -0.474999 1.67973 -0.600179 -0.476039 1.67973 -0.602429 -0.462519 1.67973 -0.602429 -0.465855 1.67973 -0.603843 -0.467269 1.67973 -0.607179 -0.467269 1.67973 -0.607179 -0.471519 1.67973 -0.600179 -0.480105 1.67973 -0.592693 -0.481519 1.67973 -0.598886 -0.487297 1.04973 -0.599179 -0.488004 1.67973 -0.598886 -0.487297 1.67973 -0.599075 -0.487586 1.3661 -0.599179 -0.488004 1.04973 -0.599179 -0.493034 1.67973 -0.599179 -0.493034 1.04973 -0.598886 -0.493741 1.67973 -0.598886 -0.493741 1.04973 -0.5934 -0.499226 1.04973 -0.5934 -0.499226 1.67973 -0.593112 -0.499415 1.3661 -0.589086 -0.500269 1.04974 -0.588179 -0.503276 1.67973 -0.588179 -0.503276 1.04973 -0.591936 -0.499519 1.67973 -0.590536 -0.49962 1.2966 -0.588945 -0.500601 1.31907 -0.591936 -0.499519 1.04973 -0.588901 -0.500547 1.67958 -0.58828 -0.501877 1.35559 -0.587886 -0.504741 1.04973 -0.587886 -0.504741 1.67973 -0.588127 -0.504264 1.36377 -0.582401 -0.510226 1.04973 -0.581693 -0.510519 1.04973 -0.582401 -0.510226 1.67973 -0.581693 -0.510519 1.67973 -0.582112 -0.510415 1.3661 -0.576664 -0.510519 1.67973 -0.575957 -0.510226 1.67973 -0.576664 -0.510519 1.04973 -0.570472 -0.504741 1.04973 -0.570179 -0.504034 1.04973 -0.570472 -0.504741 1.67973 -0.570179 -0.502519 1.04973 -0.56782 -0.49962 1.35559 -0.567179 -0.499519 1.04973 -0.569287 -0.500339 1.04996 -0.569489 -0.500474 1.67952 -0.570179 -0.502519 1.67973 -0.569987 -0.501497 1.32714 -0.569099 -0.50023 1.42119 -0.566422 -0.499519 1.67973 -0.564957 -0.499226 1.67973 -0.565664 -0.499519 1.04973 -0.564957 -0.499226 1.04973 -0.559472 -0.493741 1.04973 -0.559179 -0.493034 1.04973 -0.559179 -0.493034 1.67973 -0.559472 -0.493741 1.67973 -0.559282 -0.493452 1.3661 -0.559179 -0.488004 1.04973 -0.559472 -0.487297 1.04973 -0.559179 -0.488004 1.67973 -0.559472 -0.487297 1.67973 -0.564957 -0.481812 1.67973 -0.566422 -0.481519 1.67973 -0.564957 -0.481812 1.04973 -0.566422 -0.481519 1.04973 -0.570179 -0.477762 1.67973 -0.569576 -0.480395 1.67943 -0.569155 -0.480695 1.33686 -0.568201 -0.481328 1.55202 -0.56782 -0.481418 1.2966 -0.569383 -0.480766 1.04987 -0.570077 -0.47916 1.35559 -0.570179 -0.477762 1.04973 -0.570472 -0.476297 1.04973 -0.570472 -0.476297 1.67973 -0.570231 -0.476774 1.36377 -0.575957 -0.470812 1.04973 -0.576664 -0.470519 1.04973 -0.576275 -0.470609 1.42467 -0.576275 -0.470609 1.40904 -0.575957 -0.470812 1.67973 -0.576275 -0.470609 1.43891 -0.57628 -0.470608 1.39084 -0.576664 -0.470519 1.67973 -0.582401 -0.470812 1.04973 -0.581693 -0.470519 1.04973 -0.581693 -0.470519 1.67973 -0.582401 -0.470812 1.67973 -0.588179 -0.477004 1.04973 -0.587886 -0.476297 1.67973 -0.587886 -0.476297 1.04973 -0.588076 -0.476586 1.3661 -0.588179 -0.478519 1.67973 -0.588179 -0.478519 1.04973 -0.588918 -0.480707 1.04984 -0.591936 -0.481519 1.04973 -0.588866 -0.480394 1.14842 -0.590536 -0.481418 1.35559 -0.589121 -0.480828 1.67936 -0.567443 -0.477043 1.67972 -0.561184 -0.473721 1.67973 -0.565059 -0.478837 1.67973 -0.561007 -0.476843 1.67974 -0.566827 -0.473095 1.67975 -0.563601 -0.47213 1.67973 -0.562618 -0.478571 1.67972 -0.560932 -0.475378 1.51593 -0.566129 -0.472859 1.42261 -0.562902 -0.472434 1.32762 -0.566537 -0.477877 1.44741 -0.561887 -0.477908 1.51908 -0.564942 -0.478788 1.36158 -0.563304 -0.478825 1.04973 -0.567446 -0.475787 1.32201 -0.560894 -0.476248 1.35213 -0.564398 -0.472151 1.55924 -0.561905 -0.473038 1.44033 -0.566245 -0.478296 1.05005 -0.560984 -0.476682 1.18833 -0.567068 -0.473807 1.28362 -0.561961 -0.478098 1.04974 -0.561155 -0.474109 1.26314 -0.564745 -0.478935 1.04973 -0.561202 -0.47387 1.04976 -0.567658 -0.474813 1.04975 -0.564796 -0.472015 1.04977 -0.56086 -0.476545 1.04972 -0.596913 -0.50337 1.67971 -0.593871 -0.509142 1.67971 -0.590783 -0.505989 1.67969 -0.591376 -0.507425 1.67972 -0.597245 -0.507094 1.67971 -0.59133 -0.50348 1.67973 -0.591194 -0.503967 1.44663 -0.594544 -0.502068 1.67955 -0.592371 -0.508357 1.54113 -0.594031 -0.50888 1.54113 -0.597485 -0.50602 1.5431 -0.593588 -0.502171 1.54113 -0.595732 -0.508504 1.55885 -0.596122 -0.502744 1.09777 -0.597213 -0.507093 1.04981 -0.594989 -0.502185 1.04974 -0.592182 -0.502798 1.47025 -0.597189 -0.504062 1.42064 -0.591194 -0.503967 1.21353 -0.594031 -0.50888 1.21353 -0.595732 -0.508504 1.17415 -0.592371 -0.508357 1.21353 -0.592979 -0.502427 1.21353 -0.597484 -0.504322 1.04982 -0.590727 -0.505565 1.04976 -0.592368 -0.502546 1.04963 -0.591663 -0.507858 1.04974 -0.593615 -0.508972 1.04975 -0.567563 -0.506335 1.67972 -0.565471 -0.508743 1.04974 -0.561208 -0.507345 1.6797 -0.563494 -0.508906 1.67972 -0.565544 -0.502369 1.67964 -0.561244 -0.503778 1.67973 -0.564248 -0.502203 1.54113 -0.561698 -0.503245 1.51593 -0.563129 -0.502263 1.67972 -0.567163 -0.503967 1.43462 -0.560894 -0.50479 1.53414 -0.566026 -0.508412 1.67972 -0.564031 -0.50888 1.39859 -0.56237 -0.508357 1.37733 -0.565784 -0.502586 1.36699 -0.564031 -0.502158 1.37733 -0.56085 -0.505677 1.04975 -0.56739 -0.504398 1.04974 -0.566658 -0.507793 1.30508 -0.561594 -0.50344 1.21353 -0.567465 -0.50641 1.04974 -0.565815 -0.502487 1.04974 -0.56317 -0.502188 1.04972 -0.562097 -0.508343 1.04973 -0.591551 -0.472907 1.67972 -0.594755 -0.478979 1.67971 -0.594766 -0.472134 1.67963 -0.597255 -0.473648 1.67969 -0.591407 -0.477551 1.67973 -0.592047 -0.472969 1.49743 -0.597259 -0.477078 1.67944 -0.594908 -0.478804 1.54113 -0.593168 -0.478728 1.57578 -0.59374 -0.472183 1.51593 -0.591004 -0.474403 1.45116 -0.597363 -0.474613 1.44328 -0.597204 -0.476887 1.25094 -0.590901 -0.476027 1.35213 -0.593168 -0.478728 1.21353 -0.595515 -0.478548 1.26039 -0.591699 -0.477793 1.25842 -0.592131 -0.472849 1.18715 -0.595589 -0.472496 1.33943 -0.59374 -0.472183 1.27023 -0.590862 -0.475589 1.18833 -0.59575 -0.47857 1.04974 -0.596993 -0.473503 1.04985 -0.592716 -0.478674 1.0497 -0.597762 -0.475857 1.0497 -0.593781 -0.472097 1.04977 -0.591277 -0.473711 1.04973 -0.590886 -0.475917 1.04973 0.0965996 -0.481812 1.67973 0.0965996 -0.481812 1.04973 0.0808214 -0.501519 1.04973 0.0828214 -0.497269 1.04973 0.0861572 -0.483769 1.04973 0.0898214 -0.476039 1.04973 0.0901214 -0.475519 1.04973 0.0898214 -0.474999 1.04973 0.0898214 -0.470933 1.04973 0.0861572 -0.467269 1.04973 0.0912356 -0.469519 1.04973 0.096341 -0.469519 1.04973 0.104071 -0.465855 1.04973 0.117571 -0.465855 1.04973 0.117571 -0.462519 1.04973 0.125302 -0.469519 1.04973 0.125821 -0.469819 1.04973 0.126341 -0.469519 1.04973 0.130407 -0.469519 1.04973 0.131821 -0.470933 1.04973 0.131821 -0.476039 1.04973 0.131821 -0.480105 1.04973 0.134071 -0.462519 1.04973 0.134071 -0.465855 1.04973 0.135486 -0.467269 1.04973 0.138821 -0.467269 1.04973 0.129821 -0.462519 1.04973 0.135486 -0.497269 1.04973 0.131821 -0.500933 1.04973 0.135486 -0.483769 1.04973 0.131521 -0.505519 1.04973 0.131821 -0.506039 1.04973 0.131821 -0.510105 1.04973 0.135486 -0.513769 1.04973 0.134071 -0.515183 1.04973 0.138821 -0.509519 1.04973 0.138821 -0.513769 1.04973 0.129821 -0.520519 1.04973 0.134071 -0.518519 1.04973 0.129821 -0.518519 1.04973 0.130407 -0.511519 1.04973 0.104071 -0.515183 1.04973 0.117571 -0.515183 1.04973 0.104071 -0.518519 1.04973 0.117571 -0.518519 1.04973 0.0998214 -0.520519 1.04973 0.121821 -0.518519 1.04973 0.0998214 -0.518519 1.04973 0.0958214 -0.511219 1.04973 0.0898214 -0.510105 1.04973 0.0901214 -0.505519 1.04973 0.0898214 -0.504999 1.04973 0.0898214 -0.500933 1.04973 0.0875714 -0.515183 1.04973 0.0918214 -0.518519 1.04973 0.0875714 -0.518519 1.04973 0.0918214 -0.520519 1.04973 0.0861572 -0.497269 1.04973 0.0898214 -0.480105 1.04973 0.122821 -0.499519 1.04973 0.0912356 -0.511519 1.04973 0.100407 -0.511519 1.04973 0.121236 -0.469519 1.04973 0.0828214 -0.501519 1.67973 0.0828214 -0.501519 1.04973 0.0861572 -0.497269 1.67973 0.0898214 -0.500933 1.67973 0.0898214 -0.506039 1.04973 0.0861572 -0.513769 1.67973 0.0861572 -0.513769 1.04973 0.0828214 -0.513769 1.04973 0.0828214 -0.509519 1.04973 0.0808214 -0.509519 1.04973 0.0808214 -0.518519 1.67973 0.081441 -0.520044 1.67949 0.0808214 -0.518519 1.04973 0.0816345 -0.52021 1.04971 0.0828214 -0.520519 1.67973 0.0828214 -0.520519 1.04973 0.0821399 -0.520391 1.3258 0.0812667 -0.51966 1.30082 0.0918214 -0.520519 1.67973 0.0875714 -0.515183 1.67973 0.0953018 -0.511519 1.67973 0.0953018 -0.511519 1.04973 0.0958214 -0.511219 1.67973 0.096341 -0.511519 1.04973 0.096341 -0.511519 1.67973 0.121821 -0.518519 1.67973 0.121821 -0.520519 1.04973 0.121236 -0.511519 1.04973 0.125302 -0.511519 1.67973 0.125302 -0.511519 1.04973 0.125821 -0.511219 1.04973 0.126341 -0.511519 1.04973 0.130407 -0.511519 1.67973 0.129821 -0.518519 1.67973 0.138821 -0.520519 1.67973 0.140821 -0.518519 1.67973 0.138821 -0.520519 1.04973 0.14022 -0.519848 1.67972 0.140694 -0.519201 1.43065 0.139503 -0.520391 1.43065 0.140109 -0.51989 1.04974 0.140821 -0.518519 1.04973 0.140821 -0.509519 1.04973 0.138821 -0.509519 1.67973 0.131821 -0.510105 1.67973 0.131521 -0.505519 1.67973 0.131821 -0.504999 1.67973 0.131821 -0.504999 1.04973 0.138821 -0.497269 1.04973 0.140821 -0.501519 1.67973 0.138821 -0.501519 1.04973 0.140821 -0.501519 1.04973 0.138821 -0.479519 1.04973 0.138821 -0.479519 1.67973 0.138821 -0.483769 1.67973 0.138821 -0.483769 1.04973 0.131821 -0.480105 1.67973 0.131821 -0.476039 1.67973 0.131821 -0.474999 1.67973 0.131521 -0.475519 1.04973 0.131821 -0.474999 1.04973 0.131821 -0.470933 1.67973 0.138821 -0.471519 1.04973 0.140821 -0.471519 1.04973 0.14046 -0.461372 1.33399 0.140018 -0.460809 1.04973 0.140694 -0.461838 1.48734 0.140821 -0.462519 1.04973 0.129821 -0.460519 1.04973 0.134071 -0.462519 1.67973 0.130407 -0.469519 1.67973 0.125302 -0.469519 1.67973 0.117571 -0.462519 1.67973 0.121821 -0.462519 1.04973 0.121821 -0.460519 1.04973 0.0998214 -0.460519 1.67973 0.0998214 -0.462519 1.67973 0.0998214 -0.462519 1.04973 0.104071 -0.462519 1.67973 0.104071 -0.462519 1.04973 0.100407 -0.469519 1.04973 0.096341 -0.469519 1.67973 0.0958214 -0.469819 1.04973 0.0953018 -0.469519 1.04973 0.0875714 -0.465855 1.04973 0.0875714 -0.462519 1.67973 0.0875714 -0.462519 1.04973 0.0918214 -0.462519 1.04973 0.0918214 -0.462519 1.67973 0.0813276 -0.461115 1.67971 0.0828214 -0.460519 1.04973 0.0808214 -0.462519 1.04973 0.0813293 -0.461345 1.04975 0.0808214 -0.462519 1.67973 0.0828214 -0.460519 1.67973 0.0818125 -0.460853 1.22664 0.0821399 -0.460647 1.46039 0.0808214 -0.471519 1.04973 0.0828214 -0.471519 1.04973 0.0861572 -0.467269 1.67973 0.0828214 -0.467269 1.04973 0.0901214 -0.475519 1.67973 0.0828214 -0.483769 1.67973 0.0828214 -0.483769 1.04973 0.0828214 -0.479519 1.67973 0.0828214 -0.479519 1.04973 0.0808214 -0.479519 1.67973 0.0808214 -0.479519 1.04973 0.0808214 -0.501519 1.67973 0.0828214 -0.497269 1.67973 0.0901214 -0.505519 1.67973 0.0898214 -0.504999 1.67973 0.0898214 -0.506039 1.67973 0.0912356 -0.511519 1.67973 0.0828214 -0.509519 1.67973 0.0808214 -0.509519 1.67973 0.0828214 -0.513769 1.67973 0.0875714 -0.518519 1.67973 0.0918214 -0.518519 1.67973 0.100407 -0.511519 1.67973 0.104071 -0.515183 1.67973 0.117571 -0.515183 1.67973 0.117571 -0.518519 1.67973 0.0998214 -0.520519 1.67973 0.104071 -0.518519 1.67973 0.0998214 -0.518519 1.67973 0.121821 -0.520519 1.67973 0.125821 -0.511219 1.67973 0.126341 -0.511519 1.67973 0.135486 -0.513769 1.67973 0.131821 -0.506039 1.67973 0.134071 -0.515183 1.67973 0.138821 -0.513769 1.67973 0.129821 -0.520519 1.67973 0.134071 -0.518519 1.67973 0.130528 -0.493741 1.67973 0.131821 -0.500933 1.67973 0.135486 -0.497269 1.67973 0.135486 -0.483769 1.67973 0.138821 -0.497269 1.67973 0.138821 -0.501519 1.67973 0.131521 -0.475519 1.67973 0.135486 -0.467269 1.67973 0.138821 -0.471519 1.67973 0.138821 -0.467269 1.67973 0.134071 -0.465855 1.67973 0.139479 -0.460519 1.67973 0.14017 -0.461 1.67963 0.129821 -0.460519 1.67973 0.129821 -0.462519 1.67973 0.126341 -0.469519 1.67973 0.125821 -0.469819 1.67973 0.121236 -0.469519 1.67973 0.117571 -0.465855 1.67973 0.104071 -0.465855 1.67973 0.121821 -0.462519 1.67973 0.100407 -0.469519 1.67973 0.0958214 -0.469819 1.67973 0.0953018 -0.469519 1.67973 0.0912356 -0.469519 1.67973 0.0898214 -0.470933 1.67973 0.0898214 -0.474999 1.67973 0.0898214 -0.476039 1.67973 0.0875714 -0.465855 1.67973 0.0828214 -0.467269 1.67973 0.0808214 -0.471519 1.67973 0.0828214 -0.471519 1.67973 0.0918214 -0.460519 1.67973 0.0898214 -0.480105 1.67973 0.0861572 -0.483769 1.67973 0.121236 -0.511519 1.67973 0.0898214 -0.510105 1.67973 0.0911143 -0.487297 1.04973 0.0908214 -0.488004 1.04973 0.0908214 -0.488004 1.67973 0.0911143 -0.487297 1.67973 0.0909247 -0.487586 1.3661 0.0911143 -0.493741 1.67973 0.0908214 -0.493034 1.04973 0.0908214 -0.493034 1.67973 0.0911143 -0.493741 1.04973 0.0965996 -0.499226 1.04973 0.0980641 -0.499519 1.67973 0.0965996 -0.499226 1.67973 0.0968882 -0.499415 1.3661 0.0980641 -0.499519 1.04973 0.0994631 -0.49962 1.2966 0.100944 -0.500443 1.33894 0.1011 -0.500548 1.67957 0.100991 -0.500342 1.0498 0.101821 -0.503276 1.04973 0.101821 -0.502519 1.67973 0.102114 -0.504741 1.67973 0.102114 -0.504741 1.04973 0.108307 -0.510519 1.04973 0.108307 -0.510519 1.67973 0.1076 -0.510226 1.67973 0.107888 -0.510415 1.3661 0.1076 -0.510226 1.04973 0.113336 -0.510519 1.67973 0.113336 -0.510519 1.04973 0.114043 -0.510226 1.04973 0.114043 -0.510226 1.67973 0.119821 -0.504034 1.04973 0.119528 -0.504741 1.04973 0.119528 -0.504741 1.67973 0.119718 -0.504452 1.3661 0.119821 -0.502519 1.67973 0.120085 -0.501168 1.04975 0.119821 -0.502519 1.04973 0.120646 -0.500524 1.43524 0.120478 -0.500526 1.6796 0.122821 -0.499519 1.67973 0.121475 -0.499781 1.04975 0.124725 -0.499429 1.33436 0.125043 -0.499226 1.67973 0.125043 -0.499226 1.04973 0.124725 -0.499429 1.3486 0.124336 -0.499519 1.04973 0.124336 -0.499519 1.67973 0.12438 -0.499518 1.3661 0.124725 -0.499429 1.36423 0.130528 -0.493741 1.04973 0.130718 -0.493452 1.3661 0.130821 -0.493034 1.67973 0.130821 -0.493034 1.04973 0.130528 -0.487297 1.04973 0.130821 -0.488004 1.67973 0.130528 -0.487297 1.67973 0.130821 -0.488004 1.04973 0.123579 -0.481519 1.67973 0.125043 -0.481812 1.67973 0.125043 -0.481812 1.04973 0.119821 -0.477762 1.67973 0.119821 -0.478519 1.04973 0.122821 -0.481519 1.04973 0.120487 -0.480454 1.67963 0.120701 -0.48085 1.04982 0.121972 -0.481345 1.45399 0.1207 -0.480582 1.28671 0.119821 -0.477004 1.04973 0.119528 -0.476297 1.67973 0.119769 -0.476774 1.36377 0.119528 -0.476297 1.04973 0.113336 -0.470519 1.04973 0.114043 -0.470812 1.67973 0.113336 -0.470519 1.67973 0.114043 -0.470812 1.04973 0.1076 -0.470812 1.67973 0.108307 -0.470519 1.04973 0.108307 -0.470519 1.67973 0.1076 -0.470812 1.04973 0.101821 -0.477004 1.04973 0.101925 -0.476586 1.3661 0.102114 -0.476297 1.67973 0.102114 -0.476297 1.04973 0.101821 -0.477762 1.67973 0.0988214 -0.481519 1.67973 0.0998434 -0.481328 1.35351 0.101821 -0.478519 1.04973 0.100822 -0.480816 1.05012 0.101131 -0.480641 1.67961 0.100877 -0.480666 1.42067 0.0973067 -0.481519 1.04973 0.128979 -0.473963 1.67947 0.125659 -0.478954 1.67967 0.126181 -0.472008 1.6798 0.128775 -0.477499 1.67976 0.122978 -0.477553 1.67975 0.12689 -0.472379 1.54113 0.124945 -0.47879 1.43127 0.123012 -0.473436 1.67972 0.128844 -0.476928 1.42261 0.123463 -0.477877 1.40519 0.12626 -0.472183 1.35213 0.124412 -0.472496 1.34209 0.122818 -0.474037 1.31551 0.125637 -0.478813 1.28618 0.129021 -0.474912 1.34101 0.127629 -0.478356 1.38363 0.129145 -0.47581 1.17868 0.12689 -0.472379 1.18833 0.122551 -0.475765 1.4112 0.12248 -0.474758 1.04979 0.127869 -0.472849 1.33805 0.124281 -0.472295 1.04989 0.128725 -0.477431 1.04983 0.126589 -0.478876 1.04973 0.123341 -0.477984 1.04985 0.12795 -0.472693 1.04975 0.0928671 -0.503583 1.67972 0.095207 -0.502173 1.67968 0.097835 -0.502747 1.67975 0.099326 -0.505727 1.67971 0.0932363 -0.50344 1.54113 0.0959837 -0.508963 1.67972 0.0984065 -0.50344 1.35213 0.0983682 -0.507807 1.6797 0.0924284 -0.505648 1.04978 0.0991523 -0.506545 1.0498 0.0940463 -0.508455 1.67971 0.092603 -0.506644 1.67971 0.0932363 -0.50344 1.35213 0.0964118 -0.502171 1.35213 0.0986916 -0.50355 1.04988 0.0964118 -0.508867 1.21353 0.094816 -0.508703 1.23046 0.0976298 -0.508357 1.26157 0.0927361 -0.506795 1.21412 0.0936359 -0.508124 1.18833 0.0966355 -0.502202 1.04974 0.0947933 -0.502291 1.04976 0.0940553 -0.508511 1.04972 0.093013 -0.503504 1.04975 0.0970453 -0.508792 1.04975 0.122567 -0.504346 1.67971 0.124972 -0.502063 1.67972 0.123215 -0.507964 1.67967 0.126464 -0.502317 1.50077 0.128959 -0.506985 1.67965 0.128757 -0.503567 1.67973 0.126494 -0.508879 1.67966 0.124146 -0.50262 1.33756 0.128704 -0.504018 1.52518 0.122486 -0.505663 1.5116 0.122837 -0.503967 1.41415 0.122491 -0.505716 1.04999 0.127818 -0.502798 1.27436 0.129151 -0.505736 1.29366 0.123011 -0.507266 1.39987 0.126684 -0.508741 1.30862 0.124412 -0.508542 1.38638 0.128911 -0.504161 1.27023 0.12553 -0.502196 1.21668 0.128302 -0.507793 1.27968 0.129063 -0.507489 1.04977 0.125568 -0.50893 1.05003 0.122755 -0.503752 1.04973 0.12353 -0.507972 1.04985 0.127224 -0.502234 1.04971 0.0923895 -0.475273 1.67972 0.0973481 -0.472443 1.67972 0.0949945 -0.472173 1.67975 0.0957103 -0.478921 1.67968 0.0991443 -0.47581 1.54191 0.0992441 -0.474498 1.6796 0.0930572 -0.473503 1.67971 0.0949714 -0.472346 1.54113 0.0939614 -0.478395 1.67972 0.0984867 -0.473398 1.04976 0.0991379 -0.475883 1.25999 0.092654 -0.476843 1.67962 0.0967889 -0.478809 1.04973 0.0982584 -0.477975 1.6797 0.0925581 -0.475675 1.21628 0.0973708 -0.472482 1.04974 0.0983012 -0.477892 1.04973 0.0932776 -0.477826 1.04971 0.094478 -0.472368 1.04973 0.0958211 -0.472119 1.04974 0.0993054 -0.475682 1.04973 0.0951261 -0.478851 1.04973 0.0923563 -0.474683 1.04973 0.0934263 -0.473123 1.19817 -0.549179 -0.515519 1.04973 -0.549179 -0.465519 1.04973 -0.54918 -0.475476 1.12005 -0.549179 -0.465519 1.13973 -0.549181 -0.50539 1.12053 -0.535178 -0.505535 1.1204 -0.535179 -0.515519 1.13523 -0.535179 -0.465519 1.13523 -0.535179 -0.465519 1.11273 -0.463679 -0.465519 1.06373 -0.486179 -0.465519 1.06373 -0.463679 -0.515519 1.06373 -0.459179 -0.465519 1.05923 -0.459179 -0.515519 1.05923 -0.459179 -0.465519 1.04973 -0.535179 -0.515519 1.11273 -0.486179 -0.515519 1.06373 -0.459179 -0.515519 1.04973 -0.549179 -0.515519 1.13973 -0.539679 -0.465519 1.13973 -0.539679 -0.515519 1.13973 -0.4793 -0.474979 1.06374 -0.478871 -0.505488 1.04973 -0.478922 -0.505549 1.06373 -0.479207 -0.474914 1.04973 -0.535177 -0.475191 1.11998 -0.609179 -0.515519 1.67973 -0.699179 -0.465519 1.67973 -0.699179 -0.515519 1.67973 -0.679373 -0.475226 1.67973 -0.67913 -0.475113 1.66573 -0.694679 -0.465519 1.66573 -0.694679 -0.515519 1.66573 -0.672179 -0.515519 1.66573 -0.672179 -0.465519 1.66573 -0.623179 -0.465519 1.59423 -0.623179 -0.465519 1.61673 -0.623179 -0.515519 1.59423 -0.618679 -0.515519 1.58973 -0.609179 -0.515519 1.58973 -0.609179 -0.465519 1.58973 -0.618679 -0.465519 1.58973 -0.609179 -0.465519 1.67973 -0.699179 -0.465519 1.67023 -0.699179 -0.515519 1.67023 -0.623179 -0.515519 1.61673 -0.609178 -0.505979 1.60963 -0.623182 -0.505929 1.60963 -0.609179 -0.475731 1.60957 -0.623179 -0.47553 1.6096 -0.679677 -0.505444 1.66572 -0.679788 -0.505268 1.67973 0.140821 -0.564034 1.17573 -1.65918 -0.564741 1.17603 0.140821 -0.564741 1.17603 -1.01294 -0.564444 1.17584 -1.65918 -0.564034 1.17573 -0.651275 -0.564452 1.17584 0.140821 -0.578519 1.19148 0.140821 -0.578519 1.19573 0.140821 -0.578519 1.17373 0.140821 -0.575183 1.17798 0.140821 -0.571219 1.16973 0.140821 -0.571519 1.16921 0.140821 -0.575183 1.16148 0.140821 -0.573769 1.15673 0.140821 -0.570105 1.16373 0.140821 -0.566039 1.16373 0.140821 -0.565519 1.16403 0.140821 -0.560933 1.16373 0.140821 -0.543769 1.16007 0.140821 -0.543769 1.15673 0.140821 -0.557269 1.15673 0.140821 -0.536039 1.16373 0.140821 -0.527269 1.16007 0.140821 -0.529819 1.16973 0.140821 -0.529519 1.17025 0.140821 -0.522519 1.16148 0.140821 -0.522519 1.16573 0.140821 -0.531519 1.15473 0.140821 -0.529519 1.17432 0.140821 -0.525855 1.17798 0.140821 -0.529519 1.19515 0.140821 -0.525855 1.19148 0.140821 -0.520519 1.17373 0.140821 -0.529819 1.19973 0.140821 -0.529519 1.19921 0.140821 -0.529519 1.20025 0.140821 -0.529519 1.20432 0.140821 -0.525855 1.20798 0.140821 -0.527269 1.2094 0.140821 -0.534999 1.20573 0.140821 -0.536039 1.20573 0.140821 -0.540105 1.20573 0.140821 -0.543769 1.2094 0.140821 -0.557269 1.2094 0.140821 -0.560933 1.20573 0.140821 -0.557269 1.21273 0.140821 -0.561519 1.21473 0.140821 -0.561519 1.21273 0.140821 -0.564999 1.20573 0.140821 -0.566039 1.20573 0.140821 -0.573769 1.2094 0.140821 -0.571519 1.20432 0.140821 -0.571219 1.19973 0.140821 -0.573769 1.21273 0.140821 -0.580519 1.20373 0.140821 -0.575183 1.19148 0.140821 -0.541519 1.19825 0.140821 -0.570105 1.20573 0.140821 -0.580519 1.19573 -1.65918 -0.578519 1.19148 -1.65918 -0.575183 1.19148 -1.65918 -0.571519 1.19921 0.140821 -0.571519 1.19515 0.140821 -0.571519 1.19921 0.140821 -0.571519 1.20025 0.140821 -0.575183 1.20798 -1.65918 -0.578519 1.20798 0.140821 -0.578519 1.20798 0.140821 -0.578519 1.20373 -1.65918 -0.580519 1.20373 -1.48861 -0.580129 1.21381 -1.65918 -0.578519 1.21473 -0.862158 -0.5804 1.21337 -1.65918 -0.580519 1.21273 -0.544583 -0.580332 1.21353 0.140821 -0.580519 1.21273 -0.6405 -0.579074 1.21464 -0.478485 -0.5798 1.21426 0.140821 -0.578519 1.21473 -1.48627 -0.579201 1.21461 0.136586 -0.580006 1.21395 0.0418795 -0.5795 1.21443 -1.1769 -0.579201 1.21461 -0.961466 -0.579911 1.21413 -1.28404 -0.580126 1.21376 -1.65918 -0.569519 1.21473 0.140821 -0.569519 1.21473 0.140821 -0.569519 1.21273 -1.65918 -0.573769 1.21273 -1.65918 -0.573769 1.2094 -1.65918 -0.566039 1.20573 0.140821 -0.565519 1.20543 -1.65918 -0.564999 1.20573 -1.65918 -0.557269 1.21273 -1.65918 -0.561519 1.21273 0.140821 -0.539519 1.21473 -1.65918 -0.539519 1.21273 0.140821 -0.539519 1.21273 -1.65918 -0.543769 1.21273 0.140821 -0.543769 1.21273 0.140821 -0.535519 1.20543 0.140821 -0.530933 1.20573 -1.65918 -0.530933 1.20573 -1.65918 -0.527269 1.2094 0.140821 -0.527269 1.21273 -1.65918 -0.531519 1.21273 0.140821 -0.531519 1.21273 0.140821 -0.531519 1.21473 -0.751869 -0.521837 1.21461 0.140821 -0.522519 1.21473 0.137784 -0.520983 1.2139 -1.6591 -0.52059 1.21325 -1.65918 -0.520519 1.21273 -1.65918 -0.522519 1.21473 -0.881845 -0.521211 1.21423 -0.761917 -0.520527 1.21291 0.140821 -0.520519 1.21273 -0.617982 -0.521239 1.21426 -0.563772 -0.520587 1.21325 -1.09419 -0.520676 1.21346 -0.785283 -0.520703 1.21352 -0.135703 -0.52069 1.21349 -1.20506 -0.521239 1.21426 -1.65908 -0.521436 1.21448 -0.318895 -0.521837 1.21461 -0.318895 -0.521239 1.21426 0.140821 -0.520519 1.20373 -1.65918 -0.522519 1.20373 0.140821 -0.522519 1.20373 -1.65918 -0.522519 1.20798 0.140821 -0.522519 1.20798 -1.65918 -0.529519 1.20432 -1.65918 -0.529819 1.19973 -1.65918 -0.525855 1.19148 0.140821 -0.522519 1.19148 -1.65918 -0.522519 1.19148 -1.65918 -0.522519 1.19573 0.140821 -0.522519 1.19573 -1.65918 -0.520519 1.17373 0.140821 -0.520519 1.19573 0.140821 -0.522519 1.17373 -1.65918 -0.522519 1.17373 0.140821 -0.522519 1.17798 -1.65918 -0.525855 1.17798 -1.65918 -0.529819 1.16973 0.140821 -0.529519 1.16921 0.140821 -0.529519 1.16515 0.140821 -0.525855 1.16148 -1.65918 -0.522519 1.16573 0.140821 -0.520519 1.16573 -1.2921 -0.521419 1.15514 0.140821 -0.520519 1.15673 0.140807 -0.521132 1.15527 -0.741355 -0.521837 1.15486 -1.5272 -0.52143 1.15512 -1.18105 -0.520867 1.15571 -0.498522 -0.521317 1.1552 0.140821 -0.522519 1.15473 -1.65918 -0.522519 1.15473 -0.294594 -0.520676 1.156 -0.687846 -0.520617 1.15618 -1.65903 -0.52074 1.1558 -1.65918 -0.531519 1.15473 -1.65918 -0.531519 1.15673 0.140821 -0.531519 1.15673 0.140821 -0.527269 1.15673 -1.65918 -0.527269 1.16007 0.140821 -0.530933 1.16373 -1.65918 -0.535519 1.16403 0.140821 -0.534999 1.16373 0.140821 -0.535519 1.16403 -1.65918 -0.536039 1.16373 0.140821 -0.540105 1.16373 0.140821 -0.539519 1.15673 0.140821 -0.539519 1.15473 0.140821 -0.561519 1.15473 -1.65918 -0.561519 1.15673 0.140821 -0.561519 1.15673 0.140821 -0.557269 1.16007 0.140821 -0.564999 1.16373 -1.65918 -0.566039 1.16373 -1.65918 -0.573769 1.16007 0.140821 -0.573769 1.16007 -1.65918 -0.569519 1.15673 0.140821 -0.569519 1.15673 0.140821 -0.569519 1.15473 -0.763786 -0.580406 1.1561 -0.761917 -0.578693 1.15474 -1.65918 -0.580519 1.15673 -1.38135 -0.57956 1.15508 -1.40635 -0.580392 1.15605 -1.1332 -0.579739 1.15522 -0.773133 -0.579467 1.155 -0.21106 -0.579259 1.15489 0.140821 -0.580519 1.15673 -1.65914 -0.57983 1.1553 0.140715 -0.579874 1.15538 -0.612841 -0.579824 1.15524 -0.294316 -0.580093 1.15559 -1.65918 -0.578519 1.15473 0.140821 -0.578519 1.15473 -1.65918 -0.580519 1.16573 -1.65918 -0.578519 1.16573 0.140821 -0.580519 1.16573 0.140821 -0.578519 1.16573 0.140821 -0.578519 1.16148 0.140821 -0.571519 1.16515 -1.65918 -0.571219 1.16973 0.140821 -0.571519 1.17025 0.140821 -0.571519 1.17432 0.140821 -0.578519 1.17798 -1.65918 -0.578519 1.17373 -1.65918 -0.580519 1.17373 0.140821 -0.580519 1.17373 -1.65918 -0.578519 1.17798 -1.65918 -0.580519 1.19573 -1.65918 -0.578519 1.19573 -1.65918 -0.575183 1.17798 -1.65918 -0.570519 1.18725 -1.65918 -0.571519 1.19515 -1.65918 -0.571219 1.19973 -1.65918 -0.571519 1.20025 -1.65918 -0.570105 1.20573 -1.65918 -0.575183 1.20798 -1.65918 -0.578519 1.20373 -1.65908 -0.57964 1.21444 -1.65918 -0.569519 1.21273 -1.65918 -0.565519 1.20543 -1.65918 -0.560933 1.20573 -1.65918 -0.543769 1.2094 -1.65918 -0.557269 1.2094 -1.65918 -0.539519 1.21473 -1.65918 -0.536039 1.20573 -1.65918 -0.535519 1.20543 -1.65918 -0.534999 1.20573 -1.65918 -0.529519 1.20025 -1.65918 -0.529519 1.19921 -1.65918 -0.529519 1.19515 -1.65918 -0.527269 1.21273 -1.65918 -0.525855 1.20798 -1.65918 -0.520519 1.20373 -1.65918 -0.531519 1.21473 -1.65918 -0.520519 1.19573 -1.65918 -0.522519 1.17798 -1.65918 -0.529519 1.17432 -1.65918 -0.529519 1.17025 -1.65918 -0.529519 1.16921 -1.65918 -0.529519 1.16515 -1.65918 -0.522519 1.16148 -1.65918 -0.525855 1.16148 -1.65918 -0.527269 1.15673 -1.65918 -0.530933 1.16373 -1.65918 -0.534999 1.16373 -1.65918 -0.540105 1.16373 -1.65918 -0.541812 1.17051 -1.65918 -0.543769 1.16007 -1.65918 -0.557269 1.16007 -1.65918 -0.561519 1.15473 -1.65918 -0.539519 1.15473 -1.65918 -0.543769 1.15673 -1.65918 -0.539519 1.15673 -1.65918 -0.557269 1.15673 -1.65918 -0.560933 1.16373 -1.65918 -0.564999 1.16373 -1.65918 -0.565519 1.16403 -1.65918 -0.571519 1.16515 -1.65918 -0.571519 1.16921 -1.65918 -0.571519 1.17025 -1.65918 -0.571519 1.17432 -1.65918 -0.575183 1.16148 -1.65918 -0.578519 1.16148 -1.65918 -0.573769 1.15673 -1.65918 -0.569519 1.15473 -1.65918 -0.570105 1.16373 -1.65918 -0.540105 1.20573 -1.65918 -0.571519 1.20432 0.140821 -0.570519 1.18222 0.140821 -0.570226 1.18151 -1.05697 -0.570415 1.1818 -1.65918 -0.570519 1.18222 -1.30015 -0.570442 1.18186 -1.65918 -0.570226 1.18151 -1.65918 -0.570226 1.18795 0.140821 -0.570226 1.18795 -0.26314 -0.570481 1.18743 0.140821 -0.570519 1.18725 -0.768 -0.570437 1.18761 -0.504006 -0.564452 1.19363 -1.65918 -0.564034 1.19373 -0.763955 -0.564452 1.19363 -1.65918 -0.564741 1.19344 -1.3693 -0.564452 1.19363 0.140821 -0.564034 1.19373 0.140811 -0.564407 1.19365 0.140821 -0.564741 1.19344 -1.65918 -0.562519 1.19373 -0.483309 -0.561497 1.19392 -1.06845 -0.561497 1.19392 -0.758379 -0.561973 1.19381 -0.665464 -0.56033 1.19473 0.140821 -0.559519 1.19673 -0.231337 -0.56033 1.19473 -1.65897 -0.560405 1.19447 -0.276132 -0.561497 1.19392 0.140821 -0.562519 1.19373 0.140748 -0.560217 1.19476 -1.09132 -0.560372 1.19469 -0.366422 -0.559711 1.19571 -1.17413 -0.559711 1.19571 -0.705185 -0.55962 1.19609 -1.65918 -0.559519 1.19673 0.140821 -0.559226 1.19895 -1.65918 -0.559519 1.19825 -0.967004 -0.559436 1.19861 -1.65918 -0.559226 1.19895 0.140821 -0.559519 1.19825 -1.65917 -0.559419 1.19859 -1.65918 -0.553034 1.20473 -1.65918 -0.553741 1.20444 -0.862989 -0.553466 1.20462 0.140821 -0.553741 1.20444 -0.425212 -0.553452 1.20463 -1.11806 -0.553264 1.20468 0.140821 -0.553034 1.20473 -1.65918 -0.548004 1.20473 -1.65918 -0.547297 1.20444 0.140821 -0.548004 1.20473 -0.767238 -0.547616 1.20465 0.140821 -0.547297 1.20444 -1.36655 -0.541598 1.1986 -0.944407 -0.541636 1.1987 -1.65918 -0.541519 1.19825 0.140821 -0.541812 1.19895 -1.65918 -0.541812 1.19895 -0.729682 -0.53878 1.19374 0.140821 -0.541519 1.19673 -0.332126 -0.539541 1.19392 -1.529 -0.541018 1.19522 -1.30195 -0.540608 1.19463 -1.29522 -0.539541 1.19392 -1.18498 -0.541327 1.19571 -0.759079 -0.541417 1.19609 -0.609295 -0.539541 1.19392 -0.628893 -0.540641 1.19466 0.140764 -0.541156 1.19523 0.140797 -0.539607 1.19392 -1.65918 -0.541519 1.19673 -0.953657 -0.541327 1.19571 -0.354523 -0.541327 1.19571 -0.333176 -0.540574 1.19459 -0.858118 -0.540641 1.19466 -1.65912 -0.540625 1.19457 -1.26442 -0.539541 1.19392 -0.880865 -0.539541 1.19392 -1.5192 -0.539541 1.19392 -1.23922 -0.539541 1.19392 -1.13844 -0.539541 1.19392 -1.65918 -0.538519 1.19373 0.140821 -0.538519 1.19373 0.140821 -0.537004 1.19373 -1.65918 -0.536297 1.19344 -1.65918 -0.537004 1.19373 0.140821 -0.536297 1.19344 0.140812 -0.536723 1.19367 -0.667866 -0.536635 1.19366 0.140821 -0.530812 1.18795 0.140821 -0.530519 1.18725 -1.65918 -0.530812 1.18795 -1.65918 -0.530519 1.18725 -0.784152 -0.530607 1.18762 0.140815 -0.530611 1.18764 -1.28374 -0.530596 1.18186 -1.65918 -0.530519 1.18222 0.140821 -0.530519 1.18222 0.140816 -0.530604 1.18183 -0.602967 -0.530622 1.1818 0.140821 -0.530812 1.18151 -1.65918 -0.530812 1.18151 0.140821 -0.537004 1.17573 -0.512917 -0.536586 1.17584 -1.65918 -0.536297 1.17603 -1.65918 -0.537004 1.17573 -1.11489 -0.536586 1.17584 -0.340556 -0.536586 1.17584 0.140821 -0.536297 1.17603 -1.65918 -0.541519 1.17273 -0.763278 -0.53878 1.17572 -1.659 -0.540604 1.17506 -1.65918 -0.538519 1.17573 -1.02085 -0.53878 1.17572 -0.920061 -0.540808 1.17465 -0.600896 -0.540808 1.17465 -0.578498 -0.541327 1.17375 0.140821 -0.541519 1.17273 -1.14543 -0.539541 1.17554 -0.978854 -0.539541 1.17554 -0.903262 -0.539541 1.17554 -0.936859 -0.539541 1.17554 0.140821 -0.538519 1.17573 -0.542102 -0.539541 1.17554 -0.129848 -0.539541 1.17554 -0.239386 -0.540719 1.17473 -1.38743 -0.540926 1.17434 -0.20124 -0.541327 1.17375 -0.920061 -0.541327 1.17375 0.140694 -0.540473 1.17513 -1.10764 -0.541327 1.17375 -0.757679 -0.541508 1.17299 -0.409266 -0.541623 1.1708 0.140821 -0.541812 1.17051 -1.65918 -0.541519 1.17122 0.140821 -0.541519 1.17122 0.140821 -0.547297 1.16503 -1.65918 -0.547297 1.16503 -1.65918 -0.548004 1.16473 -1.22652 -0.547773 1.16478 -0.739009 -0.547586 1.16484 0.140821 -0.548004 1.16473 0.140821 -0.553741 1.16503 -1.65918 -0.553034 1.16473 -1.14913 -0.553452 1.16484 -1.65918 -0.553741 1.16503 0.140821 -0.553034 1.16473 -1.65918 -0.559226 1.17051 -1.28139 -0.559442 1.17086 -1.65918 -0.559519 1.17122 -0.755747 -0.559435 1.17085 0.140821 -0.559226 1.17051 0.140821 -0.559519 1.17122 0.140821 -0.559519 1.17273 -1.65918 -0.559519 1.17273 -1.65916 -0.559822 1.17409 -1.65918 -0.561316 1.17551 -1.14263 -0.561497 1.17554 -0.998452 -0.56058 1.17487 -0.658639 -0.560372 1.17478 0.140821 -0.562519 1.17573 0.1408 -0.561191 1.17545 0.140804 -0.559834 1.17416 -1.50879 -0.560112 1.17434 -1.05865 -0.559711 1.17375 -0.74648 -0.55953 1.17299 -0.600896 -0.559711 1.17375 -0.511307 -0.559711 1.17375 -0.264933 -0.559711 1.17375 -0.768878 -0.561497 1.17554 -0.417516 -0.560514 1.17492 -0.1141 -0.560549 1.17495 -1.65918 -0.562519 1.17573 -0.403518 -0.561497 1.17554 -0.763278 -0.562258 1.17572 -1.65918 -0.537996 1.16718 0.14079 -0.533143 1.17222 -1.65913 -0.538774 1.17072 -1.65898 -0.534861 1.16638 -1.65913 -0.537076 1.17287 -1.65911 -0.532431 1.16804 -1.6591 -0.532299 1.17103 -1.37753 -0.538188 1.16769 -1.45053 -0.537151 1.17267 -1.54708 -0.538828 1.16929 -1.41244 -0.533967 1.16675 -1.65902 -0.534401 1.17305 -1.44136 -0.532534 1.17128 -1.43019 -0.532849 1.16769 -1.17028 -0.538708 1.16864 -1.40356 -0.536528 1.16662 -1.43578 -0.532197 1.16944 -1.13877 -0.537878 1.17209 -1.17417 -0.536011 1.17304 -1.21277 -0.534101 1.17275 -1.2381 -0.537552 1.16709 -1.0516 -0.538831 1.17032 -0.892722 -0.532534 1.17128 -0.722078 -0.53278 1.16777 -0.858912 -0.532235 1.169 -0.957351 -0.536428 1.16652 -0.801508 -0.538397 1.16804 -0.861905 -0.533606 1.16701 -0.660242 -0.537267 1.17262 -0.787902 -0.538867 1.16973 -0.975204 -0.5341 1.17275 -0.543953 -0.536031 1.17306 -0.563899 -0.53879 1.16885 -0.851531 -0.534637 1.16649 -0.518221 -0.534935 1.17303 -0.328527 -0.534178 1.16668 -0.347477 -0.535685 1.16637 -0.327729 -0.534142 1.17277 -0.504458 -0.537793 1.16732 -0.565196 -0.53819 1.17169 -0.141227 -0.538407 1.16806 -0.337104 -0.532849 1.16769 -0.298008 -0.532235 1.169 -0.15634 -0.535505 1.17307 -0.427264 -0.532235 1.17046 -0.112902 -0.53695 1.16667 -0.254923 -0.538714 1.1709 -0.384877 -0.532952 1.17188 -0.152733 -0.537465 1.17246 -0.131852 -0.53886 1.16966 -0.0398968 -0.538504 1.17128 0.140784 -0.536645 1.17325 0.140775 -0.532776 1.16765 0.140809 -0.539042 1.16912 0.140741 -0.534366 1.16655 0.140799 -0.532067 1.16997 0.140738 -0.536687 1.16652 -1.65916 -0.564274 1.19657 -1.65911 -0.562688 1.19771 -1.65911 -0.564486 1.20304 -1.65918 -0.566671 1.1965 -1.65915 -0.562135 1.20078 -1.6591 -0.568389 1.19779 -1.57062 -0.566248 1.20301 -1.44136 -0.562534 1.20129 -1.6592 -0.568706 1.20146 -1.33444 -0.564174 1.20276 -1.34661 -0.562727 1.19799 -1.03464 -0.568257 1.19777 -1.30891 -0.565666 1.19636 -1.21516 -0.564088 1.19667 -0.878062 -0.565758 1.19636 -1.24509 -0.567878 1.20209 -1.18604 -0.568804 1.20046 -1.05898 -0.566067 1.20304 -1.17188 -0.566741 1.1966 -1.01968 -0.562196 1.19944 -0.936306 -0.563771 1.20262 -1.11104 -0.56285 1.19769 -0.749853 -0.567032 1.19681 -0.957847 -0.562639 1.20148 -0.797477 -0.567461 1.20251 -0.945083 -0.568842 1.19944 -0.74352 -0.564353 1.19659 -0.883746 -0.568511 1.20125 -0.737337 -0.563209 1.20212 -0.766816 -0.565632 1.20302 -0.550535 -0.568804 1.20046 -0.566492 -0.568627 1.19844 -0.585741 -0.562788 1.19784 -0.414298 -0.565547 1.19636 -0.346329 -0.564744 1.20301 -0.353062 -0.563907 1.1968 -0.216625 -0.563212 1.20214 -0.453195 -0.566929 1.20276 -0.376799 -0.567192 1.19684 -0.559711 -0.568294 1.20167 -0.240561 -0.562493 1.19824 -0.120083 -0.5655 1.19636 -0.0329154 -0.568759 1.20068 -0.286838 -0.562324 1.2009 -0.107317 -0.566158 1.20302 -0.264498 -0.562177 1.19966 -0.0594446 -0.568855 1.19959 -0.0123701 -0.568463 1.19803 0.0259278 -0.567266 1.20262 0.140816 -0.56207 1.20014 -0.00379296 -0.563792 1.1969 0.14039 -0.56653 1.20309 0.140789 -0.568971 1.20056 0.14079 -0.56757 1.19699 0.140571 -0.565013 1.19633 0.14081 -0.562833 1.1976 0.140577 -0.56359 1.20261 -1.65915 -0.535551 1.19629 -1.65919 -0.535857 1.20329 -1.65917 -0.538702 1.19847 -1.5754 -0.533606 1.19701 -1.65907 -0.532362 1.19836 -1.65916 -0.538844 1.20063 -1.65914 -0.532438 1.20152 -1.6055 -0.537431 1.197 -1.36317 -0.533825 1.20263 -1.37753 -0.538188 1.19769 -1.19122 -0.536427 1.20294 -1.39269 -0.53879 1.19885 -1.10137 -0.533685 1.19698 -1.62886 -0.537878 1.20209 -1.14734 -0.538667 1.20081 -0.905588 -0.537878 1.20209 -1.29216 -0.532197 1.19944 -1.39907 -0.532744 1.20167 -1.14994 -0.534447 1.20289 -1.13219 -0.53617 1.19652 -0.810243 -0.538893 1.20003 -0.85632 -0.53221 1.19929 -0.771945 -0.536662 1.20288 -0.97919 -0.533316 1.20225 -0.845349 -0.538626 1.19844 -0.982582 -0.534681 1.20299 -0.84854 -0.536382 1.19651 -0.854724 -0.537794 1.19726 -0.901199 -0.532324 1.2009 -0.877264 -0.534929 1.19638 -0.861705 -0.533727 1.19692 -0.937901 -0.532574 1.19803 -0.637304 -0.53479 1.20301 -0.500169 -0.538819 1.19955 -0.39879 -0.532849 1.19769 -0.691559 -0.538517 1.20126 -0.42128 -0.532324 1.2009 -0.31975 -0.53657 1.20289 -0.593221 -0.536636 1.20278 -0.355455 -0.537311 1.19692 -0.30858 -0.534644 1.20299 -0.267689 -0.538463 1.19803 -0.473142 -0.532197 1.19944 -0.357051 -0.533264 1.20219 -0.44003 -0.534508 1.19653 -0.231087 -0.537774 1.20219 -0.15479 -0.538609 1.20109 -0.212437 -0.536325 1.19649 -0.0434872 -0.533368 1.2023 0.0111671 -0.534635 1.20299 0.140709 -0.5356 1.19634 0.140786 -0.532636 1.19777 -0.0628357 -0.538188 1.19769 -0.195083 -0.538835 1.19937 0.140702 -0.538917 1.19904 0.0522576 -0.534298 1.1966 0.14079 -0.532145 1.20039 0.140761 -0.534231 1.20335 0.14075 -0.538054 1.20221 0.140755 -0.5376 1.197 -1.65907 -0.564213 1.17293 -1.65916 -0.567688 1.17258 -1.6591 -0.562354 1.16817 -1.59256 -0.568868 1.16973 -1.65912 -0.567699 1.16694 -1.65916 -0.564458 1.16648 -1.65907 -0.562269 1.17102 -1.55186 -0.566923 1.17275 -1.61131 -0.568504 1.17128 -1.40945 -0.568189 1.16769 -1.23132 -0.563537 1.16709 -1.36696 -0.566281 1.16652 -1.34003 -0.568842 1.16944 -1.502 -0.56316 1.17209 -1.01569 -0.568052 1.16752 -1.22354 -0.562248 1.16885 -0.972758 -0.56316 1.17209 -1.15891 -0.568504 1.17128 -1.06726 -0.566149 1.1665 -1.24708 -0.567669 1.1723 -1.20489 -0.56478 1.17302 -1.12779 -0.566358 1.173 -0.816576 -0.562392 1.16866 -0.843753 -0.564057 1.16677 -0.799073 -0.568829 1.16929 -0.845748 -0.567433 1.16701 -0.473141 -0.564634 1.173 -0.556519 -0.568463 1.16803 -0.905587 -0.562285 1.17071 -0.821412 -0.565593 1.16637 -0.482937 -0.5633 1.17233 -0.580455 -0.567878 1.17209 -0.860508 -0.568787 1.17054 -0.556518 -0.562534 1.17128 -0.459976 -0.566951 1.16667 -0.481519 -0.56285 1.16769 -0.404126 -0.566139 1.17304 -0.475535 -0.568845 1.16947 -0.573474 -0.564761 1.16649 -0.401732 -0.568714 1.1709 -0.162371 -0.567035 1.17273 -0.512237 -0.562206 1.16969 0.0081751 -0.566564 1.17281 -0.069817 -0.568189 1.16769 0.0496645 -0.565956 1.16641 -0.139631 -0.564548 1.16652 -0.259511 -0.564636 1.17291 -0.135542 -0.562429 1.17109 -0.167756 -0.56285 1.16769 0.140762 -0.563529 1.17255 0.140816 -0.566257 1.1731 0.140799 -0.568264 1.17175 -0.0614395 -0.568823 1.16995 0.140778 -0.568919 1.16944 0.140796 -0.56729 1.16656 0.14075 -0.563166 1.16712 0.140816 -0.562063 1.16972 -0.741912 -0.564452 1.53584 0.140821 -0.564034 1.53573 -1.65918 -0.564034 1.53573 -0.49914 -0.564452 1.53584 -1.65918 -0.564741 1.53603 0.140821 -0.564741 1.53603 0.140821 -0.580519 1.55573 0.140821 -0.580519 1.53373 0.140821 -0.578519 1.53373 0.140821 -0.575183 1.55148 0.140821 -0.571519 1.53025 0.140821 -0.571219 1.52973 0.140821 -0.578519 1.52148 0.140821 -0.573769 1.51673 0.140821 -0.566039 1.52373 0.140821 -0.565519 1.52403 0.140821 -0.564999 1.52373 0.140821 -0.560933 1.52373 0.140821 -0.557269 1.52007 0.140821 -0.543769 1.52007 0.140821 -0.543769 1.51673 0.140821 -0.557269 1.51673 0.140821 -0.561519 1.51473 0.140821 -0.539519 1.51473 0.140821 -0.540105 1.52373 0.140821 -0.536039 1.52373 0.140821 -0.534999 1.52373 0.140821 -0.525855 1.52148 0.140821 -0.530933 1.52373 0.140821 -0.529519 1.52515 0.140821 -0.529519 1.52921 0.140821 -0.529519 1.53025 0.140821 -0.536297 1.53603 0.140821 -0.527269 1.52007 0.140821 -0.522519 1.52573 0.140821 -0.531519 1.51673 0.140821 -0.531519 1.51473 0.140821 -0.529519 1.53432 0.140821 -0.525855 1.53798 0.140821 -0.525855 1.55148 0.140821 -0.522519 1.55148 0.140821 -0.520519 1.53373 0.140821 -0.529519 1.55515 0.140821 -0.529519 1.56432 0.140821 -0.529519 1.56025 0.140821 -0.522519 1.56798 0.140821 -0.527269 1.5694 0.140821 -0.522519 1.56373 0.140821 -0.531519 1.57473 0.140821 -0.531519 1.57273 0.140821 -0.530933 1.56573 0.140821 -0.534999 1.56573 0.140821 -0.540105 1.56573 0.140821 -0.557269 1.5694 0.140821 -0.557269 1.57273 0.140821 -0.539519 1.57473 0.140821 -0.561519 1.57473 0.140821 -0.560933 1.56573 0.140821 -0.565519 1.56543 0.140821 -0.570105 1.56573 0.140821 -0.571519 1.56025 0.140821 -0.571219 1.55973 0.140821 -0.571519 1.55921 0.140821 -0.571519 1.55515 0.140821 -0.573769 1.5694 0.140821 -0.573769 1.57273 0.140817 -0.559403 1.55864 -1.65918 -0.578519 1.55573 0.140821 -0.578519 1.55573 -1.65918 -0.578519 1.55148 0.140821 -0.578519 1.55148 -1.65918 -0.575183 1.55148 -1.65918 -0.571519 1.55921 -1.65918 -0.571519 1.56432 0.140821 -0.571519 1.56432 0.140821 -0.575183 1.56798 0.140821 -0.578519 1.56798 0.140821 -0.578519 1.56373 0.140821 -0.580519 1.56373 -1.65918 -0.580519 1.57273 -0.702392 -0.579201 1.5746 -0.771264 -0.5798 1.57426 -0.761917 -0.580511 1.57291 -0.501589 -0.580328 1.57353 -0.447292 -0.579828 1.57423 0.140674 -0.579648 1.5744 0.124129 -0.580244 1.57373 0.140821 -0.580519 1.57273 -1.60086 -0.579873 1.57405 -1.65918 -0.578519 1.57473 0.140821 -0.578519 1.57473 -1.15821 -0.57965 1.57434 -0.98156 -0.580244 1.57373 -1.15044 -0.580393 1.57339 -0.771264 -0.580244 1.57373 -1.65918 -0.569519 1.57273 0.140821 -0.569519 1.57473 0.140821 -0.569519 1.57273 -1.65918 -0.573769 1.57273 -1.65918 -0.570105 1.56573 0.140821 -0.566039 1.56573 -1.65918 -0.566039 1.56573 -1.65918 -0.564999 1.56573 0.140821 -0.564999 1.56573 -1.65918 -0.560933 1.56573 0.140821 -0.561519 1.57273 -1.65918 -0.561519 1.57273 -1.65918 -0.561519 1.57473 -1.65918 -0.539519 1.57473 -1.65918 -0.539519 1.57273 0.140821 -0.539519 1.57273 0.140821 -0.543769 1.57273 -1.65918 -0.543769 1.5694 0.140821 -0.543769 1.5694 0.140821 -0.536039 1.56573 0.140821 -0.535519 1.56543 -1.65918 -0.535519 1.56543 -1.65918 -0.530933 1.56573 0.140821 -0.527269 1.57273 -1.65918 -0.531519 1.57273 -1.65918 -0.522519 1.57473 -1.65918 -0.520519 1.57273 -0.760048 -0.520557 1.57308 -1.31961 -0.521538 1.57443 -1.16177 -0.520677 1.57346 -0.842764 -0.521127 1.57413 -0.533746 -0.520664 1.57343 0.140821 -0.520519 1.57273 -0.115142 -0.521016 1.57399 0.140821 -0.522519 1.57473 0.140708 -0.521415 1.57444 -0.548818 -0.521239 1.57426 -1.03483 -0.521239 1.57426 -0.548818 -0.521837 1.5746 -0.115142 -0.521837 1.5746 -1.65918 -0.520519 1.56373 0.140821 -0.520519 1.56373 -1.65918 -0.522519 1.56373 -1.65918 -0.529519 1.56432 0.140821 -0.525855 1.56798 -1.65918 -0.529819 1.55973 0.140821 -0.529819 1.55973 -1.65918 -0.529519 1.55921 0.140821 -0.529519 1.55921 -1.65918 -0.522519 1.55148 0.140821 -0.522519 1.55573 -1.65918 -0.522519 1.55573 0.140821 -0.520519 1.55573 -1.65918 -0.520519 1.53373 -1.65918 -0.522519 1.53373 0.140821 -0.522519 1.53373 0.140821 -0.522519 1.53798 -1.65918 -0.529819 1.52973 0.140821 -0.529819 1.52973 -1.65918 -0.529519 1.52515 -1.65918 -0.525855 1.52148 -1.65918 -0.522519 1.52148 0.140821 -0.522519 1.52148 -1.65918 -0.522519 1.52573 0.140821 -0.520519 1.52573 -0.761917 -0.520527 1.51656 -0.676324 -0.522087 1.5148 -1.65917 -0.520646 1.51597 -1.65918 -0.520519 1.51673 -1.65918 -0.522519 1.51473 -1.65918 -0.521654 1.51488 -0.252009 -0.521207 1.51524 0.140821 -0.522519 1.51473 0.140821 -0.520519 1.51673 -0.965202 -0.520721 1.5159 -1.1821 -0.521227 1.51521 0.140784 -0.521146 1.51541 -0.457514 -0.520709 1.51593 -1.65918 -0.531519 1.51473 -1.65918 -0.531519 1.51673 0.140821 -0.527269 1.51673 -1.65918 -0.527269 1.51673 -1.65918 -0.527269 1.52007 0.140821 -0.535519 1.52403 -1.65918 -0.543769 1.51673 0.140821 -0.539519 1.51673 -1.65918 -0.561519 1.51673 0.140821 -0.561519 1.51673 -1.65918 -0.564999 1.52373 -1.65918 -0.565519 1.52403 -1.65918 -0.566039 1.52373 0.140821 -0.570105 1.52373 -1.65918 -0.570105 1.52373 0.140821 -0.573769 1.52007 -1.65918 -0.569519 1.51673 0.140821 -0.569519 1.51673 0.140821 -0.569519 1.51473 -0.285847 -0.579886 1.51529 -0.757945 -0.580441 1.51629 -1.65918 -0.580519 1.51673 -1.03974 -0.579829 1.51523 0.140821 -0.580519 1.51673 0.12214 -0.579965 1.51545 -0.9152 -0.580333 1.51593 -0.399274 -0.580348 1.51597 -0.636091 -0.579881 1.51529 -1.56477 -0.580022 1.51547 0.140821 -0.578519 1.51473 -1.65918 -0.578519 1.51473 -0.89084 -0.579025 1.51482 -0.402838 -0.579302 1.51491 -1.65918 -0.579888 1.51541 -1.65918 -0.580519 1.52573 0.140821 -0.580519 1.52573 0.140821 -0.578519 1.52573 -1.65918 -0.578519 1.52148 -1.65918 -0.575183 1.52148 0.140821 -0.575183 1.52148 0.140821 -0.571519 1.52515 -1.65918 -0.571519 1.52515 0.140821 -0.571519 1.52921 -1.65918 -0.571219 1.52973 -1.65918 -0.571519 1.53025 0.140821 -0.571519 1.53432 0.140821 -0.575183 1.53798 -1.65918 -0.578519 1.53798 0.140821 -0.578519 1.53798 -1.65918 -0.580519 1.53373 -1.65918 -0.578519 1.53373 -1.65918 -0.580519 1.55573 -1.65918 -0.575183 1.53798 -1.65918 -0.571519 1.55515 -1.65918 -0.571219 1.55973 -1.65918 -0.571519 1.56025 -1.65918 -0.578519 1.56798 -1.65918 -0.575183 1.56798 -1.65918 -0.573769 1.5694 -1.65918 -0.578519 1.56373 -1.65918 -0.580519 1.56373 -1.65918 -0.569519 1.57473 -1.65918 -0.565519 1.56543 -1.65918 -0.557269 1.5694 -1.65918 -0.540105 1.56573 -1.65918 -0.543769 1.57273 -1.65918 -0.557269 1.57273 -1.65918 -0.536039 1.56573 -1.65918 -0.534999 1.56573 -1.65918 -0.529519 1.56025 -1.65918 -0.527269 1.5694 -1.65918 -0.525855 1.56798 -1.65918 -0.522519 1.56798 -1.65918 -0.531519 1.57473 -1.65918 -0.527269 1.57273 -1.65913 -0.521228 1.57432 -1.65918 -0.529519 1.55515 -1.65918 -0.525855 1.55148 -1.65918 -0.525855 1.53798 -1.65918 -0.530812 1.54151 -1.65918 -0.522519 1.53798 -1.65918 -0.529519 1.53025 -1.65918 -0.529519 1.53432 -1.65918 -0.529519 1.52921 -1.65918 -0.530933 1.52373 -1.65918 -0.534999 1.52373 -1.65918 -0.535519 1.52403 -1.65918 -0.536039 1.52373 -1.65918 -0.540105 1.52373 -1.65918 -0.543769 1.52007 -1.65918 -0.557269 1.52007 -1.65918 -0.539519 1.51673 -1.65918 -0.557269 1.51673 -1.65918 -0.560933 1.52373 -1.65918 -0.571519 1.52921 -1.65918 -0.571519 1.53432 -1.65918 -0.573769 1.52007 -1.65918 -0.578519 1.52573 -1.65918 -0.573769 1.51673 -1.65918 -0.569519 1.51473 -0.739742 -0.570436 1.54184 0.140821 -0.570519 1.54222 0.140821 -0.570226 1.54151 -1.65918 -0.570226 1.54151 -1.65918 -0.570519 1.54222 0.140821 -0.570226 1.54795 -1.65918 -0.570226 1.54795 -1.65918 -0.570435 1.54763 -1.65918 -0.570519 1.54725 0.140821 -0.570519 1.54725 -0.655321 -0.570392 1.54769 0.140804 -0.570403 1.54761 -1.65918 -0.564741 1.55344 -1.65918 -0.564034 1.55373 -1.31358 -0.564343 1.55366 -0.580455 -0.564452 1.55363 0.140821 -0.564741 1.55344 0.140821 -0.564034 1.55373 -1.27282 -0.561497 1.55392 -1.02645 -0.561497 1.55392 -1.65917 -0.561387 1.55396 -1.65918 -0.559519 1.55673 -1.32881 -0.561497 1.55392 -1.05532 -0.560464 1.55459 -1.09959 -0.559711 1.55571 -0.763278 -0.561877 1.55383 0.140701 -0.560526 1.55434 -1.65918 -0.562519 1.55373 0.140821 -0.562519 1.55373 -0.553652 -0.561497 1.55392 -1.30362 -0.561497 1.55392 -1.65914 -0.559845 1.55539 -0.627843 -0.560341 1.55473 -0.0551315 -0.560464 1.55459 -0.592497 -0.559711 1.55571 -0.131948 -0.559711 1.55571 -0.757679 -0.55953 1.55647 0.140821 -0.559519 1.55673 0.140821 -0.559226 1.55895 -1.65918 -0.559226 1.55895 -1.65918 -0.559519 1.55825 -0.984273 -0.559449 1.55858 -0.640488 -0.559402 1.5587 -1.65917 -0.559414 1.55858 -0.762489 -0.559426 1.55864 0.140821 -0.559519 1.55825 0.140821 -0.553034 1.56473 0.140821 -0.553741 1.56444 -1.65918 -0.553034 1.56473 -0.758268 -0.553452 1.56463 -1.65918 -0.553741 1.56444 -1.65918 -0.547297 1.56444 -1.65918 -0.548004 1.56473 0.140821 -0.547297 1.56444 0.140821 -0.548004 1.56473 -1.03985 -0.547586 1.56463 -0.598423 -0.541622 1.55866 -1.65918 -0.541519 1.55825 -1.65918 -0.541812 1.55895 0.140821 -0.541812 1.55895 0.140821 -0.541519 1.55825 -1.22183 -0.541612 1.55864 -1.31184 -0.540742 1.55476 -1.00563 -0.540663 1.5547 -1.04885 -0.539541 1.55392 -1.65918 -0.538519 1.55373 -0.828721 -0.541463 1.55628 -0.679287 -0.540708 1.55473 -0.388119 -0.541327 1.55571 0.140821 -0.538519 1.55373 -0.284181 -0.539541 1.55392 -0.289081 -0.540675 1.5547 0.140803 -0.540523 1.55463 -1.65908 -0.540892 1.55476 -1.09119 -0.54133 1.55572 -1.65918 -0.541519 1.55673 0.140821 -0.541519 1.55673 -1.36381 -0.539541 1.55392 -0.556101 -0.539541 1.55392 -0.914461 -0.539541 1.55392 -0.766078 -0.53916 1.55383 0.140821 -0.536297 1.55344 -0.822332 -0.536645 1.55365 -1.65918 -0.536297 1.55344 -1.65918 -0.537004 1.55373 0.140821 -0.537004 1.55373 -1.65918 -0.530519 1.54725 -1.41113 -0.530612 1.54764 -1.65918 -0.530812 1.54795 -0.745136 -0.530612 1.54764 0.140821 -0.530812 1.54795 0.140821 -0.530519 1.54725 -1.65918 -0.530519 1.54222 0.140821 -0.530519 1.54222 -1.28374 -0.530596 1.54186 0.140821 -0.530812 1.54151 -0.89176 -0.536586 1.53584 -1.65918 -0.537004 1.53573 -1.11952 -0.536586 1.53584 -0.495564 -0.536586 1.53584 -1.65918 -0.536297 1.53603 0.140821 -0.537004 1.53573 -0.909563 -0.541327 1.53376 -1.65901 -0.54059 1.53492 -1.24535 -0.540666 1.53479 -0.854267 -0.540666 1.53479 -0.768878 -0.53878 1.53572 0.140821 -0.541519 1.53273 -0.375521 -0.541327 1.53376 -1.65918 -0.538519 1.53573 -1.19373 -0.539541 1.53554 -0.597571 -0.539541 1.53554 0.140821 -0.538519 1.53573 -0.0301093 -0.539716 1.53545 -1.466 -0.539716 1.53545 -0.940008 -0.539541 1.53554 -0.518305 -0.540595 1.53485 0.140508 -0.540752 1.53478 -1.36679 -0.541327 1.53376 -1.65918 -0.541519 1.53273 -0.690486 -0.541417 1.53338 0.140821 -0.541519 1.53122 -0.762431 -0.541596 1.53086 -1.65918 -0.541812 1.53051 -0.429199 -0.541623 1.5308 0.140821 -0.541812 1.53051 -1.65918 -0.541519 1.53122 0.140821 -0.547297 1.52503 -1.65918 -0.547297 1.52503 0.140821 -0.548004 1.52473 -1.22534 -0.547586 1.52484 -0.359785 -0.547586 1.52484 -1.65918 -0.548004 1.52473 0.140821 -0.553034 1.52473 -0.902723 -0.553452 1.52484 -1.65918 -0.553741 1.52503 -1.65918 -0.553034 1.52473 -0.444676 -0.553452 1.52484 -1.36382 -0.553423 1.52482 0.140821 -0.553741 1.52503 -1.65918 -0.559226 1.53051 0.140821 -0.559519 1.53122 -0.417239 -0.559415 1.5308 0.140821 -0.559226 1.53051 -0.754692 -0.559415 1.5308 -1.65918 -0.559519 1.53122 -1.65918 -0.559519 1.53273 -1.4968 -0.560514 1.53492 -1.0845 -0.560378 1.53477 -1.65918 -0.562519 1.53573 -0.763278 -0.55953 1.53299 -0.721808 -0.560607 1.535 -0.442714 -0.561497 1.53554 -0.11375 -0.561497 1.53554 -1.33231 -0.559711 1.53376 -1.03205 -0.559711 1.53376 0.140821 -0.559519 1.53273 -0.463011 -0.559711 1.53376 -0.213139 -0.559711 1.53376 0.140744 -0.56035 1.53498 -1.65902 -0.560227 1.53489 -0.260472 -0.560425 1.53484 0.140821 -0.562519 1.53573 -1.20563 -0.561497 1.53554 -1.07124 -0.561497 1.53554 -0.763278 -0.562258 1.53572 0.140799 -0.532184 1.52965 -1.65913 -0.533843 1.52675 -1.65923 -0.532101 1.52933 -1.65926 -0.534851 1.53345 -1.65904 -0.536699 1.52649 -1.65894 -0.538343 1.53173 -1.48026 -0.533247 1.53213 -1.39388 -0.536553 1.5329 -1.39778 -0.53269 1.52799 -1.42062 -0.534794 1.52652 -1.22514 -0.538293 1.53167 -1.32587 -0.537318 1.52697 -1.03724 -0.53316 1.53209 -1.65912 -0.538761 1.52861 -1.42142 -0.534862 1.53304 -1.49402 -0.532235 1.53047 -1.09508 -0.532849 1.52769 -1.14814 -0.538848 1.53025 -0.864597 -0.537311 1.52691 -1.20479 -0.532329 1.52865 -1.1463 -0.535439 1.52639 -0.853727 -0.532203 1.52937 -1.02926 -0.536764 1.5328 -1.06985 -0.538626 1.52845 -1.04322 -0.534752 1.53302 -0.733248 -0.537364 1.53256 -0.64628 -0.53316 1.53209 -0.699738 -0.535228 1.53306 -0.738234 -0.535664 1.52639 -0.737637 -0.538504 1.53129 -0.559711 -0.538463 1.52803 -0.956254 -0.534088 1.52666 -0.973007 -0.532324 1.5309 -0.479924 -0.534242 1.53282 -0.733846 -0.538861 1.52966 -0.345282 -0.533937 1.52677 -0.266492 -0.534071 1.53272 -0.400535 -0.53256 1.53133 -0.433647 -0.532197 1.52944 -0.270881 -0.538714 1.5309 -0.192091 -0.538835 1.52937 -0.0434871 -0.532223 1.52915 -0.322942 -0.537774 1.53219 -0.33491 -0.536248 1.53302 -0.344584 -0.537492 1.52704 -0.305189 -0.532849 1.52769 -0.000501774 -0.53744 1.53235 0.140303 -0.536293 1.53318 -0.0199499 -0.532638 1.53139 0.140791 -0.534527 1.52643 0.140769 -0.533619 1.5327 0.140827 -0.537385 1.52686 -0.151798 -0.535851 1.52638 0.140816 -0.538697 1.53095 0.140776 -0.538725 1.52858 0.140803 -0.532833 1.52759 0.140675 -0.565664 1.56324 -1.65921 -0.562908 1.55729 -1.65914 -0.5621 1.56067 -1.65922 -0.568973 1.55984 -1.65917 -0.566988 1.5566 -1.42176 -0.563219 1.55739 -1.65889 -0.564277 1.56298 -1.44894 -0.562339 1.56065 -1.65879 -0.567333 1.56266 -1.38641 -0.56556 1.55636 -1.33285 -0.568676 1.56077 -1.32886 -0.563576 1.56251 -1.15971 -0.562248 1.55886 -1.00971 -0.567878 1.56209 -1.43896 -0.56581 1.56305 -0.952663 -0.562178 1.56018 -1.3157 -0.566951 1.55666 -1.43019 -0.568627 1.55844 -1.01909 -0.565083 1.55644 -0.933513 -0.568787 1.56054 -1.06427 -0.563168 1.55738 -0.964928 -0.568034 1.55749 -0.769551 -0.568836 1.55937 -0.898407 -0.56581 1.56305 -0.964232 -0.566951 1.55666 -0.810841 -0.563966 1.56272 -0.76237 -0.562534 1.56129 -0.582051 -0.567878 1.56209 -0.701333 -0.562493 1.55824 -0.607982 -0.565718 1.55642 -0.64967 -0.563666 1.55696 -0.383381 -0.564298 1.55659 -0.53747 -0.563368 1.5623 -0.416293 -0.567878 1.56209 -0.530988 -0.56479 1.56301 -0.197477 -0.568842 1.55944 -0.513434 -0.566396 1.563 -0.216227 -0.562586 1.56139 -0.5262 -0.566951 1.55666 -0.602795 -0.562164 1.5598 -0.193088 -0.563124 1.55734 -0.267689 -0.562411 1.55844 -0.272477 -0.564717 1.56301 -0.0961469 -0.567192 1.55683 -0.104126 -0.565227 1.55644 0.140776 -0.563134 1.56219 -0.650269 -0.568189 1.55769 -0.320349 -0.568687 1.56071 -0.0559539 -0.566823 1.56277 0.140701 -0.568398 1.55785 0.140595 -0.565562 1.55613 0.140803 -0.561955 1.55942 0.140757 -0.568707 1.56054 -1.65913 -0.53685 1.56288 -1.65919 -0.532918 1.55733 -1.65892 -0.536194 1.55632 -1.65917 -0.538763 1.56099 -1.65916 -0.532153 1.56082 -1.65894 -0.538675 1.55821 -1.51875 -0.532411 1.55844 -1.65904 -0.534477 1.56302 -1.45652 -0.53879 1.55886 -1.39109 -0.533787 1.55687 -1.44136 -0.532534 1.56129 -1.34601 -0.535372 1.55637 -1.45652 -0.532145 1.56002 -1.03285 -0.537267 1.56262 -1.14136 -0.534109 1.56275 -1.00173 -0.534508 1.55652 -1.04721 -0.538293 1.56168 -1.44136 -0.538188 1.55769 -0.878062 -0.532171 1.55973 -0.902796 -0.538626 1.55844 -0.998143 -0.533843 1.56263 -1.051 -0.535977 1.56307 -1.15293 -0.536817 1.55662 -0.854923 -0.532574 1.55803 -0.67241 -0.536595 1.55656 -1.01948 -0.538795 1.5605 -0.560109 -0.538051 1.55751 -0.60499 -0.534508 1.55652 -0.901199 -0.532324 1.5609 -0.425668 -0.533576 1.56251 -0.276865 -0.536393 1.56299 -0.368221 -0.534642 1.563 -0.373008 -0.537462 1.56251 -0.460176 -0.538477 1.56134 -0.592623 -0.538854 1.55958 -0.411406 -0.532228 1.5598 -0.0962467 -0.533606 1.557 -0.326433 -0.532797 1.55775 -0.186705 -0.532184 1.55958 -0.0564527 -0.534526 1.56297 -0.0228422 -0.537352 1.56241 -0.0633343 -0.533238 1.56217 0.140804 -0.535633 1.55628 0.140686 -0.537526 1.5571 0.140825 -0.534869 1.56321 0.140809 -0.538876 1.55889 0.140793 -0.538387 1.56175 -0.0794912 -0.538771 1.5601 0.0131618 -0.538463 1.55803 0.140743 -0.532817 1.55755 0.140877 -0.532138 1.56048 -1.65912 -0.568713 1.53093 -1.65919 -0.565907 1.52617 -1.65919 -0.562444 1.53151 -1.65916 -0.568776 1.52873 -1.65906 -0.562453 1.52803 -1.65911 -0.566077 1.53328 -1.29495 -0.565256 1.53306 -1.37224 -0.564528 1.52655 -1.30453 -0.568051 1.52751 -1.47327 -0.566607 1.52655 -1.07613 -0.56297 1.52753 -1.28787 -0.56316 1.53209 -1.10825 -0.562381 1.52852 -1.36646 -0.567226 1.53252 -1.02507 -0.566694 1.53282 -1.07633 -0.568893 1.53003 -0.836573 -0.564023 1.52678 -1.0871 -0.568504 1.53129 -0.895215 -0.568257 1.52777 -0.776333 -0.56581 1.53306 -0.76636 -0.567878 1.53209 -1.09907 -0.564499 1.53297 -0.840562 -0.567192 1.52683 -0.81862 -0.562209 1.5293 -0.966725 -0.566172 1.52644 -0.791094 -0.562575 1.52803 -0.653062 -0.567047 1.53267 -0.56769 -0.568714 1.5309 -0.929524 -0.562235 1.53047 -0.455988 -0.564356 1.53293 -0.366725 -0.566617 1.52657 -0.361838 -0.567461 1.53251 -0.421679 -0.566103 1.53303 -0.333115 -0.56436 1.52657 -0.296413 -0.568848 1.52952 -0.343088 -0.562203 1.52937 -0.899604 -0.56316 1.53209 -0.810243 -0.568842 1.52944 -0.250136 -0.568326 1.52786 -0.208447 -0.563264 1.53219 -0.194285 -0.565666 1.52637 -0.183115 -0.565465 1.53301 -0.181918 -0.568609 1.53109 -0.360242 -0.562324 1.5309 0.140703 -0.568265 1.53179 -0.171147 -0.567192 1.52683 -0.347676 -0.56285 1.52769 0.0793853 -0.56876 1.52924 0.0977363 -0.567433 1.527 0.140803 -0.562038 1.52989 0.140566 -0.563673 1.53264 0.140888 -0.568682 1.52759 0.140725 -0.566447 1.53304 0.14066 -0.564659 1.52639 0.140801 -0.562839 1.52758 -1.6434 -0.241812 1.21473 -1.6434 -0.241812 1.51473 -1.65918 -0.261519 1.21473 -1.65718 -0.243769 1.21473 -1.65718 -0.257269 1.21473 -1.65384 -0.257269 1.21473 -1.65384 -0.227269 1.21473 -1.65718 -0.227269 1.21473 -1.65243 -0.222519 1.21473 -1.64818 -0.222519 1.21473 -1.64876 -0.229519 1.21473 -1.64418 -0.229519 1.21473 -1.63959 -0.229519 1.21473 -1.63593 -0.225855 1.21473 -1.61418 -0.229519 1.21473 -1.60818 -0.230933 1.21473 -1.60818 -0.235519 1.21473 -1.60118 -0.227269 1.21473 -1.59918 -0.231519 1.21473 -1.60451 -0.243769 1.21473 -1.60451 -0.257269 1.21473 -1.59918 -0.261519 1.21473 -1.60818 -0.260933 1.21473 -1.60818 -0.265519 1.21473 -1.60451 -0.273769 1.21473 -1.60959 -0.271519 1.21473 -1.59918 -0.269519 1.21473 -1.59918 -0.278519 1.21473 -1.60593 -0.275183 1.21473 -1.61018 -0.280519 1.21473 -1.6168 -0.267814 1.21472 -1.61876 -0.271519 1.21473 -1.62625 -0.270519 1.21473 -1.62243 -0.275183 1.21473 -1.63593 -0.275183 1.21473 -1.63959 -0.271519 1.21473 -1.62243 -0.278519 1.21473 -1.64418 -0.271519 1.21473 -1.64684 -0.267759 1.21473 -1.65384 -0.273769 1.21473 -1.65018 -0.265519 1.21473 -1.65018 -0.260933 1.21473 -1.65243 -0.275183 1.21473 -1.65718 -0.273769 1.21473 -1.65918 -0.278519 1.21473 -1.64889 -0.253741 1.21473 -1.60818 -0.270105 1.21473 -1.61544 -0.23857 1.21476 -1.61876 -0.229519 1.21473 -1.65384 -0.243769 1.21473 -1.65718 -0.261519 1.51473 -1.65718 -0.261519 1.21473 -1.65018 -0.270105 1.21473 -1.65718 -0.269519 1.51473 -1.65718 -0.269519 1.21473 -1.65918 -0.269519 1.21473 -1.65718 -0.280519 1.51473 -1.65718 -0.280519 1.21473 -1.65918 -0.278519 1.51473 -1.64818 -0.280519 1.21473 -1.64818 -0.278519 1.51473 -1.64818 -0.278519 1.21473 -1.65243 -0.278519 1.51473 -1.65243 -0.278519 1.21473 -1.64876 -0.271519 1.21473 -1.64876 -0.271519 1.51473 -1.63959 -0.271519 1.51473 -1.63593 -0.278519 1.21473 -1.64018 -0.278519 1.51473 -1.64018 -0.280519 1.51473 -1.64018 -0.278519 1.21473 -1.64018 -0.280519 1.21473 -1.61818 -0.280519 1.51473 -1.61818 -0.280519 1.21473 -1.61818 -0.278519 1.21473 -1.61418 -0.271519 1.21473 -1.60959 -0.271519 1.51473 -1.60593 -0.275183 1.51473 -1.60593 -0.278519 1.51473 -1.60593 -0.278519 1.21473 -1.61018 -0.278519 1.51473 -1.61018 -0.278519 1.21473 -1.60118 -0.280519 1.51473 -1.60118 -0.280519 1.21473 -1.59918 -0.278519 1.51473 -1.5994 -0.279552 1.21473 -1.60118 -0.269519 1.51473 -1.60118 -0.269519 1.21473 -1.60118 -0.273769 1.51473 -1.60118 -0.273769 1.21473 -1.60451 -0.273769 1.51473 -1.60818 -0.260933 1.51473 -1.60118 -0.257269 1.21473 -1.60118 -0.261519 1.21473 -1.60118 -0.261519 1.51473 -1.59918 -0.261519 1.51473 -1.59918 -0.239519 1.21473 -1.60118 -0.239519 1.21473 -1.60118 -0.243769 1.51473 -1.60118 -0.243769 1.21473 -1.60818 -0.240105 1.51473 -1.60818 -0.240105 1.21473 -1.60818 -0.235519 1.51473 -1.60118 -0.227269 1.51473 -1.60451 -0.227269 1.21473 -1.60118 -0.231519 1.21473 -1.59918 -0.222519 1.21473 -1.60052 -0.220519 1.21473 -1.59918 -0.222519 1.51473 -1.61018 -0.220519 1.51473 -1.61018 -0.222519 1.51473 -1.61018 -0.222519 1.21473 -1.60593 -0.222519 1.21473 -1.60593 -0.225855 1.21473 -1.60959 -0.229519 1.21473 -1.61418 -0.229519 1.51473 -1.61876 -0.229519 1.51473 -1.62243 -0.225855 1.51473 -1.62243 -0.225855 1.21473 -1.62243 -0.222519 1.21473 -1.61818 -0.222519 1.51473 -1.61818 -0.222519 1.21473 -1.61818 -0.220519 1.21473 -1.64018 -0.220519 1.21473 -1.64018 -0.222519 1.51473 -1.64018 -0.222519 1.21473 -1.63593 -0.222519 1.51473 -1.63593 -0.222519 1.21473 -1.63959 -0.229519 1.51473 -1.64418 -0.229519 1.51473 -1.65243 -0.225855 1.51473 -1.65243 -0.225855 1.21473 -1.65918 -0.222519 1.21473 -1.65918 -0.222519 1.51473 -1.65918 -0.231519 1.51473 -1.65918 -0.231519 1.21473 -1.65718 -0.231519 1.21473 -1.65718 -0.231519 1.51473 -1.65718 -0.227269 1.51473 -1.65018 -0.230933 1.51473 -1.65018 -0.230933 1.21473 -1.65018 -0.235519 1.21473 -1.65018 -0.240105 1.21473 -1.65384 -0.243769 1.51473 -1.65718 -0.239519 1.51473 -1.65718 -0.239519 1.21473 -1.65918 -0.239519 1.21473 -1.65918 -0.239519 1.51473 -1.65718 -0.243769 1.51473 -1.65718 -0.257269 1.51473 -1.65918 -0.261519 1.51473 -1.64918 -0.253453 1.51473 -1.65384 -0.257269 1.51473 -1.65018 -0.265519 1.51473 -1.65018 -0.270105 1.51473 -1.65384 -0.273769 1.51473 -1.65718 -0.273769 1.51473 -1.65918 -0.269519 1.51473 -1.65243 -0.275183 1.51473 -1.64818 -0.280519 1.51473 -1.64418 -0.271519 1.51473 -1.63593 -0.275183 1.51473 -1.62243 -0.275183 1.51473 -1.61876 -0.271519 1.51473 -1.62243 -0.278519 1.51473 -1.63593 -0.278519 1.51473 -1.61818 -0.278519 1.51473 -1.61418 -0.271519 1.51473 -1.60818 -0.270105 1.51473 -1.60818 -0.265519 1.51473 -1.59918 -0.269519 1.51473 -1.61018 -0.280519 1.51473 -1.60451 -0.257269 1.51473 -1.60451 -0.243769 1.51473 -1.60118 -0.257269 1.51473 -1.59918 -0.239519 1.51473 -1.60118 -0.239519 1.51473 -1.60818 -0.230933 1.51473 -1.60451 -0.227269 1.51473 -1.60593 -0.225855 1.51473 -1.60118 -0.231519 1.51473 -1.59918 -0.231519 1.51473 -1.60593 -0.222519 1.51473 -1.60959 -0.229519 1.51473 -1.63593 -0.225855 1.51473 -1.62243 -0.222519 1.51473 -1.61818 -0.220519 1.51473 -1.65384 -0.227269 1.51473 -1.64876 -0.229519 1.51473 -1.65018 -0.235519 1.51473 -1.65018 -0.240105 1.51473 -1.64818 -0.222519 1.51473 -1.64818 -0.220519 1.51473 -1.65243 -0.222519 1.51473 -1.6578 -0.22052 1.51473 -1.65018 -0.260933 1.51473 -1.64918 -0.248004 1.51473 -1.64889 -0.247297 1.51473 -1.64909 -0.247627 1.31453 -1.64909 -0.247627 1.29595 -1.64918 -0.247586 1.21473 -1.64909 -0.247627 1.30617 -1.64918 -0.253034 1.21473 -1.6434 -0.259226 1.51473 -1.6434 -0.259226 1.21473 -1.63993 -0.259794 1.51474 -1.63818 -0.262519 1.51473 -1.64109 -0.259592 1.21474 -1.63818 -0.263277 1.21473 -1.63867 -0.260797 1.21477 -1.63789 -0.264741 1.51473 -1.63514 -0.267484 1.21473 -1.63169 -0.270519 1.21473 -1.63211 -0.270519 1.51473 -1.62596 -0.270226 1.51473 -1.62047 -0.264741 1.51473 -1.62047 -0.264741 1.21473 -1.61921 -0.260293 1.21482 -1.61868 -0.259868 1.51473 -1.62018 -0.262519 1.21473 -1.61642 -0.259519 1.21473 -1.61496 -0.259226 1.51473 -1.61496 -0.259226 1.21473 -1.60918 -0.247586 1.51473 -1.60936 -0.253628 1.51473 -1.60944 -0.247331 1.21473 -1.60918 -0.253452 1.21473 -1.61496 -0.241812 1.21473 -1.61496 -0.241812 1.51473 -1.61642 -0.241519 1.51473 -1.62018 -0.238519 1.21473 -1.61933 -0.240626 1.51457 -1.61566 -0.241519 1.21473 -1.61853 -0.241251 1.21473 -1.62047 -0.236297 1.51473 -1.62022 -0.236705 1.41579 -1.62047 -0.236297 1.21473 -1.62018 -0.238519 1.51473 -1.62018 -0.237004 1.21473 -1.62022 -0.236705 1.44227 -1.62022 -0.236705 1.43019 -1.62625 -0.230519 1.51473 -1.62596 -0.230812 1.21473 -1.63169 -0.230519 1.51473 -1.63211 -0.230519 1.21473 -1.63834 -0.239211 1.51471 -1.63514 -0.233554 1.51473 -1.63789 -0.236297 1.21473 -1.64054 -0.241379 1.51471 -1.63921 -0.240907 1.2148 -1.63818 -0.237761 1.21473 -1.61142 -0.237674 1.21482 -1.61103 -0.23375 1.21477 -1.61722 -0.237204 1.51478 -1.61089 -0.234228 1.51474 -1.61152 -0.238107 1.51472 -1.61355 -0.232076 1.5147 -1.61697 -0.233483 1.5147 -1.6178 -0.235031 1.21478 -1.61457 -0.23201 1.21469 -1.64553 -0.26886 1.51453 -1.64744 -0.266599 1.51471 -1.64081 -0.266511 1.51448 -1.64689 -0.263162 1.5147 -1.64215 -0.268342 1.51435 -1.64387 -0.262117 1.5147 -1.64083 -0.266713 1.21527 -1.64135 -0.263468 1.51444 -1.64756 -0.264689 1.21476 -1.64148 -0.263291 1.21484 -1.64386 -0.269019 1.21473 -1.64485 -0.261985 1.21494 -1.61774 -0.265597 1.51459 -1.6147 -0.262045 1.5147 -1.61526 -0.262025 1.21492 -1.61144 -0.263146 1.51446 -1.61154 -0.267501 1.38036 -1.61362 -0.268943 1.51464 -1.61084 -0.266566 1.51472 -1.61613 -0.268367 1.51462 -1.61732 -0.264077 1.21474 -1.61115 -0.263884 1.21489 -1.61093 -0.266858 1.21473 -1.61393 -0.269062 1.21472 -1.64573 -0.232352 1.51477 -1.64479 -0.239057 1.51453 -1.64777 -0.235212 1.51465 -1.64208 -0.232715 1.51471 -1.64099 -0.237075 1.51472 -1.64454 -0.232045 1.2147 -1.64117 -0.233672 1.21522 -1.64326 -0.238983 1.21469 -1.64092 -0.236176 1.21488 -1.64753 -0.23687 1.21484 -1.64655 -0.232961 1.21476 -1.6434 -0.520519 1.53603 -1.65018 -0.520519 1.53432 -1.65384 -0.520519 1.52148 -1.65018 -0.520519 1.52515 -1.65718 -0.520519 1.52148 -1.65243 -0.520519 1.52007 -1.64818 -0.520519 1.51673 -1.64418 -0.520519 1.52373 -1.63959 -0.520519 1.52373 -1.63593 -0.520519 1.52007 -1.62243 -0.520519 1.52007 -1.61818 -0.520519 1.51673 -1.61418 -0.520519 1.52373 -1.60959 -0.520519 1.52373 -1.60818 -0.520519 1.52973 -1.60818 -0.520519 1.53432 -1.60593 -0.520519 1.51673 -1.59918 -0.520519 1.52573 -1.60118 -0.520519 1.52573 -1.59918 -0.520519 1.55573 -1.59918 -0.520519 1.53373 -1.60118 -0.520519 1.53798 -1.60959 -0.520519 1.56573 -1.60451 -0.520519 1.56798 -1.60118 -0.520519 1.56373 -1.59918 -0.520519 1.57273 -1.62243 -0.520519 1.5694 -1.63593 -0.520519 1.5694 -1.63593 -0.520519 1.57273 -1.62243 -0.520519 1.57273 -1.61818 -0.520519 1.57273 -1.65018 -0.520519 1.56432 -1.65243 -0.520519 1.5694 -1.65243 -0.520519 1.57273 -1.65718 -0.520519 1.57473 -1.65384 -0.520519 1.55148 -1.60818 -0.520519 1.55515 -1.64876 -0.520519 1.56573 -1.63959 -0.520519 1.56573 -1.65918 -0.220519 1.55573 -1.65918 -0.520519 1.55573 -1.65718 -0.520519 1.55573 -1.65718 -0.520519 1.55148 -1.65718 -0.220519 1.55148 -1.65384 -0.220519 1.55148 -1.65018 -0.520519 1.55515 -1.65018 -0.520519 1.55973 -1.65384 -0.520519 1.56798 -1.65718 -0.520519 1.56798 -1.65918 -0.220519 1.56373 -1.65718 -0.520519 1.56373 -1.65918 -0.220519 1.57273 -1.6586 -0.520408 1.57424 -1.64818 -0.220519 1.57473 -1.64818 -0.520519 1.57473 -1.64818 -0.520519 1.57273 -1.65243 -0.220519 1.5694 -1.64418 -0.520519 1.56573 -1.63959 -0.220519 1.56573 -1.63593 -0.220519 1.57273 -1.64018 -0.520519 1.57273 -1.64018 -0.220519 1.57273 -1.64018 -0.220519 1.57473 -1.64018 -0.520519 1.57473 -1.61818 -0.520519 1.57473 -1.62243 -0.220519 1.5694 -1.61876 -0.220519 1.56573 -1.61876 -0.520519 1.56573 -1.61418 -0.520519 1.56573 -1.60593 -0.220519 1.57273 -1.60593 -0.520519 1.5694 -1.60593 -0.520519 1.57273 -1.61018 -0.220519 1.57273 -1.61018 -0.220519 1.57473 -1.61018 -0.520519 1.57273 -1.60118 -0.220519 1.57473 -1.61018 -0.520519 1.57473 -1.60118 -0.520519 1.57473 -1.59918 -0.220519 1.57273 -1.60007 -0.520535 1.57443 -1.59918 -0.220519 1.56373 -1.59918 -0.520519 1.56373 -1.60118 -0.520519 1.56798 -1.60818 -0.520519 1.56432 -1.60818 -0.520519 1.55973 -1.60451 -0.520519 1.55148 -1.60118 -0.520519 1.55148 -1.60118 -0.520519 1.55573 -1.60118 -0.220519 1.55573 -1.59918 -0.220519 1.55573 -1.59918 -0.220519 1.53373 -1.60118 -0.220519 1.53373 -1.60118 -0.520519 1.53373 -1.60451 -0.220519 1.53798 -1.60451 -0.520519 1.53798 -1.60818 -0.220519 1.53432 -1.60818 -0.220519 1.52973 -1.60818 -0.220519 1.52515 -1.60818 -0.520519 1.52515 -1.60451 -0.520519 1.52148 -1.60118 -0.520519 1.52148 -1.60118 -0.220519 1.52573 -1.59918 -0.220519 1.52573 -1.59918 -0.220519 1.51673 -1.60027 -0.220523 1.51473 -1.59918 -0.520519 1.51673 -1.61018 -0.520519 1.51473 -1.61018 -0.220519 1.51673 -1.60593 -0.220519 1.51673 -1.61018 -0.520519 1.51673 -1.60593 -0.520519 1.52007 -1.60959 -0.220519 1.52373 -1.61418 -0.220519 1.52373 -1.61876 -0.520519 1.52373 -1.62243 -0.220519 1.51673 -1.62243 -0.520519 1.51673 -1.61818 -0.220519 1.51673 -1.64018 -0.220519 1.51673 -1.64018 -0.520519 1.51673 -1.63593 -0.520519 1.51673 -1.63593 -0.220519 1.52007 -1.64876 -0.220519 1.52373 -1.65243 -0.220519 1.52007 -1.64876 -0.520519 1.52373 -1.65243 -0.220519 1.51673 -1.65243 -0.520519 1.51673 -1.64818 -0.220519 1.51673 -1.64818 -0.520519 1.51473 -1.65918 -0.220519 1.51673 -1.65771 -0.52052 1.51473 -1.65918 -0.220519 1.52573 -1.65718 -0.220519 1.52573 -1.65918 -0.520519 1.52573 -1.65718 -0.220519 1.52148 -1.65718 -0.520519 1.52573 -1.65018 -0.520519 1.52973 -1.65018 -0.220519 1.53432 -1.65384 -0.520519 1.53798 -1.65718 -0.220519 1.53373 -1.65718 -0.520519 1.53798 -1.65718 -0.520519 1.53373 -1.65918 -0.220519 1.53373 -1.65718 -0.220519 1.55573 -1.65718 -0.220519 1.53798 -1.65018 -0.220519 1.55515 -1.65018 -0.220519 1.55973 -1.64876 -0.220519 1.56573 -1.65018 -0.220519 1.56432 -1.65718 -0.220519 1.56798 -1.65384 -0.220519 1.56798 -1.65718 -0.220519 1.56373 -1.65718 -0.220519 1.57473 -1.65243 -0.220519 1.57273 -1.64818 -0.220519 1.57273 -1.64418 -0.220519 1.56573 -1.63593 -0.220519 1.5694 -1.62243 -0.220519 1.57273 -1.61818 -0.220519 1.57473 -1.61818 -0.220519 1.57273 -1.61418 -0.220519 1.56573 -1.60451 -0.220519 1.56798 -1.60959 -0.220519 1.56573 -1.60818 -0.220519 1.56432 -1.60818 -0.220519 1.55973 -1.61496 -0.220519 1.55344 -1.60593 -0.220519 1.5694 -1.60118 -0.220519 1.56798 -1.60118 -0.220519 1.56373 -1.59975 -0.220617 1.57419 -1.60818 -0.220519 1.55515 -1.60451 -0.220519 1.55148 -1.60118 -0.220519 1.55148 -1.60118 -0.220519 1.53798 -1.60451 -0.220519 1.52148 -1.60593 -0.220519 1.52007 -1.60118 -0.220519 1.52148 -1.61876 -0.220519 1.52373 -1.62243 -0.220519 1.52007 -1.6324 -0.220519 1.52503 -1.64018 -0.220519 1.51473 -1.63593 -0.220519 1.51673 -1.64418 -0.220519 1.52373 -1.65384 -0.220519 1.52148 -1.65018 -0.220519 1.52515 -1.65018 -0.220519 1.52973 -1.65384 -0.220519 1.53798 -1.63959 -0.220519 1.52373 -1.61642 -0.220519 1.55373 -1.64918 -0.220519 1.54766 -1.64616 -0.220519 1.53878 -1.64918 -0.520519 1.5418 -1.64903 -0.520519 1.54781 -1.6434 -0.520519 1.55344 -1.64118 -0.220519 1.55373 -1.64332 -0.220519 1.55352 -1.63835 -0.520504 1.55646 -1.63925 -0.220755 1.55438 -1.6397 -0.520496 1.55409 -1.63818 -0.220519 1.55749 -1.63789 -0.520519 1.55895 -1.63789 -0.220519 1.55895 -1.63211 -0.220519 1.56473 -1.6324 -0.520519 1.56444 -1.62625 -0.520519 1.56473 -1.62666 -0.220519 1.56473 -1.62596 -0.220519 1.56444 -1.62047 -0.520519 1.55895 -1.62047 -0.220519 1.55895 -1.62005 -0.220527 1.55647 -1.61865 -0.52052 1.55403 -1.61845 -0.220535 1.554 -1.61496 -0.520519 1.55344 -1.6093 -0.220519 1.54778 -1.60918 -0.220519 1.5418 -1.60918 -0.520519 1.54766 -1.6093 -0.520519 1.54168 -1.61496 -0.520519 1.53603 -1.61496 -0.220519 1.53603 -1.61566 -0.220519 1.53573 -1.61987 -0.220755 1.53422 -1.61566 -0.520519 1.53573 -1.61911 -0.519983 1.53504 -1.62018 -0.220519 1.53198 -1.62013 -0.513602 1.53274 -1.62047 -0.220519 1.53051 -1.62626 -0.220519 1.52473 -1.62047 -0.520519 1.53051 -1.62666 -0.520519 1.52473 -1.6321 -0.520519 1.52473 -1.63789 -0.220519 1.53051 -1.63789 -0.520519 1.53051 -1.64118 -0.520519 1.53573 -1.63818 -0.220519 1.53198 -1.63903 -0.52038 1.53492 -1.63896 -0.220589 1.53487 -1.64118 -0.220519 1.53573 -1.61174 -0.221049 1.53211 -1.6138 -0.220532 1.5332 -1.61746 -0.220594 1.52806 -1.61693 -0.220426 1.53182 -1.61126 -0.370519 1.53137 -1.61088 -0.220533 1.52924 -1.61257 -0.220607 1.5267 -1.61193 -0.52052 1.53258 -1.61107 -0.520506 1.52823 -1.61677 -0.520567 1.53221 -1.61676 -0.520585 1.52731 -1.61373 -0.52051 1.52626 -1.64585 -0.220891 1.56298 -1.64271 -0.220557 1.55661 -1.64728 -0.22061 1.55768 -1.64202 -0.220707 1.56242 -1.64059 -0.220528 1.55924 -1.64768 -0.520473 1.56007 -1.64406 -0.370128 1.55636 -1.64072 -0.520634 1.56075 -1.64525 -0.5204 1.56313 -1.64616 -0.520441 1.5566 -1.64201 -0.520363 1.55707 -1.61667 -0.220512 1.5621 -1.61259 -0.220567 1.56287 -1.61487 -0.220699 1.55631 -1.61071 -0.220744 1.55937 -1.61348 -0.520445 1.56309 -1.61756 -0.220564 1.55863 -1.61582 -0.520406 1.56281 -1.61495 -0.520443 1.55621 -1.61211 -0.220625 1.55693 -1.61773 -0.520518 1.55988 -1.6107 -0.520501 1.55944 -1.6114 -0.520079 1.56173 -1.64664 -0.220506 1.53233 -1.64644 -0.220535 1.52674 -1.64123 -0.220528 1.53173 -1.64311 -0.220777 1.5265 -1.64414 -0.354699 1.53285 -1.64332 -0.520442 1.52638 -1.64192 -0.520499 1.53277 -1.641 -0.221026 1.52809 -1.64729 -0.520452 1.53131 -1.647 -0.520516 1.52751 -1.64116 -0.520502 1.52802 -1.6434 -0.541812 1.51473 -1.6434 -0.541812 1.21473 -1.65918 -0.561519 1.21473 -1.65718 -0.543769 1.21473 -1.65718 -0.557269 1.21473 -1.65718 -0.539519 1.21473 -1.65018 -0.530933 1.21473 -1.65718 -0.531519 1.21473 -1.65243 -0.525855 1.21473 -1.63959 -0.529519 1.21473 -1.63593 -0.525855 1.21473 -1.62243 -0.525855 1.21473 -1.63593 -0.522519 1.21473 -1.62243 -0.522519 1.21473 -1.61418 -0.529519 1.21473 -1.60451 -0.527269 1.21473 -1.60818 -0.530933 1.21473 -1.60818 -0.535519 1.21473 -1.60593 -0.522519 1.21473 -1.59918 -0.531519 1.21473 -1.61018 -0.522519 1.21473 -1.60818 -0.540105 1.21473 -1.60451 -0.543769 1.21473 -1.60451 -0.557269 1.21473 -1.60118 -0.561519 1.21473 -1.60118 -0.543769 1.21473 -1.60818 -0.570105 1.21473 -1.60451 -0.573769 1.21473 -1.60593 -0.575183 1.21473 -1.60118 -0.569519 1.21473 -1.59918 -0.569519 1.21473 -1.60593 -0.578519 1.21473 -1.61018 -0.580519 1.21473 -1.61418 -0.571519 1.21473 -1.62625 -0.570518 1.21473 -1.63593 -0.575183 1.21473 -1.63959 -0.571519 1.21473 -1.62243 -0.578519 1.21473 -1.64018 -0.580519 1.21473 -1.61818 -0.580519 1.21473 -1.64418 -0.571519 1.21473 -1.65018 -0.565519 1.21473 -1.65018 -0.560933 1.21473 -1.65384 -0.573769 1.21473 -1.65384 -0.557269 1.21473 -1.65018 -0.540105 1.21473 -1.61642 -0.559519 1.21473 -1.64876 -0.571519 1.21473 -1.62018 -0.538519 1.21473 -1.61876 -0.529519 1.21473 -1.65718 -0.561519 1.51473 -1.65718 -0.561519 1.21473 -1.65018 -0.560933 1.51473 -1.65018 -0.570105 1.21473 -1.65384 -0.573769 1.51473 -1.65718 -0.569519 1.51473 -1.65718 -0.573769 1.21473 -1.65718 -0.569519 1.21473 -1.65718 -0.580519 1.51473 -1.65883 -0.579618 1.24009 -1.65718 -0.580519 1.21473 -1.64818 -0.580519 1.51473 -1.64818 -0.580519 1.21473 -1.64818 -0.578519 1.21473 -1.65243 -0.578519 1.21473 -1.64876 -0.571519 1.51473 -1.65243 -0.575183 1.21473 -1.63593 -0.578519 1.21473 -1.64018 -0.578519 1.21473 -1.64018 -0.578519 1.51473 -1.61818 -0.578519 1.21473 -1.61818 -0.578519 1.51473 -1.62243 -0.578519 1.51473 -1.62243 -0.575183 1.21473 -1.61876 -0.571519 1.21473 -1.60959 -0.571519 1.51473 -1.60959 -0.571519 1.21473 -1.60593 -0.578519 1.51473 -1.61018 -0.578519 1.21473 -1.61018 -0.578519 1.51473 -1.61018 -0.580519 1.51473 -1.60118 -0.580519 1.51473 -1.60056 -0.580432 1.21472 -1.59918 -0.578519 1.51473 -1.59918 -0.578519 1.21473 -1.59918 -0.569519 1.51473 -1.60118 -0.573769 1.21473 -1.60451 -0.573769 1.51473 -1.60818 -0.565519 1.21473 -1.60818 -0.565519 1.51473 -1.60818 -0.560933 1.21473 -1.60118 -0.557269 1.21473 -1.60118 -0.561519 1.51473 -1.59918 -0.561519 1.21473 -1.59918 -0.561519 1.51473 -1.59918 -0.539519 1.21473 -1.59918 -0.539519 1.51473 -1.60118 -0.539519 1.51473 -1.60118 -0.539519 1.21473 -1.60118 -0.543769 1.51473 -1.60118 -0.527269 1.21473 -1.60118 -0.531519 1.51473 -1.60118 -0.531519 1.21473 -1.59918 -0.531519 1.51473 -1.60059 -0.520519 1.51473 -1.59918 -0.522519 1.51473 -1.59918 -0.522519 1.21473 -1.60026 -0.520521 1.21473 -1.61018 -0.522519 1.51473 -1.60593 -0.522519 1.51473 -1.60593 -0.525855 1.51473 -1.60593 -0.525855 1.21473 -1.60959 -0.529519 1.21473 -1.61418 -0.529519 1.51473 -1.62243 -0.525855 1.51473 -1.61818 -0.522519 1.21473 -1.61818 -0.520519 1.21473 -1.61818 -0.520519 1.51473 -1.64018 -0.520519 1.51473 -1.64018 -0.522519 1.21473 -1.64018 -0.522519 1.51473 -1.63959 -0.529519 1.51473 -1.64418 -0.529519 1.21473 -1.64876 -0.529519 1.21473 -1.65243 -0.525855 1.51473 -1.65243 -0.522519 1.51473 -1.64818 -0.522519 1.51473 -1.65243 -0.522519 1.21473 -1.64818 -0.522519 1.21473 -1.64818 -0.520519 1.21473 -1.6585 -0.521106 1.51471 -1.65718 -0.531519 1.51473 -1.65718 -0.527269 1.51473 -1.65718 -0.527269 1.21473 -1.65384 -0.527269 1.21473 -1.65384 -0.527269 1.51473 -1.65018 -0.530933 1.51473 -1.65018 -0.535519 1.21473 -1.65384 -0.543769 1.21473 -1.65718 -0.539519 1.51473 -1.65918 -0.539519 1.51473 -1.65918 -0.561519 1.51473 -1.65718 -0.557269 1.51473 -1.65718 -0.543769 1.51473 -1.65384 -0.543769 1.51473 -1.65384 -0.557269 1.51473 -1.65018 -0.565519 1.51473 -1.65718 -0.573769 1.51473 -1.65903 -0.579384 1.51473 -1.65243 -0.575183 1.51473 -1.65243 -0.578519 1.51473 -1.64818 -0.578519 1.51473 -1.64418 -0.571519 1.51473 -1.63959 -0.571519 1.51473 -1.63593 -0.575183 1.51473 -1.62243 -0.575183 1.51473 -1.63593 -0.578519 1.51473 -1.61818 -0.580519 1.51473 -1.64018 -0.580519 1.51473 -1.61876 -0.571519 1.51473 -1.61418 -0.571519 1.51473 -1.60818 -0.570105 1.51473 -1.60818 -0.560933 1.51473 -1.60593 -0.575183 1.51473 -1.60118 -0.573769 1.51473 -1.60118 -0.569519 1.51473 -1.59997 -0.58005 1.51463 -1.60451 -0.557269 1.51473 -1.60818 -0.540105 1.51473 -1.60451 -0.543769 1.51473 -1.60118 -0.557269 1.51473 -1.60818 -0.535519 1.51473 -1.60451 -0.527269 1.51473 -1.60118 -0.527269 1.51473 -1.60959 -0.529519 1.51473 -1.61876 -0.529519 1.51473 -1.63593 -0.525855 1.51473 -1.62243 -0.522519 1.51473 -1.61818 -0.522519 1.51473 -1.63593 -0.522519 1.51473 -1.64418 -0.529519 1.51473 -1.64876 -0.529519 1.51473 -1.65018 -0.535519 1.51473 -1.65018 -0.540105 1.51473 -1.65018 -0.570105 1.51473 -1.60818 -0.530933 1.51473 -1.64918 -0.548004 1.51473 -1.64889 -0.547297 1.51473 -1.64918 -0.547586 1.21473 -1.64909 -0.547628 1.31453 -1.64909 -0.547628 1.29595 -1.64909 -0.547628 1.30617 -1.64892 -0.553709 1.21473 -1.64918 -0.553034 1.21473 -1.6434 -0.559226 1.21473 -1.64918 -0.553455 1.51473 -1.64269 -0.559519 1.51473 -1.64269 -0.559519 1.21473 -1.63905 -0.560129 1.51437 -1.6391 -0.56031 1.21499 -1.63818 -0.563277 1.51473 -1.63789 -0.564741 1.51473 -1.63818 -0.562519 1.21473 -1.63169 -0.570519 1.21473 -1.63514 -0.567484 1.21473 -1.63211 -0.570518 1.51473 -1.62666 -0.570519 1.51473 -1.62596 -0.570226 1.51473 -1.62005 -0.561886 1.21475 -1.62047 -0.564741 1.51473 -1.62047 -0.564741 1.21473 -1.61831 -0.559731 1.51473 -1.61996 -0.562117 1.51472 -1.61566 -0.559519 1.51473 -1.61496 -0.559226 1.21473 -1.61496 -0.559226 1.51473 -1.60918 -0.547586 1.51473 -1.60936 -0.553628 1.51473 -1.60918 -0.553452 1.21473 -1.60944 -0.547329 1.21473 -1.61496 -0.541812 1.51473 -1.61496 -0.541812 1.21473 -1.61642 -0.541519 1.21473 -1.61994 -0.53978 1.51472 -1.61742 -0.541384 1.51473 -1.61889 -0.541023 1.21483 -1.62047 -0.536297 1.21473 -1.62047 -0.536297 1.51473 -1.62625 -0.53052 1.51473 -1.62666 -0.530519 1.21473 -1.62596 -0.530812 1.21473 -1.6324 -0.530812 1.51473 -1.63211 -0.530519 1.21473 -1.63789 -0.536297 1.51473 -1.63789 -0.536297 1.21473 -1.63873 -0.540343 1.21493 -1.63889 -0.540704 1.51463 -1.63818 -0.537762 1.51473 -1.64062 -0.54141 1.21473 -1.61394 -0.539031 1.21473 -1.6169 -0.537704 1.51474 -1.61256 -0.532424 1.51473 -1.61527 -0.532201 1.5147 -1.6176 -0.534767 1.51462 -1.61074 -0.535532 1.51473 -1.61394 -0.538966 1.51471 -1.61418 -0.532184 1.2702 -1.61122 -0.533755 1.21486 -1.61154 -0.537778 1.51466 -1.6164 -0.532775 1.21483 -1.6173 -0.537139 1.21478 -1.61115 -0.537393 1.21476 -1.64701 -0.56352 1.51467 -1.64379 -0.562001 1.51473 -1.64655 -0.567968 1.21477 -1.64418 -0.568955 1.5147 -1.64131 -0.567653 1.51466 -1.64753 -0.566764 1.51465 -1.64481 -0.562109 1.21493 -1.64087 -0.564264 1.51464 -1.64771 -0.564735 1.2148 -1.64335 -0.569087 1.21463 -1.64204 -0.562735 1.21515 -1.64046 -0.565654 1.21489 -1.61119 -0.563438 1.51467 -1.61587 -0.562455 1.51458 -1.61107 -0.567135 1.21494 -1.61222 -0.568654 1.51457 -1.61604 -0.568468 1.51463 -1.61767 -0.565895 1.51462 -1.61105 -0.564005 1.21498 -1.61712 -0.563579 1.21475 -1.61628 -0.56849 1.21476 -1.61357 -0.562082 1.21478 -1.64071 -0.536561 1.21474 -1.64554 -0.532254 1.51479 -1.64062 -0.534244 1.51475 -1.64328 -0.538872 1.51464 -1.64625 -0.538313 1.51461 -1.64742 -0.534263 1.5146 -1.64116 -0.53691 1.33895 -1.64191 -0.533396 1.3911 -1.64769 -0.536348 1.21509 -1.64221 -0.532526 1.21488 -1.64587 -0.532424 1.215 -1.64406 -0.538972 1.2148 -1.64918 -0.520519 1.1818 -1.64193 -0.520519 1.17573 -1.6434 -0.220519 1.17603 -1.65718 -0.520519 1.19573 -1.65718 -0.520519 1.17373 -1.65718 -0.520519 1.19148 -1.65018 -0.520519 1.16973 -1.65018 -0.520519 1.16515 -1.65718 -0.520519 1.16148 -1.64818 -0.520519 1.15673 -1.64876 -0.520519 1.16373 -1.63959 -0.520519 1.16373 -1.63593 -0.520519 1.16007 -1.62243 -0.520519 1.16007 -1.61876 -0.520519 1.16373 -1.62243 -0.520519 1.15673 -1.63593 -0.520519 1.15673 -1.61818 -0.520519 1.15473 -1.60818 -0.520519 1.16515 -1.60818 -0.520519 1.16973 -1.60593 -0.520519 1.16007 -1.59918 -0.520519 1.16573 -1.60118 -0.520519 1.16573 -1.61018 -0.520519 1.15673 -1.60593 -0.520519 1.15673 -1.60451 -0.520519 1.17798 -1.60451 -0.520519 1.19148 -1.60118 -0.520519 1.19573 -1.60118 -0.520519 1.17798 -1.60818 -0.520519 1.19973 -1.60959 -0.520519 1.20573 -1.60818 -0.520519 1.20432 -1.60451 -0.520519 1.20798 -1.60593 -0.520519 1.2094 -1.60118 -0.520519 1.20798 -1.61418 -0.520519 1.20573 -1.61876 -0.520519 1.20573 -1.63959 -0.520519 1.20573 -1.63593 -0.520519 1.2094 -1.63593 -0.520519 1.21273 -1.62243 -0.520519 1.21273 -1.64018 -0.520519 1.21273 -1.64876 -0.520519 1.20573 -1.65018 -0.520519 1.20432 -1.65018 -0.520519 1.19973 -1.65018 -0.520519 1.19515 -1.65243 -0.520519 1.21273 -1.63818 -0.520519 1.19749 -1.60959 -0.520519 1.16373 -1.65384 -0.520519 1.17798 -1.65718 -0.220519 1.19573 -1.65384 -0.520519 1.19148 -1.65718 -0.220519 1.20798 -1.65384 -0.520519 1.20798 -1.65718 -0.520519 1.20798 -1.65718 -0.220519 1.20373 -1.65718 -0.520519 1.20373 -1.65918 -0.220519 1.20373 -1.65918 -0.220519 1.21273 -1.65805 -0.22052 1.21473 -1.6583 -0.520521 1.21473 -1.64818 -0.220519 1.21473 -1.64818 -0.220519 1.21273 -1.64818 -0.520519 1.21273 -1.65243 -0.220519 1.21273 -1.65243 -0.520519 1.2094 -1.64876 -0.220519 1.20573 -1.64418 -0.520519 1.20573 -1.64018 -0.220519 1.21273 -1.64018 -0.520519 1.21473 -1.61818 -0.520519 1.21273 -1.62243 -0.220519 1.2094 -1.62243 -0.520519 1.2094 -1.61876 -0.220519 1.20573 -1.61418 -0.220519 1.20573 -1.60593 -0.520519 1.21273 -1.61018 -0.520519 1.21273 -1.61018 -0.220519 1.21473 -1.61018 -0.520519 1.21473 -1.59918 -0.520519 1.20373 -1.60118 -0.520519 1.20373 -1.60118 -0.220519 1.20798 -1.60818 -0.520519 1.19515 -1.60118 -0.520519 1.19148 -1.60118 -0.220519 1.19573 -1.59918 -0.520519 1.19573 -1.59918 -0.220519 1.19573 -1.59918 -0.220519 1.17373 -1.59918 -0.520519 1.17373 -1.60118 -0.220519 1.17373 -1.60118 -0.520519 1.17373 -1.60818 -0.520519 1.17432 -1.60451 -0.220519 1.16148 -1.60451 -0.520519 1.16148 -1.60118 -0.220519 1.16148 -1.60118 -0.520519 1.16148 -1.60118 -0.220519 1.16573 -1.59918 -0.220519 1.15673 -1.60118 -0.220519 1.15473 -1.60118 -0.520519 1.15473 -1.6001 -0.497317 1.15507 -1.59972 -0.225122 1.15546 -1.59918 -0.520519 1.15673 -1.61018 -0.520519 1.15473 -1.61018 -0.220519 1.15673 -1.61418 -0.520519 1.16373 -1.61876 -0.220519 1.16373 -1.61818 -0.220519 1.15473 -1.61818 -0.520519 1.15673 -1.64018 -0.220519 1.15673 -1.64018 -0.520519 1.15473 -1.64018 -0.520519 1.15673 -1.64418 -0.520519 1.16373 -1.65243 -0.220519 1.16007 -1.65243 -0.520519 1.16007 -1.65243 -0.520519 1.15673 -1.64818 -0.220519 1.15473 -1.65718 -0.220519 1.15473 -1.65877 -0.520577 1.15544 -1.65918 -0.520519 1.15673 -1.64818 -0.520519 1.15473 -1.65918 -0.520519 1.16573 -1.65918 -0.220519 1.16573 -1.65718 -0.220519 1.16573 -1.65718 -0.520519 1.16573 -1.65384 -0.520519 1.16148 -1.65018 -0.220519 1.16515 -1.65018 -0.520519 1.17432 -1.65718 -0.220519 1.17798 -1.65718 -0.220519 1.17373 -1.65718 -0.520519 1.17798 -1.65918 -0.220519 1.17373 -1.65918 -0.220519 1.19573 -1.65718 -0.220519 1.19148 -1.65018 -0.220519 1.19515 -1.65018 -0.220519 1.19973 -1.65384 -0.220519 1.20798 -1.65243 -0.220519 1.2094 -1.64418 -0.220519 1.20573 -1.63959 -0.220519 1.20573 -1.63593 -0.220519 1.2094 -1.62243 -0.220519 1.21273 -1.63593 -0.220519 1.21273 -1.61818 -0.220519 1.21273 -1.61305 -0.220536 1.20319 -1.60451 -0.220519 1.20798 -1.60818 -0.220519 1.20432 -1.60818 -0.220519 1.19973 -1.60593 -0.220519 1.2094 -1.59918 -0.220519 1.20373 -1.60118 -0.220519 1.20373 -1.61018 -0.220519 1.21273 -1.60593 -0.220519 1.21273 -1.59946 -0.220519 1.21392 -1.60818 -0.220519 1.19515 -1.60451 -0.220519 1.19148 -1.60451 -0.220519 1.17798 -1.60118 -0.220519 1.19148 -1.60118 -0.220519 1.17798 -1.60818 -0.220519 1.16973 -1.60818 -0.220519 1.16515 -1.60593 -0.220519 1.16007 -1.59918 -0.220519 1.16573 -1.60593 -0.220519 1.15673 -1.61018 -0.220519 1.15473 -1.60959 -0.220519 1.16373 -1.61418 -0.220519 1.16373 -1.62243 -0.220519 1.16007 -1.62626 -0.220519 1.16473 -1.63593 -0.220519 1.16007 -1.6324 -0.220519 1.16503 -1.63789 -0.220519 1.17051 -1.64018 -0.220519 1.15473 -1.62243 -0.220519 1.15673 -1.61818 -0.220519 1.15673 -1.63593 -0.220519 1.15673 -1.63959 -0.220519 1.16373 -1.64418 -0.220519 1.16373 -1.65384 -0.220519 1.16148 -1.64876 -0.220519 1.16373 -1.65018 -0.220519 1.16973 -1.65018 -0.220519 1.17432 -1.65243 -0.220519 1.15673 -1.65718 -0.220519 1.16148 -1.64818 -0.220519 1.15673 -1.65918 -0.220519 1.15673 -1.65384 -0.220519 1.17798 -1.60959 -0.220519 1.20573 -1.65018 -0.220519 1.20432 -1.60818 -0.220519 1.17432 -1.64918 -0.220519 1.18766 -1.64895 -0.220519 1.18157 -1.65384 -0.220519 1.19148 -1.64902 -0.520519 1.18782 -1.64329 -0.220519 1.19355 -1.6434 -0.520519 1.19344 -1.64091 -0.220528 1.19386 -1.64118 -0.520519 1.19373 -1.63818 -0.220519 1.19825 -1.63924 -0.520414 1.19436 -1.63846 -0.220512 1.19539 -1.63789 -0.220519 1.19895 -1.63789 -0.520519 1.19895 -1.63215 -0.423044 1.20462 -1.63215 -0.409108 1.20462 -1.63169 -0.520519 1.20473 -1.6324 -0.520519 1.20444 -1.63215 -0.437908 1.20462 -1.63211 -0.220519 1.20473 -1.62596 -0.220519 1.20444 -1.62625 -0.520519 1.20473 -1.62047 -0.520519 1.19895 -1.62047 -0.220519 1.19895 -1.61566 -0.220519 1.19373 -1.62005 -0.220527 1.19647 -1.62021 -0.520519 1.19844 -1.61935 -0.52047 1.19441 -1.61855 -0.220799 1.19403 -1.61642 -0.520519 1.19373 -1.61496 -0.520519 1.19344 -1.61496 -0.220519 1.19344 -1.60918 -0.220518 1.1818 -1.60947 -0.220519 1.18795 -1.60918 -0.520519 1.18766 -1.60944 -0.520519 1.18154 -1.61496 -0.520519 1.17603 -1.61642 -0.220519 1.17573 -1.61566 -0.520519 1.17573 -1.61952 -0.221035 1.17479 -1.6194 -0.520503 1.17508 -1.62022 -0.300414 1.17092 -1.62022 -0.282995 1.17092 -1.62022 -0.312491 1.17092 -1.62047 -0.220519 1.17051 -1.62018 -0.220519 1.17273 -1.62666 -0.520519 1.16473 -1.62035 -0.520519 1.17063 -1.6321 -0.520519 1.16473 -1.63169 -0.220519 1.16473 -1.63789 -0.520519 1.17051 -1.63818 -0.220519 1.17197 -1.641 -0.220531 1.17563 -1.63921 -0.520191 1.17508 -1.63884 -0.221539 1.17456 -1.61493 -0.22057 1.16632 -1.6152 -0.220739 1.17295 -1.6123 -0.220519 1.16683 -1.61728 -0.220508 1.16818 -1.61068 -0.220512 1.16914 -1.61744 -0.220527 1.17088 -1.61195 -0.220523 1.17241 -1.61633 -0.520366 1.17247 -1.61134 -0.392394 1.17145 -1.61762 -0.520473 1.16963 -1.61662 -0.520508 1.1673 -1.61375 -0.520318 1.1663 -1.6107 -0.520612 1.16859 -1.61296 -0.520139 1.17303 -1.64767 -0.220597 1.20003 -1.64112 -0.220744 1.19796 -1.64445 -0.220618 1.19611 -1.64107 -0.221066 1.20138 -1.64491 -0.220646 1.20326 -1.64718 -0.52032 1.19791 -1.64317 -0.520211 1.19644 -1.64765 -0.520474 1.20066 -1.64335 -0.520469 1.2032 -1.64059 -0.520428 1.19967 -1.61774 -0.220568 1.19896 -1.61315 -0.220663 1.19624 -1.6106 -0.220606 1.19993 -1.61748 -0.520453 1.20073 -1.61325 -0.52013 1.19631 -1.61409 -0.387121 1.20299 -1.61627 -0.220604 1.20239 -1.61698 -0.520402 1.19755 -1.61089 -0.5204 1.19853 -1.6111 -0.52028 1.20129 -1.61506 -0.520506 1.20328 -1.64071 -0.520486 1.17114 -1.64407 -0.520455 1.16623 -1.64583 -0.220719 1.16665 -1.64151 -0.220611 1.16736 -1.64112 -0.220491 1.17138 -1.6476 -0.220543 1.17056 -1.64421 -0.220566 1.17326 -1.64165 -0.52045 1.16734 -1.64692 -0.52045 1.17195 -1.64698 -0.520453 1.16754 -1.64418 -0.520449 1.17314 -0.5934 -0.121812 1.04973 -0.5934 -0.121812 1.67973 -0.592924 -0.121571 1.36377 -0.609179 -0.119519 1.04973 -0.603843 -0.137269 1.04973 -0.603843 -0.123769 1.04973 -0.600179 -0.120105 1.04973 -0.600179 -0.114999 1.04973 -0.598764 -0.109519 1.04973 -0.594698 -0.109519 1.04973 -0.594179 -0.109819 1.04973 -0.585929 -0.105855 1.04973 -0.572429 -0.105855 1.04973 -0.572429 -0.102519 1.04973 -0.585929 -0.102519 1.04973 -0.563659 -0.109519 1.04973 -0.564179 -0.109819 1.04973 -0.554514 -0.107269 1.04973 -0.559593 -0.109519 1.04973 -0.558179 -0.114999 1.04973 -0.558479 -0.115519 1.04973 -0.558179 -0.116039 1.04973 -0.555929 -0.105855 1.04973 -0.555929 -0.102519 1.04973 -0.560179 -0.100519 1.04973 -0.554514 -0.137269 1.04973 -0.554514 -0.123769 1.04973 -0.551179 -0.137269 1.04973 -0.558179 -0.150105 1.04973 -0.558179 -0.146039 1.04973 -0.559593 -0.151519 1.04973 -0.554514 -0.153769 1.04973 -0.555929 -0.155183 1.04973 -0.555929 -0.158519 1.04973 -0.560179 -0.158519 1.04973 -0.564179 -0.151219 1.04973 -0.568764 -0.151519 1.04973 -0.585929 -0.155183 1.04973 -0.585929 -0.158519 1.04973 -0.572429 -0.158519 1.04973 -0.568179 -0.158519 1.04973 -0.590179 -0.158519 1.04973 -0.593659 -0.151519 1.04973 -0.589593 -0.151519 1.04973 -0.594698 -0.151519 1.04973 -0.600179 -0.150105 1.04973 -0.600179 -0.146039 1.04973 -0.599879 -0.145519 1.04973 -0.600179 -0.140933 1.04973 -0.607179 -0.153769 1.04973 -0.598179 -0.158519 1.04973 -0.602429 -0.158519 1.04973 -0.600179 -0.110933 1.04973 -0.566422 -0.139519 1.04973 -0.598764 -0.151519 1.04973 -0.591936 -0.139519 1.04973 -0.566422 -0.121519 1.04973 -0.609179 -0.141519 1.04973 -0.607179 -0.141519 1.67973 -0.607179 -0.137269 1.67973 -0.607179 -0.141519 1.04973 -0.607179 -0.137269 1.04973 -0.603843 -0.137269 1.67973 -0.600179 -0.144999 1.67973 -0.600179 -0.144999 1.04973 -0.599879 -0.145519 1.67973 -0.600179 -0.150105 1.67973 -0.603843 -0.153769 1.67973 -0.603843 -0.153769 1.04973 -0.607179 -0.153769 1.67973 -0.607179 -0.149519 1.04973 -0.609179 -0.149519 1.67973 -0.609179 -0.149519 1.04973 -0.609179 -0.158519 1.67973 -0.608032 -0.160281 1.32609 -0.609179 -0.158519 1.04973 -0.608494 -0.159875 1.67973 -0.607179 -0.160519 1.04973 -0.609007 -0.159288 1.42542 -0.608592 -0.159839 1.04978 -0.598179 -0.160519 1.04973 -0.598179 -0.158519 1.67973 -0.602429 -0.155183 1.04973 -0.594179 -0.151219 1.04973 -0.589593 -0.151519 1.67973 -0.568179 -0.160519 1.04973 -0.568179 -0.158519 1.67973 -0.572429 -0.158519 1.67973 -0.572429 -0.155183 1.04973 -0.572429 -0.155183 1.67973 -0.564698 -0.151519 1.04973 -0.563659 -0.151519 1.04973 -0.559593 -0.151519 1.67973 -0.555929 -0.155183 1.67973 -0.555929 -0.158519 1.67973 -0.560179 -0.158519 1.67973 -0.560179 -0.160519 1.67973 -0.560179 -0.160519 1.04973 -0.550229 -0.160318 1.6797 -0.549734 -0.159763 1.07287 -0.550497 -0.160391 1.43065 -0.551179 -0.160519 1.67973 -0.551179 -0.160519 1.04973 -0.549179 -0.149519 1.04973 -0.551179 -0.149519 1.67973 -0.551179 -0.153769 1.67973 -0.551179 -0.149519 1.04973 -0.551179 -0.153769 1.04973 -0.558179 -0.146039 1.67973 -0.558479 -0.145519 1.67973 -0.558479 -0.145519 1.04973 -0.558179 -0.144999 1.04973 -0.558179 -0.140933 1.04973 -0.551179 -0.141519 1.67973 -0.551179 -0.141519 1.04973 -0.549179 -0.141519 1.67973 -0.549179 -0.119519 1.04973 -0.551179 -0.119519 1.67973 -0.551179 -0.119519 1.04973 -0.551179 -0.123769 1.67973 -0.551179 -0.123769 1.04973 -0.558179 -0.120105 1.04973 -0.558479 -0.115519 1.67973 -0.558179 -0.114999 1.67973 -0.558179 -0.110933 1.04973 -0.554514 -0.107269 1.67973 -0.551179 -0.107269 1.67973 -0.551179 -0.107269 1.04973 -0.551179 -0.111519 1.04973 -0.549179 -0.102519 1.67973 -0.551179 -0.100519 1.04973 -0.549179 -0.102519 1.04973 -0.551179 -0.100519 1.67973 -0.549307 -0.101838 1.34886 -0.549982 -0.100809 1.04973 -0.560179 -0.102519 1.04973 -0.555929 -0.102519 1.67973 -0.564179 -0.109819 1.67973 -0.564698 -0.109519 1.04973 -0.568764 -0.109519 1.04973 -0.568179 -0.102519 1.04973 -0.568179 -0.100519 1.04973 -0.590179 -0.100519 1.67973 -0.590179 -0.102519 1.04973 -0.589593 -0.109519 1.04973 -0.594179 -0.109819 1.67973 -0.593659 -0.109519 1.04973 -0.602429 -0.105855 1.67973 -0.602429 -0.105855 1.04973 -0.602429 -0.102519 1.04973 -0.598179 -0.102519 1.04973 -0.608531 -0.10119 1.04973 -0.609021 -0.10178 1.33724 -0.609179 -0.102519 1.04973 -0.608107 -0.100817 1.40637 -0.609179 -0.111519 1.67973 -0.609179 -0.111519 1.04973 -0.607179 -0.111519 1.04973 -0.607179 -0.107269 1.67973 -0.607179 -0.107269 1.04973 -0.603843 -0.107269 1.04973 -0.600179 -0.110933 1.67973 -0.599879 -0.115519 1.04973 -0.600179 -0.116039 1.04973 -0.600179 -0.116039 1.67973 -0.607179 -0.123769 1.04973 -0.607179 -0.119519 1.67973 -0.607179 -0.119519 1.04973 -0.609179 -0.119519 1.67973 -0.609179 -0.141519 1.67973 -0.607179 -0.123769 1.67973 -0.600179 -0.146039 1.67973 -0.598764 -0.151519 1.67973 -0.602429 -0.155183 1.67973 -0.607179 -0.149519 1.67973 -0.602429 -0.158519 1.67973 -0.594698 -0.151519 1.67973 -0.594179 -0.151219 1.67973 -0.593659 -0.151519 1.67973 -0.585929 -0.155183 1.67973 -0.568764 -0.151519 1.67973 -0.585929 -0.158519 1.67973 -0.590179 -0.158519 1.67973 -0.568179 -0.160519 1.67973 -0.564698 -0.151519 1.67973 -0.564179 -0.151219 1.67973 -0.563659 -0.151519 1.67973 -0.558179 -0.150105 1.67973 -0.558179 -0.144999 1.67973 -0.558179 -0.140933 1.67973 -0.554514 -0.153769 1.67973 -0.554514 -0.137269 1.67973 -0.554514 -0.123769 1.67973 -0.551179 -0.137269 1.67973 -0.558179 -0.116039 1.67973 -0.559593 -0.109519 1.67973 -0.558179 -0.110933 1.67973 -0.555929 -0.105855 1.67973 -0.551179 -0.111519 1.67973 -0.549179 -0.111519 1.67973 -0.549984 -0.100825 1.67948 -0.560179 -0.102519 1.67973 -0.563659 -0.109519 1.67973 -0.564698 -0.109519 1.67973 -0.568764 -0.109519 1.67973 -0.572429 -0.105855 1.67973 -0.576664 -0.110519 1.67973 -0.585929 -0.105855 1.67973 -0.585929 -0.102519 1.67973 -0.572429 -0.102519 1.67973 -0.568179 -0.102519 1.67973 -0.590179 -0.102519 1.67973 -0.593659 -0.109519 1.67973 -0.589593 -0.109519 1.67973 -0.594698 -0.109519 1.67973 -0.603843 -0.107269 1.67973 -0.598764 -0.109519 1.67973 -0.600179 -0.114999 1.67973 -0.599879 -0.115519 1.67973 -0.600179 -0.120105 1.67973 -0.609179 -0.102519 1.67973 -0.607179 -0.111519 1.67973 -0.598179 -0.102519 1.67973 -0.602429 -0.102519 1.67973 -0.607179 -0.100519 1.67973 -0.608491 -0.100913 1.67948 -0.603843 -0.123769 1.67973 -0.587886 -0.116297 1.67973 -0.600179 -0.140933 1.67973 -0.591936 -0.139519 1.67973 -0.558179 -0.120105 1.67973 -0.599179 -0.128004 1.67973 -0.598886 -0.127297 1.67973 -0.599075 -0.127586 1.3661 -0.599179 -0.128004 1.04973 -0.598886 -0.127297 1.04973 -0.598886 -0.133741 1.67973 -0.599179 -0.133034 1.67973 -0.599179 -0.133034 1.04973 -0.598886 -0.133741 1.04973 -0.5934 -0.139226 1.04973 -0.5934 -0.139226 1.67973 -0.593112 -0.139416 1.3661 -0.589088 -0.140345 1.67958 -0.590536 -0.13962 1.33824 -0.589196 -0.140399 1.35542 -0.588326 -0.141687 1.41633 -0.588987 -0.140389 1.05073 -0.588179 -0.143276 1.67973 -0.588179 -0.143276 1.04973 -0.587886 -0.144741 1.04973 -0.587886 -0.144741 1.67973 -0.588127 -0.144265 1.36377 -0.582401 -0.150226 1.04973 -0.582401 -0.150226 1.67973 -0.582112 -0.150416 1.3661 -0.581693 -0.150519 1.67973 -0.581693 -0.150519 1.04973 -0.576664 -0.150519 1.67973 -0.575957 -0.150226 1.67973 -0.575957 -0.150226 1.04973 -0.576664 -0.150519 1.04973 -0.570472 -0.144741 1.67973 -0.570179 -0.144034 1.04973 -0.570472 -0.144741 1.04973 -0.570282 -0.144452 1.3661 -0.570179 -0.143276 1.67973 -0.569339 -0.14035 1.04979 -0.569303 -0.140339 1.67956 -0.570032 -0.141687 1.38405 -0.56782 -0.13962 1.39932 -0.570179 -0.142519 1.04973 -0.568926 -0.140209 1.32818 -0.566422 -0.139519 1.67973 -0.564957 -0.139226 1.04973 -0.564957 -0.139226 1.67973 -0.565303 -0.13944 1.3654 -0.559179 -0.133034 1.67973 -0.559472 -0.133741 1.67973 -0.559179 -0.133034 1.04973 -0.559472 -0.133741 1.04973 -0.559282 -0.133452 1.3661 -0.559472 -0.127297 1.04973 -0.559179 -0.128004 1.67973 -0.559472 -0.127297 1.67973 -0.559179 -0.128004 1.04973 -0.564957 -0.121812 1.04973 -0.565664 -0.121519 1.67973 -0.564957 -0.121812 1.67973 -0.567179 -0.121519 1.67973 -0.570179 -0.117762 1.04973 -0.570179 -0.117762 1.67973 -0.570032 -0.119351 1.29834 -0.569257 -0.120848 1.04982 -0.56782 -0.121418 1.41043 -0.568784 -0.120926 1.22997 -0.56955 -0.120451 1.67904 -0.570231 -0.116774 1.36377 -0.570472 -0.116297 1.67973 -0.570472 -0.116297 1.04973 -0.576275 -0.110609 1.36493 -0.575957 -0.110812 1.04973 -0.575957 -0.110812 1.67973 -0.576664 -0.110519 1.04973 -0.582401 -0.110812 1.04973 -0.581693 -0.110519 1.67973 -0.582401 -0.110812 1.67973 -0.581693 -0.110519 1.04973 -0.587886 -0.116297 1.04973 -0.588179 -0.117004 1.04973 -0.588076 -0.116586 1.3661 -0.588179 -0.117762 1.67973 -0.589125 -0.120792 1.0502 -0.588179 -0.118519 1.04973 -0.588371 -0.119541 1.34379 -0.591936 -0.121519 1.04973 -0.589056 -0.120595 1.3969 -0.58893 -0.120735 1.67963 -0.591936 -0.121519 1.67973 -0.590346 -0.121373 1.42605 -0.562876 -0.118818 1.04963 -0.567213 -0.117208 1.67943 -0.563794 -0.112116 1.67973 -0.56606 -0.112562 1.67973 -0.561057 -0.11718 1.67973 -0.561259 -0.113506 1.67972 -0.567479 -0.114441 1.67971 -0.561342 -0.113711 1.37733 -0.565149 -0.118992 1.67962 -0.561698 -0.117793 1.51593 -0.564617 -0.112183 1.41454 -0.563035 -0.112371 1.43324 -0.565588 -0.112495 1.1773 -0.560823 -0.115048 1.40843 -0.563588 -0.118867 1.51593 -0.566652 -0.117766 1.30626 -0.567502 -0.11581 1.29494 -0.567163 -0.113966 1.35528 -0.561765 -0.113003 1.04977 -0.564908 -0.118796 1.30508 -0.566448 -0.118275 1.04983 -0.564249 -0.112118 1.04973 -0.567656 -0.114163 1.04972 -0.560696 -0.115993 1.0497 -0.561167 -0.116946 1.20015 -0.59551 -0.148712 1.67972 -0.59555 -0.14235 1.04979 -0.592513 -0.142447 1.67967 -0.590745 -0.145596 1.67963 -0.590856 -0.14581 1.40883 -0.596415 -0.142898 1.67973 -0.591341 -0.14371 1.47183 -0.592724 -0.148621 1.67972 -0.594031 -0.14888 1.54113 -0.597739 -0.145767 1.6797 -0.592333 -0.148388 1.04974 -0.594617 -0.142183 1.61673 -0.593474 -0.142308 1.18951 -0.597201 -0.146929 1.35528 -0.596122 -0.148293 1.34327 -0.594248 -0.148835 1.18833 -0.597389 -0.144394 1.04974 -0.591369 -0.143214 1.04982 -0.591191 -0.147179 1.04973 -0.593763 -0.148905 1.04974 -0.597163 -0.147264 1.04974 -0.561328 -0.147593 1.04972 -0.560941 -0.144234 1.67975 -0.567643 -0.146367 1.67973 -0.562376 -0.148546 1.67975 -0.567483 -0.14603 1.46691 -0.566506 -0.142768 1.67973 -0.566537 -0.147877 1.42045 -0.565059 -0.148753 1.67972 -0.561342 -0.14371 1.45923 -0.561278 -0.147177 1.29858 -0.563255 -0.142193 1.67969 -0.565588 -0.142496 1.34071 -0.560868 -0.145745 1.5053 -0.567111 -0.143914 1.37792 -0.563588 -0.148867 1.18833 -0.564398 -0.142151 1.14128 -0.562268 -0.142627 1.04972 -0.565969 -0.142601 1.0499 -0.565732 -0.148504 1.15368 -0.56237 -0.148356 1.28913 -0.567389 -0.144394 1.04974 -0.563936 -0.148978 1.04974 -0.567182 -0.147129 1.04982 -0.560851 -0.144578 1.04974 -0.597514 -0.114713 1.67968 -0.596205 -0.112689 1.67953 -0.592418 -0.112529 1.6798 -0.597391 -0.116704 1.67968 -0.593956 -0.119184 1.67971 -0.596641 -0.117774 1.52105 -0.59087 -0.114662 1.67969 -0.593168 -0.118728 1.51593 -0.594908 -0.118804 1.49388 -0.590888 -0.116162 1.67958 -0.597063 -0.113789 1.30823 -0.592902 -0.112433 1.25034 -0.594179 -0.112119 1.51593 -0.595103 -0.112339 1.2848 -0.596537 -0.117878 1.14876 -0.597472 -0.11551 1.24385 -0.591341 -0.113711 1.17908 -0.592728 -0.11227 1.0497 -0.591993 -0.118124 1.51593 -0.597671 -0.116335 1.04975 -0.59642 -0.112877 1.04973 -0.590752 -0.115844 1.04989 -0.592791 -0.118706 1.04971 -0.594992 -0.118847 1.04973 0.0970756 0.148429 1.36377 0.0965996 0.148188 1.67973 0.0965996 0.148188 1.04973 0.0808214 0.128481 1.04973 0.0828214 0.132731 1.04973 0.0828214 0.150481 1.04973 0.0861572 0.132731 1.04973 0.0898214 0.153961 1.04973 0.0901214 0.154481 1.04973 0.0898214 0.159067 1.04973 0.0861572 0.162731 1.04973 0.0875714 0.164145 1.04973 0.0875714 0.167481 1.04973 0.0912356 0.160481 1.04973 0.100407 0.160481 1.04973 0.117571 0.164145 1.04973 0.104071 0.167481 1.04973 0.0998214 0.167481 1.04973 0.121821 0.167481 1.04973 0.125302 0.160481 1.04973 0.125821 0.160181 1.04973 0.126341 0.160481 1.04973 0.135486 0.162731 1.04973 0.131821 0.159067 1.04973 0.131821 0.155001 1.04973 0.131821 0.153961 1.04973 0.131821 0.149895 1.04973 0.134071 0.164145 1.04973 0.140821 0.158481 1.04973 0.138821 0.158481 1.04973 0.134071 0.167481 1.04973 0.135486 0.146231 1.04973 0.131821 0.129067 1.04973 0.138821 0.132731 1.04973 0.131521 0.124481 1.04973 0.131821 0.119895 1.04973 0.135486 0.116231 1.04973 0.130407 0.118481 1.04973 0.138821 0.116231 1.04973 0.140821 0.120481 1.04973 0.134071 0.111481 1.04973 0.125302 0.118481 1.04973 0.122283 0.124134 1.04973 0.121236 0.118481 1.04973 0.117571 0.114817 1.04973 0.104071 0.114817 1.04973 0.117571 0.111481 1.04973 0.121821 0.109481 1.04973 0.104071 0.111481 1.04973 0.096341 0.118481 1.04973 0.0958214 0.118781 1.04973 0.0953018 0.118481 1.04973 0.0861572 0.116231 1.04973 0.0912356 0.118481 1.04973 0.0898214 0.119895 1.04973 0.0898214 0.123961 1.04973 0.0875714 0.114817 1.04973 0.0918214 0.109481 1.04973 0.0898214 0.149895 1.04973 0.10092 0.149256 1.0498 0.119821 0.125966 1.04973 0.130407 0.160481 1.04973 0.0828214 0.128481 1.67973 0.0828214 0.128481 1.04973 0.0898214 0.129067 1.04973 0.0898214 0.125001 1.04973 0.0901214 0.124481 1.04973 0.0898214 0.123961 1.67973 0.0828214 0.116231 1.67973 0.0828214 0.116231 1.04973 0.0828214 0.120481 1.67973 0.0808214 0.120481 1.67973 0.0828214 0.120481 1.04973 0.0808214 0.120481 1.04973 0.0828214 0.109481 1.67973 0.081441 0.109956 1.67949 0.0808214 0.111481 1.67973 0.0808214 0.111481 1.04973 0.0828214 0.109481 1.04973 0.0816345 0.10979 1.04971 0.0918214 0.109481 1.67973 0.0918214 0.111481 1.67973 0.0875714 0.111481 1.67973 0.0918214 0.111481 1.04973 0.0875714 0.114817 1.67973 0.0875714 0.111481 1.04973 0.0953018 0.118481 1.67973 0.100407 0.118481 1.04973 0.104071 0.111481 1.67973 0.0998214 0.111481 1.04973 0.0998214 0.111481 1.67973 0.0998214 0.109481 1.04973 0.117571 0.111481 1.67973 0.121821 0.111481 1.04973 0.117571 0.114817 1.67973 0.125821 0.118781 1.67973 0.125821 0.118781 1.04973 0.126341 0.118481 1.04973 0.134071 0.114817 1.04973 0.129821 0.111481 1.04973 0.129821 0.109481 1.67973 0.129821 0.109481 1.04973 0.138821 0.109481 1.04973 0.140821 0.111481 1.04973 0.139772 0.109682 1.6797 0.140669 0.110621 1.04973 0.140471 0.110454 1.58336 0.140821 0.111481 1.67973 0.139549 0.109599 1.04975 0.138821 0.109481 1.67973 0.138821 0.120481 1.04973 0.135486 0.116231 1.67973 0.131821 0.123961 1.67973 0.131821 0.123961 1.04973 0.131821 0.125001 1.67973 0.131821 0.125001 1.04973 0.135486 0.132731 1.04973 0.138821 0.128481 1.67973 0.138821 0.128481 1.04973 0.140821 0.128481 1.04973 0.140821 0.150481 1.04973 0.138821 0.150481 1.67973 0.138821 0.150481 1.04973 0.138821 0.146231 1.04973 0.131521 0.154481 1.04973 0.131821 0.159067 1.67973 0.135486 0.162731 1.67973 0.138821 0.162731 1.67973 0.138821 0.162731 1.04973 0.138821 0.158481 1.67973 0.140821 0.167481 1.04973 0.140821 0.167481 1.67973 0.139503 0.169354 1.30425 0.129821 0.169481 1.67973 0.129821 0.167481 1.04973 0.129821 0.167481 1.67973 0.130407 0.160481 1.67973 0.126341 0.160481 1.67973 0.125302 0.160481 1.67973 0.121236 0.160481 1.67973 0.121236 0.160481 1.04973 0.117571 0.167481 1.67973 0.117571 0.167481 1.04973 0.121821 0.167481 1.67973 0.0998214 0.169481 1.67973 0.0998214 0.167481 1.67973 0.104071 0.167481 1.67973 0.104071 0.164145 1.67973 0.104071 0.164145 1.04973 0.096341 0.160481 1.04973 0.0958214 0.160181 1.04973 0.0953018 0.160481 1.67973 0.0953018 0.160481 1.04973 0.0912356 0.160481 1.67973 0.0875714 0.167481 1.67973 0.0918214 0.167481 1.67973 0.0918214 0.167481 1.04973 0.0825676 0.169481 1.04973 0.0814131 0.168792 1.67968 0.0812723 0.16855 1.06026 0.0808214 0.167481 1.67973 0.081228 0.168533 1.38162 0.0808214 0.167481 1.04973 0.0808214 0.158481 1.67973 0.0808214 0.158481 1.04973 0.0828214 0.158481 1.04973 0.0828214 0.158481 1.67973 0.0828214 0.162731 1.67973 0.0828214 0.162731 1.04973 0.0898214 0.159067 1.67973 0.0898214 0.155001 1.67973 0.0898214 0.155001 1.04973 0.0898214 0.153961 1.67973 0.0861572 0.146231 1.04973 0.0828214 0.150481 1.67973 0.0828214 0.146231 1.04973 0.0808214 0.150481 1.67973 0.0808214 0.128481 1.67973 0.0808214 0.150481 1.04973 0.0828214 0.132731 1.67973 0.0828214 0.146231 1.67973 0.0861572 0.132731 1.67973 0.0898214 0.129067 1.67973 0.0898214 0.125001 1.67973 0.0901214 0.124481 1.67973 0.0861572 0.116231 1.67973 0.0912356 0.118481 1.67973 0.0958214 0.118781 1.67973 0.096341 0.118481 1.67973 0.100407 0.118481 1.67973 0.104071 0.114817 1.67973 0.121821 0.109481 1.67973 0.0998214 0.109481 1.67973 0.121821 0.111481 1.67973 0.121236 0.118481 1.67973 0.125302 0.118481 1.67973 0.126341 0.118481 1.67973 0.131821 0.119895 1.67973 0.130407 0.118481 1.67973 0.131521 0.124481 1.67973 0.131821 0.129067 1.67973 0.125043 0.130774 1.67973 0.134071 0.111481 1.67973 0.134071 0.114817 1.67973 0.138821 0.116231 1.67973 0.140821 0.120481 1.67973 0.138821 0.120481 1.67973 0.129821 0.111481 1.67973 0.135486 0.132731 1.67973 0.135486 0.146231 1.67973 0.138821 0.146231 1.67973 0.140821 0.150481 1.67973 0.138821 0.132731 1.67973 0.140821 0.128481 1.67973 0.131821 0.149895 1.67973 0.131521 0.154481 1.67973 0.131821 0.153961 1.67973 0.131821 0.155001 1.67973 0.134071 0.164145 1.67973 0.140821 0.158481 1.67973 0.14017 0.168999 1.67964 0.134071 0.167481 1.67973 0.125821 0.160181 1.67973 0.117571 0.164145 1.67973 0.096341 0.160481 1.67973 0.0958214 0.160181 1.67973 0.0875714 0.164145 1.67973 0.0861572 0.162731 1.67973 0.0901214 0.154481 1.67973 0.0898214 0.149895 1.67973 0.0918214 0.169481 1.67973 0.0828214 0.169481 1.67973 0.0861572 0.146231 1.67973 0.100407 0.160481 1.67973 0.122823 0.122693 1.67973 0.12081 0.129786 1.67963 0.123001 0.126489 1.67942 0.0898214 0.119895 1.67973 0.0911143 0.142703 1.04973 0.0911143 0.142703 1.67973 0.0908214 0.141996 1.67973 0.0909247 0.142414 1.3661 0.0908214 0.141996 1.04973 0.0908214 0.136966 1.67973 0.0911143 0.136259 1.04973 0.0911143 0.136259 1.67973 0.0908214 0.136966 1.04973 0.0965996 0.130774 1.04973 0.0965996 0.130774 1.67973 0.0968882 0.130585 1.3661 0.0996532 0.130334 1.40869 0.100883 0.129547 1.41963 0.0980641 0.130481 1.67973 0.101121 0.129557 1.67961 0.0980641 0.130481 1.04973 0.100994 0.129608 1.04997 0.101674 0.128314 1.41737 0.101821 0.125966 1.04973 0.101821 0.127481 1.67973 0.102114 0.125259 1.04973 0.101821 0.125966 1.67973 0.102114 0.125259 1.67973 0.1076 0.119774 1.04973 0.108307 0.119481 1.04973 0.108307 0.119481 1.67973 0.1076 0.119774 1.67973 0.107888 0.119585 1.3661 0.113336 0.119481 1.04973 0.114043 0.119774 1.67973 0.113336 0.119481 1.67973 0.114043 0.119774 1.04973 0.119528 0.125259 1.67973 0.119528 0.125259 1.04973 0.119718 0.125548 1.3661 0.119821 0.127481 1.04973 0.120607 0.129567 1.05006 0.123579 0.130481 1.67973 0.122821 0.130481 1.04973 0.119821 0.126723 1.67973 0.119968 0.128314 1.38961 0.12068 0.129492 1.38406 0.121989 0.130334 1.31603 0.124725 0.130571 1.33436 0.124725 0.130571 1.36423 0.125012 0.130744 1.3661 0.124336 0.130481 1.04973 0.124725 0.130571 1.3486 0.125043 0.130774 1.04973 0.130528 0.136259 1.04973 0.130821 0.136966 1.67973 0.130821 0.136966 1.04973 0.130718 0.136548 1.3661 0.130528 0.136259 1.67973 0.130821 0.141996 1.04973 0.130821 0.141996 1.67973 0.130528 0.142703 1.67973 0.130528 0.142703 1.04973 0.125043 0.148188 1.67973 0.125043 0.148188 1.04973 0.124336 0.148481 1.04973 0.122821 0.148481 1.04973 0.120661 0.149292 1.04987 0.124336 0.148481 1.67973 0.120564 0.14935 1.67961 0.119821 0.152239 1.67973 0.120013 0.150459 1.3844 0.119821 0.152239 1.04973 0.121006 0.149195 1.35143 0.122105 0.148588 1.4368 0.119528 0.153703 1.67973 0.119528 0.153703 1.04973 0.119769 0.153226 1.36377 0.113336 0.159481 1.04973 0.114043 0.159188 1.67973 0.114043 0.159188 1.04973 0.113336 0.159481 1.67973 0.108307 0.159481 1.04973 0.108307 0.159481 1.67973 0.1076 0.159188 1.04973 0.1076 0.159188 1.67973 0.102114 0.153703 1.67973 0.101821 0.151481 1.67973 0.102114 0.153703 1.04973 0.101821 0.152239 1.04973 0.0980641 0.148481 1.67973 0.101094 0.149323 1.67965 0.100854 0.149337 1.42987 0.0996532 0.148627 1.30077 0.0980641 0.148481 1.04973 0.123432 0.157011 1.67973 0.125688 0.150904 1.04972 0.129177 0.155367 1.04987 0.129263 0.155058 1.67964 0.126858 0.157782 1.67972 0.127904 0.151611 1.67973 0.122325 0.154075 1.67956 0.12626 0.151145 1.33678 0.125462 0.151074 1.67973 0.129005 0.153475 1.44466 0.123713 0.151767 1.67969 0.123833 0.157068 1.36729 0.124533 0.151374 1.37733 0.122498 0.154772 1.40805 0.128095 0.152002 1.42458 0.128875 0.15572 1.32772 0.122599 0.153618 1.25684 0.122537 0.155212 1.24149 0.125383 0.157816 1.33136 0.127347 0.15747 1.43265 0.123227 0.152292 1.04973 0.127703 0.157299 1.07808 0.122502 0.155177 1.05001 0.123609 0.157132 1.05003 0.126303 0.157881 1.04973 0.128854 0.152758 1.05016 0.0924835 0.125423 1.04975 0.0935221 0.121733 1.67972 0.099164 0.125344 1.67974 0.0978167 0.127282 1.6797 0.092392 0.124565 1.67973 0.0985971 0.122449 1.67968 0.0949646 0.127863 1.67974 0.0929684 0.126399 1.67973 0.0969543 0.121177 1.67965 0.0943401 0.121477 1.45293 0.0930469 0.122538 1.45135 0.0991062 0.124332 1.35489 0.0958214 0.127881 1.54113 0.0931101 0.126425 1.34731 0.0964377 0.121232 1.49506 0.0925049 0.124412 1.35213 0.0970001 0.127605 1.28283 0.0975375 0.12156 1.04979 0.0985537 0.126395 1.35804 0.0985959 0.122538 1.08123 0.0955302 0.12106 1.04976 0.0946426 0.127605 1.28283 0.099237 0.124056 1.04973 0.0929926 0.122312 1.04977 0.0946355 0.127779 1.04974 0.0981345 0.127243 1.04968 0.128447 0.122201 1.04988 0.125798 0.127928 1.04973 0.126492 0.127955 1.67972 0.128917 0.122959 1.67967 0.125767 0.12108 1.67972 0.122486 0.1243 1.48837 0.128678 0.122744 1.50609 0.12918 0.125672 1.67967 0.123463 0.12684 1.31118 0.122567 0.125374 1.29996 0.128613 0.126336 1.51455 0.124217 0.121481 1.6797 0.122846 0.122848 1.28598 0.124121 0.121537 1.21353 0.127976 0.127064 1.17888 0.125821 0.121081 1.21353 0.125164 0.127784 1.4488 0.12626 0.127816 1.24838 0.127106 0.121326 1.67971 0.124839 0.121131 1.04971 0.123529 0.127039 1.04972 0.128999 0.125926 1.04977 0.129188 0.124463 1.23302 0.0938076 0.151675 1.04975 0.0983004 0.156878 1.04972 0.093222 0.15213 1.6797 0.0960405 0.157784 1.55531 0.0983554 0.156869 1.67972 0.0989853 0.153111 1.67971 0.0991202 0.154174 1.59547 0.0923865 0.154533 1.67973 0.093746 0.1575 1.67972 0.0991827 0.154923 1.40331 0.0936052 0.15691 1.54231 0.0951772 0.157735 1.35213 0.0975214 0.157426 1.35213 0.0925432 0.153973 1.37733 0.0950924 0.151197 1.36857 0.0935147 0.152071 1.34544 0.0985116 0.156455 1.30389 0.0968686 0.151097 1.67962 0.0941214 0.157426 1.21353 0.0964656 0.157735 1.21353 0.0928366 0.152929 1.15289 0.0929871 0.156383 1.04973 0.0992148 0.154074 1.0498 0.0969671 0.151216 1.04987 0.0985959 0.152539 1.08911 0.0925106 0.15425 1.04974 0.094982 0.157847 1.04973 -0.549179 -0.121519 1.72325 -0.549179 -0.121812 1.72395 0.0808214 -0.121519 1.72173 0.0808214 -0.121812 1.72395 -0.549179 -0.141519 1.73973 -0.549179 -0.123769 1.73773 -0.549179 -0.137269 1.7344 -0.549179 -0.123769 1.7344 -0.549179 -0.116039 1.73073 -0.549179 -0.114999 1.73073 -0.549179 -0.110933 1.73073 -0.549179 -0.107269 1.7344 -0.549179 -0.107269 1.73773 -0.549179 -0.109519 1.72932 -0.549179 -0.109519 1.72525 -0.549179 -0.105855 1.71648 -0.549179 -0.105855 1.70298 -0.549179 -0.116297 1.70103 -0.549179 -0.102519 1.70298 -0.549179 -0.102519 1.72073 -0.549179 -0.109819 1.69473 -0.549179 -0.109519 1.69421 -0.549179 -0.109519 1.69015 -0.549179 -0.107269 1.68507 -0.549179 -0.110933 1.68873 -0.549179 -0.114999 1.68873 -0.549179 -0.120105 1.68873 -0.549179 -0.105855 1.68648 -0.549179 -0.111519 1.68173 -0.549179 -0.102519 1.69073 -0.549179 -0.102519 1.68648 -0.549179 -0.133034 1.68973 -0.549179 -0.137269 1.68507 -0.549179 -0.123769 1.68507 -0.549179 -0.123769 1.68173 -0.549179 -0.137269 1.68173 -0.549179 -0.119519 1.67973 -0.549179 -0.140933 1.68873 -0.549179 -0.145519 1.68903 -0.549179 -0.150105 1.68873 -0.549179 -0.149519 1.68173 -0.549179 -0.153769 1.68173 -0.549179 -0.151519 1.69421 -0.549179 -0.155183 1.70298 -0.549179 -0.155183 1.71648 -0.549179 -0.158519 1.70298 -0.549179 -0.160519 1.72073 -0.549179 -0.158519 1.72073 -0.549179 -0.158519 1.71648 -0.549179 -0.151519 1.72932 -0.549179 -0.151519 1.72525 -0.549179 -0.150105 1.73073 -0.549179 -0.158519 1.73298 -0.549179 -0.155183 1.73298 -0.549179 -0.153769 1.73773 -0.549179 -0.149519 1.73973 -0.549179 -0.120105 1.73073 -0.549179 -0.121519 1.72173 -0.549179 -0.139519 1.72173 -0.549179 -0.109519 1.69932 -0.549179 -0.128004 1.72973 0.0808214 -0.141519 1.73773 -0.549179 -0.141519 1.73773 -0.549179 -0.137269 1.73773 -0.549179 -0.140933 1.73073 -0.549179 -0.144999 1.73073 -0.549179 -0.145519 1.73043 -0.549179 -0.146039 1.73073 0.0808214 -0.153769 1.7344 -0.549179 -0.153769 1.7344 -0.549179 -0.149519 1.73773 0.0808214 -0.149519 1.73973 -0.549179 -0.160519 1.73773 -0.175696 -0.160022 1.73899 0.0808214 -0.160519 1.73773 -0.529426 -0.160153 1.73881 -0.549179 -0.158519 1.73973 0.0808214 -0.160519 1.72873 0.0808214 -0.158519 1.72873 -0.549179 -0.160519 1.72873 -0.549179 -0.158519 1.72873 0.0808214 -0.158519 1.73298 0.0808214 -0.151519 1.72932 -0.549179 -0.151219 1.72473 -0.549179 -0.151519 1.72421 -0.549179 -0.151519 1.72015 0.0808214 -0.158519 1.71648 0.0808214 -0.160519 1.69873 -0.549179 -0.160519 1.69873 -0.549179 -0.158519 1.69873 0.0808214 -0.158519 1.69873 0.0808214 -0.158519 1.70298 0.0808214 -0.155183 1.70298 0.0808214 -0.151519 1.69525 -0.549179 -0.151519 1.69932 -0.549179 -0.151519 1.69525 -0.549179 -0.151219 1.69473 0.0808214 -0.151519 1.69421 0.0808214 -0.155183 1.68648 -0.549179 -0.151519 1.69015 -0.549179 -0.155183 1.68648 0.0808214 -0.158519 1.68648 -0.549179 -0.158519 1.68648 0.0808214 -0.158519 1.69073 -0.549179 -0.158519 1.69073 -0.549179 -0.160519 1.69073 -0.212873 -0.159527 1.68006 0.0808214 -0.160519 1.68173 -0.549179 -0.160519 1.68173 -0.212873 -0.160391 1.68105 0.0807052 -0.160328 1.68084 -0.549164 -0.160261 1.68069 0.0808214 -0.158519 1.67973 -0.549179 -0.158519 1.67973 -0.549179 -0.149519 1.67973 0.0808214 -0.149519 1.68173 0.0808214 -0.153769 1.68173 0.0808214 -0.153769 1.68507 -0.549179 -0.153769 1.68507 0.0808214 -0.146039 1.68873 -0.549179 -0.146039 1.68873 -0.549179 -0.144999 1.68873 0.0808214 -0.137269 1.68173 0.0808214 -0.141519 1.68173 -0.549179 -0.141519 1.68173 0.0808214 -0.141519 1.67973 0.0808214 -0.119519 1.67973 0.0808214 -0.119519 1.68173 -0.549179 -0.119519 1.68173 0.0808214 -0.120105 1.68873 -0.549179 -0.116039 1.68873 -0.549179 -0.115519 1.68903 -0.549179 -0.107269 1.68173 0.0808214 -0.111519 1.68173 0.0808214 -0.111519 1.67973 0.0808214 -0.102519 1.67973 0.0768507 -0.101009 1.68051 0.0808214 -0.100519 1.68173 -0.549164 -0.101221 1.68029 -0.0871699 -0.10082 1.68075 0.0808214 -0.102519 1.69073 0.0808214 -0.102519 1.68648 0.0808214 -0.109519 1.69015 0.0808214 -0.109819 1.69473 0.0808214 -0.109519 1.69525 -0.549179 -0.109519 1.69525 0.0808214 -0.102519 1.69873 0.0808214 -0.100519 1.69873 -0.549179 -0.102519 1.69873 -0.549179 -0.100519 1.72073 -0.549179 -0.102519 1.71648 -0.549179 -0.109519 1.72015 -0.549179 -0.109519 1.72421 -0.549179 -0.109819 1.72473 0.0808214 -0.109819 1.72473 0.0808214 -0.109519 1.72525 0.0808214 -0.109519 1.72932 -0.549179 -0.105855 1.73298 -0.549179 -0.102519 1.73298 -0.549179 -0.102519 1.72873 -0.549179 -0.100519 1.72873 0.0808214 -0.100519 1.73773 -0.0925138 -0.101389 1.73934 0.0808214 -0.102519 1.73973 -0.549179 -0.102519 1.73973 -0.548764 -0.101335 1.73933 0.0808214 -0.111519 1.73973 -0.549179 -0.111519 1.73973 -0.549179 -0.111519 1.73773 0.0808214 -0.114999 1.73073 0.0808214 -0.115519 1.73043 -0.549179 -0.115519 1.73043 0.0808214 -0.120105 1.73073 -0.549179 -0.119519 1.73773 0.0808214 -0.119519 1.73773 -0.549179 -0.119519 1.73973 0.0808214 -0.119519 1.73973 0.0808214 -0.123769 1.73773 0.0808214 -0.137269 1.73773 0.0808214 -0.141519 1.73973 0.0808214 -0.140933 1.73073 0.0808214 -0.145519 1.73043 0.0808214 -0.144999 1.73073 0.0808214 -0.146039 1.73073 0.0808214 -0.150105 1.73073 0.0808214 -0.149519 1.73773 0.0808214 -0.153769 1.73773 0.0808214 -0.158519 1.73973 0.0808214 -0.155183 1.73298 0.0808214 -0.151519 1.72525 0.0808214 -0.151219 1.72473 0.0808214 -0.151519 1.72421 0.0808214 -0.151519 1.72015 0.0808214 -0.155183 1.71648 0.0808214 -0.160519 1.72073 0.0808214 -0.158519 1.72073 0.0808214 -0.151519 1.69932 0.0808214 -0.151219 1.69473 0.0808214 -0.151519 1.69015 0.0808214 -0.150105 1.68873 0.0808214 -0.145519 1.68903 0.0808214 -0.144999 1.68873 0.0808214 -0.149519 1.67973 0.0808214 -0.160519 1.69073 0.0808214 -0.140933 1.68873 0.0808214 -0.133741 1.69003 0.0808214 -0.137269 1.68507 0.0808214 -0.123769 1.68507 0.0808214 -0.123769 1.68173 0.0808214 -0.115519 1.68903 0.0808214 -0.116039 1.68873 0.0808214 -0.110933 1.68873 0.0808214 -0.114999 1.68873 0.0808214 -0.107269 1.68507 0.0808214 -0.107269 1.68173 0.0808214 -0.105855 1.68648 0.0808214 -0.100519 1.69073 0.0808214 -0.109519 1.69421 0.0808214 -0.109519 1.69932 0.0808214 -0.105855 1.70298 0.0808214 -0.105855 1.71648 0.0808214 -0.109519 1.72015 0.0808214 -0.100519 1.72073 0.0808214 -0.102519 1.70298 0.0808214 -0.102519 1.72073 0.0808214 -0.102519 1.71648 0.0808214 -0.109519 1.72421 0.0808214 -0.105855 1.73298 0.0808214 -0.107269 1.7344 0.0808214 -0.110933 1.73073 0.0808214 -0.116039 1.73073 0.0808214 -0.107269 1.73773 0.0808214 -0.111519 1.73773 0.0808214 -0.102519 1.72873 0.0808214 -0.100519 1.72873 0.0808214 -0.102519 1.73298 0.0807758 -0.101403 1.73942 0.0808214 -0.123769 1.7344 0.0808214 -0.118519 1.70073 0.0808214 -0.133741 1.72944 0.0808214 -0.137269 1.7344 0.0808214 -0.127297 1.72944 -0.549179 -0.127297 1.72944 0.0808214 -0.128004 1.72973 0.0808214 -0.133034 1.72973 -0.549179 -0.133034 1.72973 -0.549179 -0.133741 1.72944 -0.549179 -0.139519 1.72325 0.0808214 -0.139226 1.72395 0.0808214 -0.139519 1.72325 -0.549179 -0.139226 1.72395 -0.230126 -0.141877 1.71883 0.0808214 -0.139519 1.72173 -0.198546 -0.139798 1.72054 -0.549158 -0.139831 1.72033 -0.549034 -0.141184 1.71901 0.0806307 -0.140258 1.71959 -0.549179 -0.144741 1.71844 0.0808214 -0.143276 1.71873 0.0808214 -0.144741 1.71844 -0.549179 -0.143276 1.71873 -0.549179 -0.150519 1.71225 0.0808214 -0.150226 1.71295 -0.549179 -0.150226 1.71295 0.0808214 -0.150519 1.71225 0.0808214 -0.150519 1.70722 -0.549179 -0.150519 1.70722 -0.549179 -0.150226 1.70651 -0.232345 -0.150362 1.70673 0.0808214 -0.150226 1.70651 -0.549179 -0.144034 1.70073 -0.406897 -0.144452 1.70084 -0.549179 -0.144741 1.70103 0.0808214 -0.144034 1.70073 -0.365593 -0.144452 1.70084 -0.385661 -0.144452 1.70084 0.0808214 -0.144741 1.70103 -0.549179 -0.142519 1.70073 0.0808214 -0.142519 1.70073 -0.151001 -0.139711 1.69876 0.0804595 -0.140309 1.6999 -0.549037 -0.140195 1.69974 0.0808214 -0.139519 1.69697 -0.549179 -0.139519 1.69773 0.0808214 -0.139226 1.69551 -0.549179 -0.139226 1.69551 -0.549179 -0.139519 1.69622 0.0808214 -0.133034 1.68973 -0.549179 -0.133741 1.69003 0.0808214 -0.128004 1.68973 -0.549179 -0.128004 1.68973 -0.549179 -0.127297 1.69003 0.0808214 -0.127297 1.69003 0.0808214 -0.121812 1.69551 -0.549179 -0.121519 1.69697 -0.549179 -0.121812 1.69551 -0.231937 -0.121616 1.69581 0.0808214 -0.121519 1.69773 0.0806842 -0.120499 1.7001 -0.32695 -0.119541 1.70054 -0.549161 -0.12063 1.70002 -0.213468 -0.121328 1.69876 -0.474442 -0.120524 1.69992 -0.549179 -0.117762 1.70073 0.0808214 -0.117004 1.70073 0.0808214 -0.116297 1.70103 0.0808214 -0.110519 1.70722 0.0808214 -0.110812 1.70651 -0.549179 -0.110812 1.70651 -0.549179 -0.110519 1.70722 -0.549179 -0.110519 1.71225 0.0808214 -0.110519 1.71225 -0.549179 -0.110812 1.71295 0.0808214 -0.110812 1.71295 -0.549179 -0.117004 1.71873 -0.549179 -0.116297 1.71844 0.0808214 -0.116297 1.71844 0.0807987 -0.120777 1.71973 -0.549179 -0.118519 1.71873 -0.263442 -0.120708 1.71973 0.0808214 -0.117004 1.71873 -0.213468 -0.119541 1.71892 -0.548766 -0.120807 1.71987 -0.549146 -0.112201 1.69585 -0.549113 -0.115266 1.69832 0.0808537 -0.11203 1.69429 0.0807309 -0.113553 1.69193 0.0807734 -0.11902 1.6955 0.0808038 -0.117302 1.69162 0.0807715 -0.1163 1.69815 0.0807159 -0.113253 1.69736 -0.202679 -0.112909 1.69264 -0.144994 -0.115087 1.69144 -0.210062 -0.118035 1.69685 -0.207305 -0.112401 1.69567 -0.225516 -0.116248 1.69801 -0.190867 -0.11883 1.69449 -0.230635 -0.117501 1.69209 -0.549129 -0.112295 1.69352 -0.246976 -0.114067 1.6977 -0.549143 -0.117974 1.69711 -0.549136 -0.113839 1.69167 -0.549164 -0.11645 1.69142 -0.549178 -0.118941 1.69377 -0.549133 -0.146125 1.72127 0.0807377 -0.148732 1.72328 0.0808324 -0.142079 1.72419 0.0806048 -0.144194 1.72158 0.0804841 -0.146933 1.72779 0.0807064 -0.144025 1.728 0.0807261 -0.148585 1.7263 -0.215279 -0.142534 1.72629 0.0808056 -0.146586 1.72147 -0.272982 -0.146937 1.72776 -0.194017 -0.142196 1.72444 -0.212523 -0.143485 1.72215 -0.420029 -0.143673 1.72756 -0.273652 -0.145556 1.72136 -0.334979 -0.145161 1.72809 -0.297474 -0.147449 1.72202 -0.242399 -0.148741 1.72401 -0.281035 -0.148504 1.72629 -0.549166 -0.142175 1.72549 -0.548948 -0.142592 1.72275 -0.548959 -0.149007 1.72406 -0.549109 -0.147453 1.72768 -0.549153 -0.143739 1.72784 -0.549026 -0.143804 1.69776 0.0807639 -0.147038 1.69799 0.0807929 -0.14563 1.69111 0.080735 -0.143222 1.69743 0.0808204 -0.148998 1.69484 0.080763 -0.142252 1.69333 0.0807499 -0.148308 1.69267 -0.201006 -0.148804 1.69546 -0.10306 -0.14414 1.69164 -0.165863 -0.146288 1.69151 -0.254654 -0.148189 1.69269 -0.275014 -0.145454 1.69803 -0.300034 -0.142196 1.69444 -0.549053 -0.146817 1.69798 -0.288516 -0.142711 1.69286 -0.549132 -0.146609 1.69132 -0.299443 -0.148033 1.69694 -0.288024 -0.142964 1.69677 -0.549193 -0.148989 1.69464 -0.549232 -0.141954 1.69464 -0.549126 -0.143562 1.69195 0.0807775 -0.113881 1.72779 0.0805304 -0.116224 1.72821 0.0808352 -0.111973 1.72539 0.0808091 -0.112795 1.72264 0.0807347 -0.118195 1.72258 0.0807445 -0.115303 1.72114 0.0806639 -0.118925 1.72561 -0.183779 -0.118627 1.72344 -0.192835 -0.115546 1.72136 -0.234277 -0.118554 1.72604 -0.17236 -0.11707 1.72175 -0.344429 -0.117196 1.72763 -0.306629 -0.114083 1.72775 -0.268928 -0.113666 1.72196 -0.321985 -0.11551 1.72803 -0.262923 -0.112489 1.72607 -0.297179 -0.112411 1.72344 -0.549164 -0.118189 1.72258 -0.549159 -0.112411 1.72642 -0.549153 -0.115939 1.72125 -0.549177 -0.11904 1.72538 -0.549185 -0.115789 1.72818 -0.549164 -0.112504 1.72298 0.0808214 -0.121812 1.03395 -0.549179 -0.121812 1.03395 -0.549179 -0.121519 1.03325 -0.549179 -0.137269 1.04773 -0.549179 -0.141519 1.04973 -0.549179 -0.119519 1.04773 -0.549179 -0.116039 1.04073 -0.549179 -0.120105 1.04073 -0.549179 -0.115519 1.04043 -0.549179 -0.114999 1.04073 -0.549179 -0.109519 1.03932 -0.549179 -0.111519 1.04973 -0.549179 -0.102519 1.04298 -0.549179 -0.100519 1.03873 -0.549179 -0.109519 1.03525 -0.549179 -0.109819 1.03473 -0.549179 -0.109519 1.03421 -0.549179 -0.109519 1.03015 -0.549179 -0.105855 1.02648 -0.549179 -0.105855 1.01298 -0.549179 -0.102519 1.02648 -0.549179 -0.102519 1.01298 -0.549179 -0.109519 1.00932 -0.549179 -0.109519 1.00421 -0.549179 -0.109819 1.00473 -0.549179 -0.110933 0.998733 -0.549179 -0.116039 0.998733 -0.549179 -0.107269 0.995068 -0.549179 -0.107269 0.991733 -0.549179 -0.100519 0.991733 -0.549179 -0.137269 0.995068 -0.549179 -0.137269 0.991733 -0.549179 -0.141519 0.991733 -0.549179 -0.123769 0.991733 -0.549179 -0.140933 0.998733 -0.549179 -0.145519 0.999032 -0.549179 -0.151519 1.00015 -0.549179 -0.160519 1.00073 -0.549179 -0.151519 1.00932 -0.549179 -0.150226 1.01651 -0.549179 -0.155183 1.01298 -0.549179 -0.158519 1.02648 -0.549179 -0.160519 1.03073 -0.549179 -0.151519 1.03421 -0.549179 -0.151519 1.03015 -0.549179 -0.155183 1.04298 -0.549179 -0.145519 1.04043 -0.549179 -0.158519 1.04298 -0.549179 -0.153769 1.04773 -0.549179 -0.151519 1.03932 -0.549179 -0.109519 1.00015 -0.549179 -0.141519 1.04773 0.0808214 -0.141519 1.04773 0.0808214 -0.137269 1.04773 -0.549179 -0.137269 1.0444 -0.549179 -0.140933 1.04073 -0.549179 -0.144999 1.04073 -0.549179 -0.146039 1.04073 -0.549179 -0.150105 1.04073 -0.549179 -0.153769 1.0444 0.0808214 -0.149519 1.04973 -0.549179 -0.149519 1.04773 0.0808214 -0.160519 1.04773 0.0808214 -0.158519 1.04973 -0.172966 -0.1595 1.04944 -0.549179 -0.158519 1.04973 -0.549179 -0.160519 1.04773 0.0807718 -0.15993 1.04904 -0.549018 -0.159861 1.04924 0.0808214 -0.160519 1.03873 -0.549179 -0.160519 1.03873 -0.549179 -0.158519 1.03873 0.0808214 -0.151519 1.03932 -0.549179 -0.151519 1.03525 0.0808214 -0.151219 1.03473 -0.549179 -0.151219 1.03473 0.0808214 -0.151519 1.03015 -0.549179 -0.155183 1.02648 0.0808214 -0.155183 1.02648 0.0808214 -0.158519 1.02648 0.0808214 -0.158519 1.03073 -0.549179 -0.158519 1.03073 0.0808214 -0.160519 1.03073 0.0808214 -0.160519 1.00873 -0.549179 -0.160519 1.00873 0.0808214 -0.158519 1.00873 -0.549179 -0.158519 1.00873 -0.549179 -0.158519 1.01298 0.0808214 -0.155183 1.01298 0.0808214 -0.151519 1.00525 -0.549179 -0.151519 1.00525 0.0808214 -0.151219 1.00473 -0.549179 -0.151219 1.00473 -0.549179 -0.151519 1.00421 0.0808214 -0.151519 1.00015 -0.549179 -0.155183 0.996483 0.0808214 -0.158519 0.996483 0.0808214 -0.158519 1.00073 -0.549179 -0.158519 0.996483 -0.549179 -0.158519 1.00073 0.0808214 -0.160519 1.00073 0.0808214 -0.158519 0.989733 -0.31656 -0.160206 0.99074 0.080817 -0.159646 0.990047 -0.549179 -0.160519 0.991733 -0.549179 -0.158519 0.989733 0.0808214 -0.160519 0.991733 -0.54905 -0.159886 0.990384 0.0808214 -0.149519 0.991733 -0.549179 -0.149519 0.989733 -0.549179 -0.149519 0.991733 0.0808214 -0.153769 0.991733 -0.549179 -0.153769 0.991733 -0.549179 -0.153769 0.995068 -0.549179 -0.150105 0.998733 -0.549179 -0.146039 0.998733 0.0808214 -0.146039 0.998733 -0.549179 -0.144999 0.998733 0.0808214 -0.140933 0.998733 0.0808214 -0.137269 0.995068 0.0808214 -0.137269 0.991733 -0.549179 -0.141519 0.989733 -0.549179 -0.119519 0.989733 0.0808214 -0.123769 0.991733 -0.549179 -0.119519 0.991733 -0.549179 -0.123769 0.995068 -0.549179 -0.120105 0.998733 0.0808214 -0.116039 0.998733 0.0808214 -0.115519 0.999032 -0.549179 -0.115519 0.999032 -0.549179 -0.114999 0.998733 0.0808214 -0.110933 0.998733 -0.549179 -0.111519 0.991733 0.0808214 -0.111519 0.991733 -0.549179 -0.111519 0.989733 0.0808214 -0.100519 0.991733 0.080637 -0.101231 0.990337 0.0808214 -0.102519 0.989733 -0.549179 -0.102519 0.989733 -0.186152 -0.101605 0.989977 -0.548601 -0.100793 0.990702 -0.549131 -0.101694 0.989885 0.0808214 -0.100519 1.00073 0.0808214 -0.102519 1.00073 -0.549179 -0.102519 1.00073 -0.549179 -0.102519 0.996483 -0.549179 -0.105855 0.996483 0.0808214 -0.109519 1.00015 0.0808214 -0.109519 1.00421 0.0808214 -0.109819 1.00473 0.0808214 -0.109519 1.00525 -0.549179 -0.109519 1.00525 0.0808214 -0.105855 1.01298 0.0808214 -0.102519 1.00873 0.0808214 -0.100519 1.00873 -0.549179 -0.102519 1.00873 0.0808214 -0.102519 1.03073 -0.549179 -0.100519 1.03073 -0.549179 -0.102519 1.03073 0.0808214 -0.105855 1.02648 -0.549179 -0.105855 1.04298 0.0808214 -0.102519 1.03873 0.0808214 -0.100519 1.03873 -0.549179 -0.102519 1.03873 0.0808214 -0.100519 1.04773 0.0808214 -0.102519 1.04973 -0.549179 -0.100519 1.04773 0.0807571 -0.101115 1.04918 -0.224955 -0.101389 1.04935 -0.316967 -0.100587 1.04825 -0.549116 -0.101329 1.04938 0.0808214 -0.111519 1.04773 0.0808214 -0.107269 1.04773 -0.549179 -0.111519 1.04773 -0.549179 -0.107269 1.04773 -0.549179 -0.107269 1.0444 0.0808214 -0.110933 1.04073 -0.549179 -0.110933 1.04073 0.0808214 -0.115519 1.04043 0.0808214 -0.123769 1.04773 -0.549179 -0.123769 1.0444 0.0808214 -0.119519 1.04773 -0.549179 -0.123769 1.04773 0.0808214 -0.119519 1.04973 0.0808214 -0.141519 1.04973 0.0808214 -0.140933 1.04073 0.0808214 -0.144999 1.04073 0.0808214 -0.146039 1.04073 0.0808214 -0.145519 1.04043 0.0808214 -0.153769 1.0444 0.0808214 -0.150105 1.04073 0.0808214 -0.155183 1.04298 0.0808214 -0.149519 1.04773 0.0808214 -0.153769 1.04773 0.0808214 -0.158519 1.04298 0.0808214 -0.158519 1.03873 0.0808214 -0.151519 1.03525 0.0808214 -0.151519 1.03421 0.0808214 -0.158519 1.01298 0.0808214 -0.151519 1.00421 0.0808214 -0.150105 0.998733 0.0808214 -0.145519 0.999032 0.0808214 -0.144999 0.998733 0.0808214 -0.155183 0.996483 0.0808214 -0.153769 0.995068 0.0808214 -0.149519 0.989733 0.0808214 -0.123769 0.995068 0.0808214 -0.141519 0.989733 0.0808214 -0.141519 0.991733 0.0808214 -0.119519 0.989733 0.0808214 -0.119519 0.991733 0.0808214 -0.120105 0.998733 0.0808214 -0.114999 0.998733 0.0808214 -0.107269 0.995068 0.0808214 -0.107269 0.991733 0.0808214 -0.105855 0.996483 0.0808214 -0.111519 0.989733 0.0808214 -0.102519 0.996483 0.0808214 -0.109519 1.00932 0.0808214 -0.116297 1.01103 0.0808214 -0.110519 1.01722 0.0808214 -0.109519 1.03015 0.0808214 -0.102519 1.02648 0.0808214 -0.102519 1.01298 0.0808214 -0.100519 1.03073 0.0808214 -0.109519 1.03421 0.0808214 -0.109819 1.03473 0.0808214 -0.109519 1.03525 0.0808214 -0.107269 1.0444 0.0808214 -0.114999 1.04073 0.0808214 -0.116039 1.04073 0.0808214 -0.105855 1.04298 0.0808214 -0.111519 1.04973 0.0808214 -0.102519 1.04298 0.0808214 -0.120105 1.04073 0.0808214 -0.123769 1.0444 0.0808214 -0.109519 1.03932 0.0808214 -0.151519 1.00932 0.0808214 -0.137269 1.0444 -0.549179 -0.127297 1.03944 0.0808214 -0.128004 1.03973 -0.549179 -0.128004 1.03973 0.0808214 -0.127297 1.03944 -0.549179 -0.133034 1.03973 0.0808214 -0.133034 1.03973 0.0808214 -0.133741 1.03944 -0.549179 -0.133741 1.03944 -0.549179 -0.139226 1.03395 0.0808214 -0.139226 1.03395 0.0808214 -0.139519 1.03249 0.0808214 -0.144034 1.02873 -0.549179 -0.143276 1.02873 -0.216244 -0.141497 1.02892 -0.549179 -0.139519 1.03249 -0.549154 -0.139888 1.03037 0.0807931 -0.14066 1.02931 -0.184317 -0.140397 1.02965 -0.241231 -0.139666 1.0309 -0.549171 -0.141384 1.02895 -0.549179 -0.144741 1.02844 0.0808214 -0.144741 1.02844 -0.549179 -0.150519 1.02225 -0.549179 -0.150226 1.02295 0.0808214 -0.150226 1.02295 0.0808214 -0.150519 1.02225 -0.549179 -0.150519 1.01722 0.0808214 -0.150226 1.01651 0.0808214 -0.150519 1.01722 -0.549179 -0.144741 1.01103 0.0808214 -0.143276 1.01073 0.0808214 -0.144741 1.01103 -0.549179 -0.144034 1.01073 0.080835 -0.140091 1.00958 -0.0246787 -0.141006 1.01023 0.0808214 -0.139519 1.00622 -0.549179 -0.139519 1.00697 -0.316366 -0.140229 1.00965 -0.549179 -0.142519 1.01073 -0.380047 -0.139711 1.00875 -0.549182 -0.141279 1.01048 0.0808214 -0.139226 1.00551 -0.549179 -0.139226 1.00551 -0.549179 -0.133034 0.999733 0.0808214 -0.133034 0.999733 -0.549179 -0.133741 1.00003 0.0808214 -0.133741 1.00003 0.0808214 -0.127297 1.00003 0.0808214 -0.128004 0.999733 -0.549179 -0.128004 0.999733 -0.549179 -0.127297 1.00003 0.0808214 -0.121812 1.00551 -0.549179 -0.121812 1.00551 0.0808114 -0.121306 1.00884 -0.548934 -0.12064 1.00994 0.0808214 -0.121519 1.00697 -0.549179 -0.121519 1.00622 -0.34812 -0.121328 1.00875 0.0528597 -0.120579 1.00996 0.0808214 -0.117762 1.01073 -0.549179 -0.118519 1.01073 -0.549179 -0.117004 1.01073 -0.549179 -0.116297 1.01103 -0.549179 -0.110812 1.01651 -0.549179 -0.110519 1.01722 0.0808214 -0.110812 1.01651 0.0808214 -0.110519 1.02225 -0.234679 -0.110737 1.02284 -0.549179 -0.110812 1.02295 0.0808214 -0.110812 1.02295 -0.549179 -0.110519 1.02225 0.0808214 -0.116297 1.02844 -0.549179 -0.116297 1.02844 -0.549179 -0.121519 1.03173 -0.549179 -0.117004 1.02873 -0.548858 -0.120586 1.02947 0.0808214 -0.117762 1.02873 -0.224573 -0.120708 1.02973 0.041953 -0.119541 1.02892 0.0808214 -0.121519 1.03325 0.0806523 -0.121091 1.03011 0.0807958 -0.112406 1.00332 0.0807553 -0.11881 1.00337 0.080841 -0.11826 1.00692 0.0805449 -0.115525 1.00819 0.0808107 -0.113692 1.00185 0.0805492 -0.112454 1.00642 -0.235262 -0.117501 1.00208 -0.31411 -0.115371 1.00136 -0.213015 -0.118559 1.00591 -0.169112 -0.114396 1.00788 -0.149326 -0.1122 1.00466 0.0807312 -0.115964 1.00131 -0.183287 -0.116844 1.00777 -0.214739 -0.112789 1.00667 -0.54917 -0.114052 1.00785 -0.549171 -0.112458 1.00631 -0.549179 -0.113772 1.00176 -0.250717 -0.112849 1.00268 -0.424361 -0.118708 1.00364 -0.549125 -0.11889 1.00538 -0.549236 -0.117185 1.00793 -0.549203 -0.112103 1.00395 -0.549308 -0.117146 1.00149 0.0806609 -0.142531 1.03291 0.0807163 -0.145063 1.0382 0.0807315 -0.148576 1.03673 -0.20642 -0.142349 1.03586 0.0808079 -0.142224 1.03591 -0.113298 -0.142222 1.03414 0.0807694 -0.146207 1.03135 0.0807551 -0.148337 1.03274 0.0807465 -0.144043 1.03158 -0.149523 -0.143374 1.03728 -0.148735 -0.148782 1.03494 -0.549169 -0.142226 1.03371 -0.203467 -0.14278 1.03277 -0.21272 -0.147669 1.0373 -0.254457 -0.147827 1.03243 -0.384198 -0.143599 1.03742 -0.195592 -0.145777 1.03138 -0.170887 -0.145577 1.03802 -0.549185 -0.149115 1.03479 -0.549119 -0.145719 1.03826 -0.549102 -0.143551 1.03194 -0.439913 -0.147826 1.0371 -0.549195 -0.145212 1.03132 -0.549177 -0.147477 1.03195 -0.549129 -0.142439 1.0363 -0.549193 -0.14884 1.00607 -0.549178 -0.146586 1.00142 0.0807748 -0.148566 1.00633 0.0808207 -0.148931 1.00424 0.0808173 -0.146465 1.00811 0.0807805 -0.142168 1.00379 0.0807913 -0.14617 1.00115 0.0807769 -0.142829 1.00694 -0.143616 -0.143666 1.00196 -0.149129 -0.142411 1.00344 -0.149424 -0.144122 1.00771 -0.292159 -0.147877 1.00709 -0.240873 -0.148826 1.00535 -0.259379 -0.144929 1.00138 -0.258592 -0.147432 1.002 -0.327891 -0.146396 1.00801 -0.192441 -0.14233 1.00569 -0.549145 -0.145962 1.00815 -0.549119 -0.143533 1.00757 -0.35191 -0.148709 1.00364 -0.549148 -0.148168 1.00252 -0.549231 -0.142019 1.00434 -0.549184 -0.143851 1.00171 0.0807081 -0.114931 1.03814 -0.549013 -0.114246 1.03804 0.0807842 -0.118827 1.03601 0.0805754 -0.112154 1.03425 0.0807951 -0.114771 1.03127 -0.128654 -0.112411 1.03344 0.0807043 -0.11303 1.03705 0.0808258 -0.118535 1.03292 -0.164288 -0.116078 1.03148 -0.108769 -0.113743 1.03197 -0.252587 -0.118565 1.03599 -0.145585 -0.112268 1.03563 0.0806767 -0.116621 1.03797 -0.128949 -0.11411 1.03775 -0.337489 -0.118257 1.03277 -0.549172 -0.112147 1.03542 -0.54917 -0.112322 1.03346 -0.549182 -0.119004 1.03478 -0.549192 -0.117777 1.03742 -0.549155 -0.113996 1.03161 -0.54886 -0.117078 1.03163 -0.607179 -0.449519 1.67973 -0.609179 -0.449519 1.67973 -0.608494 -0.459876 1.67973 -0.607179 -0.460519 1.04973 -0.608629 -0.459926 1.04977 -0.609179 -0.458519 1.67973 -0.609179 -0.458519 1.04973 -0.602429 -0.458519 1.67973 -0.598179 -0.458519 1.04973 -0.602429 -0.458519 1.04973 -0.602429 -0.455183 1.67973 -0.602429 -0.455183 1.04973 -0.598764 -0.451519 1.67973 -0.594179 -0.451219 1.04973 -0.595379 -0.451269 1.67973 -0.594179 -0.451219 1.67973 -0.591693 -0.451519 1.04973 -0.591693 -0.451519 1.67973 -0.585929 -0.455183 1.04973 -0.585929 -0.458519 1.04973 -0.590179 -0.458519 1.67973 -0.590179 -0.458519 1.04973 -0.581179 -0.460519 1.67973 -0.579179 -0.458519 1.67973 -0.579179 -0.458519 1.04973 -0.579512 -0.459528 1.38488 -0.579922 -0.459983 1.06127 -0.579623 -0.459879 1.67973 -0.581179 -0.449519 1.04973 -0.588179 -0.450105 1.67973 -0.588179 -0.448005 1.67973 -0.588179 -0.448005 1.04973 -0.588429 -0.446719 1.04973 -0.588479 -0.445519 1.67973 -0.588479 -0.445519 1.04973 -0.588179 -0.443033 1.67973 -0.584514 -0.437269 1.67973 -0.581179 -0.437269 1.04973 -0.579179 -0.419519 1.67973 -0.579179 -0.419519 1.04973 -0.581179 -0.419519 1.67973 -0.581179 -0.419519 1.04973 -0.581179 -0.423769 1.67973 -0.584514 -0.423769 1.67973 -0.588179 -0.418005 1.67973 -0.588179 -0.418005 1.04973 -0.588429 -0.416719 1.04973 -0.588429 -0.414319 1.04973 -0.588429 -0.414319 1.67973 -0.588479 -0.415519 1.04973 -0.588179 -0.413033 1.67973 -0.588179 -0.410933 1.67973 -0.588179 -0.413033 1.04973 -0.588179 -0.410933 1.04973 -0.581179 -0.407269 1.04973 -0.581179 -0.411519 1.67973 -0.579179 -0.411519 1.04973 -0.579179 -0.411519 1.67973 -0.579179 -0.389519 1.67973 -0.579179 -0.389519 1.04973 -0.581179 -0.389519 1.67973 -0.584514 -0.393769 1.04973 -0.588179 -0.388005 1.67973 -0.588179 -0.388005 1.04973 -0.588429 -0.386719 1.04973 -0.588479 -0.385519 1.04973 -0.588479 -0.385519 1.67973 -0.588429 -0.384319 1.67973 -0.588179 -0.380933 1.04973 -0.581179 -0.381519 1.67973 -0.579179 -0.359519 1.04973 -0.581179 -0.359519 1.67973 -0.581179 -0.359519 1.04973 -0.588179 -0.360105 1.67973 -0.588429 -0.356719 1.04973 -0.588479 -0.355519 1.04973 -0.588429 -0.354319 1.67973 -0.588179 -0.353033 1.04973 -0.584514 -0.347269 1.04973 -0.579179 -0.351519 1.67973 -0.581179 -0.351519 1.04973 -0.579179 -0.351519 1.04973 -0.579179 -0.329519 1.67973 -0.581179 -0.329519 1.67973 -0.581179 -0.329519 1.04973 -0.588179 -0.330105 1.67973 -0.584514 -0.333769 1.04973 -0.588179 -0.328005 1.67973 -0.588179 -0.328005 1.04973 -0.588429 -0.326719 1.04973 -0.588479 -0.325519 1.67973 -0.588479 -0.325519 1.04973 -0.588179 -0.323033 1.04973 -0.588179 -0.323033 1.67973 -0.588179 -0.320933 1.67973 -0.581179 -0.321519 1.04973 -0.579179 -0.321519 1.04973 -0.579179 -0.299519 1.67973 -0.581179 -0.299519 1.04973 -0.581179 -0.303769 1.67973 -0.584514 -0.303769 1.04973 -0.588179 -0.298005 1.67973 -0.588179 -0.298005 1.04973 -0.588479 -0.295519 1.04973 -0.588179 -0.293033 1.67973 -0.588179 -0.293033 1.04973 -0.588179 -0.290933 1.04973 -0.588179 -0.290933 1.67973 -0.581179 -0.291519 1.04973 -0.579179 -0.291519 1.67973 -0.579179 -0.291519 1.04973 -0.579179 -0.269519 1.67973 -0.579179 -0.269519 1.04973 -0.581179 -0.269519 1.67973 -0.581179 -0.269519 1.04973 -0.584514 -0.273769 1.67973 -0.588179 -0.268005 1.67973 -0.588179 -0.270105 1.04973 -0.588215 -0.266162 1.36448 -0.588429 -0.266719 1.04973 -0.588479 -0.265519 1.04973 -0.588479 -0.265519 1.67973 -0.588429 -0.264319 1.67973 -0.588429 -0.264319 1.04973 -0.588179 -0.263033 1.67973 -0.588179 -0.260933 1.04973 -0.584514 -0.257269 1.67973 -0.581179 -0.257269 1.67973 -0.581179 -0.261519 1.67973 -0.581179 -0.261519 1.04973 -0.579179 -0.261519 1.04973 -0.579179 -0.239519 1.04973 -0.581179 -0.239519 1.67973 -0.581179 -0.239519 1.04973 -0.581179 -0.243769 1.67973 -0.584514 -0.243769 1.67973 -0.588179 -0.240105 1.04973 -0.588179 -0.238005 1.67973 -0.588179 -0.238005 1.04973 -0.588429 -0.236719 1.67973 -0.588479 -0.235519 1.04973 -0.588429 -0.236719 1.04973 -0.588479 -0.235519 1.67973 -0.588429 -0.234319 1.67973 -0.588179 -0.233033 1.67973 -0.588429 -0.234319 1.04973 -0.588179 -0.230933 1.67973 -0.584514 -0.227269 1.04973 -0.584514 -0.227269 1.67973 -0.581179 -0.227269 1.67973 -0.581179 -0.227269 1.04973 -0.581179 -0.231519 1.67973 -0.581179 -0.231519 1.04973 -0.579179 -0.209519 1.04973 -0.581179 -0.209519 1.67973 -0.581179 -0.213769 1.04973 -0.584514 -0.213769 1.04973 -0.588179 -0.210105 1.67973 -0.588429 -0.206719 1.04973 -0.588429 -0.204319 1.04973 -0.588179 -0.203033 1.67973 -0.588179 -0.200933 1.67973 -0.588179 -0.200933 1.04973 -0.581179 -0.201519 1.67973 -0.581179 -0.201519 1.04973 -0.579179 -0.179519 1.04973 -0.581179 -0.179519 1.67973 -0.581179 -0.179519 1.04973 -0.588179 -0.180105 1.67973 -0.588179 -0.178005 1.67973 -0.588179 -0.178005 1.04973 -0.588479 -0.175519 1.67973 -0.588479 -0.175519 1.04973 -0.588429 -0.174319 1.04973 -0.588429 -0.174319 1.67973 -0.588179 -0.173033 1.67973 -0.588179 -0.173033 1.04973 -0.588179 -0.170933 1.04973 -0.584514 -0.167269 1.67973 -0.584514 -0.167269 1.04973 -0.581179 -0.167269 1.04973 -0.581179 -0.171519 1.67973 -0.581179 -0.160519 1.67973 -0.581179 -0.160519 1.04973 -0.579179 -0.162519 1.67973 -0.579707 -0.161132 1.67972 -0.579699 -0.161108 1.04973 -0.579179 -0.162519 1.04973 -0.590179 -0.162519 1.67973 -0.590179 -0.160519 1.04973 -0.590179 -0.162519 1.04973 -0.585929 -0.162519 1.67973 -0.585929 -0.165855 1.04973 -0.585929 -0.165855 1.67973 -0.594179 -0.169819 1.67973 -0.602429 -0.165855 1.67973 -0.602429 -0.165855 1.04973 -0.602429 -0.162519 1.04973 -0.598179 -0.162519 1.67973 -0.598179 -0.162519 1.04973 -0.607179 -0.160519 1.67973 -0.609179 -0.162519 1.04973 -0.609179 -0.162519 1.67973 -0.608616 -0.161075 1.04976 -0.608749 -0.161212 1.67967 -0.60786 -0.160646 1.36094 -0.609179 -0.171519 1.67973 -0.609179 -0.171519 1.04973 -0.607179 -0.171519 1.04973 -0.603843 -0.167269 1.67973 -0.600179 -0.170933 1.67973 -0.600179 -0.173033 1.67973 -0.599929 -0.174319 1.04973 -0.599929 -0.174319 1.67973 -0.599879 -0.175519 1.04973 -0.599929 -0.176719 1.67973 -0.599929 -0.176719 1.04973 -0.600179 -0.178005 1.67973 -0.600179 -0.178005 1.04973 -0.600179 -0.180105 1.67973 -0.607179 -0.179519 1.67973 -0.607179 -0.179519 1.04973 -0.609179 -0.179519 1.67973 -0.609179 -0.201519 1.67973 -0.609179 -0.201519 1.04973 -0.607179 -0.201519 1.04973 -0.607179 -0.197269 1.67973 -0.600179 -0.200933 1.67973 -0.600179 -0.200933 1.04973 -0.600179 -0.203033 1.67973 -0.600179 -0.203033 1.04973 -0.599879 -0.205519 1.67973 -0.599879 -0.205519 1.04973 -0.599929 -0.204319 1.04973 -0.599929 -0.204319 1.67973 -0.599929 -0.206719 1.04973 -0.599929 -0.206719 1.67973 -0.600179 -0.208005 1.04973 -0.600179 -0.210105 1.04973 -0.607179 -0.209519 1.04973 -0.607179 -0.209519 1.67973 -0.609179 -0.209519 1.67973 -0.609179 -0.209519 1.04973 -0.607179 -0.231519 1.67973 -0.609179 -0.231519 1.04973 -0.607179 -0.231519 1.04973 -0.600179 -0.233033 1.67973 -0.600179 -0.233033 1.04973 -0.599879 -0.235519 1.04973 -0.599879 -0.235519 1.67973 -0.599929 -0.236719 1.67973 -0.600179 -0.240105 1.67973 -0.600179 -0.238005 1.04973 -0.600179 -0.240105 1.04973 -0.603843 -0.243769 1.04973 -0.607179 -0.243769 1.04973 -0.607179 -0.239519 1.67973 -0.607179 -0.239519 1.04973 -0.609179 -0.239519 1.04973 -0.609179 -0.261519 1.04973 -0.607179 -0.261519 1.04973 -0.603843 -0.257269 1.04973 -0.600179 -0.260933 1.67973 -0.600179 -0.263033 1.04973 -0.599879 -0.265519 1.67973 -0.599929 -0.264319 1.67973 -0.599929 -0.264319 1.04973 -0.599879 -0.265519 1.04973 -0.600179 -0.268005 1.67973 -0.600179 -0.268005 1.04973 -0.603843 -0.273769 1.04973 -0.607179 -0.269519 1.04973 -0.609179 -0.269519 1.67973 -0.609179 -0.291519 1.67973 -0.607179 -0.291519 1.67973 -0.609179 -0.291519 1.04973 -0.607179 -0.291519 1.04973 -0.600179 -0.290933 1.67973 -0.603843 -0.287269 1.04973 -0.600179 -0.290933 1.04973 -0.600179 -0.293033 1.04973 -0.599879 -0.295519 1.67973 -0.600143 -0.294876 1.36448 -0.599879 -0.295519 1.04973 -0.599929 -0.294319 1.67973 -0.599929 -0.294319 1.04973 -0.600149 -0.296203 1.36445 -0.599929 -0.296719 1.04973 -0.600179 -0.298005 1.04973 -0.603843 -0.303769 1.67973 -0.603843 -0.303769 1.04973 -0.607179 -0.299519 1.67973 -0.609179 -0.299519 1.67973 -0.607179 -0.299519 1.04973 -0.609179 -0.321519 1.04973 -0.607179 -0.321519 1.67973 -0.607179 -0.321519 1.04973 -0.607179 -0.317269 1.67973 -0.607179 -0.317269 1.04973 -0.600179 -0.323033 1.67973 -0.600179 -0.323033 1.04973 -0.599929 -0.324319 1.67973 -0.599879 -0.325519 1.04973 -0.599879 -0.325519 1.67973 -0.600179 -0.328005 1.04973 -0.600179 -0.328005 1.67973 -0.600179 -0.330105 1.67973 -0.607179 -0.333769 1.04973 -0.607179 -0.329519 1.04973 -0.609179 -0.351519 1.04973 -0.607179 -0.351519 1.04973 -0.603843 -0.347269 1.04973 -0.600179 -0.353033 1.67973 -0.599929 -0.354319 1.04973 -0.599929 -0.354319 1.67973 -0.599879 -0.355519 1.67973 -0.599879 -0.355519 1.04973 -0.599929 -0.356719 1.67973 -0.600179 -0.358005 1.67973 -0.600179 -0.358005 1.04973 -0.600179 -0.360105 1.67973 -0.603843 -0.363769 1.67973 -0.600179 -0.360105 1.04973 -0.607179 -0.359519 1.67973 -0.609179 -0.359519 1.04973 -0.607179 -0.381519 1.04973 -0.600179 -0.380933 1.67973 -0.603843 -0.377269 1.04973 -0.599879 -0.385519 1.04973 -0.600179 -0.388005 1.67973 -0.600179 -0.388005 1.04973 -0.607179 -0.393769 1.04973 -0.607179 -0.389519 1.67973 -0.607179 -0.389519 1.04973 -0.609179 -0.389519 1.04973 -0.609179 -0.411519 1.04973 -0.607179 -0.411519 1.67973 -0.607179 -0.411519 1.04973 -0.603843 -0.407269 1.67973 -0.600179 -0.410933 1.67973 -0.600179 -0.413033 1.67973 -0.600179 -0.413033 1.04973 -0.599879 -0.415519 1.04973 -0.599879 -0.415519 1.67973 -0.599929 -0.416719 1.04973 -0.599929 -0.416719 1.67973 -0.600179 -0.418005 1.67973 -0.600179 -0.418005 1.04973 -0.600179 -0.420105 1.67973 -0.603843 -0.423769 1.67973 -0.607179 -0.419519 1.67973 -0.609179 -0.419519 1.04973 -0.609179 -0.441519 1.67973 -0.607179 -0.441519 1.04973 -0.607179 -0.441519 1.67973 -0.600179 -0.440933 1.67973 -0.600179 -0.443033 1.67973 -0.599929 -0.444319 1.67973 -0.599929 -0.444319 1.04973 -0.599879 -0.445519 1.04973 -0.599879 -0.445519 1.67973 -0.599929 -0.446719 1.67973 -0.600179 -0.448005 1.67973 -0.600179 -0.448005 1.04973 -0.600179 -0.450105 1.04973 -0.603843 -0.453769 1.67973 -0.609179 -0.449519 1.04973 -0.607179 -0.449519 1.04973 -0.607179 -0.453769 1.04973 -0.603843 -0.453769 1.04973 -0.598764 -0.451519 1.04973 -0.599929 -0.446719 1.04973 -0.600179 -0.443033 1.04973 -0.609179 -0.441519 1.04973 -0.607179 -0.423769 1.04973 -0.603843 -0.423769 1.04973 -0.600179 -0.420105 1.04973 -0.607179 -0.419519 1.04973 -0.599929 -0.414319 1.04973 -0.603843 -0.407269 1.04973 -0.607179 -0.407269 1.04973 -0.603843 -0.393769 1.04973 -0.599199 -0.391812 1.04973 -0.600179 -0.390105 1.04973 -0.599929 -0.386719 1.04973 -0.599929 -0.384319 1.04973 -0.600179 -0.383033 1.04973 -0.600179 -0.380933 1.04973 -0.607179 -0.363769 1.04973 -0.603843 -0.363769 1.04973 -0.599929 -0.356719 1.04973 -0.609179 -0.381519 1.04973 -0.607179 -0.359519 1.04973 -0.600179 -0.353033 1.04973 -0.603843 -0.333769 1.04973 -0.602763 -0.335376 1.04973 -0.599929 -0.326719 1.04973 -0.609179 -0.329519 1.04973 -0.600179 -0.330105 1.04973 -0.599929 -0.324319 1.04973 -0.600185 -0.324876 1.04973 -0.600179 -0.320933 1.04973 -0.603843 -0.317269 1.04973 -0.607179 -0.303769 1.04973 -0.609179 -0.299519 1.04973 -0.600179 -0.300105 1.04973 -0.607179 -0.287269 1.04973 -0.599929 -0.266719 1.04973 -0.609179 -0.269519 1.04973 -0.607179 -0.273769 1.04973 -0.600179 -0.270105 1.04973 -0.600179 -0.260933 1.04973 -0.607179 -0.257269 1.04973 -0.599929 -0.236719 1.04973 -0.599929 -0.234319 1.04973 -0.600179 -0.230933 1.04973 -0.603843 -0.227269 1.04973 -0.607179 -0.213769 1.04973 -0.603843 -0.213769 1.04973 -0.607179 -0.227269 1.04973 -0.603843 -0.197269 1.04973 -0.607179 -0.197269 1.04973 -0.607179 -0.183769 1.04973 -0.603843 -0.183769 1.04973 -0.609179 -0.179519 1.04973 -0.600179 -0.180105 1.04973 -0.598764 -0.169519 1.04973 -0.596665 -0.169519 1.04973 -0.595379 -0.169769 1.04973 -0.600179 -0.173033 1.04973 -0.600179 -0.170933 1.04973 -0.603843 -0.167269 1.04973 -0.607179 -0.167269 1.04973 -0.594179 -0.169819 1.04973 -0.592979 -0.169769 1.04973 -0.585929 -0.162519 1.04973 -0.581179 -0.171519 1.04973 -0.579179 -0.171519 1.04973 -0.588429 -0.176719 1.04973 -0.588179 -0.180105 1.04973 -0.584514 -0.183769 1.04973 -0.581179 -0.183769 1.04973 -0.581179 -0.197269 1.04973 -0.584514 -0.197269 1.04973 -0.588479 -0.205519 1.04973 -0.579179 -0.201519 1.04973 -0.588179 -0.203033 1.04973 -0.588179 -0.208005 1.04973 -0.588179 -0.210105 1.04973 -0.588179 -0.230933 1.04973 -0.581179 -0.209519 1.04973 -0.579179 -0.231519 1.04973 -0.588179 -0.233033 1.04973 -0.584514 -0.243769 1.04973 -0.581179 -0.243769 1.04973 -0.581179 -0.257269 1.04973 -0.584514 -0.257269 1.04973 -0.588179 -0.263033 1.04973 -0.588179 -0.268005 1.04973 -0.584514 -0.273769 1.04973 -0.581779 -0.276669 1.04973 -0.581179 -0.273769 1.04973 -0.581179 -0.287269 1.04973 -0.584514 -0.287269 1.04973 -0.589159 -0.289226 1.04973 -0.588429 -0.294319 1.04973 -0.588429 -0.296719 1.04973 -0.588179 -0.300105 1.04973 -0.581179 -0.303769 1.04973 -0.581179 -0.317269 1.04973 -0.584514 -0.317269 1.04973 -0.588179 -0.320933 1.04973 -0.589159 -0.319226 1.04973 -0.579179 -0.299519 1.04973 -0.588429 -0.324319 1.04973 -0.579179 -0.329519 1.04973 -0.581179 -0.333769 1.04973 -0.588179 -0.350933 1.04973 -0.588429 -0.354319 1.04973 -0.588179 -0.358005 1.04973 -0.584514 -0.363769 1.04973 -0.579179 -0.381519 1.04973 -0.581179 -0.381519 1.04973 -0.584514 -0.377269 1.04973 -0.581179 -0.377269 1.04973 -0.588179 -0.383033 1.04973 -0.588429 -0.384319 1.04973 -0.589159 -0.391812 1.04973 -0.581179 -0.389519 1.04973 -0.581179 -0.411519 1.04973 -0.584514 -0.407269 1.04973 -0.584514 -0.423769 1.04973 -0.581179 -0.423769 1.04973 -0.579179 -0.441519 1.04973 -0.581179 -0.441519 1.04973 -0.588179 -0.443033 1.04973 -0.588429 -0.444319 1.04973 -0.588179 -0.440933 1.04973 -0.588179 -0.450105 1.04973 -0.584514 -0.453769 1.04973 -0.589593 -0.451519 1.04973 -0.592979 -0.451269 1.04973 -0.581179 -0.460519 1.04973 -0.581179 -0.453769 1.04973 -0.579179 -0.449519 1.04973 -0.595379 -0.451269 1.04973 -0.596665 -0.451519 1.04973 -0.589866 -0.199519 1.04973 -0.594127 -0.300966 1.04974 -0.592747 -0.289519 1.04973 -0.59561 -0.289519 1.04973 -0.588179 -0.330105 1.04973 -0.588179 -0.360105 1.04973 -0.598492 -0.391519 1.04973 -0.588179 -0.390105 1.04973 -0.588179 -0.420105 1.04973 -0.589593 -0.169519 1.04973 -0.591693 -0.169519 1.04973 -0.607179 -0.347269 1.04973 -0.600179 -0.350933 1.04973 -0.581179 -0.347269 1.04973 -0.607179 -0.377269 1.04973 -0.581179 -0.363769 1.04973 -0.600179 -0.410933 1.04973 -0.581179 -0.393769 1.04973 -0.607179 -0.437269 1.04973 -0.603843 -0.437269 1.04973 -0.600179 -0.440933 1.04973 -0.584514 -0.437269 1.04973 -0.583833 -0.435369 1.04973 -0.606579 -0.426669 1.67973 -0.605579 -0.425669 1.67973 -0.606579 -0.426669 1.04973 -0.606391 -0.426071 1.67971 -0.606385 -0.426171 1.35081 -0.605579 -0.425669 1.04973 -0.606151 -0.435204 1.6797 -0.606579 -0.434369 1.67973 -0.605579 -0.435369 1.04973 -0.606579 -0.434369 1.04973 -0.602763 -0.435662 1.04973 -0.602763 -0.435662 1.67973 -0.60347 -0.435369 1.67973 -0.60347 -0.435369 1.04973 -0.599199 -0.439226 1.04973 -0.599199 -0.439226 1.67973 -0.598492 -0.439519 1.04973 -0.59561 -0.439519 1.67973 -0.59891 -0.439415 1.3661 -0.59561 -0.439519 1.04973 -0.592747 -0.439519 1.67973 -0.594207 -0.440032 1.04976 -0.594168 -0.440028 1.6797 -0.594643 -0.439951 1.21513 -0.592747 -0.439519 1.04973 -0.589866 -0.439519 1.04973 -0.589159 -0.439226 1.67973 -0.589159 -0.439226 1.04973 -0.589866 -0.439519 1.67973 -0.585594 -0.435662 1.04973 -0.585594 -0.435662 1.67973 -0.585306 -0.435473 1.3661 -0.581779 -0.434369 1.04973 -0.584887 -0.435369 1.67973 -0.58234 -0.435249 1.38373 -0.581779 -0.434369 1.67973 -0.582779 -0.425669 1.04973 -0.581779 -0.426669 1.04973 -0.581779 -0.426669 1.67973 -0.582095 -0.425878 1.67971 -0.583833 -0.425669 1.67973 -0.581947 -0.426145 1.35528 -0.585594 -0.425376 1.04973 -0.585594 -0.425376 1.67973 -0.584887 -0.425669 1.04973 -0.589866 -0.421519 1.67973 -0.589447 -0.421623 1.3661 -0.589159 -0.421812 1.67973 -0.589159 -0.421812 1.04973 -0.589866 -0.421519 1.04973 -0.592747 -0.421519 1.67973 -0.592747 -0.421519 1.04973 -0.594174 -0.420953 1.67972 -0.594155 -0.420977 1.04973 -0.59561 -0.421519 1.67973 -0.59561 -0.421519 1.04973 -0.599199 -0.421812 1.67973 -0.598492 -0.421519 1.67973 -0.598492 -0.421519 1.04973 -0.598722 -0.421571 1.36377 -0.599199 -0.421812 1.04973 -0.60347 -0.425669 1.67973 -0.602763 -0.425376 1.67973 -0.602763 -0.425376 1.04973 -0.60347 -0.425669 1.04973 -0.607179 -0.453769 1.67973 -0.598179 -0.458519 1.67973 -0.596665 -0.451519 1.67973 -0.592979 -0.451269 1.67973 -0.589593 -0.451519 1.67973 -0.585929 -0.455183 1.67973 -0.584514 -0.453769 1.67973 -0.585929 -0.458519 1.67973 -0.581179 -0.453769 1.67973 -0.581179 -0.449519 1.67973 -0.579179 -0.449519 1.67973 -0.588429 -0.446719 1.67973 -0.588429 -0.444319 1.67973 -0.581179 -0.441519 1.67973 -0.579179 -0.441519 1.67973 -0.588179 -0.420105 1.67973 -0.588429 -0.416719 1.67973 -0.588479 -0.415519 1.67973 -0.584514 -0.407269 1.67973 -0.585594 -0.405662 1.67973 -0.581179 -0.393769 1.67973 -0.584514 -0.393769 1.67973 -0.588179 -0.390105 1.67973 -0.588429 -0.386719 1.67973 -0.588179 -0.383033 1.67973 -0.588179 -0.380933 1.67973 -0.579179 -0.381519 1.67973 -0.581179 -0.363769 1.67973 -0.584514 -0.363769 1.67973 -0.579179 -0.359519 1.67973 -0.588179 -0.358005 1.67973 -0.588429 -0.356719 1.67973 -0.588179 -0.353033 1.67973 -0.581179 -0.347269 1.67973 -0.581179 -0.351519 1.67973 -0.581179 -0.333769 1.67973 -0.584514 -0.333769 1.67973 -0.588429 -0.326719 1.67973 -0.588429 -0.324319 1.67973 -0.581179 -0.321519 1.67973 -0.584514 -0.303769 1.67973 -0.588179 -0.300105 1.67973 -0.588429 -0.296719 1.67973 -0.579179 -0.321519 1.67973 -0.581179 -0.299519 1.67973 -0.588479 -0.295519 1.67973 -0.588429 -0.294319 1.67973 -0.584514 -0.287269 1.67973 -0.582779 -0.285369 1.67973 -0.589159 -0.271812 1.67973 -0.588429 -0.266719 1.67973 -0.581179 -0.291519 1.67973 -0.581179 -0.287269 1.67973 -0.581179 -0.273769 1.67973 -0.588179 -0.270105 1.67973 -0.588179 -0.260933 1.67973 -0.588179 -0.240105 1.67973 -0.579179 -0.261519 1.67973 -0.579179 -0.239519 1.67973 -0.584514 -0.213769 1.67973 -0.579179 -0.231519 1.67973 -0.579179 -0.209519 1.67973 -0.581179 -0.213769 1.67973 -0.588179 -0.208005 1.67973 -0.588429 -0.206719 1.67973 -0.588479 -0.205519 1.67973 -0.588429 -0.204319 1.67973 -0.584514 -0.197269 1.67973 -0.581179 -0.197269 1.67973 -0.581179 -0.183769 1.67973 -0.584514 -0.183769 1.67973 -0.588429 -0.176719 1.67973 -0.579179 -0.201519 1.67973 -0.579179 -0.179519 1.67973 -0.591693 -0.169519 1.67973 -0.592979 -0.169769 1.67973 -0.588179 -0.170933 1.67973 -0.589593 -0.169519 1.67973 -0.581179 -0.167269 1.67973 -0.579179 -0.171519 1.67973 -0.590179 -0.160519 1.67973 -0.602429 -0.162519 1.67973 -0.598179 -0.160519 1.67973 -0.607179 -0.167269 1.67973 -0.607179 -0.171519 1.67973 -0.599879 -0.175519 1.67973 -0.603843 -0.183769 1.67973 -0.607179 -0.183769 1.67973 -0.603843 -0.197269 1.67973 -0.607179 -0.201519 1.67973 -0.600179 -0.208005 1.67973 -0.600179 -0.210105 1.67973 -0.603843 -0.213769 1.67973 -0.607179 -0.213769 1.67973 -0.607179 -0.227269 1.67973 -0.603843 -0.227269 1.67973 -0.600179 -0.230933 1.67973 -0.599929 -0.234319 1.67973 -0.609179 -0.231519 1.67973 -0.600179 -0.238005 1.67973 -0.602763 -0.245376 1.67973 -0.603843 -0.243769 1.67973 -0.607179 -0.257269 1.67973 -0.603843 -0.257269 1.67973 -0.599199 -0.259226 1.67973 -0.609179 -0.239519 1.67973 -0.607179 -0.243769 1.67973 -0.609179 -0.261519 1.67973 -0.607179 -0.261519 1.67973 -0.600179 -0.263033 1.67973 -0.599929 -0.266719 1.67973 -0.600179 -0.270105 1.67973 -0.603843 -0.273769 1.67973 -0.607179 -0.287269 1.67973 -0.603843 -0.287269 1.67973 -0.607179 -0.269519 1.67973 -0.607179 -0.273769 1.67973 -0.600179 -0.293033 1.67973 -0.599929 -0.296719 1.67973 -0.600179 -0.298005 1.67973 -0.600179 -0.300105 1.67973 -0.609179 -0.321519 1.67973 -0.600179 -0.320933 1.67973 -0.603843 -0.317269 1.67973 -0.599929 -0.326719 1.67973 -0.603843 -0.333769 1.67973 -0.607179 -0.329519 1.67973 -0.609179 -0.329519 1.67973 -0.609179 -0.351519 1.67973 -0.607179 -0.351519 1.67973 -0.607179 -0.347269 1.67973 -0.600179 -0.350933 1.67973 -0.609179 -0.359519 1.67973 -0.609179 -0.381519 1.67973 -0.607179 -0.381519 1.67973 -0.603843 -0.377269 1.67973 -0.604524 -0.375369 1.67973 -0.607179 -0.377269 1.67973 -0.600179 -0.383033 1.67973 -0.599929 -0.384319 1.67973 -0.599879 -0.385519 1.67973 -0.599929 -0.386719 1.67973 -0.603843 -0.393769 1.67973 -0.609179 -0.389519 1.67973 -0.609179 -0.411519 1.67973 -0.599929 -0.414319 1.67973 -0.609179 -0.419519 1.67973 -0.607179 -0.437269 1.67973 -0.603843 -0.437269 1.67973 -0.598492 -0.199519 1.67973 -0.59749 -0.234019 1.67958 -0.592747 -0.229519 1.67973 -0.589866 -0.289519 1.67973 -0.592061 -0.329687 1.67973 -0.588179 -0.350933 1.67973 -0.588479 -0.355519 1.67973 -0.597479 -0.359819 1.67973 -0.600179 -0.390105 1.67973 -0.597489 -0.447019 1.67961 -0.600179 -0.450105 1.67973 -0.598764 -0.169519 1.67973 -0.596665 -0.169519 1.67973 -0.595379 -0.169769 1.67973 -0.607179 -0.303769 1.67973 -0.581179 -0.317269 1.67973 -0.584514 -0.317269 1.67973 -0.607179 -0.333769 1.67973 -0.584514 -0.347269 1.67973 -0.603843 -0.347269 1.67973 -0.607179 -0.363769 1.67973 -0.602763 -0.365376 1.67973 -0.581179 -0.377269 1.67973 -0.584514 -0.377269 1.67973 -0.607179 -0.407269 1.67973 -0.607179 -0.393769 1.67973 -0.581179 -0.407269 1.67973 -0.607179 -0.423769 1.67973 -0.581179 -0.437269 1.67973 -0.588179 -0.440933 1.67973 -0.605579 -0.435369 1.67973 -0.605579 -0.405369 1.04973 -0.604524 -0.405369 1.67973 -0.606579 -0.404369 1.67973 -0.60624 -0.405128 1.67968 -0.606579 -0.404369 1.04973 -0.602763 -0.405662 1.04973 -0.60347 -0.405369 1.04973 -0.602763 -0.405662 1.67973 -0.599199 -0.409226 1.04973 -0.599199 -0.409226 1.67973 -0.59891 -0.409415 1.3661 -0.598492 -0.409519 1.67973 -0.59561 -0.409519 1.04973 -0.59561 -0.409519 1.67973 -0.594261 -0.410032 1.67956 -0.594242 -0.410013 1.04979 -0.592747 -0.409519 1.67973 -0.592747 -0.409519 1.04973 -0.589159 -0.409226 1.67973 -0.589159 -0.409226 1.04973 -0.589866 -0.409519 1.04973 -0.589866 -0.409519 1.67973 -0.584887 -0.405369 1.67973 -0.585594 -0.405662 1.04973 -0.585306 -0.405473 1.3661 -0.581779 -0.404369 1.67973 -0.582084 -0.405127 1.0498 -0.583833 -0.405369 1.04973 -0.582779 -0.405369 1.67973 -0.581779 -0.404369 1.04973 -0.583833 -0.395669 1.67973 -0.581779 -0.396669 1.67973 -0.581779 -0.396669 1.04973 -0.582779 -0.395669 1.04973 -0.582095 -0.395878 1.67971 -0.585594 -0.395376 1.67973 -0.584887 -0.395669 1.04973 -0.585594 -0.395376 1.04973 -0.589866 -0.391519 1.04973 -0.589866 -0.391519 1.67973 -0.589447 -0.391623 1.3661 -0.589159 -0.391812 1.67973 -0.592747 -0.391519 1.67973 -0.592747 -0.391519 1.04973 -0.59561 -0.391519 1.04973 -0.594174 -0.390953 1.67972 -0.594033 -0.391008 1.04973 -0.59561 -0.391519 1.67973 -0.599199 -0.391812 1.67973 -0.598722 -0.391571 1.36377 -0.598492 -0.391519 1.67973 -0.60347 -0.395669 1.67973 -0.602763 -0.395376 1.67973 -0.60347 -0.395669 1.04973 -0.602763 -0.395376 1.04973 -0.606579 -0.396669 1.67973 -0.606384 -0.396022 1.67971 -0.606192 -0.395952 1.34292 -0.606579 -0.396669 1.04973 -0.606454 -0.396158 1.04977 -0.605579 -0.395669 1.67973 -0.605579 -0.395669 1.04973 -0.605579 -0.375369 1.04973 -0.606579 -0.374369 1.67973 -0.606579 -0.374369 1.04973 -0.602763 -0.375662 1.67973 -0.60347 -0.375369 1.04973 -0.602763 -0.375662 1.04973 -0.599199 -0.379226 1.67973 -0.598492 -0.379519 1.67973 -0.598492 -0.379519 1.04973 -0.599199 -0.379226 1.04973 -0.59891 -0.379415 1.3661 -0.59561 -0.379519 1.04973 -0.592747 -0.379519 1.04973 -0.594105 -0.380054 1.67969 -0.593584 -0.379877 1.34083 -0.59561 -0.379519 1.67973 -0.594295 -0.380023 1.04977 -0.591306 -0.379519 1.67973 -0.593058 -0.379628 1.67973 -0.589159 -0.379226 1.67973 -0.589866 -0.379519 1.04973 -0.589635 -0.379467 1.36377 -0.589159 -0.379226 1.04973 -0.585594 -0.375662 1.67973 -0.585594 -0.375662 1.04973 -0.585306 -0.375473 1.3661 -0.583833 -0.375369 1.67973 -0.58191 -0.374853 1.3486 -0.582084 -0.375069 1.04976 -0.582027 -0.375071 1.67957 -0.583833 -0.375369 1.04973 -0.581779 -0.374369 1.67973 -0.581779 -0.374369 1.04973 -0.582779 -0.365669 1.67973 -0.581779 -0.366669 1.67973 -0.582077 -0.365903 1.67973 -0.582211 -0.365911 1.36835 -0.581779 -0.366669 1.04973 -0.582779 -0.365669 1.04973 -0.584887 -0.365669 1.67973 -0.585594 -0.365376 1.04973 -0.585594 -0.365376 1.67973 -0.584887 -0.365669 1.04973 -0.589159 -0.361812 1.04973 -0.589159 -0.361812 1.67973 -0.589866 -0.361519 1.67973 -0.589866 -0.361519 1.04973 -0.589447 -0.361623 1.3661 -0.592747 -0.361519 1.67973 -0.594174 -0.360953 1.67972 -0.592747 -0.361519 1.04973 -0.594269 -0.361009 1.04976 -0.59561 -0.361519 1.67973 -0.59561 -0.361519 1.04973 -0.599199 -0.361812 1.04973 -0.598492 -0.361519 1.04973 -0.598722 -0.361571 1.36377 -0.598492 -0.361519 1.67973 -0.599199 -0.361812 1.67973 -0.602763 -0.365376 1.04973 -0.60347 -0.365669 1.04973 -0.606579 -0.366669 1.04973 -0.60347 -0.365669 1.67973 -0.606404 -0.366068 1.67972 -0.606579 -0.366669 1.67973 -0.605579 -0.365669 1.04973 -0.606579 -0.344369 1.67973 -0.605579 -0.345369 1.67973 -0.606579 -0.344369 1.04973 -0.605579 -0.345369 1.04973 -0.60347 -0.345369 1.67973 -0.602763 -0.345662 1.67973 -0.60347 -0.345369 1.04973 -0.602763 -0.345662 1.04973 -0.599199 -0.349226 1.67973 -0.598492 -0.349519 1.04973 -0.598492 -0.349519 1.67973 -0.599199 -0.349226 1.04973 -0.59891 -0.349415 1.3661 -0.59561 -0.349519 1.67973 -0.59561 -0.349519 1.04973 -0.594112 -0.350042 1.6797 -0.592747 -0.349519 1.04973 -0.592747 -0.349519 1.67973 -0.589159 -0.349226 1.04973 -0.589159 -0.349226 1.67973 -0.589866 -0.349519 1.04973 -0.589866 -0.349519 1.67973 -0.585594 -0.345662 1.67973 -0.584887 -0.345369 1.04973 -0.585594 -0.345662 1.04973 -0.585306 -0.345473 1.3661 -0.583833 -0.345369 1.67973 -0.582779 -0.345369 1.04973 -0.582027 -0.345072 1.67957 -0.581779 -0.344369 1.67973 -0.581779 -0.344369 1.04973 -0.581779 -0.336669 1.04973 -0.582779 -0.335669 1.67973 -0.582779 -0.335669 1.04973 -0.581779 -0.336669 1.67973 -0.582114 -0.336023 1.34328 -0.584887 -0.335669 1.67973 -0.585594 -0.335376 1.67973 -0.584887 -0.335669 1.04973 -0.585594 -0.335376 1.04973 -0.589866 -0.331519 1.04973 -0.589159 -0.331812 1.67973 -0.589866 -0.331519 1.67973 -0.589159 -0.331812 1.04973 -0.589447 -0.331623 1.3661 -0.592747 -0.331519 1.67973 -0.59383 -0.33107 1.39387 -0.592747 -0.331519 1.04973 -0.594156 -0.331043 1.67969 -0.594694 -0.331122 1.44007 -0.594144 -0.330973 1.04975 -0.595299 -0.33141 1.67973 -0.59561 -0.331519 1.04973 -0.598492 -0.331519 1.67973 -0.595448 -0.331483 1.36448 -0.599199 -0.331812 1.67973 -0.598722 -0.331571 1.36377 -0.598492 -0.331519 1.04973 -0.599199 -0.331812 1.04973 -0.60347 -0.335669 1.04973 -0.602763 -0.335376 1.67973 -0.60347 -0.335669 1.67973 -0.606579 -0.336669 1.04973 -0.605579 -0.335669 1.67973 -0.605579 -0.335669 1.04973 -0.606579 -0.336669 1.67973 -0.605957 -0.185755 1.35256 -0.605579 -0.185669 1.04973 -0.606383 -0.186039 1.04974 -0.606579 -0.186669 1.04973 -0.604524 -0.185669 1.67973 -0.605666 -0.185673 1.3661 -0.605957 -0.185755 1.33716 -0.605957 -0.185755 1.36703 -0.606363 -0.18597 1.6797 -0.606579 -0.186669 1.67973 -0.606472 -0.186253 1.41866 -0.60347 -0.185669 1.04973 -0.602763 -0.185376 1.04973 -0.602763 -0.185376 1.67973 -0.598492 -0.181519 1.04973 -0.598492 -0.181519 1.67973 -0.599199 -0.181812 1.67973 -0.599199 -0.181812 1.04973 -0.59561 -0.181519 1.67973 -0.594146 -0.181 1.67969 -0.593497 -0.181174 1.35375 -0.594158 -0.181078 1.04975 -0.594411 -0.181053 1.3067 -0.59561 -0.181519 1.04973 -0.592747 -0.181519 1.04973 -0.592747 -0.181519 1.67973 -0.589159 -0.181812 1.04973 -0.589866 -0.181519 1.67973 -0.589159 -0.181812 1.67973 -0.589866 -0.181519 1.04973 -0.589447 -0.181623 1.3661 -0.585594 -0.185376 1.04973 -0.585594 -0.185376 1.67973 -0.584887 -0.185669 1.04973 -0.581779 -0.186669 1.04973 -0.583833 -0.185669 1.67973 -0.581942 -0.186146 1.31907 -0.581779 -0.186669 1.67973 -0.582779 -0.185669 1.04973 -0.582779 -0.195369 1.67973 -0.581779 -0.194369 1.67973 -0.581779 -0.194369 1.04973 -0.583833 -0.195369 1.04973 -0.582021 -0.195013 1.0498 -0.584887 -0.195369 1.67973 -0.585594 -0.195662 1.67973 -0.585594 -0.195662 1.04973 -0.585306 -0.195473 1.3661 -0.589866 -0.199519 1.67973 -0.589159 -0.199226 1.04973 -0.589159 -0.199226 1.67973 -0.592747 -0.199519 1.04973 -0.592747 -0.199519 1.67973 -0.593965 -0.201799 1.68035 -0.59561 -0.199519 1.04973 -0.593867 -0.199973 1.38717 -0.594152 -0.200087 1.04973 -0.59561 -0.199519 1.67973 -0.599199 -0.199226 1.04973 -0.598492 -0.199519 1.04973 -0.599199 -0.199226 1.67973 -0.598791 -0.199469 1.36797 -0.602763 -0.195662 1.67973 -0.602763 -0.195662 1.04973 -0.604524 -0.195369 1.67973 -0.606579 -0.194369 1.67973 -0.604524 -0.195369 1.04973 -0.60633 -0.195093 1.67973 -0.606579 -0.194369 1.04973 -0.606338 -0.195121 1.04978 -0.605579 -0.215669 1.67973 -0.606331 -0.216013 1.6797 -0.605579 -0.215669 1.04973 -0.606579 -0.216669 1.67973 -0.606579 -0.216669 1.04973 -0.602763 -0.215376 1.67973 -0.60347 -0.215669 1.67973 -0.602763 -0.215376 1.04973 -0.60347 -0.215669 1.04973 -0.598492 -0.211519 1.67973 -0.598492 -0.211519 1.04973 -0.598722 -0.211571 1.36377 -0.599199 -0.211812 1.67973 -0.599199 -0.211812 1.04973 -0.59561 -0.211519 1.67973 -0.59561 -0.211519 1.04973 -0.594245 -0.210966 1.67972 -0.593497 -0.211174 1.35375 -0.592747 -0.211519 1.04973 -0.592747 -0.211519 1.67973 -0.589866 -0.211519 1.67973 -0.589159 -0.211812 1.67973 -0.589159 -0.211812 1.04973 -0.589866 -0.211519 1.04973 -0.589447 -0.211623 1.3661 -0.584887 -0.215669 1.04973 -0.585594 -0.215376 1.67973 -0.585594 -0.215376 1.04973 -0.583833 -0.215669 1.67973 -0.582779 -0.215669 1.04973 -0.581779 -0.216669 1.04973 -0.581779 -0.216669 1.67973 -0.581779 -0.224369 1.67973 -0.582779 -0.225369 1.67973 -0.581779 -0.224369 1.04973 -0.583833 -0.225369 1.04973 -0.582014 -0.225005 1.0498 -0.585594 -0.225662 1.67973 -0.585594 -0.225662 1.04973 -0.585306 -0.225473 1.3661 -0.584887 -0.225369 1.67973 -0.589866 -0.229519 1.67973 -0.589866 -0.229519 1.04973 -0.589159 -0.229226 1.04973 -0.589159 -0.229226 1.67973 -0.589635 -0.229467 1.36377 -0.592747 -0.229519 1.04973 -0.594088 -0.230035 1.04983 -0.594643 -0.229951 1.24621 -0.59561 -0.229519 1.04973 -0.598492 -0.229519 1.04973 -0.599199 -0.229226 1.67973 -0.59891 -0.229416 1.3661 -0.599199 -0.229226 1.04973 -0.59561 -0.229519 1.67973 -0.60347 -0.225369 1.67973 -0.602763 -0.225662 1.67973 -0.602763 -0.225662 1.04973 -0.604524 -0.225369 1.04973 -0.605579 -0.225369 1.67973 -0.606296 -0.225105 1.67969 -0.606579 -0.224369 1.67973 -0.606579 -0.224369 1.04973 -0.606579 -0.246669 1.67973 -0.604524 -0.245669 1.67973 -0.606579 -0.246669 1.04973 -0.605579 -0.245669 1.04973 -0.606335 -0.246076 1.33281 -0.606103 -0.245816 1.67965 -0.60347 -0.245669 1.04973 -0.602763 -0.245376 1.04973 -0.598492 -0.241519 1.67973 -0.598492 -0.241519 1.04973 -0.599199 -0.241812 1.04973 -0.599199 -0.241812 1.67973 -0.595448 -0.241484 1.36448 -0.59561 -0.241519 1.67973 -0.59561 -0.241519 1.04973 -0.594146 -0.241 1.67969 -0.593497 -0.241174 1.35375 -0.594233 -0.240993 1.04978 -0.592747 -0.241519 1.04973 -0.592747 -0.241519 1.67973 -0.589866 -0.241519 1.67973 -0.589159 -0.241812 1.67973 -0.589866 -0.241519 1.04973 -0.589159 -0.241812 1.04973 -0.589447 -0.241623 1.3661 -0.585594 -0.245376 1.04973 -0.585594 -0.245376 1.67973 -0.584887 -0.245669 1.67973 -0.581779 -0.246669 1.04973 -0.583833 -0.245669 1.04973 -0.582095 -0.245878 1.67971 -0.582163 -0.24596 1.36046 -0.582779 -0.245669 1.67973 -0.581779 -0.246669 1.67973 -0.58201 -0.246028 1.04975 -0.582779 -0.255369 1.67973 -0.581779 -0.254369 1.67973 -0.582779 -0.255369 1.04973 -0.582233 -0.255204 1.04978 -0.581779 -0.254369 1.04973 -0.584887 -0.255369 1.67973 -0.585594 -0.255662 1.04973 -0.585594 -0.255662 1.67973 -0.585306 -0.255473 1.3661 -0.584887 -0.255369 1.04973 -0.589866 -0.259519 1.04973 -0.589159 -0.259226 1.04973 -0.589866 -0.259519 1.67973 -0.589159 -0.259226 1.67973 -0.592747 -0.259519 1.04973 -0.594164 -0.260074 1.67971 -0.59561 -0.259519 1.67973 -0.592747 -0.259519 1.67973 -0.594228 -0.260056 1.04977 -0.59561 -0.259519 1.04973 -0.599199 -0.259226 1.04973 -0.598492 -0.259519 1.67973 -0.59891 -0.259416 1.3661 -0.598492 -0.259519 1.04973 -0.602763 -0.255662 1.67973 -0.60347 -0.255369 1.67973 -0.605579 -0.255369 1.04973 -0.602763 -0.255662 1.04973 -0.606579 -0.254369 1.67973 -0.606579 -0.254369 1.04973 -0.605579 -0.255369 1.67973 -0.606579 -0.276669 1.04973 -0.606452 -0.276148 1.04975 -0.605579 -0.275669 1.67973 -0.606252 -0.27602 1.35659 -0.606579 -0.276669 1.67973 -0.605579 -0.275669 1.04973 -0.60347 -0.275669 1.67973 -0.602763 -0.275376 1.67973 -0.60347 -0.275669 1.04973 -0.602763 -0.275376 1.04973 -0.598492 -0.271519 1.04973 -0.599199 -0.271812 1.04973 -0.599199 -0.271812 1.67973 -0.595299 -0.27141 1.67973 -0.598492 -0.271519 1.67973 -0.595448 -0.271483 1.36448 -0.59561 -0.271519 1.04973 -0.592747 -0.271519 1.67973 -0.59425 -0.270991 1.04973 -0.594174 -0.270953 1.67972 -0.592747 -0.271519 1.04973 -0.589159 -0.271812 1.04973 -0.589866 -0.271519 1.67973 -0.589866 -0.271519 1.04973 -0.589447 -0.271623 1.3661 -0.584887 -0.275669 1.67973 -0.583833 -0.275669 1.04973 -0.585594 -0.275376 1.67973 -0.585594 -0.275376 1.04973 -0.582095 -0.275878 1.67971 -0.582779 -0.275669 1.67973 -0.581779 -0.276669 1.67973 -0.581939 -0.276154 1.37951 -0.582779 -0.285369 1.04973 -0.581779 -0.284369 1.67973 -0.581779 -0.284369 1.04973 -0.584887 -0.285369 1.67973 -0.585594 -0.285662 1.04973 -0.585306 -0.285473 1.3661 -0.585594 -0.285662 1.67973 -0.584887 -0.285369 1.04973 -0.589159 -0.289226 1.67973 -0.589866 -0.289519 1.04973 -0.589635 -0.289467 1.36377 -0.592747 -0.289519 1.67973 -0.594253 -0.290094 1.04974 -0.594092 -0.290002 1.67969 -0.59561 -0.289519 1.67973 -0.599199 -0.289226 1.04973 -0.59891 -0.289416 1.3661 -0.598492 -0.289519 1.67973 -0.598492 -0.289519 1.04973 -0.599199 -0.289226 1.67973 -0.60347 -0.285369 1.04973 -0.602763 -0.285662 1.67973 -0.602763 -0.285662 1.04973 -0.60347 -0.285369 1.67973 -0.603132 -0.285439 1.3661 -0.605579 -0.285369 1.04973 -0.606579 -0.284369 1.67973 -0.605579 -0.285369 1.67973 -0.606579 -0.284369 1.04973 -0.606319 -0.28499 1.38045 -0.606579 -0.306669 1.04973 -0.605579 -0.305669 1.67973 -0.606579 -0.306669 1.67973 -0.606364 -0.306065 1.17678 -0.605957 -0.305755 1.19201 -0.605579 -0.305669 1.04973 -0.605957 -0.305755 1.17661 -0.605957 -0.305755 1.20648 -0.60347 -0.305669 1.67973 -0.602763 -0.305376 1.67973 -0.602763 -0.305376 1.04973 -0.60347 -0.305669 1.04973 -0.599199 -0.301812 1.04973 -0.598492 -0.301519 1.67973 -0.598492 -0.301519 1.04973 -0.599199 -0.301812 1.67973 -0.59561 -0.301519 1.67973 -0.592747 -0.301519 1.67973 -0.594174 -0.300953 1.67972 -0.59561 -0.301519 1.04973 -0.592747 -0.301519 1.04973 -0.589866 -0.301519 1.67973 -0.589159 -0.301812 1.67973 -0.589159 -0.301812 1.04973 -0.589866 -0.301519 1.04973 -0.585594 -0.305376 1.04973 -0.584887 -0.305669 1.04973 -0.585594 -0.305376 1.67973 -0.581779 -0.306669 1.67973 -0.583833 -0.305669 1.67973 -0.582224 -0.305841 1.67968 -0.581909 -0.306189 1.4539 -0.581779 -0.306669 1.04973 -0.582063 -0.305943 1.04974 -0.582779 -0.305669 1.04973 -0.582565 -0.305704 1.45396 -0.583833 -0.315369 1.67973 -0.582027 -0.315071 1.67957 -0.581779 -0.314369 1.67973 -0.581779 -0.314369 1.04973 -0.582779 -0.315369 1.04973 -0.585594 -0.315662 1.67973 -0.585594 -0.315662 1.04973 -0.585306 -0.315473 1.3661 -0.584887 -0.315369 1.04973 -0.589866 -0.319519 1.04973 -0.589159 -0.319226 1.67973 -0.589866 -0.319519 1.67973 -0.592747 -0.319519 1.67973 -0.592747 -0.319519 1.04973 -0.59414 -0.320012 1.67964 -0.594208 -0.319964 1.35364 -0.594206 -0.319981 1.04977 -0.595448 -0.319554 1.36448 -0.59561 -0.319519 1.67973 -0.59561 -0.319519 1.04973 -0.598492 -0.319519 1.67973 -0.599199 -0.319226 1.67973 -0.599199 -0.319226 1.04973 -0.598492 -0.319519 1.04973 -0.602763 -0.315662 1.67973 -0.60347 -0.315369 1.67973 -0.602763 -0.315662 1.04973 -0.603132 -0.315439 1.3661 -0.605579 -0.315369 1.67973 -0.606579 -0.314369 1.67973 -0.606579 -0.314369 1.04973 -0.604524 -0.315369 1.04973 -0.598422 -0.177891 1.04973 -0.598479 -0.17849 1.67973 -0.597752 -0.177186 1.67973 -0.597386 -0.176774 1.67969 -0.597415 -0.176924 1.36603 -0.597415 -0.176924 1.35102 -0.597415 -0.176924 1.33451 -0.597415 -0.176924 1.29961 -0.597566 -0.175667 1.15401 -0.597603 -0.177116 1.04973 -0.597901 -0.177255 1.04973 -0.597553 -0.175224 1.38837 -0.597489 -0.17402 1.67959 -0.597385 -0.174266 1.04985 -0.597867 -0.173764 1.04973 -0.598294 -0.173379 1.41506 -0.598421 -0.172959 1.67971 -0.598479 -0.172219 1.04973 -0.598221 -0.171563 1.67972 -0.597479 -0.171219 1.04973 -0.597479 -0.171219 1.67973 -0.595999 -0.171714 1.67972 -0.596259 -0.17139 1.04976 -0.594731 -0.172199 1.67972 -0.595582 -0.172277 1.35848 -0.594701 -0.172202 1.04973 -0.594179 -0.172145 1.38679 -0.593074 -0.172303 1.67973 -0.592923 -0.172307 1.04973 -0.59179 -0.171291 1.67972 -0.592512 -0.171945 1.67973 -0.590148 -0.171548 1.04975 -0.591208 -0.171219 1.04973 -0.590108 -0.171592 1.6797 -0.589879 -0.172877 1.67973 -0.589879 -0.172548 1.04973 -0.590973 -0.174269 1.67963 -0.590805 -0.175224 1.31236 -0.590754 -0.173922 1.67973 -0.590756 -0.175519 1.67973 -0.590754 -0.173922 1.04973 -0.590942 -0.176924 1.26097 -0.590971 -0.176773 1.67962 -0.590942 -0.176924 1.29249 -0.590942 -0.176924 1.27598 -0.5905 -0.177269 1.04973 -0.590971 -0.176773 1.0499 -0.590754 -0.177116 1.67973 -0.590021 -0.177615 1.67961 -0.591536 -0.179819 1.67973 -0.590153 -0.17954 1.04979 -0.589879 -0.178819 1.67973 -0.589879 -0.17849 1.04973 -0.591536 -0.179819 1.04973 -0.592582 -0.178944 1.67973 -0.592786 -0.178763 1.46219 -0.592512 -0.179093 1.04973 -0.593074 -0.178735 1.04973 -0.593074 -0.178735 1.67973 -0.594239 -0.178936 1.04973 -0.594326 -0.178906 1.31236 -0.596231 -0.179653 1.04985 -0.595283 -0.178735 1.04973 -0.594731 -0.178839 1.6797 -0.596821 -0.179819 1.67973 -0.596005 -0.179302 1.67971 -0.597479 -0.179819 1.67973 -0.598249 -0.179562 1.04976 -0.598479 -0.178819 1.04973 -0.598144 -0.179585 1.67969 -0.596821 -0.179819 1.04973 -0.598479 -0.448161 1.67973 -0.598479 -0.448161 1.04973 -0.597498 -0.446072 1.67973 -0.597489 -0.447016 1.04978 -0.597573 -0.445592 1.27119 -0.597493 -0.44491 1.04974 -0.597394 -0.444414 1.67973 -0.597564 -0.443985 1.04984 -0.598001 -0.443658 1.67968 -0.598479 -0.442548 1.04973 -0.598479 -0.442548 1.67973 -0.598232 -0.441508 1.67971 -0.598252 -0.441459 1.04973 -0.596281 -0.441412 1.3682 -0.597479 -0.441219 1.04973 -0.595985 -0.441723 1.04974 -0.59715 -0.441219 1.67973 -0.596099 -0.441577 1.67972 -0.595433 -0.442312 1.67973 -0.595283 -0.442303 1.04973 -0.593552 -0.442204 1.6797 -0.593884 -0.442145 1.40737 -0.594118 -0.442102 1.04974 -0.592443 -0.441796 1.67973 -0.592267 -0.441576 1.04974 -0.592925 -0.442312 1.04973 -0.591776 -0.441285 1.67971 -0.591208 -0.441219 1.04973 -0.589879 -0.442877 1.67973 -0.590172 -0.441498 1.67972 -0.59041 -0.443687 1.04974 -0.589879 -0.442219 1.04973 -0.590963 -0.444414 1.67973 -0.590754 -0.443922 1.67973 -0.590779 -0.445519 1.26169 -0.59087 -0.444882 1.04976 -0.59086 -0.446072 1.67973 -0.590972 -0.446773 1.0499 -0.590605 -0.447185 1.04973 -0.590024 -0.447693 1.36452 -0.590345 -0.447395 1.67971 -0.590178 -0.449472 1.37179 -0.589879 -0.44849 1.67973 -0.589879 -0.448161 1.04973 -0.590185 -0.449448 1.04976 -0.590879 -0.449819 1.67973 -0.592287 -0.44939 1.67973 -0.592048 -0.449632 1.24581 -0.591208 -0.449819 1.04973 -0.592361 -0.449305 1.04977 -0.593074 -0.448735 1.67973 -0.592776 -0.448765 1.32992 -0.593074 -0.448735 1.04973 -0.594326 -0.448906 1.31236 -0.594761 -0.448835 1.04973 -0.595776 -0.448944 1.67973 -0.594731 -0.448839 1.67971 -0.595846 -0.449093 1.04973 -0.596246 -0.449654 1.67971 -0.597479 -0.449819 1.67973 -0.598223 -0.449548 1.67967 -0.596821 -0.449819 1.04973 -0.598479 -0.448819 1.04973 -0.597564 -0.417054 1.67961 -0.597498 -0.416072 1.67973 -0.597479 -0.416837 1.04976 -0.59749 -0.414018 1.6797 -0.597582 -0.415683 1.0498 -0.597579 -0.415519 1.38837 -0.597385 -0.414266 1.04975 -0.598479 -0.412219 1.67973 -0.597752 -0.413853 1.04973 -0.59715 -0.411219 1.04973 -0.596821 -0.411219 1.67973 -0.598235 -0.41146 1.04974 -0.598479 -0.412877 1.04973 -0.596103 -0.411533 1.3661 -0.595846 -0.411945 1.67973 -0.596042 -0.411618 1.04973 -0.595431 -0.4123 1.67973 -0.593884 -0.412145 1.40737 -0.594701 -0.412203 1.04973 -0.593626 -0.412199 1.67971 -0.592443 -0.411796 1.67973 -0.592267 -0.411577 1.04974 -0.592929 -0.412308 1.04973 -0.590133 -0.411547 1.67971 -0.590167 -0.411467 1.04982 -0.591208 -0.411219 1.04973 -0.591776 -0.411285 1.67971 -0.590754 -0.413922 1.67973 -0.589879 -0.412877 1.67973 -0.590066 -0.413453 1.04976 -0.589879 -0.412548 1.04973 -0.590963 -0.414414 1.67973 -0.590754 -0.413922 1.04973 -0.590865 -0.415024 1.04974 -0.590805 -0.415814 1.40737 -0.590942 -0.416924 1.43358 -0.590942 -0.416924 1.39456 -0.59086 -0.416072 1.67973 -0.590766 -0.41711 1.41707 -0.590963 -0.416624 1.04973 -0.590864 -0.416971 1.43095 -0.590942 -0.416924 1.41857 -0.590868 -0.417013 1.6797 -0.590071 -0.417661 1.31463 -0.590662 -0.417137 1.04982 -0.589947 -0.418042 1.67972 -0.591343 -0.419791 1.04973 -0.589879 -0.41849 1.04973 -0.590062 -0.419386 1.0498 -0.590879 -0.419819 1.67973 -0.592512 -0.419093 1.04973 -0.592061 -0.419687 1.67973 -0.592924 -0.418726 1.67954 -0.595283 -0.418735 1.04973 -0.594239 -0.418936 1.04974 -0.594326 -0.418906 1.31236 -0.593074 -0.418735 1.04973 -0.594731 -0.418839 1.67971 -0.595776 -0.418944 1.67973 -0.596246 -0.419654 1.67971 -0.595776 -0.418944 1.04973 -0.59715 -0.419819 1.04973 -0.598412 -0.418073 1.04975 -0.598479 -0.41849 1.67973 -0.598214 -0.41952 1.67966 -0.598227 -0.419505 1.04978 -0.59715 -0.419819 1.67973 -0.598479 -0.388161 1.67973 -0.597394 -0.386624 1.04973 -0.597385 -0.386772 1.6797 -0.597415 -0.386924 1.17691 -0.597415 -0.386924 1.14539 -0.597415 -0.386924 1.1619 -0.598123 -0.387456 1.04975 -0.597752 -0.387186 1.67973 -0.597394 -0.384414 1.67973 -0.597582 -0.385683 1.0498 -0.597579 -0.385519 1.38837 -0.597386 -0.384265 1.04983 -0.598045 -0.383628 1.67973 -0.598207 -0.383548 1.3063 -0.598479 -0.382877 1.04973 -0.598232 -0.381508 1.67971 -0.598479 -0.382548 1.67973 -0.598307 -0.381691 1.35332 -0.59715 -0.381219 1.67973 -0.597479 -0.381219 1.04973 -0.59627 -0.38142 1.39585 -0.595945 -0.381786 1.0498 -0.596086 -0.381581 1.67972 -0.595432 -0.38231 1.67973 -0.594119 -0.382102 1.04974 -0.593552 -0.382204 1.67968 -0.594179 -0.382119 1.38837 -0.592267 -0.381577 1.04974 -0.592925 -0.382312 1.04973 -0.592443 -0.381796 1.67973 -0.591536 -0.381219 1.67973 -0.589879 -0.382877 1.67973 -0.591208 -0.381219 1.04973 -0.590231 -0.381437 1.67973 -0.590146 -0.381508 1.04982 -0.589879 -0.382548 1.04973 -0.590972 -0.384266 1.67969 -0.590261 -0.383618 1.04974 -0.590805 -0.385814 1.40737 -0.59087 -0.384882 1.04976 -0.590973 -0.386772 1.04978 -0.590456 -0.387255 1.67973 -0.590942 -0.386924 1.22945 -0.590942 -0.386924 1.24446 -0.590942 -0.386924 1.26097 -0.590971 -0.386773 1.67963 -0.590456 -0.387255 1.04973 -0.589879 -0.388161 1.04973 -0.589879 -0.38849 1.67973 -0.590085 -0.389469 1.67971 -0.590185 -0.389448 1.04976 -0.591208 -0.389819 1.04973 -0.592561 -0.389036 1.04975 -0.592061 -0.389687 1.67972 -0.590879 -0.389819 1.67973 -0.593626 -0.388839 1.67971 -0.593074 -0.388735 1.04973 -0.592644 -0.388905 1.67956 -0.594326 -0.388906 1.31236 -0.594239 -0.388936 1.04974 -0.595431 -0.388725 1.67971 -0.595688 -0.388835 1.04978 -0.59715 -0.389819 1.04973 -0.595776 -0.388944 1.67973 -0.596821 -0.389819 1.67973 -0.598215 -0.389602 1.67972 -0.598479 -0.38849 1.04973 -0.598208 -0.389585 1.04978 -0.598344 -0.357657 1.04978 -0.598413 -0.358069 1.67972 -0.597394 -0.356624 1.04973 -0.597603 -0.357116 1.67973 -0.597564 -0.357053 1.04976 -0.597582 -0.355683 1.0498 -0.597579 -0.355519 1.38837 -0.597394 -0.356624 1.67973 -0.597488 -0.354874 1.67969 -0.597385 -0.354266 1.04981 -0.59749 -0.354019 1.67962 -0.598416 -0.352974 1.67972 -0.598479 -0.352548 1.04973 -0.597981 -0.353676 1.04973 -0.597479 -0.351219 1.67973 -0.598157 -0.35144 1.04977 -0.598238 -0.35154 1.67969 -0.59603 -0.351726 1.67972 -0.596821 -0.351219 1.67973 -0.59715 -0.351219 1.04973 -0.595432 -0.352312 1.67973 -0.596172 -0.351445 1.04974 -0.595283 -0.352303 1.04973 -0.593884 -0.352145 1.40737 -0.594119 -0.352102 1.04974 -0.592561 -0.352002 1.67965 -0.592267 -0.351577 1.04974 -0.592927 -0.352304 1.04973 -0.593626 -0.352199 1.67972 -0.591776 -0.351285 1.67971 -0.590879 -0.351219 1.67973 -0.589879 -0.352877 1.67973 -0.591208 -0.351219 1.04973 -0.590001 -0.351763 1.41997 -0.590146 -0.351508 1.04982 -0.589879 -0.352548 1.04973 -0.590972 -0.354265 1.67961 -0.590972 -0.354266 1.04978 -0.590261 -0.353618 1.04974 -0.590817 -0.355371 1.3852 -0.590766 -0.355635 1.04976 -0.590942 -0.356924 1.43358 -0.590754 -0.357116 1.67973 -0.590942 -0.356924 1.41857 -0.590942 -0.356924 1.40206 -0.590973 -0.356771 1.04978 -0.590245 -0.357423 1.04973 -0.590971 -0.356773 1.67963 -0.589972 -0.357762 1.399 -0.590456 -0.357255 1.67973 -0.589879 -0.358819 1.67973 -0.589879 -0.35849 1.04973 -0.591799 -0.359753 1.67973 -0.590549 -0.359757 1.4165 -0.590261 -0.359605 1.04978 -0.592582 -0.358944 1.67973 -0.591208 -0.359819 1.04973 -0.592361 -0.359305 1.04982 -0.593074 -0.358735 1.67973 -0.592781 -0.358768 1.36481 -0.594239 -0.358936 1.04974 -0.594326 -0.358906 1.31236 -0.593074 -0.358735 1.04973 -0.594731 -0.358839 1.67971 -0.595685 -0.358833 1.67969 -0.595283 -0.358735 1.04973 -0.595798 -0.359036 1.04975 -0.596268 -0.359675 1.67973 -0.59715 -0.359819 1.04973 -0.598125 -0.359522 1.04976 -0.598479 -0.35849 1.04973 -0.598479 -0.328161 1.04973 -0.598479 -0.328161 1.67973 -0.597603 -0.327116 1.67973 -0.597491 -0.32702 1.04979 -0.597582 -0.325683 1.0498 -0.597498 -0.326072 1.67973 -0.597579 -0.325519 1.38837 -0.597864 -0.323756 1.67973 -0.597418 -0.324134 1.36528 -0.597385 -0.324265 1.0499 -0.598114 -0.323606 1.04973 -0.597386 -0.324265 1.67968 -0.598479 -0.322548 1.67973 -0.597479 -0.321219 1.67973 -0.598232 -0.321508 1.67971 -0.598479 -0.322548 1.04973 -0.59715 -0.321219 1.04973 -0.598209 -0.321532 1.04974 -0.595676 -0.322201 1.67973 -0.596284 -0.321358 1.6797 -0.595928 -0.321824 1.04979 -0.594731 -0.322199 1.67971 -0.594701 -0.322203 1.04973 -0.594179 -0.322119 1.38837 -0.592561 -0.322002 1.67969 -0.593074 -0.322303 1.67973 -0.592267 -0.321577 1.04974 -0.592924 -0.322312 1.04973 -0.591776 -0.321285 1.67971 -0.591208 -0.321219 1.04973 -0.590879 -0.321219 1.67973 -0.590146 -0.321508 1.04982 -0.589879 -0.322548 1.67973 -0.590456 -0.323783 1.67973 -0.589879 -0.322548 1.04973 -0.590319 -0.323645 1.04973 -0.590805 -0.325224 1.31236 -0.590972 -0.324265 1.67968 -0.59083 -0.326109 1.36303 -0.590874 -0.326241 1.67967 -0.590942 -0.326924 1.35553 -0.590935 -0.32597 1.04985 -0.590942 -0.326924 1.32401 -0.590456 -0.327255 1.67973 -0.590945 -0.326912 1.3909 -0.590942 -0.326924 1.33902 -0.590754 -0.327116 1.04973 -0.590963 -0.326624 1.04973 -0.590245 -0.327422 1.04973 -0.589879 -0.32849 1.67973 -0.590185 -0.329448 1.04976 -0.589879 -0.32849 1.04973 -0.590085 -0.329469 1.67971 -0.591208 -0.329819 1.04973 -0.590879 -0.329819 1.67973 -0.593626 -0.328839 1.67971 -0.592678 -0.328831 1.0498 -0.594326 -0.328906 1.31236 -0.594761 -0.328835 1.04973 -0.595431 -0.328723 1.67972 -0.596231 -0.32964 1.04973 -0.59715 -0.329819 1.04973 -0.596555 -0.329755 1.67973 -0.598167 -0.329546 1.67969 -0.598282 -0.329508 1.04975 -0.598479 -0.298161 1.04973 -0.597386 -0.296773 1.67959 -0.597752 -0.297186 1.67973 -0.59756 -0.295445 1.27119 -0.597491 -0.29702 1.04979 -0.597394 -0.294414 1.67973 -0.597386 -0.294264 1.04984 -0.598127 -0.293578 1.67973 -0.59813 -0.293607 1.04973 -0.598479 -0.292548 1.67973 -0.597479 -0.291219 1.04973 -0.598479 -0.292548 1.04973 -0.598232 -0.291508 1.67971 -0.598245 -0.291575 1.0499 -0.59604 -0.291669 1.67971 -0.597479 -0.291219 1.67973 -0.596274 -0.291418 1.34708 -0.595921 -0.291829 1.04974 -0.594119 -0.292102 1.04973 -0.595436 -0.292304 1.67973 -0.594179 -0.292119 1.38837 -0.593074 -0.292303 1.67973 -0.592267 -0.291577 1.04974 -0.592926 -0.292309 1.04973 -0.592443 -0.291796 1.67973 -0.591536 -0.291219 1.67973 -0.591208 -0.291219 1.04973 -0.59019 -0.291544 1.67972 -0.589879 -0.292548 1.67973 -0.590147 -0.291508 1.04982 -0.589879 -0.292548 1.04973 -0.590918 -0.294645 1.04976 -0.590227 -0.293572 1.67973 -0.590261 -0.293618 1.04974 -0.590972 -0.294266 1.67956 -0.590805 -0.295814 1.36303 -0.590798 -0.295298 1.20785 -0.590915 -0.296821 1.04981 -0.59086 -0.296071 1.67973 -0.590245 -0.297422 1.04973 -0.590456 -0.297255 1.67973 -0.590245 -0.299466 1.37329 -0.591536 -0.299819 1.67973 -0.589879 -0.29849 1.04973 -0.590116 -0.299497 1.67965 -0.589879 -0.29849 1.67973 -0.592319 -0.29932 1.67971 -0.591208 -0.299819 1.04973 -0.593074 -0.298735 1.67973 -0.593074 -0.298735 1.04973 -0.592644 -0.298905 1.04973 -0.594239 -0.298936 1.04973 -0.594326 -0.298906 1.31236 -0.594731 -0.298839 1.6797 -0.595679 -0.298831 1.67963 -0.595283 -0.298735 1.04973 -0.595717 -0.298915 1.04973 -0.596546 -0.299756 1.67973 -0.596821 -0.299819 1.04973 -0.598222 -0.299516 1.67971 -0.597479 -0.299819 1.67973 -0.598479 -0.298161 1.67973 -0.598273 -0.299401 1.04978 -0.597491 -0.267022 1.67969 -0.59749 -0.267019 1.0498 -0.598348 -0.267649 1.6797 -0.597582 -0.265683 1.0498 -0.597498 -0.266071 1.67973 -0.597553 -0.265224 1.38837 -0.597901 -0.263783 1.04973 -0.597385 -0.264266 1.67971 -0.597386 -0.264265 1.04975 -0.598418 -0.26296 1.67972 -0.598349 -0.26333 1.30916 -0.598479 -0.262877 1.04973 -0.596821 -0.261219 1.67973 -0.597479 -0.261219 1.04973 -0.598193 -0.261484 1.6797 -0.596263 -0.261388 1.04976 -0.595578 -0.262278 1.35426 -0.595283 -0.262303 1.67973 -0.595283 -0.262303 1.04973 -0.595712 -0.262129 1.67973 -0.593884 -0.262145 1.40737 -0.593074 -0.262303 1.67973 -0.593074 -0.262303 1.04973 -0.592267 -0.261577 1.04974 -0.592443 -0.261796 1.67973 -0.590173 -0.261441 1.04979 -0.59019 -0.261544 1.67972 -0.591771 -0.261263 1.67973 -0.589879 -0.262548 1.67973 -0.591208 -0.261219 1.04973 -0.590048 -0.263406 1.2528 -0.589879 -0.262548 1.04973 -0.590754 -0.263922 1.67973 -0.590954 -0.264155 1.38686 -0.590921 -0.264664 1.67967 -0.590921 -0.264574 1.04977 -0.590754 -0.263922 1.04973 -0.590805 -0.265519 1.37174 -0.590971 -0.266773 1.67963 -0.590963 -0.266624 1.04973 -0.589972 -0.267762 1.399 -0.590456 -0.267255 1.04973 -0.589879 -0.26849 1.67973 -0.589879 -0.268161 1.04973 -0.590133 -0.269493 1.04988 -0.590879 -0.269819 1.67973 -0.591807 -0.269758 1.04974 -0.590178 -0.269472 1.37179 -0.592924 -0.268726 1.67973 -0.593074 -0.268735 1.04973 -0.59227 -0.269453 1.67972 -0.592443 -0.269242 1.04973 -0.594326 -0.268906 1.31236 -0.594239 -0.268936 1.04973 -0.594731 -0.268839 1.6797 -0.595432 -0.268726 1.04973 -0.596066 -0.269439 1.04974 -0.59568 -0.268834 1.67973 -0.596527 -0.269733 1.67971 -0.598402 -0.269222 1.04975 -0.598479 -0.26849 1.67973 -0.598479 -0.268161 1.04973 -0.598127 -0.269513 1.6797 -0.596821 -0.269819 1.04973 -0.597491 -0.237019 1.0498 -0.598109 -0.237415 1.67972 -0.597498 -0.236071 1.67973 -0.597394 -0.236624 1.04973 -0.597491 -0.237022 1.67969 -0.597579 -0.235519 1.27119 -0.597427 -0.234637 1.04974 -0.598359 -0.233371 1.67972 -0.597752 -0.233853 1.04973 -0.598479 -0.232877 1.04973 -0.598479 -0.232219 1.67973 -0.597479 -0.231219 1.04973 -0.598241 -0.231573 1.04989 -0.596821 -0.231219 1.67973 -0.598227 -0.231511 1.6797 -0.596821 -0.231219 1.04973 -0.596103 -0.231533 1.42584 -0.595711 -0.232121 1.04973 -0.595713 -0.232132 1.67973 -0.594731 -0.232199 1.67971 -0.595283 -0.232303 1.04973 -0.594179 -0.232119 1.38837 -0.593597 -0.232203 1.04973 -0.592054 -0.231415 1.39003 -0.591208 -0.231219 1.04973 -0.592337 -0.231725 1.04974 -0.592929 -0.232304 1.67973 -0.590879 -0.231219 1.67973 -0.590087 -0.231522 1.04978 -0.589879 -0.232548 1.67973 -0.590375 -0.233642 1.67973 -0.589879 -0.232548 1.04973 -0.590159 -0.233538 1.25297 -0.590868 -0.234021 1.0498 -0.590864 -0.234892 1.67969 -0.590779 -0.235519 1.26169 -0.59087 -0.234882 1.04976 -0.590868 -0.237018 1.04975 -0.590942 -0.236924 1.49662 -0.590942 -0.236924 1.51313 -0.590971 -0.236773 1.67962 -0.590942 -0.236924 1.47336 -0.590963 -0.236624 1.04973 -0.590456 -0.237255 1.04973 -0.590605 -0.237186 1.67973 -0.59011 -0.237568 1.37829 -0.589879 -0.23849 1.67973 -0.589879 -0.23849 1.04973 -0.590133 -0.239493 1.04988 -0.591536 -0.239819 1.67973 -0.591536 -0.239819 1.04973 -0.590085 -0.239469 1.67971 -0.592048 -0.239632 1.24581 -0.592512 -0.239093 1.67973 -0.593074 -0.238735 1.67973 -0.594326 -0.238906 1.31236 -0.592861 -0.238822 1.04973 -0.594239 -0.238936 1.04973 -0.595283 -0.238735 1.04973 -0.595673 -0.238842 1.04973 -0.594731 -0.238839 1.6797 -0.596218 -0.239637 1.04976 -0.596037 -0.23932 1.67971 -0.59715 -0.239819 1.04973 -0.598446 -0.238356 1.04973 -0.598479 -0.23849 1.67973 -0.597479 -0.239819 1.67973 -0.59827 -0.239476 1.04979 -0.598284 -0.239356 1.3773 -0.598413 -0.207905 1.67972 -0.598479 -0.208161 1.04973 -0.597564 -0.207054 1.67968 -0.597565 -0.207054 1.04979 -0.597498 -0.206071 1.67973 -0.597566 -0.205667 1.15401 -0.597394 -0.204414 1.04973 -0.598127 -0.203593 1.04973 -0.597402 -0.204279 1.57846 -0.598479 -0.202877 1.67973 -0.59749 -0.204018 1.67969 -0.598231 -0.20151 1.67971 -0.598245 -0.201576 1.0499 -0.597479 -0.201219 1.67973 -0.59715 -0.201219 1.04973 -0.598479 -0.202219 1.04973 -0.596235 -0.201393 1.67968 -0.595938 -0.201788 1.04974 -0.595675 -0.202204 1.67973 -0.596103 -0.201533 1.3661 -0.594119 -0.202102 1.04973 -0.595283 -0.202303 1.67973 -0.594179 -0.202119 1.38837 -0.593074 -0.202303 1.67973 -0.592926 -0.20231 1.04973 -0.592512 -0.201945 1.67973 -0.592054 -0.201415 1.39003 -0.592302 -0.201651 1.04974 -0.591208 -0.201219 1.67973 -0.590301 -0.201393 1.67971 -0.591208 -0.201219 1.04973 -0.590104 -0.201502 1.0498 -0.589879 -0.202877 1.67973 -0.589879 -0.202548 1.04973 -0.590921 -0.204574 1.0498 -0.590841 -0.204182 1.67965 -0.590261 -0.203618 1.04974 -0.590779 -0.205519 1.26169 -0.590456 -0.207255 1.67973 -0.59086 -0.206071 1.67973 -0.590915 -0.206821 1.04982 -0.589879 -0.208161 1.67973 -0.590085 -0.209469 1.67971 -0.589879 -0.208819 1.04973 -0.591536 -0.209819 1.67973 -0.59226 -0.209496 1.2458 -0.592351 -0.209312 1.04975 -0.591536 -0.209819 1.04973 -0.593074 -0.208735 1.67973 -0.593074 -0.208735 1.04973 -0.592645 -0.208912 1.67973 -0.594239 -0.208936 1.04973 -0.594326 -0.208906 1.31236 -0.595683 -0.208834 1.67972 -0.594731 -0.208839 1.6797 -0.595283 -0.208735 1.04973 -0.596691 -0.209734 1.67971 -0.597479 -0.209819 1.04973 -0.596218 -0.209637 1.04976 -0.598394 -0.209274 1.67969 -0.598387 -0.209293 1.04976 -0.5934 -0.460519 1.01103 -0.5934 -0.100519 1.01103 -0.607179 -0.460519 1.01298 -0.600179 -0.460519 1.00525 -0.598764 -0.460519 0.998733 -0.603843 -0.460519 0.996483 -0.602429 -0.460519 0.995068 -0.609179 -0.460519 1.00073 -0.602429 -0.460519 0.991733 -0.598179 -0.460519 0.989733 -0.594178 -0.460519 0.998733 -0.589593 -0.460519 0.998733 -0.585929 -0.460519 0.995068 -0.585929 -0.460519 0.991733 -0.590179 -0.460519 0.991733 -0.568764 -0.460519 0.998733 -0.564178 -0.460519 0.998733 -0.559593 -0.460519 0.998733 -0.555929 -0.460519 0.995068 -0.558179 -0.460519 1.00473 -0.558179 -0.460519 1.00932 -0.564957 -0.460519 1.01103 -0.549179 -0.460519 0.991733 -0.549179 -0.460519 1.00073 -0.555929 -0.460519 0.991733 -0.554514 -0.460519 1.02648 -0.551179 -0.460519 1.02648 -0.549179 -0.460519 1.03073 -0.558179 -0.460519 1.03932 -0.555929 -0.460519 1.0444 -0.559593 -0.460519 1.04073 -0.560179 -0.460519 1.04773 -0.572429 -0.460519 1.0444 -0.585929 -0.460519 1.0444 -0.568179 -0.460519 1.04773 -0.589593 -0.460519 1.04073 -0.600179 -0.460519 1.03932 -0.600179 -0.460519 1.03015 -0.602429 -0.460519 1.0444 -0.607179 -0.460519 1.04298 -0.602429 -0.460519 1.04773 -0.603843 -0.460519 1.02648 -0.600179 -0.460519 1.00932 -0.570179 -0.460519 1.03249 -0.607179 -0.100519 1.03073 -0.609179 -0.460519 1.03073 -0.607179 -0.460519 1.03073 -0.607179 -0.100519 1.02648 -0.607179 -0.460519 1.02648 -0.600179 -0.100519 1.03015 -0.600179 -0.460519 1.03421 -0.600179 -0.100519 1.03473 -0.600179 -0.460519 1.03525 -0.603843 -0.100519 1.04298 -0.607179 -0.100519 1.04298 -0.603843 -0.460519 1.04298 -0.607179 -0.460519 1.03873 -0.607179 -0.100519 1.03873 -0.609179 -0.460519 1.03873 -0.609179 -0.100519 1.04773 -0.608411 -0.460458 1.04934 -0.607179 -0.100519 1.04973 -0.609179 -0.460519 1.04773 -0.598179 -0.100519 1.04973 -0.598179 -0.460519 1.04773 -0.598764 -0.460519 1.04073 -0.594698 -0.460519 1.04073 -0.593659 -0.460519 1.04073 -0.585929 -0.460519 1.04773 -0.590179 -0.100519 1.04773 -0.590179 -0.460519 1.04773 -0.590179 -0.100519 1.04973 -0.572429 -0.100519 1.04773 -0.572429 -0.460519 1.04773 -0.568764 -0.460519 1.04073 -0.564698 -0.460519 1.04073 -0.563659 -0.460519 1.04073 -0.564178 -0.100519 1.04073 -0.559593 -0.100519 1.04073 -0.555929 -0.100519 1.04773 -0.555929 -0.460519 1.04773 -0.549179 -0.460519 1.04773 -0.549732 -0.100518 1.04916 -0.549673 -0.456846 1.04895 -0.549179 -0.460519 1.03873 -0.551179 -0.100519 1.03873 -0.551179 -0.460519 1.03873 -0.551179 -0.460519 1.04298 -0.554514 -0.460519 1.04298 -0.554514 -0.100519 1.04298 -0.558179 -0.100519 1.03932 -0.558179 -0.460519 1.03473 -0.558179 -0.100519 1.03525 -0.558179 -0.100519 1.03421 -0.558179 -0.460519 1.03015 -0.551179 -0.100519 1.02648 -0.551179 -0.100519 1.03073 -0.551179 -0.460519 1.03073 -0.549179 -0.460519 1.00873 -0.551179 -0.460519 1.00873 -0.551179 -0.100519 1.01298 -0.551179 -0.460519 1.01298 -0.554514 -0.460519 1.01298 -0.554514 -0.100519 0.996483 -0.558179 -0.460519 1.00015 -0.554514 -0.460519 0.996483 -0.551179 -0.460519 0.996483 -0.551179 -0.460519 1.00073 -0.549179 -0.100519 1.00073 -0.551179 -0.100519 0.989733 -0.551179 -0.460519 0.989733 -0.549533 -0.460495 0.990568 -0.560179 -0.460519 0.989733 -0.555929 -0.100519 0.991733 -0.560179 -0.460519 0.991733 -0.568764 -0.100519 0.998733 -0.572429 -0.460519 0.995068 -0.572429 -0.100519 0.995068 -0.568179 -0.100519 0.991733 -0.572429 -0.460519 0.991733 -0.568179 -0.100519 0.989733 -0.568179 -0.460519 0.991733 -0.568179 -0.460519 0.989733 -0.590179 -0.460519 0.989733 -0.590179 -0.100519 0.989733 -0.590179 -0.100519 0.991733 -0.585929 -0.100519 0.991733 -0.594698 -0.100519 0.998733 -0.598764 -0.100519 0.998733 -0.602429 -0.100519 0.991733 -0.598179 -0.460519 0.991733 -0.598179 -0.100519 0.989733 -0.608593 -0.100617 0.990415 -0.607179 -0.100519 0.989733 -0.609179 -0.460519 0.991733 -0.608188 -0.272284 0.990067 -0.607179 -0.460519 0.989733 -0.607179 -0.460519 1.00073 -0.607179 -0.460519 0.996483 -0.600179 -0.100519 1.00015 -0.600179 -0.460519 1.00015 -0.600179 -0.460519 1.00421 -0.600179 -0.100519 1.00932 -0.603843 -0.100519 1.01298 -0.607179 -0.100519 1.00873 -0.607179 -0.460519 1.00873 -0.609179 -0.100519 1.00873 -0.609179 -0.100519 1.03073 -0.609179 -0.460519 1.00873 -0.607179 -0.100519 1.01298 -0.603843 -0.100519 1.02648 -0.598764 -0.100519 1.04073 -0.600179 -0.100519 1.03932 -0.609179 -0.100519 1.03873 -0.608366 -0.10053 1.04942 -0.602429 -0.100519 1.0444 -0.602429 -0.100519 1.04773 -0.598179 -0.100519 1.04773 -0.594178 -0.100519 1.04073 -0.589593 -0.100519 1.04073 -0.585929 -0.100519 1.0444 -0.572429 -0.100519 1.0444 -0.585929 -0.100519 1.04773 -0.568179 -0.100519 1.04773 -0.558179 -0.100519 1.03015 -0.555929 -0.100519 1.0444 -0.551179 -0.100519 1.04298 -0.560179 -0.100519 1.04773 -0.554514 -0.100519 1.02648 -0.554514 -0.100519 1.01298 -0.549179 -0.100519 1.00873 -0.551179 -0.100519 1.00873 -0.558179 -0.100519 1.00525 -0.558179 -0.100519 1.00421 -0.559593 -0.100519 0.998733 -0.558179 -0.100519 1.00015 -0.555929 -0.100519 0.995068 -0.551179 -0.100519 1.00073 -0.551179 -0.100519 0.996483 -0.549634 -0.100682 0.990404 -0.560179 -0.100519 0.989733 -0.560179 -0.100519 0.991733 -0.563659 -0.100519 0.998733 -0.564698 -0.100519 0.998733 -0.585929 -0.100519 0.995068 -0.589593 -0.100519 0.998733 -0.572429 -0.100519 0.991733 -0.593659 -0.100519 0.998733 -0.603843 -0.100519 0.996483 -0.600179 -0.100519 1.00473 -0.602429 -0.100519 0.995068 -0.609179 -0.100519 0.991733 -0.609179 -0.100519 1.00073 -0.607179 -0.100519 0.996483 -0.607179 -0.100519 1.00073 -0.598179 -0.100519 0.991733 -0.568764 -0.100519 1.04073 -0.558179 -0.100519 1.00932 -0.599179 -0.460519 1.01722 -0.598886 -0.100519 1.01651 -0.598886 -0.460519 1.01651 -0.603843 -0.460519 1.01298 -0.599179 -0.100519 1.01974 -0.598886 -0.460519 1.02295 -0.599179 -0.460519 1.02225 -0.598886 -0.100519 1.02295 -0.5934 -0.100519 1.02844 -0.5934 -0.460519 1.02844 -0.588179 -0.460519 1.03173 -0.592693 -0.460519 1.02873 -0.588324 -0.100517 1.03144 -0.59001 -0.100563 1.02895 -0.592693 -0.100519 1.02873 -0.590147 -0.460497 1.02887 -0.587886 -0.100519 1.03395 -0.587886 -0.460519 1.03395 -0.581693 -0.460519 1.03973 -0.582401 -0.460519 1.03944 -0.582401 -0.100519 1.03944 -0.575957 -0.100519 1.03944 -0.575957 -0.460519 1.03944 -0.576664 -0.460519 1.03973 -0.581693 -0.100519 1.03973 -0.570472 -0.460519 1.03395 -0.570179 -0.100519 1.03249 -0.570472 -0.100519 1.03395 -0.569277 -0.460511 1.02943 -0.569632 -0.100507 1.02983 -0.565664 -0.100519 1.02873 -0.566422 -0.460519 1.02873 -0.562214 -0.100519 1.0257 -0.559179 -0.460519 1.02225 -0.562214 -0.460519 1.0257 -0.559179 -0.100519 1.02225 -0.559472 -0.460519 1.01651 -0.559179 -0.460519 1.01722 -0.559472 -0.100519 1.01651 -0.559179 -0.100519 1.01722 -0.564957 -0.100519 1.01103 -0.565664 -0.460519 1.01073 -0.569462 -0.100556 1.00978 -0.567179 -0.100519 1.01073 -0.570179 -0.460519 1.00697 -0.569249 -0.460458 1.01004 -0.570179 -0.100519 1.00773 -0.570472 -0.100519 1.00551 -0.570472 -0.460519 1.00551 -0.576664 -0.100519 0.999733 -0.575957 -0.100519 1.00003 -0.575957 -0.460519 1.00003 -0.581693 -0.100519 0.999733 -0.579178 -0.460519 0.999733 -0.582401 -0.100519 1.00003 -0.582401 -0.460519 1.00003 -0.587886 -0.100519 1.00551 -0.588179 -0.100519 1.00622 -0.587886 -0.460519 1.00551 -0.588179 -0.460519 1.00697 -0.591179 -0.100519 1.01073 -0.588314 -0.100524 1.00837 -0.589019 -0.460057 1.00991 -0.591179 -0.460519 1.01073 -0.5617 -0.460543 1.00209 -0.56649 -0.100589 1.00199 -0.560879 -0.100599 1.00428 -0.567518 -0.100525 1.00552 -0.562725 -0.100518 1.00159 -0.561681 -0.100614 1.00718 -0.563741 -0.172286 1.00805 -0.566074 -0.100594 1.00768 -0.567518 -0.460512 1.00555 -0.56222 -0.460509 1.00765 -0.565735 -0.460424 1.00793 -0.565552 -0.460483 1.00156 -0.560841 -0.46051 1.00552 -0.567385 -0.460502 1.00346 -0.596094 -0.100629 1.0376 -0.590879 -0.100585 1.03429 -0.591536 -0.100613 1.03691 -0.593828 -0.100553 1.03816 -0.592791 -0.100526 1.03156 -0.597523 -0.10066 1.0356 -0.596471 -0.100558 1.03203 -0.597507 -0.460438 1.03575 -0.597081 -0.460497 1.03266 -0.593829 -0.460512 1.03134 -0.591816 -0.460503 1.03724 -0.593302 -0.384484 1.038 -0.59082 -0.460509 1.03544 -0.595455 -0.46038 1.03804 -0.591299 -0.460471 1.03267 -0.567318 -0.100567 1.03324 -0.567194 -0.100591 1.03656 -0.56354 -0.100605 1.03124 -0.561238 -0.100601 1.03662 -0.563828 -0.100553 1.03816 -0.560958 -0.10057 1.03356 -0.565912 -0.218062 1.03188 -0.560989 -0.460504 1.03345 -0.566025 -0.460433 1.03184 -0.56084 -0.460511 1.03552 -0.562835 -0.460497 1.03805 -0.56562 -0.460354 1.03793 -0.567692 -0.460529 1.0344 -0.56314 -0.460497 1.03133 -0.593633 -0.100537 1.00126 -0.597466 -0.10066 1.0033 -0.591164 -0.100529 1.00293 -0.596814 -0.100489 1.00712 -0.593776 -0.100588 1.0081 -0.59123 -0.100741 1.00673 -0.593002 -0.460336 1.00138 -0.590994 -0.460513 1.00343 -0.597742 -0.460517 1.00437 -0.591085 -0.460489 1.00625 -0.595869 -0.460451 1.00783 -0.595765 -0.460306 1.00165 -0.590805 -0.421726 1.00502 -0.592968 -0.460459 1.00802 -0.596143 -0.100519 1.7157 -0.609179 -0.100519 1.72073 -0.607179 -0.100519 1.71648 -0.607179 -0.100519 1.72073 -0.607179 -0.100519 1.70298 -0.600179 -0.100519 1.72015 -0.600179 -0.100519 1.72932 -0.607179 -0.100519 1.73298 -0.609179 -0.100519 1.72873 -0.602429 -0.100519 1.73773 -0.598764 -0.100519 1.73073 -0.594178 -0.100519 1.73073 -0.589593 -0.100519 1.73073 -0.572429 -0.100519 1.7344 -0.572429 -0.100519 1.73773 -0.590179 -0.100519 1.73973 -0.590179 -0.100519 1.73773 -0.568179 -0.100519 1.73973 -0.564178 -0.100519 1.73073 -0.558179 -0.100519 1.72932 -0.558179 -0.100519 1.72525 -0.558179 -0.100519 1.72421 -0.564957 -0.100519 1.71844 -0.555929 -0.100519 1.7344 -0.551179 -0.100519 1.73298 -0.551179 -0.100519 1.72873 -0.558179 -0.100519 1.72015 -0.554514 -0.100519 1.71648 -0.554514 -0.100519 1.70298 -0.558179 -0.100519 1.69932 -0.551179 -0.100519 1.69873 -0.551179 -0.100519 1.71648 -0.554514 -0.100519 1.68648 -0.558179 -0.100519 1.69015 -0.555929 -0.100519 1.68507 -0.549179 -0.100519 1.69073 -0.549805 -0.100551 1.68017 -0.563659 -0.100519 1.68873 -0.568764 -0.100519 1.68873 -0.585929 -0.100519 1.68173 -0.594698 -0.100519 1.68873 -0.598764 -0.100519 1.68873 -0.609179 -0.100519 1.69073 -0.607179 -0.100519 1.69073 -0.598179 -0.100519 1.68173 -0.591179 -0.100519 1.71873 -0.559593 -0.100519 1.73073 -0.568764 -0.100519 1.73073 -0.609179 -0.100519 1.69873 -0.607179 -0.100519 1.69873 -0.607179 -0.460519 1.69873 -0.603843 -0.460519 1.70298 -0.603843 -0.100519 1.70298 -0.600179 -0.100519 1.69932 -0.600179 -0.100519 1.69473 -0.600179 -0.460519 1.69525 -0.600179 -0.460519 1.69421 -0.600179 -0.460519 1.69015 -0.600179 -0.100519 1.69015 -0.603843 -0.100519 1.68648 -0.607179 -0.100519 1.68648 -0.609179 -0.460519 1.69073 -0.608318 -0.460437 1.68004 -0.607179 -0.460519 1.67973 -0.609179 -0.100519 1.68173 -0.609179 -0.460519 1.68173 -0.598179 -0.460519 1.67973 -0.598179 -0.100519 1.67973 -0.598179 -0.460519 1.68173 -0.602429 -0.100519 1.68173 -0.602429 -0.100519 1.68507 -0.594178 -0.460519 1.68873 -0.593659 -0.100519 1.68873 -0.589593 -0.460519 1.68873 -0.589593 -0.100519 1.68873 -0.585929 -0.100519 1.68507 -0.590179 -0.100519 1.68173 -0.590179 -0.460519 1.67973 -0.568179 -0.100519 1.67973 -0.568179 -0.460519 1.68173 -0.568179 -0.100519 1.68173 -0.572429 -0.460519 1.68173 -0.572429 -0.100519 1.68173 -0.572429 -0.460519 1.68507 -0.572429 -0.100519 1.68507 -0.568764 -0.460519 1.68873 -0.564698 -0.100519 1.68873 -0.564178 -0.460519 1.68873 -0.559593 -0.460519 1.68873 -0.555929 -0.460519 1.68507 -0.559593 -0.100519 1.68873 -0.555929 -0.100519 1.68173 -0.560179 -0.100519 1.68173 -0.560179 -0.100519 1.67973 -0.549722 -0.460456 1.68029 -0.549179 -0.100519 1.68173 -0.549179 -0.460519 1.69073 -0.551179 -0.460519 1.69073 -0.551179 -0.100519 1.69073 -0.551179 -0.460519 1.68648 -0.551179 -0.100519 1.68648 -0.558179 -0.100519 1.69421 -0.558179 -0.100519 1.69525 -0.558179 -0.460519 1.69932 -0.554514 -0.460519 1.70298 -0.551179 -0.460519 1.69873 -0.551179 -0.100519 1.70298 -0.549179 -0.100519 1.69873 -0.551179 -0.100519 1.72073 -0.551179 -0.460519 1.72073 -0.551179 -0.460519 1.71648 -0.558179 -0.460519 1.72473 -0.558179 -0.460519 1.72932 -0.554514 -0.100519 1.73298 -0.549179 -0.460519 1.72873 -0.549179 -0.460519 1.73773 -0.550162 -0.145709 1.73945 -0.551179 -0.100519 1.73973 -0.551179 -0.460519 1.73973 -0.549179 -0.10052 1.73817 -0.560179 -0.100519 1.73973 -0.560179 -0.460519 1.73973 -0.560179 -0.460519 1.73773 -0.560179 -0.100519 1.73773 -0.555929 -0.460519 1.73773 -0.555929 -0.100519 1.73773 -0.572429 -0.460519 1.7344 -0.568179 -0.460519 1.73773 -0.568179 -0.100519 1.73773 -0.590179 -0.460519 1.73973 -0.590179 -0.460519 1.73773 -0.585929 -0.460519 1.73773 -0.585929 -0.100519 1.73773 -0.585929 -0.100519 1.7344 -0.594698 -0.460519 1.73073 -0.598764 -0.460519 1.73073 -0.602429 -0.460519 1.7344 -0.602429 -0.100519 1.7344 -0.598179 -0.100519 1.73773 -0.598179 -0.100519 1.73973 -0.607179 -0.100519 1.73973 -0.607179 -0.460519 1.73973 -0.608653 -0.100561 1.73897 -0.608209 -0.460508 1.73951 -0.609179 -0.460519 1.73773 -0.609179 -0.100519 1.73773 -0.607179 -0.460519 1.72873 -0.607179 -0.100519 1.72873 -0.607179 -0.460519 1.73298 -0.603843 -0.100519 1.73298 -0.600179 -0.100519 1.72473 -0.600179 -0.460519 1.72525 -0.600179 -0.460519 1.72015 -0.603843 -0.100519 1.71648 -0.607179 -0.460519 1.72073 -0.609179 -0.460519 1.72073 -0.609179 -0.460519 1.69873 -0.607179 -0.460519 1.70298 -0.607179 -0.460519 1.71648 -0.603843 -0.460519 1.71648 -0.600179 -0.460519 1.69932 -0.603843 -0.460519 1.68648 -0.607179 -0.460519 1.69073 -0.607179 -0.460519 1.68648 -0.602429 -0.460519 1.68507 -0.602429 -0.460519 1.68173 -0.598764 -0.460519 1.68873 -0.585929 -0.460519 1.68507 -0.568179 -0.460519 1.67973 -0.585929 -0.460519 1.68173 -0.590179 -0.460519 1.68173 -0.558179 -0.460519 1.69015 -0.558179 -0.460519 1.69473 -0.555929 -0.460519 1.68173 -0.554514 -0.460519 1.68648 -0.549179 -0.460519 1.68173 -0.560179 -0.460519 1.68173 -0.554514 -0.460519 1.71648 -0.551179 -0.460519 1.70298 -0.549179 -0.460519 1.72073 -0.549179 -0.460519 1.69873 -0.558179 -0.460519 1.72015 -0.554514 -0.460519 1.73298 -0.555929 -0.460519 1.7344 -0.559593 -0.460519 1.73073 -0.551179 -0.460519 1.72873 -0.551179 -0.460519 1.73298 -0.563659 -0.460519 1.73073 -0.564698 -0.460519 1.73073 -0.568764 -0.460519 1.73073 -0.585929 -0.460519 1.7344 -0.589593 -0.460519 1.73073 -0.572429 -0.460519 1.73773 -0.568179 -0.460519 1.73973 -0.593659 -0.460519 1.73073 -0.592974 -0.46047 1.728 -0.603843 -0.460519 1.73298 -0.600179 -0.460519 1.72932 -0.600179 -0.460519 1.72421 -0.5934 -0.460519 1.71844 -0.609179 -0.460519 1.72873 -0.598179 -0.460519 1.73773 -0.602429 -0.460519 1.73773 -0.598179 -0.460519 1.73973 -0.599179 -0.100519 1.71225 -0.598886 -0.460519 1.71295 -0.599179 -0.460519 1.70973 -0.599179 -0.100519 1.70722 -0.598886 -0.460519 1.70651 -0.596143 -0.100519 1.70377 -0.5934 -0.460519 1.70103 -0.591179 -0.100519 1.70073 -0.591936 -0.460519 1.70073 -0.58875 -0.460428 1.69957 -0.588179 -0.460519 1.69622 -0.587886 -0.100519 1.69551 -0.588443 -0.100539 1.69908 -0.587886 -0.460519 1.69551 -0.582401 -0.100519 1.69003 -0.582401 -0.460519 1.69003 -0.579178 -0.460519 1.68973 -0.581693 -0.100519 1.68973 -0.575957 -0.100519 1.69003 -0.576664 -0.100519 1.68973 -0.575957 -0.460519 1.69003 -0.570472 -0.100519 1.69551 -0.570472 -0.460519 1.69551 -0.565664 -0.460519 1.70073 -0.569674 -0.460438 1.6995 -0.570179 -0.460519 1.69697 -0.570179 -0.100519 1.69773 -0.569378 -0.10058 1.6999 -0.564957 -0.460519 1.70103 -0.567179 -0.100519 1.70073 -0.564957 -0.100519 1.70103 -0.559179 -0.460519 1.70722 -0.559472 -0.460519 1.70651 -0.559472 -0.100519 1.70651 -0.559179 -0.100519 1.7071 -0.559179 -0.100519 1.71225 -0.559179 -0.460519 1.71242 -0.559472 -0.100519 1.71295 -0.562214 -0.460519 1.7157 -0.570179 -0.100519 1.72325 -0.569616 -0.460464 1.71979 -0.566422 -0.460519 1.71873 -0.566422 -0.100519 1.71873 -0.569682 -0.100824 1.71982 -0.570179 -0.460519 1.72249 -0.570472 -0.460519 1.72395 -0.573215 -0.100519 1.7267 -0.575957 -0.460519 1.72944 -0.576664 -0.460519 1.72973 -0.582401 -0.100519 1.72944 -0.581693 -0.460519 1.72973 -0.576664 -0.100519 1.72973 -0.582401 -0.460519 1.72944 -0.587886 -0.460519 1.72395 -0.587886 -0.100519 1.72395 -0.588179 -0.460519 1.72325 -0.588179 -0.100519 1.72249 -0.588855 -0.100653 1.71979 -0.591179 -0.460519 1.71873 -0.560833 -0.460452 1.7238 -0.567723 -0.460532 1.72469 -0.565862 -0.46041 1.72785 -0.562183 -0.460562 1.72776 -0.565562 -0.460402 1.72158 -0.562824 -0.460495 1.72151 -0.567369 -0.100518 1.72346 -0.56092 -0.253752 1.72517 -0.567193 -0.100508 1.72676 -0.565361 -0.100971 1.72147 -0.562718 -0.100841 1.72798 -0.561356 -0.100551 1.72253 -0.590884 -0.460419 1.69597 -0.591851 -0.460517 1.69192 -0.592813 -0.46047 1.6979 -0.595925 -0.460491 1.69776 -0.597741 -0.460519 1.69438 -0.595674 -0.460231 1.69159 -0.593018 -0.100532 1.69151 -0.597475 -0.10061 1.69593 -0.59728 -0.100531 1.69331 -0.591089 -0.195174 1.69609 -0.590963 -0.100676 1.69321 -0.595647 -0.100642 1.69163 -0.595038 -0.100635 1.69816 -0.592095 -0.100636 1.69745 -0.564279 -0.100528 1.69127 -0.560991 -0.46046 1.69339 -0.565755 -0.460317 1.69164 -0.562323 -0.460265 1.69769 -0.565334 -0.460479 1.69807 -0.563037 -0.460273 1.6914 -0.560841 -0.46051 1.69552 -0.566092 -0.16026 1.692 -0.567853 -0.460556 1.69479 -0.565469 -0.100453 1.6982 -0.561024 -0.100638 1.69311 -0.561113 -0.100705 1.6965 -0.567661 -0.100486 1.69439 -0.596636 -0.460585 1.72216 -0.595863 -0.460432 1.72785 -0.597527 -0.460515 1.72552 -0.594472 -0.100718 1.72124 -0.590921 -0.460444 1.72593 -0.591884 -0.460494 1.72198 -0.591325 -0.100623 1.72673 -0.597192 -0.10051 1.72677 -0.591063 -0.100637 1.72367 -0.597282 -0.100604 1.72312 -0.593878 -0.100522 1.72817 0.0965996 0.169481 1.01103 0.0973067 -0.460519 1.01073 0.0965996 -0.460519 1.01103 0.0828214 -0.460519 1.03073 0.0861572 -0.460519 1.01298 0.0828214 -0.460519 1.02648 0.0901214 -0.460519 1.00473 0.0898214 -0.460519 1.00015 0.0861572 -0.460519 0.996483 0.0828214 -0.460519 0.996483 0.0875714 -0.460519 0.995068 0.0875714 -0.460519 0.991733 0.0918214 -0.460519 0.989733 0.0918214 -0.460519 0.991733 0.0953018 -0.460519 0.998733 0.0958214 -0.460519 0.999032 0.096341 -0.460519 0.998733 0.100407 -0.460519 0.998733 0.108307 -0.460519 0.999733 0.121236 -0.460519 0.998733 0.125302 -0.460519 0.998733 0.125821 -0.460519 0.999032 0.131821 -0.460519 1.00421 0.131521 -0.460519 1.00473 0.131821 -0.460519 1.00525 0.131821 -0.460519 1.00932 0.134071 -0.460519 0.995068 0.140821 -0.460519 1.00073 0.138821 -0.460519 1.00073 0.135486 -0.460519 1.01298 0.130528 -0.460519 1.01651 0.135486 -0.460519 1.02648 0.138821 -0.460519 1.01298 0.138821 -0.460519 1.02648 0.140821 -0.460519 1.00873 0.131821 -0.460519 1.03421 0.129326 -0.460499 1.0355 0.131821 -0.460519 1.03525 0.134071 -0.460519 1.0444 0.138821 -0.460519 1.03873 0.130407 -0.460519 1.04073 0.126341 -0.460519 1.04073 0.125821 -0.460519 1.04043 0.125302 -0.460519 1.04073 0.119528 -0.460519 1.03395 0.121236 -0.460519 1.04073 0.104071 -0.460519 1.04773 0.0953018 -0.460519 1.04073 0.0898214 -0.460519 1.03525 0.0901214 -0.460519 1.03473 0.0898214 -0.460519 1.03015 0.0918214 -0.460519 1.04973 0.125043 -0.460519 1.02844 0.100407 -0.460519 1.04073 0.119821 -0.460519 1.00773 0.0808214 -0.460519 1.03073 0.0828214 0.169481 1.03073 0.0828214 0.169481 1.02648 0.0861572 -0.460519 1.02648 0.0898214 -0.460519 1.03421 0.0898214 0.169481 1.03525 0.0861572 0.169481 1.04298 0.0898214 -0.460519 1.03932 0.0828214 0.169481 1.04298 0.0861572 -0.460519 1.04298 0.0828214 -0.460519 1.04298 0.0828214 -0.460519 1.03873 0.0808214 0.169481 1.03873 0.0808214 -0.460519 1.03873 0.0817158 0.16947 1.04947 0.0821399 -0.0126837 1.04961 0.0808214 -0.460519 1.04773 0.0811039 -0.0126837 1.04862 0.0808214 0.169481 1.04773 0.0813183 -0.273383 1.049 0.0814364 -0.46047 1.0492 0.0918214 0.169481 1.04973 0.0918214 0.169481 1.04773 0.0918214 -0.460519 1.04773 0.0875714 -0.460519 1.04773 0.0875714 -0.460519 1.0444 0.0912356 -0.460519 1.04073 0.0953018 0.169481 1.04073 0.0958214 -0.460519 1.04043 0.0958214 0.169481 1.04043 0.096341 0.169481 1.04073 0.096341 -0.460519 1.04073 0.104071 0.169481 1.0444 0.104071 -0.460519 1.0444 0.104071 0.169481 1.04773 0.0998214 -0.460519 1.04773 0.0998214 0.169481 1.04773 0.0998214 -0.460519 1.04973 0.121821 -0.460519 1.04773 0.117571 0.169481 1.0444 0.117571 -0.460519 1.04773 0.121236 0.169481 1.04073 0.117571 -0.460519 1.0444 0.125302 0.169481 1.04073 0.125821 0.169481 1.04043 0.130407 0.169481 1.04073 0.134071 0.169481 1.0444 0.134071 0.169481 1.04773 0.134071 -0.460519 1.04773 0.129821 0.169481 1.04773 0.129821 0.169481 1.04973 0.129821 -0.460519 1.04773 0.139338 -0.460519 1.04973 0.140405 0.169381 1.04907 0.138821 0.169481 1.04973 0.140581 -0.195305 1.04859 0.140821 0.169481 1.04773 0.139803 0.00300023 1.04944 0.135486 0.169481 1.04298 0.138821 -0.460519 1.04298 0.135486 -0.460519 1.04298 0.131821 0.169481 1.03525 0.131821 -0.460519 1.03932 0.131521 -0.460519 1.03473 0.131821 0.169481 1.03421 0.131821 0.169481 1.03015 0.131821 -0.460519 1.03015 0.138821 0.169481 1.02648 0.138821 0.169481 1.03073 0.138821 -0.460519 1.03073 0.140821 0.169481 1.00873 0.138821 -0.460519 1.00873 0.138821 0.169481 1.00873 0.138821 0.169481 1.01298 0.131821 0.169481 1.00525 0.131821 0.169481 1.00421 0.131821 0.169481 1.00015 0.131821 -0.460519 1.00015 0.135486 0.169481 0.996483 0.135486 -0.460519 0.996483 0.138821 -0.460519 0.996483 0.138821 0.169481 0.996483 0.138821 0.169481 1.00073 0.138821 -0.460519 0.989733 0.140821 0.169481 0.991733 0.140521 -0.236672 0.990752 0.140119 -0.460488 0.990166 0.139561 -0.225984 0.98989 0.138821 0.169481 0.989733 0.140453 0.16903 0.990493 0.140821 -0.460519 0.991733 0.129821 -0.460519 0.989733 0.129821 -0.460519 0.991733 0.134071 -0.460519 0.991733 0.130407 -0.460519 0.998733 0.126341 0.169481 0.998733 0.126341 -0.460519 0.998733 0.125821 0.169481 0.999032 0.121236 0.169481 0.998733 0.117571 0.169481 0.991733 0.117571 -0.460519 0.995068 0.117571 -0.460519 0.991733 0.121821 -0.460519 0.991733 0.121821 -0.460519 0.989733 0.0998214 0.169481 0.989733 0.0998214 -0.460519 0.989733 0.0998214 0.169481 0.991733 0.0998214 -0.460519 0.991733 0.104071 -0.460519 0.991733 0.104071 -0.460519 0.995068 0.096341 0.169481 0.998733 0.0958214 0.169481 0.999032 0.0953018 0.169481 0.998733 0.0912356 0.169481 0.998733 0.0875714 0.169481 0.995068 0.0912356 -0.460519 0.998733 0.0875714 0.169481 0.991733 0.0918214 0.169481 0.991733 0.0818068 0.169393 0.989972 0.0817733 -0.190201 0.990104 0.0828214 -0.460519 0.989733 0.0808214 0.169481 0.991733 0.0809492 -0.102836 0.991051 0.0810826 -0.460454 0.990776 0.0809508 0.169471 0.991032 0.0828214 0.169481 0.989733 0.0808214 -0.460519 0.991733 0.0808214 0.169481 1.00073 0.0808214 -0.460519 1.00073 0.0828214 0.169481 0.996483 0.0828214 -0.460519 1.00073 0.0898214 0.169481 1.00015 0.0898214 -0.460519 1.00421 0.0898214 -0.460519 1.00525 0.0898214 -0.460519 1.00932 0.0861572 0.169481 1.01298 0.0828214 -0.460519 1.01298 0.0828214 -0.460519 1.00873 0.0828214 0.169481 1.00873 0.0808214 0.169481 1.00873 0.0808214 -0.460519 1.00873 0.0828214 0.169481 1.01298 0.0808214 0.169481 1.03073 0.0898214 0.169481 1.03421 0.0901214 0.169481 1.03473 0.0898214 0.169481 1.03932 0.0875714 0.169481 1.0444 0.0828214 0.169481 1.03873 0.0875714 0.169481 1.04773 0.0912356 0.169481 1.04073 0.100407 0.169481 1.04073 0.102114 0.169481 1.03395 0.114043 0.169481 1.03944 0.117571 0.169481 1.04773 0.121821 0.169481 1.04973 0.0998214 0.169481 1.04973 0.121821 0.169481 1.04773 0.126341 0.169481 1.04073 0.131821 0.169481 1.03932 0.131521 0.169481 1.03473 0.138821 0.169481 1.04298 0.140821 0.169481 1.03873 0.138821 0.169481 1.03873 0.135486 0.169481 1.02648 0.135486 0.169481 1.01298 0.140821 0.169481 1.03073 0.131821 0.169481 1.00932 0.131521 0.169481 1.00473 0.134071 0.169481 0.995068 0.130407 0.169481 0.998733 0.140821 0.169481 1.00073 0.134071 0.169481 0.991733 0.129821 0.169481 0.989733 0.129821 0.169481 0.991733 0.125302 0.169481 0.998733 0.117571 0.169481 0.995068 0.104071 0.169481 0.995068 0.104071 0.169481 0.991733 0.121821 0.169481 0.989733 0.121821 0.169481 0.991733 0.0861572 0.169481 0.996483 0.0898214 0.169481 1.00421 0.0901214 0.169481 1.00473 0.0898214 0.169481 1.00525 0.0898214 0.169481 1.00932 0.0828214 0.169481 1.00073 0.0918214 0.169481 0.989733 0.100407 0.169481 0.998733 0.0898214 0.169481 1.03015 0.122821 0.169481 1.01073 0.0861572 0.169481 1.02648 0.0911143 0.169481 1.01651 0.0908214 0.169481 1.01722 0.0911143 -0.460519 1.01651 0.0908214 -0.460519 1.01722 0.0908214 -0.460519 1.02225 0.0908214 0.169481 1.02225 0.0911143 -0.460519 1.02295 0.0911143 0.169481 1.02295 0.0965996 -0.460519 1.02844 0.0965996 0.169481 1.02844 0.0973067 0.169481 1.02873 0.0968882 -0.106815 1.02863 0.0994212 0.169477 1.02885 0.101821 -0.460519 1.03249 0.101821 0.169481 1.03249 0.101575 -0.460519 1.03051 0.1015 0.16944 1.03033 0.100103 -0.460494 1.02897 0.0980641 -0.460519 1.02873 0.101011 0.0202541 1.02973 0.102114 -0.460519 1.03395 0.101869 -0.144386 1.03347 0.1076 0.169481 1.03944 0.108307 0.169481 1.03973 0.1076 -0.460519 1.03944 0.108307 -0.460519 1.03973 0.113336 -0.460519 1.03973 0.113336 0.169481 1.03973 0.113754 -0.0246728 1.03963 0.114043 -0.460519 1.03944 0.119821 0.169481 1.03325 0.119528 0.169481 1.03395 0.119728 -0.145085 1.03364 0.119821 -0.460519 1.03325 0.119821 -0.460519 1.03173 0.121854 0.169441 1.02889 0.119821 0.169481 1.03173 0.123579 -0.460519 1.02873 0.119968 -0.251131 1.0309 0.120478 0.169052 1.02978 0.120792 -0.460356 1.02945 0.123579 0.169481 1.02873 0.125043 0.169481 1.02844 0.130821 0.169481 1.02225 0.130528 0.169481 1.02295 0.130821 -0.460519 1.02225 0.130528 -0.460519 1.02295 0.130821 0.169481 1.01722 0.130528 0.169481 1.01651 0.130821 -0.460519 1.01722 0.125043 -0.460519 1.01103 0.125043 0.169481 1.01103 0.124336 0.169481 1.01073 0.123579 -0.460519 1.01073 0.120013 -0.141466 1.00875 0.119821 0.169481 1.00697 0.120699 0.169389 1.00991 0.120552 -0.46038 1.00996 0.119821 -0.460519 1.00622 0.119528 0.169481 1.00551 0.119528 -0.460519 1.00551 0.113336 -0.460519 0.999733 0.114043 -0.460519 1.00003 0.114043 0.169481 1.00003 0.113336 0.169481 0.999733 0.1076 -0.460519 1.00003 0.108307 0.169481 0.999733 0.1076 0.169481 1.00003 0.101821 -0.460519 1.00622 0.102114 0.169481 1.00551 0.102114 -0.460519 1.00551 0.0988214 -0.460519 1.01073 0.101821 0.169481 1.00697 0.100827 -0.089237 1.00992 0.101821 -0.460519 1.00773 0.101228 -0.4604 1.00953 0.101629 -0.0470716 1.00875 0.0980641 0.169481 1.01073 0.100979 0.16941 1.01 0.126669 0.169446 1.00142 0.122364 0.169478 1.00493 0.125324 0.169445 1.00811 0.127531 0.169467 1.0077 0.123968 0.169148 1.00762 0.124469 0.169462 1.0016 0.123079 0.169459 1.00266 0.122813 -0.0378284 1.00613 0.128892 0.169462 1.00627 0.12397 -0.215606 1.00751 0.122524 -0.133706 1.00414 0.125201 -0.283135 1.00804 0.122616 -0.292585 1.0056 0.127734 0.125381 1.002 0.128958 0.169407 1.00336 0.128617 -0.460485 1.00268 0.124532 -0.275063 1.00162 0.123205 -0.460512 1.00702 0.126832 -0.330581 1.00152 0.12296 -0.4604 1.00279 0.126603 -0.460451 1.00804 0.124608 -0.460616 1.00144 0.129325 -0.460553 1.00477 0.128788 -0.460444 1.00667 0.0961344 0.169227 1.03108 0.0949326 0.169172 1.03814 0.0927248 0.169367 1.03305 0.0992608 0.169477 1.03386 0.0925313 0.1695 1.03597 0.0961758 0.0241873 1.03805 0.0981129 -0.103781 1.03235 0.0924985 -0.184402 1.03444 0.0956481 -0.0377381 1.03135 0.0985982 -0.284119 1.03649 0.0980827 0.169448 1.03729 0.0991315 -0.189619 1.03429 0.0933925 -0.032119 1.03252 0.0930933 -0.205615 1.03652 0.0944664 -0.460438 1.03789 0.0969872 -0.158513 1.03159 0.0924295 -0.460483 1.03558 0.0930196 -0.46052 1.03272 0.095432 -0.460411 1.03127 0.0987246 -0.460259 1.03283 0.0992915 -0.460221 1.03556 0.097274 -0.460514 1.03784 0.128927 0.169434 1.03331 0.124764 -0.460353 1.03804 0.123724 0.169461 1.03756 0.126961 0.16942 1.03148 0.129164 0.0382638 1.03466 0.122328 0.169483 1.03495 0.123646 0.1695 1.032 0.126918 0.169343 1.03806 0.123411 -0.00810018 1.03704 0.12493 -0.116578 1.03799 0.125969 -0.259313 1.03137 0.128828 0.169468 1.03639 0.127231 -0.292388 1.03776 0.12802 -0.4605 1.03213 0.12884 -0.311583 1.03612 0.123131 -0.291698 1.03274 0.122546 -0.153689 1.03535 0.12427 -0.300656 1.03175 0.128929 -0.290222 1.03344 0.127143 -0.460388 1.03782 0.122723 -0.460488 1.0362 0.122431 -0.460523 1.03403 0.124646 -0.460616 1.03136 0.0943642 0.169482 1.00797 0.0960478 0.169334 1.00127 0.0985849 0.169508 1.00688 0.0924599 0.169472 1.00545 0.0928741 0.169449 1.0028 0.0962497 0.0383623 1.00802 0.0991319 0.169496 1.00349 0.0930143 -0.194935 1.00285 0.0980053 -0.150392 1.00724 0.0944304 -0.245531 1.00776 0.0990163 -0.177019 1.0059 0.0932689 -0.150933 1.00682 0.0924985 -0.223186 1.00444 0.0986285 -0.186272 1.00285 0.0952136 -0.195624 1.00149 0.0991186 -0.251241 1.00414 0.0965928 -0.245236 1.00802 0.0975856 -0.107621 1.00191 0.0924742 -0.460406 1.00565 0.0988726 -0.460482 1.00301 0.0946717 -0.460531 1.008 0.0933337 -0.460381 1.00228 0.0965852 -0.460505 1.00138 0.0991948 -0.460498 1.00539 0.0977909 -0.460553 1.00763 0.0973067 0.169481 1.71873 0.0965996 -0.460519 1.71844 0.0965996 0.169481 1.71844 0.0828214 0.169481 1.70298 0.0828214 0.169481 1.69873 0.0828214 0.169481 1.71648 0.0898214 0.169481 1.72421 0.0912356 0.169481 1.73073 0.0953018 0.169481 1.73073 0.0958214 0.169481 1.73043 0.100407 0.169481 1.73073 0.117571 0.169481 1.7344 0.117571 0.169481 1.73773 0.104071 0.169481 1.73773 0.0998214 0.169481 1.73773 0.121236 0.169481 1.73073 0.125821 0.169481 1.73043 0.131821 0.169481 1.72932 0.131821 0.169481 1.72421 0.138821 0.169481 1.73298 0.140821 0.169481 1.72873 0.129821 0.169481 1.73973 0.130528 0.169481 1.71295 0.135486 0.169481 1.71648 0.131821 0.169481 1.69421 0.130407 0.169481 1.68873 0.138821 0.169481 1.68648 0.134071 0.169481 1.68173 0.129821 0.169481 1.68173 0.126341 0.169481 1.68873 0.125821 0.169481 1.68903 0.125302 0.169481 1.68873 0.121236 0.169481 1.68873 0.117571 0.169481 1.68507 0.104071 0.169481 1.68507 0.104071 0.169481 1.68173 0.121821 0.169481 1.67973 0.117571 0.169481 1.68173 0.121821 0.169481 1.68173 0.100407 0.169481 1.68873 0.096341 0.169481 1.68873 0.0958214 0.169481 1.68903 0.0912356 0.169481 1.68873 0.0898214 0.169481 1.69015 0.0901214 0.169481 1.69473 0.0898214 0.169481 1.69525 0.0875714 0.169481 1.68173 0.0875714 0.169481 1.68507 0.0808214 0.169481 1.69073 0.0898214 0.169481 1.72015 0.131821 0.169481 1.69015 0.0976051 0.169347 1.69181 0.0828214 -0.460519 1.69873 0.0828214 -0.460519 1.70298 0.0861572 0.169481 1.70298 0.0898214 0.169481 1.69932 0.0898214 -0.460519 1.69525 0.0901214 -0.460519 1.69473 0.0898214 -0.460519 1.69421 0.0898214 0.169481 1.69421 0.0898214 -0.460519 1.69015 0.0861572 0.169481 1.68648 0.0828214 0.169481 1.68648 0.0828214 0.169481 1.69073 0.0828214 -0.460519 1.69073 0.0808214 -0.460519 1.69073 0.0813183 -0.107807 1.68047 0.0812875 -0.460414 1.68035 0.0821399 -0.101766 1.67986 0.0814555 0.169434 1.6802 0.0808214 0.169481 1.68173 0.0918214 0.169481 1.68173 0.0953018 0.169481 1.68873 0.104071 -0.460519 1.68173 0.0998214 -0.460519 1.68173 0.0998214 0.169481 1.68173 0.121821 -0.460519 1.67973 0.121821 -0.460519 1.68173 0.130407 -0.460519 1.68873 0.134071 -0.460519 1.68507 0.134071 0.169481 1.68507 0.129821 -0.460519 1.68173 0.140669 -0.460522 1.68087 0.139118 0.169481 1.67973 0.140821 0.169481 1.68173 0.14065 -0.308096 1.68097 0.140634 0.169427 1.68078 0.138821 -0.460519 1.69073 0.140821 0.169481 1.69073 0.138821 -0.460519 1.68648 0.138821 0.169481 1.69073 0.135486 0.169481 1.68648 0.131821 -0.460519 1.69015 0.131821 -0.460519 1.69421 0.131821 -0.460519 1.69525 0.131521 0.169481 1.69473 0.131821 0.169481 1.69525 0.131821 0.169481 1.69932 0.138821 -0.460519 1.70298 0.135486 0.169481 1.70298 0.138821 0.169481 1.70298 0.138821 0.169481 1.69873 0.140821 0.169481 1.69873 0.140821 0.169481 1.72073 0.140821 -0.460519 1.72073 0.138821 -0.460519 1.72073 0.138821 0.169481 1.72073 0.135486 -0.460519 1.71648 0.138821 0.169481 1.71648 0.131821 -0.460519 1.72015 0.131821 0.169481 1.72015 0.131521 0.169481 1.72473 0.131821 0.169481 1.72525 0.135486 0.169481 1.73298 0.138821 0.169481 1.72873 0.140821 -0.460519 1.72873 0.138821 -0.460519 1.73973 0.140821 0.169481 1.73773 0.140337 0.169291 1.739 0.138821 0.169481 1.73973 0.139503 -0.070166 1.7396 0.139774 -0.460449 1.73955 0.14065 -0.228166 1.73849 0.129821 -0.460519 1.73773 0.129821 0.169481 1.73773 0.134071 -0.460519 1.73773 0.134071 -0.460519 1.7344 0.134071 0.169481 1.73773 0.134071 0.169481 1.7344 0.130407 0.169481 1.73073 0.126341 0.169481 1.73073 0.125821 -0.460519 1.73043 0.125302 0.169481 1.73073 0.121236 -0.460519 1.73073 0.121821 -0.460519 1.73773 0.121821 -0.460519 1.73973 0.121821 0.169481 1.73773 0.121821 0.169481 1.73973 0.0998214 0.169481 1.73973 0.0998214 -0.460519 1.73773 0.104071 0.169481 1.7344 0.100407 -0.460519 1.73073 0.096341 -0.460519 1.73073 0.096341 0.169481 1.73073 0.0953018 -0.460519 1.73073 0.0912356 -0.460519 1.73073 0.0875714 -0.460519 1.7344 0.0875714 0.169481 1.7344 0.0875714 -0.460519 1.73773 0.0875714 0.169481 1.73773 0.0918214 0.169481 1.73773 0.0918214 -0.460519 1.73773 0.0918214 0.169481 1.73973 0.0918214 -0.460519 1.73973 0.0828214 -0.460519 1.73973 0.081347 0.169446 1.73899 0.0818639 -0.460448 1.73955 0.0808214 -0.460519 1.73773 0.0808214 0.169481 1.73773 0.0813183 -0.289507 1.73899 0.0814295 -0.0389146 1.73913 0.0828214 0.169481 1.73973 0.0821399 -0.207719 1.7396 0.0808214 0.169481 1.72873 0.0828214 0.169481 1.72873 0.0828214 0.169481 1.73298 0.0861572 0.169481 1.73298 0.0898214 0.169481 1.72932 0.0898214 -0.460519 1.72525 0.0898214 0.169481 1.72525 0.0901214 0.169481 1.72473 0.0861572 0.169481 1.71648 0.0828214 -0.460519 1.72073 0.0828214 0.169481 1.72073 0.0808214 -0.460519 1.72073 0.0808214 0.169481 1.72073 0.0808214 0.169481 1.69873 0.0828214 -0.460519 1.71648 0.0808214 -0.460519 1.69873 0.0861572 -0.460519 1.70298 0.0861572 -0.460519 1.68648 0.0875714 -0.460519 1.68507 0.0912356 -0.460519 1.68873 0.0828214 -0.460519 1.68648 0.0808214 -0.460519 1.68173 0.0875714 -0.460519 1.68173 0.0918214 -0.460519 1.68173 0.0953018 -0.460519 1.68873 0.0958214 -0.460519 1.68903 0.096341 -0.460519 1.68873 0.100407 -0.460519 1.68873 0.104071 -0.460519 1.68507 0.117571 -0.460519 1.68507 0.117571 -0.460519 1.68173 0.125302 -0.460519 1.68873 0.121236 -0.460519 1.68873 0.125821 -0.460519 1.68903 0.126341 -0.460519 1.68873 0.135486 -0.460519 1.68648 0.131521 -0.460519 1.69473 0.131821 -0.460519 1.69932 0.134071 -0.460519 1.68173 0.135486 -0.460519 1.70298 0.138821 -0.460519 1.71648 0.140821 -0.460519 1.69873 0.138821 -0.460519 1.69873 0.131821 -0.460519 1.72421 0.131521 -0.460519 1.72473 0.131821 -0.460519 1.72525 0.131821 -0.460519 1.72932 0.135486 -0.460519 1.73298 0.138821 -0.460519 1.72873 0.138821 -0.460519 1.73298 0.129821 -0.460519 1.73973 0.130407 -0.460519 1.73073 0.126341 -0.460519 1.73073 0.125302 -0.460519 1.73073 0.104071 -0.460519 1.7344 0.117571 -0.460519 1.7344 0.117571 -0.460519 1.73773 0.104071 -0.460519 1.73773 0.0998214 -0.460519 1.73973 0.0958214 -0.460519 1.73043 0.0898214 -0.460519 1.72932 0.0901214 -0.460519 1.72473 0.0898214 -0.460519 1.72421 0.0898214 -0.460519 1.72015 0.0861572 -0.460519 1.73298 0.0808214 -0.460519 1.72873 0.0828214 -0.460519 1.73298 0.0828214 -0.460519 1.72873 0.0861572 -0.460519 1.71648 0.0988214 -0.460519 1.71873 0.0898214 -0.460519 1.69932 0.0988214 -0.460519 1.70073 0.0908214 0.169481 1.71225 0.0911143 0.169481 1.71295 0.0911143 -0.460519 1.71295 0.0908214 -0.460519 1.71225 0.0908214 -0.460519 1.70722 0.0911143 -0.460519 1.70651 0.0908214 0.169481 1.70722 0.0908735 -0.14782 1.70698 0.0911143 0.169481 1.70651 0.0973067 -0.460519 1.70073 0.0965996 0.169481 1.70103 0.0965996 -0.460519 1.70103 0.101041 0.169348 1.69974 0.0980641 0.169481 1.70073 0.101821 -0.460519 1.69697 0.100854 -0.207614 1.69987 0.100353 -0.460453 1.70038 0.0996532 -0.111918 1.70058 0.101654 -0.460495 1.6987 0.101629 0.0593461 1.69876 0.101821 0.169481 1.69773 0.102114 -0.460519 1.69551 0.102114 0.169481 1.69551 0.101821 0.169481 1.69622 0.108307 -0.460519 1.68973 0.1076 0.169481 1.69003 0.1076 -0.460519 1.69003 0.108307 0.169481 1.68973 0.113336 0.169481 1.68973 0.114043 -0.460519 1.69003 0.113336 -0.460519 1.68973 0.114043 0.169481 1.69003 0.119528 -0.460519 1.69551 0.119528 0.169481 1.69551 0.119821 -0.460519 1.69622 0.121989 -0.190002 1.70058 0.123579 -0.460519 1.70073 0.120913 -0.46041 1.70007 0.119821 0.169481 1.69697 0.119821 -0.460519 1.69773 0.120013 -0.139161 1.69876 0.120784 -0.0704464 1.69986 0.120636 0.169306 1.69998 0.123579 0.169481 1.70073 0.125043 0.169481 1.70103 0.125043 -0.460519 1.70103 0.130528 -0.460519 1.70651 0.130771 -0.31397 1.70692 0.130528 0.169481 1.70651 0.130771 -0.325171 1.70692 0.130821 -0.460519 1.70722 0.130771 -0.336372 1.70692 0.130821 0.169481 1.70722 0.130528 -0.460519 1.71295 0.130821 -0.460519 1.71225 0.130821 0.169481 1.71225 0.125043 0.169481 1.71844 0.125043 -0.460519 1.71844 0.124336 -0.460519 1.71873 0.122821 0.169481 1.71873 0.120361 0.169417 1.71977 0.12165 -0.460469 1.71897 0.120666 -0.274506 1.71969 0.119821 0.169481 1.72249 0.119528 -0.460519 1.72395 0.119528 0.169481 1.72395 0.119821 -0.460519 1.72173 0.113695 -0.147819 1.72966 0.114043 0.169481 1.72944 0.114043 -0.460519 1.72944 0.113336 0.169481 1.72973 0.113336 -0.460519 1.72973 0.108307 0.169481 1.72973 0.1076 -0.460519 1.72944 0.108307 -0.460519 1.72973 0.1076 0.169481 1.72944 0.101892 -0.148052 1.72358 0.102114 -0.460519 1.72395 0.102114 0.169481 1.72395 0.101821 0.169481 1.72249 0.101629 -0.0107558 1.72071 0.101011 -0.0440716 1.71973 0.101157 0.16935 1.71961 0.100908 -0.46041 1.71947 0.101821 -0.460519 1.72249 0.0988214 0.169481 1.71873 0.0998434 -0.110703 1.71892 0.128984 0.169414 1.72343 0.127964 -0.460465 1.72212 0.124814 -0.46051 1.72144 0.122441 -0.460437 1.72438 0.123205 -0.460041 1.72694 0.129236 -0.460518 1.72491 0.128929 -0.384131 1.72344 0.126631 -0.460513 1.72821 0.125031 -0.164911 1.72797 0.123151 -0.432169 1.72268 0.126412 -0.369169 1.72138 0.127734 -0.151819 1.722 0.122837 -0.161269 1.72629 0.127275 -0.1152 1.72773 0.129173 0.169454 1.72556 0.128727 -0.185485 1.72644 0.127616 0.169292 1.72774 0.123112 0.169466 1.72262 0.12376 0.169559 1.7277 0.124652 0.169458 1.72146 0.127036 0.169437 1.72152 0.12242 0.169183 1.72457 0.0928345 -0.460508 1.69293 0.0978032 -0.460496 1.69763 0.097429 -0.46029 1.69176 0.0992155 -0.460476 1.69489 0.0939531 -0.460296 1.69781 0.0989294 -0.384131 1.69344 0.0970151 -0.248878 1.69782 0.0946214 -0.460469 1.69154 0.0958906 -0.128785 1.69136 0.0977346 -0.252226 1.692 0.0927393 -0.229782 1.69597 0.0987021 -0.224466 1.69639 0.0982504 0.169359 1.69721 0.0945033 -0.193557 1.69776 0.0925497 -0.151819 1.69386 0.095801 0.169329 1.69816 0.0989983 0.169459 1.69345 0.09246 0.169472 1.69546 0.0927539 0.169462 1.69317 0.094562 0.169438 1.69152 0.0935049 0.169464 1.69726 0.099106 0.108844 1.69546 0.122907 -0.460445 1.6926 0.126112 -0.399094 1.69805 0.122498 -0.3798 1.69444 0.122639 -0.460513 1.69594 0.128338 -0.460358 1.69716 0.125971 -0.460492 1.6913 0.12385 -0.319753 1.69211 0.123567 -0.304889 1.6972 0.124556 -0.460487 1.69789 0.129107 -0.46048 1.69389 0.122714 -0.0896065 1.69344 0.129243 0.169462 1.6958 0.126036 -0.0964971 1.69802 0.128269 -0.460486 1.69229 0.128929 0.0151311 1.69344 0.126401 -0.110721 1.69144 0.122536 -0.0100689 1.69546 0.128271 -0.0697221 1.69697 0.127295 0.169459 1.69159 0.124461 0.169474 1.69161 0.127795 0.0346217 1.69204 0.122379 0.169481 1.69431 0.123723 0.169477 1.69753 0.126993 0.169316 1.69794 0.0996979 -0.460523 1.72501 0.0923266 -0.460544 1.72464 0.0944359 -0.460429 1.728 0.0936363 -0.460427 1.72198 0.0929155 -0.287269 1.72644 0.0975692 -0.404606 1.72761 0.0963315 -0.460448 1.7213 0.0984343 0.169387 1.72251 0.0931516 -0.130163 1.72268 0.0941699 -0.128785 1.72759 0.0925049 -0.238444 1.72437 0.0976142 -0.206353 1.72192 0.0943838 -0.191982 1.72171 0.0988061 -0.132919 1.72629 0.0967991 -0.0992533 1.7279 0.09244 0.169474 1.72541 0.0991443 -0.0703127 1.72444 0.092544 0.169197 1.72357 0.0965214 -0.0488534 1.72149 0.0964792 0.169452 1.72811 0.0952508 0.16942 1.7213 0.0936667 0.169479 1.72752 0.0989586 0.169473 1.72634 -1.52888 -0.565634 1.51473 -1.51368 -0.575519 1.50073 -1.52903 -0.565583 1.50073 -1.53618 -0.575519 1.50073 -1.51368 -0.525519 1.50073 -1.53618 -0.525519 1.50073 -1.58518 -0.525519 1.42923 -1.58518 -0.525519 1.45173 -1.58518 -0.575519 1.45173 -1.58518 -0.575519 1.42923 -1.58968 -0.525519 1.42473 -1.59918 -0.535388 1.44453 -1.59918 -0.575519 1.51473 -1.59918 -0.525519 1.42473 -1.59918 -0.525519 1.51473 -1.59918 -0.575519 1.42473 -1.58968 -0.575519 1.42473 -1.50918 -0.575519 1.51473 -1.50918 -0.575519 1.50523 -1.50918 -0.525519 1.50523 -1.50918 -0.525519 1.51473 -1.58518 -0.535249 1.44474 -1.58518 -0.565586 1.44477 -1.59918 -0.565371 1.4445 -1.52934 -0.535452 1.50072 -1.52921 -0.535591 1.51473 -1.50918 -0.520519 1.15973 -1.52891 -0.52052 1.16964 -1.50918 -0.520519 1.20973 -1.52755 -0.506518 1.16988 -1.51368 -0.506519 1.15973 -1.5359 -0.5068 1.15973 -1.51368 -0.506519 1.20973 -1.58518 -0.457519 1.15973 -1.58518 -0.457519 1.20973 -1.58518 -0.435019 1.15973 -1.58968 -0.430519 1.20973 -1.58968 -0.430519 1.15973 -1.59918 -0.520519 1.20973 -1.59918 -0.520519 1.15973 -1.59918 -0.430519 1.15973 -1.50918 -0.511019 1.15973 -1.50918 -0.511019 1.20973 -1.53618 -0.506519 1.20973 -1.59918 -0.430519 1.20973 -1.58518 -0.435019 1.20973 -1.59918 -0.450014 1.19997 -1.58516 -0.450202 1.19997 -1.59918 -0.450678 1.1691 -1.58518 -0.450784 1.16909 -1.52903 -0.520519 1.19984 -1.52906 -0.506504 1.19982 -1.65418 -0.520519 1.30473 -1.65418 -0.520519 1.21473 -1.61381 -0.520521 1.28535 -1.65418 -0.506519 1.30023 -1.65418 -0.506519 1.27773 -1.60418 -0.506519 1.27773 -1.60418 -0.506519 1.30023 -1.61375 -0.50652 1.28521 -1.60418 -0.457519 1.22873 -1.60418 -0.435019 1.22873 -1.65418 -0.457519 1.22873 -1.65418 -0.435019 1.22873 -1.60418 -0.430519 1.21473 -1.65418 -0.430519 1.21473 -1.60418 -0.511019 1.30473 -1.60418 -0.520519 1.21473 -1.60418 -0.430519 1.22423 -1.60418 -0.520519 1.30473 -1.65418 -0.511019 1.30473 -1.65418 -0.430519 1.22423 -1.64459 -0.450294 1.21473 -1.6447 -0.450535 1.22873 -1.61413 -0.450167 1.21473 -1.61419 -0.450224 1.22873 -1.64441 -0.506517 1.28533 -1.64419 -0.52052 1.28557 -1.60418 -0.435019 1.50073 -1.61401 -0.450413 1.50073 -1.65418 -0.457519 1.50073 -1.60418 -0.457519 1.50073 -1.65418 -0.435019 1.50073 -1.60418 -0.506519 1.42923 -1.60418 -0.506519 1.45173 -1.65418 -0.506519 1.42923 -1.60418 -0.511019 1.42473 -1.65418 -0.520519 1.42473 -1.60418 -0.520519 1.51473 -1.60418 -0.520519 1.42473 -1.61395 -0.520519 1.44423 -1.65418 -0.520519 1.51473 -1.60418 -0.430519 1.51473 -1.65418 -0.430519 1.50523 -1.60418 -0.430519 1.50523 -1.65418 -0.430519 1.51473 -1.65418 -0.506519 1.45173 -1.65418 -0.511019 1.42473 -1.64398 -0.52052 1.44459 -1.64419 -0.506514 1.44478 -1.61381 -0.506517 1.44454 -1.64457 -0.450403 1.50073 -1.64454 -0.450392 1.51473 -1.61408 -0.450277 1.51473 -1.59918 -0.520519 1.56973 -1.59918 -0.520519 1.51973 -1.50918 -0.520521 1.51973 -1.52941 -0.520521 1.52971 -1.53618 -0.506519 1.56973 -1.53619 -0.506512 1.51973 -1.51368 -0.506519 1.51973 -1.52636 -0.506518 1.52795 -1.51368 -0.506519 1.56973 -1.58518 -0.435019 1.56973 -1.58518 -0.457519 1.51973 -1.58518 -0.435019 1.51973 -1.58968 -0.430519 1.56973 -1.59918 -0.430519 1.51973 -1.59918 -0.430519 1.56973 -1.58968 -0.430519 1.51973 -1.50918 -0.511019 1.56973 -1.50918 -0.511019 1.51973 -1.50918 -0.520519 1.56973 -1.58518 -0.457519 1.56973 -1.59918 -0.450283 1.56007 -1.58516 -0.45038 1.56002 -1.59918 -0.450364 1.5295 -1.58518 -0.450395 1.52945 -1.52914 -0.520519 1.56006 -1.52937 -0.506515 1.55996 -1.65418 -0.280519 1.21473 -1.60418 -0.370519 1.21473 -1.65418 -0.370519 1.21473 -1.65418 -0.343519 1.22873 -1.60418 -0.343519 1.22873 -1.60418 -0.366019 1.22873 -1.61362 -0.350362 1.22873 -1.60418 -0.294519 1.27773 -1.60418 -0.294519 1.30023 -1.65418 -0.294519 1.27773 -1.65418 -0.294519 1.30023 -1.65418 -0.290019 1.30473 -1.65418 -0.280519 1.30473 -1.60418 -0.280519 1.30473 -1.61384 -0.280519 1.28502 -1.64437 -0.280518 1.28474 -1.60418 -0.370519 1.22423 -1.60418 -0.280519 1.21473 -1.60418 -0.290019 1.30473 -1.65418 -0.366019 1.22873 -1.65418 -0.370519 1.22423 -1.64439 -0.294523 1.28456 -1.61383 -0.294519 1.28482 -1.64437 -0.350373 1.21473 -1.6443 -0.350283 1.22874 -1.61365 -0.35047 1.21473 -1.59918 -0.535579 1.28485 -1.59918 -0.575519 1.30473 -1.59918 -0.525519 1.30473 -1.59918 -0.565119 1.28516 -1.58518 -0.565345 1.285 -1.58518 -0.525519 1.30023 -1.58518 -0.575519 1.27773 -1.58518 -0.575519 1.30023 -1.58518 -0.525519 1.27773 -1.51368 -0.525519 1.22873 -1.51368 -0.575519 1.22873 -1.53618 -0.525519 1.22873 -1.50918 -0.525519 1.22423 -1.59918 -0.525519 1.21473 -1.52941 -0.535567 1.21473 -1.50918 -0.575519 1.21473 -1.50918 -0.525519 1.21473 -1.53588 -0.575516 1.22843 -1.59918 -0.575519 1.21473 -1.50918 -0.575519 1.22423 -1.58968 -0.525519 1.30473 -1.58968 -0.575519 1.30473 -1.52965 -0.535436 1.22874 -1.52887 -0.565317 1.21473 -1.52638 -0.565118 1.22873 -1.58518 -0.535284 1.28474 -1.61393 -0.350418 1.51473 -1.60418 -0.370519 1.51473 -1.60418 -0.280519 1.51473 -1.65418 -0.370519 1.51473 -1.64439 -0.35079 1.51473 -1.65418 -0.366019 1.50073 -1.60418 -0.343519 1.50073 -1.64515 -0.353554 1.50073 -1.60418 -0.366019 1.50073 -1.65418 -0.343658 1.50087 -1.65418 -0.294519 1.45173 -1.65418 -0.294519 1.42923 -1.60418 -0.294519 1.45173 -1.60418 -0.294519 1.42923 -1.65418 -0.290019 1.42473 -1.65418 -0.280519 1.42473 -1.64416 -0.280519 1.4446 -1.60418 -0.280519 1.42473 -1.65418 -0.280519 1.51473 -1.60418 -0.370519 1.50523 -1.65418 -0.370519 1.50523 -1.60418 -0.290019 1.42473 -1.61403 -0.280518 1.44429 -1.61385 -0.294526 1.44433 -1.64417 -0.294524 1.44471 -1.61387 -0.350222 1.50072 -0.459179 -0.460519 1.73473 -0.479096 -0.460521 1.69414 -0.486179 -0.446519 1.73473 -0.463679 -0.446519 1.68473 -0.479344 -0.446519 1.69413 -0.486179 -0.446519 1.68473 -0.463679 -0.446519 1.73473 -0.535179 -0.375019 1.73473 -0.535179 -0.397519 1.68473 -0.535179 -0.375019 1.68473 -0.535179 -0.397519 1.73473 -0.539679 -0.370519 1.68473 -0.539679 -0.370519 1.73473 -0.549179 -0.370519 1.73473 -0.549179 -0.460519 1.73473 -0.549179 -0.370519 1.68473 -0.549179 -0.3899 1.72474 -0.549179 -0.460519 1.68473 -0.459179 -0.460519 1.68473 -0.459179 -0.451019 1.68473 -0.459179 -0.451019 1.73473 -0.535169 -0.3901 1.7249 -0.535177 -0.390783 1.69461 -0.549179 -0.390543 1.69488 -0.47918 -0.446501 1.72498 -0.479223 -0.460519 1.72496 -0.00917862 -0.100519 1.68473 0.0808214 -0.100519 1.68473 0.0107623 -0.100519 1.69437 0.0111521 -0.100521 1.72495 0.0178214 -0.086519 1.73473 -0.00467862 -0.086519 1.73473 0.0113258 -0.0865159 1.72494 -0.00467862 -0.086519 1.68473 0.0106986 -0.0865088 1.69438 0.0178214 -0.086519 1.68473 0.0669518 -0.0373859 1.73473 0.0668214 -0.0150189 1.73473 0.0668214 -0.0375189 1.68473 0.0668214 -0.0150189 1.68473 0.0713214 -0.0105189 1.68473 0.0808219 -0.030561 1.6945 0.0808218 -0.0301625 1.72494 0.0808214 -0.100519 1.73473 0.0808214 -0.0105189 1.68473 -0.00917862 -0.100519 1.73473 0.0808214 -0.0105189 1.73473 0.0713214 -0.0105189 1.73473 -0.00917862 -0.091019 1.68473 -0.00917862 -0.091019 1.73473 0.0668123 -0.0306595 1.69442 0.066822 -0.0272946 1.72573 0.0808214 -0.100519 0.994733 0.0110277 -0.10052 1.03494 0.0112726 -0.0865152 1.03491 -0.00467862 -0.086519 1.04473 0.0178214 -0.086519 1.04473 -0.00467862 -0.086519 0.994733 0.0178214 -0.086519 0.994733 0.0668214 -0.0375189 1.04473 0.0668214 -0.0150189 1.04473 0.0668214 -0.0375189 0.994733 0.0668214 -0.0150189 0.994733 0.0713214 -0.0105189 0.994733 0.0713214 -0.0105189 1.04473 0.0808214 -0.0105189 1.04473 0.0808214 -0.100519 1.04473 0.0808219 -0.0305882 1.0042 -0.00917862 -0.091019 1.04473 -0.00917862 -0.100519 1.04473 -0.00917862 -0.091019 0.994733 -0.00917862 -0.100519 0.994733 0.0808214 -0.0105189 0.994733 0.0668167 -0.030796 1.00402 0.0808216 -0.0303724 1.03464 0.0668188 -0.0304411 1.03459 0.0108633 -0.100519 1.00439 0.0110515 -0.0865127 1.00414 0.080822 -0.230314 1.00469 0.0808214 -0.250519 0.994733 0.0668214 -0.223519 0.994733 0.0668214 -0.246019 1.04473 0.0668183 -0.23037 1.03514 0.0668214 -0.223519 1.04473 -0.00467862 -0.174519 0.994733 -0.00467862 -0.174519 1.04473 0.0178214 -0.174519 0.994733 0.0108362 -0.160518 1.00436 -0.00917862 -0.160519 0.994733 0.0713214 -0.250519 1.04473 0.0808214 -0.160519 1.04473 0.0178214 -0.174519 1.04473 -0.00917862 -0.160519 1.04473 -0.00917862 -0.170019 1.04473 0.0713214 -0.250519 0.994733 0.0668214 -0.246019 0.994733 0.0808214 -0.160519 0.994733 -0.00917862 -0.170019 0.994733 0.0109777 -0.174525 1.00419 0.0107429 -0.174519 1.03496 0.010589 -0.160519 1.03494 0.0668135 -0.230259 1.0045 0.0808188 -0.250518 1.04473 0.0808223 -0.230463 1.03509 -0.00917862 -0.160519 1.73473 -0.00917839 -0.16052 1.68473 0.0107469 -0.160518 1.69427 0.0109215 -0.17452 1.6942 -0.00467862 -0.174519 1.73473 -0.00467862 -0.174519 1.68473 0.0178214 -0.174519 1.73473 0.0668214 -0.246019 1.68473 0.0668214 -0.223519 1.73473 0.0808214 -0.250519 1.73473 0.0808214 -0.160519 1.73473 0.0808214 -0.250519 1.68473 0.0808214 -0.160519 1.68473 0.0178214 -0.174519 1.68473 0.0668214 -0.223519 1.68473 0.0713214 -0.250519 1.68473 -0.00917862 -0.170019 1.73473 -0.00917862 -0.170019 1.68473 0.0668214 -0.246019 1.73473 0.0713214 -0.250519 1.73473 0.0668142 -0.230384 1.72539 0.0808213 -0.230722 1.69499 0.0668185 -0.230611 1.69481 0.0808221 -0.230678 1.72521 0.0107862 -0.160518 1.72475 0.0106505 -0.174533 1.72496 -0.478716 -0.115145 1.67973 -0.479134 -0.145714 1.67973 -0.481512 -0.142343 1.66573 -0.477437 -0.147794 1.66573 -0.463679 -0.155519 1.66573 -0.486179 -0.155519 1.66573 -0.463679 -0.105519 1.66573 -0.535179 -0.155519 1.61673 -0.535179 -0.105519 1.59423 -0.535179 -0.155519 1.59423 -0.539679 -0.105519 1.58973 -0.549179 -0.155519 1.67973 -0.549179 -0.155519 1.58973 -0.54918 -0.115479 1.60911 -0.549179 -0.145355 1.60978 -0.549179 -0.105519 1.67973 -0.539679 -0.155519 1.58973 -0.459179 -0.105519 1.67973 -0.459179 -0.155519 1.67973 -0.459179 -0.155519 1.67023 -0.459179 -0.105519 1.67023 -0.486179 -0.105519 1.66573 -0.535179 -0.105519 1.61673 -0.549179 -0.105519 1.58973 -0.535172 -0.115396 1.60918 -0.535178 -0.145322 1.60974 -0.478679 -0.115041 1.66572 -0.47868 -0.115472 1.04973 -0.479158 -0.145818 1.04973 -0.549179 -0.105519 1.04973 -0.485975 -0.105522 1.06353 -0.463679 -0.105519 1.06373 -0.476157 -0.114913 1.06373 -0.463679 -0.155519 1.06373 -0.486179 -0.155519 1.06373 -0.535179 -0.155519 1.11273 -0.549179 -0.155519 1.13973 -0.539679 -0.155519 1.13973 -0.539679 -0.105519 1.13973 -0.54918 -0.145756 1.11996 -0.549179 -0.105519 1.13973 -0.549179 -0.155519 1.04973 -0.459179 -0.105519 1.04973 -0.535113 -0.105521 1.11266 -0.535179 -0.105519 1.13523 -0.459179 -0.155519 1.05923 -0.459179 -0.105519 1.05923 -0.459179 -0.155519 1.04973 -0.535179 -0.155519 1.13523 -0.53517 -0.145744 1.11982 -0.549179 -0.115733 1.11994 -0.535178 -0.114188 1.12152 -0.479151 -0.145848 1.06374 -0.00917862 -0.460519 1.68473 -0.00917862 -0.460519 1.73473 0.011056 -0.46052 1.7252 0.0178214 -0.446519 1.73473 -0.00467862 -0.446519 1.73473 0.0113514 -0.446517 1.72531 -0.00467862 -0.446519 1.68473 0.0178214 -0.446519 1.68473 0.0668214 -0.375019 1.68473 0.0668214 -0.397519 1.73473 0.0668189 -0.388648 1.72665 0.0668214 -0.375019 1.73473 0.0668214 -0.397519 1.68473 0.0713214 -0.370519 1.68473 0.0713214 -0.370519 1.73473 0.0808214 -0.460519 1.73473 0.0808214 -0.370519 1.73473 0.0808214 -0.370519 1.68473 0.0808214 -0.460519 1.68473 -0.00917862 -0.451019 1.73473 -0.00917862 -0.451019 1.68473 0.080822 -0.390563 1.69461 0.0668129 -0.390671 1.69447 0.0808211 -0.390563 1.72481 0.0668188 -0.393156 1.72174 0.0109187 -0.460519 1.69432 0.0110962 -0.446513 1.6941 0.0808214 -0.460519 0.994733 0.0808214 -0.460519 1.04473 -0.00917862 -0.460519 1.04473 0.0107097 -0.46052 1.03499 0.0109307 -0.446516 1.03504 -0.00467862 -0.446519 1.04473 0.0178214 -0.446519 1.04473 0.0668214 -0.375019 1.04473 0.0667478 -0.397594 1.04473 0.0668214 -0.397519 0.994733 0.0668214 -0.375019 0.994733 0.0713214 -0.370519 0.994733 0.0713214 -0.370519 1.04473 0.0808214 -0.370519 0.994733 0.0808214 -0.370519 1.04473 -0.00917862 -0.451019 1.04473 -0.00917862 -0.451019 0.994733 -0.00917862 -0.460519 0.994733 -0.00467862 -0.446519 0.994733 0.0178214 -0.446519 0.994733 0.0668141 -0.390265 1.00445 0.0808218 -0.389963 1.03479 0.0668207 -0.388564 1.03603 0.080822 -0.390225 1.00462 0.0108633 -0.460519 1.00439 0.0110515 -0.446513 1.00414 -0.549179 -0.370519 1.04473 -0.549181 -0.390262 1.03513 -0.549179 -0.390219 1.00462 -0.535179 -0.375019 1.04473 -0.535176 -0.390418 1.03517 -0.535179 -0.397519 1.04473 -0.535179 -0.375019 0.994733 -0.535179 -0.397519 0.994733 -0.486179 -0.446519 0.994733 -0.486179 -0.446519 1.04473 -0.478946 -0.446518 1.03512 -0.463679 -0.446519 0.994733 -0.459179 -0.451019 1.04473 -0.459179 -0.451019 0.994733 -0.549179 -0.460519 0.994733 -0.478973 -0.460519 1.00429 -0.459179 -0.460519 1.04473 -0.549179 -0.460519 1.04473 -0.539679 -0.370519 1.04473 -0.463679 -0.446519 1.04473 -0.539679 -0.370519 0.994733 -0.549179 -0.370519 0.994733 -0.459179 -0.460519 0.994733 -0.479013 -0.446511 1.00418 -0.478776 -0.460519 1.03507 -0.535171 -0.390265 1.00444 0.135821 -0.460519 1.13973 0.126054 -0.46052 1.12004 0.135821 -0.446519 1.13523 0.126202 -0.446515 1.11986 0.0858214 -0.446519 1.11273 0.135818 -0.397619 1.06383 0.135821 -0.375019 1.06373 0.0858214 -0.375019 1.06373 0.0858214 -0.370519 1.05923 0.135821 -0.370519 1.04973 0.135821 -0.460519 1.04973 0.0858214 -0.370519 1.04973 0.135821 -0.446519 1.11273 0.135821 -0.370519 1.05923 0.0858214 -0.451019 1.13973 0.135821 -0.451019 1.13973 0.0858214 -0.446519 1.13523 0.0858214 -0.460519 1.13973 0.0858214 -0.460519 1.04973 0.0858214 -0.397519 1.06373 0.0958402 -0.390257 1.04973 0.0959101 -0.390305 1.06374 0.126236 -0.390398 1.04973 0.128047 -0.388851 1.06373 0.0958015 -0.46052 1.12009 0.0955219 -0.446513 1.11982 0.0858214 -0.370519 1.67973 0.0858214 -0.460519 1.67973 0.135821 -0.370519 1.67973 0.125648 -0.389813 1.67973 0.126508 -0.388984 1.66573 0.135821 -0.375019 1.66573 0.0959487 -0.39061 1.66572 0.13582 -0.397562 1.66569 0.0858214 -0.375019 1.66573 0.0858214 -0.397519 1.66573 0.135821 -0.446519 1.59423 0.0858214 -0.446519 1.61673 0.0858214 -0.446519 1.59423 0.0858214 -0.460519 1.58973 0.135821 -0.460519 1.58973 0.12609 -0.460519 1.60956 0.135821 -0.460519 1.67973 0.135821 -0.370519 1.67023 0.135818 -0.446518 1.61673 0.135821 -0.451019 1.58973 0.0858214 -0.370519 1.67023 0.0858214 -0.451019 1.58973 0.0955063 -0.446511 1.60999 0.127728 -0.446519 1.6073 0.0954946 -0.460519 1.60986 0.0958158 -0.390513 1.67973 0.135821 0.109481 1.67973 0.0858214 0.109481 1.67973 0.095643 0.109481 1.60942 0.135821 0.109481 1.58973 0.0858214 0.109481 1.58973 0.125919 0.109482 1.61015 0.135819 0.0955941 1.61662 0.126749 0.095479 1.60854 0.0858214 0.0954811 1.61673 0.0858214 0.0464811 1.66573 0.135821 0.0464811 1.66573 0.0858214 0.0239811 1.66573 0.0858214 0.0194811 1.67973 0.0955393 0.0393756 1.67973 0.135821 0.0194811 1.67973 0.135821 0.0999811 1.58973 0.135821 0.0954811 1.59423 0.135821 0.0239811 1.66573 0.135821 0.0194811 1.67023 0.0858214 0.0999811 1.58973 0.0858214 0.0954811 1.59423 0.0858214 0.0194811 1.67023 0.0954408 0.0395672 1.66573 0.125791 0.0397213 1.67973 0.125822 0.0399294 1.66573 0.095477 0.0954752 1.60955 0.0957425 0.0391541 1.04973 0.0858214 0.109481 1.04973 0.0858214 0.0194811 1.04973 0.126531 0.0393812 1.04973 0.135821 0.0239811 1.06373 0.126408 0.0395758 1.06373 0.135821 0.0464811 1.06373 0.0858214 0.0239811 1.06373 0.0858214 0.0464811 1.06373 0.0858214 0.0954811 1.11273 0.135821 0.0954811 1.11273 0.0858214 0.0954811 1.13523 0.135821 0.0954811 1.13523 0.0858214 0.0999811 1.13973 0.135821 0.0999811 1.13973 0.135821 0.109481 1.04973 0.135821 0.109481 1.13973 0.0858214 0.109481 1.13973 0.135821 0.0194811 1.05923 0.0858214 0.0194811 1.05923 0.0953512 0.109482 1.11981 0.0953198 0.0954764 1.11958 0.126207 0.0954814 1.11976 0.126092 0.109482 1.11979 0.0957674 0.0392974 1.06374 0.13582 0.0194813 1.04973 -0.549179 -0.250519 1.68473 -0.549179 -0.250519 1.73473 -0.549179 -0.160519 1.68473 -0.535179 -0.246019 1.73473 -0.535179 -0.246019 1.68473 -0.535179 -0.230455 1.69388 -0.535179 -0.223519 1.68473 -0.535179 -0.223519 1.73473 -0.463679 -0.174519 1.68473 -0.486179 -0.174519 1.73473 -0.463679 -0.174519 1.73473 -0.459179 -0.170019 1.68473 -0.459179 -0.160519 1.68473 -0.459179 -0.160519 1.73473 -0.549179 -0.160519 1.73473 -0.486179 -0.174519 1.68473 -0.539679 -0.250519 1.68473 -0.539679 -0.250519 1.73473 -0.459179 -0.170019 1.73473 -0.478618 -0.160518 1.72455 -0.478697 -0.17453 1.7245 -0.479227 -0.160519 1.69495 -0.479471 -0.174522 1.69496 -0.549179 -0.230778 1.725 -0.535166 -0.230866 1.72498 -0.549181 -0.230529 1.69405 -0.549179 -0.250519 0.994733 -0.549181 -0.230834 1.00426 -0.535179 -0.230557 1.00414 -0.535179 -0.246019 0.994733 -0.535179 -0.223519 0.994733 -0.535179 -0.246019 1.04473 -0.535179 -0.223519 1.04473 -0.486179 -0.174519 0.994733 -0.463679 -0.174519 0.994733 -0.486179 -0.174519 1.04473 -0.463679 -0.174519 1.04473 -0.459179 -0.170019 0.994733 -0.549179 -0.160519 0.994733 -0.459179 -0.160519 0.994733 -0.478844 -0.160519 1.00467 -0.549179 -0.160519 1.04473 -0.549179 -0.250519 1.04473 -0.539679 -0.250519 1.04473 -0.539679 -0.250519 0.994733 -0.459179 -0.160519 1.04473 -0.459179 -0.170019 1.04473 -0.478856 -0.160518 1.03479 -0.479077 -0.174529 1.03491 -0.479051 -0.174522 1.00462 -0.535158 -0.230834 1.03471 -0.549179 -0.231028 1.0346</float_array>\n                    <technique_common>\n                        <accessor count=\"12140\" source=\"#shape0-lib-positions-array\" stride=\"3\">\n                            <param name=\"X\" type=\"float\"/>\n                            <param name=\"Y\" type=\"float\"/>\n                            <param name=\"Z\" type=\"float\"/>\n                        </accessor>\n                    </technique_common>\n                </source>\n                <source id=\"shape0-lib-normals\" name=\"normal\">\n                    <float_array id=\"shape0-lib-normals-array\" count=\"74997\">-4.4742e-11 -1 -4.50387e-05 -1.43483e-05 -1 5.08982e-05 3.75795e-05 -1 0 8.00692e-11 -1 -2.68668e-05 -0.00011028 -1 -1.09554e-10 2.88921e-05 -1 0.000162387 -3.33161e-05 -1 1.23414e-05 -1.45228e-05 -1 1.2349e-05 2.88654e-05 -1 -2.85521e-05 5.47484e-05 -1 -2.85986e-05 -1 4.73696e-11 -9.93415e-07 -1 7.10543e-11 -9.93414e-07 -9.93412e-07 2.38418e-05 -1 -1.98682e-06 4.76836e-05 -1 1 0 0 1 0 0 -2.98023e-06 -7.15254e-05 1 2.98023e-06 7.15254e-05 1 -0.000155485 1 -1.54461e-10 2.5565e-11 1 8.5782e-06 1.31237e-05 1 9.39456e-05 7.32756e-06 1 0 3.42082e-10 1 0.000172175 6.85311e-05 1 -0.00026751 -4.8459e-05 1 1.87166e-05 6.67848e-05 1 1.82193e-05 1.26156e-05 1 -3.23298e-05 -0.000176006 1 -3.21505e-05 0 -1 0.000590248 6.61641e-05 -1 0.000151339 -0.00050942 -1 0 -6.86451e-10 -1 0.000230335 2.94193e-05 -1 0 -4.94875e-05 -1 -9.13185e-05 0.000318948 -1 -0.000141311 6.66166e-05 -1 -0.000142444 -4.95571e-05 -1 -3.34901e-05 0.000221088 -1 -3.35278e-05 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 -2.98023e-06 -7.15254e-05 1 1.98682e-06 4.76836e-05 1 0.000410779 1 0 -2.50309e-10 1 -0.000125985 -6.51502e-05 1 -0.00054912 -0.000111153 1 0 0 1 -0.000198997 -0.000125981 1 0.000600382 0.000386965 1 -4.03732e-06 -0.000123815 1 1.07034e-06 -6.26679e-05 1 5.8827e-05 0.000232553 1 5.87755e-05 -1 0 -5.90633e-05 -1 -8.48877e-06 0 -1 0 0.000161891 -1 7.79849e-05 0 -1 -2.64006e-05 -3.1517e-05 -1 1.41109e-05 -3.13996e-05 0.15261 -0.673862 -0.722925 -0.15261 0.673862 0.722925 1 0 -0.000846538 1 9.5025e-05 0 1 0.000675695 0.000191174 0.999997 -0.00120454 0.00221882 0.999996 -0.00292952 0.000366867 0.999998 -0.00194349 0.000542348 0.707107 0.707107 -4.21548e-06 0.707109 0.707105 0 0 1 -0.000560065 -7.65853e-05 1 0 -0.00102484 0.999999 0.00016484 0 1 5.5286e-05 3.46194e-05 1 0 0.000448646 1 0.000159218 0.707104 0.707109 0 0.707104 0.707109 0 1 0 0 1 0 0 0 -1 -6.00644e-05 2.98452e-05 -1 0 0 -1 4.49452e-05 -8.51145e-06 -1 0 -5.65957e-06 -1 4.98369e-06 2.01899e-05 -1 4.81185e-06 0 0 1 -5.62452e-05 -0.000174986 1 0.000281536 0 1 -1.45889e-05 6.56502e-05 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0.707104 0.707109 0 0.707104 0.707109 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 5.14055e-05 -7.26912e-06 -1 0 0 -1 -0.000116901 5.95802e-05 -1 0 -1.94779e-05 -1 2.11967e-05 1.42342e-05 -1 2.20836e-05 -0.769425 0.0568161 0.636205 0.769425 -0.0568161 -0.636205 0 1 0.000544649 0.000162281 1 0 0.000384899 1 -7.70115e-05 -0.0127156 0.999767 -0.0174151 -0.0309325 0.999519 -0.00230769 -0.00933543 0.99994 -0.00570348 0.707107 0.707107 3.20299e-05 0.707092 0.707121 3.79746e-06 0.999999 0 0.00154646 0.999997 -0.00232313 -0.000133847 1 -0.00029691 -0.000730116 1 0.000149459 0 1 -0.000572641 -0.000432829 0.999999 0.00114733 -0.000324389 0.707104 0.707109 0 0.707104 0.707109 0 0 1 0 0 1 0 -1 0 4.914e-05 -1 2.39764e-05 0 -1 0 4.6651e-05 -1 -6.80106e-06 0 -1 1.13932e-05 -3.16565e-05 -1 -4.06602e-05 -3.19007e-05 0 0 -1 -4.80986e-05 -1.54604e-05 -1 0 7.82129e-05 -1 4.4544e-06 5.76628e-05 -1 0.000264088 0 -1 -5.28038e-05 -0.000164279 -1 0 0 -1 1 0 0 1 0 0 0.707104 0.707109 0 0.707104 0.707109 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.180112 -0.668999 0.721111 -0.180112 0.668999 -0.721111 1 5.91969e-05 0 1 0 8.55855e-06 1 -0.000151519 0 1 0 -7.75322e-05 1 3.16593e-05 2.64303e-05 1 3.12306e-05 -1.46314e-05 -0.0148198 0.748219 -0.663286 0.0148198 -0.748219 0.663286 -1 0.000805278 0 -1 0 -1.94881e-05 -1 -0.000202491 -0.000676623 -1 -3.24111e-05 0 -1 0 -0.000344099 -1 -0.000285166 0.000565228 -0.999999 -0.000189562 0.00137146 -1 0.000167204 0.000164206 -0.707107 0 -0.707107 -0.707107 0 -0.707107 0 0.000566921 -1 0.000586863 0 -1 0.00083397 -2.86599e-05 -1 0 1.65781e-05 -1 9.06782e-06 0 -1 -0.000210538 -0.000257286 -1 -0.000345276 -0.000143597 -1 -0.000436588 -0.000136858 -1 -0.707109 0 -0.707104 -0.707109 0 -0.707104 -1 0 0 -1 0 0 0 7.35894e-05 1 -3.59871e-05 0 1 0 -3.68008e-05 1 1.01998e-05 0 1 3.46581e-06 -1.17232e-05 1 -1.24299e-05 -1.16237e-05 1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -0.707109 0 -0.707104 -0.707109 0 -0.707104 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.764273 -0.644872 0.00517483 -0.764273 0.644872 -0.00517483 1 -5.80305e-05 0 1 0 -8.35188e-06 1 6.84939e-05 0 1 0 3.57478e-05 1 -3.79498e-06 -1.04981e-05 1 -3.70854e-06 2.82187e-05 -1 -0.000769215 0 -1 0 0.000288367 -1 0.00012066 0.000602056 -1 0.000438155 0 -1 0 -0.00061874 -0.999999 0.000105807 -0.00120896 -0.707107 0 0.707107 -0.707107 0 0.707107 0 -0.000372051 1 5.18618e-05 0 1 0.000651888 0.000102729 1 0 3.67831e-05 1 -2.29186e-05 0 1 -0.000296464 0.000105977 1 -0.707109 0 0.707104 -0.707109 0 0.707104 -1 0 0 -1 0 0 0 -6.10203e-05 -1 -3.00757e-05 0 -1 0 2.38989e-05 -1 8.49289e-06 0 -1 1.71819e-06 1.1818e-05 -1 -6.06494e-06 1.18277e-05 -1 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 -0.707109 0 0.707104 -0.707109 0 0.707104 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 4.78396e-05 1 -6.80685e-06 0 1 0 -0.000263079 1 0.000133992 0 1 -4.72581e-05 7.0785e-05 1 -1.16869e-05 7.12283e-05 1 -0.752814 0.654894 -0.0662204 0.752814 -0.654894 0.0662204 0 0.000857363 -1 0.000194472 0 -1 0.000647575 -0.000158407 -1 0.000529551 0.00048842 -1 0.00124206 -0.00013135 -0.999999 -0.000870725 0.000238628 -1 0.707107 0 -0.707107 0.707155 9.35407e-05 -0.707059 1 0.00044075 0 0.999203 -0.00945206 0.0387886 1 -0.00021378 0.000929545 1 0 -3.51117e-05 1 -0.000122467 -0.000364731 0.999569 -0.0208807 0.0206416 0.707107 0 -0.707107 0.707107 0 -0.707107 0 0 -1 0 0 -1 -1 4.78964e-05 0 -1 0 -2.40885e-05 -1 1.15976e-05 0 -1 0 6.79208e-06 -1 -2.00252e-05 -4.63018e-06 -1 -2.00228e-05 1.64163e-05 0 -1 0 -2.11852e-05 -1 6.80956e-06 0 -1 -3.40307e-05 -5.87132e-06 -1 -6.04241e-05 0.00027723 -1 0 -5.44073e-05 -1 0.000169267 0 -1 0 1 0 0 1 0 0 0.707107 0 -0.707107 0.707107 0 -0.707107 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0167836 0.532823 0.84606 0.0167837 -0.532823 -0.84606 -1 5.98646e-05 0 -1 0 -8.47573e-06 -1 -0.000174154 0 -1 0 9.13615e-05 -1 3.99266e-05 -3.12105e-05 -1 4.00705e-05 1.00163e-05 1 0.000172574 0 1 0 9.37581e-05 1 -7.97093e-06 0.000114519 1 -0.000139417 0 1 0 -0.000197518 1 -7.84142e-06 -0.000240544 0.707107 0 0.707107 0.707107 0 0.707107 0 0.00117885 0.999999 -4.8528e-05 0 1 -0.0023684 -0.000423357 0.999997 0 -3.71865e-05 1 2.36364e-05 0 1 0.00095961 -0.000350685 1 0.707107 0 0.707107 0.707107 0 0.707107 1 0 0 1 0 0 0 4.77662e-05 -1 2.37099e-05 0 -1 0 -1.21601e-05 -1 -6.82281e-06 0 -1 -4.48947e-08 -1.18374e-05 -1 1.63874e-07 -1.18334e-05 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0.707107 0 0.707107 0.707107 0 0.707107 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -4.6254e-05 -1 0 0 -1 -6.36761e-06 0.000141223 -1 0 0 -1 6.8662e-05 -2.87959e-05 -1 -2.29119e-05 -2.90634e-05 -1 8.39298e-06 -6.17368e-06 1 0 0 1 0.000262624 -0.000127236 1 -7.52719e-05 0.000415241 1 0 0 1 -0.000547529 -0.000129816 1 0.000171214 0 0.707107 0.707107 -3.79289e-06 0.707105 0.707109 -0.000135054 0 1 0.000140733 -0.000409924 1 0.000524392 -0.000312748 1 0 4.5855e-05 1 9.07308e-05 -0.000718661 1 1.41964e-05 9.07548e-05 1 0 0.707109 0.707104 0 0.707109 0.707104 0 1 0 0 1 0 -4.84848e-05 0 -1 0 2.36896e-05 -1 4.73087e-05 0 -1 0 -6.8245e-06 -1 1.2767e-07 -6.75111e-06 -1 -4.65563e-07 2.46186e-05 -1 1 0 0 1 0 0 1 0 0 1 3.78141e-05 -8.40311e-06 1 0 0.000161865 1 -0.000100688 -3.2364e-05 1 0 0 0 0 1 0 0 1 0 0.707109 0.707104 0 0.707109 0.707104 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.720542 0.674566 -0.160561 -0.720542 -0.674566 0.160561 -4.81812e-05 0 1 0 -6.8128e-06 1 0.000259702 0 1 0 0.000128038 1 -6.58559e-05 -4.45465e-05 1 -6.63887e-05 -9.00587e-06 1 -0.684409 -0.724013 -0.0859604 0.684409 0.724013 0.0859604 -0.000385751 0 -1 0 0.000176489 -1 2.8665e-05 0.000259753 -1 0.000276025 5.2777e-06 -1 5.35785e-05 -0.000230033 -1 -2.38528e-06 -0.000563915 -1 -4.21482e-07 0.707107 -0.707107 0 0.707107 -0.707107 -0.000958032 1 0 0 1 0.000348014 0.000216117 0.999999 0.0015586 0.000242849 1 0 0 1 -0.000160704 0.000228135 1 -0.000750809 0 0.707109 -0.707104 0 0.707109 -0.707104 0 0 -1 0 0 -1 -4.63306e-05 -1 0 0 -1 -2.27318e-05 2.03172e-05 -1 0 0 -1 6.35585e-06 7.92195e-06 -1 1.81099e-06 7.93727e-06 -1 -6.44562e-06 1 0 0 1 -7.41746e-05 2.38417e-05 1 0 -0.000119208 1 2.78672e-05 6.1927e-06 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 0.707109 -0.707104 0 0.707109 -0.707104 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -1 -5.01362e-05 7.23611e-06 -1 0 0 -1 0.000261277 -0.00012852 -1 0 4.61457e-05 -1 -6.82867e-05 9.20397e-06 -1 -6.83383e-05 0.673469 0.165151 -0.720531 -0.673469 -0.165151 0.720531 0 1 -0.000820727 -0.000144388 1 0 -0.000620123 1 0.000155417 2.65421e-05 1 0.000280531 0.000101431 1 0.000200404 0.00119706 0.999999 1.19362e-05 -0.707107 0.707107 -5.12726e-12 -0.707107 0.707107 0 -1 0 -0.000878767 -1 -0.000304825 0 -0.999999 -0.00142913 0.000185307 -1 0 0.000209724 -1 0.000127845 0 -1 0.000700833 0.000225174 -0.707104 0.707109 0 -0.707104 0.707109 0 0 1 0 0 1 0 1 0 -6.04873e-05 1 3.01692e-05 0 1 0 -1.83278e-05 1 -8.48547e-06 0 1 6.14501e-06 2.55989e-05 1 -2.09412e-05 2.51527e-05 0 0 1 0.000180141 -5.79022e-05 1 0 0.000289521 1 -6.76765e-05 -1.50392e-05 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.707109 0.707104 0 -0.707109 0.707104 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 -4.74766e-05 6.78545e-06 -1 0 0 -1 0.000149118 -7.25422e-05 -1 0 2.46413e-05 -1 -3.14065e-05 -8.17828e-06 -1 -3.14138e-05 0.694043 0.130376 -0.70803 -0.694043 -0.130376 0.70803 0 1 -0.000768365 -7.80612e-05 1 0 -0.000607154 1 0.00017176 0.00474139 0.999962 0.00728873 0.0110149 0.999939 0.000874175 0.00394346 0.99999 0.0021318 -0.707107 0.707107 -1.34896e-05 -0.7071 0.707113 0 -1 0 -0.00098355 -1 -0.000470151 0 -0.999999 -0.00160471 0.000211781 -1 0 0.000354303 -1 0.000234131 0 -1 0.000746018 0.000191873 -0.707104 0.707109 0 -0.707104 0.707109 0 0 1 0 0 1 0 1 0 -6.04983e-05 1 3.01744e-05 0 1 0 -3.57309e-05 1 -8.48506e-06 0 1 9.54651e-06 3.15523e-05 1 -3.48341e-05 3.19877e-05 0 0 1 0.000132886 -4.2713e-05 1 0 0.0002145 1 -4.96544e-05 -1.10343e-05 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.707109 0.707104 0 -0.707109 0.707104 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -1 -5.40615e-05 0 -1 0 7.63674e-06 -1 0.000162115 0 -1 0 -8.32794e-05 -1 -3.51888e-05 2.77132e-05 -1 -3.57163e-05 -9.21461e-06 0.101559 -0.681895 0.724365 -0.101559 0.681895 -0.724365 1 -0.000605271 0 1 0 -9.87469e-06 1 0.000142146 -0.00047185 0.999849 0.0129882 0.0115722 0.999745 0.00275658 0.0223999 0.999955 0.00518909 0.00800455 0.707107 -3.54051e-05 -0.707107 0.707125 0 -0.707089 0 -0.0012315 -0.999999 -0.000675519 0 -1 -0.00203473 0.000238433 -0.999998 0 0.000488541 -1 0.000308809 0 -1 0.000896348 0.000225457 -1 0.707111 0 -0.707102 0.707111 0 -0.707102 1 0 0 1 0 0 0 -6.16139e-05 1 2.98285e-05 0 1 0 -1.20248e-05 1 -8.51281e-06 0 1 5.0186e-06 2.34944e-05 1 -1.78061e-05 2.3604e-05 1 0 1 0 -3.64761e-05 1 0.00011348 0.000184331 1 0 -9.35014e-06 1 -4.20755e-05 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0.707111 0 -0.707102 0.707111 0 -0.707102 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 -5.91237e-05 0 1 0 -8.50456e-06 1 0.00015665 0 1 0 8.33524e-05 1 -3.36139e-05 -2.76501e-05 1 -3.4436e-05 1.24977e-05 -0.0230155 0.0602612 0.997917 0.0230155 -0.0602612 -0.997917 -1 -0.000523825 0 -1 0 1.20065e-05 -1 0.000181306 0.000447787 -1 0.000197327 0 -1 0 -2.35069e-05 -1 -0.000141516 -0.000287748 -1 -0.000116693 0.000123298 -0.999999 0.000222037 -0.00106837 -0.707107 0 0.707106 -0.707107 0 0.707106 0 -0.000392672 1 0.000159665 0 1 0.000635874 7.9769e-05 1 0 0.000108536 1 -6.79882e-05 0 1 -0.000310181 9.5274e-05 1 -0.707111 0 0.707102 -0.707111 0 0.707102 -1 0 0 -1 0 0 0 -4.90894e-05 -1 -2.43179e-05 0 -1 0 1.16936e-05 -1 6.77408e-06 0 -1 -2.78969e-08 1.18849e-05 -1 9.60048e-08 1.18829e-05 -1 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 -0.707107 0 0.707107 -0.707107 0 0.707107 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.707091 -0.707123 0 -0.707091 -0.707123 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.706519 -0.707694 0 0.706519 -0.707694 0 0.302575 -0.953126 0 0.0609334 -0.998134 -0.00403102 -0.108927 -0.99405 0.000207912 0.125079 -0.992146 0.00101053 -0.058544 -0.998277 0.00406698 -0.301865 -0.953351 0 -0.707485 -0.706728 0 -0.707485 -0.706728 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.707091 -0.707123 0 0.707091 -0.707123 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.70653 0.707683 0 0.70653 0.707683 0 0.953243 0.302206 0 0.998132 0.0609654 -0.00402902 0.998437 -0.0557318 -0.00411308 0.953243 -0.302206 0 0.70653 -0.707683 0 0.70653 -0.707683 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 0.707088 0.707125 0 0.98378 0.178878 -0.0134158 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707485 0.706728 0 -0.707485 0.706728 0 -0.301859 0.953353 0 -0.0495915 0.998761 -0.00421065 0.106294 0.994335 -0.000252482 -0.409451 0.912331 0.0016504 0.059933 0.998174 0.00759357 0.400036 0.916499 0 0.706519 0.707694 0 0.706519 0.707694 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.707088 0.707125 0 -0.98378 0.178878 0.0134158 -1 0 0 0 -1 0 0 -1 0 1 0 0 0.999709 -0.0241072 0.000853798 0 -0.999998 -0.00175636 0.145035 -0.98941 -0.00565059 -0.707497 -0.706717 -0.000216863 -0.710553 -0.703644 0 -0.999161 -0.0409525 0 -0.999025 -0.0441417 -0.000103837 -0.999541 0.0303099 0.000228694 -0.993398 -0.114516 -0.00677285 -0.953243 0.302206 0 -0.707497 0.706717 0 -0.707497 0.706717 0 0 1 0 0 1 0 0 0 -1 -0.0094723 -0.00445776 -0.999945 0.0162357 0 -0.999868 0 0 -1 0 0 -1 0 0 -1 -0.0174453 -0.00517808 -0.999834 -0.0168923 -0.0358965 -0.999213 0 0.0173418 -0.99985 0 0 -1 0.965691 -0.256939 -0.0377308 0 0 -1 0 0.0400832 -0.999196 0.0845986 0 -0.996415 0.0317882 -0.0246268 -0.999191 0.0339065 -0.0339083 -0.99885 0 -0.109819 -0.993952 0 0 -1 -0.0246472 0.0523763 -0.998323 0 0 -1 -0.038336 0.0182547 -0.999098 0 0 -1 0.000248794 0.000479064 -1 0.0158038 -0.0174871 -0.999722 -0.390113 -0.920766 0.00103689 -0.0039175 -0.0344062 -0.9994 0 0 -1 -0.125077 0 -0.992147 -0.860194 0.509967 -0.000173687 0 0 -1 0 0 -1 0 0 -1 0.00102807 0.000307317 -0.999999 0.000702906 0.0014937 -0.999999 0 -0.00220925 -0.999998 0 0 -1 0.00555672 -0.0115533 -0.999918 -0.162297 -0.02951 0.986301 0 0 -1 0.0178267 0.00838942 -0.999806 0.999996 0 -0.00277061 0.00035956 0.000113991 -1 0.000371278 -0.00037023 -1 0.00543422 0.00937667 -0.999941 -0.00535953 0.0226512 -0.999729 0 0 -1 0 0 -1 0 0 -1 0 0.0261585 -0.999658 0 0 -1 -0.0649556 0.0305687 -0.99742 0.0219536 0 -0.999759 0.00915384 -0.00915425 -0.999916 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0140559 0.0140566 -0.999802 0.684831 0.726357 -0.0584181 0.0383334 0.00441898 -0.999255 -0.00286673 0.0247032 -0.999691 0 -0.00546599 -0.999985 0.00383931 0.0118624 -0.999922 -0.0138674 0.00119436 -0.999903 0 0 -1 0 0.0130623 -0.999915 -0.624208 0.781082 -0.0165897 -0.563639 -0.825799 0.019141 0.978312 -0.20666 0.014011 0.746922 -0.664882 -0.00637974 -0.746717 0.6647 -0.024237 0 0 1 -0.066234 -0.0311703 0.997317 0.0876097 0 0.996155 0.0303791 0.0303804 0.999077 0 0.0322746 0.999479 0 0 1 -0.0125392 -0.0266461 0.999566 0 0 1 -0.0186335 -0.00553077 0.999811 0 0 1 0 0 1 0 0 1 0.0125346 0.0301399 0.999467 -0.351594 0.936105 0.009424 0 0 1 0 0 1 -0.0382979 0.0219941 0.999024 0 0 1 0 0 1 0 0 1 0.0896264 -0.0267917 0.995615 0.0705694 -0.149961 0.98617 0 0.125353 0.992112 0 0 1 -0.0714575 0.018702 0.997268 0.00185984 -0.00185993 0.999997 0.00430982 0 0.999991 0 0 1 -0.00178848 0.000841675 0.999998 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.000763906 -0.00126786 0.999999 0 0 1 0.972953 -0.230715 0.0115149 -0.176092 0.984267 0.0144868 0 0 1 0 0 1 0.013873 0 0.999904 0.0110424 -0.0234656 0.999664 0 0.0436052 0.999049 0 0 1 -0.138883 0.0252526 0.989987 0 0 1 0.0274307 -0.0129092 0.99954 0 0 1 -0.00214069 0.00719099 0.999972 0 0 1 0 0 1 0 0 1 0.00245326 -0.00971506 0.99995 -0.00291572 -0.0125039 0.999918 -0.0296253 -0.0144556 0.999457 -0.00488035 0.0387117 0.999238 0.0117189 0.00366061 0.999925 0.952995 -0.302852 0.00904148 0 -0.0512724 0.998685 0.00321161 0.0262679 0.99965 0.0370241 -0.0132449 0.999227 0 0.00134601 0.999999 0 0 1 0 0 1 0.987075 0.160204 -0.00427087 0.0909866 -0.995704 0.0172053 -0.618196 -0.786009 -0.00485433 0.798737 0.601622 0.0083289 -0.443499 0.896011 -0.0217632 -0.999661 -0.0245746 0.00859865 -0.146119 0.989206 -0.0109552 0.983395 0.181284 -0.00835286 -0.648441 -0.761134 -0.0141283 0.929878 -0.367562 0.0149821 0.0601889 0.998157 -0.00774064 -0.995415 -0.0941255 0.0170189 0.0818166 0.996634 0.00511912 0.693401 0.720445 -0.0123997 0.763312 -0.64589 0.0134527 -0.99383 0.110903 -0.00145521 -0.989757 0.14276 0 0.489311 -0.872109 0 0.938379 0.345589 -0.00364338 0.551631 -0.834085 -0.00241399 0.953232 -0.302203 -0.00464134 0.607337 0.794219 -0.0189263 0.238792 0.971047 -0.00681017 -0.858606 0.512635 0.00116264 0.390069 0.920749 -0.00816667 0.853271 0.521465 -0.00145187 0.301863 0.953343 0.00408953 -0.510448 0.85967 0.0202419 -0.999889 0.013493 -0.00637768 -0.511676 -0.859178 0.000989165 -0.705694 -0.708502 0.00461502 -0.909503 0.41568 -0.00376401 -0.999949 -0.00765038 -0.00653908 0.516011 -0.85643 0.0161548 -0.953139 0.302173 -0.01476 -0.239148 -0.97097 -0.00510474 0.537861 -0.843025 -0.00377964 0.859426 -0.511222 0.00629711 -0.410236 -0.911978 0.001585 -0.400036 -0.916498 0.00160406 -0.460887 -0.887459 0 0.998841 0.0481419 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.707112 -0.707102 0 -0.707112 -0.707102 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.0197016 0.999806 0 0 1 -0.000839729 0.966058 -0.258227 0.00717871 0.977739 0.209743 -0.00583085 0.70653 -0.707683 -0.000521938 0.699078 -0.715045 0 0.0695745 -0.997577 0 0.218277 -0.975872 -0.00535767 -0.0977177 -0.995206 -0.00393547 -0.150087 -0.98867 -0.0023137 0 -1 0 -0.738742 -0.673988 0 -0.707483 -0.706726 -0.00238524 -0.967941 0.251082 0.00698009 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0.983782 -0.178867 -0.013415 0.178869 -0.983781 0.0134153 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.706519 0.707694 0 0.706519 0.707694 0 0.953243 0.302206 0 0.9993 0.0371368 -0.00441066 0.993965 -0.109696 0.000124547 0.99833 -0.057758 0.000887068 1 0 0 0.713153 -0.701008 0 0.706519 -0.707694 0.000473521 -0.224233 -0.974516 0.00622244 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.707109 0.707104 0 0.707109 0.707104 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.0486089 -0.998818 0 0 -0.999998 -0.00203874 -0.969872 0.243523 0.00676993 -1 0 0 -0.707485 0.706728 0 -0.707485 0.706728 0 -0.0390379 0.999238 0 -0.0610518 0.998134 0.000624591 -0.113145 0.993578 0.000208491 0.0229939 0.999725 0.00463644 0.302585 0.953122 0 0.70653 0.707683 0 0.70653 0.707683 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.707109 0.707104 0 -0.707109 0.707104 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707497 -0.706717 0 -0.707497 -0.706717 0 -1 0 0 -0.998123 -0.0612296 0.000940388 -0.904154 -0.427152 -0.00688621 -0.996046 0.0887829 -0.003224 -0.991905 0.126968 -0.00195002 -1 0 0 -0.724094 0.689701 0 -0.707496 0.706716 0.00118954 0.232957 0.972465 0.00648399 0 1 0 0 0 -1 0 0 -1 0 -0.00518964 -0.999987 0 0 -1 0.00194007 -0.00438022 -0.999989 -0.00529828 0.00241377 -0.999983 -0.00356492 -0.00757531 -0.999965 0 0.014429 -0.999896 0.991784 -0.126952 -0.0157485 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0123418 -0.00580782 -0.999907 -0.016087 0 -0.999871 -0.00578919 0.00578915 -0.999967 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.00901697 0.00313002 -0.999954 0 0 -1 0 0 -1 -0.0379733 -0.038135 -0.998551 -0.108983 0 -0.994044 -0.0629339 -0.133737 -0.989017 0 0.185756 -0.982596 0 0 -1 0.0618676 0.0618671 -0.996165 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0259917 -0.0122312 -0.999587 -0.236758 0.0430463 0.970615 -0.0270644 0.021205 -0.999409 0 0.0689113 -0.997623 0 0 -1 0.0230856 -0.0490573 -0.998529 0 0 -1 0.0288447 -0.0288448 -0.999168 0 0 -1 0.00881792 0.00881779 -0.999922 -0.436987 -0.897881 -0.0534071 0.705109 0.708111 -0.0374161 -0.288977 0.957283 -0.0100546 0.0167408 -0.0449351 -0.99885 0.0020199 -0.000850476 -0.999998 0 0 -1 0.0025378 -0.00852517 -0.99996 0.0546755 -0.0507945 -0.997211 0.0486859 -0.0204991 -0.998604 -0.607798 0.794092 0.000872186 -0.905404 -0.424172 0.0179408 -0.231925 -0.972675 -0.0106582 0.468748 0.88289 -0.0279315 0.996745 0.0804685 0.00486677 0.954848 0.296787 0.0135294 0 0 1 -0.0607457 -0.0285858 0.997744 0.118629 0 0.992939 0.0883216 0.0883203 0.992169 0 -0.0135608 0.999908 -0.0374923 0.0558037 0.997738 0.0055701 0 0.999985 0.000507471 0.00867054 0.999962 -0.00204538 0.00204871 0.999996 0 0 1 0.0289033 0.044684 0.998583 0.0059336 0.0604307 0.998155 0 0 1 0 0 1 0 0 1 0.00011372 6.82636e-05 1 -0.0936718 0.0260251 0.995263 0 0 1 0.00354507 0.00800414 0.999962 -0.00513561 0.0109133 -0.999927 0 0 1 0.0244372 -0.134405 0.990625 0.105079 0 0.994464 0 0 1 -0.0443814 0.0208851 0.998796 -9.44919e-05 -9.4225e-05 1 0.000402082 2.51656e-05 1 0.00295298 0.00294464 0.999991 0 0 1 0.056337 0.0265112 0.99806 -0.111069 0 0.993813 -0.0518966 -0.0518962 0.997303 0 -0.0101434 0.999949 0.0045301 0 0.99999 0.00913308 -0.00912331 0.999917 0 0 1 0 0 1 0 0 1 0 0 1 0.0129905 -0.0052337 0.999902 0 0 1 0 0 1 -0.000262284 0 1 -0.000169527 0.00036024 1 0 -0.000551122 1 0 0 1 0.000215387 -0.000215386 1 0 0 1 0 0 1 0.995856 -0.088766 0.0198109 0.916495 0.399582 0.0192548 0 0 1 -0.000630429 -0.000633113 1 0.00550082 -0.0483052 0.998818 -0.0217494 -0.0543003 0.998288 0.430269 -0.901332 0.0496984 -0.00692293 -0.0367313 0.999301 0 0 1 0 0.0301192 0.999546 -0.0158891 0.0126736 0.999793 0.0147578 -0.0362642 0.999233 0.000100941 0.0398568 0.999205 0.0142041 0.00379872 0.999892 0.920269 -0.390554 0.0239062 0.947422 -0.318905 0.0262909 -0.942327 -0.33367 -0.0261495 0.311825 0.949947 -0.0191386 -0.697139 -0.716885 -0.00859738 -0.635207 0.772303 0.00779478 -0.828728 -0.559651 0 0.664607 0.747156 -0.00746758 -0.746918 -0.664895 0.00540078 0.989104 -0.14655 0.0140424 0.171924 -0.985017 -0.0135515 0.170833 0.985206 0.0136163 -0.708106 0.706106 0 0.417089 -0.908759 0.0139032 -0.726975 0.686522 0.0139822 0.71706 -0.696991 -0.00541565 0.0802709 0.996737 -0.00850634 0.23224 0.972638 -0.00639303 -0.967996 -0.250844 -0.00778126 -0.0822261 -0.996614 -0.000466505 0.904142 0.427146 -0.00856128 0.645928 0.763312 -0.011486 0.438057 0.898908 -0.00841219 0.933996 -0.35728 0.00143297 0.997987 0.0634128 0 -0.509629 0.860394 0 -0.526052 0.850452 0.000460191 0.526052 -0.850452 -0.000460191 -0.218274 0.975859 -0.00741985 -0.349959 0.936726 -0.00856459 0.900471 0.434914 -0.0012961 -0.997175 -0.0747903 0.00696143 -0.420242 0.90739 0.00629822 -0.717246 0.696807 -0.00420452 -0.760582 -0.649233 -0.0032266 -0.603509 -0.797341 -0.00483065 -0.999304 -0.0357889 -0.0104804 -0.680917 0.732221 0.0142862 -0.856276 -0.516484 0.00593494 -0.410278 0.911954 -0.00335026 0.0822261 -0.996614 0 -0.998047 -0.062466 0 -0.707981 -0.705989 0.018505 0.516078 -0.856542 0.000222652 -0.590618 -0.806952 -0.000329378 0.999704 0.0214534 -0.0114556 0.6334 -0.773818 0.00308364 -0.389394 -0.921071 -0.000816972 -0.515322 -0.856992 0.00292234 0.594947 -0.803726 0.00799783 0.801334 -0.598218 -0.000351007 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.707091 -0.707123 0 -0.178869 -0.983781 0.0134154 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.706519 -0.707694 0 0.706519 -0.707694 0 0 -1 0 0.0623062 -0.998057 0.000955383 0.0895333 -0.995984 0.000411981 0.109428 -0.993995 0.000510071 -0.0609892 -0.99813 0.00402774 -0.301865 -0.953351 0 -0.707485 -0.706728 0 -0.707485 -0.706728 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.707091 -0.707123 0 0.707091 -0.707123 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.70653 0.707683 0 0.70653 0.707683 0 0.967706 0.252083 0 0.998797 0.0487753 -0.00513568 0.999326 -0.036494 -0.0039571 0.99881 -0.048584 -0.00422778 0.953243 -0.302206 0 0.70653 -0.707683 0 0.708012 -0.7062 -9.05883e-05 0 -0.999997 -0.00248728 -0.0973106 -0.995254 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 0.707088 0.707125 0 0.98378 0.178878 0.0134162 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707485 0.706728 0 -0.707485 0.706728 0 0 1 0 -0.0602035 0.998186 0.000928164 -0.066333 0.997797 0.000798074 -0.115037 0.99336 0.00118653 0.0604669 0.998162 0.00403849 0.302568 0.953128 0 0.706519 0.707694 0 0.706519 0.707694 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 -0.178868 0.983782 0.0134153 -0.707088 0.707125 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707497 -0.706717 0 -0.707497 -0.706717 0 -0.953243 -0.302206 0 -0.998415 -0.0561348 -0.00410672 -0.997361 0.0725763 -0.00169868 -0.99662 0.0821419 -0.0012616 -1 0 0 -0.707497 0.706717 0 -0.707497 0.706717 0 0 1 0 0 1 0 0 0 -1 0.022545 0.0106099 -0.99969 -0.0814307 0 -0.996679 0 0.0208978 -0.999782 0 0 -1 0 0 -1 0 0 -1 -0.0175906 -0.00522123 -0.999832 -0.012909 -0.0274319 -0.99954 0 0.0281813 -0.999603 0 0 -1 0 0 -1 0 0 -1 0 -0.0114682 -0.999934 0 0 -1 0.0149415 -0.0070316 -0.999864 -0.0172998 0 -0.99985 -0.00590501 0.00590532 -0.999965 0 0.0560655 -0.998427 0 0 -1 0.019231 -0.0408665 -0.99898 0 0 -1 0.0283716 -0.00842122 -0.999562 0 0 -1 -6.91707e-05 -0.000114229 -1 0.000116371 -0.000465099 -1 -0.119895 -0.992505 -0.0236336 0.000100849 -0.000489377 -1 -0.397893 -0.917354 -0.0119713 0 0 -1 -0.0126633 0.000462444 -0.99992 0.0225701 0.0225064 -0.999492 0.0631059 -0.0630384 -0.996014 0.10429 0 -0.994547 0.0181413 -0.0331214 -0.999287 0.00645592 0.0137191 -0.999885 0 -0.0178589 -0.999841 0 0 -1 -0.0353287 0 -0.999376 -0.0187775 -0.0187785 -0.999647 0 0 -1 0.0612307 0.0288158 0.997708 0 0 -1 0 0 -1 3.03982e-05 5.04105e-05 -1 -0.366071 0.921187 -0.131933 0 0 -1 0 0 -1 0 0 -1 -0.033013 0.0155362 -0.999334 0.100953 0 -0.994891 0.0334202 -0.0334217 -0.998882 0 -0.00398178 -0.999992 0 0 -1 -0.00344476 0.0073202 -0.999967 0 0 -1 -0.00386537 0.00115546 -0.999992 -0.0887014 0.986669 -0.136445 0.397825 0.917197 -0.022015 0 0 -1 0 0 -1 -0.0220619 -0.0220628 -0.999513 0.942656 -0.333741 -0.004057 0.0089987 0.001435 -0.999959 -0.846539 -0.532315 -0.00351924 0.022136 -0.00769489 -0.999725 -0.0268348 0.0086787 -0.999602 0 0.028126 -0.999604 -0.0103421 -0.0197933 -0.999751 -0.995415 -0.0956468 0 0.520869 -0.853637 0 0.755903 -0.654649 -0.00671073 -0.903792 0.427518 0.0197203 0.98812 -0.153519 0.00715361 0.124079 0.992091 -0.0189627 0 0 1 0 0 1 0 0 1 -0.00150947 -0.0083021 0.999964 0 0 1 0.0126726 0.0269295 -0.999557 0.0148947 0 0.999889 0 0 1 0.00581603 0.00579912 0.999966 -0.062295 0.997877 0.0190092 -0.391546 0.920158 0.000663414 0 0 1 0.000522867 0.00028599 1 -0.0263527 0.0148308 0.999543 0 0 1 0 0 1 0.00776178 -0.00779417 0.99994 0.00753727 -0.00492199 0.999959 0.0159528 0 0.999873 0.0982831 -0.208854 -0.972996 0 0.00841105 0.999965 0 0 1 0 0 1 0 0 1 0 -0.0167568 0.99986 -0.0331286 -0.0126419 0.999371 0.000455736 -0.000281598 1 0 0 1 0 0 1 0 0.019117 0.999817 0 0 1 0.0282685 0.0133034 0.999512 -0.103718 -0.0188587 0.994428 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.000522725 0.000995472 0.999999 -0.00995242 -0.0164426 0.999815 0 0 1 0 0 1 0 0 1 0.020137 -0.00921765 0.999755 0 0 1 0 0 1 0 0 1 0.0652347 0 0.99787 0.0408123 -0.0867277 0.995396 0 0 1 -0.118252 0.650393 -0.750337 -0.0537022 -0.0175972 0.998402 -0.0258861 0 0.999665 0 0 1 0.0287889 -0.0135483 0.999494 0.012051 -0.000876934 0.999927 0 0 1 0 0 1 0 0 1 0.00235255 -0.0142805 0.999895 -0.530381 -0.847541 0.0192398 -0.00329896 0.0299661 0.999546 -0.840471 0.540572 0.0372898 0.705008 0.70801 0.0410514 0.018436 0.00356551 0.999824 -0.00393737 0.00545389 0.999977 -0.00388415 0.00388432 0.999985 0 0 1 0.0104104 0.000863709 0.999945 -0.560573 -0.828103 -0.00179987 0.901287 -0.432974 -0.01468 0.995407 0.0957017 0.00265244 -0.921628 -0.388072 0.000931328 0.522145 -0.852442 0.0265985 0.151219 0.988474 -0.00718674 -0.416202 0.909133 0.0158829 0.749362 -0.662134 0.00592754 0.866871 -0.498531 -0.00105079 -0.799222 -0.601023 -0.00403296 0.984221 0.176933 -0.00200134 0.465732 0.884831 0.0129632 -0.285308 0.958403 -0.00794128 -0.983292 -0.181519 0.013692 -0.234644 0.971999 -0.0126311 0.709831 -0.704336 -0.00713984 0.543158 0.839462 0.0168245 -0.618379 -0.785576 -0.021834 -0.986139 0.165822 0.00573902 0.519383 -0.85454 -0.00179645 0.776746 0.629805 -0.00338956 0.791272 0.611457 -0.00294866 0.969935 -0.243355 -0.00203947 0.367865 -0.929879 -0.000765042 -0.0822253 0.996604 0.00436962 0.850702 -0.525646 -0.00119388 0.876201 -0.481945 0 0.0367083 0.999326 0 -0.604082 0.796811 -0.01331 0.833511 0.552362 -0.0124727 0.412866 0.910782 0.00423822 -0.239144 0.970971 0.00511283 -0.877321 -0.479864 -0.00610542 -0.762258 0.646947 0.0205399 -0.897491 -0.440992 -0.00606558 -0.809298 0.587384 0.00408439 -0.520804 0.853674 -0.00225184 -0.953232 0.302203 -0.00464146 -0.60912 -0.792852 -0.0189225 0.82128 -0.570522 -0.00192317 0.681934 -0.731413 -0.000719107 0.228659 -0.973487 -0.00616469 -0.831964 -0.554826 0.00210479 0.80122 -0.598167 -0.0156108 -0.517976 -0.855387 0.00388159 0.970583 -0.240712 -0.0051475 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.707112 -0.707102 0 -0.707112 -0.707102 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.70653 -0.707683 0 0.70653 -0.707683 0 0.0403755 -0.999185 0 -0.0229267 -0.999737 -0.000353441 0 -1 0 -0.732316 -0.680965 0 -0.707484 -0.706727 -0.00182064 -0.98107 0.193578 0.00538159 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0.178869 -0.983781 0.0134156 0.707112 -0.707102 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -0.999831 0.018397 0.000651579 0 0.999995 -0.00300909 0.110314 0.993897 0 0.706519 0.707694 0 0.706519 0.707694 0 0.997601 0.0692244 0 0.999997 0 0.00247861 0.998152 -0.060764 0.000933259 1 0 0 0.686198 -0.727415 0 0.706518 -0.707693 -0.00142914 -0.186916 -0.982362 0.00518703 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 0.999996 0.00270408 -0.000202811 0.707109 0.707103 0.00137579 0.661388 0.750044 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707485 0.706728 0 -0.707485 0.706728 0 -0.0227494 0.999741 0 -0.0433816 0.999058 -0.00100791 0.0614524 0.99811 -0.000587621 0.040208 0.999191 0 0.70653 0.707683 0 0.70653 0.707683 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 -0.707109 0.707104 0 -0.17887 0.983781 -0.0134155 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707497 -0.706717 0 -0.707497 -0.706717 0 -0.953243 -0.302206 0 -0.997669 -0.0681264 -0.00391387 -0.994934 0.100527 -0.000540668 -0.99477 -0.102139 0.00046964 -0.997592 0.0692519 0.00389573 -0.953243 0.302206 0 -0.707497 0.706717 0 -0.707497 0.706717 0 0 1 0 0 1 0 0 0 -1 0.00228017 0.00107301 -0.999997 -0.00428658 0 -0.999991 0 -0.0756286 -0.997136 0.0359632 -0.0100633 -0.999303 0 0 -1 0 0 -1 -0.0740843 -0.0738751 -0.994512 -0.0942192 0 -0.995551 -0.0258207 0.0338127 -0.999095 -0.0109016 -0.0231655 -0.999672 0 0.0292872 -0.999571 0.000207603 -0.000125659 -1 0.014824 -0.00133851 -0.999889 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.043765 -0.020595 -0.99883 -0.0442814 0 -0.999019 -0.00427907 0.0235348 -0.999714 0 0 -1 -0.00537115 0.0114136 -0.99992 -0.00821027 0 -0.999966 0 0 -1 -0.000141583 -0.000257471 -1 0.000131237 -0.000980197 -1 0 0 -1 0 0 -1 -0.00370032 0.00662106 -0.999971 -0.995772 0.0915051 -0.00810521 0 0 -1 0 0 -1 0.0124538 0.0125068 -0.999844 0.0170091 0 -0.999855 -0.0138664 -0.0158137 -0.999779 -0.0122564 -0.0260453 -0.999586 0 0.0209359 -0.999781 0 0 -1 0.0159121 -0.00407846 -0.999865 -0.00184954 -0.00726545 -0.999972 -0.0203721 0.000916827 -0.999792 0 0 -1 0.016209 0.00762764 -0.99984 0 0.0131389 -0.999914 0.0145131 0 -0.999895 -0.707373 0.705375 -0.0454845 0.0229175 0.999509 -0.0213897 0.994673 -0.0881459 -0.0534324 0.316112 0.948712 -0.00444243 0 0 -1 0 0 -1 0 -0.0631217 -0.998006 -0.138527 0 -0.990359 -0.0208597 0.0563976 -0.99819 -0.0100142 0.010014 -0.9999 0 0.0173736 -0.999849 0 0 -1 0.00431531 -0.00917012 -0.999949 0.000345746 -0.000558957 -1 0 0 -1 0 0 -1 0 0 -1 0.0107585 0.0107583 -0.999884 0.00827105 -0.00671212 -0.999943 0 0 -1 0.0217288 -0.0109912 -0.999704 0.0336585 0.0132187 -0.999346 -0.354562 -0.932038 -0.0747763 0.322137 -0.946646 -0.00943175 0.649091 -0.758489 -0.0580965 0.0107704 -0.0370375 0.999256 0.00850643 -0.0285754 -0.999555 0.0803115 -0.0806534 -0.993501 0.00599272 0 -0.999982 0.00028593 0.0126334 -0.99992 -0.628217 -0.778014 0.00610466 -0.997363 0.0673302 -0.0271044 0.97664 -0.214875 -0.00194901 0.997683 -0.0676958 -0.00677685 -0.0953829 0.995362 0.0125539 0 0 1 0.00622623 0.00292995 0.999976 -0.00788312 0 0.999969 -0.00305067 -0.00305062 0.999991 -0.00315187 -0.00306483 0.99999 0 -0.00864348 0.999963 0 0 1 0.0038221 0.00812181 0.99996 0.00584334 0 0.999983 0 0 1 0 0 1 0 -0.999999 -0.001118 0 0 1 0.0147247 0.0650773 0.997772 -0.39781 0.917128 0.0249528 0 0 1 0 0 1 -0.0159772 0.00630448 0.999852 0 0 1 0.00172615 0.00389734 0.999991 -0.00210412 0.00447129 -0.999988 0 0 1 -0.127196 0 0.991878 0 0 1 0.378325 -0.178033 0.908391 0 -0.150258 0.988647 -0.0187813 -0.00575824 0.999807 0 0 1 -0.00485015 -0.00483646 0.999977 0 0 1 0 0 1 -0.017571 -0.00826857 -0.999811 0.00903226 0 0.999959 -0.0003985 0.0101758 0.999948 -0.00353809 -0.00353807 0.999987 0 -0.0112292 0.999937 0 0 1 0.00252832 0.00537277 0.999982 0.00460409 0 0.999989 -0.0134812 0.0134668 0.999818 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0272804 -0.0177659 0.99947 0.950191 0.311581 0.00738667 0 0 1 0 0 1 0 0 1 -0.0165707 0.00491892 0.999851 -0.0113905 0.0242046 0.999642 0 -0.0325413 0.99947 0 0 1 0.0127467 -0.0106884 0.999862 0.0101518 -0.0101517 0.999897 0.0126322 0 0.99992 0 0 1 -0.00747404 0.00351715 0.999966 0.0438883 0.0045063 0.999026 0 0 1 0 0 1 0.191104 -0.235802 0.952826 -0.346336 -0.938076 0.00802291 -0.149538 -0.538256 0.829409 0.557421 0.830138 0.0123392 0 0.00439551 0.99999 0.00209706 0.00209114 0.999996 0 0.00435349 0.999991 0.000508714 -0.00279793 0.999996 0.0741174 -0.0261243 0.996907 -0.014479 0.0111291 0.999833 0.089923 -0.995872 -0.0123618 0.220764 -0.975298 -0.00748791 0.728434 0.685114 0.00158796 0.374786 0.926996 -0.0146036 -0.796577 -0.60448 -0.00829527 -0.985411 0.168584 0.0233427 0.75283 0.658105 -0.0120457 0.344317 -0.938853 0.000579703 0.743374 -0.668765 0.0121944 -0.982051 -0.188115 -0.0137561 0.14586 0.989215 0.0133705 -0.853377 -0.521294 -4.46249e-05 0.65613 0.754645 -0.0022897 0.643565 0.765389 -0.00169052 0.195842 -0.980525 0.014718 -0.990027 0.140867 -0.00181023 -0.967711 0.252057 0.00155203 0.539759 -0.84182 -0.000412978 0.542371 0.840139 0.000198696 0.999998 -0.00176981 3.69706e-08 0.622776 -0.782396 0.00247144 0.521413 -0.853304 1.78252e-05 0.598722 0.800957 -0.000289301 0.717227 0.696827 0.0042644 0.611273 0.79142 -0.000294048 -0.995976 0.0888401 -0.0118328 -0.79448 0.607266 -0.00538956 -0.0183789 0.999831 0 -0.850703 -0.525647 0.000249675 -0.857387 -0.514672 0 0.850703 0.525647 -0.000249675 -0.857488 -0.514504 -3.79729e-06 -0.912486 -0.409108 0.000879223 -0.890257 0.455457 -0.00136643 -0.449692 0.893176 -0.00375997 0.0822261 -0.996614 0 -0.998047 -0.062466 0 0.526076 -0.850438 0.000227918 -0.697349 -0.716484 -0.0188176 -0.526076 0.850438 -0.000227918 0.459209 -0.888327 -0.00126703 0.795013 -0.606584 -0.00303184 -0.689455 -0.724326 -0.00184533 -0.629626 0.77689 -0.00355511 0.6137 -0.78953 0.00379556 0.818597 -0.574302 -0.00874691 0.508419 -0.861103 0.0034222 0.706461 9.61157e-07 0.707752 0.706486 0 0.707727 0.161589 -6.87411e-06 0.986858 0.160708 0 0.987002 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -7.67224e-05 -1 0 5.95622e-05 -1 6.56168e-05 -4.21745e-05 -1 -4.21732e-05 0.00895589 -0.99996 0 0.00638806 -0.99997 0.00427748 0.00496931 -0.999988 0 0 -1 0 0.0227355 -0.999483 0.0227355 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.00011264 -1 -0.00022764 -0.000108434 -1 0 -6.11746e-05 -1 -0.000129999 0 -1 0 0 -0.99788 0.0650813 0 -0.99788 0.0650813 0.00746513 -0.996815 0.0794033 -0.129017 -0.991115 0.0323478 -8.23311e-06 -1 2.06425e-06 -7.01961e-06 -1 -7.01961e-06 0 -1 -1.2789e-05 9.38296e-06 -1 6.67792e-06 0 -1 0 0 -1 0 0.00107367 -0.999999 0.000270782 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.965582 0.2601 -0.193007 -0.968871 0.155036 0 -0.999998 -0.00211731 0 -1 0 0 -1 0 0.00132591 -0.999998 -0.00131656 0.00203691 -0.999998 0 -0.0123991 -0.999769 0.0175836 -0.0246 -0.999191 -0.0318275 -0.00177349 -0.999998 0 -0.00134651 -0.999998 -0.00122095 0.00117721 -0.999998 -0.00133407 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.055904 -0.99687 -0.055904 0 -1 0 0 -1 0 -5.96839e-05 -1 -6.57383e-05 7.65697e-05 -1 0 4.21236e-05 -1 4.21236e-05 -1.2463e-05 -1 4.94169e-05 -0.00936436 -0.999267 0.0371304 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0177335 -0.999843 0 -0.0192545 -0.999812 0.00213247 -0.0315121 -0.999503 0 -0.0134836 -0.999585 0.0254666 0 -1 0 -0.0219346 -0.999519 -0.0219346 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.707105 -0.00209837 0.707105 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999201 -0.0399628 -0.00213998 -0.999144 -0.0413079 0 -0.999106 -0.0422865 0.029967 -0.999538 -0.00498038 0.0251493 -0.999664 -0.0063427 8.2352e-06 -1 -2.07693e-06 7.01991e-06 -1 7.01991e-06 0 -1 1.27616e-05 -1.09583e-05 -1 -9.94934e-06 0 -1 0 0 -1 0 -0.0658574 -0.995188 -0.0725487 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999188 -0.0403014 0 -0.937423 -0.348194 -0.251446 -0.94934 -0.188489 0 -1 0 0 -1 0 0.0034681 -0.999988 -0.00349273 0.00940308 -0.999956 0 0.0162831 -0.998445 -0.0533105 0.0543442 -0.998522 0 0.0207095 -0.996408 0.0821145 -0.0568813 -0.998176 0.020218 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.00307187 -0.9999 -0.0137714 -9.83405e-05 -1 0.0003899 0.00573631 -0.999982 -0.00194599 0.0536958 -0.996176 -0.0689244 0.0815802 -0.993982 -0.0731063 -0.0599807 -0.995221 0.0770588 -0.0662828 -0.997715 -0.0131174 -0.0769763 -0.996361 -0.0366063 0.0294673 -0.999415 -0.0173532 -0.00414705 -0.999427 0.0336048 -0.00622451 -0.99944 0.0328801 0.0212431 -0.999521 0.0225153 0.0300575 -0.999539 0.0043872 -0.00596889 -0.997502 -0.0703825 0.00469126 -0.999644 0.0262637 0.549908 -0.828952 0.10217 0.0640792 -0.992906 -0.100156 -0.0975627 -0.992735 0.0704158 -0.0261047 -0.99098 0.13144 0.00836943 -0.999168 -0.0399225 0.0370643 -0.999308 0.00319121 9.03208e-05 -1 -0.000456395 0.0401452 -0.997029 0.0657354 0.0717999 -0.997375 -0.00938079 0.066396 -0.996919 -0.0417564 0.00530857 -0.997218 -0.0743553 -0.0519459 -0.99689 -0.0592555 0.327962 -0.940882 -0.0847528 1.24828e-05 -1 -4.94916e-05 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -0.708072 0 0.70614 -0.708072 0 0.70614 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.707107 0 -0.707107 -0.707107 0 -0.707107 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.707106 -0.00174455 0.707106 -0.438473 0 0.898744 -0.919163 0 0.393878 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0.707107 0 0.707107 0.707107 0 0.707107 0 0 1 0 0 1 0 0 1 0 0 1 -0.708072 0 0.70614 -0.708072 0 0.70614 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0.707107 0 0.707107 0.707107 0 0.707107 0 0 1 0 0 1 0 0 1 0 0 1 -0.708072 0 0.70614 -0.708072 0 0.70614 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 0.318352 0 0.947973 0.998047 0.0018734 0.0624464 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0.70614 0 -0.708072 0.70614 0 -0.708072 1 0 0 1 0 0 1 0 0 1 0 0 0.707107 0 0.707107 0.707107 0 0.707107 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0.706152 0 -0.708061 0.706152 0 -0.708061 1 0 0 1 0 0 1 0 0 1 0 0 0.707107 0 0.707107 0.707107 0 0.707107 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0.707106 0.0016386 -0.707106 0.900394 0 -0.435075 0.436472 0 -0.899718 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.707107 0 -0.707107 -0.707107 0 -0.707107 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.70614 0 -0.708072 0.70614 0 -0.708072 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.707107 0 -0.707107 -0.707107 0 -0.707107 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.70614 0 -0.708072 0.70614 0 -0.708072 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 -0.000171227 -5.13684e-06 -1 -0.707107 0 -0.707107 -0.847198 0.00210614 -0.531273 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -0.708072 0 0.70614 -0.708072 0 0.70614 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.707118 0 -0.707095 -0.707118 0 -0.707095 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -7.35219e-05 1 0 -4.0463e-05 1 4.03526e-05 -0.00788778 0.999969 0 -0.00784662 0.999969 6.05971e-05 -0.00779879 0.99997 0 0 1 0 -0.0047918 0.999977 0.00482583 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0552231 0.996946 0.0552231 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999973 0.00737851 0.00202713 0.999981 0.00575573 0 0.999991 0.00423049 0.00553216 0.999984 0.00138705 -0.0587504 0.995732 -0.0711703 -1.23672e-05 1 -3.10076e-06 -1.05455e-05 1 1.05168e-05 0 1 1.91424e-05 1.64076e-05 1 -1.48617e-05 0 1 0 0 1 0 0 1 0 0.015611 0.99987 -0.00393712 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999829 -0.0184983 0.00633347 0.999964 -0.0057081 0 0.999829 -0.0184983 0 1 0 0 1 0 -0.00683735 0.999953 -0.00683735 -0.00478084 0.99983 -0.0178032 -0.0376311 0.999292 0 -0.0376311 0.999292 0 -0.0115361 0.999847 0.0131204 -0.00754724 0.999524 0.0299254 -0.1043 0.989703 0.0980309 0 1 0 0 1 0 0 1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0.0666065 0.997706 0.0121101 0 1 0 0 1 0 -2.07823e-05 1 2.69578e-05 3.509e-05 1 0 1.92837e-05 1 -1.93359e-05 0.00235736 0.999997 0.000293688 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.00460137 0.999989 0 0.00450892 0.999981 -0.00426259 -0.00460137 0.999989 0 0 1 0 -0.021343 0.999548 0.0211925 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.998947 0.0458825 0.0114393 0.999113 0.0405267 0 0.999465 0.0327108 0.0156362 0.999607 0.0232595 0.0610909 0.998013 0.0154073 -4.31731e-05 1 -1.08883e-05 -3.67972e-05 1 3.68979e-05 0 1 6.71407e-05 5.76422e-05 1 -5.24473e-05 0 1 0 0 1 0 0 1 0 0.0107034 0.999939 -0.00268361 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999942 -0.0108181 -0.017608 0.999844 0.0014587 0 0.999915 0.0130726 0 1 0 0 1 0 0.00754641 0.999943 0.00754641 0.0112321 0.999937 0 -0.00200704 0.999823 -0.0187114 0.000452668 1 0.000513577 0.000762252 1 0 -0.00381721 0.999978 -0.00540965 -0.00172272 0.999975 0.00683025 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 3.84471e-05 1 -5.3915e-05 0.00708149 0.999974 0.00140143 0.00630018 0.999978 0.00198479 -0.0167546 0.950285 0.310929 0.298612 0.954342 -0.00785587 0.00477653 0.999919 0.0118257 0.0120319 0.999927 0.00126741 0.0124115 0.99992 0.00246568 0.100454 0.992193 -0.0739102 0.112669 0.993628 0.00310111 0.0070733 0.989431 0.144831 0.0283406 0.989358 0.142717 -0.00194328 0.999968 -0.00770524 -0.0228478 0.999402 -0.0259744 0.0055252 0.999595 -0.0279191 0.0877574 0.996081 0.0110216 0.0497768 0.996176 -0.0717987 -0.0800849 0.976882 0.198211 -0.0326073 0.999333 -0.0164289 -0.0013733 0.999998 0.00143911 0.00445211 0.999958 0.0079717 -0.0401036 0.999014 0.0190589 -0.0254384 0.998985 0.0371744 0.0465286 0.992644 -0.111769 1.19447e-05 1 4.73617e-05 1 -5.4953e-06 0.000240543 0.9989 -0.00180274 0.0468487 0.999829 0 0.0185056 0.999829 0 0.0185056 0.946362 -0.000599958 0.323107 0.849662 0 0.527328 0.99948 -0.000631067 0.032253 0.923838 0.000519682 -0.382782 0.707143 0 -0.70707 0.707114 -1.10914e-06 -0.707099 0.194135 0 -0.980975 0.194135 0 -0.980975 0.970023 0.000125294 -0.243012 0.252809 0 -0.967516 0.248998 -4.03018e-05 -0.968504 0.967126 0.000302926 -0.254298 0.810859 0.00206446 -0.585238 0.707048 -1.06742e-06 -0.707165 0.659955 0.000921863 -0.751305 0.000109373 2.13624e-06 -1 -0.000109572 -2.14013e-06 -1 -0.382782 -0.000521098 -0.923838 -0.707099 0 -0.707114 -0.707056 1.58724e-06 -0.707158 -0.980832 0 -0.194853 -0.239023 0.000438035 -0.971014 -0.980032 -2.01698e-05 -0.198839 -0.489823 -0.00147432 -0.871821 -0.964667 0.000507484 -0.26347 -0.0898251 0 -0.995958 -0.599809 0 -0.800143 -0.194776 -0.00148524 -0.980847 -0.089825 0 -0.995958 -0.599809 0 -0.800143 -0.00595997 0.000937368 -0.999982 -0.157218 0.000189266 -0.987564 -0.707122 -5.7424e-07 -0.707092 -0.707107 0 -0.707107 -0.999789 -0.000403528 -0.0205493 -1 -4.12753e-06 -0.000109553 -0.75083 0.000924802 0.660495 -0.661649 -0.000878753 0.749813 -0.683625 0 0.729834 -0.0761148 0 0.997099 -0.844425 -0.00331365 0.535664 -0.97277 0.000774586 0.231772 -0.973801 0.000678647 0.227403 -0.226644 0.00139605 0.973977 -0.75972 -0.00119303 0.650249 -0.991573 0 0.129551 -0.706414 -1.70711e-06 0.707799 -0.706461 0 0.707752 -0.0486985 0.000947418 0.998813 -0.000131738 2.16664e-06 1 0.389135 -0.000529319 0.92118 0.706461 0 0.707752 0.706422 1.44042e-06 0.707791 0.980975 0 0.194135 0.980975 0 0.194135 0.380526 4.10864e-05 0.92477 0.467523 0.000811877 0.883981 0.969025 0 0.246964 0.977648 -0.000360751 0.210249 0.0139791 -0.00503507 -0.99989 0.941919 -0.00107327 0.335838 0.191367 -0.00161086 0.981517 -0.912553 -0.000842691 -0.408957 -0.824447 0.000626416 -0.565938 0.33398 0.000801342 -0.94258 0.886725 8.94396e-05 -0.462297 -0.186221 -0.000760869 -0.982508 -0.0797492 0.0010344 0.996814 0.776555 0.000802264 0.630049 -0.977577 0.00160803 0.210572 -0.758648 -0.0024154 0.651496 0.162498 0.00301675 -0.986704 0.969951 0.00179971 -0.243292 -0.0345484 -0.00382997 -0.999396 0.113556 -0.000299647 -0.993532 0.295219 -0.00154021 0.955428 -0.982277 -0.00136867 -0.187431 0.999801 -0.00231796 -0.0198151 -0.635839 0.00270735 -0.771817 -0.693393 -0.00158999 0.720558 -0.928884 0.00189764 0.370366 0.899609 0.00165548 0.436693 0.0361742 0.00102626 0.999345 0.870946 0.00152129 -0.491377 -0.806925 -0.00338195 -0.590644 0.0727783 0.000729311 -0.997348 0.906251 -0.00146634 0.422738 0.599176 -0.00263697 -0.800613 0.737245 -0.000436188 -0.675625 -0.722309 -0.00223768 -0.691567 0.999933 0.00110216 -0.0114838 -0.835692 0.000237212 0.549198 -0.145127 0.00153493 -0.989412 0.178148 -0.000171826 0.984004 -0.878239 0.00145665 0.47822 0.810061 -8.56521e-05 0.586345 0.198515 4.36123e-05 0.980098 -0.845976 -0.000163502 -0.533221 0.634343 0.00219331 0.773049 0.03222 -0.0026884 0.999477 -0.992228 -0.00250839 0.124411 -0.458616 -0.00105598 -0.888634 -0.299721 0.000727372 -0.954027 0.967326 -0.000135612 -0.253535 -0.520555 0.00184194 0.853826 0.559571 1.0737e-05 -0.828783 0.885301 -0.000701039 0.465017 0.523111 0.000460927 -0.852264 -0.992344 0.000518987 -0.123502 0.984531 0.000469463 -0.175209 0.707122 2.98293e-07 -0.707092 0.707114 -1.94535e-09 -0.7071 0.439045 6.17043e-05 -0.898465 0.172666 -0.000442576 -0.98498 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -7.03397e-05 1 0 5.48317e-05 1 -6.02628e-05 -3.87065e-05 1 3.85996e-05 0.0767168 0.997053 0 0.0556581 0.997073 -0.0524195 0.0197594 0.999805 0 0 1 0 0.0119657 0.999856 -0.0120507 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0155181 0.999759 0.0155181 0 1 0 0 1 0 0 1 0 0 0.999825 -0.0187082 0.0142982 0.999484 -0.0287475 0 0.999489 -0.0319712 -0.0175333 0.999835 -0.00469484 -0.0181038 0.999826 -0.00453907 -4.12258e-06 1 -1.03363e-06 -3.51538e-06 1 3.50579e-06 0 1 6.38097e-06 4.68885e-06 1 -3.33709e-06 0 1 0 0 1 0 0.00223453 0.999997 -0.000563553 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.998691 -0.0511446 0.0511535 0.998607 0.0129295 -0.0304351 0.998866 -0.0366063 0 0.999914 -0.0131444 0 1 0 0 1 0 -0.00840831 0.999929 -0.00840831 -0.0135053 0.999909 0 -0.0317935 0.999208 -0.0239167 -0.0438561 0.999038 0 0.00434308 0.999157 0.0408306 -0.00224586 0.999958 0.00890437 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.707021 0.0155827 0.707021 0 1 0 0 1 0 -3.85425e-05 1 5.09193e-05 6.69933e-05 1 0 3.68134e-05 1 -3.69141e-05 -1.09211e-05 1 -4.33031e-05 -0.0229559 0.995584 -0.0910219 0.0315787 0.998476 -0.0452678 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.089625 0.995976 0 -0.0881756 0.996102 0.00221979 -0.0870318 0.996206 0 0 1 0 -0.0102656 0.999895 0.0102151 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0124704 0.999844 -0.01247 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999744 0.0226183 0.0271155 0.999573 0.0108597 0 0.999987 -0.00519869 -0.0144906 0.999861 0.00823131 0.0106693 0.999939 0.00269202 0.0188735 0.999658 0.0181207 8.22643e-06 1 2.07566e-06 7.01213e-06 1 -7.02171e-06 0 1 -1.27748e-05 -1.09746e-05 1 9.97497e-06 0 1 0 0 1 0 -0.00499758 0.999972 0.00550266 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999832 0.0183065 -0.00729181 0.99996 0.00514122 0 0.999988 0.00481262 0.0190952 0.99965 0.0183228 0 1 0 0 1 0 0.0038345 0.999985 0.00384273 0.00873815 0.999962 0 0.00878622 0.999961 0.000102738 0.00886342 0.999961 0 0.00429325 0.999846 -0.0170231 0.00127422 0.999892 -0.014665 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -5.42666e-07 1 2.15171e-06 1.75722e-06 1 1.75722e-06 1.53832e-05 1 -1.69069e-05 0.0115808 0.998816 0.0472493 -0.103095 0.993589 -0.0463974 -0.00235471 0.999912 0.0130745 0.00779874 0.999649 0.0253079 -0.0058697 0.999974 -0.00424106 -0.00862477 0.993763 0.111178 -0.0567324 0.998349 0.00896955 -0.0403605 0.998416 -0.0392082 0.0102755 0.996626 0.081426 0.00760022 0.999287 -0.0369952 -0.00119719 0.999287 -0.0377299 0.0294966 0.999565 -0.00076027 0.0293771 0.999561 -0.00383796 -0.0101285 0.999909 -0.0089099 -0.037493 0.998752 0.0330085 -0.023994 0.997154 0.071465 0.0225359 0.997043 -0.0734729 0.0357476 0.996229 -0.079055 0.0053598 0.99997 -0.00561431 0.00834134 0.999965 0.00014687 0.00597219 0.999963 0.00620905 0.0011122 0.999946 0.01033 2.46307e-05 1 4.70618e-05 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -0.707107 0 -0.707107 -0.707107 0 -0.707107 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.70778 0 0.706433 -0.70778 0 0.706433 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.929709 0 -0.368295 -0.0513871 -0.00154162 -0.998678 -0.707116 0.0020843 -0.707095 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0.706624 0 -0.707589 0.706624 0 -0.707589 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.70759 0 -0.706623 -0.70759 0 -0.706623 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0.706624 0 -0.707589 0.706624 0 -0.707589 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.70759 0 -0.706623 -0.70759 0 -0.706623 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 -1 0.906964 0.000785453 -0.421208 0.978077 0 -0.208245 0.396634 -0.000605625 -0.917977 0.0893476 -0.00268041 -0.995997 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 0.706814 0 0.7074 0.706814 0 0.7074 1 0 0 1 0 0 1 0 0 1 0 0 0.70614 0 -0.708072 0.70614 0 -0.708072 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 0.707118 0 0.707095 0.707118 0 0.707095 1 0 0 1 0 0 1 0 0 1 0 0 0.70614 0 -0.708072 0.70614 0 -0.708072 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0.897765 0.000554095 0.440475 0.991066 0 0.133369 0.748633 -0.000643378 0.662985 0.377309 0.000776335 0.926087 0.000136304 -4.0891e-06 1 0 0 1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.708072 0 0.70614 -0.708072 0 0.70614 0 0 1 0 0 1 0 0 1 0 0 1 0.707107 0 0.707107 0.707107 0 0.707107 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.708072 0 0.70614 -0.708072 0 0.70614 0 0 1 0 0 1 0 0 1 0 0 1 0.707107 0 0.707107 0.707107 0 0.707107 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 -2.53302e-05 0 1 0 -7.94729e-07 1 -0.879817 -0.000424495 0.475312 -0.919176 0 0.393848 -0.37219 0.000510831 0.928157 -0.438418 0.000770378 0.898771 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -0.707107 0 -0.707107 -0.707107 0 -0.707107 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.708084 0 0.706129 -0.708084 0 0.706129 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -7.67205e-05 -1 0 -4.21739e-05 -1 -4.21739e-05 0.0517753 -0.998659 0 0.0340084 -0.999127 0.02428 0.0210275 -0.999779 0 0 -1 0 0.0101341 -0.999897 0.0101558 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0122875 -0.997638 -0.0675804 0 -1 0 0 1 0 0 -1 0 0 -0.99991 0.0133918 -0.021457 -0.999768 -0.00173082 0.0414087 -0.999139 0.00265745 0 -0.999462 0.0327972 -0.00422333 -0.999494 0.0315363 -7.02316e-06 -1 -7.01356e-06 0 -1 -1.27748e-05 9.38177e-06 -1 6.67427e-06 0 -1 0 0 -1 0 -0.00662932 -0.999977 -0.00167268 0.0129984 -0.999695 0.0209974 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.99998 -0.00626417 0.231649 -0.96054 0.153956 0 -0.975828 0.218539 0 -1 0 0 -1 0 -0.0902459 -0.991863 0.0898018 -0.117268 -0.992769 -0.0256513 -0.0793895 -0.996844 0 -0.0567259 -0.995425 -0.0768917 -0.00195347 -0.999998 0 -0.000965467 -0.999992 -0.00382815 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.00073121 -0.999992 -0.00402156 0 -1 0 0 -1 0 -4.44098e-05 -1 -5.83693e-05 7.6556e-05 -1 0 4.2123e-05 -1 4.21217e-05 -1.24651e-05 -1 4.94217e-05 -0.0065853 -0.999637 0.0261094 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.00669628 -0.999978 0 -0.0120454 -0.999915 -0.0050632 -0.0281775 -0.998785 0.0404282 -0.0585186 -0.998286 0 0 -1 0 -0.0405385 -0.998355 -0.0405385 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -6.58513e-05 -1 0.000133483 0.0445851 -0.998526 0.0309516 6.65912e-05 -1 0 3.71846e-05 -1 7.90169e-05 0 -1 0 0 -0.997396 -0.0721207 0.049431 -0.998058 -0.0379071 0 -0.999999 0.00111918 -0.00161901 -0.999999 0.000408318 8.2354e-06 -1 -2.07699e-06 7.0203e-06 -1 7.0203e-06 0 -1 1.27623e-05 -9.37757e-06 -1 -6.67408e-06 0 -1 0 0 -1 0 -0.0869041 -0.995978 -0.0217891 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.998869 -0.0475429 -0.00317334 -0.999145 -0.0412289 0 -0.998869 -0.0475429 0 -1 0 0 -1 0 0.0166311 -0.999721 -0.0167492 0.0408077 -0.999167 0 0.0438333 -0.998996 -0.0092424 0.0503699 -0.998731 0 0.0272177 -0.993788 0.107913 -0.0313101 -0.997058 0.0699703 -2.3092e-05 -1 0 2.11321e-05 -1 4.28353e-05 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1.26658e-05 -1 2.69155e-05 -0.178441 -0.97369 0.141726 -2.14135e-06 -1 -8.49002e-06 7.03705e-06 -1 -7.01762e-06 6.31261e-05 -1 6.73327e-05 0.0223796 -0.99963 -0.0154427 -0.0655216 -0.997766 0.0130112 -0.0464573 -0.998521 0.0282273 -0.0434868 -0.998401 -0.0361146 0.0543437 -0.998221 0.0245397 -0.0445432 -0.997345 0.0576139 0.0113522 -0.999933 -0.00224754 0.0772823 -0.991478 0.10488 0.0684376 -0.9867 0.147443 -0.139658 -0.975013 -0.172756 0.0289053 -0.98963 -0.140701 -0.133006 -0.986437 -0.0961811 0.0235811 -0.99534 -0.0935007 -0.0241236 -0.998077 -0.0571066 0.0225355 -0.993836 -0.108545 0.140778 -0.98763 -0.0690489 -0.140503 -0.974806 0.173239 -0.138933 -0.988313 0.0627349 -0.024821 -0.999475 -0.0208238 0.00466211 -0.999714 0.0234677 -0.0753148 -0.992988 0.0911152 0.00957695 -0.994402 0.105231 0.124256 -0.991633 0.0349885 0.130473 -0.991305 0.0170466 0.090613 -0.99078 -0.10072 1.24823e-05 -1 -4.94933e-05 1 4.92235e-06 -0.000109558 0.999593 0.000560287 -0.0285311 0.939368 -0.000477475 0.342911 0.706486 0 0.707727 0.706467 7.42803e-07 0.707746 0.389135 0 0.921181 0.165651 -0.000593908 0.986184 0.968062 -0.000989454 0.250709 0.997489 0.000178227 0.0708233 0.241755 -0.00103223 0.970337 0.552782 0.00150726 0.833324 0.995653 0 0.0931403 0.991675 0.000324045 0.128768 0.75083 -0.00114984 0.660495 0.765958 0.00614822 0.642861 0.995653 0 0.0931404 0.712883 0 0.701283 0.714706 0.000169699 0.699425 0.660203 -0.000905874 0.751086 -0.000153623 2.99282e-06 1 -0.0481711 0.00093845 0.998839 -0.706453 0 0.70776 -0.706378 -2.77077e-06 0.707835 -0.98096 0 0.194212 -0.991574 -0.00032605 0.129544 -0.245299 0 0.969447 -0.206036 -0.000386378 0.978544 -0.952398 -0.000767297 0.304857 -0.931799 -0.00025467 0.362974 -0.201235 0 0.979543 -0.201235 0.00115328 0.979542 -0.600064 0 0.799952 -0.0978283 0 0.995203 -0.600064 0 0.799952 0.0419524 -0.00120305 0.999119 -0.0978283 0 0.995203 -0.706477 -3.50686e-07 0.707736 -0.706486 0 0.707727 -0.999689 0.000489201 0.0249531 -0.999642 -0.000521482 -0.0267677 -0.707121 0 -0.707092 -0.707107 5.61969e-07 -0.707107 -0.194853 0 -0.980832 -0.220004 -0.000412 -0.975499 -0.17846 -8.27905e-05 -0.983947 -0.988173 0.000179352 -0.153344 -0.743647 0.000663394 -0.668572 -0.923803 -0.000838329 -0.382867 -0.991573 0 -0.129551 -0.707085 8.00669e-07 -0.707129 -0.707107 0 -0.707107 -0.0470113 -0.000918699 -0.998894 0.0470307 0.000918282 -0.998893 0.707107 0 -0.707107 0.707078 -1.06759e-06 -0.707136 0.980848 0 -0.194776 0.987183 -0.000177357 -0.15959 0.920551 -0.00100766 -0.390622 0.114011 -0.000260191 -0.99348 0.826117 0.000780404 -0.563498 0.117407 -0.000233619 -0.993084 -0.264682 -0.00696087 0.964311 -0.977307 0.000656017 -0.211828 0.119324 0.00291254 -0.992851 -0.520137 0.00197657 0.85408 -0.618981 -7.94941e-05 0.785406 0.999969 0.000992852 0.00777621 0.751532 -0.00182678 -0.659695 0.494118 -0.00693507 0.869367 0.179506 0.00274652 0.983753 -0.987416 0.00145676 -0.158136 -0.19825 -0.000735766 -0.980151 0.969753 -0.00143281 0.244083 -0.682191 0.000432448 0.731174 0.948395 0.00531476 -0.317046 -0.250353 0.00179122 -0.968153 -0.99084 0.0019842 -0.135025 -0.135889 0.000436124 -0.990724 -0.863266 -0.00109852 -0.504749 0.998702 0.000789716 -0.0509297 0.541662 -0.000427174 0.840596 0.802382 0.00010165 -0.596811 0.550811 -0.000285736 0.83463 -0.487175 -0.00366747 0.873297 0.926369 -0.0047766 -0.376586 -0.885838 0.00236743 -0.463988 0.0916867 -4.57739e-05 -0.995788 -0.688222 0.00130086 0.725499 -0.268699 -0.00256558 -0.963221 0.956657 0.00174123 0.291211 0.806822 -0.000765042 0.590795 -0.984656 -0.000702865 -0.174503 0.215169 0.000603639 0.976577 0.0732072 -0.000600083 0.997317 -0.650718 0.000750053 0.759319 0.841702 0.000451183 -0.539943 0.161131 -0.000670576 -0.986933 0.927412 -0.00118071 -0.374039 -0.142278 -0.00576812 -0.98981 -0.489134 0.00493165 -0.872195 0.877982 0.00306538 0.478684 0.680056 0.00175938 -0.733158 0.968295 -0.00150153 -0.249804 0.320604 -0.00110521 -0.947213 -0.266964 0.00149031 -0.963705 -0.966241 0.000947746 0.257638 -0.301418 -0.00112079 0.953491 0.680634 -0.00063196 0.732624 -0.723943 6.27444e-06 -0.68986 -0.994796 -0.000605147 0.101889 -0.375462 6.62085e-06 0.926838 -0.643924 -0.00191797 -0.765087 0.706788 -0.707425 0 0.706788 -0.707425 0 0.38145 -0.924389 0 0.38145 -0.924389 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0047345 0 -0.999989 -0.00362375 0.00209101 -0.999991 0 0 -1 -0.0012018 0.00532599 -0.999985 -0.00790117 0 -0.999969 4.14398e-05 -0.0136465 -0.999907 0 0 -1 -0.00516647 0.00518847 -0.999973 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0372208 0.0372202 -0.998614 0 0 -1 0 0 -1 0 0 -1 0 0.00865622 -0.999963 0.00380457 0.00659403 -0.999971 0.0411745 -0.0220462 -0.998909 0.020914 -0.0362479 -0.999124 0 -0.0452943 -0.998974 -0.0527478 0.0105572 -0.998552 0.00165884 0.000416037 -0.999999 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.02114 -0.00533314 -0.999762 0.0143283 0.00271633 -0.999894 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0181212 -0.999836 0.0026552 0.00460196 -0.999986 -0.0301261 -0.00164391 -0.999545 -0.00269918 0.00467818 -0.999985 0 -0.00178308 -0.999998 0.00789696 0.00239344 -0.999966 0 0 -1 0 0 -1 -0.00110275 -0.00109963 -0.999999 -0.00175206 0 -0.999998 0.0175223 0.0358861 -0.999202 0.0393516 -0.022707 -0.998967 0.0316148 0.0182426 -0.999334 0.0309063 0 -0.999522 -0.00736886 -0.0232099 -0.999703 -0.000343355 0.00136378 -0.999999 0.0114456 -0.00660682 -0.999913 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.434569 0.434563 -0.788863 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.000112999 0.000448822 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0236927 0 -0.999719 0.00510962 -0.0230142 -0.999722 -0.0208407 0.0120257 -0.999711 -0.0367969 -0.0212304 -0.999097 -0.00261965 0 -0.999997 -0.0120088 0.0189094 -0.999749 0 0 -1 0.00200098 -0.00199533 -0.999996 0.0043334 0.00978068 -0.999943 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0370894 -0.0249313 -0.999001 0.000241689 0.000489026 -1 -0.000244168 0 -1 -0.000136315 0.000289659 -1 0 0 -1 0 -0.00535581 -0.999986 -0.00323035 -0.00559936 -0.999979 0.00382853 -0.00663622 -0.999971 -0.0105618 -0.00182307 -0.999943 0 0.00392414 -0.999992 0.00533009 0.00134466 -0.999985 -0.0384074 -0.0546302 -0.997768 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.00359917 -0.000902672 -0.999993 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0165187 -0.999864 -0.0145064 -0.00605552 -0.999876 0.00949488 0.016458 -0.999819 -0.0124386 0.0215605 -0.99969 0 -0.00374599 -0.999993 0.0204003 0.00824333 -0.999758 0 0 -1 0 0 -1 -0.00254657 -0.00255742 -0.999994 -0.00448343 0 -0.99999 -0.00346958 0.00200182 -0.999992 -0.0199543 -0.0203734 -0.999593 -0.0241682 -0.0139458 -0.999611 -0.0298963 0 -0.999553 0.0255469 0.0566964 -0.998065 0.00795388 -0.0315922 -0.999469 4.6184e-05 0 -1 -4.23163e-05 8.56216e-05 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 2.53309e-05 5.38279e-05 -1 0 0 -1 0 0 -1 0 0 -1 0.0238847 -0.0436048 -0.998763 0.00931674 0.0370054 -0.999272 -0.0137286 0.0332693 -0.999352 0 0.0395596 -0.999217 0.0223738 0.0629781 -0.997764 -0.0163246 -0.0359134 -0.999222 -0.00600943 -0.0275363 -0.999603 -0.00586294 -0.00818163 -0.999949 0.00144332 -0.00028572 -0.999999 -0.000128771 0.000307657 -1 0.0194272 0.0185141 -0.99964 0 0.0263678 -0.999652 -0.174374 0.0420345 -0.983782 0.0541813 0.141676 -0.988429 -0.0459312 0.00599536 -0.998927 -0.00333401 0.00888984 -0.999955 -0.00501796 -0.000654722 -0.999987 -0.0575377 0.0880058 -0.994457 0.0475388 0.0346322 -0.998269 0.0814428 -0.00856651 -0.996641 -0.000571535 -0.00285773 -0.999996 -0.0414077 -0.0171277 -0.998996 0.0143669 0.0018753 -0.999895 -0.00662658 0.0250233 -0.999665 -0.00929404 -0.0919878 -0.995717 -0.0770782 0.0247378 -0.996718 0 -0.0107687 -0.999942 -0.00463114 -0.0110646 -0.999928 0 0 -1 0 0 -1 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707495 -0.706718 0 -0.707495 -0.706718 0 -1 0 0 -1 0 0 -0.866146 -0.499791 0 -0.866146 -0.499791 0 -0.866171 0.499748 0 -0.866171 0.499748 0 -1 0 0 -1 0 0 -0.707492 0.706721 0 -0.707492 0.706721 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.847335 -0.531058 0.000860103 -0.965617 -0.259969 0 -0.783213 -0.621752 -0.00125927 -0.67314 -0.739515 -0.000356846 -6.11522e-05 -1 7.24413e-07 -1.26651e-05 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.706526 -0.707687 0 0.706526 -0.707687 0 0 -1 0 0 -1 0 0.499717 -0.866189 0 0.499717 -0.866189 0 -0.499717 -0.866189 0 -0.499717 -0.866189 0 0 -1 0 0 -1 0 -0.707492 -0.706721 0 -0.707492 -0.706721 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.706526 -0.707687 0 0.706526 -0.707687 0 0 -1 0 0 -1 0 0.499717 -0.866189 0 0.499717 -0.866189 0 -0.499717 -0.866189 0 -0.499717 -0.866189 0 0 -1 0 0 -1 0 -0.707492 -0.706721 0 -0.707492 -0.706721 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 3.71737e-05 -1 -5.3105e-07 0.887712 -0.460398 0.000641876 0.986747 -0.162269 0 0.811988 -0.583674 3.82293e-05 0.900029 -0.43583 -0.000479221 0.636305 -0.771437 -1.89276e-05 0.3614 -0.932411 0.000355411 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.706526 0.707687 0 0.706526 0.707687 0 1 0 0 1 0 0 0.866171 0.499748 0 0.866171 0.499748 0 0.866146 -0.499791 0 0.866146 -0.499791 0 1 0 0 1 0 0 0.706529 -0.707684 0 0.706529 -0.707684 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.706529 0.707684 0 0.706529 0.707684 0 1 0 0 1 0 0 0.866146 0.499791 0 0.866146 0.499791 0 0.866146 -0.499791 0 0.866146 -0.499791 0 1 0 0 1 0 0 0.706529 -0.707684 0 0.706529 -0.707684 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.767673 0.640841 -0.000686534 0.450163 0.892946 0.000875173 0.990998 0.133874 0 0.316655 0.948541 0 0.846824 0.531873 0.000271614 0.37584 0.926684 0.000146799 0.965433 0.260653 0.000211002 0.929345 0.369212 -0.000406777 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707495 0.706718 0 -0.707495 0.706718 0 0 1 0 0 1 0 -0.499754 0.866167 0 -0.499754 0.866167 0 0.499754 0.866167 0 0.499754 0.866167 0 0 1 0 0 1 0 0.706529 0.707684 0 0.706529 0.707684 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707495 0.706718 0 -0.707495 0.706718 0 0 1 0 0 1 0 -0.499754 0.866167 0 -0.499754 0.866167 0 0.499754 0.866167 0 0.499754 0.866167 0 0 1 0 0 1 0 0.706529 0.707684 0 0.706529 0.707684 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.852091 0.523393 0.000173977 -0.293636 0.955917 0 -0.449764 0.893146 0.00149153 -0.226366 0.974042 0.000138655 -0.879539 0.475827 0 -0.91462 0.404309 -0.00213519 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707495 -0.706718 0 -0.707495 -0.706718 0 -1 0 0 -1 0 0 -0.866146 -0.499791 0 -0.866146 -0.499791 0 -0.866146 0.499791 0 -0.866146 0.499791 0 -1 0 0 -1 0 0 -0.707495 0.706718 0 -0.707495 0.706718 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0250519 0 0.999686 -0.0106662 -0.0280595 0.999549 0.022655 0.0130726 0.999658 0.0321363 -0.0185414 0.999312 0.0340557 -0.0144884 0.999315 0.0364173 0 0.999337 0 0 1 -0.00300531 -0.00301811 0.999991 -0.0136429 0.0397397 0.999117 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.000314968 0.000637297 1 0.000303615 0 1 0.000171249 0.000363902 1 0 0 1 0 -0.00707582 0.999975 0.00370767 -0.00642673 0.999972 -0.00605988 -0.010504 0.999927 0.0635445 0.0288926 0.997561 0 0.0584208 0.998292 -0.123445 -0.0369369 0.991664 0.00342576 -0.000859183 0.999994 0.0025207 0.000498991 0.999997 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0275581 0.0069523 0.999596 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.00424689 0.999991 -0.0183865 0.0153327 0.999713 0.00391118 -0.00677948 0.999969 -0.00711346 0.000370306 0.999975 -0.00212546 -0.00368419 0.999991 0 -0.00424306 0.999991 0 0 1 0 0 1 0.00189147 -0.00188612 0.999996 -0.00182652 -0.0157093 0.999875 0.0321648 0 0.999483 0.0443038 0.0255616 0.998691 0.0313651 -0.0180985 0.999344 0.0321648 0 0.999483 -0.00742505 0.0240744 0.999683 -0.000782278 -0.00310715 0.999995 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.139515 -0.139511 0.980343 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.00350637 0.013927 0.999897 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0165623 0 0.999863 -0.00434526 0.0104547 0.999936 -0.014311 -0.00825788 0.999864 -0.00566244 0.00326739 0.999979 -0.0115453 -0.013666 0.99984 -0.0113715 0 0.999935 -0.00471104 0.011767 0.99992 0 0 1 -0.00842333 -0.00839954 0.999929 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0237424 -0.0237421 0.999436 0 0 1 0 0 1 0 0 1 0 -0.0169743 0.999856 0.00813997 -0.0141081 0.999867 0.0214076 -0.00632528 0.999751 0.00154977 0.00268604 0.999995 0 0.00300135 0.999996 -0.0119032 -0.0130129 0.999844 0.0270291 -0.00681885 0.999611 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0377174 -0.00945952 0.999244 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0249081 0.99969 0.0106388 -0.018439 0.999773 0 0 1 0.0242878 -0.0075427 0.999677 0 -0.00864736 0.999963 -0.0212059 0.0017393 0.999774 0 0 1 0 0 1 0.00497948 -0.00500068 0.999975 0.0104055 0.00595628 0.999928 0.00221033 0 0.999998 0.002054 0.00118522 0.999997 0.00023103 0.00617424 0.999981 -0.00191106 0.00110274 0.999998 -0.00211342 0 0.999998 0.0372246 -0.0298388 0.998861 -0.0147543 0.122487 0.99236 0.00459133 0.0182364 0.999823 -0.00739733 0.0179264 0.999812 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.124342 0.12434 0.984418 0 0 1 0 0 1 0 0 1 -0.0222574 0.00912703 0.999711 -0.00755122 0.0219853 0.99973 -0.00173235 0 0.999999 -0.0277616 -0.164174 0.986041 0.161657 0.0279154 0.986452 0 0.00173741 0.999999 -0.0329646 0.010345 0.999403 0.0258598 -0.00337545 0.99966 0.00762833 -0.020779 0.999755 0.0148484 0.0497923 0.998649 -0.0572742 -0.0241831 0.998066 0 -0.010907 0.999941 -0.00737816 -0.00930949 0.999929 0.000917757 -0.00219268 0.999997 -0.000363175 -0.00625372 0.99998 0.000504933 -0.00200556 0.999998 0.0224346 -0.00997383 0.999699 -0.00222399 -0.0168517 0.999856 0.0734427 -0.049285 0.996081 0.0364711 0.020104 0.999132 -0.050138 0.0730062 0.99607 -0.0363976 0.0312129 0.99885 0.00392582 0.00937948 0.999948 -0.00508773 0.0179178 0.999826 0 0.0187955 0.999823 0.0012288 0.0184278 0.999829 0.008561 0.0129174 0.99988 0.0106683 0.00755495 0.999915 0.0303766 -0.0019867 0.999537 0.0236445 0.0030863 0.999716 0 0 1 0 0 1 1 0 0 1 0 0 0.848809 -0.5287 0 0.925176 -0.379539 -0.000181813 0.925176 -0.379539 0.000179177 0.967058 -0.254554 0 0.925176 0.379539 0 0.925176 0.379539 0 0.706788 0.707425 0 0.706788 0.707425 0 0.130839 0.991404 -0.000156814 0.196112 0.980581 0 0.580682 0.81413 -0.000352993 0.97757 0.210612 0.000253221 0.132246 0.991217 -0.0001585 0.894794 0.44648 -0.000560099 0.566945 0.823755 0.000631973 0.937182 0.348842 0.000181707 0.393974 0.919122 0.000644204 0.254161 0.967161 -0.000947327 0.998534 0.054127 6.50774e-05 0.991595 0.129379 0.000492409 0.856287 0.5165 0 0.980964 0.194189 -0.000463166 0.70678 0.707433 0 0.70678 0.707433 0 0.381483 0.924376 0 0.381483 0.924376 0 0 1 0 0 1 0 -0.386132 0.922444 0 -0.386132 0.922444 0 -0.70678 0.707433 0 -0.70678 0.707433 0 -0.991588 0.129431 0 -0.991588 0.129431 0 -0.323909 0.946088 0.000488684 -0.183272 0.983062 0 -0.710426 0.703771 -0.00108547 -0.951039 0.30907 0 -0.614213 0.78914 0.000552428 -0.934112 0.356981 -0.000178 -0.369274 0.92932 -0.000632784 -0.916705 0.399564 0.000992386 0 1 0 0 1 0 -0.386098 0.922458 0 -0.386098 0.922458 0 -0.70678 0.707433 0 -0.70678 0.707433 0 -0.92523 0.379406 0 -0.92523 0.379406 0 -1 0 0 -1 0 0 -0.991199 -0.132384 0 -0.92523 -0.379406 0.000241083 -0.852675 -0.522442 0 -0.92523 -0.379406 -0.00024463 -0.70678 -0.707433 0 -0.70678 -0.707433 0 -0.386098 -0.922458 0 -0.386098 -0.922458 0 0 -1 0 0 -1 0 -0.783825 -0.620982 0.000490545 -0.930498 -0.366295 -0.000649299 -0.373889 -0.927473 -0.00087773 -0.974587 -0.224008 0 -0.981761 -0.190121 -0.000121789 -0.171751 -0.98514 0 -0.710277 -0.703922 0.000244726 -0.19554 -0.980696 4.8113e-05 -0.532658 -0.846331 -0.000324265 -0.767979 -0.640475 -0.000158825 -0.491326 -0.870976 9.40079e-05 -0.991588 -0.129431 0 -0.991588 -0.129431 0 -0.70678 -0.707433 0 -0.70678 -0.707433 0 -0.542202 -0.840248 0 -0.386098 -0.922458 0.000195671 -0.231888 -0.972742 0 -0.386098 -0.922458 -0.000217026 0 -1 0 0 -1 0 0.38145 -0.924389 0 0.38145 -0.924389 0 0.70678 -0.707433 0 0.70678 -0.707433 0 0.848833 -0.528661 0 0.990554 -0.137125 0.000164879 0.92523 -0.379406 -0.000181932 0.980963 -0.194192 0.000379619 1 0 0 0.346569 -0.938025 0 0.993385 -0.11483 -0.000138067 0.838055 -0.545585 0.000946209 0.857955 -0.513722 0.00132371 0.298283 -0.954477 0.000807132 0.937115 -0.349007 -0.00306663 0.963409 -0.268036 -0.00102697 0.857956 -0.513723 0.000564773 0.425992 -0.904727 -0.000308223 0.356274 -0.934382 0.000116426 0 -1 0 0 -1 0 -0.778517 -0.627622 -0.00130426 0.87462 0.484809 -0.000446257 0.963763 0.26676 0.000899711 -0.132032 -0.991245 -0.00027605 0.781981 -0.623301 -0.001354 0.467185 -0.884157 0.00234215 -0.844149 -0.536109 -0.00014652 0.955361 -0.295438 0.000948905 -0.996773 -0.0802698 0.00030206 -0.996711 0.0810365 -0.000193057 0.193875 0.981026 -0.000465749 -0.692762 0.721166 -0.000805622 0.654365 0.756179 0.000626062 -0.892055 0.451926 0.000877744 -0.169299 0.985563 0.00171589 0.601292 -0.799029 -0.00105676 -0.129312 -0.991604 -0.000316231 0.370838 -0.928697 0.00011209 -0.556757 -0.830675 0.000872699 -0.994671 -0.103102 -0.000484786 -0.116182 0.993226 -0.00173186 -0.375309 -0.9269 -0.000343846 -0.900984 0.433853 -0.000694707 0.956138 -0.292915 0.000540005 -0.840228 -0.542233 -0.000106537 0.653007 0.757351 -0.000966302 -0.936133 -0.351644 0.00132148 0.939899 0.341452 -0.000834181 0.95614 -0.292908 0.00054006 0.046792 0.998905 -4.01459e-05 0.816092 0.577921 0.000634165 -0.789552 0.613683 0.001077 0.487609 -0.873055 0.00359975 -0.999669 -0.0257247 -0.000381326 -0.981308 0.192443 0.000653541 -0.205704 0.978614 -0.00108264 0.691563 0.722315 -0.000831165 0.347379 -0.937725 -0.000109934 -0.772376 0.635166 6.49952e-05 -0.751 -0.660302 -0.00033809 -0.948666 -0.316279 0.000479628 0.876245 0.481866 0.000831324 0.999568 -0.0293832 -0.000107615 -0.214772 -0.976664 -4.94532e-05 -0.711276 -0.702913 -9.74945e-05 -0.583101 0.812399 0.00144161 0.99611 -0.0881219 0.000119992 0.836569 -0.547862 -0.000419527 -0.298657 -0.954361 0.00020114 0.656254 -0.75454 0.0001941 0.276688 -0.96096 0.000106128 -0.068205 0.997671 -0.000255067 0.426892 0.904302 0.000949848 -0.592787 0.805359 -0.00014972 0.91055 0.413398 -0.000968116 -0.94337 -0.331741 -0.000637921 -0.988042 0.154184 -0.000697552 0.351371 0.936236 0.000226163 -0.999414 -0.0342269 0.000396364 -0.597159 0.802123 -0.000101173 -0.775274 -0.631624 0.000299073 0.997248 0.0741258 0.00155305 0.222667 0.97489 -0.00289933 0.426109 0.90467 0.00206599 -0.982551 0.185988 0.00174135 0.227282 -0.973829 -0.000756831 -0.85691 0.515461 -0.00224088 0.357728 0.933826 -0.000248463 0.0542178 -0.998529 0.000269249 -0.696777 -0.717282 -0.00295931 -0.841711 0.539925 -0.00183328 0.91788 -0.396858 0.000129881 0.884412 -0.466707 -0.000363324 0.942501 0.334203 -0.000528673 -0.840093 -0.542442 0.000262313 0.99328 0.115734 0.000531848 -0.996362 0.0852015 0.00178435 -0.197976 0.980204 0.00228397 0.81134 0.584574 0.000573524 -0.515571 -0.856847 0.000272211 -0.849304 -0.527904 0 -0.485909 -0.874009 0 0.63869 -0.769464 0.000577015 -0.998299 0.0583008 -0.000300278 -0.83386 0.551976 -0.000346779 -0.836978 -0.547236 -0.000206808 -0.999192 0.0401827 -0.000113787 -0.268264 0.963345 -0.000593836 0.291966 0.956429 9.19128e-05 0.0399892 -0.9992 -0.00110159 -0.851042 0.525097 -0.000582119 0.991087 0.133217 -0.000224095 0.918826 -0.394662 -0.00116029 0.637862 -0.77015 0.000547469 -0.482883 0.875685 0.000353361 0.7625 0.646988 -0.000709031 0.971143 0.238497 0.000684566 -0.486788 -0.873519 -0.0011 -0.693619 -0.720341 0.00102984 0.480983 -0.876726 0.00258936 -0.992898 0.118945 -0.00235014 0.964563 0.26385 0.00139404 0.77003 0.638007 0.000881025 -0.999738 0.0228536 -0.00120736 -0.335908 -0.941893 -0.00205031 -0.0382956 -0.999266 -6.47276e-05 0.114291 0.993447 2.74266e-05 0.852862 0.522134 -0.00136863 0.999983 0.0057346 0.000420276 0.413636 -0.910442 0.000234519 0.660903 0.750471 0.000513097 -0.904129 -0.427258 0.00113053 -0.520799 -0.853679 -3.53313e-07 0.998182 0.0602719 -0.00012298 -0.469572 0.882894 0.000162634 0.294951 -0.955512 -0.000264928 0.900556 -0.43474 0.000158976 0.841613 -0.540081 -0.000229011 -0.85989 0.51048 -8.08818e-05 -0.472112 0.881539 0.000152524 0.162031 0.986786 -0.000252573 0.697232 0.716843 0.00180539 0.911006 0.412392 4.15923e-05 0.990873 0.134801 0.000107036 0.437918 -0.899015 -9.5482e-05 -0.575073 -0.818101 -0.00123449 -0.906587 -0.422018 -0.000191696 -0.872461 -0.488683 0.000451778 0.817987 0.575233 -0.00215192 -0.0361366 -0.999347 -7.73541e-05 0.356628 0.934246 0.000903474 -0.99839 0.0567109 -0.000590637 0.294951 -0.955512 0.000558117 0.151122 -0.988512 0.00236253 -0.93421 0.356723 0.000482659 0 -0.70678 0.707433 0 -0.70678 0.707433 0 -0.924389 0.38145 0 -0.924389 0.38145 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.99979 0 0.020503 0.999914 0.00563189 0.0118296 0.999741 -0.0113353 0.0197109 0.999465 0.0163028 0.0283487 0.999862 0 0.0165857 0.999819 -0.00383722 0.0186553 1 0 0 0.999891 -0.0104432 0.0104212 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999676 0.0180118 -0.0180115 1 0 0 1 0 0 1 0 0 0.999858 -0.016868 0 0.998345 -0.0391876 0.0420928 0.997397 -0.0624559 -0.0360353 0.997921 -0.0558276 0.0322109 0.998581 -0.0491594 -0.0204541 0.999252 -0.0386703 0 0.998381 -0.00367747 -0.0567691 0.999509 -0.00766473 -0.0303821 0.999507 0.0122598 -0.0288991 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999645 -0.00651339 0.0258165 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999875 -0.0158254 0 0.999355 -0.031102 -0.017945 0.999827 -0.0181115 0.0041408 0.999772 -0.0184959 0.0106716 0.999789 -0.0205481 0 1 0 0 1 0 0 0.999924 -0.00869795 -0.00872258 0.999761 0.0161184 -0.0147553 0.999935 0 0.0114242 0.999918 -0.00640967 0.0111081 0.999834 0.00909684 0.015765 0.999932 -0.00943958 0.00691869 0.999999 0 0.00142614 0.999998 -0.00202331 0.000509402 0.999965 0.00425101 -0.00716358 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.998424 0.039682 0.0396826 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.998808 -0.0473278 -0.0119156 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.998535 0 -0.0541167 0.998744 0.0250457 -0.0434046 0.998585 -0.0265751 -0.0460604 0.998171 -0.000420134 -0.0604545 0.998529 0 -0.0542195 1 0 0 0.999357 0.0253097 -0.0253814 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.998107 -0.0434866 0.0434878 1 0 0 1 0 0 1 0 0 1 0 0 0.998252 0.0446633 0.0386952 1 -0.000524813 0 0.999751 0.00523553 -0.0216809 0.999727 0.0202373 0.0116752 0.99986 0.0144871 -0.00835784 0.999874 0.0146118 -0.00628274 0.99985 0.0173447 0 0.999743 -0.00139363 0.0226377 0.999965 0.00206169 0.00817175 0.999906 0.00776839 0.011299 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999992 0.00100048 -0.00396581 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999932 -0.0116689 0 0.999884 0.013189 0.00760891 0.999556 0.00150225 -0.0297472 0.999914 0.0113932 -0.00657288 0.99995 0.00996202 0 0.999942 0.0106932 0.00131424 1 0 0 1 0 0 0.999945 0.00745788 0.00744219 0.999882 0 0.01537 0.999888 -0.00747688 0.013003 0.998405 0.0405245 0.0393187 0.998636 0.0260282 0.0452601 0.998755 0 0.0498755 0.999524 -0.0267077 0.0154403 0.988208 -0.150776 -0.0266871 0.999999 -0.00129241 0.000325532 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.745336 -0.471421 -0.471421 1 0 0 1 0 0 1 0 0 0.999618 0.0268072 0.00675219 0.999797 0.0186268 -0.00768639 0.999674 0.025532 0 0.999856 0.0155967 -0.00675785 0.998917 0.0098071 0.0454779 0.998028 -0.0242025 -0.0579172 0.999438 0 -0.0335342 0.998942 -0.0442402 -0.0125482 0.999236 -0.0360528 0.0150901 0.999205 -0.0232602 0.0323701 0.999923 -0.0124316 0 0.999922 -0.0123262 0.00214014 0.999911 -0.0133307 -6.22441e-05 0.999736 0.012648 0.0191874 0.999881 0 0.0153987 0.999839 -0.00680343 0.0165849 0.999819 0.00440274 0.0184914 0.999991 -0.00161233 -0.00380076 0.99999 0 -0.00438809 0.998211 0.0401895 -0.0442737 0.99982 0.0114251 0.0151373 0.998528 -0.0438437 0.031936 0.99998 -0.00457518 0.00445416 0.999999 -0.00147367 0 0.999999 -0.00139481 -0.00057557 0.999865 0.0112402 0.0119863 0.999841 0.00676233 0.0164841 0.999973 0 0.00741651 0.999425 -0.0329175 0.00809051 0.99947 0.0137953 -0.0294955 0.999963 0.00855809 0 0.999943 0.00986657 0.00412969 1 0 0 1 0 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.707202 -0.707012 0 -0.707202 -0.707012 0 0 -1 0 0 -1 0 -0.498523 -0.866876 0 -0.498523 -0.866876 0 0.49848 -0.866901 0 0.49848 -0.866901 0 0 -1 0 0 -1 0 0.707205 -0.707009 0 0.707205 -0.707009 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 -0.000112741 -0.405923 -0.913907 6.17508e-05 -0.841589 -0.540118 0.000224731 -0.922455 -0.386105 0 -0.982831 -0.184506 0.000570516 -0.945675 -0.325114 -0.000361054 -0.861446 -0.507849 -0.000135375 -0.824775 -0.565461 -2.82084e-05 -0.554399 -0.832251 -0.000164023 -0.417926 -0.908481 0 -0.23484 -0.972034 0.000229781 -0.617194 -0.786811 0.000724785 -0.480216 -0.87715 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.707394 0.706819 0 -0.707394 0.706819 0 -1 0 0 -1 0 0 -0.866189 0.499717 0 -0.866189 0.499717 0 -0.866189 -0.499717 0 -0.866189 -0.499717 0 -1 0 0 -1 0 0 -0.706721 -0.707492 0 -0.706721 -0.707492 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.707698 0.706515 0 -0.707698 0.706515 0 -1 0 0 -1 0 0 -0.866189 0.499717 0 -0.866189 0.499717 0 -0.866189 -0.499717 0 -0.866189 -0.499717 0 -1 0 0 -1 0 0 -0.706721 -0.707492 0 -0.706721 -0.707492 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 -0.000233555 -0.297339 0.954772 0.000293163 -0.880794 0.473499 6.77129e-05 -0.230975 0.97296 0.000301248 -0.879482 0.475933 0 -0.985013 0.172478 0 -0.173186 0.984889 0.000248701 -0.584677 0.811266 -0.000273151 -0.895201 0.445664 0 -0.173186 0.984889 0 -0.58134 0.813661 6.45338e-06 -0.849941 0.526877 2.04245e-05 -0.587237 0.809415 -0.000203958 -0.609444 0.792829 -0.00027849 -0.894601 0.446866 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.707687 0.706526 0 0.707687 0.706526 0 0 1 0 0 1 0 0.499748 0.866171 0 0.499748 0.866171 0 -0.499791 0.866146 0 -0.499791 0.866146 0 0 1 0 0 1 0 -0.707684 0.706529 0 -0.707684 0.706529 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.707684 0.706529 0 0.707684 0.706529 0 0 1 0 0 1 0 0.499791 0.866146 0 0.499791 0.866146 0 -0.499791 0.866146 0 -0.499791 0.866146 0 0 1 0 0 1 0 -0.707684 0.706529 0 -0.707684 0.706529 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 -7.20166e-05 0.673424 0.739257 -0.000248289 0.596159 0.802866 0.000314488 0.878372 0.477977 0.000417095 0.501719 0.86503 0.000172647 0.896605 0.442832 0 0.173436 0.984845 0 0.991555 0.129684 -0.000629822 0.872154 0.489231 -0.000399239 0.396151 0.918185 -0.00018699 0.927853 0.372945 -0.000107391 0.597807 0.80164 0.000193129 0.868279 0.496076 -0.00040935 0.289477 0.957185 8.33805e-05 0.86733 0.497734 0.000155635 0.663267 0.748383 -0.000152698 0.329842 0.944036 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.706718 -0.707495 0 0.706718 -0.707495 0 1 0 0 1 0 0 0.866167 -0.499754 0 0.866167 -0.499754 0 0.866167 0.499754 0 0.866167 0.499754 0 1 0 0 1 0 0 0.707696 0.706518 0 0.707696 0.706518 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.706718 -0.707495 0 0.706718 -0.707495 0 1 0 0 1 0 0 0.866167 -0.499754 0 0.866167 -0.499754 0 0.866167 0.499754 0 0.866167 0.499754 0 1 0 0 1 0 0 0.707391 0.706822 0 0.707391 0.706822 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 -0.000287694 0.423467 -0.905911 0.000665896 0.735503 -0.677522 0.000316317 0.4081 -0.912937 0 0.982839 -0.184465 0 0.15604 -0.987751 5.82383e-05 0.245385 -0.969426 -0.00013499 0.649332 -0.760505 -0.000338172 0.853029 -0.521864 -0.000441009 0.702239 -0.711941 4.16066e-05 0.378957 -0.925414 0.000318571 0.896351 -0.443345 0.000500721 0.173895 -0.984764 -0.000197803 0.430808 -0.902444 0.000330351 0.895809 -0.44444 0.000709048 0.97838 -0.206816 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.707202 -0.707012 0 -0.707202 -0.707012 0 0 -1 0 0 -1 0 -0.498523 -0.866876 0 -0.498523 -0.866876 0 0.498523 -0.866876 0 0.498523 -0.866876 0 0 -1 0 0 -1 0 0.707202 -0.707012 0 0.707202 -0.707012 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.000964045 -0.99995 0.00654151 0.00759983 -1 -0.00050097 -0.000871131 -0.999932 -0.00582526 0.0101306 -0.999871 -0.0151615 0.00533224 -0.999931 0 0.0117563 -1 0 0 -0.999998 0.00156694 0.00156364 -0.999931 0.0116264 -0.00147364 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.996651 0.0578189 0.0578189 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999994 0.00337259 0 -0.999994 0.00290209 -0.00167426 -0.999981 0.00539008 0.00310961 -0.999958 0.00709549 0.00573827 -0.999942 0.0107789 0 -0.999856 0.00414553 -0.0164324 -0.999949 -0.00395103 -0.00931381 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999989 -0.00113331 -0.00449199 -0.992712 0.0915921 0.0783162 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999992 -0.00405443 0 -0.999994 -0.00304889 0.00175895 -0.999991 0.0036291 0.00209368 -0.999968 0.00183031 0.00785425 -0.999791 0.0204366 0 -0.999462 0.00118362 0.0327819 -1 0 0 -1 0 0 -0.999789 0.0144979 -0.014539 -0.998615 0.0500206 0.016336 -0.996952 0 -0.0780163 -0.994107 -0.054176 -0.0938985 -0.99538 0.0479884 -0.0831646 -0.995423 -0.0641301 -0.0708522 -0.999417 0 -0.0341493 -0.982824 -0.181246 0.0347355 -0.999999 0.00161311 0.000406127 -0.999999 0.00130916 -0.000547954 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.354014 -0.661305 0.661325 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.000370709 9.33324e-05 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999987 0 -0.00513799 -0.999989 -0.00232676 -0.0040323 -0.999825 0.00934122 -0.0161885 -0.999819 0.0123073 -0.0145253 -0.999814 0 -0.0192695 -1 0 0 -0.99991 -0.00946148 -0.00948828 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.0217658 0.706934 0.706945 -1 0 0 -1 0 0 -1 0 0 -0.999802 -0.0166167 0.010992 -1 -0.000226624 0 -1 -0.000219484 0.000126636 -0.999108 -0.0118768 -0.0405194 -0.99959 -0.0248073 -0.0143131 -0.999596 -0.0284224 0 -0.999797 -0.0182959 0.00838739 -0.999333 -0.00893057 0.0353973 -0.999684 0.0207087 0.0142765 -0.999963 0.00328775 0.00801432 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999269 0.00935064 0.0370649 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.000634554 0 -0.999806 0.0166007 -0.0105892 -1 0.000620342 -0.00035792 -0.999857 -0.0146618 -0.00845943 -0.999688 -0.00579134 -0.0242828 -0.999849 -0.0173768 0 -1 0 0 -1 0 0 -0.999931 -0.00831727 0.00829977 -0.999757 0.0152832 0.0158632 -0.999875 0 -0.0158157 -0.999744 -0.0112876 -0.0196278 -0.999811 0.00968396 -0.0168393 -0.999875 0 -0.0158157 -0.999936 -0.0106713 0.00382464 -0.999999 0.00100967 0.000254315 -0.999618 0.0160582 0.0224996 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.996318 0.0145797 -0.0844867 -0.952556 0.21522 -0.215216 -1 0 0 -1 0 0 -1 0 0 -0.999516 -0.0121506 0.0286415 -0.999286 0 0.0377807 -0.991129 -0.0933182 -0.0946312 -0.997697 -0.061624 0.0283256 -0.991564 0.0829939 0.0995633 -0.999754 0.0221601 0 -0.999727 0.0215948 -0.00891112 -0.997139 -0.0286885 0.0699348 -0.996795 0 0.079999 -0.996861 -0.0789232 0.006348 -0.99818 0.057306 0.0187697 -0.997611 -0.0307802 -0.061839 -0.99988 -0.0155197 0 -0.999727 -0.0112948 -0.0204428 -0.999909 -0.0133173 -0.00223658 -1 -0.000372508 9.38274e-05 -1 -0.000363412 -0.000149962 -1 -0.000410359 0 -0.999264 -0.0257406 0.0284416 -0.997479 -0.0276417 0.0653561 -0.998043 0.0441337 -0.0443103 -0.999539 0 -0.0303475 -0.999522 0.0119756 -0.0284992 -0.999963 0.00831372 0.00203335 -1 -8.28054e-06 -0.000680521 -0.999981 0.00294434 -0.00533588 -0.999977 0.00640775 0.00228323 -0.999985 0.00554376 0 -0.984381 0.00502653 -0.17598 -0.986184 -0.153982 0.0610794 -0.999972 0 0.00749491 -1 0 0 0 0 1 0 0 1 0 -0.557384 0.830255 0.000116747 -0.387376 0.921922 0 -0.239374 0.970927 -9.20657e-05 -0.387376 0.921922 0 0.208763 0.977966 0 0.534765 0.845001 0.000104885 0.387376 0.921922 -0.00010535 0.387376 0.921922 0 0.70678 0.707433 0 0.70678 0.707433 0 0.924389 0.38145 0 0.924389 0.38145 0 1 0 0 1 0 0 0.826716 0.562619 0 0.982737 0.18501 -0.000741702 0.969451 0.245283 0 0.154044 0.988064 0 0.999107 0.0422593 6.9109e-05 0.975587 0.219613 0.0021649 0.700637 0.713514 -0.000416479 0.755768 0.654839 0.000247606 0.505614 0.86276 0 0.982737 0.18501 -9.69224e-05 0.972298 0.233746 0.0185896 -0.87832 0.477712 -7.76324e-05 0.973427 0.228998 -0.00101453 0.914224 0.405208 -5.80919e-05 0.832451 0.554098 0 0.982737 0.18501 0 0.839471 0.543404 -3.15241e-05 0.743639 0.668581 -0.000759617 0.951149 0.308732 9.69224e-05 -0.972298 -0.233746 0.00069813 0.883722 0.468012 0 0.826716 0.562619 0 0.826716 0.562619 0.000304853 0.509691 0.860358 0.000117232 0.264743 0.964319 -0.000551147 0.618071 0.786122 -0.00190494 0.392963 0.919552 -0.000109272 0.265124 0.964214 0 0 1 0 0 1 0 0.254554 0.967058 0 0.549119 0.835744 0.000113172 0.390526 0.920592 0 0.549119 0.835744 -0.00016799 0.390526 0.920592 0 0.254554 0.967058 0 0.706788 0.707426 0 0.706788 0.707426 -0.00010253 0.924376 0.381483 0 0.973112 0.230332 0 0.837233 0.546846 0.000102686 0.924376 0.381483 0 1 0 0 1 0 0 0.975282 -0.220965 0 0.849217 -0.528044 -0.000100641 0.922444 -0.386132 9.56425e-05 0.922444 -0.386132 0 0.707425 -0.706788 0 0.707425 -0.706788 0 0.228977 -0.973432 8.14933e-05 0.379526 -0.925181 -0.000140869 0.379526 -0.925181 0 0.54982 -0.835283 0 0 -1 0 0 -1 -2.0957e-05 0.982127 -0.18822 8.79717e-05 0.876363 -0.481651 -0.0021637 0.617234 -0.786777 0 0.568963 -0.822363 -2.5734e-05 0.173696 -0.984799 0 0.984729 -0.174092 0 0.154044 -0.988064 0.000190445 0.3683 -0.929707 -0.000617685 0.446403 -0.894832 4.97631e-05 0.578768 -0.815492 -6.41192e-05 0.580489 -0.814268 -5.10653e-05 0.205119 -0.978737 0.000511943 0.472879 -0.881127 2.26168e-05 0.981171 -0.193141 0 0.182789 -0.983152 0 0.568963 -0.822363 -5.58786e-06 0.568472 -0.822703 -3.61775e-06 0.84634 -0.532643 -0.000298713 0.601904 -0.798568 0.000407421 0.679136 -0.734013 6.5739e-05 0.217754 -0.976004 0 0.182789 -0.983152 0 0.568963 -0.822363 0.00125822 0.819901 -0.572505 -0.000410463 0.783293 -0.621652 0.000126162 0.875093 -0.483954 -0.000172934 0.857331 -0.514765 9.36731e-05 0.975799 -0.218671 -0.000396715 0.806986 -0.59057 -0.000835108 0.950024 -0.312176 0 1 0 0 1 0 0 0.973084 -0.230451 -0.000105099 0.922458 -0.386098 9.18225e-05 0.922458 -0.386098 0 0.844409 -0.535699 0 0.707433 -0.70678 0 0.707433 -0.70678 0 0.524967 -0.851122 -7.15245e-05 0.379406 -0.92523 0 0.179008 -0.983848 0.000230201 0.379406 -0.92523 0 0 -1 0 0 -1 -0.000109791 -0.379406 -0.92523 0 -0.533145 -0.846024 0.000108913 -0.379406 -0.92523 0 -0.191841 -0.981426 0 -0.707433 -0.70678 0 -0.707433 -0.70678 0 -0.968559 -0.248786 -4.30203e-06 -0.970338 -0.241751 2.54905e-05 -0.86307 -0.505085 -0.000110943 -0.922458 -0.386098 0 -0.833474 -0.552559 0 -1 0 0 -1 0 -0.000757182 -0.938743 -0.344619 0 -0.982918 -0.184046 4.08445e-05 -0.192216 -0.981353 -0.000317928 -0.513547 -0.858061 0.000613113 -0.322446 -0.946588 -0.000521206 -0.940165 -0.340718 0 -0.154051 -0.988063 0 -0.987777 -0.155875 0.000327481 -0.555591 -0.831455 -0.000443054 -0.348794 -0.937199 0.000356037 -0.855155 -0.518373 0 -0.834067 -0.551663 0.000490224 -0.558835 -0.829279 -5.14853e-05 -0.977496 -0.210953 0.000586967 -0.894954 -0.446158 9.9722e-05 -0.889852 -0.456249 -8.61803e-05 -0.556444 -0.830885 0.000293989 -0.908993 -0.416812 -8.3784e-05 -0.840424 -0.54193 0.00013392 -0.501558 -0.865124 -0.000809533 -0.564075 -0.825723 -4.37339e-05 -0.199422 -0.979914 0 0 -1 0 0 -1 0 -0.184383 -0.982854 -0.000121694 -0.379539 -0.925176 0 -0.550187 -0.835041 0.000114902 -0.379539 -0.925176 0 -0.707425 -0.706788 0 -0.707425 -0.706788 -6.19455e-05 -0.922458 -0.386098 0.000254788 -0.922458 -0.386098 0 -0.972726 -0.231956 0 -0.840343 -0.542055 0 -1 0 0 -1 0 0 -0.970691 0.240331 0 -0.837806 0.545968 8.87871e-05 -0.924389 0.38145 -0.000110816 -0.924389 0.38145 0 -0.706788 0.707426 0 -0.706788 0.707426 0 -0.49395 0.86949 -7.65439e-05 -0.39054 0.920586 0 -0.246558 0.969128 7.94822e-05 -0.39054 0.920586 0 0 1 0 0 1 -0.00130697 -0.925619 0.378454 -0.000217056 -0.445496 0.895284 -0.00029178 -0.938116 0.346321 0 -0.984876 0.173259 0 -0.154051 0.988063 3.63908e-05 -0.192917 0.981215 1.681e-05 -0.530767 0.847518 0.00015078 -0.84214 0.539259 0.000103311 -0.836577 0.547849 -0.000389347 -0.56803 0.823008 -0.000878279 -0.381938 0.924187 -4.26909e-05 -0.192657 0.981266 0.000676209 -0.367212 0.930137 0.000300116 -0.484219 0.874947 8.21522e-05 -0.565513 0.824739 -9.5105e-05 -0.858711 0.51246 0.000465421 -0.899565 0.436786 -1.37469e-05 -0.982521 0.186151 0 -1 0 0 -1 0 0.000876995 0.930176 0.367113 0.000511036 0.859504 -0.511128 -0.00168597 -0.422429 -0.906395 0.00261651 0.0167076 -0.999857 0.0014935 -0.783095 -0.621901 0.000269073 -0.830993 -0.556283 1.94813e-05 0.171608 -0.985165 -0.00122063 0.543888 -0.839157 -0.000621716 0.221342 0.975196 0.00208461 0.00738296 0.999971 0.000816064 -0.733972 0.679179 0.0017309 0.969286 0.245932 -0.00135973 0.598266 0.801297 0.000415715 -0.425193 -0.905103 0.0001162 0.902437 -0.430821 -5.38734e-05 0.909576 0.415539 -0.000175284 -0.705134 -0.709074 0.000116873 0.238158 0.971226 -0.000108763 -0.221632 0.97513 0 -0.659809 0.751434 -8.38193e-06 -0.996886 0.0788509 -0.000418476 -0.991971 -0.126461 5.12066e-05 0.628246 0.778015 -0.000536669 -0.884346 0.466832 -0.000395652 -0.14848 -0.988915 0.000223834 0.181537 -0.983384 0.000416243 0.634955 -0.772549 -0.000368265 0.998229 -0.05949 4.89006e-05 -0.162367 0.98673 -0.000196054 -0.590646 0.806931 -0.00015003 0.418009 -0.908443 -0.000388708 0.774342 -0.632767 0 -0.933799 0.357799 -0.000483426 0.437302 0.899315 -4.49146e-05 -0.934858 0.355023 0.000367623 -0.57387 0.818947 0.000598555 0.450333 0.892861 0.00017639 -0.988861 -0.148843 0.000125845 0.896042 0.443969 -0.00173942 -0.0856158 0.996327 0.000282134 -0.144955 -0.989438 -0.000799374 0.436106 -0.899895 0.000225802 0.274442 -0.961604 -0.000136545 0.779771 -0.626065 -0.00028412 -0.704507 -0.709697 0.00100582 0.173056 0.984912 0.000237536 0.990794 -0.135381 5.4696e-05 -0.752458 -0.65864 -0.000117777 -0.212053 -0.977258 -0.000497699 -0.398026 0.917374 -0.000860724 0.709951 0.704251 -0.000448432 0.815838 -0.57828 -0.000179795 0.996269 0.0863075 1.24923e-05 -0.984074 -0.17776 -0.000409699 -0.1885 -0.982073 0.000712587 0.298671 -0.954356 0.00150906 0.852152 -0.523293 0.000587637 -0.368913 0.929464 -0.000251206 -0.782818 0.622251 0.000398903 -0.957809 0.287405 -0.00148212 -0.99585 -0.0909953 0.000242036 -0.751927 -0.659246 -0.000439995 0.996374 0.0850748 -0.000638936 -0.756304 0.65422 -0.0022916 0.999641 -0.0267063 -0.000993349 0.42775 -0.903896 0.00160061 -0.999333 0.0364713 -0.00145614 0.398883 -0.917001 -0.00094518 -0.681157 -0.732137 0.00254799 -0.134712 -0.990882 -0.000428959 0.23039 0.973098 -0.00214755 0.115837 0.993266 -0.00624541 -0.909899 0.414782 0.00307646 0.83201 0.554752 -0.00447882 0.815729 0.578416 0.00117056 -0.0563252 -0.998412 0.000842913 0.699621 0.714514 0.000332181 -0.969681 0.244374 -0.00232513 0.0633701 0.997987 -7.58929e-05 -0.936868 0.349683 0.00153292 0.971099 -0.238672 -0.00161093 0.529072 -0.848575 -0.000761918 0.830626 -0.55683 0.000236406 -0.833181 -0.553001 -0.000157371 -0.566203 0.824266 0.0011212 -0.0499083 -0.998753 0.000890114 0.227991 0.973663 5.72796e-05 -0.61113 0.79153 -0.000500332 -0.510536 -0.859856 0.000168408 0.388612 0.921401 0.000437418 0.876161 -0.482019 -0.000191202 0.757366 0.652991 -0.000116452 0.997041 0.0768787 -0.000275085 -0.129245 0.991613 -5.3375e-06 -0.855534 -0.517747 1.9887e-05 0.00232347 -0.999997 -0.000128142 0.48611 -0.873897 0.000259713 -0.4999 -0.866083 -0.000149256 -0.0323991 -0.999475 -9.62668e-06 -0.544573 -0.838713 0.000225342 -0.12695 0.991909 -0.000113229 0.744894 0.667183 -0.000217042 -0.998531 -0.0541782 0.000173772 -0.8183 -0.574792 0.000333655 0.388785 -0.921328 -7.01254e-05 0.761444 -0.648231 0.000188536 -0.613929 0.789361 0.000268315 0.749879 0.661575 -0.00028262 -0.432321 0.90172 0.000260806 0.993876 0.1105 -0.000162124 0.918273 0.395947 -3.14501e-05 0.638344 0.769751 6.99271e-05 0.385928 0.922529 -0.00018141 -0.818188 -0.574951 -7.93017e-06 -0.788602 0.614904 0.000252546 -0.936654 0.350257 -2.63631e-05 -0.543749 -0.839248 0 -0.996203 -0.0870634 0 -0.799972 -0.600037 -0.000483615 -0.448342 -0.893862 8.69443e-05 -0.0312934 -0.99951 -0.000113077 0.232405 0.972619 8.78065e-05 -0.101818 0.994803 4.77885e-05 0.374055 -0.927407 -0.000366021 0.765854 -0.643014 -0.000179543 0.960449 -0.278455 -0.00050092 0.172441 -0.98502 -1.56732e-05 0.973502 -0.228679 0.000315766 0.671193 -0.741282 -0.000321229 -1 0.000702569 0.000140702 -0.501092 0.865394 3.79415e-05 -0.124699 0.992195 0.00107313 0.190601 -0.981667 0.00132369 -0.418716 -0.908116 -0.00110104 -0.638244 0.769833 -0.00171956 0.435587 -0.900145 0.000295129 -0.996353 0.0853306 0.000144343 -0.795078 -0.606508 -0.00089489 -0.675712 -0.737165 -0.00337455 0.0714972 0.997435 0.00134011 -0.532052 -0.84671 0.00162464 0.977195 0.212338 -0.00247741 0.823062 0.567946 -0.0001124 0.998961 0.0455636 0.000756501 0.287683 0.957726 0.000249305 -0.940095 0.340912 0.00012952 0.833793 -0.552077 -0.00374034 0.237376 -0.971411 0.00799575 0.575167 0.817997 0.000493666 0.259403 0.965769 0.000376874 -0.506304 0.862355 -0.000545248 -0.721284 0.692639 -2.78184e-06 -0.954038 -0.299686 -9.32793e-05 0.864002 -0.503489 0.000914023 -0.0134333 -0.999909 9.41759e-05 0.878774 0.477238 -0.000800783 -0.310426 0.950597 -0.000231936 0.996369 0.0851372 0.000436677 -0.594476 -0.804113 -0.000707588 -0.319129 -0.947711 -0.00072875 0.36513 -0.930956 -0.000469284 -0.824475 -0.565898 -2.26273e-05 0.622675 0.78248 -0.000231578 0.290087 0.957 -0.000377852 0.747993 0.663707 0 -0.297273 0.954792 -0.000407608 -0.993489 0.113924 0 -0.768436 0.639927 0.000380659 -0.346259 0.938139 -0.000593344 0.205607 0.978635 -0.00111999 -0.321384 -0.946948 0.000825361 0.392114 -0.919916 7.81488e-05 -0.195123 -0.980779 0.000439041 0.891156 -0.453696 -0.000163165 -0.841778 -0.539824 0.000265452 -0.76047 0.649374 -0.000279702 0.560503 -0.828152 -0.000597032 -0.418651 0.908147 0.000523403 0.597332 -0.801994 0.00201831 -0.256147 -0.966636 -6.58488e-05 -0.836592 -0.547826 0.00016214 0.209854 0.977733 -0.000206615 -0.474651 0.880174 -0.000290826 -0.946665 0.322219 0.000282619 -0.997682 0.0680482 0.000515249 0.155383 0.987854 -0.000460226 0.161585 -0.986859 0.000285343 0.995994 0.0894219 -6.94219e-05 0.914745 0.404031 0.000307118 0.742201 0.670177 -5.65644e-05 0.627017 0.779006 3.55509e-05 -0.845445 -0.534062 0.000682401 -0.352942 -0.935645 0.000184049 0.90908 -0.416621 -0.00174501 0.1531 -0.988209 0.0018321 -0.491379 0.870944 0.000604851 -0.0516744 -0.998664 0.00119681 0.164121 0.98644 -0.000755413 -0.184962 0.982745 0.000391786 0.604494 -0.79661 -0.000426147 0.733323 -0.67988 -0.00140192 -0.9165 0.400033 -0.00012512 0.996181 -0.0873166 -0.000463365 0.590846 0.806784 0.00177993 0.625211 0.780454 -0.00652259 0.849473 -0.527593 -0.00365199 0.175317 0.984505 0.00527617 -0.545429 0.838141 -0.00256452 -0.323635 0.946179 0.00158667 0.56663 -0.823971 0.00248856 -0.702099 -0.712075 -0.00175476 -0.477068 -0.878865 -0.000945541 0.260694 -0.965421 0.000100349 0.999428 0.0338126 -2.24017e-05 0.997899 0.064784 0.000317254 -0.313604 0.949554 0.000145938 -0.884385 -0.466759 -0.00116806 0.284376 -0.958712 0.00045571 0.631859 -0.775083 0.00166972 -0.363357 -0.931648 -0.000491741 0.872829 -0.488025 -0.000103825 0.760046 0.64987 -0.000209551 -0.557042 0.830484 0.000124427 -0.722654 0.69121 6.19185e-05 -0.993107 0.117209 -0.00025499 -0.97517 -0.221459 -0.000102493 0.76044 0.649409 -0.000331711 -0.616532 -0.78733 2.52788e-05 0.343237 0.939249 -0.000267134 -0.922476 0.386055 -0.000678152 -0.0217511 -0.999763 0.000807659 0.46314 -0.886285 0.000824289 -0.676271 -0.736652 -0.000150618 -0.326303 -0.945265 0.000664018 0.107432 -0.994212 -0.000542617 0.156008 0.987756 0.000310373 0.988054 0.15411 0.000808291 0.179986 0.983669 0.000118415 0.547092 -0.837072 -0.000165111 0.870965 -0.491345 0.000161491 0.131222 -0.991353 0.000563821 0.826098 0.563526 0.00029042 -0.564773 0.825247 -0.000447252 -0.135522 0.990774 0.000199916 -0.536859 0.843672 -0.000448229 0.483395 0.875402 -0.00063919 0.318583 -0.947895 -0.000110015 -0.931244 0.364395 -0.00054614 -0.304832 -0.952406 0.000800786 -0.999051 -0.0435404 -0.000521586 -0.807862 -0.589371 0.000348647 0.805183 -0.593026 -0.000122466 0.983623 -0.180237 0.00051388 -0.881368 -0.472429 6.57974e-05 -0.921935 0.387345 0.00196128 0.292818 -0.956166 -0.001479 0.71132 -0.702867 -0.000610314 -0.309879 -0.950776 -0.00167013 0.973642 0.228074 0.00171777 0.916616 0.399764 -0.000599328 0.987428 -0.158067 0.000901136 0.555074 0.8318 0.000182017 -0.38152 -0.924361 -0.00223059 -0.0993431 0.995051 0.000752763 -0.321884 0.946779 -0.00368146 0.697 0.717062 0 -0.706788 0.707426 0 -0.706788 0.707426 0 -0.970707 0.240267 9.4235e-05 -0.924389 0.38145 0 -0.837703 0.546126 -0.000103513 -0.924389 0.38145 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.000736977 1 0.000338892 -0.000587304 0.999091 0.021302 0.0369167 0.998878 0.0395952 0.0259876 0.999009 0 0.0444983 1 0 0 0.999988 -0.00344882 0.0034342 0.998433 -0.054542 -0.0124868 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999986 -0.00373412 0.00373417 1 0 0 1 0 0 1 0 0 0.999974 -0.0072777 0 0.999975 -0.00616548 -0.0035573 0.999802 -0.0152235 0.0127971 0.99981 -0.0168857 0.00974257 0.999803 -0.0198458 0 0.997029 -0.0654976 0.0405423 0.996022 -0.0217992 -0.0864037 0.998296 0.0227954 -0.0537124 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.99927 -0.00934441 0.0370402 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.996941 -0.0781541 0 0.994681 0.00241325 0.102977 0.997614 -0.0597967 -0.034501 0.999998 -0.00165558 0.00095522 0.997266 -0.0367444 -0.0641137 0.999998 -0.00192918 0 1 0 0 1 0 0 0.999999 -0.000866321 -0.000868774 0.998229 -0.0576717 0.0145981 0.998808 0 -0.0488136 0.998876 0.0236931 -0.0410606 0.998246 -0.00739202 -0.0587373 0.99847 -0.027635 -0.0478919 0.998431 0 -0.0559938 0.998032 0.0609705 0.0146873 0.999945 0.0101803 -0.00256306 0.999972 0.00740434 0.00129385 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.307715 0.672792 0.672802 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999999 -0.00130613 -0.000328839 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999565 0 -0.0294881 0.999618 0.01382 -0.0239502 0.99925 -0.0193575 -0.0335507 0.999146 -0.0107323 -0.0398902 0.999067 0 -0.0431887 1 0 0 0.999426 0.0239106 -0.0239783 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.0210783 -0.706939 0.70696 1 0 0 1 0 0 1 0 0 1 0 0 0.999409 0.0343704 0 0.999247 0.0122509 0.036802 0.999992 -0.00352258 -0.00203223 0.999995 -0.00268207 0.00154733 0.999589 -0.00297601 -0.0285205 0.999913 0.013193 0 0.999758 0.00538021 0.0213266 0.999801 -0.0197619 0.00286062 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.99998 0.00551268 0.00318034 0.999989 0.00245582 -0.00402742 0.999989 0.00409228 -0.0023609 0.999994 0.00348224 0 0.99999 0.0042089 0.00148369 1 0 0 1 0 0 0.999996 0.00201311 0.00200458 0.999583 0.0269711 -0.0103448 0.999546 0 0.030123 0.99943 -0.0168774 0.0292522 0.998863 0.0244945 0.0409077 0.998862 0.0238395 0.0413142 0.998722 0 0.0505454 0.997454 -0.0695149 -0.0159088 0.999958 -0.00886628 0.00223224 0.999858 -0.0138176 0.00966621 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999998 -0.00148563 -0.00148567 1 0 0 1 0 0 1 0 0 0.999706 -0.0185417 0.0156049 0.999523 0.029954 0.00754144 0.999534 0.0282089 -0.0116404 0.999004 0.0167264 -0.0413579 0.999991 0.00413299 0 0.997945 0.0114828 0.0630405 0.998838 -0.0426694 -0.0223847 0.999841 -0.0163261 -0.00712031 0.999991 0 -0.004333 0.998279 0.0553433 -0.0194029 0.999282 -0.0370011 0.00809054 0.999999 -0.000433997 0.0013387 1 -0.000137737 5.76503e-05 1 -0.000136798 0 0.981052 -0.086827 -0.1732 0.991052 0.0959523 -0.0927819 0.961013 0.243053 0.13183 0.999999 0 -0.00144502 0.999999 0.000588714 -0.00143572 1 0 0 0.999061 0.0280549 -0.0330225 0.999396 0 -0.0347567 0.999451 -0.00421326 -0.0328685 0.999621 -0.0163397 -0.0221456 0.999716 -0.0238426 -0.000684719 0.999716 -0.023838 0 0.999729 -0.0191277 0.0132584 0.999378 0.0133823 0.0326345 0.999229 0 0.0392713 0.998974 -0.0052131 0.0449775 0.999716 0.0157189 -0.017905 0.999852 0.0171977 0 0.999851 0.0134753 -0.0107588 0.99997 0.00711245 0.00297694 1 0 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.706718 -0.707495 0 -0.706718 -0.707495 0 0 -1 0 0 -1 0 -0.499791 -0.866146 0 -0.499791 -0.866146 0 0.499748 -0.866171 0 0.499748 -0.866171 0 0 -1 0 0 -1 0 0.706721 -0.707492 0 0.706721 -0.707492 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0.000108805 -0.825675 -0.564146 0 -0.187159 -0.98233 0 -0.982737 -0.185006 -0.000567417 -0.406318 -0.913732 -0.000274149 -0.900201 -0.435474 0.000201544 -0.70182 -0.712354 -0.000288583 -0.817219 -0.576327 -1.83131e-06 -0.52924 -0.848472 -0.000186154 -0.345269 -0.938504 0.000195847 -0.447989 -0.894039 0.000290275 -0.896979 -0.442074 0.000328289 -0.497492 -0.867469 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.707687 0.706526 0 -0.707687 0.706526 0 -1 0 0 -1 0 0 -0.866189 0.499717 0 -0.866189 0.499717 0 -0.866189 -0.499717 0 -0.866189 -0.499717 0 -1 0 0 -1 0 0 -0.706733 -0.707481 0 -0.706733 -0.707481 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.707687 0.706526 0 -0.707687 0.706526 0 -1 0 0 -1 0 0 -0.866189 0.499717 0 -0.866189 0.499717 0 -0.866189 -0.499717 0 -0.866189 -0.499717 0 -1 0 0 -1 0 0 -0.706721 -0.707492 0 -0.706721 -0.707492 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 -0.00023336 -0.747598 0.664151 -4.44421e-05 -0.986115 0.166065 0.00099434 -0.185718 0.982603 0 -0.84013 0.542385 0.000104959 -0.817436 0.576019 0 -0.991555 0.129684 0.000653826 -0.467621 0.883929 0 -0.187325 0.982298 0.000236142 -0.817201 0.576353 8.44488e-05 -0.963781 0.266694 0.000183699 -0.379875 0.925038 0.000405313 -0.910589 0.413314 -0.000261728 -0.385003 0.922915 0 -0.494234 0.869329 -0.000145973 -0.799406 0.600791 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.707687 0.706526 0 0.707687 0.706526 0 0 1 0 0 1 0 0.499748 0.866171 0 0.499748 0.866171 0 -0.499791 0.866146 0 -0.499791 0.866146 0 0 1 0 0 1 0 -0.707684 0.706529 0 -0.707684 0.706529 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.707684 0.706529 0 0.707684 0.706529 0 0 1 0 0 1 0 0.499791 0.866146 0 0.499791 0.866146 0 -0.499791 0.866146 0 -0.499791 0.866146 0 0 1 0 0 1 0 -0.707684 0.706529 0 -0.707684 0.706529 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 -0.000982451 0.877586 0.479419 0.000261596 0.842329 0.538964 -0.000176669 0.415159 0.909749 0 0.161542 0.986866 0 0.982729 0.185053 -0.000211698 0.736805 0.676105 -0.000416201 0.366263 0.930511 -0.000111941 0.728123 0.685446 7.39849e-05 0.314625 0.949216 -0.000125754 0.847122 0.531399 -3.30369e-06 0.655207 0.75545 -9.517e-05 0.958306 0.285744 0.000197853 0.909467 0.415775 -1.44092e-05 0.932478 0.361228 0.000459016 0.449744 0.893158 -0.000357019 0.603129 0.797643 0.000743706 0.451705 0.892167 0.00010439 0.315472 0.948935 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.706718 -0.707495 0 0.706718 -0.707495 0 1 0 0 1 0 0 0.866167 -0.499754 0 0.866167 -0.499754 0 0.866167 0.499754 0 0.866167 0.499754 0 1 0 0 1 0 0 0.707684 0.706529 0 0.707684 0.706529 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.70673 -0.707484 0 0.70673 -0.707484 0 1 0 0 1 0 0 0.866167 -0.499754 0 0.866167 -0.499754 0 0.866167 0.499754 0 0.866167 0.499754 0 1 0 0 1 0 0 0.707684 0.706529 0 0.707684 0.706529 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 6.46601e-05 0.463103 -0.886304 -0.000189151 0.737567 -0.675274 -0.000421846 0.765184 -0.643811 0 0.982745 -0.184965 0 0.161542 -0.986866 -0.000103473 0.839276 -0.543706 -0.00021436 0.411452 -0.911431 -0.000426706 0.978693 -0.20533 0.000496665 0.481015 -0.876712 -0.000179529 0.403713 -0.914886 0.000130981 0.365412 -0.930846 -0.000115924 0.466804 -0.884361 -5.33258e-05 0.82966 -0.558269 0.000459058 0.811981 -0.583684 0.000164839 0.945022 -0.327007 -0.000265593 0.899607 -0.436701 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.706718 -0.707495 0 -0.706718 -0.707495 0 0 -1 0 0 -1 0 -0.499791 -0.866146 0 -0.499791 -0.866146 0 0.499791 -0.866146 0 0.499791 -0.866146 0 0 -1 0 0 -1 0 0.706718 -0.707495 0 0.706718 -0.707495 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.997985 0 0.0634557 -0.999112 -0.039652 -0.0142713 -0.995495 0.0473886 0.0821252 -0.997307 -0.0366488 0.0635202 -0.997985 0 0.0634557 -1 0 0 -0.999705 0.0172173 0.0171443 -0.999378 0.0334874 0.0110472 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.995358 -0.0680533 -0.0680554 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999444 0.0333525 0 -0.999515 0.0269773 -0.0155636 -0.999412 0.0182675 -0.0290086 -0.999996 0.00241201 0.00139152 -0.999996 0.00279322 0 -0.999358 0.0287702 0.0213623 -0.998651 0.0127037 -0.0503525 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999768 0.00527313 0.0209021 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999976 0.00691183 0 -0.999952 0.00920848 -0.00331972 -0.999974 0.00624193 -0.00360106 -0.999981 0.00594579 -0.00189725 -0.999973 0.00641123 0.00369873 -0.999872 0.0160291 0 -0.999868 0.0085873 0.013822 -1 0 0 -1 0 0 -0.999889 0.010505 -0.0105348 -0.999839 0 -0.0179576 -0.999813 0.0025195 -0.0191736 -0.999773 -0.0106378 -0.0184376 -0.99966 0.00965046 -0.0242431 -0.999668 0.0128844 -0.0223288 -0.999639 0 -0.0268539 -0.999702 -0.0243739 -0.00121679 -0.999856 -0.0164811 -0.00414941 -0.999733 0.00369876 0.0228127 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.997916 -0.0456298 0.0456311 -0.987639 -0.096128 0.123805 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.99978 0.0203621 -0.00512651 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.994322 0 -0.106416 -0.993763 -0.0557328 -0.0965858 -0.983246 0.091103 -0.157883 -0.999743 0 -0.0226804 -0.995269 -0.0726116 -0.0645529 -1 0 0 -0.999743 -0.0159938 -0.0160391 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999951 -0.00697222 -0.00697233 -1 0 0 -1 0 0 -1 0 0 -0.999556 -0.0298103 0 -0.999228 -0.0133429 0.0369565 -0.999957 0.00803926 -0.00463843 -0.999981 0.00531925 0.00306906 -0.999984 0.00565545 0 -0.999147 -0.0322555 -0.0257991 -0.999503 -0.00771321 0.0305743 -0.999361 0.0356265 -0.00306394 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.998234 -0.0145343 -0.0576081 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999607 0.0280375 0 -0.997529 -0.0568533 0.041265 -0.999168 0.0353188 -0.020378 -0.999427 0.029317 0.0169151 -0.999607 0.0280375 0 -1 0 0 -1 0 0 -0.999747 -0.0159392 0.0158716 -0.999007 0 0.0445561 -0.998524 0.0271456 0.0470437 -0.99794 -0.0320605 0.0555614 -0.999007 0 0.0445561 -0.999766 0.0216414 0.00013831 -0.999932 0.0113319 0.00285299 -0.999967 0.0075088 -0.00309851 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.997658 0.0483619 -0.0483627 -1 0 0 -1 0 0 -1 0 0 -0.9993 -0.0234985 -0.0291165 -0.999135 0.0374468 -0.0180998 -0.999998 0.000688882 -0.0016232 -0.999999 0 -0.00142677 -0.99999 -0.00405444 -0.00202111 -0.999988 0.00208309 0.00454519 -0.999999 0.00142463 0 -0.999968 0.00348192 -0.00722487 -0.999819 -0.00721412 0.0175933 -0.999761 0 0.0218557 -0.999832 -0.0183097 -0.000498705 -0.999265 0.0382006 0.00329154 -0.999071 -0.0125179 -0.0412357 -1 -0.000876792 0 -0.999995 -0.000305402 -0.00311373 -1 0.000824148 -0.000344951 -0.999859 -0.0164635 -0.00319017 -1 0.000589092 -0.000148314 -1 0.000563477 0.000232519 -1 0.000644656 0 -0.999791 -0.0135786 0.015255 -0.998947 -0.0183599 0.0420381 -0.999021 0.0320945 -0.0304547 -0.999879 -0.0128957 -0.00865902 -0.999944 0 -0.0105661 -0.999657 0.0259314 -0.00358224 -1 0 0 -0.996816 -0.079303 -0.00831643 -0.996133 0.0866403 0.0145833 -0.999798 0.00337058 0.0198331 -1 0.000247266 0.000103494 -1 0.000254999 0 -0.986272 0.0868515 -0.140441 -0.995001 0.0067409 -0.0996348 -0.98751 -0.141793 0.0686911 -0.999263 0 0.0383804 -0.997552 -0.0657306 0.0238765 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 0 -0.254296 0.967126 0 -0.5494 0.83556 -0.000105326 -0.39054 0.920586 8.73279e-05 -0.39054 0.920586 0 0.254296 0.967126 -5.04832e-05 0.39054 0.920586 0 0.5494 0.83556 8.96292e-05 0.39054 0.920586 -0.000119865 0.36116 0.932504 3.98169e-05 -0.308025 -0.951378 0 0.706788 0.707426 0 0.706788 0.707426 0.9999 -0.0130957 -0.00540396 9.07186e-05 0.924389 0.38145 0 0.972633 0.232346 0 0.843732 0.536766 -0.000108263 0.924389 0.38145 0 1 0 0 1 0 -0.000341624 0.96615 0.257981 -1.77196e-05 0.184995 0.98274 0 0.983066 0.183251 1.80025e-05 0.185715 0.982604 0 0.171824 0.985128 0 0.984996 0.172578 -0.000297257 0.647595 0.761985 0.000306025 0.86052 0.509416 0 0.845688 0.533678 -2.28197e-05 0.981202 0.192982 9.24089e-05 0.855268 0.518186 0.000420835 0.680007 0.733205 0.000163714 0.962418 0.271572 0.000214368 0.83466 0.550765 -0.000178933 0.843457 0.537197 0.000163779 0.550787 0.834646 -7.71575e-05 0.512989 0.858395 -0.000136252 0.522524 0.852624 0 0 1 0 0 1 0 0.254554 0.967058 8.33481e-05 0.390657 0.920536 0 0.54936 0.835586 -0.00011153 0.390657 0.920536 0 0.70678 0.707433 0 0.70678 0.707433 0 0.837806 0.545968 -0.000100088 0.924376 0.381483 0 0.970675 0.240396 9.70924e-05 0.924376 0.381483 1 0 0 0 1 0 0 1 0 0 0.969623 -0.244604 -0.000622306 -0.922443 0.386132 8.81753e-05 0.922444 -0.386132 0 0.80482 -0.59352 0 -0.80482 0.593519 -0.000141297 0.922444 -0.386132 0 0.969623 -0.244604 0.000684596 0.922443 -0.386132 0 0.80482 -0.593519 0 0.707433 -0.70678 0 0.707433 -0.70678 2.29037e-05 -0.288805 0.957388 -9.31229e-05 0.335253 -0.942128 0 0.244637 -0.969615 0.000108751 0.379392 -0.925236 -3.00878e-05 0.379392 -0.925236 0 0.511459 -0.859308 0 0 -1 0 0 -1 -4.15349e-05 0.194208 -0.98096 0.000132135 0.823208 -0.56774 -0.000297535 0.549952 -0.835196 0.00143721 0.897179 -0.441665 0 0.987652 -0.156666 0.000291515 0.473729 -0.880671 0 0.154044 -0.988064 -0.000360188 0.950389 -0.311063 0.000270535 0.552008 -0.833839 -0.000737407 0.381796 -0.924247 5.56683e-05 0.551924 -0.833895 -0.000396905 0.82895 -0.559323 -0.000133663 0.545172 -0.838324 -0.000251387 0.84556 -0.53388 3.23851e-05 0.981601 -0.190942 4.44838e-05 0.198736 -0.980053 -0.000391558 0.496457 -0.868061 0.000334315 0.301447 -0.953483 0.000529609 0.817137 -0.576443 0.000643895 0.812807 -0.582533 0.000320132 0.8471 -0.531433 -5.03245e-05 0.979218 -0.20281 0 1 0 0 1 0 0 0.969129 -0.246553 -0.000102487 0.922458 -0.386098 0.000112229 0.922458 -0.386098 0 0.806536 -0.591186 0 0.707425 -0.706788 0 0.707425 -0.706788 0 0.534461 -0.845193 -0.000110385 0.379539 -0.925176 0 0.191319 -0.981528 0.00010966 0.379539 -0.925176 0 0 -1 0 0 -1 0 -0.132772 -0.991147 0 -0.232702 -0.972548 0 -0.522442 -0.852675 0.00032357 -0.379539 -0.925176 6.39349e-05 -0.265923 -0.963994 -4.75841e-05 -0.57563 -0.81771 0 -0.232702 -0.972548 -0.00011575 -0.379539 -0.925176 0 -0.5494 -0.83556 0 -0.707425 -0.706788 0 -0.707425 -0.706788 0 -0.81673 -0.577021 0 -0.969942 -0.243335 0.000151929 -0.922458 -0.386098 -8.05381e-05 -0.922458 -0.386098 0 -1 0 0 -1 0 0.000188176 -0.477062 -0.87887 0.000295111 -0.841354 -0.540484 -0.000387236 -0.458793 -0.888543 4.39137e-05 -0.20339 -0.979098 0 -0.154051 -0.988063 0 -0.987772 -0.155904 -0.000237596 -0.352862 -0.935675 -8.44424e-05 -0.968176 -0.250269 0.00036564 -0.846533 -0.532336 -2.41568e-05 -0.523431 -0.852068 0.000213721 -0.282269 -0.959335 -0.000208799 -0.484955 -0.874539 -0.00041868 -0.940553 -0.339648 0.000189372 -0.948792 -0.315901 5.7288e-05 -0.868348 -0.495956 -0.000511584 -0.845783 -0.533527 -7.25321e-05 -0.526188 -0.850368 0.000628841 -0.346836 -0.937925 0 0 -1 0 0 -1 0 -0.232717 -0.972544 -9.86081e-05 -0.379406 -0.92523 0 -0.549119 -0.835744 0.000104794 -0.379406 -0.92523 0 -0.707433 -0.70678 0 -0.707433 -0.70678 0 -0.978227 -0.207538 -0.000111582 -0.922458 -0.386098 0 -0.856505 -0.516138 8.52466e-05 -0.922458 -0.386098 0 -1 0 0 -1 0 0 -0.924389 0.38145 0 -0.924389 0.38145 0 -0.70678 0.707433 0 -0.70678 0.707433 -0.000110128 -0.390671 0.92053 8.41362e-05 -0.390671 0.92053 0 -0.254571 0.967054 0 -0.54936 0.835586 0 0 1 0 0 1 0.000340849 -0.515658 0.856795 -0.000553473 -0.799624 0.600501 0.000251543 -0.968131 0.250443 0 -0.987962 0.154694 0 -0.154051 0.988063 0 -0.526108 0.850418 2.48323e-07 -0.526147 0.850394 1.6798e-07 -0.817975 0.575254 -3.9532e-05 -0.981649 0.190697 0.000308421 -0.863559 0.504247 -3.65617e-05 -0.19734 0.980335 0.000289023 -0.480461 0.877016 -0.00029341 -0.859961 0.510359 3.54888e-05 -0.981399 0.191982 -2.05905e-05 -0.821056 0.570848 2.86778e-05 -0.456457 0.889745 0.000366669 -0.654254 0.756275 -0.00107725 -0.359949 0.932971 0 -0.182794 0.983151 5.4691e-05 -0.197128 0.980378 -0.000376034 -0.53106 0.847334 0.000925744 -0.81463 0.57998 -0.000642552 -0.948464 0.316884 0 -1 0 0 -1 0 0.00202897 -0.36438 -0.931248 0.000257255 0.999999 0.00150984 0.000465665 0.684553 -0.728963 0.000113548 -0.800111 0.599851 -0.00212475 0.0764009 -0.997075 -0.000808876 -0.987194 0.159523 0.000333996 -0.980539 -0.196324 0.000239613 -0.220472 0.975393 0.00145882 0.138751 -0.990326 0.000378905 -0.507387 -0.861718 0.000191098 0.434347 0.900746 -3.32451e-05 0.99628 -0.0861773 -0.000203719 0.745918 -0.666038 -0.000539827 -0.860017 -0.510264 -0.000633042 -0.247647 -0.96885 -0.000338798 0.0616283 0.998099 -0.000341612 -0.531733 0.846912 0.000165623 -0.804882 0.593436 0.000509302 0.80148 -0.598022 7.31243e-05 0.799043 0.601274 -0.000160327 0.642411 0.76636 -0.000662229 0.362525 -0.931974 0.000729424 -0.307841 -0.951438 -0.000397131 0.946975 0.321308 0.00081218 -0.833984 -0.551788 -0.000435118 0.380692 -0.924702 0.00144739 0.405347 -0.914162 -0.000170644 -0.953916 0.300075 0.000202014 -0.997608 0.0691264 9.29836e-05 0.634733 0.772732 0.000648068 -0.309911 -0.950765 -0.000428239 0.134722 -0.990883 0.000139714 0.822672 -0.568516 -0.000118577 0.996459 -0.0840746 -0.000669084 0.0590612 0.998254 0.000406418 0.95058 -0.310481 0.00121701 0.297099 0.954846 -0.000311867 -0.967505 -0.252851 0.000311383 0.929052 0.369949 -0.000422705 0.752663 0.658406 -0.000161316 -0.234577 0.972098 0.000757376 -0.632633 0.774451 -8.27472e-05 0.985788 0.167996 0 -0.770638 -0.637273 -0.00015927 -0.732687 -0.680565 0.00035616 -0.367275 -0.930112 0 -0.979515 -0.201372 -0.000242809 0.647651 -0.761937 0.000498993 -0.963161 0.268926 0.000552764 0.294362 0.955694 0.000175351 -0.240417 0.97067 0.000512526 0.987173 0.159651 0.000822254 -0.62996 0.776627 0.000401351 0.123834 -0.992303 -0.00165437 0.744304 0.667839 -0.000862041 -0.384088 0.923296 -0.00030052 -0.0180839 -0.999836 -0.000278822 0.983139 -0.182857 0.000145457 -0.708304 -0.705907 -0.00218278 0.709027 0.705178 4.73181e-05 0.692533 -0.721387 -0.000713687 -0.993592 0.113026 0.00100343 -0.9776 -0.210471 0.0119235 0.612594 -0.790307 0.00350363 -0.373366 0.927677 0.000345982 -0.968644 0.248453 0.00102508 0.553491 0.832855 0.000482061 0.99594 0.0900221 -0.000586912 0.934083 0.357056 4.9653e-05 0.640279 0.768143 -0.000224108 0.994865 -0.101211 2.00844e-05 -0.986278 0.165096 9.50093e-05 -0.530661 -0.847584 0.000173776 -0.178517 0.983937 -0.000886512 0.138667 0.990339 -0.000191428 -0.96154 -0.274666 0.000109541 -0.882708 -0.469922 -0.000105404 -0.382929 -0.923778 2.84092e-05 -0.0912048 -0.995832 8.80521e-05 0.751191 -0.660084 -0.000273544 0.945904 -0.324447 6.88246e-05 -0.59688 0.80233 -0.000219614 -0.84545 0.534055 -0.000209408 -0.740728 -0.671805 4.67099e-06 0.393496 -0.919326 -0.000208863 0.588774 -0.808298 -0.000401799 0.0926569 -0.995698 -0.000182592 0.627574 0.778557 0.000343389 0.536435 0.843942 0.00011869 0.0542626 0.998527 0.000342217 0.944247 0.329237 -0.000366858 -0.461027 0.887386 0.000376407 0.0922141 0.995739 -0.000245139 0.993833 0.110886 7.40607e-05 0.99552 -0.0945559 -0.000393594 -0.459235 0.888315 0.000151824 0.625064 -0.780574 -0.000144275 0.917917 -0.396771 -9.96732e-05 0.838013 0.54565 8.92926e-05 -0.987099 0.160113 -0.000235997 -0.371968 -0.928246 0.000207733 0.114294 -0.993447 -0.000143285 0.161877 -0.986811 0.000167042 -0.421317 0.906913 8.04407e-05 -0.838333 0.545158 0.000355351 -0.386265 0.922388 -0.000186693 -0.748578 0.663047 0.00021998 -0.748776 -0.662823 -0.000591476 -0.429215 -0.903202 -0.00045653 0.0811283 0.996704 0.000161544 0.533533 0.845779 -0.000150729 0.0513933 0.998679 -5.44536e-05 -0.995124 0.0986287 0.000152113 -0.951617 -0.307286 -0.000311315 -0.840912 -0.541171 -0.00359485 0.758763 -0.651357 0.000459444 0.999053 0.0435038 0.00020392 0.845295 0.5343 -5.33817e-05 0.590236 0.807231 0.000906558 -0.491554 -0.870847 0.00159223 0.799 -0.601329 -0.00110204 0.956367 -0.292166 -0.000654672 0.00283554 0.999996 -9.41917e-05 0.915477 0.40237 0.00267248 -0.171263 0.985222 -0.00067145 -0.814227 -0.580547 -0.000959265 0.06825 -0.997668 -0.000207476 0.16076 -0.986994 -0.000848876 0.520279 0.853996 0.000296003 0.95163 0.307248 0.00390932 0.915943 -0.401291 0.00082535 -0.493405 0.869799 0.000296535 0.97519 -0.221369 -0.000790333 0.450485 0.892783 -0.000484161 0.742113 0.670274 0.000532901 0.336952 0.941522 -0.00122912 -0.315256 0.949006 -0.000232416 -0.12049 -0.992714 -0.000516541 -0.692046 0.721853 7.7071e-05 -0.927387 0.374104 -0.00158404 -0.696904 -0.717162 -2.15413e-05 0.986342 0.164707 0.0001438 -0.980994 -0.194041 0 0.956153 -0.292868 0.000106284 0.464282 -0.885687 -8.01856e-05 0.778641 -0.62747 0 0.760394 -0.649463 -0.000333126 -0.994321 0.106423 0.000451495 0.335261 0.942125 -0.000430893 -0.705788 0.708423 0.000237298 -0.587219 -0.809428 -0.000166188 0.775784 0.630998 0.000465866 -0.264217 0.964463 0.000125504 0.397019 0.917811 -0.000196497 -0.077713 0.996976 0.000183338 -0.570017 -0.821633 -1.1499e-05 -0.143057 -0.989715 -0.000197149 0.334154 -0.942518 0.000163637 -0.0781012 -0.996945 -0.000290015 -0.872563 -0.488502 0.000541466 -0.69958 0.714554 -0.000234976 0.989614 0.143747 7.29091e-05 0.953591 -0.301104 8.26526e-05 -0.870398 -0.492348 -8.05984e-05 -0.570136 -0.82155 0.000376926 -0.0791552 0.996862 -0.000390477 0.384936 0.922943 -3.94128e-05 -0.995983 0.0895448 0.000124759 -0.867741 -0.497016 0.000107115 -0.992003 0.126211 0.000186895 0.754045 -0.656823 -0.000466305 -0.324424 0.945912 0.000181023 -0.747815 0.663908 1.87727e-05 0.323684 -0.946165 -0.000600956 0.528874 -0.8487 0.000299776 0.761482 0.648186 -0.000888688 -0.0719968 -0.997404 -8.49895e-05 0.923608 -0.383338 -0.000718387 0.437795 0.899075 0.00142188 0.456057 0.889949 0.00164748 0.592624 -0.805478 0.000484844 -0.631454 -0.775414 -0.000149491 0.0216636 -0.999765 -0.000586887 0.0668366 -0.997764 0.000373099 0.999997 -0.00243229 -0.000111123 -0.708651 0.705559 -0.000145987 0.885625 0.464402 -0.00166081 0.938488 -0.345309 -0.00155358 0.934842 -0.355061 -0.000388677 -0.81593 -0.57815 -0.00104187 0.816231 0.577724 0.000809859 -0.298793 0.954318 -0.00104989 0.054209 0.998529 0.00349478 0.0754293 -0.997145 -0.000143036 0.733508 0.679681 0.00228434 0.566969 0.823736 0.00300039 -0.704919 0.709281 0.00142677 -0.628263 0.778 -0.000312368 -0.212551 -0.97715 -0.00104688 -0.920868 0.389874 0.00106919 -0.876599 -0.48122 0.000940533 0.975369 -0.220578 -0.000523961 0.290953 0.956737 -0.00104476 -0.284287 0.958739 -0.000598804 -0.715081 -0.699042 0.000317745 0.988212 -0.153088 -0.000448153 0.953256 0.302164 -0.00105428 -0.999556 -0.0297863 0.000159331 0.383074 -0.923718 -0.00062804 0.783277 -0.621673 0.000653015 0.758138 0.652093 0.000179134 -0.636405 0.771355 0.0006615 -0.231364 -0.972867 -0.000634685 0.215238 -0.976561 0.00255298 0.0436119 -0.999045 4.90961e-05 0.576394 0.817172 0.000266659 0.252695 0.967546 0.000116241 -0.995637 -0.0933091 0 0.742018 -0.67038 0.00023599 -0.940864 0.338784 -0.000237819 -0.996963 0.0778736 0.000437548 -0.749386 -0.662133 -0.000209718 -0.47879 -0.87793 -7.86166e-05 -0.83592 0.548852 0 0.973877 -0.227078 4.14645e-05 0.20935 0.977841 -7.26273e-05 -0.21288 0.977078 -0.000308534 -0.882845 -0.469665 -0.00080017 0.91957 0.392926 0 -0.19268 0.981262 0 -0.576405 0.817164 -0.000253728 0.576394 0.817172 -0.000489905 0.516034 0.856568 0.000134715 0.207362 0.978264 -5.63156e-05 0.399475 -0.916744 -0.000479634 0.691078 -0.72278 0.00048396 -0.516503 -0.856285 -0.000802742 0.0120699 -0.999927 0.000267906 0.931833 0.362887 -0.000727489 0.0234633 -0.999725 -0.000698353 -0.642192 0.766544 -0.00127887 -0.756996 0.653418 0.000696852 -0.9934 0.114696 -0.000393548 -0.140828 0.990034 -0.000727419 -0.042978 0.999076 -0.000151221 -0.997541 -0.0700837 0.000352037 -0.885185 -0.465239 0.000465194 -0.518215 -0.85525 0.000897577 0.626972 0.779041 -6.30668e-05 0.0217917 -0.999763 0.000445192 0.969871 -0.24362 0.000898593 -0.63411 0.773242 -0.000153332 -0.735342 -0.677697 -0.000785522 -0.0389529 0.999241 -2.44634e-05 0.0165378 -0.999863 2.03562e-05 0.664302 -0.747464 -0.000539564 0.746601 -0.665272 -2.82065e-05 0.950769 0.309901 0.000260302 -0.72518 0.688559 0.000153077 -0.981824 0.189795 0.000272156 0.0494582 0.998776 -0.00304534 0.122128 -0.99251 0.00715866 0.884255 -0.466949 -0.000519414 -1 8.93734e-05 -0.00161235 0.904922 0.425575 0.707041 -0.707172 0 0.707041 -0.707172 0 0.196235 -0.980557 0.000235787 0.382823 -0.923822 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0129715 0 -0.999916 -0.0135586 0.00782217 -0.999878 -0.0163131 -0.00941127 -0.999823 0.0377633 0 -0.999287 0.00886855 0.0614206 -0.998073 0 0 -1 0.0209031 -0.0209181 -0.999563 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0302108 -0.999544 -0.014164 -0.0220542 -0.999656 -0.0123818 -0.0214205 -0.999694 0.0100924 -0.017492 -0.999796 0 -0.0170166 -0.999855 -0.0137759 0.00536314 -0.999891 -0.00026106 -6.57472e-05 -1 -0.00195942 -0.00229301 -0.999995 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.00688948 -0.00173612 -0.999975 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0157566 -0.999876 0.00911347 -0.0012717 -0.999958 -0.00890656 -0.0154067 -0.999842 0.0123292 -0.0213687 -0.999696 0 -0.0157566 -0.999876 0 0 -1 0 0 -1 -0.0047007 -0.0047007 -0.999978 -0.00926744 0 -0.999957 -0.00762419 0.0043985 -0.999961 -0.00252217 0.0128204 -0.999915 0.00240618 0.00138816 -0.999996 0.00266832 0 -0.999996 -0.00618556 -0.00666687 -0.999959 0.000728138 0.0063613 -0.99998 -0.000432094 0.00171573 -0.999998 0.0030787 -0.000226878 -0.999995 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.137096 0.137094 -0.981025 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.000585535 0.00232501 -0.999997 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.00117029 0 -0.999999 -0.00758216 0.00437426 -0.999962 -0.00409851 -0.00935647 -0.999948 -0.00702231 -0.00405081 -0.999967 -0.0064725 0 -0.999979 0 0 -1 0.000230879 -0.000230879 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.000412913 -1 -0.000185558 -0.000321639 -1 -0.00334163 0.00196343 -0.999992 -0.00164635 0.00284816 -0.999995 0 0.00330669 -0.999995 0.00104457 0.00206761 -0.999997 0.00460887 0.00116142 -0.999989 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.00968662 0.00243954 -0.99995 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.00795557 -0.999968 -0.00505302 -2.3579e-05 -0.999987 0.00454479 0.00787775 -0.999959 -0.00609514 0.0105457 -0.999926 0 0.0185522 -0.999828 -0.0106705 0.0124898 -0.999865 0 0 -1 0 0 -1 0.0137314 0.0137412 -0.999811 0.0276834 0 -0.999617 0.0229763 -0.0132538 -0.999648 0.0334298 0.00446714 -0.999431 0.0276853 0.015972 -0.999489 0.0316943 0 -0.999498 -0.00598894 -0.029968 -0.999533 0.00063353 -0.00251596 -0.999997 -0.000393138 -0.00196445 -0.999998 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.00573257 -0.0106423 -0.999927 0.000860926 0.00341902 -0.999994 -0.0142415 -0.00752939 -0.99987 0.00222541 -0.0111201 -0.999936 0.0373838 -0.00147713 -0.9993 0.00918942 -0.0540848 -0.998494 0.00704157 0.00924937 -0.999932 -0.00184924 0 -0.999998 -0.00158533 0.000657041 -0.999999 0.0028673 0.00563219 -0.99998 -0.00713029 -0.0023288 -0.999972 0.00195556 -0.00471873 -0.999987 0 -0.00461945 -0.999989 -0.0895645 -0.0457725 -0.994929 0.00236208 0.102811 -0.994698 0.00314116 0 -0.999995 0.00346953 -0.000926187 -0.999994 0.00340617 -0.00141163 -0.999993 0.00336856 -0.00107367 -0.999994 0.00387369 0.00502255 -0.99998 -0.00848642 -0.00169791 -0.999963 0.0179954 -0.0311729 -0.999352 0.025433 0.0114295 -0.999611 0.012048 0.0307159 -0.999456 -0.0347318 0.0373702 -0.998698 0.005404 0.00108122 -0.999985 0.0721637 -0.0560204 -0.995818 0.076423 -0.0252306 -0.996756 -0.0210363 0.098456 -0.994919 -0.161586 0.104837 -0.981274 -0.00543584 -0.00442885 -0.999975 0 0 -1 0 0 -1 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.70711 -0.707104 0 -0.70711 -0.707104 0 -1 0 0 -1 0 0 -0.866189 -0.499717 0 -0.866189 -0.499717 0 -0.866214 0.499674 0 -0.866214 0.499674 0 -1 0 0 -1 0 0 -0.707107 0.707107 0 -0.707107 0.707107 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.478417 -0.878133 0 -0.524305 -0.851531 -0.000134078 -0.949203 -0.314663 0 -0.530647 -0.847593 -0.000200067 -0.984281 -0.176608 0.000689022 -0.954074 -0.299572 -4.10332e-05 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.707009 -0.707205 0 0.707009 -0.707205 0 0 -1 0 0 -1 0 0.500405 -0.865791 0 0.500405 -0.865791 0 -0.499717 -0.866189 0 -0.499717 -0.866189 0 0 -1 0 0 -1 0 -0.707101 -0.707113 0 -0.707101 -0.707113 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.707003 -0.70721 0 0.707003 -0.70721 0 0 -1 0 0 -1 0 0.500448 -0.865767 0 0.500448 -0.865767 0 -0.499717 -0.866189 0 -0.499717 -0.866189 0 0 -1 0 0 -1 0 -0.707101 -0.707113 0 -0.707101 -0.707113 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.889783 -0.456384 -0.000114288 0.368782 -0.929516 0.000170432 0.911221 -0.411918 0 0.707113 -0.707092 -0.0034167 0.432229 -0.901764 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707003 0.70721 0 0.707003 0.70721 0 1 0 0 1 0 0 0.866214 0.499674 0 0.866214 0.499674 0 0.866189 -0.499717 0 0.866189 -0.499717 0 1 0 0 1 0 0 0.707006 -0.707207 0 0.707006 -0.707207 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707006 0.707207 0 0.707006 0.707207 0 1 0 0 1 0 0 0.866189 0.499717 0 0.866189 0.499717 0 0.866189 -0.499717 0 0.866189 -0.499717 0 1 0 0 1 0 0 0.707006 -0.707207 0 0.707006 -0.707207 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.336287 0.941756 -0.00254325 0.941225 0.337781 0 0.903375 0.428852 0.00061294 0.625097 0.780547 0.00035022 0.399384 0.916784 -0.000216172 0.941637 0.336631 3.04799e-06 2.23322e-05 1 3.19032e-07 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707104 0.70711 0 -0.707104 0.70711 0 0 1 0 0 1 0 -0.499754 0.866167 0 -0.499754 0.866167 0 0.500485 0.865745 0 0.500485 0.865745 0 0 1 0 0 1 0 0.707006 0.707207 0 0.707006 0.707207 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707104 0.70711 0 -0.707104 0.70711 0 0 1 0 0 1 0 -0.499754 0.866167 0 -0.499754 0.866167 0 0.500442 0.86577 0 0.500442 0.86577 0 0 1 0 0 1 0 0.707012 0.707202 0 0.707012 0.707202 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.184714 0.982792 0 -0.978024 0.208495 0 -0.287664 0.957732 0.000229996 -0.690271 0.72355 -0.000763069 -0.701104 0.713059 0.000269606 -0.919176 0.393848 0.000427004 -0.89903 0.437887 -0.000632871 -0.444179 0.895938 -0.000603527 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.70711 -0.707104 0 -0.70711 -0.707104 0 -1 0 0 -1 0 0 -0.866189 -0.499717 0 -0.866189 -0.499717 0 -0.866189 0.499717 0 -0.866189 0.499717 0 -1 0 0 -1 0 0 -0.70711 0.707104 0 -0.70711 0.707104 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.00759102 0 0.999971 0.0058953 0.00340108 0.999977 0.00481213 -0.00277587 0.999985 0.00732477 0.00142749 0.999972 0.00580984 0 0.999983 0 0 1 0.00286613 0.00286819 0.999992 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.70708 -0.70708 0.00866816 0 0 1 0 0 1 0 0 1 0 0 1 0.00348451 0.00265591 0.99999 0 0.00982803 0.999952 -0.00711033 0.0123021 0.999899 0.00597679 0.0103599 0.999928 0 0.00982803 0.999952 -0.00496479 0.000894776 0.999987 -0.00444754 0.0011201 0.99999 -0.0268455 0.0302487 0.999182 -0.0127279 -0.0025465 0.999916 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.00385176 0.000970629 0.999992 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.00184169 0.999998 -3.24556e-05 0.00187029 0.999998 -0.00409757 0.00708872 0.999967 0.00378117 0.00345784 0.999987 0.00289453 0.00501726 0.999983 0 0.00520042 0.999986 0 0 1 0 0 1 -0.00584793 0.00584793 0.999966 -0.0111778 0 0.999938 -0.00895192 -0.0051639 0.999947 -0.0202014 0.0116545 0.999728 -0.00310262 -0.0104268 0.999941 0.00105019 0 0.999999 -0.00317297 0.00454888 0.999985 -0.000943899 -0.00374798 0.999993 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0206109 -0.0206103 0.999575 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.000792443 0.00314658 0.999995 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.00295027 0 0.999996 -0.00394679 -0.00598101 0.999974 0.00253443 0.00146215 0.999996 -0.00117875 0.000680038 0.999999 0.00112682 0.00414937 0.999991 -0.00146787 0 0.999999 0 0 1 -0.000761348 -0.000761348 0.999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 2.08962e-05 -4.22808e-05 1 0.366245 0.303687 0.879567 -2.34134e-05 0 1 -1.27619e-05 -2.71189e-05 1 0 0 1 0.00102572 -0.00143784 0.999998 0 0.000136988 1 -7.80419e-05 0.000135261 1 0.00480515 0.00135625 0.999988 0.00206456 0.0035713 0.999992 0 0.0048003 0.999988 -0.00604781 0.00152402 0.999981 0.00241085 -0.00810548 0.999964 0.00463617 0.000927592 0.999989 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.00407105 -0.00102528 0.999991 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.00337744 0.999994 0.00143392 -0.00248525 0.999996 -0.0219714 -0.0380107 0.999036 -0.0360935 -0.0344174 0.998756 0 -0.0385897 0.999255 0 0 1 0 0 1 0.00663467 -0.00663942 0.999956 0.0127999 0 0.999918 0.0472679 -0.0747364 0.996082 0.167964 0.0969008 0.981019 0.0833073 -0.0480612 0.995364 0.10037 0 0.99495 -0.0193958 0.115362 0.993134 0.00251698 0.00999577 0.999947 -0.00304115 0.00733884 0.999968 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.254225 0.254229 0.933133 0 0 1 0 0 1 0 0 1 0.025388 0.000216532 0.999678 -0.00278327 0.000367031 0.999996 0.00115164 0.0027313 0.999996 -0.0424429 -0.142589 0.988872 0.110824 -0.0361768 0.993181 -0.00887441 0.00260506 0.999957 0.00309594 -0.000408263 0.999995 0.0196026 0.0109056 0.999748 0.0167496 0.0963753 0.995204 -0.0530342 -0.0486913 0.997405 0.0061136 -0.0305587 0.999514 -0.0332445 -0.0231935 0.999178 0.0026309 0.00912735 0.999955 0.0405803 0.0442264 0.998197 0.0175848 -0.069835 0.997404 -0.0116332 -0.0581291 0.998241 -0.0590315 -0.0096345 0.99821 0.0517482 0.00731815 0.998633 -0.00422991 0.0536533 0.998551 0.000212686 -0.0149688 0.999888 0.00340573 0.000116749 0.999994 0 0 1 -0.00405176 0.00205836 0.99999 -0.100953 -0.0200704 0.994689 0.0323768 -0.104848 0.993961 0 0 1 0 0 1 1 0 0 1 0 0 0.836904 -0.547349 0 0.970411 -0.241461 0 0.923802 -0.38287 -0.000203927 0.923802 -0.38287 0.000202161 0.923802 0.38287 0 0.923802 0.38287 0 0.707041 0.707172 0 0.707041 0.707172 0 0.548656 0.836048 0 0.088075 0.996114 0 0.196235 0.980557 -0.000410719 0.196235 0.980557 0.000407162 0.957452 0.288593 -0.000142304 0.997378 0.0723674 0 0.0723398 0.99738 0 0.88895 0.458004 -0.000177976 0.254318 0.96712 -0.00104408 0.516664 0.856188 0.00078898 0.320824 0.947138 0.000920988 0.526735 0.850029 -0.000193091 0.966723 0.255826 0.000801414 0.905356 0.42465 -0.00164183 0.998618 0.0525588 0 0.980567 0.196185 0.000454635 0.892523 0.451001 0 0.980567 0.196185 -0.000451872 0.707107 0.707107 0 0.707107 0.707107 0 0.547389 0.836878 0 0.382416 0.92399 0.000202724 0.240911 0.970547 0 0.382416 0.92399 -0.000204495 0 1 0 0 1 0 -0.382884 0.923797 0 -0.382884 0.923797 0 -0.707107 0.707107 0 -0.707107 0.707107 0 -0.991417 0.130739 -0.000314389 -0.923808 0.382856 0 -1 0 0 -0.297233 0.954805 0.000452354 -0.3626 0.931945 -0.000451169 -0.100073 0.99498 0.000120328 -0.98281 0.184617 0 -0.432259 0.901749 -4.60394e-05 -0.796299 0.604904 -0.0006303 -0.374157 0.927365 0.00132446 -0.827645 0.561251 0.000253686 -0.947465 0.319858 0.000411261 -0.925447 0.378876 -0.000755397 0 1 0 -0.38285 0.92381 -0.000460341 -0.196174 0.980569 0 -0.707107 0.707107 0 -0.707107 0.707107 0 -0.83556 0.5494 0 -0.923802 0.38287 -0.000206912 -0.923802 0.38287 0.00020512 -0.970959 0.239244 0 -1 0 0 -1 0 0 -0.923802 -0.38287 0 -0.923802 -0.38287 0 -0.707107 -0.707107 0 -0.707107 -0.707107 0 -0.196174 -0.980569 0 -0.196174 -0.980569 0 -0.974718 -0.223439 0.000657695 -0.966653 -0.25609 -0.000849008 -0.997353 -0.0727055 0 -0.0720081 -0.997404 0 -0.852799 -0.522238 0.000807482 -0.559107 -0.829096 4.09734e-05 -0.462431 -0.886655 0.000587068 -0.246332 -0.969185 -0.000999414 -0.336023 -0.941848 0.00327348 -0.118963 -0.992899 0.000172643 -0.485858 -0.874038 -0.000415828 -0.860449 -0.509536 -0.00060969 -0.998615 -0.0526205 0 -0.980566 -0.196189 0.000454442 -0.892568 -0.450913 0 -0.980566 -0.196189 -0.000451681 -0.707107 -0.707107 0 -0.707107 -0.707107 0 -0.53399 -0.845491 0 -0.225776 -0.974179 0 -0.38285 -0.92381 -0.000273131 -0.223052 -0.974807 3.81389e-06 -0.225426 -0.97426 0 -0.38285 -0.92381 0.000189952 -0.538056 -0.842909 0 -0.610909 -0.791701 0.000123983 -0.19836 -0.980129 0 0 -1 0 0 -1 0 0.382383 -0.924004 0 0.382383 -0.924004 0 0.707107 -0.707107 0 0.707107 -0.707107 0 0.835586 -0.54936 0 0.991417 -0.130739 -0.00048019 0.923802 -0.38287 0.000205084 0.996204 -0.0870447 -0.000209322 1 0 0 0.190098 -0.981765 0.000958819 0.477758 -0.878492 -0.00048678 0.925843 -0.377908 0.00013767 0.384832 -0.922985 -0.00145606 0.947403 -0.320043 0.00050849 0.0570649 -0.99837 6.85666e-05 0.939063 -0.343746 0 0.259806 -0.965656 0.00292023 0.286714 -0.958015 -0.00172426 -0.998406 -0.0564267 -0.000966163 -0.549966 -0.835187 -0.000726012 -0.731446 0.681899 -0.000516028 0.368505 -0.929626 0.000146529 -0.626011 0.779814 0.000367505 -0.108347 0.994113 -0.000282834 0.988042 -0.154185 -0.000549806 0.884932 -0.465716 0.00197339 -0.943551 -0.331223 0.0018974 -0.934414 0.356179 0.00275453 -0.0794157 -0.996841 0.000703941 -0.498409 -0.866942 -0.000240162 0.60127 0.799046 -0.000523467 0.876043 0.482231 0.00168522 0.50864 0.860979 0.000321783 -0.936405 0.350914 -0.00207956 -0.907649 -0.419727 -0.00130365 -0.994222 -0.107346 0.000341155 -0.475981 0.879456 -0.000280096 0.0564178 0.998407 0.000176177 0.961905 -0.273346 -0.0046339 -0.888718 0.458454 -0.000726332 -0.818351 0.574718 -0.000103089 0.471801 0.881705 -0.000582815 0.391895 0.92001 -0.000188168 -0.0761255 0.997098 -0.000519556 0.416504 -0.909134 -0.000567765 -0.201267 -0.979536 -0.00010411 -0.996017 -0.0891624 0.000783512 0.976379 -0.216058 -0.00153499 0.660174 -0.751113 0.000661127 -0.65727 -0.753654 0.00177294 0.9117 0.410857 0.000237544 0.699003 -0.715117 0.00131409 -0.997514 -0.07047 0.000137198 -0.991921 -0.126852 -0.00101586 0.926537 0.376202 0.000622755 -0.458503 -0.888691 0.00178596 -0.704405 -0.709798 -0.000643259 -0.815649 0.578548 -0.000161267 0.650864 -0.759167 0.00650875 0.996039 -0.0888856 -0.00244903 -0.402317 -0.915499 -0.00134666 0.231392 0.97286 0.00156967 0.518871 0.854845 -0.00348056 0.983006 -0.183571 -0.000557938 -0.530737 -0.847531 -0.003033 -0.566905 0.823782 -0.00146901 -0.300687 0.953721 0.00214915 -0.754386 -0.656431 0.000929443 -0.977062 -0.212957 -0.000124866 0.839554 -0.543277 0.000555899 0.48179 -0.876287 -0.000288628 -0.0732737 -0.997312 0.000237038 0.683412 0.730033 3.56469e-05 0.97454 0.224214 4.94409e-05 -0.300687 0.953723 0 0.437836 -0.899055 -0.000142922 -0.68365 0.72981 0 0.215829 0.976431 0 -0.157629 -0.987498 0.000477336 -0.409263 -0.912416 -4.88112e-05 0.215829 0.976431 0 -0.979967 -0.199159 0 -0.300687 0.953723 0 0.68986 0.723943 0 -0.749879 -0.661574 0.00137225 0.759423 -0.650598 -0.000147114 -0.653189 -0.757195 0 -0.966692 -0.255944 -0.000258075 0.995271 0.097141 0.000337166 0.981972 -0.189025 -0.000647622 0.215814 0.976435 6.98523e-07 -0.924237 0.381819 0.000157608 -0.615523 0.788119 -0.000261777 -0.300687 0.953722 -0.00129711 -0.136387 -0.990656 0.000211994 -0.925894 0.377784 0.000171891 -0.653187 -0.757194 -0.0018848 -0.495412 0.868658 0.000502544 0.46303 0.886331 0.00454547 -0.878653 -0.477457 0.00215531 0.891153 -0.453693 -0.00293096 -0.999946 -0.0101204 -0.0023323 -0.626646 -0.779304 -0.000795774 0.191381 0.981516 -0.000275692 0.0440493 -0.999029 -0.000788466 -0.8917 -0.452627 0.00100263 0.803725 0.595001 -0.000373784 0.706046 -0.708166 -4.88725e-05 0.184004 -0.982925 0.000540837 -0.56399 0.825781 -0.000595668 -0.0169945 -0.999856 -0.000295756 0.857944 0.513743 7.33229e-05 -0.538323 -0.842738 0.000355988 -0.293046 0.956098 0.000647893 0.236991 -0.971512 4.84986e-05 0.353244 0.935531 0.000949448 0.999306 -0.0372469 0.000160399 0.979465 -0.201612 -0.000350535 -0.994382 0.105849 -0.000284996 -0.905813 0.423678 0.000606928 -0.586489 0.809957 -0.000456218 -0.886856 -0.462047 -1.0207e-05 -0.93589 -0.352293 0.000558828 0.42431 0.905516 -0.00139623 0.239084 -0.970999 -0.000327605 -0.078017 -0.996952 -0.000112642 0.700045 -0.714099 -0.00029244 0.112106 -0.993696 0.00038655 -0.618505 -0.785781 -5.1893e-05 -0.303092 0.952961 -0.000214184 -0.117669 0.993052 0.000875494 0.760248 0.649632 0.0011181 0.771672 -0.636021 0.000258786 -0.832572 -0.553904 0.00378089 0.803165 0.595756 0.000820114 -0.999521 -0.0309006 -0.00168878 -0.392327 0.919818 -0.00376789 -0.990824 0.135121 -0.00325244 0.604439 0.796651 0.000336849 0.812609 -0.582806 0.00200555 0.519919 -0.854215 -0.000347144 -0.919289 0.393583 0.000409781 -0.0702026 0.997532 0.00133745 0.999999 -0.0011826 -0.000452531 -0.233963 -0.972245 -0.00116893 -0.551696 0.834045 -9.72559e-05 -0.771661 -0.636029 0.00231678 -0.408012 -0.912975 0.00141995 0.572633 0.819812 -0.000492737 0.998388 0.0567627 0.000153128 -0.0436348 0.999048 0 0.0872265 -0.996188 0.000850363 0.700077 0.714067 0.00040863 -0.420824 -0.907142 0 0.736136 -0.676832 -0.00121761 0.166719 -0.986004 0 -0.536829 0.843691 0 -0.392987 -0.919544 -0.000250343 -0.80884 -0.588029 -8.64494e-06 0.0902491 0.995919 0.00071037 -0.926372 0.376608 0.000789912 -0.999097 -0.0424789 -0.000348518 0.703679 0.710518 -0.000859399 0.999969 -0.00785162 0.000918318 -0.757403 -0.652948 -0.00061043 -0.98139 -0.192023 0.000335722 0.95064 -0.310268 -0.00422305 -0.512017 0.858975 -0.00113063 0.0874496 0.996169 0.00056919 0.151514 -0.988455 -0.000417124 0.40097 -0.91609 0.0012396 -0.394733 -0.918796 -0.000290132 -0.984679 -0.174374 0.000584611 -0.941476 0.337079 -0.000633356 0.0339744 0.999423 -0.000143219 -0.541949 -0.840409 0.00190617 -0.833278 0.552852 0.00172742 0.707087 -0.707126 0 0.707087 -0.707126 0 0.382792 -0.923835 0 0.130737 -0.991417 -0.00031433 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.00451827 0 -0.99999 -0.00142843 0.000824123 -0.999999 -0.00278305 0.00335636 -0.999991 -0.000921286 -0.00053153 -0.999999 -0.000987564 0 -1 0 0 -1 -0.000398288 0.000398345 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0300385 0.0300384 -0.999097 0 0 -1 0 0 -1 0 0 -1 0.00243424 0.00101308 -0.999997 0 -0.0017575 -0.999998 -0.000869594 -0.00150605 -0.999999 0.00453437 -0.00435426 -0.99998 -0.00109748 -0.00435355 -0.99999 0.00160572 -0.00278091 -0.999995 0 -0.00333895 -0.999994 0.00768128 -0.0112088 -0.999908 -0.0231015 0.0040323 -0.999725 -0.000224604 -5.65654e-05 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.043884 -0.0110583 -0.998975 -0.00282553 0.0444206 -0.999009 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0591599 -0.998249 -0.0282091 -0.0487978 -0.99841 0.00254863 -0.00441738 -0.999987 -0.0440554 -0.0389344 -0.99827 0 -0.00570947 -0.999984 0 0 -1 0 0 -1 -0.00321804 -0.00321804 -0.99999 0.00274214 -0.016329 -0.999863 -0.0315172 0 -0.999503 -0.0575419 0.0331984 -0.997791 -0.0250271 -0.0144392 -0.999583 -0.0315172 0 -0.999503 0.0125766 0.0510274 -0.998618 0.000306532 -0.00121716 -0.999999 -4.52701e-05 0 -1 4.31167e-05 -8.7241e-05 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -2.50545e-05 -5.32407e-05 -1 0.00043798 0.00020567 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.00214925 0.0085341 -0.999961 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.00456365 0 -0.99999 -0.0329077 0.0189859 -0.999278 -0.0035688 -0.013519 -0.999902 -0.0121038 -0.00698242 -0.999902 -0.0157747 0 -0.999876 0 0 -1 -0.00809639 0.00809639 -0.999934 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0151915 -0.0151912 -0.999769 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0687178 -0.0121463 -0.997562 0 0.115788 -0.993274 0.0801973 0.139015 -0.987038 0.15419 0.145908 -0.977208 -0.0155778 0.02695 -0.999515 0 0.0347301 -0.999397 0.0386412 0.00973723 -0.999206 0.122697 0.11435 -0.985834 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0289401 0.00728841 -0.999555 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0055511 -0.999985 0.00922289 0.0169183 -0.999814 -0.00297561 -0.00515388 -0.999982 0.00829358 0.00340905 -0.99996 0.00134776 -0.00233442 -0.999996 0 -0.00289291 -0.999996 0 0 -1 0 0 -1 -0.00149312 -0.00149333 -0.999998 -0.00764513 0.0148467 -0.999861 0.0177389 0 -0.999843 0.0194191 -0.0112025 -0.999749 0.0207092 0.011948 -0.999714 0.0136698 -0.01635 -0.999773 0.00601338 0 -0.999982 0.00660081 0.000729209 -0.999978 0.00307087 -0.012194 -0.999921 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0226647 0.0226643 -0.999486 0 0 -1 0 0 -1 0 0 -1 0.0039596 -0.0128558 -0.99991 0.00047531 0.00188739 -0.999998 -0.00280241 0.000256055 -0.999996 -3.37821e-05 8.153e-05 -1 -0.00181377 -0.000258615 -0.999998 0.117571 -0.0329853 -0.992517 -0.0272154 -0.157057 -0.987215 0.000778964 0 -1 0.000449446 0.00130636 -0.999999 -0.000194574 8.06371e-05 -1 -0.00222293 0.00536416 -0.999983 -0.00508364 0.00232103 -0.999984 0 0.00042247 -1 -0.0141213 0.000641721 -0.9999 -0.00625437 0.00317818 -0.999975 0.00608236 0.0159304 -0.999855 -0.000609397 0 -1 -0.000634711 0.000263025 -1 0.0409291 -0.135288 -0.989961 -0.0218447 -0.00437032 -0.999752 -0.0499335 0.0185919 -0.99858 -0.0490491 0.00836092 -0.998761 0.0122842 -0.0356213 -0.99929 0.0490774 -0.0298573 -0.998349 -0.000674809 -0.00337293 -0.999994 -0.0116717 -0.00350535 -0.999926 0.0321732 -0.0113545 -0.999418 0.0167341 0.0069349 -0.999836 0.035334 0 -0.999376 0.0391336 -0.0251224 -0.998918 -0.0313081 0.0397706 -0.998718 0.00455153 0.0345186 -0.999394 -0.0345371 0.0171334 -0.999257 0 0 -1 0 0 -1 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707087 -0.707127 0 -0.707087 -0.707127 0 -1 0 0 -1 0 0 -0.866178 -0.499735 0 -0.866178 -0.499735 0 -0.866203 0.499692 0 -0.866203 0.499692 0 -1 0 0 -1 0 0 -0.707084 0.70713 0 -0.707084 0.70713 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.184637 -0.982807 0 -0.633336 -0.773876 -0.000492347 -0.325416 -0.945571 0.000284545 -0.251934 -0.967744 -0.000173111 -0.65336 -0.757047 0.00069982 -0.937354 -0.348379 7.85833e-05 -0.901234 -0.433332 -0.000371674 -0.926456 -0.376402 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.707083 -0.70713 0 0.707083 -0.70713 0 0 -1 0 0 -1 0 0.499996 -0.866028 0 0.499996 -0.866028 0 -0.500002 -0.866024 0 -0.500002 -0.866024 0 0 -1 0 0 -1 0 -0.707102 -0.707111 0 -0.707102 -0.707111 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.707006 -0.707207 0 0.707006 -0.707207 0 0 -1 0 0 -1 0 0.500437 -0.865773 0 0.500437 -0.865773 0 -0.499706 -0.866195 0 -0.499706 -0.866195 0 0 -1 0 0 -1 0 -0.707102 -0.707111 0 -0.707102 -0.707111 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.432108 -0.901822 0.000719588 0.184506 -0.982831 0 0.983103 -0.183054 0 0.911344 -0.411645 0.00066248 0.70681 -0.707403 -0.000495246 0.43883 -0.89857 -0.000483661 0.70681 -0.707403 0.0001941 0.887464 -0.460876 -0.000529294 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707006 0.707207 0 0.707006 0.707207 0 1 0 0 1 0 0 0.866203 0.499692 0 0.866203 0.499692 0 0.866178 -0.499735 0 0.866178 -0.499735 0 1 0 0 1 0 0 0.707009 -0.707205 0 0.707009 -0.707205 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707009 0.707205 0 0.707009 0.707205 0 1 0 0 1 0 0 0.866178 0.499735 0 0.866178 0.499735 0 0.866178 -0.499735 0 0.866178 -0.499735 0 1 0 0 1 0 0 0.707009 -0.707205 0 0.707009 -0.707205 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.983054 0.183317 0 0.919125 0.393965 0.000787806 0.571022 0.820935 -0.000128062 0.64826 0.761419 -0.000275554 0.391782 0.920057 0.00121305 0.867016 0.49828 0.000191192 0.905167 0.425055 -0.000565602 0.929995 0.367572 -0.000302124 2.16008e-05 1 -9.94519e-08 2.81846e-05 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707105 0.707108 0 -0.707105 0.707108 0 0 1 0 0 1 0 -0.499743 0.866174 0 -0.499743 0.866174 0 0.500475 0.865751 0 0.500475 0.865751 0 0 1 0 0 1 0 0.707009 0.707205 0 0.707009 0.707205 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707105 0.707108 0 -0.707105 0.707108 0 0 1 0 0 1 0 -0.500039 0.866003 0 -0.500039 0.866003 0 0.500033 0.866006 0 0.500033 0.866006 0 0 1 0 0 1 0 0.707086 0.707128 0 0.707086 0.707128 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.940724 0.339173 0 -0.370592 0.928795 0.000609423 -0.831688 0.555243 -0.000569152 -0.484338 0.874881 -0.0011098 -0.184595 0.982815 0 -0.917811 0.397016 0.00140327 -0.508666 0.860964 -4.67093e-05 -0.363346 0.931654 -0.000312586 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707087 -0.707127 0 -0.707087 -0.707127 0 -1 0 0 -1 0 0 -0.866178 -0.499735 0 -0.866178 -0.499735 0 -0.866178 0.499735 0 -0.866178 0.499735 0 -1 0 0 -1 0 0 -0.707087 0.707127 0 -0.707087 0.707127 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.00176129 0 0.999998 0.00138888 0.000801302 0.999999 0.00689183 -0.00397574 0.999968 0.00605588 -0.0058193 0.999965 0.00775681 0 0.99997 0 0 1 0.00346977 0.00347027 0.999988 0.00348372 0.00343454 0.999988 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.248284 -0.248279 0.936329 0 0 1 0 0 1 0 0 1 0 0 1 0 0.00665342 0.999978 -0.00328541 0.00530712 0.999981 -0.00302373 0.00523731 0.999982 0.00278256 0.00481951 0.999985 0.00491732 0.00511784 0.999975 0 0.00780311 0.99997 -0.0122687 0.00106473 0.999924 -0.00765078 0.00192681 0.999969 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0193598 0.00487848 0.999801 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0156558 0.999877 -0.00675716 0.0116901 0.999909 0.0148152 0.0256808 0.99956 0.0118088 0.026546 0.999578 0 0.0172177 0.999852 -0.0179552 0.0275773 0.999458 0 0 1 0 0 1 -0.0130496 0.0130496 0.99983 -0.0272707 0 0.999628 -0.0229054 -0.0132136 0.99965 -0.0454264 0.0262085 0.998624 -0.0106747 -0.023922 0.999657 0.000505743 0 1 -0.00104628 0.00180562 0.999998 -0.000452246 -0.00179575 0.999998 0.000756673 -0.00182593 0.999998 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0205967 -0.0205963 0.999576 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.00599669 0.0238113 0.999699 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.00833688 0 0.999965 0.00653088 0.00376795 0.999972 -0.0766435 0.0442189 0.996078 -0.0518124 0.0846155 0.995066 -0.0927245 0 0.995692 0 0 1 -0.0449773 -0.0449773 0.997975 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 2.21228e-05 -4.47625e-05 1 0.258193 0.173235 0.950435 -2.2044e-05 0 1 -1.23439e-05 -2.62308e-05 1 0 0 1 0.0620665 -0.0791857 0.994926 0 0.0263347 0.999653 -0.0157779 0.0273469 0.999502 0.0191201 0.0330752 0.99927 -0.0300257 0.0157278 0.999425 0 -0.00182591 0.999998 0.00258855 -0.000652291 0.999996 0.00176329 0.000352768 0.999998 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0556469 -0.0140144 0.998352 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.00232406 0.999997 0.00111931 -0.00193849 0.999997 0.00311158 0.00538894 0.999981 0.00972108 0.00306699 0.999948 0 0.00574923 0.999983 0 0 1 0 0 1 0.00349027 -0.00349077 0.999988 0.00728859 0.00129157 0.999973 0.0051061 0 0.999987 0.00544054 0.00313888 0.99998 0.00616795 -0.00355855 0.999975 0.0218143 -0.0560217 0.998191 0.0377653 0 0.999287 -0.0188664 0.0491606 0.998613 0.000545346 0.00216549 0.999997 0.0358088 0.029391 0.998926 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0222963 0.0222962 0.999503 0 0 1 0 0 1 0 0 1 -0.0112969 -0.0102513 0.999884 0.0304028 -0.0341297 0.998955 -0.0416687 0.00833653 0.999097 -0.0797292 -0.0218174 0.996578 0.0486834 0.017626 0.998659 0.0456791 0.0143815 0.998853 -0.0128369 0.00509141 0.999905 -0.00233061 0.0176737 0.999841 0.00741719 -0.00878796 0.999934 0.00638573 -0.000842025 0.999979 0.0418326 0.0524435 0.997747 -0.0223333 0.0174173 0.999599 -0.0407279 -0.0364556 0.998505 0 -0.00201518 0.999998 0.011343 0.011011 0.999875 0.00460202 -0.018274 0.999822 -0.0258749 -0.00386713 0.999658 0.00112199 0.0056081 0.999984 0.0518058 0.0020043 0.998655 9.82889e-05 0.0786783 0.9969 0.00518142 -0.0100861 0.999936 -0.00665873 -0.000878045 0.999977 -0.0156806 -0.0280619 0.999483 0.00431935 0.0215904 0.999758 0.031525 -0.00048115 0.999503 -0.0356578 -0.0106576 0.999307 -0.00410589 -0.037736 0.999279 -0.00706295 0.00686438 0.999952 0 0 1 1 0 0 1 0 0 0.836123 -0.548542 0 0.923857 -0.382737 -0.000205817 0.923857 -0.382737 0.000204034 0.970794 -0.239913 0 0.923857 0.382737 0 0.923857 0.382737 0 0.707087 0.707126 0 0.707087 0.707126 0 0.547874 0.836561 0 0.196178 0.980568 0.000406855 0.196178 0.980568 -0.00041041 0.0880861 0.996113 0 0.0723639 0.997378 0 0.939189 0.343399 -0.000325014 0.477131 0.878832 0.00038365 0.321138 0.947032 0.000921769 0.484477 0.874804 4.84186e-05 0.27079 0.962638 -0.00113879 0.94303 0.332709 -0.000400019 0.962241 0.272198 0.000251086 0.980569 0.196176 -0.000235864 0.991418 0.130732 0 0.707042 0.707172 0 0.707042 0.707172 0 0.548676 0.836035 0 0.240923 0.970544 0 0.382873 0.923801 -0.000205142 0.382873 0.923801 0.000203365 0 1 0 0 1 0 -0.38287 0.923802 0 -0.38287 0.923802 0 -0.707106 0.707107 0 -0.707106 0.707107 0 -0.835615 0.549315 0 -0.991418 0.130729 -0.00048013 -0.923818 0.382831 0.000205063 -0.996204 0.0870436 -0.000209315 -1 0 0 -0.949777 0.312926 -0.000650054 -0.191408 0.981511 0 -0.981491 0.191511 0 -0.897571 0.44087 0.000569822 -0.479578 0.877499 0.000658837 -0.706065 0.708147 -0.000155158 -0.394685 0.918817 -0.000266478 0 1 0 0 1 0 -0.0223446 0.99975 0 -0.249684 0.968327 3.17178e-05 -0.382833 0.923817 -0.000208484 -0.538038 0.842921 0 -0.225414 0.974263 0 -0.250008 0.968244 -3.20406e-05 -0.225414 0.974263 0 -0.382833 0.923817 0.000231095 -0.538038 0.842921 0 -0.707107 0.707107 0 -0.707107 0.707107 0 -0.835599 0.54934 0 -0.923809 0.382853 -0.000206843 -0.923809 0.382853 0.000205052 -0.970951 0.239277 0 -1 0 0 -1 0 0 -0.923809 -0.382853 0 -0.923809 -0.382853 0 -0.707107 -0.707107 0 -0.707107 -0.707107 0 -0.130726 -0.991419 0.000157182 -0.196172 -0.98057 0 -0.935506 -0.353311 0.000392282 -0.129126 -0.991628 0.000155259 -0.514537 -0.857468 1.2348e-06 -0.598841 -0.800867 0.000900596 -0.325756 -0.945453 0.00159046 -0.301105 -0.953591 -0.000222443 -0.904925 -0.425572 -0.000350136 -0.970716 -0.240232 0.000288845 -1 0 0 -0.996358 -0.0852687 -0.000102528 -0.923813 -0.382845 0.000127412 -0.892557 -0.450935 0 -0.980569 -0.196175 -0.000451751 -0.707106 -0.707107 0 -0.707106 -0.707107 0 -0.382837 -0.923816 0 -0.382837 -0.923816 0 0 -1 0 0 -1 0 0.38284 -0.923815 0 0.38284 -0.923815 0 0.707042 -0.707172 0 0.707042 -0.707172 0 0.83694 -0.547295 0 0.980568 -0.196179 -0.00041012 0.923809 -0.382853 0.000202122 0.991622 -0.129175 -0.000155321 1 0 0 0.355532 -0.934664 -0.000256562 0.491112 -0.871096 0.00102855 0.196136 -0.980576 -0.00102128 0.105155 -0.994456 -0.000252823 0.972436 -0.23317 0.000280354 0.857949 -0.513735 -0.000790113 0.52703 -0.849846 0.000266268 0.917015 -0.398854 2.51363e-05 -0.986894 -0.161286 0.00524441 0.999964 -0.00836957 -0.00164608 -0.423101 0.906082 -0.000985574 -0.572827 -0.819676 -0.00073851 -0.141219 0.989978 0.00106065 0.410983 -0.911643 -0.000834698 -0.117903 -0.993023 0.00205296 -0.998344 0.0575325 -0.000140496 -0.997263 0.0739345 -0.000330386 0.463329 0.886186 -0.000744809 0.525477 0.850808 -7.65546e-05 -0.568549 -0.822649 -0.00083717 -0.873874 -0.486151 0.00125438 0.17522 -0.984528 -0.00160176 -0.379544 -0.925174 0.000310931 0.919181 0.393834 0.00115952 0.986064 -0.166364 -0.00025202 0.687869 -0.725834 0.000830857 -0.176846 0.984238 -0.000999081 -0.777388 0.62902 0.00118745 0.701958 -0.712218 -0.00080397 0.981413 -0.191907 -0.000726175 0.49579 0.86844 0.00222719 -0.384714 -0.923036 -0.000381223 0.376445 0.926439 -0.000409025 0.917534 0.397658 -0.000435059 -0.998926 0.0463257 -0.00101614 0.157341 -0.987543 0.00178293 0.80716 -0.590333 0.000575471 -0.355934 -0.934511 -0.000605365 -0.872801 -0.488076 -0.000509056 -0.75284 0.658204 -0.000646755 -0.299905 0.953968 0.00165888 0.966182 0.257862 0.000529998 0.00448171 -0.99999 -0.000690249 -0.947493 -0.319776 0.0010479 -0.96751 0.252832 -3.0624e-05 -0.560289 0.828293 -0.00247764 0.264803 0.964302 0.00080837 -0.107723 -0.99418 0.0014278 0.996297 -0.0859765 -0.000412079 -0.894351 -0.447366 -0.000612857 0.516367 -0.856367 0.000490729 0.78865 -0.614841 0.00146547 -0.213381 -0.976969 -0.000789677 -0.956306 -0.292368 0.00064312 0.540998 -0.841024 0 0.782034 0.623236 -0.000232999 0.959042 0.283265 0.000182406 -0.436307 0.899798 -0.000412526 0.939085 -0.343684 0 -0.381184 0.924499 -0.0001597 0.253496 0.967336 -9.90692e-05 0.433387 0.901208 0.000245606 -0.536855 -0.843674 0.000849763 0.828526 0.559951 5.53195e-05 -0.908303 0.418312 -0.000292483 0.566271 -0.824219 -0.00021709 -0.536855 -0.843675 -0.000310669 0.105417 0.994428 0.000301495 0.0444168 -0.999013 0.000158469 0.563159 -0.826348 -0.000241209 -0.98838 -0.151999 -0.000877379 0.964763 -0.263121 -0.00065676 0.0482186 -0.998837 0.000138049 -0.548187 -0.836356 -0.000214329 -0.74061 0.671935 0.000424416 0.108547 0.994091 0.000599726 0.470173 0.882574 -0.00104093 -0.354709 0.934976 -0.000942326 0.0935119 0.995618 0.000819336 0.836974 0.547241 0.00100488 0.869474 0.493976 0.00182152 -0.729489 0.683993 0.00060753 -0.94387 -0.330289 0.00433482 0.984315 0.176412 -0.0018574 0.688544 -0.725194 -0.000482899 -0.369344 -0.929291 -0.00176115 -0.998256 -0.0590365 0.000514679 0.268909 0.963165 -0.000802236 0.951686 0.307072 7.24813e-05 0.987164 -0.159706 0.000773823 0.708813 -0.705396 -0.000289467 -0.60936 0.792893 -0.000600872 -0.622022 -0.782996 0.00249756 0.019448 -0.99981 0.00158077 0.680403 0.732837 0.00133137 -0.991068 -0.133358 -0.000924739 0.101587 0.994827 0.000421981 -0.986955 -0.160997 -0.000711636 0.979664 -0.200644 3.40772e-05 -0.504815 0.863228 6.25345e-05 -0.592187 -0.805799 -0.00182796 -0.780694 -0.624914 -0.000282806 0.949688 0.313196 -2.47857e-05 -0.926076 0.377337 0.000759439 -0.0133074 -0.999909 0.00204635 -0.134352 -0.990921 -0.00501339 0.700491 -0.713661 -0.000577053 -0.991292 -0.131676 0.00130394 -0.513158 0.858294 -0.000565415 0.0544776 0.998515 -0.000963866 0.425275 0.905064 0.000417823 0.670777 0.741659 -0.000502692 0.908384 0.418137 0.000501634 -0.380979 0.924583 0.000970036 0.991058 -0.133429 -0.000299597 -0.209343 -0.97784 -0.00190256 0.415406 -0.909635 0.00157051 0.321678 -0.946843 0.00347521 -0.77955 -0.62634 0.000489614 -0.91811 0.396318 -0.00251738 0.565982 -0.824417 0.000937434 -0.113837 -0.993499 0.00126235 -0.962111 0.27265 -0.00190039 -0.999103 -0.0423281 0.00112758 0.501206 -0.865328 -0.000298757 0.288182 0.957576 -0.000160625 0.986117 0.16605 0.000214755 -0.734976 -0.678093 -0.000300228 -0.0122573 -0.999925 -0.000484094 -0.348079 0.937465 -0.000429001 -0.228233 -0.973607 5.29377e-05 -0.927249 0.374446 -7.61411e-05 -0.969095 -0.24669 8.60719e-05 0.93561 -0.353034 0.000647018 -0.0252806 0.99968 0.000134777 -0.634317 -0.773073 2.57013e-05 -0.51867 0.854975 7.81116e-05 0.94774 -0.319043 0.000474654 0.535642 -0.844445 -0.000501185 0.939623 -0.342197 -0.00317684 0.764752 0.644325 -0.000247754 0.959587 0.281413 0.00051116 -0.922715 0.385483 -1.16106e-05 -0.941369 -0.337378 -0.00107172 0.959618 0.281305 0.000512695 -0.910383 0.413766 -0.000330927 0.485124 0.874445 0.000263661 0.737229 -0.675641 0.00178596 0.182141 -0.983272 -0.000140238 -1 5.98641e-05 0 -1 0 -8.47594e-06 -1 -0.000158883 0 -1 0 8.38036e-05 -1 3.34363e-05 -2.75155e-05 -1 3.40795e-05 1.30465e-05 1 0.000178714 0 1 0 4.82435e-05 1 -3.15375e-05 0.000133366 1 -7.16422e-05 0 1 0 -9.32053e-05 1 -3.74025e-05 -0.000288242 0.707107 0 0.707107 0.707107 0 0.707107 0 0.000919951 1 -0.000443552 0 1 -0.0015377 -0.000198345 0.999999 0 -0.000322826 1 0.000211149 0 1 0.000660795 -0.000171227 1 0.707111 0 0.707102 0.707111 0 0.707102 1 0 0 1 0 0 0 3.80677e-05 -1 1.78568e-05 0 -1 0 -1.18838e-05 -1 -5.11098e-06 0 -1 -5.82026e-07 -7.80442e-06 -1 2.09298e-06 -7.77507e-06 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0.707111 0 0.707102 0.707111 0 0.707102 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -5.81439e-05 1 8.44146e-06 0 1 0 0.000221051 1 -0.000108339 0 1 3.77752e-05 -5.21081e-05 1 -3.4927e-06 -5.15374e-05 1 0 -0.000615301 -1 -5.36666e-05 0 -1 -0.000538516 0.00018658 -1 0 8.69776e-05 -1 0.00012005 0 -1 0.00103911 0.000158104 -0.999999 -0.707107 0 -0.707106 -0.707107 0 -0.707106 -1 -0.000354264 0 -1 0 6.6855e-05 -1 9.67183e-05 0.000609127 -1 4.76332e-05 0 -1 0 -3.10289e-05 -1 9.57801e-05 -0.000280269 -0.707107 0 -0.707107 -0.707107 0 -0.707107 0 0 -1 0 0 -1 1 -5.62331e-05 0 1 0 -2.69635e-05 1 5.83664e-06 0 1 0 7.65198e-06 1 1.57614e-05 -1.44453e-06 1 1.57739e-05 5.11575e-06 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.707111 0 -0.707102 -0.707111 0 -0.707102 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.70678 0.707433 0 0.70678 0.707433 0 0.254554 0.967058 -7.82872e-05 0.390657 0.920536 0 0.54936 0.835586 -0.999992 -0.00152782 -0.00360011 9.85486e-05 0.390657 0.920536 -1.48997e-07 0.549723 0.835347 -8.5719e-06 0.235174 0.971953 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999977 0.00673768 0 0.999729 0.020151 0.0116228 0.999841 0.0125847 -0.0126695 0.999988 0.00429023 -0.00247509 0.999614 0.0209778 0.0181992 0.999983 0.00584221 0 1 0 0 0.999981 0.00438737 0.00436877 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.978105 -0.147159 -0.147154 1 0 0 1 0 0 1 0 0 0.999962 0 0.00873518 0.999968 -0.00401383 0.00695959 0.999821 0.00945653 0.0163948 0.999962 0 0.00873518 0.999635 0.00764709 0.0259211 0.99906 -0.0427412 -0.00729377 0.999998 -0.00176239 0.00044372 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999988 0.00484766 0.0012205 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.99956 0 0.0296577 0.999544 -0.0150829 0.0261493 0.999584 0.0144041 0.0249725 0.999474 -0.00182081 0.0323777 0.999602 0 0.0281998 1 0 0 1 0 0 0.999838 -0.0127551 0.012701 0.999829 -0.0178301 -0.00481733 0.9999 -0.0141294 0 0.999917 -0.0107442 -0.00708321 0.999928 -0.0104256 -0.00601466 0.999943 -0.00921566 0.00531543 0.999963 -0.0086247 -6.33304e-05 0.999963 -0.00859031 0 0.999962 -0.00409129 -0.00775558 0.999909 -0.0032926 -0.0130506 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999727 0.0165149 -0.0165139 1 0 0 1 0 0 0.999914 0.00759173 0.0106607 0.999896 -0.00971235 -0.0106835 1 0 0 1 0 0 0.999877 -0.0105422 0.0116237 0.999888 0.00867809 -0.0121862 1 0 0 1 0 0 0.999945 -0.00256239 0.0101563 0.997421 -0.0506891 0.0508143 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999938 -0.0111061 0 0.999949 -0.00877103 -0.00506013 0.999913 -0.0114498 0.00660556 0.999915 -0.0130239 0.00105758 0.999918 -0.0127772 0 0.99993 -0.011716 0.00161481 1 0 0 0.999888 -0.0105857 -0.0106157 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.163419 0.697601 0.697601 1 0 0 1 0 0 1 0 0 1 0 0 0.999681 0 -0.0252646 0.999698 0.0122891 -0.0213057 0.998657 -0.0258849 -0.0448768 0.999742 0.00377019 -0.0224058 0.999795 0 -0.0202485 0.999687 0.0242637 -0.00610901 0.998765 0.0419823 -0.0265538 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999998 -0.00194493 -0.000489686 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.996963 0 -0.0778723 0.997449 0.0356646 -0.0618319 0.985836 -0.0837876 -0.14528 0.985779 -0.0863767 -0.144152 0.986951 0 -0.16102 1 0 0 1 0 0 0.995222 0.0689412 -0.0691364 0.993128 0.100628 0.0597517 0.999923 0.0124441 0 0.99991 0.0116379 0.00671405 0.999912 0.0122373 0.00508249 0.999977 0.00588045 -0.00339252 0.99997 0.00778514 0 0.999938 0.00273143 0.0108263 0.989323 0.109719 0.0959302 0.996195 -0.0230343 0.0840511 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.116412 -0.702289 0.70231 1 0 0 1 0 0 1 0 0 0.999945 -0.00146195 -0.0103972 0.999998 0.000494364 -0.00195947 0.999784 0.0177175 -0.0108702 0.999764 -0.00848614 -0.0199965 0.999826 0 -0.0186498 0.999696 0.0109171 -0.0221138 0.999943 -0.00859752 -0.00636658 0.999847 -0.0151839 0.00872487 0.999891 -0.0147924 0 0.99985 -0.0101287 0.0140611 0.999999 -0.00146914 -0.000606405 0.99925 -0.000197239 0.0387246 0.999052 0.0369257 0.0230723 0.999076 0 0.0429746 0.999552 0.0271929 0.0125291 0.999529 -0.0176532 0.0251212 0.99982 -0.00646831 0.0178427 0.999252 0.0191647 -0.0335813 0.999268 0.0143703 0.0354569 0.99895 0.045813 0 0.999028 0.0406583 0.0170195 0.992686 -0.118468 0.0232203 0.999999 -0.00148 0.000619522 0.999994 -0.00302996 -0.00147012 0.999995 -0.00331833 0 0.999388 -0.011949 -0.0328841 0.994843 -0.0627729 -0.0796666 0.996074 -0.00797773 0.0881695 0.995405 0 0.0957546 0.995888 -0.0437121 0.0793519 0.999993 0.00350493 -0.0014467 0.999989 0.00473395 0 0.99997 0.00749258 0.00189068 0.998661 0.00221484 0.0516953 0.997473 -0.0486754 -0.0517579 0.999886 0 -0.015088 0.999639 0.0266946 -0.00309346 1 0 0 1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.707687 0.706526 0 -0.707687 0.706526 0 -1 0 0 -1 0 0 -0.866189 0.499717 0 -0.866189 0.499717 0 -0.866189 -0.499717 0 -0.866189 -0.499717 0 -1 0 0 -1 0 0 -0.706733 -0.707481 0 -0.706733 -0.707481 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 -0.000315956 -0.250512 0.968114 0 -0.983011 0.183548 0.000201496 -0.920991 0.389584 9.78381e-05 -0.296908 0.954906 0 -0.164416 0.986391 0.000921699 -0.655329 0.755343 -0.000856039 -0.889341 0.457245 0.000205911 -0.654298 0.756236 0 -0.173353 0.98486 0 -0.678948 0.734186 -0.000444175 -0.650718 0.759319 -5.84923e-05 -0.843854 0.536573 -0.000128809 -0.483821 0.875167 0.000146327 -0.681701 0.731631 -8.13827e-06 -0.178933 0.983861 0.00204638 -0.471393 0.881921 8.57635e-05 -0.544084 0.839031 -2.9006e-05 -0.466433 0.884556 -0.000203293 -0.906409 0.422401 4.28094e-05 -0.837812 0.545958 2.84748e-05 -0.810511 0.585724 0.000100942 -0.945368 0.326006 -0.000122999 -0.803982 0.594654 6.54333e-05 -0.959503 0.281697 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.707698 0.706515 0 0.707698 0.706515 0 0 1 0 0 1 0 0.499599 0.866257 0 0.499599 0.866257 0 -0.499642 0.866232 0 -0.499642 0.866232 0 0 1 0 0 1 0 -0.707693 0.70652 0 -0.707693 0.70652 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.707693 0.70652 0 0.707693 0.70652 0 0 1 0 0 1 0 0.499642 0.866232 0 0.499642 0.866232 0 -0.499642 0.866232 0 -0.499642 0.866232 0 0 1 0 0 1 0 -0.707693 0.70652 0 -0.707693 0.70652 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 -8.28252e-05 0.823934 0.566686 0.00010122 0.990812 0.13525 5.13936e-05 0.984998 0.172565 0 0.173353 0.98486 -0.000417879 -0.747712 -0.664024 -0.00116132 -0.869697 -0.493585 9.20224e-05 0.967914 0.251283 -7.38988e-06 0.815075 0.579356 0.000418553 0.473722 0.880674 4.71168e-05 0.960319 0.278903 0 0.999017 0.0443272 -4.673e-05 0.961277 0.275584 -8.49313e-05 0.823482 0.567342 -4.01402e-05 0.22491 0.97438 0.000141135 0.582626 0.81274 -1.05642e-05 0.81867 0.574264 -4.26017e-05 0.814467 0.580209 1.07575e-05 0.811017 0.585023 -5.53909e-05 0.514325 0.857595 0.000236345 0.465176 0.885218 0.000235013 0.834357 0.551224 0 0.840152 0.54235 0 0.505117 0.863051 -0.000116079 0.827093 0.562065 0.000523984 0.505117 0.863051 0.000436151 0.929851 0.367936 4.29915e-05 0.529184 0.848507 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.706727 -0.707487 0 0.706727 -0.707487 0 1 0 0 1 0 0 0.866189 -0.499717 0 0.866189 -0.499717 0 0.866189 0.499717 0 0.866189 0.499717 0 1 0 0 1 0 0 0.707681 0.706532 0 0.707681 0.706532 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.706715 -0.707498 0 0.706715 -0.707498 0 1 0 0 1 0 0 0.866238 -0.499631 0 0.866238 -0.499631 0 0.866189 0.499717 0 0.866189 0.499717 0 1 0 0 1 0 0 0.707693 0.70652 0 0.707693 0.70652 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 -0.000161347 0.392534 -0.919738 0 0.984636 -0.174621 0.000231248 0.467684 -0.883896 0.000321015 0.922039 -0.387097 0 0.187325 -0.982298 5.23648e-05 0.70842 -0.705791 5.54408e-05 0.329218 -0.944254 0.000178016 0.702667 -0.711519 -0.00011758 0.928487 -0.371364 -0.0001924 0.607232 -0.794524 -0.000159483 0.798613 -0.601845 -1.12608e-06 0.362813 -0.931862 -0.00173894 0.515527 -0.856872 1.92633e-05 0.718274 -0.69576 0.000120825 0.824377 -0.566042 -0.000164054 0.799162 -0.601116 0.000214789 0.97293 -0.231102 3.88647e-05 0.972991 -0.230844 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.706727 -0.707487 0 -0.706727 -0.707487 0 0 -1 0 0 -1 0 -0.499642 -0.866232 0 -0.499642 -0.866232 0 0.499642 -0.866232 0 0.499642 -0.866232 0 0 -1 0 0 -1 0 0.706727 -0.707487 0 0.706727 -0.707487 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.706727 -0.707487 0 -0.706727 -0.707487 0 0 -1 0 0 -1 0 -0.499642 -0.866232 0 -0.499642 -0.866232 0 0.499599 -0.866257 0 0.499599 -0.866257 0 0 -1 0 0 -1 0 0.706733 -0.707481 0 0.706733 -0.707481 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0.000353614 -0.235872 -0.971784 -7.62735e-06 -0.982487 -0.186331 -5.10328e-05 -0.317752 -0.948174 0 -0.0574589 -0.998348 5.09842e-05 -0.319081 -0.947728 0.00023293 -0.47517 -0.879894 -6.61799e-05 -0.823952 -0.56666 0.000168822 -0.914023 -0.405662 0 -0.98442 -0.175836 -0.000714986 -0.900887 -0.434054 0.000234763 -0.760679 -0.649128 -0.000192757 -0.755213 -0.65548 2.97656e-05 -0.79162 -0.611014 -0.000203995 -0.445633 -0.895216 0.000181381 -0.759663 -0.650317 -0.000752347 -0.763572 -0.645722 -0.00146371 0.513245 -0.858241 0.000247821 -0.902167 -0.431387 -0.000326185 -0.398753 -0.917058 0.000278139 -0.660085 -0.75119 0.000506182 -0.432699 -0.901538 -4.61335e-05 -0.64129 -0.767299 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.707698 0.706515 0 -0.707698 0.706515 0 -1 0 0 -1 0 0 -0.866189 0.499717 0 -0.866189 0.499717 0 -0.866238 -0.499631 0 -0.866238 -0.499631 0 -1 0 0 -1 0 0 -0.706721 -0.707492 0 -0.706721 -0.707492 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999685 0.0250897 0 -0.998927 -0.012556 0.044576 -0.999736 0.0198925 -0.0114763 -0.999969 -0.0068522 -0.00395313 -0.99959 0.00915844 -0.0271468 -0.999963 -0.00855883 0 -1 0 0 -0.999982 -0.00424181 0.00425382 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.985819 -0.118659 0.118662 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999984 0 0.00564552 -0.999584 0.0266427 -0.0110133 -0.998958 -0.0227994 -0.0395319 -0.999623 0.013714 -0.023776 -0.999652 0 -0.0263917 -0.99982 -0.0189113 -0.00142947 -0.999921 -0.0121758 -0.00306556 -0.999526 -0.0230662 -0.0203677 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999969 0.00758848 -0.0019106 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999993 0 0.00380968 -0.999974 -0.00508592 -0.00504293 -0.999989 0.00229633 0.00398116 -0.999985 -0.00275606 0.00477819 -0.999946 0 -0.0103849 -0.99989 0.0147945 -0.00138983 -1 0 0 -1 0 0 -0.999942 -0.00763551 -0.00765714 -0.999888 -0.0149868 0 -0.999904 -0.011985 0.00691431 -0.999196 -0.0326056 -0.023318 -0.999209 -0.0344568 -0.0198786 -0.999184 -0.040388 0 -0.999299 0.0018443 0.0373894 -0.999926 -0.00298403 0.0118275 -0.999942 0.00409256 0.00997572 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.985889 0.118369 0.118369 -0.954522 0.238166 0.179347 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.997824 -0.0161309 -0.0639364 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999606 -0.0280764 0 -0.999405 -0.0341235 0.00510987 -0.99961 -0.0241786 0.0139458 -0.999765 -0.0187874 -0.0108387 -0.99957 -0.028921 0.00487634 -0.999733 -0.0231235 0 -1 0 0 -0.999866 -0.0116221 0.0115729 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.958002 0.202777 -0.202765 -1 0 0 -1 0 0 -1 0 0 -0.998616 -0.0525218 -0.00264596 -0.997175 0 0.0751112 -0.996456 0.0420276 0.0728634 -0.994907 0.0792281 0.0623086 -1 1.5023e-05 -2.60454e-05 -1 0 -3.45734e-05 -1 -4.00461e-05 -1.00825e-05 -0.999685 0.0164994 0.0189303 -0.999803 0.0183323 -0.00756689 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999435 -0.0325822 0.00820328 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.99996 0 0.00891354 -0.999709 0.0101461 0.0218943 -0.999957 0.00461839 0.00800692 -0.999884 -0.00762251 0.0132167 -0.999883 -0.00755591 0.0132666 -0.999853 0 0.0171601 -1 0 0 -1 0 0 -0.999904 0.00983201 0.00979032 -0.999896 0.0144173 0 -0.999923 0.0107354 -0.00619343 -0.999924 0.0102674 -0.00678368 -0.999993 0.00327168 0.00188705 -0.99999 0.00441881 0 -0.999979 0.00157726 -0.00625166 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.997108 -0.0537361 -0.0537345 -1 0 0 -1 0 0 -1 0 0 -0.999376 -0.0338832 0.00994138 -0.999226 -0.0393348 0 -0.999416 -0.0246053 -0.0237096 -0.999668 -0.02309 0.0114037 -0.999569 -0.0131629 -0.0262526 -0.99928 -0.00286352 -0.0378361 -0.999217 0 -0.0395683 -0.998649 0.0311999 -0.0415454 -0.999974 0.00275562 0.00663052 -0.999998 0.00190464 0 -0.99969 0.0144133 -0.0202863 -0.999917 -0.000615533 -0.0128757 -0.999443 -0.0150707 0.0297715 -0.999924 0 0.0122987 -1 -4.66636e-05 -0.000184956 -0.999954 0.00817168 0.00498959 -0.999977 0 0.00684398 -0.999649 0.0189326 0.0185443 -0.995757 0.0894878 0.0214673 -0.996312 -0.0449077 -0.0731137 -0.999751 -0.0223019 0 -0.998619 -0.0296274 0.0433848 -0.999829 -0.0151738 -0.0105872 -0.998689 0.044417 -0.0254509 -0.999845 0.00688183 -0.0162148 -0.999871 0 -0.0160416 -0.996303 -0.0692086 -0.0508915 -0.997263 0.00799645 0.0735042 -0.999947 0.0103298 0 -0.999718 0.0166212 -0.0169532 -1 0 0 0 1 0 0 1 0 0 0.837806 0.545968 -5.35095e-05 0.924403 0.381417 2.83641e-05 0.863724 0.503965 -7.66378e-05 0.990798 0.135346 0 0.970707 0.240266 0.000184336 0.924403 0.381417 5.97909e-05 0.997104 -0.0760524 -8.91832e-05 0.922472 -0.386065 0 0.849668 -0.527318 7.11255e-05 0.922472 -0.386065 0 0.975054 -0.22197 -6.11532e-05 0.914674 -0.404193 0 0.707425 -0.706788 0 0.707425 -0.706788 0 0.54936 -0.835586 1.57349e-05 0.209678 -0.97777 -0.999974 -0.00271345 0.00661467 0 0.232702 -0.972548 0 0.232702 -0.972548 0 0.54936 -0.835586 -1.0859e-05 0.532332 -0.846536 0 0.54936 -0.835586 0.000228063 0.379526 -0.925181 0 0.232702 -0.972548 0 0 -1 0 0 -1 -2.65703e-05 0.839138 -0.543919 3.51748e-05 0.979421 -0.201826 -0.000290535 0.88308 -0.469223 0 0.987656 -0.156638 -2.85962e-05 0.980186 -0.198077 0 0.14062 -0.990064 0.000154075 0.845752 -0.533576 -0.000267515 0.330121 -0.943939 0.000281656 0.566824 -0.823839 -4.01231e-05 0.205158 -0.978729 0.000578145 0.570922 -0.821004 -0.000535279 0.5125 -0.858687 0 0.570231 -0.821485 0 0.570231 -0.821485 -0.000100927 0.572842 -0.819666 -0.000204031 0.832483 -0.55405 4.14849e-05 0.20722 -0.978294 0 0.182789 -0.983152 0.000588093 0.409534 -0.912295 4.17444e-05 0.487855 -0.872925 0.00019963 0.888964 -0.457977 0 0.845423 -0.534097 0.000315617 0.942459 -0.334323 -0.000399265 0.93098 -0.36507 0 1 0 0 1 0 0 0.974087 -0.226174 3.04402e-05 0.959523 -0.28163 0 0.852244 -0.523144 3.36349e-05 0.881168 -0.472803 -5.55827e-05 0.922444 -0.386132 0 0.707425 -0.706788 0 0.707425 -0.706788 -3.48469e-06 0.544665 -0.838654 -0.000116819 0.379553 -0.92517 7.60686e-05 0.379553 -0.92517 8.47592e-05 0.371356 -0.928491 0 0.241339 -0.970441 -5.84271e-05 -0.341344 0.939938 0 0.553532 -0.832828 9.49709e-06 0.22052 -0.975383 0 0 -1 0 0 -1 0 -0.549937 -0.835206 8.21242e-05 -0.379553 -0.92517 0 -0.201929 -0.9794 -8.06666e-05 -0.379553 -0.92517 0 -0.707425 -0.706788 0 -0.707425 -0.706788 0 -0.817783 -0.575527 -6.06229e-05 -0.922444 -0.386132 0.000216586 -0.922444 -0.386132 3.75519e-05 -0.865138 -0.501533 0 -0.967806 -0.251696 -4.72839e-05 -0.983544 -0.180667 -0.999998 0.0018452 0.000772396 0 -1 0 0 -1 0 -0.0014397 -0.369937 -0.929056 0 -0.1828 -0.98315 0 -0.551447 -0.83421 5.52977e-05 -0.221885 -0.975073 0 -0.0383455 -0.999265 -5.13949e-05 -0.220497 -0.975388 0 -0.987656 -0.156638 -0.000872279 -0.924125 -0.382089 -0.00035695 -0.939429 -0.342743 4.41087e-05 -0.831196 -0.555979 0 -0.551447 -0.83421 0 -0.551447 -0.83421 0 -0.1828 -0.98315 -1.95939e-05 -0.834365 -0.551212 0 -0.982746 -0.184961 0 -0.837169 -0.546945 0 -0.55814 -0.829747 0 -0.1828 -0.98315 2.48161e-07 -0.878804 -0.477184 4.31489e-07 -0.558207 -0.829702 -0.000271964 -0.868202 -0.49621 -7.02038e-05 -0.557341 -0.830284 5.62548e-05 -0.830345 -0.557249 0 -0.5442 -0.838955 0 -0.1828 -0.98315 0.000840333 -0.544801 -0.838565 -0.000258116 -0.827564 -0.561372 0.000237975 -0.645732 -0.763564 -4.04931e-05 -0.977283 -0.21194 3.15249e-05 -0.979852 -0.199725 0.000107899 -0.971918 -0.235319 0.00059294 -0.861018 -0.508574 0.00171787 -0.667204 -0.744873 -0.000785559 -0.657869 -0.753132 0 -0.551447 -0.83421 2.37072e-05 -0.553974 -0.832534 0 -0.55814 -0.829747 0 -0.1828 -0.98315 0 -0.230178 -0.973149 -0.00104168 -0.172029 -0.985091 0 0 -1 0 0 -1 0 -0.186078 -0.982535 0 -0.546205 -0.837652 7.61627e-05 -0.379553 -0.92517 -1.07339e-05 -0.208708 -0.977978 -4.11181e-05 -0.475207 -0.879874 0 -0.707425 -0.706788 0 -0.707425 -0.706788 0 -0.849375 -0.527791 5.22209e-07 -0.973173 -0.230074 0 -0.97288 -0.23131 7.0541e-05 -0.922444 -0.386132 8.11442e-06 -0.839019 -0.544102 0 -1 0 0 -1 0 0 -0.971219 0.238187 -1.717e-06 -0.838479 0.544933 1.50443e-05 -0.977058 0.212975 1.2674e-05 -0.857 0.515316 0 -0.836467 0.548018 0.000176202 -0.924376 0.381483 -2.09075e-05 -0.982116 0.188278 0 -0.70678 0.707433 0 -0.70678 0.707433 0 -0.254554 0.967058 0.999881 0.00603396 -0.0142171 0.000113954 -0.390685 0.920524 0 -0.254554 0.967058 0 -0.254554 0.967058 0 -0.549439 0.835534 0 -0.549439 0.835534 0 -0.549439 0.835534 -0.000128847 -0.390685 0.920524 0 0 1 0 0 1 0.000908958 -0.742177 0.670204 -0.000445387 -0.911056 0.412283 0 -0.982746 0.184961 0 -0.86627 0.499577 0 -0.1828 0.98315 0 -0.86627 0.499577 0.000677054 -0.916703 0.399568 0 -0.999112 0.042145 -5.19213e-05 -0.975236 0.221168 0 -0.0383455 0.999265 5.15217e-05 -0.215973 0.976399 -0.000374046 -0.618506 0.78578 -7.40871e-05 -0.218676 0.975798 8.05667e-05 0.234386 -0.972144 -0.0159862 -0.953414 0.301241 0.00123927 -0.417773 0.908551 0 -0.574808 0.818289 -5.34288e-05 -0.22086 0.975305 0.00219573 -0.594136 0.804362 -0.000716968 -0.422726 0.906257 0 -0.574808 0.818289 -5.05694e-05 -0.573235 0.819391 0 -0.86627 0.499577 0 -0.982746 0.184961 -0.000256861 -0.306129 0.95199 0 -0.1828 0.98315 0 -0.564414 0.825492 0.000438233 -0.293792 0.955869 0 -0.574808 0.818289 -0.000538558 -0.529814 0.848113 -0.000136328 -0.853709 0.52075 0 -0.86627 0.499577 8.53206e-05 -0.849405 0.527742 4.58778e-06 -0.850807 0.525479 -0.00012712 -0.930742 0.365677 0 -0.972792 0.231679 5.17855e-05 -0.975475 0.22011 0 -1 0 0 -1 0 -0.000116516 -0.924353 0.381538 5.12789e-05 -0.924353 0.381538 0 -0.837703 0.546126 0 -0.970675 0.240396 0 -0.706788 0.707426 0 -0.706788 0.707426 0 -0.54936 0.835586 -7.04689e-05 -0.390685 0.920524 -7.61932e-05 -0.094339 0.99554 5.71741e-05 -0.415877 0.909421 0 -0.254588 0.96705 9.12061e-05 -0.390685 0.920524 0 0 1 0 0 1 -4.80824e-05 0.390685 0.920524 0 0.549439 0.835534 0.000121604 0.390685 0.920524 0 0.254554 0.967058 0 0.706788 0.707426 0 0.706788 0.707426 0 0.851869 0.523756 0.000175042 0.924353 0.381538 0 0.975182 0.221404 -0.999146 -0.0381904 -0.0157636 -7.08296e-05 0.924353 0.381538 -1.25816e-06 0.850373 0.52618 -9.1888e-06 0.979794 0.200009 0 1 0 0 1 0 0.00152884 0.976027 0.217644 -0.000134479 0.566348 0.824166 -0.00031854 0.782342 0.622849 0 0.182789 0.983152 5.2933e-05 0.975047 0.222001 0 0.824478 0.565894 -0.000370298 0.798165 0.602439 0.000147718 0.688031 0.725681 0 0.0383367 0.999265 -5.60673e-05 0.229787 0.973241 0 0.999102 0.0423736 6.22512e-07 0.182485 0.983209 -0.000265932 0.615565 0.788086 8.4696e-05 0.792878 0.60938 -0.0014204 0.876821 0.480814 0.000187725 0.837964 0.545725 -0.000161202 0.531836 0.846847 0 0.982746 0.184961 0 0.824478 0.565894 3.30489e-05 0.822462 0.56882 -3.16441e-05 0.533157 0.846016 0.000324459 0.687489 0.726195 -0.000340049 0.92715 0.37469 -4.87599e-05 0.977137 0.212611 0 0.982746 0.184961 7.791e-05 0.976657 0.214805 0.000459252 0.913796 0.406172 0.000193098 0.685077 0.728471 0 0.588572 0.808445 0 0.182789 0.983152 0 0.557296 0.830314 -0.000176432 0.564604 0.825362 5.01266e-05 0.208532 0.978016 5.5786e-05 0.230566 0.973057 0 0 1 0 0 1 0.00321304 0.976754 0.214339 -0.000301572 0.78476 -0.6198 -0.0011716 0.526264 0.85032 0.000692853 0.2468 0.969066 -0.000329697 0.78619 -0.617984 7.35468e-05 0.999471 -0.0325215 -2.78047e-05 0.929869 0.367891 0.000773602 -0.999021 0.0442238 0.000791581 -0.565355 0.824847 -0.00116924 -0.938204 0.346082 0.000104428 -0.693591 -0.720369 4.21501e-05 -0.638978 0.769225 -0.000916797 0.0679376 -0.997689 -0.000845885 -0.983309 -0.181942 -2.56122e-05 -0.685617 -0.727963 0.00131752 0.905747 -0.423817 -0.000172025 0.996355 0.0853054 0.000405302 0.913394 0.407076 -0.00131561 -0.0567249 0.998389 0.000560544 0.178056 -0.98402 0.0010488 0.550952 0.834536 -0.000644984 0.44247 -0.896783 0.000109013 0.43039 0.902643 0.000237941 -0.0513527 0.998681 -0.000554975 -0.15784 -0.987465 0.000466294 -0.00924396 0.999957 0 -0.683629 -0.72983 -0.000202626 -0.983655 -0.180063 -0.000916993 0.783029 0.621984 4.83344e-05 -0.936938 0.349496 -0.00040169 -0.643135 0.765752 0 -0.991579 -0.129503 0.000266129 -0.902438 0.430821 0.000467874 -0.447707 0.89418 -2.41482e-05 -0.676291 0.736635 4.7904e-07 -0.14687 -0.989156 2.23055e-06 -0.683872 -0.729602 0.000390722 0.458119 -0.888891 0.000258563 0.998486 0.0549998 0.00028059 0.808412 0.588617 -0.000659575 0.578313 0.815815 0.000152693 0.883159 -0.469073 -0.000490972 0.961076 -0.276285 -0.000115936 0.702688 -0.711498 -0.000369293 0.962577 0.271008 4.03821e-05 -0.150933 -0.988544 0.000419734 -0.992357 -0.1234 0.000701508 0.964796 0.262997 -0.00205767 -0.467873 0.883793 0.00055988 0.638896 0.769293 -7.41637e-05 -0.916843 0.399249 0.000249782 0.00354448 0.999994 -0.000423724 0.844672 0.535284 5.33831e-05 0.33761 -0.941286 0.000507369 -0.0483061 -0.998832 0.000202981 -0.578438 0.815727 0.000277298 -0.691546 -0.722332 -0.000357947 -0.481871 -0.876242 -0.00270066 0.556525 -0.830826 0.000580151 0.922932 -0.384963 -0.000214252 -0.895121 -0.445824 -0.000297884 0.432264 0.901747 0 -0.905852 0.423595 0 -1 0.000489077 0.00122709 -0.560633 -0.828063 -0.00131198 -0.00563375 -0.999983 -0.000725383 0.542841 -0.839835 0.000765506 0.366182 0.930543 -0.000186617 -0.203884 0.978995 7.15423e-05 -0.602018 0.798483 -2.30178e-05 0.992852 -0.119349 -2.4098e-07 0.996198 0.0871161 0.00126724 0.298472 -0.954417 0.000261924 -0.183186 -0.983078 0.000279997 0.832167 0.554525 -0.000357421 0.961393 0.275178 -0.000231274 0.788366 -0.615207 -0.000291031 0.693759 0.720208 0.000319611 -0.999587 0.0287368 0.000165949 -0.90774 0.419534 0.000305458 -0.589626 -0.807676 -0.000537911 -0.278791 -0.960352 -0.00012271 -0.894031 -0.448006 0.000393799 0.768316 -0.64007 0.000183365 -0.208339 0.978057 -2.41242e-05 -0.602411 0.798186 0.000287634 0.284377 0.958712 0.000141368 -0.568532 0.822661 -0.0002822 -0.956183 0.292771 0.00171127 0.299217 -0.954184 -0.000641484 0.983751 -0.179536 -0.000514429 -0.281463 -0.959572 -0.000257136 0.737532 -0.675312 -0.000281796 0.693665 0.720298 -0.000342892 -0.0165899 0.999862 -4.96153e-05 -0.902061 -0.431609 0.00117118 0.963735 0.266859 -0.000839736 0.741121 0.671371 0.000200348 0.97435 -0.225039 -0.00344919 0.864931 -0.501879 0.00670457 0.349375 -0.936959 0.000495515 -0.0267514 0.999642 0.000227685 0.527651 -0.849461 -0.000281273 -0.984124 0.177482 5.17569e-05 -0.69255 -0.72137 -0.00184648 -0.999983 0.00544512 0.000570251 -0.648607 -0.761123 -0.000824009 -0.0278564 -0.999612 0.000387772 0.9963 0.0859384 -0.000798059 -0.585015 0.811022 0.00120363 -0.995669 0.0929663 -0.000922262 0.854056 -0.520181 -6.63828e-05 0.599607 0.800295 -0.000157952 0.198286 0.980144 -0.000145803 -0.18548 0.982648 0.000124713 -0.690636 0.723202 -0.000101324 0.60628 0.795251 0.000100136 -0.132059 -0.991242 -0.000200908 0.982181 0.187939 -0.00012101 0.475244 -0.879854 0.000628865 -0.664956 0.746882 -0.000128443 -0.978073 -0.208262 0.000383347 -0.655473 -0.755218 -0.000189504 -0.173266 -0.984875 0.000131824 -0.706784 -0.70743 -4.49252e-05 -0.191253 0.981541 -3.06216e-05 -0.936699 0.350136 0.000411041 0.87519 -0.48378 4.35476e-05 0.222817 0.97486 0.000448256 0.429057 -0.903277 -0.000122131 0.772066 -0.635543 0.00129442 0.963371 0.268168 -0.000532896 0.986743 -0.162289 3.22358e-05 0.613853 0.78942 -0.000259812 0.307907 0.951417 0.00022635 -0.194739 -0.980855 6.64994e-05 -0.169508 0.985529 -0.000221908 -0.622631 0.782516 -0.000475027 0.277799 -0.960639 7.55948e-06 -0.937349 0.348391 0.000219432 -0.70595 -0.708261 -0.00141332 -0.335525 -0.94203 0.000405955 0.981185 -0.193071 -0.00015967 -0.612948 0.790123 0.000297266 0.94859 0.316506 -0.000495195 0.687051 0.726609 -0.00262078 0.0860428 0.996288 0.000723377 -0.358354 -0.933585 8.80608e-05 -0.976717 -0.21453 0.000370376 -0.993793 -0.111244 -0.000181814 -0.77544 -0.631422 0.00028862 0.265937 -0.96399 -0.000786208 0.793807 -0.60817 0.00064466 0.592639 -0.805468 -0.000112104 0.920739 -0.39018 -0.000329388 0.995993 0.0894358 -7.2118e-05 -0.944214 0.329334 4.06566e-05 -0.494699 -0.869064 2.42139e-05 -0.81292 -0.582376 -0.00030543 0.127862 -0.991792 0.000993002 0.0775551 0.996988 0.000256229 0.729646 0.683825 4.21733e-05 0.281033 0.959698 -0.000219424 -0.251223 0.967929 0.000334439 -0.643264 0.765645 0.000573382 -0.974217 0.225614 -0.000212392 -0.704695 0.70951 0.00020208 0.614162 -0.78918 8.37019e-05 0.921274 -0.388915 0.000573143 0.0853938 -0.996347 -3.56205e-05 0.339494 -0.940608 -4.99827e-05 0.996285 -0.0861157 0.000255496 0.996393 0.0848614 0.00029253 0.727453 0.686158 -4.38966e-05 0.279225 0.960226 4.0922e-05 -0.260303 0.965527 2.75906e-05 -0.71413 0.700014 -0.00132886 0.454545 0.890723 -0.000109003 0.970575 0.240798 -0.000188009 -0.291325 0.956624 -0.000424586 0.798359 -0.602182 0.000544115 -0.526601 -0.850112 0.00238664 0.556014 0.83117 0.000677263 -0.653857 0.756618 0.000394519 -0.993841 -0.110814 -0.000505152 -0.826852 -0.56242 -0.000525099 -0.97812 0.208043 0.000875608 0.434484 -0.900679 -0.000220455 -0.85092 -0.525294 -0.000434594 -0.161422 -0.986885 0.000308669 0.040645 -0.999174 -0.00621552 0.997986 0.0631361 -0.000369593 0.250687 0.968068 0.000749564 -0.348951 0.937141 -0.00179787 0.719555 -0.694433 0.000507389 0.784658 -0.619929 -8.76052e-05 -0.957754 0.287587 0.0013009 0.99268 0.120766 -0.000842388 -0.503179 0.864182 -0.00294686 0.930666 0.365857 0.0089585 0.568539 0.822608 0.00544044 -0.545042 0.838391 0.0147902 0.664973 -0.746721 0.00118195 -0.46017 -0.88783 0.000233461 0.997853 0.0654861 -0.000948986 -0.180807 -0.983518 -0.000671097 0.766939 0.641719 0.00150704 0.880421 0.47419 -0.000353865 -0.670731 -0.741701 -1.62794e-05 0.510083 -0.860125 -0.000782539 -0.317858 0.948138 0.00052161 -0.999711 -0.0240256 -0.000963776 -0.959485 -0.281756 -9.76932e-05 0.834934 -0.550349 9.75529e-05 -0.732784 0.680461 -0.000188626 -0.976809 0.214112 0.00108489 -0.0482495 -0.998835 1.40575e-05 0.355826 0.934552 -0.000338698 0.999797 -0.0201468 3.43104e-05 -0.183379 0.983042 -6.51611e-05 -0.682295 0.731077 -0.000630352 0.557363 0.830269 -0.000833676 0.681297 -0.732007 0.000489109 -0.97634 -0.216239 0.0014627 0.704761 -0.709443 -5.43032e-05 -0.997364 -0.0725556 -0.00110305 -0.684421 -0.729087 6.39583e-05 -0.961852 0.273569 0.000404503 0.993602 -0.112942 -0.000755805 0.892526 0.450995 0.000183183 0.533125 -0.846036 0.000418006 -0.541815 -0.840498 0.00037025 0.467 0.884257 0.000597139 0.988308 0.152471 -0.000145681 0.817 0.576638 -0.000114208 -0.181598 0.983373 -0.000152836 -0.477382 -0.878696 0.000535663 -0.0368071 -0.999322 -0.000114248 0.0408939 -0.999164 -0.000258618 -0.798141 -0.602471 0.000287902 0.826446 -0.563016 -2.76611e-05 0.95707 -0.289857 0.00351497 0.157875 0.987453 0.000141878 -0.41278 0.910831 4.91685e-05 -0.691178 0.722684 9.17396e-05 0.0627418 -0.99803 0.000368069 0.4667 0.884416 -0.00112121 0.630737 -0.775996 -8.67071e-05 -0.477509 -0.878627 0.000176565 0.818203 0.57493 -0.000408746 0.081135 0.996703 9.42012e-05 -0.412267 0.911063 6.05451e-05 -0.997591 -0.0693654 2.10221e-05 0.986317 0.164859 -0.000127823 0.977752 0.209763 0.000112316 -0.688999 0.724762 -0.000532825 0.645516 -0.763747 -0.000298531 -0.955452 0.295146 -0.000603192 0.9711 -0.238671 -0.00027817 -0.568242 0.822862 -0.000100939 -0.938704 0.344725 -0.000586384 0.111222 -0.993795 -0.00017452 0.686245 0.727371 0.000141786 0.467475 0.884007 0 -0.996209 -0.0869964 0 -0.805345 -0.592807 -8.93628e-06 0.40163 0.915802 3.09319e-05 -0.0147611 0.999891 1.78524e-05 -0.808859 -0.588003 -3.56694e-05 -0.468256 -0.883593 0.000626242 0.608822 -0.793307 -0.000983142 0.960236 -0.279187 0.000215541 0.512024 -0.858971 0.000380841 0.0497185 -0.998763 0.000203632 0.966191 0.257829 0.00015335 -0.495053 -0.868863 -0.000129238 0.121981 -0.992532 0.00181166 0.85349 -0.521106 -2.51068e-05 0.991608 -0.12928 0.000254927 0.703213 0.710979 -0.000785325 0.493932 0.8695 -0.000760064 0.951957 0.306232 0.000126764 -0.495756 -0.868462 0.000121364 -0.57492 0.81821 -0.00197736 0.386908 -0.922116 5.89884e-06 0.0518872 -0.998653 0.000230698 -0.995465 -0.0951266 2.08282e-05 -0.478854 -0.877894 0.000380378 0.0290302 0.999578 -6.21389e-05 -0.202957 0.979188 -0.000265431 -0.815493 -0.578767 -9.49815e-05 -0.837983 -0.545696 0.000311039 -0.932939 0.360035 -0.000202543 -0.982893 0.184178 0.000213605 0.23074 -0.973015 0.000613979 0.916257 0.400591 9.81666e-05 -0.579641 0.814872 -0.000552375 -0.817121 -0.576466 0.000640201 0.817964 -0.57527 0.000981492 0.59407 0.804412 -0.000231378 0.316011 0.948756 0.00366202 -0.353268 -0.935515 0.000112418 0.991192 -0.132435 0.00173677 0.285141 -0.958484 -0.000818581 0.964945 -0.262452 -0.000605776 0.839821 0.542864 -0.00372693 -0.435927 0.899974 0.0176225 0.999843 -0.00185682 0.0159005 0.999001 -0.0417714 0.000874048 -0.701203 -0.712961 -0.00440469 0.764346 -0.644791 0.000887071 0.101472 -0.994838 0.000349141 0.925399 0.378994 0.000751118 0.138745 0.990328 -0.000369066 0.972748 -0.231866 0.000907272 0.948082 0.318025 -0.00143837 0.544743 0.838602 0.000287232 0.0778859 -0.996962 -0.000559171 -0.572878 -0.81964 0.000535963 0.669524 -0.74279 0 0.983713 -0.179747 0 0.772427 -0.635103 0.000236181 -0.624159 0.781297 0.000196108 -0.999555 0.0298205 -0.000736081 -0.804924 0.593377 -0.0010704 -0.153311 0.988177 0 -0.497719 -0.867339 0.000531682 0.0385933 -0.999255 -0.000127833 0.479885 -0.877332 0.000149798 -0.211389 0.977402 0.000188677 0.518558 0.855042 0 -0.768102 -0.640328 7.10392e-05 0.937741 0.347334 -2.77096e-05 -0.999886 -0.0150852 -0.000243969 -0.839549 -0.543285 -0.000137261 0.909664 0.415345 -0.000154179 0.466986 0.884265 0.000571212 -0.186075 0.982535 -0.00058479 -0.805244 0.592943 0.000387023 0.976329 -0.21629 -3.30935e-05 0.999369 -0.0355315 -0.000336279 -0.999287 0.0377446 4.2081e-05 -0.751081 0.66021 7.47145e-05 -0.505749 -0.862681 -3.28278e-05 0.0110139 -0.999939 0.00105279 -0.236156 0.971715 -0.000126563 0.479795 -0.877381 4.24559e-05 0.774233 -0.632901 0.000842199 0.487926 0.872884 -0.000240201 0.329155 0.944276 -0.000314103 0.885998 -0.463688 0.000438233 0.934491 0.355987 -0.000227635 0.672356 0.740228 -0.000203527 0.675903 0.736991 6.64029e-05 0.99953 -0.0306568 -9.94974e-05 0.96523 0.261401 0.000310949 -0.44569 -0.895187 6.29927e-05 -0.0253724 -0.999678 0.0003739 -0.245436 0.969413 0.000262506 -0.850662 -0.525713 6.05156e-05 -0.804363 -0.594138 -0.000746582 -0.999801 0.0199336 0.000421469 0.321331 0.946967 -0.000453808 -0.517666 0.855583 0.000857835 -0.756858 0.653579 -0.000635746 0.0513659 0.99868 -9.88097e-05 0.487307 -0.873231 0.000292088 0.838228 -0.545321 -9.02581e-05 0.996225 -0.0868087 -0.00043481 -0.95391 0.300094 0.00117971 -0.98542 -0.170136 -0.00506047 -0.942283 -0.334779 6.33335e-06 -0.951957 0.306233 0.000911991 -0.920015 -0.391883 0.000192833 -0.540004 0.841662 1.40273e-05 -0.56474 0.825269 -0.0014141 -0.586503 -0.809946 -0.000381432 -0.449757 -0.893151 -0.00042137 -0.0475549 -0.998869 -0.000124229 0.0777308 0.996974 0.000537461 -0.0102854 0.999947 0.000484705 0.441297 -0.897361 5.43436e-05 0.995551 -0.0942196 0.000156495 0.663209 0.748434 -0.00118597 0.0259429 -0.999663 -3.79066e-05 0.616927 -0.78702 0.000184542 0.830946 -0.556353 -0.000368439 0.96131 0.275467 -0.000350664 0.962548 0.27111 -0.000573203 0.519924 0.854213 -0.000894196 0.478158 -0.878273 0.00112651 0.963962 0.266037 0.000192791 -0.942184 0.335096 0.00120722 -0.674662 -0.738126 0.000253792 0.0840043 -0.996465 -0.000403087 0.9671 -0.254398 0.000958736 -0.554037 0.832491 -0.000742322 -0.05425 -0.998527 0.00353128 0.347973 0.937498 -0.00108093 0.870566 0.49205 0.000221494 -0.976592 -0.2151 -0.00101067 -0.216436 0.976296 -0.00362587 -0.134772 0.99087 0.00257679 -0.197668 -0.980266 0.000506187 0.557437 -0.830219 -0.000226265 0.96211 -0.272662 -0.000228096 -0.92055 0.390624 -0.00111168 -0.888141 -0.459569 0 0.70678 0.707433 0 0.70678 0.707433 0 0.254554 0.967058 0 0.254554 0.967058 0 0.54936 0.835586 -9.6898e-05 0.390657 0.920536 -0.999736 -0.00898386 -0.0211694 6.7604e-05 0.390657 0.920536 0 0.54936 0.835586 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999343 0.0362524 0 0.998225 -0.0515828 -0.0297588 0.998965 0.0160973 0.0425516 0.999787 -0.017883 0.010317 0.999718 -0.0237578 0 1 0 0 0.999837 -0.0127878 -0.0127346 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.0275764 -0.706827 -0.706848 1 0 0 1 0 0 1 0 0 0.999848 0 -0.017443 0.999896 0.00721429 -0.0125089 0.996698 0.069167 0.042536 0.997906 0.0323157 0.0560258 0.998188 0 0.0601668 0.99783 -0.0608933 -0.0250499 0.999973 -0.00711503 0.00157545 0.999977 -0.0066143 0.00166532 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999839 0.0173833 0.0043767 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999998 0 -0.00192695 0.999998 0.000890643 -0.00154411 0.999934 0.00575547 0.00997829 0.999886 0.013515 0.0067755 0.99994 0 0.0109825 1 0 0 1 0 0 0.99999 -0.00314517 0.0031321 0.999985 -0.00545494 0 0.999962 -0.00754523 0.00428496 0.999945 -0.00912137 -0.00526225 0.99994 -0.00948437 0.00547167 0.999942 -0.00943839 0.00526738 0.999921 -0.0125837 0 0.999799 -0.004901 -0.0194257 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.997121 0.0536223 -0.0536223 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999693 -0.00605849 0.0240135 0.999777 0.0210707 0.001059 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999722 -0.0235596 0 0.999414 0.0296559 0.017105 0.998964 -0.000676746 -0.0455087 0.999724 0.0203548 -0.011743 0.999771 0.0213798 0 1 0 0 1 0.000677664 0.000679583 0.999863 -0.00257733 0.0163364 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.000574058 0.885766 0.464131 0.98127 0.136219 0.136211 1 0 0 1 0 0 1 0 0 1 0 0 0.999999 0 0.00173701 0.999998 -0.000972877 0.00168668 0.999996 0.00136812 0.00237192 0.999964 -0.00826396 -0.00209817 0.999976 0 -0.00697297 0.999945 0.0102058 -0.00256953 0.99998 0.00418357 0.00479939 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999975 -0.0068332 -0.0017204 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.99992 0 -0.0126161 0.996821 0.0398084 -0.069016 0.997409 -0.0576738 -0.0429894 0.997271 -0.0368853 -0.0639555 0.99829 0 -0.0584596 1 0 0 1 0 0 0.999558 0.0209991 -0.0210586 0.999681 0.025206 0.00176529 0.999739 0.0228331 0 0.99969 0.0215586 0.0124375 0.999367 0.0311028 -0.017265 0.999369 0.0307783 -0.0177524 0.999259 0.0385013 0 0.999288 0.0377057 0.000920547 0.995641 0.0228156 0.0904322 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.967776 -0.178062 0.178057 0.0131584 -0.886099 0.46331 1 0 0 1 0 0 0.999043 -0.0253696 -0.0356248 0.998873 0.0318895 0.0351612 0.999402 0.0106754 -0.0329035 0.999248 0.00948811 -0.0376072 0.997027 0.0485504 -0.0598391 0.995562 -0.0367642 -0.0866303 0.996598 0 -0.0824179 0.996393 0.00599686 -0.0846434 0.998038 -0.061563 0.0113884 0.998118 -0.0613306 0 0.997255 -0.0399038 0.0623752 0.999981 -0.00572512 -0.00236272 0.999983 0.00224103 0.00546256 0.999978 0 0.00666738 0.997859 -0.0399053 0.0518165 0.999255 0.00806963 0.0377285 0.999424 0.0331752 0.00719621 0.998479 0.0375321 -0.0403804 0.99999 0.00453854 0 0.99999 0.00412082 0.00172496 0.999773 -0.021282 0.000621631 0.999934 -0.00797669 -0.00832784 0.999939 -0.00209444 0.0108606 0.999973 -0.00732144 0 0.998565 -0.0428292 -0.0321384 0.999095 -0.0312244 -0.0288887 0.992272 0.0226929 0.121988 0.995614 0 0.093555 0.996772 -0.0304722 0.0742829 0.999921 0.011633 -0.00480086 0.999857 0.0001486 -0.0169321 0.999998 0.00176893 0 0.987177 0.0864105 0.134223 0.989115 0.0879994 0.117929 0.972206 -0.0383702 -0.23096 0.979986 0 -0.199065 0.981083 0.0756325 -0.178204 0.963984 -0.199813 -0.175528 0.999971 -0.00752017 0.000981033 0.999705 -0.0192738 0.0148113 1 0 0 1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.707687 0.706526 0 -0.707687 0.706526 0 -1 0 0 -1 0 0 -0.866238 0.499631 0 -0.866238 0.499631 0 -0.866189 -0.499717 0 -0.866189 -0.499717 0 -1 0 0 -1 0 0 -0.706733 -0.707481 0 -0.706733 -0.707481 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0.00064233 0.763916 -0.645315 -0.000543313 -0.792874 0.609386 -5.34642e-05 -0.951058 0.309013 0 -0.999002 0.0446574 -8.48345e-05 -0.537362 0.843352 0 -0.187325 0.982298 -1.48159e-05 -0.790809 0.612063 -0.000144258 -0.378867 0.925451 3.6398e-08 -0.493605 0.869686 -0.000137936 -0.738949 0.673762 0 -0.964205 0.265159 0 -0.766565 0.642166 4.76437e-05 -0.49774 0.867327 0.000224835 -0.766565 0.642166 -7.39306e-05 -0.951126 0.308802 -8.30599e-06 -0.809684 0.586867 4.39714e-05 -0.964622 0.263639 7.64497e-05 -0.812836 0.582492 7.89317e-05 -0.280628 0.959817 4.69733e-05 -0.964004 0.265888 -0.000107163 -0.745833 0.666133 -0.00036484 -0.463206 0.886251 -0.000363791 -0.8913 0.453413 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.707687 0.706526 0 0.707687 0.706526 0 0 1 0 0 1 0 0.499599 0.866257 0 0.499599 0.866257 0 -0.499642 0.866232 0 -0.499642 0.866232 0 0 1 0 0 1 0 -0.707681 0.706532 0 -0.707681 0.706532 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.707681 0.706532 0 0.707681 0.706532 0 0 1 0 0 1 0 0.499642 0.866232 0 0.499642 0.866232 0 -0.499642 0.866232 0 -0.499642 0.866232 0 0 1 0 0 1 0 -0.707681 0.706532 0 -0.707681 0.706532 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 -0.000141542 0.404822 0.914396 0 0.187325 0.982298 5.9348e-05 0.966238 0.257652 0 0.187325 0.982298 0.000222747 0.914594 0.404374 0 0.994153 0.107979 -3.24413e-05 0.302745 0.953072 0.000423498 0.712769 0.701399 -0.000451474 0.783316 0.621624 -7.03807e-05 0.813126 0.582088 -0.000291489 0.887695 0.460433 5.46905e-05 0.821663 0.569973 -7.57306e-05 0.822772 0.568372 -0.00030716 0.913312 0.407261 -5.55357e-05 0.968799 0.247846 0.000203213 0.871377 0.490615 0.000194078 0.608768 0.793348 -0.000204533 0.494234 0.869329 0 0.494234 0.869329 0.000186909 0.593227 0.805035 -0.000475097 0.593227 0.805035 0.000185628 0.25411 0.967175 0.00042805 0.154046 0.988064 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.706727 -0.707487 0 0.706727 -0.707487 0 1 0 0 1 0 0 0.866189 -0.499717 0 0.866189 -0.499717 0 0.866238 0.499631 0 0.866238 0.499631 0 1 0 0 1 0 0 0.707681 0.706532 0 0.707681 0.706532 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.706715 -0.707498 0 0.706715 -0.707498 0 1 0 0 1 0 0 0.866189 -0.499717 0 0.866189 -0.499717 0 0.866189 0.499717 0 0.866189 0.499717 0 1 0 0 1 0 0 0.707681 0.706532 0 0.707681 0.706532 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 8.97604e-05 0.986331 -0.164774 0 0.998898 -0.0469328 0.000127063 0.39362 -0.919273 0.000335065 0.446428 -0.894819 0 0.164266 -0.986416 0.000154066 0.504977 -0.863133 -4.25617e-05 0.962891 -0.269892 -7.58833e-06 0.960044 -0.27985 4.01473e-05 0.965988 -0.258587 1.22774e-05 0.802847 -0.596185 1.23251e-05 0.438695 -0.898636 -3.39388e-06 0.810465 -0.585787 0.000401375 0.863859 -0.503734 -2.96212e-06 0.170825 -0.985301 -0.000180414 0.734188 -0.678946 2.6813e-05 0.800638 -0.599148 5.4781e-05 0.902649 -0.430378 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.706727 -0.707487 0 -0.706727 -0.707487 0 0 -1 0 0 -1 0 -0.499642 -0.866232 0 -0.499642 -0.866232 0 0.499642 -0.866232 0 0.499642 -0.866232 0 0 -1 0 0 -1 0 0.706727 -0.707487 0 0.706727 -0.707487 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.706727 -0.707487 0 -0.706727 -0.707487 0 0 -1 0 0 -1 0 -0.499642 -0.866232 0 -0.499642 -0.866232 0 0.499599 -0.866257 0 0.499599 -0.866257 0 0 -1 0 0 -1 0 0.706733 -0.707481 0 0.706733 -0.707481 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 -0.00102721 -0.901565 -0.432642 -0.000191203 -0.451382 -0.892331 0 -0.1776 -0.984103 0 -0.984698 -0.174271 -2.21842e-05 -0.81146 -0.584407 0.000415394 -0.892657 -0.450737 -0.00014025 -0.513176 -0.858283 3.51301e-05 -0.969969 -0.243229 -0.000231596 -0.859497 -0.511141 -2.40199e-05 -0.827473 -0.561506 -2.41213e-05 -0.546299 -0.83759 0.000411045 -0.483523 -0.875332 -0.000175292 -0.925676 -0.378317 3.2073e-05 -0.806836 -0.590775 -4.81197e-05 -0.963207 -0.268763 0.000441263 -0.861657 -0.507491 -1.95418e-05 -0.918179 -0.396165 -0.00011337 -0.447463 -0.894302 -0.000251818 -0.420226 -0.907419 6.36544e-05 -0.46679 -0.884368 3.32347e-05 -0.24283 -0.970069 0.000269657 -0.447169 -0.894449 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.707687 0.706526 0 -0.707687 0.706526 0 -1 0 0 -1 0 0 -0.866189 0.499717 0 -0.866189 0.499717 0 -0.866189 -0.499717 0 -0.866189 -0.499717 0 -1 0 0 -1 0 0 -0.706721 -0.707492 0 -0.706721 -0.707492 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999857 -0.0168991 0 -0.999901 0.00632726 -0.0126053 -0.999741 -0.0197194 0.0113738 -0.999769 -0.0186202 -0.0107423 -0.999857 -0.0168991 0 -1 0 0 -0.995523 0.0667426 -0.0669316 -0.98894 0.124648 0.0803748 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.00812901 -0.707094 0.707073 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.991944 0 -0.126677 -0.993039 -0.0588467 -0.102034 -0.991735 -0.0210718 -0.126563 -0.994597 0.0518695 -0.0899263 -0.994625 0 -0.103542 -0.995266 -0.0962461 0.0134647 -0.999825 -0.0181582 -0.00457172 -0.999517 -0.0257827 -0.0173447 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999989 0.00460805 -0.00116017 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999869 0 -0.0162127 -0.99987 0.01597 0.00205833 -0.999871 -0.00803129 -0.0139239 -0.998488 0.0274699 -0.0476247 -0.99823 0.0433228 -0.0407461 -0.998598 0 -0.052926 -1 0 0 -1 0 0 -0.999474 -0.0229045 -0.0229694 -0.999232 -0.0339894 0.0194736 -0.999967 -0.0081013 0 -0.999965 -0.00720536 0.00415687 -0.999949 -0.00507297 0.00873217 -0.999999 0.00116981 0.000674724 -0.999999 0.00154318 0 -0.999998 0.000435801 -0.00172735 -0.989987 -0.107214 0.0918182 -0.99555 0.0357654 0.0871791 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.996785 0.0566531 0.0566498 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999358 0.0087663 0.0347462 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.99979 0.0204957 0 -0.999897 0.0139049 0.003412 -0.999557 0.0257859 -0.0148763 -0.999704 0.0210635 0.0121518 -0.99979 0.0204957 0 -1 0 0 -0.999917 -0.00914936 0.00911134 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.99975 0.0158153 -0.0158153 -0.999938 -0.00189666 0.0109397 -1 0 0 -1 0 0 -1 0 0 -0.999839 0 0.0179347 -0.999856 0.00847272 0.0146892 -0.998596 -0.0338432 0.040762 -0.998671 -0.0257514 0.0446452 -0.998709 0 0.0508001 -0.999212 0.0396553 0.00189735 -0.999685 0.0243264 0.00612481 -0.997463 0.0512509 0.0494007 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.998905 -0.0453596 0.0114204 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999996 0 -0.002787 -0.999266 0.01795 0.0338325 -0.999992 -0.00204709 -0.00354904 -0.999995 0.00165934 -0.00287714 -0.999996 0 -0.002787 -1 0 0 -1 0 0 -0.999999 -0.00102544 -0.00102118 -0.999965 -0.00264867 0.00792679 -0.99997 0.00769325 0 -0.999968 0.00698522 -0.00402987 -0.999741 0.0154777 0.0166807 -0.999775 0.0183812 0.0106044 -0.999781 0.0209403 0 -0.999904 0.0113941 -0.00789675 -0.99955 0.00734194 -0.0291006 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999946 -0.00731945 -0.00731967 -1 0 0 -1 0 0 -1 0 0 -0.999289 -0.00825182 -0.0368019 -0.999992 0.00369876 0.00152645 -0.999994 0.00354579 0 -0.997583 -0.0236475 0.0653414 -0.997534 0.0700948 0.00370174 -0.999997 0 0.00245943 -0.999644 -0.0256891 -0.00722806 -0.995015 0.0580856 -0.0810646 -0.995668 0.0857706 0.0359033 -0.996355 0.0853088 0 -0.995267 0.0952435 -0.0192902 -0.99935 0.0248623 0.0261025 -0.99524 0.000991082 0.097448 -0.995154 0 0.0983292 -0.999992 0.00100842 0.00399698 -0.999944 -0.00986261 -0.00372955 -0.999936 0.00429962 -0.0104813 -0.999958 0 -0.00911949 -0.999871 0.0141748 -0.00756909 -0.999783 0.0202674 -0.00478009 -0.99954 0.00465205 -0.0299707 -0.999954 0.0095681 0 -0.999438 2.5643e-05 0.0335086 -0.999756 0.00444214 0.0216389 -0.999404 -0.0222595 -0.0263976 -0.999657 -0.0102362 0.0241182 -0.99943 0 0.0337631 -0.996636 -0.0573835 -0.0585217 -0.996242 -0.0586974 -0.0636908 -0.995457 0.0869913 0.0387062 -0.997191 0.0749072 0 -0.996236 0.0801249 -0.033067 -1 0 0 -1 0 0 0 1 0 0 1 0 0 0.843655 0.536885 0 0.976988 0.213295 -7.75141e-05 0.924403 0.381417 7.42367e-05 0.924403 0.381417 0 0.960645 -0.27778 -3.39054e-06 0.837337 -0.546686 0 0.843319 -0.537413 -2.91398e-05 0.976428 -0.215844 -1.56853e-05 0.952712 -0.303875 -3.21611e-05 0.885021 -0.465551 0 0.707425 -0.706788 0 0.707425 -0.706788 0 0.54936 -0.835586 0.000159022 0.379526 -0.925181 0 0.232702 -0.972548 -1.41455e-05 0.198027 -0.980197 -9.16584e-05 0.379526 -0.925181 3.02071e-05 0.4682 -0.883623 0 0 -1 0 0 -1 7.21008e-05 0.530647 -0.847593 0 0.544154 -0.838985 0 0.182789 -0.983152 -3.77878e-05 0.205353 -0.978688 0 0.999102 -0.0423736 -4.88289e-05 0.977536 -0.210767 0 0.154044 -0.988064 -9.62976e-05 0.971818 -0.235731 -0.000272881 0.679062 -0.734081 0.000120968 0.832063 -0.55468 0 0.182789 -0.983152 0 0.544154 -0.838985 0.000393938 0.47996 -0.877291 -8.01553e-05 0.571097 -0.820882 0.000362178 0.415234 -0.909714 -0.00114151 0.291464 -0.956581 -5.48333e-05 0.199894 -0.979818 4.02211e-05 0.20914 -0.977886 -0.000633471 0.546987 -0.837141 0 0.544154 -0.838985 0.000119918 0.546512 -0.837452 0 0.829856 -0.557978 -6.31338e-05 0.841742 -0.53988 4.6052e-05 0.839948 -0.542667 0 0.829856 -0.557978 -0.00049003 0.81397 -0.580907 0 0.972809 -0.231607 0 0.982746 -0.184961 5.19539e-05 0.975295 -0.220908 0.000802688 0.921619 -0.388096 0 1 0 0 1 0 0 0.972742 -0.231888 4.7336e-05 0.954231 -0.299071 3.50691e-05 0.883378 -0.468661 0 0.840211 -0.542259 -0.000103807 1 0.00025446 0.000274498 -0.98658 -0.163281 -3.69368e-05 0.868346 -0.495959 -3.54625e-05 0.951108 -0.308858 -2.06323e-05 0.958517 -0.285036 4.30331e-05 0.889152 -0.457612 0 0.707433 -0.70678 0 0.707433 -0.70678 0 0.549439 -0.835534 7.33963e-05 0.379553 -0.92517 0 0.232702 -0.972548 -7.35451e-05 0.379553 -0.92517 0 0 -1 0 0 -1 0 -0.232733 -0.972541 0.00010673 -0.379553 -0.92517 0 -0.54936 -0.835586 -5.59859e-05 -0.379553 -0.92517 0 -0.707433 -0.70678 0 -0.707433 -0.70678 0 -0.835733 -0.549137 0.000148131 -0.922444 -0.386132 4.45621e-06 -0.843138 -0.537698 0 -0.970143 -0.242536 -8.62719e-05 -0.922444 -0.386132 -7.62212e-06 -0.974604 -0.223935 0 -1 0 0 -1 0 -0.000591314 -0.527277 -0.849693 2.40457e-05 -0.842235 -0.539111 0 -0.154058 -0.988062 0 -0.99229 -0.123938 3.78853e-05 -0.978992 -0.203899 0.000264317 -0.56789 -0.823105 0.000364449 -0.810879 -0.585214 -0.000222426 -0.953027 -0.302886 0.000104547 -0.839814 -0.542875 -2.04666e-05 -0.572565 -0.81986 0 -0.575567 -0.817755 0 -0.1828 -0.98315 -0.000274561 -0.904001 -0.427529 -7.44145e-05 -0.85531 -0.518117 4.01029e-05 -0.209167 -0.97788 0 -0.564399 -0.825502 8.40541e-05 -0.564647 -0.825333 0.000582291 -0.411604 -0.911363 0.000227193 -0.851107 -0.524992 -4.71978e-05 -0.977865 -0.209235 0.000656576 -0.860297 -0.509793 0.000500422 -0.903089 -0.429453 0 -0.572034 -0.82023 -9.86293e-06 -0.571495 -0.820606 -2.48541e-05 -0.568382 -0.822765 -0.000784353 -0.397318 -0.917681 0 -0.1828 -0.98315 0.0006811 -0.473881 -0.880589 -4.41835e-05 -0.213829 -0.976871 0 -0.1828 -0.98315 0 0 -1 0 0 -1 0 -0.204994 -0.978763 7.96067e-05 -0.379553 -0.92517 0 -0.525056 -0.851068 -6.91673e-05 -0.379553 -0.92517 0 -0.707425 -0.706788 0 -0.707425 -0.706788 0 -0.840306 -0.542112 0.000261213 -0.922444 -0.386132 0 -0.840306 -0.542112 0 -0.972726 -0.231956 -7.31345e-05 -0.922444 -0.386132 0 -0.972726 -0.231956 0 -1 0 0 -1 0 0.000176202 -0.924376 0.381483 0 -0.850981 0.525197 0 -0.977878 0.209175 -4.64376e-05 -0.924376 0.381483 0 -0.70678 0.707433 0 -0.70678 0.707433 0 -0.549439 0.835534 0.000114932 -0.390685 0.920524 0 -0.549439 0.835534 0 -0.254554 0.967058 0 -0.549439 0.835534 0 -0.254554 0.967058 0 -0.254554 0.967058 -9.74629e-05 -0.390685 0.920524 0 0 1 0 0 1 0.000181367 -0.544827 0.838549 0 -0.1828 0.98315 8.9469e-05 -0.878134 0.478414 -4.81427e-05 -0.559763 0.828653 8.04212e-05 -0.238665 0.971102 0 -0.987844 0.155452 -3.66881e-05 -0.977919 0.208986 0 -0.0383455 0.999265 5.20968e-05 -0.219057 0.975712 -0.000769504 -0.920778 0.390086 2.60203e-05 -0.84182 0.539759 8.60248e-05 -0.559954 0.828524 0 -0.557236 0.830354 0 -0.557236 0.830354 0 -0.840419 0.541938 0 -0.230178 0.973149 0 -0.546321 0.837576 -3.64263e-05 -0.548242 0.83632 -4.1661e-05 -0.546229 0.837636 -0.000142289 -0.839272 0.543712 -0.000896938 -0.36276 0.931882 -0.000158002 -0.251897 0.967754 -5.31676e-05 -0.21884 0.975761 0.00122714 -0.390594 0.920562 0 -0.983067 0.183244 0 -0.840419 0.541938 0.000561618 -0.853944 0.520364 -0.000391272 -0.853668 0.520818 0.000350153 -0.936698 0.350139 3.6123e-05 -0.979649 0.200716 0 -1 0 0 -1 0 0 -0.977878 0.209175 -2.81655e-05 -0.961086 0.276249 0 -0.850981 0.525197 4.45928e-05 -0.795456 0.606011 -0.000112398 -0.924376 0.381483 7.377e-05 -0.924376 0.381483 0 -0.70678 0.707433 0 -0.70678 0.707433 0 -0.54936 0.835586 0 -0.254588 0.96705 0.000142911 -0.390685 0.920524 0 -0.254588 0.96705 0 -0.54936 0.835586 -0.000123851 -0.390685 0.920524 0 0 1 0 0 1 0 0.254554 0.967058 0 0.549439 0.835534 -1.45767e-06 0.5521 0.833778 -2.96793e-05 0.203981 0.978975 0 0.549439 0.835534 -0.000105934 0.390685 0.920524 0.000234015 0.390685 0.920524 0 0.254554 0.967058 0 0.70678 0.707433 0 0.70678 0.707433 0 0.837806 0.545968 0 0.837806 0.545968 7.08344e-05 0.924376 0.381483 0 0.970675 0.240396 0 0.970675 0.240396 -0.000114806 0.924376 0.381483 0 1 0 0 1 0 -5.04835e-05 0.210786 0.977532 -0.000124089 0.822318 0.569028 0 0.0383367 0.999265 0 0.999102 0.0423736 0.00116269 0.737483 0.675365 -0.000547611 0.412391 0.911007 -6.50586e-05 0.826519 0.562909 0 0.983067 0.183244 0 0.833958 0.551828 0 0.568038 0.823002 0 0.182789 0.983152 -0.000165916 0.566706 0.82392 -0.000462018 0.410314 0.911944 4.98663e-05 0.210238 0.97765 0 0.983067 0.183244 0 0.833234 0.552921 0 0.182789 0.983152 -0.00040049 0.509963 0.860196 0.000499862 0.938003 0.346627 0.000609215 0.327418 0.944879 -0.00042484 0.950107 0.311925 -4.95972e-05 0.977194 0.212348 4.86854e-05 0.977539 0.210756 -0.00071366 0.875085 0.48397 0.000169533 0.829874 0.557951 0.000722953 0.887439 0.460925 -0.000349934 0.840255 0.542191 0.000121927 0.559068 0.829122 0.000429664 0.391516 0.920171 8.32856e-05 0.538916 0.842359 0 0.54885 0.835921 0.000412488 0.345684 0.938351 0 0 1 0 0 1 0.000613142 -0.0894207 0.995994 0.00100033 -0.829094 0.559108 0.00314081 -0.831476 -0.555551 0.000966323 0.441683 -0.897171 -0.0040416 -0.323472 -0.946229 0.000594345 0.991137 -0.132842 0.000338109 0.716373 0.697717 0.00358385 -0.841684 -0.539958 -0.00116341 0.133063 0.991107 -0.00162392 -0.992822 0.119588 0.0272496 0.514551 -0.857027 -0.000175925 0.564141 -0.825678 -0.000157618 0.92864 -0.370983 -0.000195913 0.993514 0.113708 -0.00144188 -0.563311 0.826244 0.000956203 0.210248 0.977648 0.000287708 -0.854015 -0.520248 0.00106393 -0.975305 0.220859 8.6653e-06 -0.487057 -0.87337 0.000128858 0.583927 -0.811806 -0.000942615 -0.566973 0.823736 0.00150249 -0.397932 0.917414 0.000483396 -0.604747 0.796417 1.50799e-05 -0.880283 0.474449 1.20206e-05 0.750147 0.661271 0.000111846 -0.504743 -0.86327 0.000103815 -0.820891 -0.571085 -0.000211051 0.0790656 -0.996869 -7.06602e-05 0.10768 -0.994186 0.000100126 0.286065 0.95821 6.10235e-05 0.754331 0.656494 0.000190058 -0.996588 0.0825326 -9.88026e-05 -0.996247 -0.0865605 -0.000543233 -0.905377 0.424609 0 -0.50443 -0.863453 0.000458551 0.556021 -0.831168 0.000313317 0.737231 0.675641 -0.000202712 0.746728 -0.665129 0.000120625 0.933753 -0.357919 0.000214903 0.991345 0.131286 -0.000130696 0.974734 0.22337 0.000159945 0.294352 0.955697 0 -0.637457 0.770486 -0.000274488 0.976442 -0.215782 0 -0.818264 -0.574842 -0.000104306 -0.185145 0.982711 0.000253726 0.109905 -0.993942 -0.000478988 -0.412703 -0.910866 -0.000319063 0.22941 -0.97333 0.000512935 0.217015 -0.976168 2.88652e-05 -0.997057 -0.0766633 0.000113223 0.297611 0.954687 0 -0.933818 0.357749 -3.74166e-05 -0.176176 0.984359 0.00102587 -0.44455 -0.895753 7.12417e-05 0.705326 0.708883 -0.000316231 0.473707 -0.880682 0.000148042 0.74613 -0.665801 0.000263387 0.976706 -0.214583 -4.59309e-05 -0.938718 0.344685 -0.000117889 -0.211763 0.977321 2.62499e-05 -0.645609 0.763668 -0.000265684 -0.982814 -0.184598 0.000121138 -0.802316 -0.5969 -0.000469757 -0.133975 -0.990985 -0.000802755 -0.639989 -0.768384 -9.21578e-05 0.385943 0.922523 -0.000123508 0.80686 -0.590743 8.63372e-05 0.969467 0.24522 0.000183361 -0.666414 -0.745581 -0.00036648 -0.126606 -0.991953 0.000210867 -0.932516 0.361129 -9.25269e-05 0.996496 -0.0836399 -0.000205755 -0.982623 -0.185612 -2.93574e-05 -0.676729 -0.736232 -0.000174167 -0.983558 -0.180591 0.000196985 0.976223 0.216766 -0.000247187 0.739522 0.673132 -7.93975e-05 0.475146 -0.879907 -0.000545056 0.798682 -0.601753 0.000180211 -0.648913 0.760863 -0.00225292 -0.0681201 -0.997675 0.000271697 0.349126 0.937076 5.55848e-05 0.787711 0.616045 0.00287722 0.330975 -0.943635 5.00718e-05 0.745673 -0.666312 -3.13603e-05 0.996754 -0.0805078 0.000111545 -0.926498 0.376299 -0.000357583 0.999928 -0.0119929 0.000493725 -0.152172 0.988354 -0.000119618 -0.565061 0.825049 -0.00175152 -0.500396 -0.865795 -0.000616645 -0.953705 0.300744 0.000719709 -0.981848 -0.189667 0.00692784 -0.177673 -0.984065 -0.00205628 -0.904718 -0.426006 -0.000866385 0.148537 0.988907 -0.00120339 0.679545 -0.733633 0.00174305 -0.165255 0.986249 -0.00092973 -0.413647 0.910437 -0.00137559 -0.972621 0.232393 0.000638395 0.864078 -0.503358 0.00104819 0.105325 -0.994437 0.00189811 0.852722 0.522362 -0.00109702 0.997742 0.0671487 -0.000188437 0.20255 0.979272 -0.000194762 0.735199 0.677851 0.001166 -0.917588 0.397531 -0.000867715 -0.728305 -0.685253 -0.00112168 -0.973112 -0.230332 -0.000548301 0.323303 -0.946295 0.00086629 -0.8053 -0.592866 0.000219294 0.832898 -0.553426 -0.00100043 -0.188106 -0.982148 0.000291828 -0.823266 -0.567656 0.000325852 -0.999999 0.00153371 0.000533069 0.711705 0.702478 6.16117e-05 -0.401127 0.916023 1.61281e-05 -0.951145 -0.308744 0.00020892 -0.244678 -0.969604 0.000376388 -0.436505 0.899702 0.000282212 0.999956 0.0093279 -0.000455208 0.189548 0.981871 0 -0.176152 -0.984363 0.000124667 -0.844961 0.534828 0 0.608799 0.793325 0 0.118602 0.992942 0.000286939 -0.840162 0.542336 -0.000380182 -0.993761 0.111532 -4.37619e-05 0.861967 -0.506964 0 0.419364 -0.907818 0.000312895 0.999998 0.00206561 -0.00024041 -0.70252 -0.711664 -0.000298236 0.908012 0.418945 0 0.419364 -0.907818 0.000225678 0.927882 0.372873 0.000248416 -0.981648 0.190701 -0.00025218 -0.963803 -0.266614 0.000403483 -0.43599 0.899951 -0.000199572 -0.741261 0.671216 0.000231472 0.1253 0.992119 0 0.862905 -0.505366 -0.00157704 0.609436 0.792834 -0.000365 -0.259724 0.965683 -0.000321097 0.459821 0.888012 -2.08433e-06 0.863111 -0.505014 -0.000145062 0.998091 -0.0617569 0.000489338 -0.71485 -0.699277 -0.000122602 0.00489503 -0.999988 0.000647384 0.4993 -0.866429 0.000437941 -0.196267 -0.98055 0.00347741 0.407644 0.913134 -0.000393346 -0.448138 -0.893964 2.60772e-05 0.99296 -0.118452 -3.47936e-05 0.934171 0.356825 -4.9234e-05 -0.969222 -0.246189 4.09475e-05 -0.766582 -0.642146 0 0.521306 -0.85337 0.000296942 -0.731264 0.682094 0.000775331 -0.238017 0.971261 -8.3299e-05 -0.528699 0.848809 0 0.863283 -0.504721 8.87925e-05 -0.979725 0.200347 -9.80438e-05 -0.843422 0.537251 -1.14208e-05 0.00611021 -0.999981 0.000118205 -0.446272 -0.894897 5.13491e-05 0.523755 -0.851869 -0.00133639 0.820182 -0.572101 -0.000853638 -0.590967 -0.806696 -0.000448199 0.0687649 -0.997633 -0.000215811 0.176375 0.984323 8.37253e-05 -0.131051 0.991376 -0.000941169 -0.425514 0.904952 0.000123559 -0.958394 -0.285447 0.00106009 0.221221 -0.975223 0.000411641 -0.960977 0.276626 5.03329e-05 0.634852 0.772634 -0.000280445 0.191836 0.981427 -0.000311534 -0.849869 0.526994 -0.000212734 0.75412 -0.656737 0.000820347 -0.618981 -0.785405 -0.00035564 -0.383223 -0.923656 0.000187702 0.952012 0.30606 -2.74321e-06 0.992628 -0.121199 -0.000767522 0.993448 0.114278 1.11441e-05 0.647544 0.762028 0.00152074 0.198874 0.980024 -0.00104802 0.518396 0.85514 -0.000528209 -0.920147 -0.391573 0.00068272 -0.367505 0.930021 -0.00210225 0.664193 -0.747558 -0.00224825 -0.67394 0.738783 0.000673585 -0.294266 0.955723 0.00061169 -0.287828 0.957682 0.00182434 -0.976788 0.214202 -0.00165666 -0.815374 0.578932 0.000259636 0.703463 -0.710732 0.000467956 0.999496 0.0317456 0.000602602 -0.989678 0.143308 0.000562123 0.605669 0.795716 0.000368193 -0.688436 -0.725297 -0.000925239 0.894916 0.446234 -0.00106957 -0.959664 -0.281149 0.000129202 0.672598 -0.740008 9.26487e-05 -0.671549 -0.74096 0.00021562 0.0586294 -0.99828 -0.000257999 0.917841 -0.396949 -0.000381035 -0.182896 -0.983132 4.37291e-05 0.999963 -0.00859367 -0.000134612 -0.985154 0.171674 0.000231128 0.58168 0.813418 -0.000451681 0.114883 0.993379 0.000158785 -0.955628 -0.294576 -0.00018803 0.328533 -0.944492 0.000235908 -0.743014 0.669276 7.94297e-05 0.889708 0.456531 -0.000238051 -0.705002 -0.709205 -0.000447458 -0.996826 0.0796114 -0.000660485 0.0874879 0.996165 0.000317579 -0.295453 0.955357 0.000892674 -0.775818 -0.630956 -0.000243676 0.99769 0.0679293 -0.00038056 -0.597215 0.802081 0.0411247 -0.689454 0.723161 -0.0005062 -0.188766 -0.982022 0 0.0443606 0.999016 -3.22434e-05 0.856329 0.516431 6.18535e-05 0.604348 0.79672 0 -0.61532 0.788277 0.000356482 0.99481 0.101751 -0.000143966 0.538555 0.842591 -0.000216691 0.675242 -0.737596 6.20071e-05 0.920568 -0.390583 0.00011701 0.751287 -0.659976 -5.26308e-05 0.330231 -0.9439 0.000310327 -0.208182 -0.97809 0.000215876 -0.757516 -0.652817 3.96873e-06 -0.417451 -0.9087 0.000117086 0.0166104 0.999862 0.000168813 -0.601677 0.79874 -0.000272467 0.981703 -0.190418 -0.000610214 0.935642 0.352951 -0.000156422 -0.973512 0.228637 -0.000272847 -0.966576 0.256379 -0.000100813 -0.991298 -0.131638 0.000123703 0.400384 -0.916347 -0.00083039 -0.893326 -0.449408 -9.98189e-05 0.000510763 -1 -0.000505138 0.935098 0.354389 0.000552625 0.985156 0.171662 0.000336125 0.00953459 0.999955 0.000469267 -0.958572 0.28485 0.000422183 -0.895968 -0.444119 5.59525e-05 0.976797 -0.214165 -0.000177617 -0.929018 -0.370034 6.59671e-05 -0.41469 -0.909963 -9.66073e-05 0.000678295 -1 0.000364933 -0.622193 0.782864 -0.000242267 -0.359769 0.933042 -0.000429494 0.771213 -0.636577 -0.00098377 0.862552 -0.505967 -0.000330073 0.528386 0.849004 -0.000299339 -0.527398 -0.849618 -0.000401534 0.439504 -0.89824 -0.000120425 0.713246 0.700914 0.000244983 0.396821 0.917896 -0.00158884 0.177033 -0.984204 0.000300409 -0.632705 0.774393 9.21529e-05 -0.950458 0.310852 0.00129729 -0.902954 -0.429736 0.00167143 0.97542 0.220349 0.00287431 0.818987 -0.573805 0.00154767 0.212927 -0.977067 -0.000480979 -0.974158 0.225866 -0.00205995 -0.706985 -0.707225 0.000114223 -0.525801 -0.850608 -0.00075448 -0.411919 0.91122 -0.00129367 0.38302 -0.923739 -0.000454858 0.985705 -0.168479 -0.00147107 0.79859 0.601873 0.0011053 -0.473742 0.880663 0.00119668 0.665683 0.746234 0.000600013 0.600488 0.799634 0.000553058 -0.437566 -0.899186 0.00068103 0.666127 -0.745838 -0.00174392 0.0872298 0.996187 -0.00126804 0.305826 -0.952087 0.000201392 -0.561071 0.827768 0.000290739 -0.999997 0.00262573 -0.000695353 0.79193 -0.610612 -0.000341491 -0.864319 0.502944 -0.000624589 -0.803465 -0.595351 0.000264299 0.999585 -0.0288064 6.83037e-05 -0.997621 0.0689392 0.000399363 -0.421187 -0.906974 0.00320377 0.962605 -0.270891 0.000234485 -0.00886896 0.999961 -0.000353498 0.65465 -0.755932 -0.000637388 0.929591 0.368593 -0.000264575 0.531071 0.847328 0.00121916 -0.423466 -0.905911 0.000469615 0.247355 -0.968925 -0.00063403 0.0451476 -0.99898 0 -0.549211 -0.835684 -0.000289316 -0.13744 0.99051 0.000174214 -0.557449 0.830211 -0.000270274 0.531825 0.846854 0.000295115 0.956131 0.292941 0 -0.868946 -0.494906 0.00231178 0.593508 0.804825 0.000616662 0.0871341 -0.996196 -0.000649971 0.420401 -0.907338 0.000704307 0.633524 -0.773723 -0.00250439 -0.893085 0.449881 -0.000848376 0.953079 -0.30272 0.000493881 0.951519 0.307589 0.000518639 -0.999618 0.0276306 -0.000107837 0.809531 -0.587077 0.000299044 0.990575 -0.136969 0.000749619 -0.667948 0.744208 -0.000162066 -0.961737 0.273976 7.21972e-05 -0.5567 -0.830714 -4.50591e-05 -0.0758328 -0.997121 0.000284024 -0.17134 0.985212 0.00150171 0.428915 -0.903344 0.000178735 -0.657799 0.753194 -0.00138738 0.69429 -0.719694 -2.81479e-05 0.66346 0.748212 -7.14831e-05 -0.593531 0.804811 5.71678e-05 0.944868 0.327452 -0.000386587 -0.963009 0.269467 -4.29668e-05 -0.933657 0.358167 -0.000131023 -0.999419 -0.0340826 0.000244502 -0.867004 -0.498302 0.000685879 0.744777 -0.667313 -0.000270221 0.59063 0.806943 7.27142e-05 0.364859 0.931063 2.53299e-05 0.995778 -0.0917996 2.55617e-05 -0.996899 -0.0786939 0.000184074 0.31208 -0.950056 -1.647e-05 0.355447 -0.934696 -0.000125592 -0.058191 -0.998305 -0.000211698 0.000934363 1 4.04302e-05 -0.564685 -0.825307 -3.04774e-05 0.954088 0.299525 9.71573e-05 0.783114 -0.621878 -0.000201897 0.990723 -0.135896 -3.31843e-05 -0.811108 -0.584897 7.19869e-05 -0.0543228 -0.998523 0.00126024 -0.0209884 0.999779 -0.0011862 -0.359275 -0.933231 -0.000926199 0.320184 -0.947355 0.000845831 0.638555 0.769576 -0.000457306 0.282209 0.959353 -0.000856651 0.314439 -0.949277 0.000431637 0.803209 -0.595698 0.000811363 -0.33907 -0.940761 -0.000326931 0.991904 -0.126986 -6.59488e-05 -0.933636 0.358222 -0.000331991 -0.142536 -0.98979 0.000298224 -0.122118 0.992516 -7.04796e-05 -0.593525 0.804816 0.00180343 0.567279 -0.823523 -0.000351942 0.283677 0.95892 0.000418555 -0.997235 -0.0743107 -0.00067162 0.984567 -0.175008 9.13065e-05 -0.944852 0.327498 -0.000609008 -0.841848 -0.539714 -0.000352169 -0.859925 -0.510421 -2.49534e-06 0.953865 0.300235 0.000126452 0.666696 0.745329 -0.000742843 0.22461 0.974449 -0.000975013 0.863842 0.503762 0.000191538 -0.54624 0.837629 -0.00492344 0.285767 0.958286 -0.00391097 0.995064 -0.0991591 0.0149788 0.801645 0.597613 0.70678 -0.707433 2.4357e-07 0.706787 -0.707427 0 0.149613 -0.988745 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -7.67381e-05 0 -1 5.96676e-05 -6.5654e-05 -1 -4.22052e-05 4.21587e-05 -1 0.0424727 0 -0.999098 0.00912814 0 -0.999958 0.0284693 -0.0274577 -0.999218 0 0 -1 -0.00492337 0.00494433 -0.999976 -0.0140903 -0.0415521 -0.999037 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.000552524 -0.00111797 -0.999999 0.000509424 0 -1 0.000290057 -0.000616381 -1 0 0 -1 0 0.0131643 -0.999913 0.150787 -0.00857346 -0.988529 0 -0.1183 -0.992978 -0.468099 0.073517 -0.880612 -0.0503997 -0.0126411 -0.998649 -1.64829e-05 -4.1342e-06 -1 -1.40534e-05 1.40383e-05 -1 0 2.5557e-05 -1 1.8758e-05 -1.33581e-05 -1 0 0 -1 0 0 -1 0.0198134 -0.00499883 -0.999791 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0149802 -0.999888 -0.0155014 -0.0111186 -0.999818 0 -0.00859389 -0.999963 0.026174 0.0109079 -0.999598 0 0 -1 0 0 -1 -0.00642704 -0.00640889 -0.999959 -0.0127642 0 -0.999919 -0.0202978 -0.0121314 -0.99972 -0.0283655 0 -0.999598 -0.00712458 0.0282976 -0.999574 0.0115597 0.0123158 -0.999857 0.00472825 0.011296 -0.999925 -0.000110132 0 -1 0.000110705 -0.000223999 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -6.16924e-05 -0.000131099 -1 0 0 -1 0 0 -1 -4.10167e-05 5.67205e-05 -1 7.65638e-05 0 -1 4.21013e-05 -4.21712e-05 -1 -1.24554e-05 -4.94702e-05 -1 -0.0170267 -0.0676266 -0.997565 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0542121 0 -0.998529 -0.0225919 -0.0318198 -0.999238 -0.0253576 0.0523411 -0.998307 0.000130067 0 -1 0 0 -1 0.00142182 -0.0014178 -0.999998 0.00196017 0.0015497 -0.999997 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.00392943 -0.999992 -0.00295063 -0.0036304 -0.999989 0 -0.00154423 -0.999999 -0.00197651 -0.000498663 -0.999998 0.00213786 0.00441599 -0.999988 1.64634e-05 4.15364e-06 -1 1.40323e-05 -1.40553e-05 -1 0 -2.55571e-05 -1 -2.1928e-05 1.99341e-05 -1 0 0 -1 0 0 -1 -0.0816523 0.0899394 -0.992594 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.00143034 -0.999999 0.0753497 0.130095 -0.988634 0 0.00101446 -1 0.000497672 0.00136663 -0.999999 0 0 -1 0 0 -1 0.000669802 0.000672654 -1 0.00114249 0 -0.999999 0.00831437 0.0106922 -0.999908 0.0117039 0 -0.999932 0.042965 0.0217923 -0.998839 0.0216104 -0.0858336 -0.996075 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.01374 0.0459827 -0.998848 -0.00382495 -0.0151923 -0.999877 0.0211578 -0.0164067 -0.999642 0.0154102 -0.0285102 -0.999475 -0.0101318 0.0776623 -0.996928 -0.0495041 0.00980402 -0.998726 0.0142489 -0.0710009 -0.997374 -0.00891695 -0.0816383 -0.996622 0.0461622 0.0437104 -0.997977 0.0202006 0.0308248 -0.999321 0.00315675 -0.000412048 -0.999995 -0.11244 -0.143768 -0.983203 -0.0336112 -0.0242483 -0.999141 -0.0337609 0.00874101 -0.999392 -0.000503146 -0.0286808 -0.999588 -0.0376811 -0.0247228 -0.998984 -0.00888759 -0.069889 -0.997515 0.0145977 0.00598847 -0.999876 0.0195697 0 -0.999808 0.00733916 0.00833139 -0.999938 0.00729689 0.0044069 -0.999964 0.00107972 0.0115631 -0.999933 1.24544e-05 4.94677e-05 -1 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707498 -0.706715 0 -0.707498 -0.706715 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.707495 0.706718 0 -0.707495 0.706718 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.707091 -0.707123 0 -0.707091 -0.707123 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.706518 -0.707696 0 0.706518 -0.707696 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.707484 -0.70673 0 -0.707484 -0.70673 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.706529 -0.707684 0 0.706529 -0.707684 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.707484 -0.70673 0 -0.707484 -0.70673 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.978054 -0.208353 0 0.707111 -0.7071 0.00191611 0.47738 -0.878697 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.706518 0.707696 0 0.706518 0.707696 0 1 0 0 1 0 0 1 0 0 1 0 0 0.70652 -0.707693 0 0.70652 -0.707693 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.706519 0.707694 0 0.706519 0.707694 0 1 0 0 1 0 0 1 0 0 1 0 0 0.706519 -0.707694 0 0.706519 -0.707694 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.83114 0.556063 -0.000683759 0.87792 0.478808 0 0.000398408 1 1.19375e-05 2.776e-05 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707485 0.706728 0 -0.707485 0.706728 0 0 1 0 0 1 0 0 1 0 0 1 0 0.70653 0.707683 0 0.70653 0.707683 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707485 0.706728 0 -0.707485 0.706728 0 0 1 0 0 1 0 0 1 0 0 1 0 0.706519 0.707694 0 0.706519 0.707694 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 -8.36607e-05 1 0 -0.000122335 1 -1.23993e-06 -0.822611 0.568604 0.00067946 -0.869806 0.493393 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707497 -0.706717 0 -0.707497 -0.706717 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.707497 0.706717 0 -0.707497 0.706717 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -5.11417e-05 0 1 3.97805e-05 4.37717e-05 1 -2.81354e-05 -2.81043e-05 1 0.0095189 0 0.999955 0.00826839 0.00174769 0.999964 0.00757851 0 0.999971 0 0 1 0.034281 0.0344269 0.998819 0.052945 -0.0354315 0.997969 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0759495 0.997112 0.0389665 0.0955332 0.994663 0 0.120236 0.992745 -0.126451 0.0183581 0.991803 -0.0997099 0.025009 0.994702 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0556307 0.0140353 0.998353 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0349625 0.999389 0.0171693 0.0206609 0.999639 -0.00232415 0.0335241 0.999435 0 0.0330226 0.999455 0 0 1 0 0 1 -0.01289 0.0128536 0.999834 -0.0179421 -0.010815 0.999781 -0.00357875 0 0.999994 -0.0316919 0.0716024 0.99693 -0.0838457 0 0.996479 0.022273 -0.155036 0.987658 -0.00250655 -0.00995547 0.999947 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -4.3511e-05 -5.7924e-05 1 7.6556e-05 0 1 4.21005e-05 4.21705e-05 1 -1.24561e-05 4.94732e-05 1 -0.000634641 0.00252068 0.999997 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.00214385 0 0.999998 0.00220749 -0.00560845 0.999982 0.00487563 0 0.999988 0 0 1 -0.0044851 -0.00447244 0.99998 -0.00762663 0.0102975 0.999918 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.000255746 -0.000517471 1 -0.000231623 0 1 -0.000132414 -0.000281385 1 0 0 1 0 -0.0114224 0.999935 0.00348374 -0.0105671 0.999938 0 -0.00811878 0.999967 0.0115194 -0.00290628 0.999929 -0.0081102 0.0215357 0.999735 1.64632e-05 -4.15358e-06 1 1.40321e-05 1.4055e-05 1 0 2.5557e-05 1 -2.19286e-05 -1.99347e-05 1 0 0 1 0 0 1 -0.00111605 -0.00122932 0.999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.00537143 0.999986 0.0147717 0.004338 0.999882 0 0.0124136 0.999923 0 0 1 0 0 1 -0.00598446 0.00600994 0.999964 -0.0166518 -0.0274724 0.999484 0.032152 0 0.999483 0.032152 0 0.999483 0.0372591 -0.00251699 0.999303 0.0206912 0.0821834 0.996402 6.66208e-05 0 1 -6.58981e-05 -0.000133337 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 3.71892e-05 -7.90283e-05 1 0 0 1 0 0 1 0 0 1 -0.00662386 -0.000211282 0.999978 -0.000253903 -0.00265971 0.999996 0.000137578 -0.0021741 0.999998 0.00729135 -0.00142473 0.999972 -0.0686769 0.0372743 0.996942 0.0325204 -0.0594171 0.997703 0.00540867 -0.00140068 0.999984 0.000894924 -0.00964494 0.999953 0.00258072 -0.0102503 0.999944 0.00329787 -0.0108854 0.999935 0.088806 -0.0247446 0.995742 -0.0147513 -0.0749526 0.997078 -0.0752572 -0.0515801 0.995829 -0.0873192 -0.0113977 0.996115 -0.0837354 -0.00158345 0.996487 0.000326541 0.00162721 0.999999 0.00784536 -0.00918031 0.999927 -0.0604252 -0.0218136 0.997934 0.0148759 -0.0682814 0.997555 -0.0146532 -0.00191267 0.999891 8.30475e-06 -3.29853e-05 1 1 0.000371933 -6.23607e-06 1 -8.75316e-05 1.46761e-06 0.41306 0.910704 0 -0.41306 -0.910704 0 0.998768 -0.0496239 -0.000916138 0.925176 -0.379539 -0.000298789 0.738798 -0.673926 -0.000936941 -0.413061 -0.910704 0 0.925175 0.379539 0.000523489 0.706813 0.7074 0 0.70678 0.707433 -1.25926e-06 0.156132 0.987736 0 0.161707 0.986839 4.40647e-05 0.446952 0.894557 -0.0011148 0.840854 0.541259 0.00172112 0.980694 0.19555 -0.000493774 0.991588 0.129431 -0.000326821 0.81098 0.58507 0.00207204 0.706757 0.707457 -4.30931e-07 0.660033 0.751236 0.000915677 -0.047549 0.998869 -0.000927648 -7.67426e-05 1 -1.39801e-06 -0.706788 0.707425 0 -0.706762 0.707451 9.42859e-07 -0.991588 0.129431 0 -0.267617 0.963525 -0.000895283 -0.170031 0.985439 -0.000134974 -0.91629 0.400514 0.00104479 -0.938618 0.344955 0.00164752 -0.196763 0.980451 0 -0.706806 0.707408 7.24875e-08 -0.706808 0.707406 0 -0.999577 0.0290695 -0.000569995 -0.999133 -0.041624 0.000812301 -0.706818 -0.707396 0 -0.706794 -0.70742 -9.17505e-07 -0.386115 -0.922451 0 -0.196753 -0.980453 -0.000498493 -0.293016 -0.956107 0.00120677 -0.0929717 -0.995669 -0.000235553 -0.927885 -0.372868 0 -0.856 -0.516975 -0.00121587 -1 0 0 -0.991585 -0.129431 -0.00269373 -0.852572 -0.52261 0 -0.852572 -0.52261 0 -0.999539 -0.03037 -0.000153369 -0.925176 -0.379539 0 -0.999758 -0.0220097 0 -0.749462 -0.662047 0.000835655 -0.706754 -0.707459 -1.24283e-06 -0.706788 -0.707425 0 -8.22261e-05 -1 1.60434e-06 -0.0475409 -0.998869 0.000927588 0.660035 -0.751234 -0.000915792 0.706761 -0.707452 3.47865e-07 0.980948 -0.194271 -0.000422062 0.870826 -0.491579 -0.00347431 0.95067 -0.310201 -0.000998085 0.210893 -0.977509 -0.000601294 0.702207 -0.71197 0.00199411 0.156486 0.987674 -0.00357288 0.38116 -0.924508 -0.00149354 -0.987375 0.158399 0.000694761 0.997677 -0.0680804 -0.00243789 -0.629227 -0.777221 -0.000957392 0.682347 -0.731026 0.00186562 0.831903 0.554916 0.00239617 -0.217381 0.976086 0.00134062 -0.995082 0.0990552 -0.000179944 -0.441291 -0.897363 0.00129453 -0.807308 0.59013 -0.000332342 -0.4719 -0.881651 0.00115732 -0.151519 0.988453 -0.00136696 -0.984705 -0.174227 0.000197035 -0.606193 0.795316 0.00166902 0.98714 -0.159853 -0.00141109 -0.361083 -0.932533 -0.000391388 0.327425 -0.944876 -0.00148919 0.706257 -0.707952 0.00201247 0.763153 0.646217 -0.000965632 0.973471 0.228807 0.00106944 -0.982613 -0.185663 0.000324671 0.389331 0.921097 0.00168001 0.759602 -0.650386 -0.00146362 -0.650068 0.759873 -0.00193573 -0.98539 -0.17031 -0.000531838 -0.558094 0.829777 0.000243732 0.223682 0.974662 -0.000615317 -0.99735 -0.07275 0.00035265 -0.775428 0.631436 -0.000395976 0.864322 0.502938 -0.000994102 -0.319382 -0.947626 0.000534059 0.705668 -0.708538 -0.00260351 -0.411665 -0.911333 0.00184907 0.398936 0.916978 0.000805045 -0.591852 0.806046 0.000955213 0.99028 0.139073 0.00209202 -0.0990328 -0.995083 -0.00140787 0.414923 -0.909856 0.000711989 -0.969996 -0.24311 -0.00216004 0.789783 0.61338 -0.00276299 0.813814 -0.581124 -0.00104712 -0.434927 -0.900464 0.00155987 -0.994957 -0.100298 -0.000521362 0.443606 0.896218 0.00247435 0.969795 -0.243911 0.00211967 -0.462309 0.886716 -0.0021316 -0.767985 0.640465 0.00175217 0.706493 5.34307e-07 0.70772 0.133945 0 0.990989 0.522841 -0.00301631 0.852425 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -6.39321e-05 -1 0 -3.5144e-05 -1 -3.5144e-05 0.0233057 -0.999728 0 0.0135584 -0.999749 0.0178387 0.00110744 -0.999999 0 0 -1 0 0.000634864 -1 0.000634917 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.000108149 -1 0.000218564 0.000112882 -1 0 6.25439e-05 -1 0.000132909 0 -1 0 0 -1 0.000929485 0.0262062 -0.999447 0.0204923 0 -0.999579 0.0290313 -0.0241611 -0.999696 -0.00498635 -0.00629933 -0.999979 0.00157954 -8.23293e-06 -1 2.06438e-06 -7.01971e-06 -1 -7.01971e-06 0 -1 -1.27894e-05 1.09588e-05 -1 9.94763e-06 0 -1 0 0 -1 0 -0.0226874 -0.999726 -0.0057223 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999831 -0.0183718 0.024171 -0.999707 -0.000931387 0 -0.999994 0.00339125 0 -1 0 0 -1 0 -0.00129055 -0.999998 0.00128156 -0.000868667 -0.999994 0.003388 -0.00448065 -0.99999 0 -0.00260051 -0.99999 -0.00361216 0.000143221 -1 0 5.03043e-05 -1 0.000199443 -4.8351e-05 -1 0.0001128 -8.93455e-05 -1 0 8.74348e-05 -1 0.000176701 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -4.97442e-05 -1 0.000105709 0 -1 0 0 -1 0 -4.54285e-05 -1 -5.88609e-05 7.65658e-05 -1 0 4.21218e-05 -1 4.21232e-05 -1.24642e-05 -1 4.94172e-05 -0.00697324 -0.999593 0.027647 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.00715482 -0.999974 0 -0.0117138 -0.999928 -0.00268031 -0.135244 -0.990812 0 -0.026687 -0.984533 0.173153 0 -1 0 -0.0112872 -0.999873 -0.0112872 0.0352155 -0.977061 -0.210027 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0197152 -0.999611 -0.019714 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.99961 -0.0279123 -0.0131078 -0.999422 -0.0313584 0 -0.99925 -0.038712 0.0462842 -0.998897 0.00790525 0.000547681 -1 -0.000138136 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0483418 -0.998757 0.0121214 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999732 0.0231444 -0.0621125 -0.997868 -0.0200207 0 -0.998954 -0.0457218 0 -1 0 0 -1 0 0.0194044 -0.999621 -0.0195422 0.0250427 -0.999679 0.00386336 0.0184712 -0.999829 0 0.0186133 -0.999826 -0.00106072 0.0194374 -0.999811 0 0.00798699 -0.999467 0.0316668 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.117741 -0.98604 0.117741 -2.13387e-06 -1 -8.46034e-06 7.03689e-06 -1 -7.01769e-06 5.65679e-05 -1 5.80192e-05 0.00453652 -0.999828 -0.0179864 -0.00644945 -0.999939 -0.00893118 -0.000864245 -0.999979 -0.00639411 0.0564702 -0.998189 -0.0207292 0.014946 -0.999267 0.035256 -0.00495497 -0.999988 -0.000185171 0.00467194 -0.999608 0.0276053 0.0170882 -0.999833 0.00651533 0.00593072 -0.999855 -0.0159428 0.0329614 -0.999383 -0.012118 -0.0478237 -0.997243 -0.0567336 -0.0356362 -0.99922 0.0170427 -0.00145281 -0.999054 0.0434525 0.0144909 -0.999198 0.0373291 -0.0145944 -0.999887 0.00365846 -0.405122 -0.262731 0.875699 -0.760794 -0.323904 -0.562387 -0.165637 -0.984007 0.0655263 0.00894148 -0.999902 0.0107534 1.04026e-05 -1 -4.1244e-05 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -0.708072 0 0.70614 -0.708072 0 0.70614 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.707118 0 -0.707095 -0.707118 0 -0.707095 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.707105 0.00219272 0.707105 -0.933492 0 0.358599 -0.326233 0 0.945289 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0.707095 0 0.707118 0.707095 0 0.707118 0 0 1 0 0 1 0 0 1 0 0 1 -0.708061 0 0.706152 -0.708061 0 0.706152 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0.707107 0 0.707107 0.707107 0 0.707107 0 0 1 0 0 1 0 0 1 0 0 1 -0.708061 0 0.706152 -0.708061 0 0.706152 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 0.260959 0 0.96535 0.885935 0 0.46381 0.931534 -0.000702814 0.363653 0.353324 0.000371574 0.935501 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0.70614 0 -0.708072 0.70614 0 -0.708072 1 0 0 1 0 0 1 0 0 1 0 0 0.707095 0 0.707118 0.707095 0 0.707118 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0.706129 0 -0.708084 0.706129 0 -0.708084 1 0 0 1 0 0 1 0 0 1 0 0 0.707095 0 0.707118 0.707095 0 0.707118 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0.878184 0 -0.478324 0.816648 -0.000881617 -0.577136 0.000132303 2.24116e-06 -1 6.2172e-05 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.707107 0 -0.707107 -0.707107 0 -0.707107 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.706152 0 -0.708061 0.706152 0 -0.708061 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.707107 0 -0.707107 -0.707107 0 -0.707107 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.70614 0 -0.708072 0.70614 0 -0.708072 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 -3.71826e-05 0 -1 -1.25085e-05 7.91066e-07 -1 -0.805795 0 -0.592194 -0.822669 -0.000240473 -0.568521 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -0.708072 0 0.70614 -0.708072 0 0.70614 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.707107 0 -0.707107 -0.707107 0 -0.707107 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -6.39402e-05 1 0 -3.51867e-05 1 3.50907e-05 0.0315042 0.999504 0 0.0855826 0.996331 0 0.0577577 0.997636 0.037236 0 1 0 0.0652273 0.995706 -0.0656905 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.990959 -0.134162 -0.0620226 0.993362 -0.0968768 0 0.998389 -0.0567312 -0.0950153 0.995388 0.0132187 -0.00341337 0.999994 -0.000855877 -1.0306e-05 1 -2.58415e-06 -8.78804e-06 1 8.76435e-06 0 1 1.59524e-05 1.36727e-05 1 -1.23848e-05 0 1 0 0 1 0 0 1 0 -0.00237073 0.999997 0.000597944 0.0133405 0.999742 -0.0183694 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999998 0.00195991 0.0149906 0.999853 -0.00832031 0 0.999862 -0.0166303 0 1 0 0 1 0 -0.00811021 0.999934 -0.00811021 0.00499006 0.998836 -0.0479675 -0.0886614 0.996062 0 -0.0886614 0.996062 0 -0.00411631 0.998704 0.0507289 -0.00969097 0.999215 0.0384221 -0.0410238 0.997109 0.0639559 0.0123705 0.997982 0.0622747 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.108799 0.988093 0.108792 5.30585e-07 1 -2.10362e-06 -1.75505e-06 1 -1.75511e-06 -4.84351e-05 1 5.87701e-05 7.33737e-05 1 0 4.03188e-05 1 -4.04304e-05 -1.19623e-05 1 -4.74271e-05 -0.00126652 0.999987 -0.00502142 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.147517 0.98906 0 -0.0350748 0.985267 0.167388 -0.00500259 0.999988 0 0 1 0 -0.0147854 0.999783 0.0146824 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.000770074 0.999999 -0.00155628 0.0006975 1 0 0.000398522 1 -0.00084688 0 1 0 0 0.999565 0.0294874 0.00932894 0.999658 0.0244287 0 0.999849 0.0173497 0.0314368 0.999474 0.00792912 -0.0103176 0.999013 -0.043206 1.23352e-05 1 3.11124e-06 1.05135e-05 1 -1.05419e-05 0 1 -1.91826e-05 -1.40744e-05 1 1.00163e-05 0 1 0 0 1 0 -0.198063 0.97893 0.0496638 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.995684 0.092805 0.0243553 0.992058 0.123404 0.077127 0.995026 0.0630401 0 0.999987 0.00519012 0 1 0 0 1 0 0.00293164 0.999991 0.00293189 0.00417951 0.999991 0 8.59918e-05 0.999987 -0.00512329 -0.00367459 0.999993 0 -0.00243644 0.999995 0.00219516 -0.000149897 1 0 0.00014838 1 -0.000299868 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -8.36674e-05 1 -0.000177798 0 1 0 3.39132e-06 1 -3.24176e-05 -0.0533865 0.988942 -0.138364 -0.00289988 0.999996 -0.000574076 -0.00476182 0.999728 0.0228448 0.0304417 0.999533 -0.00258904 -0.00136696 0.999997 -0.00222865 0.00423883 0.99999 0.0016934 0.0152957 0.999883 -0.00065073 0.0112101 0.999929 0.00406819 -0.00683344 0.999948 0.00755477 0.0725989 0.997023 0.0259567 0.00673706 0.999575 0.0283642 -0.00844662 0.999868 0.0138841 -0.00127074 0.999921 0.0124908 0.0992061 0.992885 0.0658609 0.00674527 0.996916 -0.0781916 -0.00739946 0.99996 -0.00505572 -0.00325131 0.999995 0.000645909 -0.0245313 0.999616 -0.012874 0.0631421 0.942779 -0.327386 0.00164345 0.999991 -0.00383407 0.0272889 0.999516 0.014964 -0.0728789 0.996218 0.0473032 -0.0232254 0.993889 0.107914 -0.0283433 0.999583 0.00561101 3.21448e-05 1 4.40902e-05 0.946681 -0.00629255 0.322112 0.999679 0.000497133 -0.0253387 0.707107 -2.80991e-07 -0.707107 0.707122 2.96273e-07 -0.707092 0.095706 0.000254152 -0.99541 0.173167 -0.000329209 -0.984892 0.945652 0.000580733 -0.325181 0.320569 0.000441202 -0.947225 0.868282 -0.000834685 -0.49607 0.980832 0.000113278 -0.194853 0.983359 0 -0.181673 0.707063 -1.88232e-06 -0.707151 0.707114 0 -0.707099 0.0470113 0.000918246 -0.998894 0.000109371 2.13628e-06 -1 -0.382782 -0.00052125 -0.923838 -0.707114 0 -0.707099 -0.707078 1.34854e-06 -0.707136 -0.986154 0 -0.165835 -0.93788 -0.00156601 -0.346955 -0.838565 0.000505855 -0.544801 -0.157877 0.000186287 -0.987459 -0.13261 -5.23897e-06 -0.991168 -0.194838 0 -0.980835 -0.707122 -2.93153e-07 -0.707092 -0.707114 0 -0.707099 -0.999791 -0.000400057 -0.0204539 -0.999796 0.000394324 0.0202011 -0.706479 0 0.707734 -0.706473 -2.28942e-07 0.70774 -0.393976 0 0.919121 -0.393976 0 0.919121 -0.338611 0.00174626 0.940925 -0.195127 0 0.980778 -0.990508 0.000191136 0.137456 -0.915925 -0.00120285 0.401347 -0.980963 0 0.194197 -0.988705 0.000223954 0.149871 -0.706414 0 0.707799 -0.682488 0.000906746 0.730896 0.0486782 -0.000948609 0.998814 8.76636e-05 -2.89828e-06 1 0.706461 0 0.707752 0.706429 1.17319e-06 0.707784 0.980963 0 0.194197 0.965983 -0.000329035 0.258607 0.968386 -0.000187339 0.249456 0.359155 6.2242e-05 0.933278 0.351572 0 0.936161 0.999997 0.00233323 0.00118439 0.404558 -0.000977535 -0.914512 -0.957871 -0.00160917 -0.287193 -0.832908 -0.00135332 0.55341 0.266532 -0.00177148 0.963825 -0.466992 -0.00108725 -0.884261 -0.863329 -0.00024298 -0.504641 0.0756075 0.00254591 -0.997134 0.989913 0.000332845 -0.141678 -0.594359 0.00111591 0.804199 0.326962 -0.00265494 0.945034 -0.958802 0.00649958 0.284 -0.981038 0.00127156 -0.19381 0.227592 -0.00371121 0.973749 -0.776937 -0.000887462 0.629578 -0.2714 0.000811942 0.962466 0.965234 -0.00336027 -0.261365 0.915398 0.00198309 0.402546 -0.911354 -0.00165612 -0.41162 0.784267 0.00124142 -0.620422 -0.145302 -0.000791735 -0.989387 0.28313 -0.00238692 0.959079 -0.111078 0.0031574 0.993807 -0.944356 0.00208411 0.328918 -0.465438 0.00290807 -0.885076 0.186588 -0.00180885 -0.982437 -0.880014 -0.00170314 -0.474944 -0.218059 -0.000276281 0.975936 0.117976 -0.00106875 -0.993016 0.968974 -0.00159886 -0.247159 0.652761 -0.000442982 0.757563 0.837203 0.00107762 -0.546891 -0.545072 0.00100975 -0.838388 0.797332 0.00205736 0.603537 -0.95661 -7.76119e-05 -0.29137 -0.867267 0.000108732 0.497844 -0.606175 0.0038312 0.795322 0.999331 -0.00228767 0.0364946 -0.108761 -0.0059461 -0.99405 0.997111 -0.00168082 0.0759434 0.3323 0.00248209 -0.94317 -0.24441 -0.00279503 -0.969668 0.0715687 -0.000466534 0.997436 -0.600696 7.76322e-05 0.799478 0.294455 0.00190458 0.955664 -0.998148 0.00210067 -0.0607888 0.26311 0.0039996 -0.964758 -0.605399 0.000134271 0.795922 -0.987634 0.000566606 -0.156774 0.70678 -0.707433 3.48996e-07 0.706789 -0.707424 0 0.142881 -0.98974 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -7.67381e-05 0 -1 5.96675e-05 -6.56543e-05 -1 -4.2205e-05 4.21583e-05 -1 0.143585 0 -0.989638 0.143585 0 -0.989638 0 0 -1 0.0456251 -0.0458193 -0.997907 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.000436336 -0.000882869 -1 0.000365297 0 -1 0.000212055 -0.000450629 -1 0 0 -1 0 -0.0910111 -0.99585 -0.0335064 -0.0716038 -0.99687 0 -0.0497767 -0.99876 -0.0683068 0.00987064 -0.997616 -0.00243654 -0.000611128 -0.999997 -1.64828e-05 -4.13417e-06 -1 -1.40536e-05 1.40385e-05 -1 0 2.55578e-05 -1 2.18872e-05 -1.98506e-05 -1 0 0 -1 0 0 -1 0 0 -1 0.0299382 -0.00755327 -0.999523 0.0183645 0.00583878 -0.999814 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0292732 -0.999571 0.000722173 -0.0297646 -0.999557 0 -0.0302691 -0.999542 0 0 -1 0 0 -1 -0.0219084 -0.0218465 -0.999521 -0.04218 0 -0.99911 -0.0273524 0.0255484 -0.999299 -0.0112131 0 -0.999937 0.00362397 0.0162282 -0.999862 0.000344689 -0.00136903 -0.999999 -0.000232418 -0.00115812 -0.999999 -0.000315351 0 -1 0.000349067 -0.000706291 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.000180321 -0.000383191 -1 0 0 -1 0 0 -1 -4.09488e-05 5.66877e-05 -1 7.65658e-05 0 -1 4.21016e-05 -4.21715e-05 -1 -1.24552e-05 -4.94696e-05 -1 -0.00464642 -0.0184546 -0.999819 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.086976 0 -0.99621 0.0109623 -0.0914732 -0.995747 -0.0800342 0.0132385 -0.996704 -0.0726866 0 -0.997355 0 0 -1 -0.0359716 0.03587 -0.998709 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.00109538 0.00602453 -0.999981 0 0 -1 0 0 1 0 0 -1 0 0.0480504 -0.998845 0.0279461 0.0282649 -0.99921 0 0.00885444 -0.999961 0.00827912 0.00208878 -0.999964 0.00637871 -3.30351e-05 -0.99998 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.021596 0.023788 -0.999484 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0418241 -0.999125 0.0491987 0.0342132 -0.998203 0 0.0099374 -0.999951 -0.0511704 -0.024261 -0.998395 0 0 -1 0 0 -1 0.0061112 0.00613722 -0.999963 0.00338905 0.010759 -0.999936 0.0267464 0 -0.999642 0.0267464 0 -0.999642 0.0395523 0.00833682 -0.999183 0.0201233 -0.0799268 -0.996598 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.70694 -0.706961 -0.0210071 0 0 -1 0 0 -1 0 0 -1 -0.00779847 0.100755 -0.994881 0.00628732 0.0249723 -0.999668 -0.00386201 0.0226002 -0.999737 -0.0188326 0.00142902 -0.999822 0.104783 0.00381718 -0.994488 0.0022106 -0.0502149 -0.998736 0.0457332 -0.0455083 -0.997917 0.00296004 -0.0147496 -0.999887 0.00995469 -0.00696843 -0.999926 -0.00080075 -0.00511762 -0.999987 0.00478758 0.0045565 -0.999978 -0.0377173 -0.0230585 -0.999022 -0.110281 0.0299147 -0.99345 -0.112309 0.0705392 -0.991166 0.0455953 -0.120791 -0.99163 0.0513208 -0.119613 -0.991493 0.0174175 0.00227349 -0.999846 0.0301041 -0.0242174 -0.999253 -0.0394167 0.00422641 -0.999214 -0.0113281 0.00988588 -0.999887 1.24545e-05 4.94673e-05 -1 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707498 -0.706715 0 -0.707498 -0.706715 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.707492 0.706721 0 -0.707492 0.706721 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.473481 -0.880804 0.000412537 -0.98528 -0.170946 0 -0.95126 -0.30839 -0.000413336 -0.522936 -0.852372 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.706515 -0.707698 0 0.706515 -0.707698 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.707481 -0.706733 0 -0.707481 -0.706733 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.706526 -0.707687 0 0.706526 -0.707687 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.707481 -0.706733 0 -0.707481 -0.706733 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0.00904531 -0.999959 -0.000271361 0.811012 -0.58503 0 0.361145 -0.932509 0.000475862 0.888756 -0.45838 -0.00116519 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.706515 0.707698 0 0.706515 0.707698 0 1 0 0 1 0 0 1 0 0 1 0 0 0.70652 -0.707693 0 0.70652 -0.707693 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.70652 0.707693 0 0.70652 0.707693 0 1 0 0 1 0 0 1 0 0 1 0 0 0.70652 -0.707693 0 0.70652 -0.707693 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.816664 0.577113 0.000904694 0.879778 0.475384 0 4.97379e-05 1 -4.51439e-06 0.000186258 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707487 0.706727 0 -0.707487 0.706727 0 0 1 0 0 1 0 0 1 0 0 1 0 0.706532 0.707681 0 0.706532 0.707681 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707487 0.706727 0 -0.707487 0.706727 0 0 1 0 0 1 0 0 1 0 0 1 0 0.70652 0.707693 0 0.70652 0.707693 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 -6.25422e-05 1 0 -0.000241383 1 -5.68134e-06 -0.901118 0.433573 0 -0.595894 0.803062 0.00117448 -0.915815 0.4016 0.00018397 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707498 -0.706715 0 -0.707498 -0.706715 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.707498 0.706715 0 -0.707498 0.706715 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -5.11313e-05 0 1 3.97701e-05 4.37605e-05 1 -2.81396e-05 -2.81085e-05 1 0.0189425 0 0.999821 0.0263944 -0.0118276 0.999582 0.0319527 0 0.999489 0 0 1 0.0140967 0.0141567 0.9998 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0177964 0.999842 -0.00861177 0.011726 0.999894 0.00768874 0.0117064 0.999902 0 0.0174206 0.999848 -0.0250654 0.00628685 0.999666 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0429343 0.0108321 0.999019 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.033545 0.999437 0.0206649 0.015156 0.999672 0.0180133 0.0445303 0.998846 0 0.0568262 0.998384 0 0 1 0 0 1 -0.0296945 0.0296106 0.99912 -0.040333 0 0.999186 -0.0291741 -0.0143956 0.999471 -0.0192211 0 0.999815 -0.00446112 -0.0177186 0.999833 -0.0269754 -0.0378695 0.998919 0.0215996 -0.0516 0.998434 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.132354 -0.13235 0.982327 0 0 1 0 0 1 -4.35128e-05 -5.79254e-05 1 7.6556e-05 0 1 4.21002e-05 4.217e-05 1 -1.2456e-05 4.94726e-05 1 -0.00194707 0.00773337 0.999968 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0205652 0 0.999789 0.001513 -0.0328442 0.999459 -0.00100645 0 1 0.00133585 0.003317 0.999994 0 0 1 -0.000751457 -0.000749334 0.999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.000109192 -0.000220935 1 -0.000111682 0 1 -6.21786e-05 -0.000132133 1 0 0 1 0 -0.00151816 0.999999 -0.0111805 -0.00774236 0.999908 0 -0.0122668 0.999925 -0.00717781 -0.0216176 0.999741 0.0422616 -0.0106624 0.99905 -9.87819e-05 2.49222e-05 1 -8.41903e-05 -8.43272e-05 1 0 -0.000153329 1 0.000112553 8.0149e-05 1 0 0 1 0 0 1 0.00957191 0.00240081 0.999951 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.00449094 0.99999 0.0130263 0.0143005 0.999813 0 0.0207893 0.999784 0 0 1 0 0 1 -0.00953376 0.00957435 0.999909 -0.0303523 -0.063638 0.997511 0.0464144 0 0.998922 0.0397727 0.0146342 0.999102 0.0293893 0 0.999568 0.00228545 0.0594029 0.998232 0.00755271 0.0299983 0.999521 2.25764e-05 0 1 -2.16146e-05 -4.37344e-05 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1.25101e-05 -2.65846e-05 1 -0.042024 0.030832 0.998641 0 0 1 0 0 1 0 0 1 0.00676123 -0.00133904 0.999976 -0.0285255 -0.0258278 0.999259 -0.00673477 -0.0199829 0.999778 0.014002 0.0297244 0.99946 0.0366047 -0.00454149 0.999319 0.0338148 -0.00623538 0.999409 0.0322434 -0.0251254 0.999164 0.00402682 -0.0503324 0.998724 -0.00481111 -0.0291143 0.999565 4.95166e-05 -3.85233e-05 1 -6.9258e-05 -0.000113407 1 0.0923525 -0.0410243 0.994881 0.0614511 0.037592 0.997402 -0.0697253 0.0950361 0.993029 -0.0327366 -0.00648336 0.999443 -0.0298074 0.0118543 0.999485 0.00334868 0.0345298 0.999398 0.00233892 0.00620221 0.999978 0.00783084 -0.00169923 0.999968 -0.00511282 0.000145664 0.999987 -0.00276503 -0.00329571 0.999991 0.0146996 0.0410703 0.999048 1 0.000546734 -9.16698e-06 1 -8.7532e-05 1.46763e-06 0.420934 0.907091 0 -0.420934 -0.907091 0 0.998785 -0.0492814 -0.000916477 0.92517 -0.379553 -0.000296896 0.735484 -0.677542 -0.000941812 -0.420934 -0.907091 0 0.933909 0.35751 0.000492342 0.706786 0.707427 1.98346e-06 0.682884 0.730527 -0.000902661 0.381483 0.924376 0 -0.0241032 -0.0584047 -0.998002 0.963504 0.267692 0.000675935 0.923172 0.384388 -0.000372631 0.165421 0.986223 0 0.215191 0.976572 -0.000623525 0.980947 0.194273 0.00049055 0.853187 0.521596 0.00303844 0.706724 0.707489 -1.10225e-06 0.660026 0.751242 0.000914362 0.000186032 1 3.43099e-06 -0.000175419 1 -3.62129e-06 -0.386065 0.922471 -0.00052019 -0.706788 0.707425 0 -0.706713 0.7075 2.74378e-06 -0.981785 0.189994 0.000433326 -0.989347 0.145575 0 -0.0797497 0.996815 0.000202053 -0.546222 0.837636 -0.00284913 -0.822106 0.569334 0.000678469 -0.386132 0.922444 0 -0.196763 0.980451 0.000498517 -0.70681 0.707404 -2.12772e-07 -0.706804 0.70741 0 -0.999577 0.0290702 -0.000570391 -0.999117 -0.0419979 0.000819194 -0.706822 -0.707391 0 -0.706797 -0.707416 -9.51036e-07 -0.196763 -0.980451 0 -0.171483 -0.985187 -0.000127658 -0.98862 -0.150438 0.000158458 -0.196934 -0.980417 -0.000214731 -0.537023 -0.843566 0.00161589 -0.888954 -0.457995 -0.00121407 -0.991588 -0.129431 0 -0.706738 -0.707475 -1.81027e-06 -0.706788 -0.707425 0 -0.386132 -0.922444 0.000520956 0.0474803 -0.998872 -0.000928214 5.47154e-05 -1 -2.85574e-06 0.706788 -0.707425 0 0.706771 -0.707442 6.09265e-07 0.980947 -0.194273 0 0.979308 -0.202376 -4.11389e-05 0.491639 -0.870799 -0.000784443 0.972377 -0.233415 0.000238771 0.238508 -0.97114 0.000912223 -0.185858 -0.982413 0.0179364 0.739901 -0.672714 -0.00150527 0.393175 0.919463 0.00119977 -0.862172 -0.506613 -0.00161721 0.972599 0.232486 -0.0008748 0.234893 -0.972021 0.000975118 -0.0823497 -0.996603 -0.000434779 -0.4435 0.896274 0.000564032 -0.438821 -0.898572 0.00201947 -0.9998 -0.0199209 0.00148766 -0.941411 0.337261 -0.000808976 0.979218 -0.202794 0.00257524 0.490861 0.871238 -0.000187694 -0.50514 0.863037 -0.000185139 0.426525 -0.904475 -0.00112682 -0.413065 0.9107 -0.0015431 -0.613255 -0.789883 -0.00164858 -0.220461 -0.975395 0.00110138 0.546798 0.837263 -0.00157527 -0.991956 0.126567 -0.00196885 0.98722 -0.159355 -0.00165363 -0.879182 -0.476486 0.000984725 0.941703 0.33644 0.00172762 0.671429 -0.741067 0.00143913 0.329542 0.944141 0.000496681 -0.765061 0.643954 0.00212503 -0.205271 -0.978701 -0.00279585 -0.980945 0.194265 -0.00276875 -0.606868 -0.794802 0.00122395 -0.999972 0.00750711 -0.000472409 0.886352 -0.463008 -0.0019435 0.388489 -0.921452 0.00184206 0.84512 0.534577 -0.000717203 0.0485272 0.998822 -0.000111612 0.98587 0.167482 0.0031098 -0.251713 0.967794 0.00394181 0.960729 0.277475 -0.00281433 -0.37497 -0.927034 -0.00244904 0.731314 -0.682041 -0.000413444 -0.947964 -0.318285 0.00770298 -0.867408 0.497573 -0.00491449 0.184914 0.982754 -0.000814609 -0.273669 -0.961824 0.00084604 -0.616242 0.787556 0.00135637 -0.02796 -0.999597 -0.00488682 0.907077 -0.420959 0.00209654 -0.988103 -0.15374 -0.00396895 -0.937141 -0.348951 -0.000118093 -0.583775 0.811916 0.000190977 0.586214 0.810153 0.00248694 0.706461 9.80035e-07 0.707752 0.163302 -0.000189301 0.986576 0.642191 0.00236928 0.766541 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -6.39321e-05 -1 0 -3.51444e-05 -1 -3.51444e-05 0.0210809 -0.999778 0 0.020879 -0.999782 0.00029707 0.0206761 -0.999786 0 0 -1 0 0.0118361 -0.99986 0.0118361 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.00866517 -0.998826 0.0476564 0 1 0 0 -1 0 0 -0.999849 0.0173692 0.0106724 -0.999626 0.0251985 -0.00991015 -0.999611 0.0260779 0 -0.999817 0.0191275 -0.0347901 -0.999394 -0.000728105 -0.0112579 -0.999933 0.00282283 -8.23306e-06 -1 2.06438e-06 -7.01932e-06 -1 -7.01932e-06 0 -1 -1.27881e-05 1.09597e-05 -1 9.94842e-06 2.0423e-05 -1 1.85386e-05 -2.802e-05 -1 2.80958e-05 0.00380335 -0.999992 0.000908029 0.0264389 -0.999307 0.0262036 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999995 0.00318959 0.0876446 -0.994154 0.0630594 0 -0.996964 0.077864 0 -1 0 0 -1 0 -0.0298595 -0.999114 0.0296489 -0.0488182 -0.996837 -0.0627095 0.0368161 -0.999322 0 -0.00899947 -0.994812 0.10133 -0.0791763 -0.996861 0 -0.0379729 -0.987873 -0.150552 0.0420166 -0.994297 -0.0980221 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.706943 -0.0228476 -0.706901 2.178e-06 -1 8.63517e-06 -7.01236e-06 -1 7.03177e-06 -5.95069e-05 -1 -6.56549e-05 7.6556e-05 -1 0 4.21206e-05 -1 4.2122e-05 -1.24651e-05 -1 4.94207e-05 -0.0396614 -0.986763 0.157246 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0438087 -0.99904 0 -0.0838281 -0.99596 -0.0321854 -0.0609733 -0.997387 0.0387557 -0.0816677 -0.99666 0 0 -1 0 -0.040164 -0.998386 -0.040164 0 1 0 0 -1 0 0 -1 0 0 -1 0 -0.000153808 -1 -0.000183103 -0.000325863 -1 0 -0.000186329 -1 -0.000395959 0 -1 0 0.0256121 -0.997716 -0.0625004 0 -0.999986 -0.00534596 0 -0.999986 -0.00534596 -0.00631649 -0.99987 -0.0148609 0.0260012 -0.99964 -0.00655814 0.0174116 -0.999817 0.00786873 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0359702 -0.999312 -0.00901942 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999807 -0.0196466 -0.00354733 -0.99989 -0.0143766 0 -0.99996 -0.00895069 0.010554 -0.999813 -0.0161812 0 -1 0 0 -1 0 0.00730261 -0.999946 -0.00735447 0.0179427 -0.999839 0 0.0179427 -0.999839 0 0.101326 -0.994116 -0.0382804 0.0142552 -0.9983 0.056519 0.0626395 -0.993292 0.0971952 0.000416032 -1 0 -0.00049614 -0.999999 -0.00100569 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.000241493 -1 -0.000513184 -2.13449e-06 -1 -8.46282e-06 7.03699e-06 -1 -7.01779e-06 5.65066e-05 -1 5.7989e-05 0.019181 -0.999813 -0.0026088 0.00321033 -0.999975 -0.00626948 -0.0131084 -0.999791 -0.0156957 -0.0174255 -0.999777 -0.0119565 0.125675 -0.991721 0.0263738 0.0044425 -0.997328 0.0729212 0.0238722 -0.992466 0.120175 0.0869848 -0.995277 0.0431083 -0.00989662 -0.999527 0.0291072 0.034732 -0.999386 -0.00462927 0.033062 -0.999395 -0.0107578 -0.0318742 -0.999472 0.00633165 -0.0519104 -0.998526 -0.0158397 -0.0611197 -0.997965 -0.0181768 0.0135556 -0.992353 0.12269 -0.0134652 -0.994584 0.103062 0.0262876 -0.999322 0.0257923 0.0404317 -0.99917 -0.00505726 0.00403965 -0.998846 -0.0478533 0.07727 -0.995028 -0.0628452 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -0.708072 0 0.70614 -0.708072 0 0.70614 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.707118 0 -0.707095 -0.707118 0 -0.707095 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.915837 0 0.40155 -0.869629 0.000748619 0.493705 -0.000289981 2.63341e-06 1 -0.000211947 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0.707107 0 0.707107 0.707107 0 0.707107 0 0 1 0 0 1 0 0 1 0 0 1 -0.708072 0 0.70614 -0.708072 0 0.70614 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0.707118 0 0.707095 0.707118 0 0.707095 0 0 1 0 0 1 0 0 1 0 0 1 -0.708072 0 0.70614 -0.708072 0 0.70614 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 6.16888e-05 0 1 0.000180249 -3.81848e-06 1 0.607676 0.000519863 0.794185 0.999623 0 0.0274697 0.995213 -0.00238954 0.0976979 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0.70614 0 -0.708072 0.70614 0 -0.708072 1 0 0 1 0 0 1 0 0 1 0 0 0.707095 0 0.707118 0.707095 0 0.707118 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0.706129 0 -0.708084 0.706129 0 -0.708084 1 0 0 1 0 0 1 0 0 1 0 0 0.707107 0 0.707107 0.707107 0 0.707107 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0.448468 0 -0.893799 0.873458 -0.000492515 -0.486899 0.275038 0.00102488 -0.961433 0.919989 0 -0.391945 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.707107 0 -0.707107 -0.707107 0 -0.707107 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.706152 0 -0.708061 0.706152 0 -0.708061 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.707107 0 -0.707107 -0.707107 0 -0.707107 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.70614 0 -0.708072 0.70614 0 -0.708072 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 -0.0668844 -0.00200652 -0.997759 -0.953011 0 -0.302935 -0.707105 0.00207378 -0.707105 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -0.708084 0 0.706129 -0.708084 0 0.706129 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.707107 0 -0.707107 -0.707107 0 -0.707107 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -2.55715e-05 1 0 -1.40743e-05 1 1.40359e-05 0.0172673 0.999851 0 0.0288873 0.999413 0.0184097 0.0311015 0.999516 0 0 1 0 0.0199933 0.999597 -0.0201353 0.0231086 0.999722 -0.00468828 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.00023292 1 0.000472136 -0.000214913 1 0 -0.000122411 1 0.00026013 0 1 0 0 0.998686 -0.0512394 0 0.998686 -0.0512394 0.040645 0.989569 -0.138208 -0.207823 0.976777 -0.0521109 -0.129465 0.990132 0.0536424 -8.24505e-06 1 -2.06742e-06 -7.03066e-06 1 7.01148e-06 0 1 1.27616e-05 9.3777e-06 1 -6.67401e-06 0 1 0 0 1 0 0.0180274 0.999827 -0.00454694 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999678 -0.0253829 0.0304231 0.999534 -0.00267324 -0.0175482 0.999742 -0.0144045 0 0.999978 -0.00663122 0 1 0 0 1 0 -0.00280824 0.999992 -0.00280824 0.00134633 0.999786 -0.0206629 -0.0360405 0.99935 0 -0.0360405 0.99935 0 -0.0282012 0.999594 0.0039747 -0.0154913 0.997992 0.0614188 0.016811 0.999035 0.0405729 4.95595e-05 1 0 2.28147e-05 1 2.716e-05 0 1 0 0 -1 0 0 1 0 0 1 0 2.77636e-05 1 5.89991e-05 -0.000258995 1 -7.11722e-06 0 1 0 0 1 0 -6.00487e-05 1 8.43748e-05 0.000114799 1 0 6.31104e-05 1 -6.32851e-05 -0.00100172 1 -0.000206105 -0.0632898 0.99783 0.0181814 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.00295532 0.999996 0 -0.0024182 0.999994 0.00259587 0.00295532 0.999996 0 0 1 0 6.70064e-05 1 -6.65339e-05 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.702754 0.111052 -0.702712 0 1 0 0 1 0 0 1 0 0 1 -0.000125101 -0.022116 0.999667 0.0133221 0 0.999806 0.0197154 0.0192532 0.999776 -0.00882231 -0.00411383 0.999991 -0.00103759 0.00186148 0.999973 0.00714504 1.23352e-05 1 3.11118e-06 1.05135e-05 1 -1.05419e-05 0 1 -1.91826e-05 -1.64692e-05 1 1.49845e-05 0 1 0 0 1 0 0 1 0 -0.0325706 0.999436 0.00816684 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999678 0.0253731 -0.0328984 0.998227 0.0496027 0 0.997674 0.0681656 0 1 0 0 1 0 0.0340968 0.998837 0.0340968 0.0458891 0.998947 0 0.0207075 0.999152 -0.0355908 0.00925031 0.999957 0 0.00768482 0.99997 -0.00107484 0.00461551 0.999822 -0.0182996 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -5.41492e-07 1 2.1469e-06 1.75722e-06 1 1.75722e-06 1.87069e-05 1 -2.13209e-05 0.000626406 0.999553 -0.0298925 0.0092318 0.999956 0.00182788 -0.0619938 0.933609 0.352889 0.421211 0.906958 -0.0030073 -0.0182033 0.999784 0.00999624 0.00215249 0.999843 -0.0175759 0.0180089 0.999838 -0.000279843 0.0823877 0.994789 -0.0600635 -0.0994442 0.994586 -0.0301464 0.0343498 0.999144 0.0230403 0.0100093 0.999015 0.043227 -0.00113761 0.999271 0.038163 0.00825168 0.998565 0.0529114 -0.0383305 0.997992 0.0504335 -0.077069 0.996974 0.0101858 -0.0849906 0.991836 0.0950685 -0.000885823 0.999997 -0.00240576 0.0481661 0.99718 -0.0575486 -0.123777 0.983462 -0.132218 -0.017062 0.99267 0.119645 0.137236 0.970357 0.198932 0.0027689 0.999996 -0.000361762 8.26291e-06 1 1.70242e-05 0.999304 -0.000729746 0.0372989 0.999672 0.000499295 -0.0255885 0.707121 -2.91893e-07 -0.707092 0.707114 -5.5427e-07 -0.707099 0.129551 0.0003122 -0.991573 0.127536 0.00032931 -0.991834 0.995179 0.000248484 -0.0980758 0.531315 0.00152978 -0.847173 0.310569 0.000129978 -0.950551 0.946896 -0.0013579 -0.321538 0.980835 0.00049364 -0.194838 0.923838 0 -0.382783 0.70707 -1.33446e-06 -0.707143 0.707107 0 -0.707107 0.378161 0.000527553 -0.92574 -0.584346 0 0.811505 -0.378161 -0.000739732 0.92574 0.23262 0 -0.972568 0.584346 0 -0.811505 0.378161 0.00087283 -0.92574 -8.76559e-05 -2.10953e-06 -1 -0.0470113 -0.000918662 -0.998894 -0.707107 0 -0.707107 -0.70707 1.33443e-06 -0.707143 -0.892602 0 -0.450846 -0.986251 -0.000571447 -0.165256 -0.102779 0.000260399 -0.994704 -0.22611 -0.000636404 -0.974102 -0.9781 -0.000857283 -0.208136 -0.850848 0.00161247 -0.525409 -0.382783 0 -0.923838 -0.194838 0.00049364 -0.980835 -0.707107 8.42942e-07 -0.707107 -0.707129 0 -0.707085 -0.998912 -0.000916068 -0.0466182 -0.99911 0.000819532 0.0421672 -0.706465 3.0682e-07 0.707748 -0.642402 -0.00236003 0.766364 -0.393976 -0.000998175 0.91912 -0.170301 -0.000431473 0.985392 -0.289122 0.000810801 0.957292 -0.952791 -0.0015945 0.303623 -0.978291 -0.00018571 0.207236 0.991571 0.00211893 -0.129551 -0.991568 -0.00311931 0.12955 -0.999757 0 0.0220588 -0.85368 0 0.520797 -0.991573 -0.000357215 0.129551 -0.85368 0 0.520797 -0.706422 8.49347e-07 0.707791 -0.683012 0.000907445 0.730407 -0.000153691 3.38863e-06 1 0.000175327 -3.01501e-06 1 0.389267 -0.000528245 0.921125 0.706469 0 0.707744 0.706407 2.25445e-06 0.707806 0.980957 0 0.194227 0.969296 -0.000263574 0.245899 0.233214 -0.000412236 0.972425 0.960681 -0.000720775 0.277653 0.445254 0.000996299 0.895404 0.679104 -0.00141751 -0.734041 -0.163308 -0.00149546 -0.986574 -0.931973 -0.00130112 -0.362525 -0.820108 -0.000986111 0.572208 -0.971101 0.00051198 -0.238667 0.621125 -0.000933825 0.783711 -0.741389 0.00110564 -0.671075 -0.190716 -0.000803228 0.981645 0.163619 0.000943143 -0.986523 0.329446 0.00123738 0.944173 -0.60119 0.00151119 0.799104 0.911232 0.00115117 -0.411893 0.998298 -0.000856953 0.0583074 0.918833 0.000860812 0.394646 -0.891142 0.00570147 -0.453689 0.773045 -0.00323149 0.634343 0.759997 -0.00133019 -0.649925 -0.999883 -0.00169355 0.0152018 0.345018 0.00250066 0.938593 -0.486416 -0.00110925 0.873726 -0.440492 -0.00211771 -0.897754 0.985623 0.000402716 0.168958 -0.780874 0.002173 0.624684 -0.787717 0.00224171 -0.616034 0.507992 0.00280646 -0.861357 -0.79873 -0.00140643 -0.601688 0.919183 -0.00152461 -0.393828 0.509166 -0.00275008 0.860664 0.23984 -0.000343333 -0.970812 0.315802 0.00010743 0.948825 -0.823419 -0.0018862 0.56743 -0.683712 0.000402422 0.729752 -0.997051 0.00130273 -0.0767364 0.987903 0.00177701 0.155065 0.0702538 -0.0026625 -0.997526 -0.374565 0.00341417 -0.927194 0.72572 0.000882164 -0.687989 -0.447458 0.00136019 -0.894304 0.623091 -0.00219985 -0.782147 0.399531 0.000405967 -0.91672 -0.995345 -0.00143213 0.0963636 0.911175 -0.00225937 0.412013 -0.160416 -0.00233757 0.987047 -0.415864 0.000142166 0.909427 0.411898 0.00112906 0.911229 -0.970713 0.000448607 0.24024 -0.517127 -4.59773e-06 -0.855909 -0.499668 0.000272367 -0.866217 0.999913 0.00220312 -0.0129945 0.707041 -0.707172 0 0.707041 -0.707172 0 0.0525561 -0.998618 0 0.196245 -0.980555 0.000455052 0.45171 -0.892165 0 0.196245 -0.980555 -0.000452287 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.00784141 0 -0.999969 0.00734101 -0.00423507 -0.999964 0.0113203 0.00653075 -0.999915 0.000856313 0 -1 0.00444992 -0.00636588 -0.99997 0 0 -1 0.000564253 -0.000564657 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.00095846 -1 -0.0102278 0.00428707 -0.999939 0.0114501 0.0198098 -0.999738 -0.0056048 0.00971465 -0.999937 0 0.0116118 -0.999933 0.0391952 -0.0330625 -0.998684 -0.0594415 -0.0149701 -0.99812 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.00570249 0.00143701 -0.999983 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.00279792 -0.999996 0 0 -1 0.00345577 0.000597017 -0.999994 0.00533484 -0.00924674 -0.999943 0.0168527 -0.000512955 -0.999858 0 -0.0121467 -0.999926 0 0 -1 0 0 -1 -0.00748196 -0.00748196 -0.999944 -0.021598 0.0169826 -0.999623 0.0125517 0 -0.999921 0.0162544 -0.00937727 -0.999824 0.012685 0.00731804 -0.999893 0.0125517 0 -0.999921 0.0230482 0.00642574 -0.999714 0.0101882 -0.0404545 -0.999129 -0.00586456 -0.0293124 -0.999553 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.00120144 0.00477057 -0.999988 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.00330186 0 -0.999995 0.00600278 -0.00681947 -0.999959 -0.00302685 0.00174618 -0.999994 0.00141451 0.000816053 -0.999999 -0.00169923 0.00509302 -0.999986 0.00181725 0 -0.999998 0 0 -1 0.00101082 -0.00101082 -0.999999 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.706955 -0.706945 -0.0210473 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.00322244 -0.00288128 -0.999991 0 0.00262737 -0.999997 0.00161776 0.00280403 -0.999995 -0.00183708 0.00317795 -0.999993 -0.0200216 0.0086274 -0.999762 0 0.0199564 -0.999801 0.0325719 0.008208 -0.999436 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.000354384 -8.92505e-05 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.00201777 -0.999998 -0.00441468 -0.0018453 -0.999989 0.00226202 0.00392071 -0.99999 -0.00391333 0.00367498 -0.999986 -0.00279123 0.00482909 -0.999984 0 0.00162503 -0.999999 0.00235362 0.00298883 -0.999993 0 0 -1 0 0 -1 0.00118021 0.00118106 -0.999999 0.0022928 0 -0.999997 0.00185742 -0.00107157 -0.999998 0.00341239 0.00134799 -0.999993 0.00318997 0.00184029 -0.999993 -0.00210753 0.0262647 -0.999653 0.0129267 0 -0.999916 0.00583335 -0.023166 -0.999715 -0.00336928 -0.0168349 -0.999853 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0745023 -0.0745034 -0.994434 0 0 -1 0 0 -1 0 0 -1 -0.000878931 0.00580262 -0.999983 0.000269256 0.00106929 -0.999999 -0.00914198 -0.00943093 -0.999914 -0.000167103 0.000834943 -1 0.155529 0.0406899 -0.986993 0.0124374 -0.208664 -0.977908 0.00150901 0.0626185 -0.998036 -0.0635684 0 -0.997977 -0.0535834 0.0222076 -0.998316 -0.0505692 -0.036171 -0.998065 0.010929 -0.0546255 -0.998447 -0.00314212 -0.0566895 -0.998387 0.041381 0.00994832 -0.999094 0.0411899 0 -0.999151 0.0138886 0.0799125 -0.996705 0.00340691 -0.001412 -0.999993 0.00638417 -0.0278754 -0.999591 0.000251439 5.03077e-05 -1 -0.0264105 0.0206285 -0.999438 -0.0191175 0.322008 -0.946544 0.328123 0.0284358 -0.944207 0.00141437 -0.0229395 -0.999736 0.0241596 -0.0205505 -0.999497 -0.00400636 -0.000801589 -0.999992 0.0238065 -0.0231084 -0.999449 -0.0256075 0.0308133 -0.999197 -0.0514511 0.0305703 -0.998208 0 0 -1 0 0 -1 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707111 -0.707102 0 -0.707111 -0.707102 0 -1 0 0 -1 0 0 -0.866195 -0.499706 0 -0.866195 -0.499706 0 -0.866189 0.499717 0 -0.866189 0.499717 0 -1 0 0 -1 0 0 -0.707111 0.707102 0 -0.707111 0.707102 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.439553 -0.898217 0.000455378 -0.975828 -0.218541 0 -0.268947 -0.963155 0 -0.892632 -0.450785 0.000758247 -0.721044 -0.692889 -0.000147475 -0.91378 -0.40621 -0.00041239 -0.699731 -0.714407 0.000276795 -0.433394 -0.901204 -0.000561127 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.707013 -0.7072 0 0.707013 -0.7072 0 0 -1 0 0 -1 0 0.500424 -0.865781 0 0.500424 -0.865781 0 -0.499735 -0.866178 0 -0.499735 -0.866178 0 0 -1 0 0 -1 0 -0.707105 -0.707108 0 -0.707105 -0.707108 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.707008 -0.707206 0 0.707008 -0.707206 0 0 -1 0 0 -1 0 0.500467 -0.865756 0 0.500467 -0.865756 0 -0.499735 -0.866178 0 -0.499735 -0.866178 0 0 -1 0 0 -1 0 -0.707105 -0.707108 0 -0.707105 -0.707108 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.91324 -0.407421 0 0.184465 -0.982839 0 0.863664 -0.504068 -0.000781567 0.780572 -0.625065 0.000567474 0.470426 -0.882439 -0.000545719 0.207005 -0.97834 6.40272e-05 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707008 0.707206 0 0.707008 0.707206 0 1 0 0 1 0 0 0.866189 0.499717 0 0.866189 0.499717 0 0.866195 -0.499706 0 0.866195 -0.499706 0 1 0 0 1 0 0 0.707008 -0.707206 0 0.707008 -0.707206 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707008 0.707206 0 0.707008 0.707206 0 1 0 0 1 0 0 0.866192 0.499711 0 0.866192 0.499711 0 0.866192 -0.499711 0 0.866192 -0.499711 0 1 0 0 1 0 0 0.707008 -0.707206 0 0.707008 -0.707206 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.982798 0.184685 0 0.235463 0.971883 0 0.905167 0.425055 -0.000580438 0.248062 0.968744 2.5382e-05 0.833921 0.551884 1.66232e-05 0.903183 0.429256 0.000534171 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707105 0.707109 0 -0.707105 0.707109 0 0 1 0 0 1 0 -0.499735 0.866178 0 -0.499735 0.866178 0 0.500467 0.865756 0 0.500467 0.865756 0 0 1 0 0 1 0 0.707007 0.707207 0 0.707007 0.707207 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707105 0.707109 0 -0.707105 0.707109 0 0 1 0 0 1 0 -0.499735 0.866178 0 -0.499735 0.866178 0 0.500424 0.865781 0 0.500424 0.865781 0 0 1 0 0 1 0 0.707013 0.707201 0 0.707013 0.707201 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.444167 0.895944 -0.000408238 -0.899032 0.437883 -0.000633643 -0.305396 0.952226 0 -0.978053 0.208356 0 -0.287602 0.95775 -6.64501e-05 -0.698535 0.715576 -0.000728997 -0.730743 0.682653 0.00015546 -0.919176 0.393846 0.000427592 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707111 -0.707102 0 -0.707111 -0.707102 0 -1 0 0 -1 0 0 -0.866192 -0.499711 0 -0.866192 -0.499711 0 -0.866192 0.499711 0 -0.866192 0.499711 0 -1 0 0 -1 0 0 -0.707111 0.707102 0 -0.707111 0.707102 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0124074 0 0.999923 -0.00400845 -0.00828647 0.999958 0.0151602 0.00874589 0.999847 0.0132585 -0.00764904 0.999883 0.0124074 0 0.999923 0 0 1 0.0044652 0.0044684 0.99998 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.00745592 -0.00745603 0.999944 0 0 1 0 0 1 0 0 1 0 0 1 1.01397e-06 0.00526415 0.999986 0 0.00526532 0.999986 -0.00260738 0.00451101 0.999986 -0.000902566 0.00541611 0.999985 0.00214112 0.00371115 0.999991 0 0.00440212 0.99999 0.013428 0.0189105 0.999731 -0.0365017 0.00919284 0.999291 -0.0318509 -0.00637271 0.999472 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.000936408 0.000235971 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.00241386 0.999997 0.00175934 5.69554e-05 0.999998 -0.00129745 0.00224446 0.999997 -0.00285271 -0.00494453 0.999984 -0.00928423 -0.000606463 0.999957 0 -0.00617541 0.999981 0 0 1 0 0 1 0.00318936 -0.00318936 0.99999 0.00437378 0 0.99999 0.00591233 -0.0025757 0.999979 0.0121882 0.00703156 0.999901 0.00654912 -0.00377817 0.999971 0.00759499 0 0.999971 -0.011329 0.0158337 0.99981 -0.00372479 -0.01479 0.999884 0.00227095 -0.0113507 0.999933 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0400445 -0.0400439 0.998395 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.00990483 0.0393291 0.999177 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.000621362 0 1 -0.000505719 -0.000291752 1 -0.00154258 0.000889923 0.999998 -0.00139672 0.00109131 0.999998 -0.00197406 0 0.999998 0 0 1 -0.00107557 -0.00107557 0.999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.261394 0.261391 0.929165 0 0 1 0 0 1 0 0 1 0.00130964 -0.00207216 0.999997 0 4.58967e-05 1 -2.72962e-05 4.73117e-05 1 0.00116133 0.000246687 0.999999 0.000431775 0.000746927 1 0 0.000940162 1 -0.00817612 -0.00632511 0.999947 0.00816617 -0.00205784 0.999965 0.0657255 -0.0949363 0.993311 0.0978978 0.0195873 0.995004 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0139925 -0.00352397 0.999896 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0246694 0.999696 -0.0114974 0.0199282 0.999735 -0.0280731 -0.0485691 0.998425 -0.0705349 -0.0185138 0.997338 0 -0.0618964 0.998083 0 0 1 0 0 1 0.0342612 -0.0342857 0.998825 0.0634185 0.031855 0.997478 0.0182889 0 0.999833 0.0181947 0.000878183 0.999834 0.0272753 0.0157353 0.999504 0.0155217 -0.00895458 0.999839 0.0176578 0 0.999844 0.000765642 0.0138471 0.999904 0.00177334 0.00704245 0.999974 -0.0012801 0.00639615 0.999979 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.254222 0.254227 0.933134 0 0 1 0 0 1 0 0 1 0.045841 -0.0183774 0.99878 -0.0108707 0.00217501 0.999939 -0.101221 -0.0763703 0.991928 -0.0655339 -0.0153756 0.997732 0.0223027 0.0222659 0.999503 0.0242046 0.0284386 0.999302 0.000661498 -0.000242133 1 0.000600849 -0.000120217 1 -0.0076323 0.0593462 0.998208 -0.0584358 0.000860826 0.998291 0.0110558 -0.000947993 0.999938 0.000103062 -0.00040929 1 0.0163751 -0.0137699 0.999771 -0.00387115 -0.0193425 0.999805 0.0437943 -0.028718 0.998628 -0.00412729 0.0493638 0.998772 -0.0177783 -0.0219432 0.999601 -0.0190917 -0.0181703 0.999653 0.0170581 0.0411587 0.999007 0 0.0446349 0.999003 -0.0313705 0.0697517 0.997071 -0.249683 0.0658318 0.966087 0.138638 -0.213997 0.966946 0 0 1 1 0 0 1 0 0 0.836917 -0.54733 0 0.923802 -0.38287 0.000202143 0.923802 -0.38287 -0.000203909 0.970409 -0.241469 0 0.923802 0.38287 0 0.923802 0.38287 0 0.707041 0.707172 0 0.707041 0.707172 0 0.550647 0.834738 0 0.196245 0.980555 0.0004102 0.0872609 0.996185 0 0.196245 0.980555 -0.000413784 0.962901 0.269854 -0.000784582 0.995765 0.091932 0 0.0723292 0.997381 0 0.815948 0.578125 0.000575455 0.498377 0.86696 0.000366839 0.278503 0.960435 0.000855946 0.504877 0.863191 -0.000311168 0.283425 0.958994 -0.00103748 0.836785 0.547531 -0.000369382 0.955142 0.296145 0.00125496 0.998621 0.0525075 0 0.980566 0.196191 0.000455258 0.892137 0.451766 0 0.980566 0.196191 -0.000452492 0.707107 0.707107 0 0.707107 0.707107 0 0.549409 0.835553 0 0.238698 0.971094 0 0.382399 0.923997 -0.000207456 0.382399 0.923997 0.000205659 0 1 0 0 1 0 -0.382867 0.923803 0 -0.382867 0.923803 0 -0.707107 0.707107 0 -0.707107 0.707107 0 -0.83556 0.5494 0 -0.923802 0.38287 0.00020512 -0.980566 0.196191 -0.000413318 -0.991782 0.127943 -0.000153836 -1 0 0 -0.274044 0.961717 -8.04763e-05 -0.0723568 0.997379 0 -0.99298 0.118279 0.000142216 -0.273648 0.961829 0.00101714 -0.81242 0.583072 -0.000656383 -0.461587 0.887095 -0.000168645 -0.784992 0.619506 0.000849775 -0.932487 0.361203 -0.000488914 -0.958293 0.285785 0.00105994 -0.401503 0.915857 -0.00134082 -0.0704613 0.997515 0 -0.526003 0.850483 0 -0.196183 0.980567 -0.000451616 -0.196183 0.980567 0.000449699 -0.707107 0.707107 0 -0.707107 0.707107 0 -0.835573 0.54938 0 -0.923802 0.38287 -0.000206894 -0.923802 0.38287 0.000205102 -0.970958 0.239252 0 -1 0 0 -1 0 0 -0.923802 -0.38287 0 -0.923802 -0.38287 0 -0.707107 -0.707107 0 -0.707107 -0.707107 0 -0.382867 -0.923803 0 -0.196183 -0.980567 0.000235892 0 -1 0 -0.973663 -0.227993 0.000574795 -0.958134 -0.286319 -0.00126384 -0.99575 -0.0920943 0 -0.104066 -0.99457 -0.000125129 -0.31001 -0.950733 -0.000936165 -0.473178 -0.880967 0.000125524 -0.798996 -0.601336 -0.000725479 -0.410915 -0.911673 0.000636868 -0.230187 -0.973146 0.000184043 -0.747299 -0.664486 0.00167288 -0.998615 -0.0526205 0 -0.980566 -0.196191 0.000454448 -0.892563 -0.450924 0 -0.980566 -0.196191 -0.000451687 -0.707107 -0.707107 0 -0.707107 -0.707107 0 -0.538084 -0.842891 0 -0.225426 -0.97426 0 -0.382867 -0.923803 -0.000208966 -0.382867 -0.923803 0.000208701 0 -1 0 0 -1 0 0.382399 -0.923997 0 0.382399 -0.923997 0 0.707107 -0.707107 0 0.707107 -0.707107 0 0.835566 -0.54939 0 0.923802 -0.38287 0.000205111 0.991781 -0.127944 -0.000153838 0.980566 -0.196191 -0.000413313 1 0 0 0.252367 -0.967631 0.00102463 0.823211 -0.567735 -0.000649066 0.25062 -0.968085 -0.000683166 0.923127 -0.384495 -0.000733594 0.091453 -0.995809 0 0.9904 -0.138228 0.000166203 0.522657 -0.852543 0.000379309 0.841639 -0.540041 0.000138362 0.969575 -0.244792 0.000742586 0.505521 -0.862814 -0.000653213 0.514681 -0.857377 0.00286517 -0.404915 0.914349 -0.00316164 -0.480656 -0.876909 -0.00057247 0.797931 -0.602748 0.000669509 -0.998491 -0.0549007 -0.00129194 0.27686 -0.96091 0.000132626 0.193005 -0.981198 -0.00035261 -0.936216 -0.351425 0.000494076 -0.9246 0.380932 0.0021959 -0.49415 0.869375 -0.00131937 -0.0272796 0.999628 0.000505064 0.653293 -0.757105 -0.00047244 -0.605852 -0.795577 0.000704415 0.99543 0.0954922 -0.000399845 0.979518 -0.201358 0.000657616 0.65394 0.756547 -0.000147416 0.915514 0.402285 0.000775559 -0.125489 -0.992095 0.000639005 0.509198 0.860649 0.000777323 -0.637198 -0.7707 -0.0008412 0.281287 -0.959624 0.000112814 -0.114626 -0.993409 -0.000292645 -0.962263 0.272119 -0.000889269 -0.935872 -0.352339 0.000449007 -0.494151 0.869376 -0.000662633 -0.955184 0.296012 -0.0011186 0.917291 0.398218 -6.02438e-05 0.508151 0.861267 -0.00130483 0.959466 0.281821 0.00129152 0.991178 -0.132527 -0.00151116 -0.757379 0.652975 0.000477703 0.64823 -0.761444 -0.0005531 -0.941586 -0.336774 0.000552789 0.0293626 0.999569 0.000150383 -0.335556 -0.94202 0.000440306 0.150376 0.988628 0.00111399 -0.791609 0.611026 0.0013882 0.11455 -0.993385 -0.00800123 -0.871901 -0.489678 -0.00194163 -0.836835 0.547456 -8.86507e-05 -0.0323376 0.999476 -0.00155954 0.797344 0.603525 -0.000840464 -0.21718 0.976132 0.000227326 0.193157 0.981168 0.000869549 0.781388 0.624045 -0.000644534 0.908012 -0.418945 -0.000409082 -0.847227 0.531231 -0.0003287 -0.123492 -0.992346 -4.1203e-05 0.982222 0.187722 0.000954668 -0.970274 -0.242007 0.000589036 0.35981 -0.933026 -0.00031749 0.274373 0.961623 -4.67668e-05 -0.641865 -0.766817 0.00103904 -0.210112 0.977677 0.000253295 -0.72693 0.686709 -0.0019396 0.000678429 -1 0.000293232 0.743419 -0.668826 0.000438917 -0.975556 -0.219752 -0.000193493 -0.451925 -0.892055 -0.00101785 0.781636 0.623735 -0.000587084 0.329166 0.944272 0.000676682 -0.202509 -0.979275 0.00330592 -0.340124 0.940379 -0.00166357 0.434566 0.900638 0.00161472 -0.998988 -0.0449749 0.00110367 0.996927 0.0783385 3.81227e-05 -0.948836 0.315754 -0.0031348 -0.00678003 -0.999964 0.0050402 0.678351 0.734737 -0.00138459 0.903616 0.428342 0.00136101 -0.980074 -0.198629 0.00130604 -0.661596 -0.74986 -0.000582435 -0.90759 0.419856 -0.0011064 0.953533 -0.301288 -0.000768918 0.988332 -0.152315 0.000503449 0.698462 -0.715646 0.00131609 0.174029 -0.98474 -0.000320354 0.548836 0.83593 -0.000304448 -0.735137 0.677919 0.000317449 -0.0769899 0.997032 -0.000460894 -0.656621 -0.754221 -0.000509266 -0.416939 0.908934 0.000434825 0.980793 -0.195052 -0.000544106 0.163097 0.98661 0.000260244 0.884012 0.467463 -0.000593944 0.673366 -0.739309 -0.000613554 0.199678 -0.979861 -0.000501267 -0.203499 -0.979075 0.000355085 0.675978 0.736922 0.000311793 0.997138 0.0756062 0.00052085 0.276078 -0.961135 -1.30729e-05 -0.809101 -0.58767 0.000276174 -0.970582 -0.240769 -0.000652911 -0.729874 0.683581 -0.000997303 0.783866 -0.62093 0.00024531 0.186922 0.982374 -0.001258 -0.406875 0.913484 0.000290173 -0.978015 0.208533 0.000497442 0.495093 0.868828 0.00458248 -0.987709 0.156304 -6.4665e-05 -0.46898 0.883209 0.000775177 -0.875314 -0.483538 0.00399537 0.162217 -0.986754 0.00135 0.0424697 -0.999093 -0.00295365 0.501409 0.86521 -0.000797714 0.58534 0.810784 -0.00270159 -0.701817 0.712348 -0.00380431 -0.456866 0.889535 0.000278481 -0.074226 0.997239 0.00242021 0.839811 -0.542879 -0.000331352 -0.230383 -0.9731 4.39322e-05 0.887925 0.459987 0.00109534 0.998119 0.0613101 -1.70365e-05 0.968071 -0.250676 0.000550942 0.602256 -0.798303 0.00097424 -0.0437651 0.999042 1.0302e-05 0.261281 -0.965263 -0.000125807 -0.80951 -0.587106 -0.000354002 -0.618881 -0.785485 0.000523948 -0.456866 0.889535 -0.000329074 -0.958168 -0.286207 0.000357761 -0.999928 0.0119779 -0.00020996 -0.873423 0.486962 5.66608e-05 0.509543 0.860445 -9.83603e-05 0.932331 0.361607 0.00015885 -0.0262743 -0.999654 0.00105655 -0.0637784 0.997964 -8.53371e-05 0.973031 -0.230675 -1.53234e-05 -0.056232 -0.998417 -0.000860498 -0.665183 -0.746679 -0.00118553 0.885206 0.46519 -0.00288348 0.583786 -0.811907 -0.00141269 0.522846 0.852427 -0.000182677 -0.81452 0.580136 0.00066921 0.940417 -0.340022 0.00113856 0.684051 0.729426 0.00353589 0.707087 -0.707126 0 0.707087 -0.707126 0 0.0525249 -0.99862 0 0.196188 -0.980566 0.000455175 0.451727 -0.892156 0 0.196188 -0.980566 -0.000452409 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.00496422 0 -0.999988 0.00396934 -0.00229008 -0.99999 0.00391914 -0.00182208 -0.999991 0.00443938 0.0025612 -0.999987 0.0014686 0 -0.999999 0.00284349 -0.00314961 -0.999991 0 0 -1 0.000794705 -0.000794818 -0.999999 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.752826 0.657314 -0.0345054 0 0 -1 0 0 -1 0 0 -1 -0.00250465 -0.00220495 -0.999994 0 0.00135789 -0.999999 0.000732648 0.00126893 -0.999999 -0.00109026 0.00192461 -0.999998 -0.00110489 0.00191363 -0.999998 0 0.0025145 -0.999997 0.00300595 0.000757033 -0.999995 -0.0296433 -0.038456 -0.998821 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.106364 -0.0268028 -0.993966 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0904754 -0.995899 0.0812996 -0.0328976 -0.996147 -0.0405026 -0.0700674 -0.99672 -0.000320109 0.000554853 -1 -0.106701 -0.0217605 -0.994053 0 0.000550219 -1 0 0 -1 0 0 -1 -0.0224058 -0.0224058 -0.999498 -0.0537135 0 -0.998556 -0.0497333 0.0286925 -0.99835 -0.0969329 -0.0974675 -0.990507 -0.116529 -0.0672305 -0.990909 -0.143595 0 -0.989637 0.0314839 0.180405 -0.983088 0.00111715 -0.00443585 -0.99999 -0.00157334 -0.00379643 -0.999992 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.000429599 -0.00170581 -0.999999 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0152036 0 -0.999884 -0.0127854 0.00737634 -0.999891 -0.0349219 -0.0201477 -0.999187 -0.0313241 -0.0249985 -0.999197 -0.0454237 0 -0.998968 0 0 -1 -0.0269925 0.0269927 -0.999271 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0213146 0.003767 -0.999766 0.0327964 -0.0327961 -0.998924 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0412117 -0.99915 0.0179255 0.0310715 -0.999356 0.0464236 0.00916659 -0.99888 0.00476983 -0.00825175 -0.999955 0 -0.00908545 -0.999959 -0.00847401 0.00243394 -0.999961 0.00197747 0.000498305 -0.999998 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.000926247 -0.00023327 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0199361 -0.999801 0.00876918 0.0151882 -0.999846 0.0106762 0.0157874 -0.999818 -0.00756432 0.0131016 -0.999886 0 0.0103312 -0.999947 0.0030394 0.0121632 -0.999921 0 0 -1 0 0 -1 0.00708195 0.007083 -0.99995 0.0124793 0 -0.999922 0.00959916 -0.00553809 -0.999939 0.00981586 -0.00525127 -0.999938 0.00627677 0.00362128 -0.999974 0.00685121 0 -0.999977 0.00172147 -0.00374784 -0.999992 0.00132095 -0.00524527 -0.999985 -0.000774482 -0.00387093 -0.999992 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0226651 0.022665 -0.999486 0 0 -1 0 0 -1 0 0 -1 0.00179034 0.00710912 -0.999973 0.0449968 0.041697 -0.998117 -0.00967661 0.0483646 -0.998783 0.00800916 0.0554404 -0.99843 -0.0264896 -0.0140875 -0.99955 -0.0290132 -0.0021149 -0.999577 -0.0241277 0.0048272 -0.999697 0.00220534 -0.0156444 -0.999875 0.000594401 -0.00143428 -0.999999 0.00400076 0.00051613 -0.999992 0 0.00145457 -0.999999 -0.137752 -0.026878 -0.990102 0.0167187 0.151401 -0.988331 -0.00135041 0 -0.999999 -0.000416299 -0.00322797 -0.999995 0.00151736 -0.000628824 -0.999999 -0.0281935 -0.00634437 -0.999582 0.000706305 0.000292713 -1 0.00865991 -0.0104675 -0.999908 0.0380937 0.0746002 -0.996486 0.0866677 0.0158234 -0.996112 -0.0145961 0.013671 -0.9998 -0.00214065 0.0962955 -0.995351 0.0848815 0.0169817 -0.996246 0.000120932 -0.0477259 -0.99886 -0.0627927 0.00613031 -0.998008 0 -0.000563039 -1 -0.00484183 -0.00197176 -0.999986 0.0211795 -0.0328797 -0.999235 0 0 -1 0 0 -1 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707088 -0.707125 0 -0.707088 -0.707125 0 -1 0 0 -1 0 0 -0.866181 -0.49973 0 -0.866181 -0.49973 0 -0.866181 0.49973 0 -0.866181 0.49973 0 -1 0 0 -1 0 0 -0.707087 0.707126 0 -0.707087 0.707126 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.251945 -0.967741 0.00017767 -0.926463 -0.376385 -0.000185446 -0.325377 -0.945584 0 -0.901229 -0.433343 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.707087 -0.707126 0 0.707087 -0.707126 0 0 -1 0 0 -1 0 0.500006 -0.866022 0 0.500006 -0.866022 0 -0.500011 -0.866019 0 -0.500011 -0.866019 0 0 -1 0 0 -1 0 -0.707107 -0.707107 0 -0.707107 -0.707107 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.70701 -0.707203 0 0.70701 -0.707203 0 0 -1 0 0 -1 0 0.500447 -0.865767 0 0.500447 -0.865767 0 -0.499715 -0.86619 0 -0.499715 -0.86619 0 0 -1 0 0 -1 0 -0.707107 -0.707107 0 -0.707107 -0.707107 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.863849 -0.503747 0.00222993 0.160002 -0.987117 7.34193e-05 0.206792 -0.978385 0 0.984739 -0.174036 0 0.674047 -0.738688 -0.00014128 0.939387 -0.342859 0.000241399 0.745616 -0.666375 6.84119e-05 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.70701 0.707204 0 0.70701 0.707204 0 1 0 0 1 0 0 0.866181 0.49973 0 0.866181 0.49973 0 0.866181 -0.49973 0 0.866181 -0.49973 0 1 0 0 1 0 0 0.70701 -0.707203 0 0.70701 -0.707203 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.70701 0.707203 0 0.70701 0.707203 0 1 0 0 1 0 0 0.866178 0.499735 0 0.866178 0.499735 0 0.866184 -0.499725 0 0.866184 -0.499725 0 1 0 0 1 0 0 0.70701 -0.707203 0 0.70701 -0.707203 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.707106 0.707106 -0.00154192 0.220289 0.975435 -0.000103599 0.91905 0.39414 0 0.416384 0.909189 0.000119988 0.766648 0.642067 -0.000754975 1.12199e-05 1 1.60284e-07 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707105 0.707108 0 -0.707105 0.707108 0 0 1 0 0 1 0 -0.499725 0.866184 0 -0.499725 0.866184 0 0.500456 0.865762 0 0.500456 0.865762 0 0 1 0 0 1 0 0.707009 0.707205 0 0.707009 0.707205 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707105 0.707108 0 -0.707105 0.707108 0 0 1 0 0 1 0 -0.50002 0.866014 0 -0.50002 0.866014 0 0.500015 0.866017 0 0.500015 0.866017 0 0 1 0 0 1 0 0.707086 0.707128 0 0.707086 0.707128 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 -9.66162e-06 1 -1.38023e-07 -0.911391 0.411541 0.00020904 -0.439737 0.898127 0.000177042 -0.921014 0.389529 -0.000106211 -0.93274 0.36055 0 -0.624517 0.781011 -0.000289744 -0.583807 0.811892 -3.72239e-05 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707088 -0.707125 0 -0.707088 -0.707125 0 -1 0 0 -1 0 0 -0.866184 -0.499725 0 -0.866184 -0.499725 0 -0.866178 0.499735 0 -0.866178 0.499735 0 -1 0 0 -1 0 0 -0.707088 0.707125 0 -0.707088 0.707125 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.000871232 0 1 0 0 1 -0.000240747 -0.00141941 0.999999 0 0 1 0.00170728 0 0.999999 0.00047931 -0.00203994 0.999998 0 0 1 0.0011406 0.00114077 0.999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.248287 -0.248286 0.936327 0 0 1 0 0 1 0 0 1 0 0 1 0 0.00194263 0.999998 0.0254881 0.0158893 0.999549 -0.0281261 0.0487152 0.998417 0.0160806 0.0278515 0.999483 0 0.0315102 0.999503 -0.0227803 0.00234436 0.999738 -0.0179898 0.00453063 0.999828 0.00238503 -0.0209674 0.999777 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -4.50202e-05 -1.13447e-05 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.00921968 0.999958 0.0149872 -0.00567348 0.999872 -0.00248396 0.00429722 0.999988 -0.00992477 0.00562826 0.999935 0.00376677 0.00652919 0.999972 0.00771159 0.00453658 0.99996 0 0.00754259 0.999972 0 0 1 0 0 1 -0.00349159 0.00349161 0.999988 0.00133556 0.019395 0.999811 -0.0191232 0 0.999817 -0.0206805 0.00451481 0.999776 -0.0376692 -0.0217327 0.999054 -0.0205869 0.0118773 0.999718 -0.0236044 0 0.999721 0.00139773 -0.0194469 0.99981 -0.00145555 -0.00577955 0.999982 0.000912805 -0.00456245 0.999989 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0399906 -0.0399904 0.998399 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.000244362 -0.000970289 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.000669525 0 1 -0.044945 -0.0259307 0.998653 -0.0194625 0.0335621 0.999247 -0.0334224 0.0192823 0.999255 -0.0338556 0 0.999427 0 0 1 -0.0131934 -0.0131934 0.999826 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 4.14659e-05 -8.39008e-05 1 0.138178 0.117565 0.983405 -4.72421e-05 0 1 -2.5646e-05 -5.44981e-05 1 0 0 1 0.0126275 -0.0186406 0.999747 0 -0.00203203 0.999998 0.00105575 -0.00182995 0.999998 0.00300616 -0.000987082 0.999995 0.000514854 0.000890669 0.999999 0 0.00116816 0.999999 -0.06058 -0.0371762 0.997471 0.0637064 -0.0160534 0.99784 0.0599978 0.0120034 0.998126 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.00221415 -0.000557622 0.999997 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.00181526 0.999998 0.00297155 -0.0051466 0.999982 -0.000521113 -0.0021059 0.999998 -0.0011356 -0.00196684 0.999997 0 -0.00255958 0.999997 0 0 1 0 0 1 0.00138931 -0.0013895 0.999998 0.001944 0 0.999998 0.000432917 0.00237281 0.999997 0 0 1 0 0 1 0.00250454 -0.0112315 0.999934 0.00855325 0 0.999963 0.00236966 0.00940949 0.999953 0.0310413 0.0339705 0.998941 -0.00751247 0.0375481 0.999267 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0624483 0.0624486 0.996093 0 0 1 0 0 1 0 0 1 -0.00657424 -0.00573362 0.999962 -0.00785411 0.00103567 0.999969 -0.0244612 -0.0278562 0.999313 -0.0168614 -0.0236308 0.999579 0.0127076 0.0467694 0.998825 0.0608589 0.0781837 0.99508 0.0953257 -0.0190713 0.995263 0.0968298 0.00131445 0.9953 -0.017345 -0.0747045 0.997055 -0.0551279 -0.0691671 0.996081 -0.00165276 -0.000921814 0.999998 -0.00074483 0.00295759 0.999995 0.0124487 -0.0119164 0.999852 0.000456711 0.00228269 0.999997 0.0362887 -0.0137531 0.999247 -0.0115043 0.0556345 0.998385 -0.00954626 0.0159969 0.999826 0.0033201 0 0.999995 0.00302651 0.00125427 0.999995 -0.00110945 0.00016107 0.999999 0 0 1 -0.0217425 0.00944153 0.999719 -0.0292674 0.00801189 0.99954 0.00673215 -0.0388931 0.999221 0.0195625 0.0671031 0.997554 0 0 1 1 0 0 1 0 0 0.836123 -0.548542 0 0.923857 -0.382737 -0.000205817 0.923857 -0.382737 0.000204034 0.970794 -0.239913 0 0.923857 0.382737 0 0.923857 0.382737 0 0.707087 0.707126 0 0.707087 0.707126 0 0.547874 0.836561 0 0.0880987 0.996112 0 0.196188 0.980566 -0.0004104 0.196188 0.980566 0.000406845 0.975151 0.221539 -0.00102549 0.995011 0.099765 -0.000239911 0.0919491 0.995764 0 0.542384 0.840131 -0.000527781 0.289423 0.957201 0.00117875 0.841137 0.540822 -0.000789356 0.947577 0.319528 0.000484174 0.842076 0.539358 0.000340675 0.285594 0.95835 -0.000872589 0.537167 0.843476 0.000300081 1 0 0 0.923809 0.382853 0 0.923809 0.382853 0 0.707042 0.707172 0 0.707042 0.707172 0 0.548661 0.836045 0 0.240907 0.970548 0 0.382857 0.923808 -0.000205139 0.382857 0.923808 0.000203363 0 1 0 0 1 0 -0.382853 0.923809 0 -0.382853 0.923809 0 -0.707106 0.707107 0 -0.707106 0.707107 0 -0.835602 0.549335 0 -0.980569 0.196177 -0.000413253 -0.923813 0.382845 0.000205066 -0.991781 0.127945 -0.000153839 -1 0 0 -0.935727 0.352724 -0.000459517 -0.381734 0.924272 -0.000682958 -0.126368 0.991983 0.000151943 -0.993062 0.117592 0.00014139 -0.243586 0.969879 0.00067307 -0.855983 0.517003 -0.0001391 -0.562332 0.826912 -0.000576452 -0.529981 0.848009 0.000307452 -0.951595 0.307352 0.00120254 -0.855058 0.518533 0.000304269 0 1 0 -0.116503 0.99319 -0.00014008 -0.538094 0.842885 0 -0.695444 0.71858 0 -0.516112 0.856521 -3.09304e-05 -0.225379 0.974271 0 -0.225378 0.974271 0 -0.38285 0.923811 0.000231168 -0.196181 0.980568 -0.000433222 -0.516407 0.856344 3.06169e-05 -0.707107 0.707107 0 -0.707107 0.707107 0 -0.835599 0.54934 0 -0.923809 0.382853 -0.000206843 -0.923809 0.382853 0.000205052 -0.970951 0.239277 0 -1 0 0 -1 0 0 -0.923809 -0.382853 0 -0.923809 -0.382853 0 -0.707107 -0.707107 0 -0.707107 -0.707107 0 -0.38285 -0.923811 0 -0.38285 -0.923811 0 0 -1 0 -0.968471 -0.249124 0.000871455 -0.470499 -0.882401 -0.00021753 -0.777423 -0.628977 0.000689875 -0.99423 -0.107274 0 -0.0650078 -0.997885 0.000156327 -0.224628 -0.974443 0.00163236 -0.448515 -0.893775 -0.000581555 -0.961713 -0.274056 -0.000905465 -0.351296 -0.936265 0.000103919 -0.796121 -0.605137 -0.000787104 -0.998617 -0.052583 0 -0.980569 -0.196177 0.000454519 -0.892551 -0.450946 0 -0.980569 -0.196177 -0.000451757 -0.707106 -0.707107 0 -0.707106 -0.707107 0 -0.382853 -0.923809 0 -0.382853 -0.923809 0 0 -1 0 0 -1 0 0.382857 -0.923808 0 0.382857 -0.923808 0 0.707042 -0.707172 0 0.707042 -0.707172 0 0.991418 -0.130732 -0.00015719 0.980568 -0.196181 0 0.267737 -0.963492 0.000751561 0.947647 -0.319319 -0.000926561 0.0914862 -0.995806 0 0.957263 -0.289218 -0.00034775 0.900445 -0.43497 0.00024843 0.487152 -0.873317 0.000270952 0.554249 -0.832351 -0.000578543 0.261822 -0.965116 -0.00109617 -0.658866 -0.752067 0.0170849 -0.749721 -0.661754 -0.000647177 0.2196 -0.97559 0.000105269 -0.930319 0.366749 -0.0014514 0.401063 -0.916049 -0.00178722 -0.214449 -0.976735 0.000812163 -0.214929 0.97663 -0.000296243 -0.851768 0.523919 0.000163041 -0.46194 0.886911 0.00100999 -0.764193 -0.644987 -0.000371206 0.935774 -0.352601 -0.000309757 0.143381 0.989667 0.000539692 0.368203 0.929745 -0.000210326 0.872303 -0.488965 0.00103233 0.856982 0.515342 0.00186969 -0.999999 -0.000833192 0.00109988 0.522441 0.852676 0.000308294 0.940368 0.340159 -0.000441283 -0.463808 0.885908 -0.007075 0.9991 0.0424218 0.000345148 0.855301 -0.51813 -0.00116759 0.491356 0.870959 0.000483458 -0.846842 0.531844 -0.00064208 0.841724 -0.539907 -0.00070631 0.425818 -0.904809 -0.000485337 -0.766809 -0.641875 -0.000461194 0.106646 0.994296 -0.00105024 -0.139683 -0.990196 -0.000683648 -0.999392 -0.0348544 0.000446352 -0.505606 0.862764 0.000718975 -0.425998 0.904724 8.49881e-05 -0.795724 -0.605659 -9.63057e-05 -0.992443 0.122703 -0.00123499 -0.385004 -0.922915 5.7288e-05 0.999306 0.0372539 -0.000192091 0.870286 -0.492547 -7.13204e-05 0.969821 0.243813 0.00137877 0.26779 -0.963477 0.000654096 -0.826431 0.562943 0.0103074 -0.199754 -0.979845 -0.00135996 0.92877 0.370657 0.000146426 0.95398 -0.29987 0.000469289 0.159966 0.987122 -0.000538692 0.976604 0.215044 -0.00127428 0.633256 0.773941 0.00140938 -0.981363 0.192163 -0.000423862 0.591495 -0.806301 0.00355307 -0.612172 0.790723 0.00194958 0.465924 -0.884825 0.000128668 0.957937 -0.286979 0.000385491 0.116473 0.993194 -2.91484e-05 -0.27348 -0.961878 -0.000220654 -0.459328 0.888266 -0.00048096 -0.821051 -0.570854 -0.000307301 -0.965567 -0.260154 0.000981826 -0.634678 -0.772776 0.000676532 -0.963519 0.267639 4.1832e-05 -0.680482 0.732765 0.000110534 0.564363 -0.825525 -0.00169378 0 -0.999999 0.00106806 0.128676 0.991686 -0.000645506 -0.241572 0.970383 0.000117318 0.634667 0.772786 -0.000521391 0.964462 0.264223 -0.000279351 -0.965714 -0.259609 0.000598703 0.956994 -0.290106 -0.00103844 -0.926608 0.376029 -0.000737767 0.442323 0.896856 0.000378353 -0.945063 -0.326887 -0.000108709 0 -1 -0.000747849 -0.568607 -0.822608 -0.00149017 0.593567 -0.804784 -0.000620033 0.738374 -0.674391 0.000715768 -0.15143 -0.988468 0.000797006 0.986878 0.161469 0.000470412 0.99888 -0.0472611 -0.00215603 -0.530294 -0.847807 0.00327328 0.387176 -0.922004 -0.00154614 -0.647258 -0.76227 -0.000839682 -0.669791 0.742549 2.1754e-06 0.656224 0.754566 0.000336164 -0.438225 -0.89886 0.00318331 0.975089 0.221814 0.000145471 -0.995305 0.0967854 0.00125027 -0.353246 -0.935528 -0.00208139 0.497785 -0.8673 -0.000201841 -0.979494 0.201475 -0.000561552 0.983734 -0.179631 -0.000598215 -0.699615 0.71452 -0.000496625 0.715161 0.69896 -6.21276e-05 -0.889605 -0.45673 0.00122206 0.851351 -0.524596 0.000567581 -0.913166 -0.407587 0.000846957 0.994556 0.104195 0.00102399 -0.438953 -0.89851 -0.00111772 -0.95321 0.302309 0.000122272 0.250174 0.968201 3.10527e-05 -0.180497 0.983576 -1.88017e-05 0.259077 0.965857 6.37034e-05 -0.882576 -0.470161 -0.00284483 0.259077 0.965856 -0.00125666 0.992872 0.119178 -0.00171709 0.847562 -0.530694 0.00166674 0.51726 -0.855828 -0.00052128 0.919056 -0.394127 -6.92277e-05 0.763361 0.64597 0.00174496 0.364977 -0.931017 0.000243209 -0.0515665 -0.99867 -0.000442546 -0.364782 0.931093 0.000516873 -0.284235 0.958753 0.00199859 -0.388263 -0.921549 0.000383863 0.761549 0.648105 0.00171417 -0.989201 0.14655 0.0021916 -0.986236 -0.165302 -0.00366405 -0.785864 0.618287 0.0117704 -0.13566 -0.990744 -0.00476306 0.272431 0.962175 -0.00124819 0.320127 -0.947367 0.00374174 0.909128 -0.416516 0.000857912 -0.986421 0.164236 0.000491226 -0.689382 0.724398 -0.000247623 0.944551 0.328365 -0.000118212 -0.971529 -0.236917 -0.00123958 0.895325 0.445414 0.00070593 0.916636 -0.39972 0.00121502 -0.332147 -0.943227 -0.000757739 -0.917316 -0.398159 5.79362e-05 0.343696 -0.93908 -0.00123275 -0.999309 0.0371671 -0.000179898 -0.929469 0.368901 -0.000228505 0.481801 0.876281 0.000268071 -0.130688 -0.991423 0.000795612 -0.687349 -0.726327 0.000515306 0.955229 -0.295868 -0.000882037 -0.130688 -0.991423 -0.00121478 0.883511 0.468409 -0.00102544 0.975947 -0.218006 -0.00028124 0.968779 0.247925 0.000112389 -0.622121 -0.782916 0.00299377 0.382097 -0.924122 -0.000850436 0.130689 -0.991423 0.00121479 0.022374 0.99975 0.000191777 -0.933492 -0.358597 0.000776652 0.130688 -0.991422 -0.00186339 0.682724 -0.730677 -7.48406e-05 0.492409 0.870364 -0.000679037 0.788973 0.614428 -4.21878e-05 -0.497314 -0.86757 -0.00103141 0.143711 0.989619 0.000904937 0.59175 -0.806121 0.00103559 -0.950736 -0.310003 0.000273609 -0.631253 0.775577 4.73745e-05 0.893079 0.44989 0.00293805 -0.280394 -0.959883 0.00188137 0 -0.707425 -0.706788 0 -0.707425 -0.706788 -0.000315699 -0.991403 -0.130846 0 -0.922451 -0.386115 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999997 0 0.00226381 -0.999998 -0.00171313 -0.000631328 -0.999996 0.00138449 0.00239938 -0.999995 -0.00159003 0.00275559 -0.999989 0 -0.00462907 -0.999971 0.00758019 -8.07328e-05 -1 0 0 -0.999988 -0.00344055 -0.00345029 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 8.60031e-05 -4.25048e-05 -0.706626 0.435957 0.557335 -1 0 4.59707e-05 -1 5.36979e-05 2.52693e-05 -1 0 0 -0.999976 -0.00690461 0 -0.999979 -0.00560104 0.00323148 -0.999977 -0.00658225 0.00172358 -0.99999 -0.00396989 -0.0022904 -0.999988 -0.00491178 0 -0.999992 -0.00383418 0.00113574 -0.999952 -0.00239797 0.0095053 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999612 -0.00681589 -0.0270155 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999923 -0.0124022 0 -0.999935 -0.0113967 -0.000778152 -0.99992 -0.0109745 0.00633165 -0.999834 -0.0157857 -0.00910742 -0.999833 -0.0170463 -0.00652874 -0.999837 -0.0180513 0 -1 0 0 -1 0 0 -0.999946 -0.00733546 0.00730437 -0.999894 0 0.0145553 -0.999906 0.00684161 0.0118568 -0.999902 0.00978279 0.00998537 -0.999983 -0.00291137 0.00504552 -0.999985 0 0.00549004 -0.999988 0.00477938 -0.000997761 -1 0.000220524 5.55211e-05 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999586 0.0203424 -0.0203427 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.99976 0.021228 -0.00534457 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999834 0 0.0182374 -0.999877 -0.00118769 0.0156336 -0.999461 0.0164074 0.0284351 -0.999825 -0.00933755 0.0161821 -0.999834 0 0.0182374 -1 0 0 -0.999996 -0.00196786 -0.00195952 -0.999827 0.0177014 -0.00567702 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999631 -0.0192006 -0.0192009 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999985 -0.00544152 0 -0.999976 -0.00602607 0.0034767 -0.999973 -0.00632817 -0.00365099 -0.999223 0.00408248 0.0391974 -0.99964 0.0268387 0 -0.998676 0.0125835 -0.0498762 -0.999393 -0.0136158 -0.0320825 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999815 0.00469957 0.0186286 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.996171 0.087422 0 -0.998271 -0.00359206 0.0586639 -0.995247 0.0843505 -0.0486654 -0.990395 0.119763 0.0690967 -0.999852 0.0172061 0 -0.996265 0.0563105 -0.0654606 -1 0 0 -1 0 0 -0.999849 0.0122573 -0.012292 -0.999736 0 -0.0229586 -0.999781 -0.0104506 -0.0181111 -0.999783 -0.0110859 -0.017664 -0.999965 0.00415294 -0.00719732 -0.999959 0 -0.00900734 -0.999961 -0.00880908 -0.000460294 -0.999986 -0.00521518 -0.00131302 -0.996448 -0.0425734 -0.0726538 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.0256168 -0.706869 0.70688 -1 0 0 -1 0 0 -1 0 0 -1 0.000642694 -0.000161811 -1 0.000459479 0.000192327 -0.999985 0.003891 -0.00379402 -0.999989 0.00465395 0 -0.978866 0.0548698 -0.197003 -0.994035 -0.0520308 -0.0958467 -0.98525 -0.114466 0.127204 -0.999947 0 0.0102581 -0.999955 0.00358575 0.00874431 -0.999084 -0.0397424 -0.0158665 -0.999826 0.0172647 0.00712466 -0.999761 0.0218786 0 -0.998352 -0.0354112 0.0451607 -0.997654 -0.0352817 0.0586642 -0.997295 0.032787 -0.065791 -0.998665 0 -0.0516627 -0.998672 0.00536464 -0.0512469 -0.999885 -0.00294642 0.0148837 -0.99818 0.0302591 0.0521621 -0.996925 0.063072 0.0465048 -0.996498 -0.0831846 -0.00845995 -0.997223 -0.0744642 0.0015502 -0.997185 -0.0749779 0 -0.9962 -0.0803363 0.0336268 -0.999732 0.00464318 -0.0226627 -0.999632 0.000343489 -0.0271077 -0.999946 0.00993418 0.00308163 -0.999946 0.00993978 0.00308673 -0.999923 0.00976892 0.0076868 -1 0.000166627 -3.33265e-05 -0.999934 -0.00657854 0.00945557 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707683 0.70653 0 -0.707683 0.70653 0 0 1 0 0 1 0 -0.49978 0.866152 0 -0.49978 0.866152 0 0.499791 0.866146 0 0.499791 0.866146 0 0 1 0 0 1 0 0.707683 0.70653 0 0.707683 0.70653 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.947299 0.320352 0.00211684 -0.7071 0.70711 0.000139469 -0.920783 0.390075 0 -0.43933 0.898326 -0.000268443 -0.492372 0.870385 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.706717 -0.707497 0 -0.706717 -0.707497 0 -1 0 0 -1 0 0 -0.866178 -0.499735 0 -0.866178 -0.499735 0 -0.866178 0.499735 0 -0.866178 0.499735 0 -1 0 0 -1 0 0 -0.707683 0.70653 0 -0.707683 0.70653 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.706728 -0.707485 0 -0.706728 -0.707485 0 -1 0 0 -1 0 0 -0.866178 -0.499735 0 -0.866178 -0.499735 0 -0.866178 0.499735 0 -0.866178 0.499735 0 -1 0 0 -1 0 0 -0.707683 0.70653 0 -0.707683 0.70653 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0.000824163 -0.523016 -0.852322 -0.000117508 -0.970579 -0.240783 0 -0.982745 -0.184965 0 -0.315121 -0.949051 -0.000575305 -0.482652 -0.875812 5.97765e-05 -0.977737 -0.209836 -0.000309998 -0.751968 -0.6592 0.000414782 -0.751967 -0.6592 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.706717 -0.707497 0 0.706717 -0.707497 0 0 -1 0 0 -1 0 0.499791 -0.866146 0 0.499791 -0.866146 0 -0.49978 -0.866152 0 -0.49978 -0.866152 0 0 -1 0 0 -1 0 -0.706717 -0.707497 0 -0.706717 -0.707497 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.706717 -0.707497 0 0.706717 -0.707497 0 0 -1 0 0 -1 0 0.499786 -0.866149 0 0.499786 -0.866149 0 -0.499786 -0.866149 0 -0.499786 -0.866149 0 0 -1 0 0 -1 0 -0.706717 -0.707497 0 -0.706717 -0.707497 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -0.000775075 0.457209 -0.889359 0 0.955937 -0.293571 0.000519256 0.927495 -0.373835 0.000367482 0.54112 -0.840945 0 0.396093 -0.91821 -0.000343977 0.898882 -0.43819 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707683 0.70653 0 0.707683 0.70653 0 1 0 0 1 0 0 0.866178 0.499735 0 0.866178 0.499735 0 0.866178 -0.499735 0 0.866178 -0.499735 0 1 0 0 1 0 0 0.706729 -0.707484 0 0.706729 -0.707484 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707683 0.70653 0 0.707683 0.70653 0 1 0 0 1 0 0 0.866178 0.499735 0 0.866178 0.499735 0 0.866178 -0.499735 0 0.866178 -0.499735 0 1 0 0 1 0 0 0.706718 -0.707496 0 0.706718 -0.707496 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 -8.91081e-07 1 6.23753e-05 -0.000128027 0.886104 0.463487 6.76335e-06 0.320026 0.947409 7.77521e-05 0.81898 0.573822 -0.000395588 0.267584 0.963534 0 0.322475 0.946578 0.000347422 0.864389 0.502823 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707683 0.70653 0 -0.707683 0.70653 0 0 1 0 0 1 0 -0.499786 0.866149 0 -0.499786 0.866149 0 0.499786 0.866149 0 0.499786 0.866149 0 0 1 0 0 1 0 0.707683 0.70653 0 0.707683 0.70653 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999111 0 -0.042155 0.999186 0.0201673 -0.0349513 0.993697 -0.0560269 -0.0970955 0.993529 -0.0694401 -0.0898796 0.993466 0 -0.114128 1 0 0 0.996964 0.0549795 -0.0551352 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.993982 0.0925892 0.0585327 0.999472 0.0324781 0 0.999496 0.0316516 0.00231645 0.998293 0.0505965 0.0291913 0.999577 0.0251794 -0.0145271 0.999549 0.0300171 0 0.999496 -0.00517861 0.0313148 0.99998 0.00155744 0.00617351 0.99523 0.0809316 0.0544672 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.99971 0.0058912 -0.0233504 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.000381294 0 0.999847 0.0153367 0.00842127 1 0.000420422 0.000242559 1 0.000445939 -0.000257281 0.999752 0.0222764 0 0.99952 0.00790947 -0.029962 1 0 0 1 0 0 0.999844 0.0125028 0.0124498 0.999788 -0.00436104 0.0201369 0.999929 0 0.0119462 0.999883 -0.00765136 0.0132599 0.999868 0.0081357 0.0140997 0.999929 0 0.0119462 0.999918 0.000447957 0.0128292 0.999704 -0.0235774 0.00593606 0.999852 -0.0168729 -0.00337467 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.973462 -0.161819 -0.161821 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999842 0.0172237 0.0043364 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999981 0 0.00610639 0.999984 -0.00281314 0.00487529 0.999915 0.00652942 0.0113158 0.9996 0 0.0282929 0.999637 0.0177533 0.0202695 1 0 0 0.999976 0.00486221 -0.0048416 0.998362 -0.0547507 -0.0166004 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.129002 0.701195 -0.701202 1 0 0 1 0 0 1 0 0 0.999918 0.0128414 0 0.999886 0.0130795 0.00754613 0.999819 0.0164758 -0.00950558 0.999056 -0.00372592 0.0432867 0.999601 -0.0282388 0 0.998237 0.00285884 -0.0592781 0.99984 -0.00437261 -0.0173313 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999474 -0.0079312 0.0314384 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999993 -0.00376668 0 0.99974 -0.0160635 -0.016203 0.99996 0.00776077 0.00447752 0.999952 0.000929587 -0.00977337 0.99998 0.00544043 -0.00313882 0.999984 0.00561461 0 1 0 0 1 0 0 0.999995 0.00215297 0.00215907 0.999742 -0.021662 0.00679127 0.999889 0 -0.0149181 0.9999 0.00706072 -0.0122365 0.988452 -0.120901 -0.0913503 0.991895 -0.0635025 -0.110052 0.993379 0 -0.114883 0.99779 0.0645345 -0.015837 0.997841 0.0636863 -0.0160342 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.996814 0.056398 0.0563986 1 0 0 1 0 0 1 0 0 0.999642 0.0101583 0.0247724 0.999635 0.00932099 0.0253641 0.999748 -7.6604e-05 0.0224615 0.999649 0.0264661 -0.0015497 0.999431 0.0188892 0.0279285 0.998694 0.050645 0.00668416 0.999675 0.00387103 -0.0252105 0.999879 -0.00607553 -0.0143156 0.999658 0 -0.0261625 0.988456 0.140839 -0.0558568 0.992661 -0.00836549 0.120642 0.999731 -0.0231599 0.00134165 0.99891 -0.0456706 0.00967248 0.999992 0.00392631 0.000988524 0.999992 0.00371512 -0.00155506 0.999991 0.00428424 0 0.995859 -0.0606908 -0.06768 0.997669 -0.035986 -0.0579809 0.995422 0.0379699 0.087715 0.997368 -0.0140805 0.071127 0.999973 -0.00122492 0.00729557 0.99985 0.0171906 -0.00226894 0.999897 0.0103617 -0.00990869 0.998434 0.00503094 0.0557107 0.996873 -0.0493113 -0.0617479 0.999813 0 -0.0193543 0.999822 0.00736112 -0.0173448 1 0 0 1 0 0 0 0 -1 0 0 -1 0 -0.379539 -0.925176 0 -0.379539 -0.925176 0 0.379539 -0.925176 0 0.379539 -0.925176 0 0.707425 -0.706788 0 0.707425 -0.706788 0 0.922451 -0.386115 0 0.922451 -0.386115 0 1 0 0 1 0 0.000449626 0.945297 -0.326212 0 0.071284 -0.997456 0 0.973721 -0.227742 0.000343575 0.70041 -0.71374 -0.000651948 0.81073 -0.58542 3.35671e-05 0.975861 -0.218393 0.000302291 0.375587 -0.926787 -0.00026474 0.131202 -0.991356 0.000920686 0.273307 -0.961927 0 0.194194 -0.980963 0 0.194194 -0.980963 0 0.707433 -0.70678 0 0.707433 -0.70678 0 0.922451 -0.386115 0 0.922451 -0.386115 0 1 0 0 1 0 0 0.95258 0.304287 0.00013328 0.924383 0.381467 0 0.849804 0.527099 -0.000134841 0.924383 0.381467 0 0.70678 0.707433 0 0.70678 0.707433 0 0.254554 0.967058 0 0.5494 0.83556 0.000435877 0.390671 0.92053 0 0.390671 0.92053 0 0.390671 0.92053 -0.000337811 -0.390671 -0.92053 0 0.254554 0.967058 0 0 1 0 0 1 0.000151416 0.991985 0.126355 0 0.352126 0.935953 -0.000165374 0.393049 0.919517 4.23839e-05 0.888928 0.458048 -0.00036931 0.947629 0.319374 0.00120937 0.965368 0.260889 0 1 0 -0.000457126 0.924382 0.381467 0 0.98058 0.196122 0 0.706788 0.707426 0 0.706788 0.707426 0 0.39054 0.920586 0 0.39054 0.920586 0 0 1 0 0 1 0 -0.39054 0.920586 0 -0.39054 0.920586 0 -0.706788 0.707426 0 -0.706788 0.707426 0 -0.837105 0.547042 -7.50774e-05 -0.998035 0.0626514 -0.000495815 -0.991402 0.130853 0.000420414 -0.980579 0.196122 0.00174136 -0.959959 0.280136 -0.000149901 -0.12467 0.992198 -0.000163967 -0.990595 0.136829 -0.000136918 -0.836048 0.548657 0.000319899 -0.304725 0.95244 -0.000251427 -0.506143 0.862449 -0.00132912 -0.936678 0.35019 0.000789416 -0.918334 0.395806 0.00195995 -0.727045 0.686587 -0.00109113 -0.239928 0.97079 0 0 1 0.000469736 -0.390671 0.92053 0 -0.200713 0.97965 0 -0.70678 0.707433 0 -0.70678 0.707433 0 -0.924383 0.381467 0 -0.924383 0.381467 0 -1 0 0 -1 0 0 -0.922451 -0.386115 0 -0.922451 -0.386115 0 -0.707433 -0.70678 0 -0.707433 -0.70678 0 -0.379406 -0.92523 0 -0.379406 -0.92523 0 0 -1 -0.000237983 -0.560898 -0.827885 -0.000855668 -0.447362 -0.894353 0.000248459 -0.10332 -0.994648 -0.000183272 -0.937579 -0.347773 -0.000102311 -0.564851 -0.825193 0.000113882 -0.920085 -0.391719 0 -0.933613 -0.358282 0.00158364 -0.256103 -0.966648 0 -1 0 -0.000574905 -0.929176 -0.369637 -0.000544074 -0.840353 0.542039 -0.000853459 0.914368 0.404883 -0.00160914 -0.0828342 0.996562 -0.000957202 0.69879 -0.715326 0.00207465 -0.985657 0.168751 0.0011916 -0.460116 0.887858 -0.000382816 -0.250791 -0.968041 0.000422201 -0.137193 -0.990544 0.00130979 -0.786161 -0.618021 0.00179629 0.951674 -0.307104 0.000469865 0.549801 -0.835295 0.00133828 0.215982 0.976397 0.000169102 0.876544 0.481321 -0.00133338 -0.986512 0.163684 -0.00128033 0.866263 0.499587 -0.00102488 0.29426 0.955725 -0.00106335 -0.505858 0.862616 0.000897383 0.552384 -0.833589 -0.000624056 0.408197 -0.912894 -0.000563497 -0.999174 0.040624 0.000284142 -0.0943726 0.995537 0.000262048 -0.767673 0.640842 0.000351704 0.948187 -0.317712 -0.0013928 -0.154681 -0.987963 -0.000798646 -0.76611 -0.642709 0.000741527 0.68561 0.727969 0.000902303 -0.626308 -0.779575 -3.9937e-05 0.960521 -0.278207 -0.00185668 -0.890894 -0.454208 -0.000137156 0.998807 -0.0488404 -0.000659887 -0.775876 0.630885 -0.000359654 0.644832 0.764324 0.000256409 -0.984231 -0.176887 -0.000451773 -0.0474823 0.998872 -0.000405231 0.0724027 -0.997375 0.000629354 -0.302804 -0.953053 0.00016709 0.671271 -0.741212 5.83596e-05 -0.749601 -0.66189 0.000868858 -0.378954 0.925415 0.000819828 -0.874178 0.485605 0.00115951 0.853564 0.520987 0.000640352 0.322607 0.946533 7.30596e-05 0.682779 -0.730625 0.000105671 0.189594 -0.981863 0.000225948 0.99499 -0.0999747 -0.00140643 -0.866456 0.499252 -0.00109196 0.685968 -0.727631 -0.000612036 -0.982447 -0.186543 -0.000876618 0.992955 -0.118488 -0.00102814 0.341303 0.939953 0.000387992 -0.988646 0.150261 -0.00064673 0.831003 0.556268 -8.55178e-05 0.183149 -0.983085 0.000440865 -0.368003 0.929825 0.00155732 0.91922 -0.393741 0.000620939 -0.388197 0.921576 -0.00134765 -0.627398 -0.778698 0.000427278 -0.831831 -0.555029 0.00150219 0.695699 0.718332 0.00145737 0.0418351 -0.999123 -0.001726 -0.421098 -0.907014 -0.0020375 -0.548867 0.835908 0.00191606 -0.116994 0.993131 -0.000570521 0.848667 -0.528927 -0.000753306 -0.144949 -0.989439 -0.000272743 -0.973148 -0.230179 5.48049e-05 0.502983 0.864296 0.00132097 0.95309 0.302685 -0.000858911 0.862339 -0.506331 0.00127993 -0.443993 -0.89603 -0.000143459 -0.658687 0.752417 -0.00103718 -0.951528 -0.30756 0.000777549 -0.949145 0.314837 0.00157368 0.375999 -0.926619 0.000232991 0.519193 0.854657 0.000359668 0.977715 0.209939 -0.00184528 0.403474 -0.914989 -0.00107671 0.971652 0.236413 -0.00189702 -0.457229 -0.889347 -0.000883876 0.556555 0.83081 -0.000365499 -0.675056 0.737766 -0.000462001 -0.047808 0.998856 0.000530886 -0.0713153 -0.997454 -0.00117393 -0.951733 -0.306924 0.000411569 -0.203057 0.979167 0.000837252 -0.860174 -0.509999 -0.000676597 -0.952266 0.30527 0.00164445 0.812499 0.58296 0.000546047 0.901336 -0.43312 0.00181659 0.838538 -0.54484 0.00101703 -0.858492 0.512827 0.00247054 0.651527 -0.758621 0.000559768 0.252711 0.967542 -0.000975484 0.447328 0.894369 -6.13064e-05 -0.782834 -0.62223 -0.000386704 -0.513109 0.858323 -0.000360723 -0.958114 0.286388 0.000624668 -0.75824 0.651975 -0.00082278 0.972225 0.234047 0.00116904 0.999987 -0.00504071 -0.000166032 0.693578 -0.720381 -0.000754384 0.734313 -0.67881 0.00140517 -0.998832 -0.0483014 9.09957e-05 -0.198027 -0.980197 0.000200091 -0.17909 -0.983833 0.000828569 0.219092 -0.975704 0.00101902 -0.26573 0.964047 0.00101362 0.734241 0.678889 0.000454422 -0.73045 -0.682967 -0.00142274 0.998464 -0.0553843 -0.000705616 0.739997 0.672609 0.000458734 0.956949 0.290256 0.00016245 0.766201 -0.642601 -0.00104631 -0.710786 -0.703407 -0.000878957 -0.772286 0.635275 -0.000555313 0.238635 0.971109 0.000437045 -0.999363 -0.0356839 -0.000909619 0.241013 -0.970521 -0.000383165 -0.19312 -0.981175 -0.000240938 -0.999631 0.0271703 0.000399156 0.508572 0.861019 4.60662e-05 -0.301716 0.953398 0.00167484 -0.461968 -0.886895 0.00140051 -0.449949 0.893053 0 -0.707433 -0.70678 0 -0.707433 -0.70678 0 -0.922451 -0.386115 0 -0.922451 -0.386115 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999992 0 0.00387203 -0.993346 -0.0575588 -0.0997517 -0.998168 0.0550697 -0.0250473 -0.998116 0.0306637 -0.0531415 -0.998094 0 -0.0617152 -1 0 0 -0.999232 -0.0276644 -0.0277428 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.994422 0.0745844 0.0745852 -1 0 0 -1 0 0 -1 0 0 -0.998737 -0.0424619 0.0268696 -0.999997 -0.0025404 0 -0.999996 -0.00245135 0.00141429 -0.999995 -0.00311783 -0.000849114 -0.999995 -0.00274558 -0.00158404 -0.999995 -0.00316822 0 -0.999978 -0.00612791 -0.00250504 -0.999955 -0.00231745 0.00918546 -0.999981 0.00237192 0.00578185 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999993 -0.000903165 -0.00358004 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999996 -0.00275815 0 -0.999998 -0.00174375 -0.000989056 -0.999891 0.012794 -0.00738143 -0.999903 0.00218358 0.0137565 -0.999951 0.00859619 0.00495951 -0.999959 0.00908941 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.998856 0.040269 -0.0258013 -0.999039 0.0218532 -0.0380009 -0.998906 0 -0.0467701 -0.997911 -0.0616237 0.0194007 -0.999813 0.0187527 0.00472348 -0.999806 0.018202 -0.00751146 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.501285 0.72423 -0.473503 -0.994943 0.0710222 -0.0710209 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999766 0.0209916 -0.00528741 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999999 0 -0.00166156 -0.999999 -0.000782115 -0.00136005 -1 -0.000194135 0.000337579 -0.999998 -0.00212376 -0.00052461 -1 0 0.000377099 -1 0 0 -0.999971 0.00538999 0.00537865 -0.999867 -0.00971946 0.0131059 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.96906 -0.174534 -0.174531 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999958 0.00919473 0 -0.999923 0.00314706 -0.0119969 -0.999951 -0.00859756 0.0049603 -0.999987 -0.00439119 -0.00253346 -0.999987 -0.00516226 0 -0.999902 0.00840316 0.011164 -0.999909 0.00330739 -0.0131101 -0.999942 -0.00420855 -0.00992046 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.000218994 0.000868009 -0.999921 -0.0102159 -0.00727627 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999997 -0.00260366 0 -0.999996 0.00156501 -0.00216178 -0.999994 -0.00302077 0.00174281 -0.999994 -0.0029305 -0.00169073 -0.999946 0.0103894 0 -0.999834 0.000919153 0.0182209 -1 0 0 -1 0 0 -0.999923 0.00878515 -0.00881003 -0.999702 0 -0.0244295 -0.999535 -0.0152344 -0.0264015 -0.999425 0.0169481 -0.0293722 -0.999686 -0.0151015 -0.020019 -0.999936 0 -0.0113033 -0.999806 -0.019112 -0.00481182 -0.999875 -0.00454837 0.0151384 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.966066 -0.182642 0.182644 -1 0 0 -1 0 0 -1 0 0 -0.999978 -0.00665454 -0.0008097 -1 -0.000963074 0.000242472 -1 -0.00079381 -0.000332269 -0.996226 0.0443195 -0.0746234 -0.997429 0.0716633 0 -0.991317 0.068644 -0.112156 -0.991967 -0.06666 0.107512 -0.989832 -0.0942037 0.106572 -0.999889 -0.00978841 -0.011255 -0.999844 0.0173203 0.00346417 -0.999498 -0.0105508 0.0298821 -0.999827 -0.0163049 -0.00894224 -0.999836 -0.00558379 -0.0172334 -0.999819 0 -0.0190242 -0.999817 0.00656865 -0.0179828 -0.999985 0.00107547 -0.00543043 -0.998576 0.0455312 0.0277869 -0.999709 0.00166761 0.0240627 -0.999813 -0.00627785 0.0183131 -0.999802 -0.0178615 -0.00873625 -0.999538 -0.0154849 -0.0261549 -0.999994 -0.00339231 0.000680809 -0.999587 0.0216364 0.0189301 -0.999997 0.00096054 -0.0022642 -0.999793 0 0.0203366 -0.994149 -0.103962 -0.0293225 -0.996196 -0.0430161 0.0757823 -0.998873 0.0054977 -0.0471389 -0.999961 -0.00314145 -0.00830881 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707683 0.70653 0 -0.707683 0.70653 0 0 1 0 0 1 0 -0.49978 0.866152 0 -0.49978 0.866152 0 0.499791 0.866146 0 0.499791 0.866146 0 0 1 0 0 1 0 0.707683 0.70653 0 0.707683 0.70653 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0.000673541 -0.916816 0.399309 0 -0.287906 0.957659 0.000653929 -0.439252 0.898363 0 -0.912061 0.410054 -0.000461057 -0.81031 0.586001 -0.000155456 -0.342112 0.939659 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.706717 -0.707497 0 -0.706717 -0.707497 0 -1 0 0 -1 0 0 -0.866178 -0.499735 0 -0.866178 -0.499735 0 -0.866178 0.499735 0 -0.866178 0.499735 0 -1 0 0 -1 0 0 -0.707694 0.706519 0 -0.707694 0.706519 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.706717 -0.707497 0 -0.706717 -0.707497 0 -1 0 0 -1 0 0 -0.866178 -0.499735 0 -0.866178 -0.499735 0 -0.866178 0.499735 0 -0.866178 0.499735 0 -1 0 0 -1 0 0 -0.70739 0.706824 0 -0.70739 0.706824 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 -0.00130272 -0.268385 -0.963311 0 -0.429703 -0.90297 0.000436086 -0.586404 -0.810019 -0.000594567 -0.905329 -0.424711 0.000449327 -0.888021 -0.459803 0 -0.95374 -0.300632 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.7072 -0.707013 0 0.7072 -0.707013 0 0 -1 0 0 -1 0 0.498523 -0.866876 0 0.498523 -0.866876 0 -0.498513 -0.866882 0 -0.498513 -0.866882 0 0 -1 0 0 -1 0 -0.7072 -0.707013 0 -0.7072 -0.707013 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.7072 -0.707013 0 0.7072 -0.707013 0 0 -1 0 0 -1 0 0.498518 -0.866879 0 0.498518 -0.866879 0 -0.498518 -0.866879 0 -0.498518 -0.866879 0 0 -1 0 0 -1 0 -0.7072 -0.707013 0 -0.7072 -0.707013 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.258484 -0.966016 0.000623834 0.424536 -0.905411 -0.000639676 0.890988 -0.454026 0.000206338 0.181173 -0.983451 2.45552e-05 0.671721 -0.740804 0 0.966456 -0.256832 0.00062026 0.805429 -0.592691 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707391 0.706823 0 0.707391 0.706823 0 1 0 0 1 0 0 0.866178 0.499735 0 0.866178 0.499735 0 0.866178 -0.499735 0 0.866178 -0.499735 0 1 0 0 1 0 0 0.706718 -0.707496 0 0.706718 -0.707496 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707695 0.706518 0 0.707695 0.706518 0 1 0 0 1 0 0 0.866178 0.499735 0 0.866178 0.499735 0 0.866178 -0.499735 0 0.866178 -0.499735 0 1 0 0 1 0 0 0.706718 -0.707496 0 0.706718 -0.707496 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0.00033885 0.924916 0.380172 0.000183553 0.364707 0.931122 0 0.991557 0.12967 -0.00037513 0.792261 0.610182 0.00015953 0.358963 0.933352 0 0.282165 0.959366 0.000208226 0.815735 0.578425 -0.000723984 0.897654 0.440699 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707683 0.70653 0 -0.707683 0.70653 0 0 1 0 0 1 0 -0.499786 0.866149 0 -0.499786 0.866149 0 0.499786 0.866149 0 0.499786 0.866149 0 0 1 0 0 1 0 0.707683 0.70653 0 0.707683 0.70653 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999138 0 -0.0415169 0.999587 -0.0283496 0.00477949 0.998817 0.024305 -0.0421221 0.998101 -0.0307873 -0.0533549 0.999748 0 -0.0224525 0.999236 0.0187093 -0.0343009 1 0 0 0.999736 0.0162108 -0.0162567 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.995303 -0.0684571 0.0684581 1 0 0 1 0 0 1 0 0 1 0 0 0.999534 0.0305185 0 0.999614 0.0267449 0.00751752 0.999028 0.0381888 0.0220328 0.99982 0.0164318 -0.00948022 0.999783 0.0208153 0 0.999808 0.00555162 0.0187692 0.999777 0.00516598 0.0204759 0.999872 -0.00607696 0.0148134 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999999 0.000416732 -0.00165188 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999876 0.015772 0 0.999805 -0.00382527 -0.0193662 1 0.000349247 0.000201496 0.999756 0.00826701 0.0204912 1 0.00027244 -0.000157182 0.999984 0.0056354 0 0.999958 0.00037732 -0.00919352 1 0 0 1 0 0 0.999978 0.00474879 0.0047388 0.999922 0 0.0124673 0.999903 -0.00695313 0.0120907 0.999801 0.00993559 0.0172774 0.999937 -0.0042014 0.0104328 0.999967 0 0.00808136 0.999859 -0.016289 0.00410292 0.999927 -0.0111928 -0.00461895 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999971 -0.00541587 -0.00541579 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999618 0.0268036 0.00675136 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.99939 0 0.0349362 0.999829 0.0156281 0.00987375 0.99916 -0.0204292 0.0355246 0.998683 0.0255736 0.0444702 0.999994 0 0.00344357 0.99901 -0.0396801 0.0200916 1 0 0 0.999982 -0.00422831 0.00421941 0.99997 0.00378499 0.00679475 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.934474 0.251754 -0.251749 1 0 0 1 0 0 1 0 0 0.999961 -0.00885615 0 0.999962 -0.00751482 -0.00433562 0.995527 -0.0526808 0.0784297 0.996226 -0.075179 0.043374 0.995726 -0.0923575 0 0.997696 -0.0350354 -0.0580969 0.994223 -0.0262556 -0.104074 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999938 -0.00271797 0.010773 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.995673 -0.0929257 0 0.997806 0.00896514 0.0655986 0.99414 -0.0936354 -0.0540223 0.990627 -0.118313 0.0682601 0.999444 -0.0333441 0 0.99547 -0.0675657 -0.0668937 1 0 0 1 0 0 0.999589 -0.0202416 -0.0202989 0.999616 -0.0121628 -0.0249067 0.999048 0 -0.0436206 0.998769 0.0247877 -0.0429581 0.99852 -0.0133385 -0.0527158 0.998549 -0.0269115 -0.0466387 0.99863 0 -0.0523183 0.998984 0.0448747 0.00427584 0.999879 0.0150759 -0.00379565 0.999945 0.00967151 0.00404826 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.994379 0.0748698 0.0748706 1 0 0 1 0 0 1 0 0 0.999963 0.00166524 0.00840841 0.999965 0.00837874 0.000498944 0.998401 -0.0553949 -0.0112693 0.998468 -0.00753547 -0.0548129 0.999909 2.07687e-05 0.0134713 0.999999 -0.000256859 -0.00125419 0.999913 0.00760821 -0.0108251 0.999879 -0.0089017 -0.0127705 0.999868 -0.0148596 -0.00658844 0.999903 -0.0138158 -0.00175842 0.999984 -0.0054071 -0.00136134 0.998378 -0.0342192 -0.0455081 0.998607 -0.0517379 0.0103834 0.998609 -0.0518337 0.00970426 0.998843 0.0165293 0.0451528 0.999646 0.00389147 0.0263355 0.999622 0.00783426 0.0263478 0.999807 0.0192615 -0.00385242 0.999711 -0.00643347 -0.0231796 0.999964 -0.00590033 0.00604954 0.999965 -0.00598389 0.00591732 0.993661 0.112016 -0.00955016 0.995587 0.0188286 -0.0919361 1 0 0 1 0 0 0 0 -1 0 0 -1 0 -0.379406 -0.92523 0 -0.379406 -0.92523 0 0.379406 -0.92523 0 0.379406 -0.92523 0 0.707433 -0.70678 0 0.707433 -0.70678 0 0.98045 -0.196768 0 0.98045 -0.196768 0.00123716 0.941338 -0.337462 0.000117 0.553099 -0.833116 0.000104419 0.0868432 -0.996222 0 0.995768 -0.0919021 0.000204248 0.866394 -0.499361 0.000806628 0.168282 -0.985739 -0.000416401 0.985172 -0.171571 0.000229226 0.866885 -0.498507 -0.00046252 0.689376 -0.724404 -0.000522681 0.565892 -0.824479 -4.48672e-05 0.114475 -0.993426 0.000233588 0.194271 -0.980948 0 0.379539 -0.925176 0 0.707425 -0.706788 0 0.707425 -0.706788 0 0.922451 -0.386115 0 0.922451 -0.386115 0 1 0 0 1 0 0 0.924383 0.381467 0 0.924383 0.381467 0 0.706788 0.707426 0 0.706788 0.707426 0 0.39054 0.920586 -0.000241241 0.200636 0.979666 0 0 1 0.00288073 0.340797 0.940132 0.000115785 0.995321 0.0966213 0.000234125 0.194718 0.980859 0.00161011 0.911718 0.410813 -0.00158381 0.144272 0.989537 0.00110953 0.459397 0.88823 -0.000838574 0.644256 0.76481 -0.00369052 0.893861 0.448328 -0.00158994 0.813935 0.580954 0.00051139 0.985793 0.167963 0.00023502 0.980579 0.196122 0 0.924383 0.381467 0 0.70678 0.707433 0 0.70678 0.707433 0 0.387376 0.921922 0 0.387376 0.921922 0 0 1 0 0 1 0 -0.387376 0.921922 0 -0.387376 0.921922 0 -0.70678 0.707433 0 -0.70678 0.707433 0 -0.924383 0.381467 -0.00023502 -0.980579 0.196122 0.000320524 -0.266575 0.963814 -0.00196974 -0.973187 0.230006 0.0231069 -0.470397 0.882152 -9.96419e-05 -0.996537 0.0831502 5.3464e-06 -0.348745 0.937218 2.65326e-05 -0.993559 0.11332 -7.16279e-05 -0.839501 0.543358 7.10788e-05 -0.860666 0.50917 0 0 1 -0.000241241 -0.200636 0.979666 0 -0.39054 0.920586 0 -0.706788 0.707426 0 -0.706788 0.707426 0 -0.924383 0.381467 0 -0.924383 0.381467 0 -1 0 0 -1 0 0 -0.938009 -0.346612 8.48878e-05 -0.922451 -0.386115 -8.46186e-05 -0.922451 -0.386115 0 -0.826308 -0.563219 0 -0.707425 -0.706788 0 -0.707425 -0.706788 0 -0.379539 -0.925176 -0.000233588 -0.194271 -0.980948 0.0130439 -0.383518 -0.923442 0.000245921 -0.605271 -0.796019 -0.000124436 -0.103491 -0.99463 -4.45505e-05 -0.924506 -0.381167 0.000384797 -0.625882 -0.779918 -0.000550469 -0.201623 -0.979463 -0.000550754 -0.892866 -0.450323 0.000326247 -0.990814 -0.135228 0 -1 0 0.00435315 0.912489 0.409077 -0.000985347 -0.999882 -0.0153644 -0.00118293 -0.501106 -0.865385 -0.000656898 0.423405 -0.90594 -0.000250413 -0.752392 0.658715 -0.000874625 0.586245 0.810133 -0.000482405 0.988191 -0.153229 0.00162665 0.720956 -0.692979 0.00142236 0.0376416 -0.99929 0.000633619 0.341314 0.939949 -2.42363e-07 -0.602423 -0.798177 0.000981821 -0.482907 0.875671 -0.000217508 -0.2291 0.973403 0.000879021 -0.966832 -0.255412 0.000757402 -0.961103 0.276188 0.00299049 0.968198 0.250166 -0.00375393 0.958061 0.286541 -0.000487512 -0.611202 -0.791475 -0.00145154 -0.434768 0.900542 -0.00103351 0.999533 0.0305318 -0.000489838 0.048689 -0.998814 0.000253694 -0.961644 -0.274302 5.94071e-05 -0.0261631 -0.999658 -0.00081632 -0.988781 -0.149368 6.69502e-05 0.831636 -0.555321 -0.000989961 0.741958 -0.670446 9.07582e-05 -0.695834 -0.718202 -0.000220095 0.803516 0.595284 -0.00151931 0.269394 0.963029 -0.000852495 -0.936533 0.350577 0.000582046 -0.795887 0.605445 0.00112879 -0.0791513 0.996862 -0.0013635 0.998209 0.0598041 0.000442201 -0.99875 -0.0499747 -0.000939667 -0.994757 0.102267 0.00136108 -0.331369 -0.9435 -0.00148582 -0.628534 -0.777781 -0.00012009 0.386845 -0.922145 -0.000785681 0.339019 -0.940779 0.000443495 -0.801256 -0.598321 0.00115961 0.949801 0.312854 0.00211934 0.925406 -0.378971 6.94838e-05 0.546216 0.837645 0.000654307 -0.940468 0.339882 0.000206525 -0.662868 0.748736 -6.96906e-05 -0.104124 0.994564 0.000769545 0.441327 0.897346 7.96832e-05 -0.997578 -0.0695577 -0.000918197 0.921026 0.389501 -0.000388614 -0.917015 0.398853 0.000625098 0.31381 -0.949486 -0.00013843 -0.70399 0.71021 -0.000256512 -0.317308 -0.948322 0.000415379 -0.801804 -0.597588 -0.000747677 0.454051 -0.890975 0.000342678 -0.80034 0.599546 0.000427721 -0.182101 0.98328 -0.000554368 0.884431 -0.46667 -0.000239109 0.901933 -0.431875 0.000575741 0.445759 0.895153 -0.000481315 -0.339224 -0.940705 -0.000655541 -0.741161 -0.671327 0.000158452 -0.996628 -0.0820534 -0.00128084 0.2658 0.964027 -0.000701313 -0.349617 0.936893 0.00220146 -0.514554 -0.857455 0.000200809 0.866192 0.499711 0.00634914 0.715478 -0.698606 -0.00314378 -0.550653 0.834728 0.0016335 0.982463 0.18645 -0.0014799 -0.307318 -0.951606 -0.000849197 -0.978602 -0.20576 -0.000533931 0.745596 0.666398 0.000970114 -0.998517 0.0544276 -0.000179916 -0.763486 0.645824 -0.000370464 0.646171 -0.763193 0.00179025 -0.729277 -0.684216 -0.000694043 -0.362449 0.932003 -0.000272499 0.985069 -0.172157 0.000459483 0.999253 0.0386479 0.000690802 0.886973 -0.46182 0.000216643 -0.146995 -0.989137 0.00153277 0.240894 0.97055 -0.00172875 0.835045 0.550179 0.000296577 0.530663 -0.847583 0.000143069 -0.14133 -0.989963 -0.0012385 0.240072 0.970754 -0.000937508 -0.999842 0.0177331 9.78024e-05 0.998069 0.0621203 2.47267e-05 0.571186 0.820821 -0.00103828 0.817591 0.575799 -0.00121114 0.863229 -0.504812 0.000708765 -0.761855 0.647748 -0.000885153 -0.757752 -0.652542 2.65825e-05 -0.820304 0.571927 0.00411478 -0.702448 0.711723 0.000817715 -0.905595 -0.424143 -0.000557364 -0.105591 0.99441 0.00129851 0.547978 -0.836492 -0.0010889 -0.233801 -0.972284 0.000627421 0.58721 -0.809435 -0.00133495 -0.954503 -0.298198 -0.00134738 0.401796 0.915728 -0.00163737 -0.751853 0.659328 -0.000358994 -0.494666 -0.869083 0.00077472 0.995553 0.0942024 0.000633588 0.996884 0.0788747 0.00164669 -0.749529 -0.66197 0.000566133 0.664598 -0.747201 -0.00164979 -0.752391 0.658715 3.14711e-05 0.50767 0.861552 -0.000901936 0.78547 -0.618899 0.00219341 -0.253565 0.967316 0.00219089 0.0979322 -0.995191 0.000940309 -0.997386 0.0722508 -0.000195519 -0.756696 -0.653767 -0.000623919 -0.136617 -0.990624 0.000541577 0.172199 -0.985062 -0.00119121 0.577944 0.816075 -0.000120765 -0.74222 0.670157 -0.000118631 -0.741914 0.670495 -0.00207357 0.988748 0.149573 -0.000332511 -0.998049 0.0624423 -0.000204531 -0.995995 0.089412 -0.000690498 -0.188091 0.982151 0.000365591 0.00603073 0.999982 9.39851e-05 -0.78065 -0.624968 0.00193371 0.85296 0.521973 0.000376416 0.906946 -0.421247 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.931251 -0.364379 0 -0.378792 -0.925482 0.000154193 -0.892573 -0.450904 0.000226993 -0.439392 -0.898295 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.707012 -0.707202 0 0.707012 -0.707202 0 0 -1 0 0 -1 0 0.190833 -0.981623 0 0.190833 -0.981623 0 0.0416367 -0.999133 0 0.0416367 -0.999133 0 -0.0416388 -0.999133 0 -0.0416388 -0.999133 0 -0.190833 -0.981623 0 -0.190833 -0.981623 0 0 -1 0 0 -1 0 -0.707104 -0.70711 0 -0.707104 -0.70711 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.3923 -0.919837 0 0.890109 -0.455748 -0.000486365 0.949482 -0.313821 0 0.380532 -0.924767 -0.00095728 0.950644 -0.310283 -1.34208e-05 0.567381 -0.823455 0.000439313 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707012 0.707202 0 0.707012 0.707202 0 1 0 0 1 0 0 0.981626 0.190815 0 0.981626 0.190815 0 0.999133 0.0416378 0 0.999133 0.0416378 0 0.999133 -0.0416378 0 0.999133 -0.0416378 0 0.981626 -0.190815 0 0.981626 -0.190815 0 1 0 0 1 0 0 0.707012 -0.707202 0 0.707012 -0.707202 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707012 0.707202 0 0.707012 0.707202 0 1 0 0 1 0 0 0.981626 0.190815 0 0.981626 0.190815 0 0.999133 0.0416378 0 0.999133 0.0416378 0 0.999133 -0.0416378 0 0.999133 -0.0416378 0 0.981626 -0.190815 0 0.981626 -0.190815 0 1 0 0 1 0 0 0.707012 -0.707202 0 0.707012 -0.707202 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707012 0.707202 0 0.707012 0.707202 0 1 0 0 1 0 0 0.981626 0.190815 0 0.981626 0.190815 0 0.999133 0.0416378 0 0.999133 0.0416378 0 0.999133 -0.0416378 0 0.999133 -0.0416378 0 0.981626 -0.190815 0 0.981626 -0.190815 0 1 0 0 1 0 0 0.707012 -0.707202 0 0.707012 -0.707202 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707012 0.707202 0 0.707012 0.707202 0 1 0 0 1 0 0 0.981626 0.190815 0 0.981626 0.190815 0 0.999133 0.0416378 0 0.999133 0.0416378 0 0.999133 -0.0416378 0 0.999133 -0.0416378 0 0.981626 -0.190815 0 0.981626 -0.190815 0 1 0 0 1 0 0 0.707012 -0.707202 0 0.707012 -0.707202 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707012 0.707202 0 0.707012 0.707202 0 1 0 0 1 0 0 0.981626 0.190815 0 0.981626 0.190815 0 0.999133 0.0416378 0 0.999133 0.0416378 0 0.999133 -0.0416378 0 0.999133 -0.0416378 0 0.981626 -0.190815 0 0.981626 -0.190815 0 1 0 0 1 0 0 0.707015 -0.707199 0 0.707015 -0.707199 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707012 0.707202 0 0.707012 0.707202 0 1 0 0 1 0 0 0.981626 0.190815 0 0.981626 0.190815 0 0.999133 0.0416367 0 0.999133 0.0416367 0 0.999133 -0.0416378 0 0.999133 -0.0416378 0 0.981626 -0.190815 0 0.981626 -0.190815 0 1 0 0 1 0 0 0.707015 -0.707199 0 0.707015 -0.707199 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707012 0.707202 0 0.707012 0.707202 0 1 0 0 1 0 0 0.981626 0.190815 0 0.981626 0.190815 0 0.999133 0.0416367 0.000751743 0.933487 -0.358611 0 0.999133 0.0416367 -0.000752937 0.925074 0.379788 0 0.999133 -0.0416378 0 0.999133 -0.0416378 0 0.981626 -0.190815 0 0.981626 -0.190815 0 1 0 0 1 0 0 0.707015 -0.707199 0 0.707015 -0.707199 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707013 0.7072 0 0.707013 0.7072 0 1 0 0 1 0 0 0.981626 0.190815 0 0.981626 0.190815 0 0.999133 0.0416378 0 0.999133 0.0416378 0 0.999133 -0.0416373 0 0.999133 -0.0416373 0 0.981626 -0.190815 0 0.981626 -0.190815 0 1 0 0 1 0 0 0.707013 -0.7072 0 0.707013 -0.7072 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707013 0.7072 0 0.707013 0.7072 0 1 0 0 1 0 0 0.981626 0.190815 0 0.981626 0.190815 0 0.999133 0.0416378 0 0.999133 0.0416378 0 0.999133 -0.0416373 0 0.999133 -0.0416373 0 0.981626 -0.190815 0 0.981626 -0.190815 0 1 0 0 1 0 0 0.707013 -0.7072 0 0.707013 -0.7072 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707013 0.7072 0 0.707013 0.7072 0 1 0 0 1 0 0 0.981626 0.190815 0 0.981626 0.190815 0 0.999133 0.0416378 0 0.999133 0.0416378 0 0.999133 -0.0416373 0 0.999133 -0.0416373 0 0.981626 -0.190815 0 0.981626 -0.190815 0 1 0 0 1 0 0 0.707012 -0.707202 0 0.707012 -0.707202 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.938379 0.345607 0 0.36966 0.929167 4.10318e-05 0.384674 0.923053 0 0.934504 0.355954 2.63713e-05 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707105 0.707108 0 -0.707105 0.707108 0 0 1 0 0 1 0 -0.190822 0.981625 0 -0.190822 0.981625 0 -0.0416264 0.999133 0 -0.0416264 0.999133 0 0.0416244 0.999133 0 0.0416244 0.999133 0 0.190822 0.981625 0 0.190822 0.981625 0 0 1 0 0 1 0 0.707013 0.7072 0 0.707013 0.7072 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.183322 0.983053 0 -0.403854 0.914823 0.000498313 -0.517449 0.855714 7.66783e-05 -0.931631 0.363405 -0.000117517 -0.949831 0.312763 0 -0.360972 0.932576 -0.000409364 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.70711 -0.707104 0 -0.70711 -0.707104 0 -1 0 0 -1 0 0 -0.981617 -0.190859 0 -0.981617 -0.190859 0 -0.999135 -0.0415877 0 -0.999135 -0.0415877 0 -0.999135 0.0415882 0 -0.999135 0.0415882 0 -0.981617 0.190859 0 -0.981617 0.190859 0 -1 0 0 -1 0 0 -0.707111 0.707102 0 -0.707111 0.707102 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707111 -0.707102 0 -0.707111 -0.707102 0 -1 0 0 -1 0 0 -0.981617 -0.190859 0 -0.981617 -0.190859 0 -0.999135 -0.0415877 0 -0.999135 -0.0415877 0 -0.999135 0.0415882 0 -0.999135 0.0415882 0 -0.981617 0.190859 0 -0.981617 0.190859 0 -1 0 0 -1 0 0 -0.707111 0.707102 0 -0.707111 0.707102 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707111 -0.707102 0 -0.707111 -0.707102 0 -1 0 0 -1 0 0 -0.981617 -0.190859 0 -0.981617 -0.190859 0 -0.999135 -0.0415877 0 -0.999135 -0.0415877 0 -0.999135 0.0415882 0 -0.999135 0.0415882 0 -0.981617 0.190859 0 -0.981617 0.190859 0 -1 0 0 -1 0 0 -0.707111 0.707102 0 -0.707111 0.707102 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707113 -0.707101 0 -0.707113 -0.707101 0 -1 0 0 -1 0 0 -0.981617 -0.190859 0 -0.981617 -0.190859 0 -0.999135 -0.0415882 0 -0.999135 -0.0415882 0 -0.999135 0.0415872 0 -0.999135 0.0415872 0 -0.981617 0.190859 0 -0.981617 0.190859 0 -1 0 0 -1 0 0 -0.70711 0.707104 0 -0.70711 0.707104 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707113 -0.707101 0 -0.707113 -0.707101 0 -1 0 0 -1 0 0 -0.981617 -0.190859 0 -0.981617 -0.190859 0 -0.999135 -0.0415882 0.000751843 -0.933447 0.358715 0 -0.925074 -0.379788 0 -0.999135 -0.0415882 -0.000753038 -0.999135 0.0415872 0.000765374 -0.930243 0.366945 0 -0.919711 -0.392597 0 -0.999135 0.0415872 -0.000766748 -0.981617 0.190859 0 -0.981617 0.190859 0 -1 0 0 -1 0 0 -0.70711 0.707104 0 -0.70711 0.707104 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707113 -0.707101 0 -0.707113 -0.707101 0 -1 0 0 -1 0 0 -0.981617 -0.190859 0 -0.981617 -0.190859 0 -0.908627 0.417609 0 -0.902987 -0.429667 0 -0.999135 -0.0415882 0.00044277 -0.999135 0.0415882 0 -0.999135 0.0415882 0 -0.981617 0.190859 0 -0.981617 0.190859 0 -1 0 0 -1 0 0 -0.70711 0.707104 0 -0.70711 0.707104 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.70711 -0.707104 0 -0.70711 -0.707104 0 -1 0 0 -1 0 0 -0.981617 -0.190859 0 -0.981617 -0.190859 0 -0.999135 -0.0415882 0 -0.999135 -0.0415882 0 -0.999135 0.0415882 0 -0.999135 0.0415882 0 -0.981617 0.190859 0 -0.981617 0.190859 0 -1 0 0 -1 0 0 -0.70711 0.707104 0 -0.70711 0.707104 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.70711 -0.707104 0 -0.70711 -0.707104 0 -1 0 0 -1 0 0 -0.981617 -0.190859 0 -0.981617 -0.190859 0 -0.999135 -0.0415882 0 -0.999135 -0.0415882 0 -0.999135 0.0415882 0 -0.999135 0.0415882 0 -0.981617 0.190859 0 -0.981617 0.190859 0 -1 0 0 -1 0 0 -0.70711 0.707104 0 -0.70711 0.707104 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.70711 -0.707104 0 -0.70711 -0.707104 0 -1 0 0 -1 0 0 -0.981617 -0.190859 0 -0.981617 -0.190859 0 -0.999135 -0.0415882 0 -0.999135 -0.0415882 0 -0.999135 0.0415882 0 -0.999135 0.0415882 0 -0.981617 0.190859 0 -0.981617 0.190859 0 -1 0 0 -1 0 0 -0.70711 0.707104 0 -0.70711 0.707104 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.70711 -0.707104 0 -0.70711 -0.707104 0 -1 0 0 -1 0 0 -0.981617 -0.190859 0 -0.981617 -0.190859 0 -0.999135 -0.0415882 0 -0.999135 -0.0415882 0 -0.999135 0.0415882 0 -0.999135 0.0415882 0 -0.981617 0.190859 0 -0.981617 0.190859 0 -1 0 0 -1 0 0 -0.70711 0.707104 0 -0.70711 0.707104 0 0 1 0 0 1 0 1 0 0 1 0 0 0.0712931 0 -0.997455 0 -0.00378016 -0.999993 -0.0271271 0 -0.999632 -0.0271271 0 -0.999632 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.170948 0.0353673 -0.984645 -0.031102 -0.0261904 -0.999173 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.08497 0.0175794 -0.996228 -0.0156881 -0.0132107 -0.99979 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0231611 0.0323586 -0.999208 0.125218 -0.0259064 -0.991791 0 0 -1 0 0 -1 0.0306712 0.00634554 -0.999509 -0.00897554 -0.00755818 -0.999931 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0230677 -0.0110448 -0.999673 -0.0032582 -0.0167608 -0.999854 -0.0225531 -0.0062836 -0.999726 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0201569 0 -0.999797 -0.0201569 0 -0.999797 0 0.00277367 -0.999996 0.0513661 0 -0.99868 0 0 -1 0 0 -1 0.0027041 -0.00191346 -0.999995 0 0 -1 -0.00164471 -0.00200939 -0.999997 0 -0.00998834 -0.99995 0.0209794 0.00599121 -0.999762 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.00136898 0 -0.999999 0.00136898 0 -0.999999 0 0.000194654 -1 -0.0038995 0 -0.999992 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.183496 -0.0379635 -0.982287 0.0303128 0.0423417 -0.998643 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.187658 -0.0388247 -0.981467 0.030077 0.0420124 -0.998664 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.00861488 -0.0120334 -0.999891 -0.0549959 0.0113781 -0.998422 0 0 -1 0 0 -1 -0.079619 -0.0164723 -0.996689 0.072767 0.0612767 -0.995465 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0105763 -0.0089061 -0.999904 -0.023055 0.00476983 -0.999723 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.314673 0.00134989 -0.949199 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0138522 0.0193491 -0.999717 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.314674 0.00134989 -0.949199 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.03353 0.0468357 -0.99834 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.29396 0.00126102 -0.955817 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.706408 -0.706429 -0.0441108 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.99791 -0.0646134 0.000869757 0.070724 -0.00436292 -0.997486 -0.0300956 -0.0207463 -0.999332 0.0142046 0 -0.999899 0 0 -1 0 0 -1 0 0 -1 0.297598 -0.00115684 -0.954691 -0.0245838 0.0146497 -0.99959 0 0 -1 0.0205509 0.0225935 -0.999534 -0.0362108 0.00425387 -0.999335 0 0 -1 0 0 -1 0 0 -1 0.0267302 0.00314013 -0.999638 -0.0149029 0.0106161 -0.999833 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0841364 0 -0.996454 0.0561067 -0.0340382 -0.997844 -0.0664552 -0.00900206 -0.997749 -0.153259 0.0332154 -0.987628 0.0154034 -0.0371681 -0.99919 0.0527096 -0.0415944 -0.997743 0 0 -1 -0.0101109 -0.00915605 -0.999907 0.0192424 -0.00302527 -0.99981 0.000744615 -0.00184187 -0.999998 0.0042071 6.88195e-05 -0.999991 0 0 -1 -0.0061124 -0.0035283 -0.999975 0.00579712 -0.00525128 -0.999969 0 0 -1 -0.119138 -0.0940524 -0.988413 0.574417 0.00277708 -0.818558 0 0 -1 -0.56923 -0.00648886 -0.822153 0.0724356 0.000435749 -0.997373 -0.0333124 -0.0248262 -0.999137 -0.0377823 -0.0251914 -0.998968 0 0 -1 0 0 -1 0.141543 -0.0308412 -0.989452 -0.0127559 0.0307783 -0.999445 -0.0431334 0.0340515 -0.998489 0 0 -1 0.0273696 0.0247928 -0.999318 -0.0469983 0.000762003 -0.998895 -0.0132604 0.00155776 -0.999911 0.0379529 -0.00445852 -0.99927 -0.00467681 -0.0242907 -0.999694 0.00563576 -0.024261 -0.99969 -0.0334356 0.000439625 -0.999441 -0.00246006 0.00175241 -0.999995 0 0 -1 0.086453 0.0849275 -0.992629 -0.50234 -0.00215494 -0.864668 0 0 -1 0 0 -1 0 0 -1 -0.0923401 0.01132 -0.995663 0.176401 0.045263 -0.983277 -0.0445961 0.00698256 -0.998981 0.233083 0.00705931 -0.972431 -0.229414 0.00098414 -0.973328 0.0367846 -0.0290279 -0.998902 0 0 -1 -0.00945964 -0.00856637 -0.999919 0.013543 -0.00428746 -0.999899 -0.0842174 0.0266616 -0.996091 -0.0026969 0.0452586 -0.998972 0.0679297 0.00798005 -0.997658 -0.0123171 -0.00144695 -0.999923 0.00285586 -0.00203436 -0.999994 0 0 -1 0 0 -1 -0.156799 -0.0934376 -0.983201 -0.0328481 -0.0792578 -0.996313 0.298184 0.0588057 -0.952695 0 0 -1 0.0705805 0 -0.997506 -0.0422693 -0.0269652 -0.998742 0.34965 0.0241532 -0.936569 0.0167146 -0.0340595 -0.99928 0 0 -1 0 0 -1 0.0698009 -0.0137657 -0.997466 -0.00367276 0.00886229 -0.999954 -0.00923757 0.00908 -0.999916 0 0 -1 0.0146535 0.0104383 -0.999838 -0.0191686 0.00301416 -0.999812 -0.000713625 0.0018381 -0.999998 -0.00419286 2.24984e-05 -0.999991 0 0 -1 0 0 -1 0 0 -1 0.0141939 -0.0018949 -0.999898 0 0.00568779 -0.999984 0.0700571 0.0828757 -0.994094 -0.501104 -0.00193902 -0.865385 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.18552 -0.0165852 -0.9825 0.0251856 0.020236 -0.999478 -0.111785 0.0242267 -0.993437 0.0138659 -0.0334546 -0.999344 0.0495679 -0.0391159 -0.998004 0 0 -1 -0.0108573 -0.00983215 -0.999893 0.0208096 -0.00244462 -0.99978 -0.0269748 0.00316889 -0.999631 0 0.0170292 -0.999855 0.0290043 0.00340731 -0.999573 -0.0344088 -0.0040422 -0.9994 0.0214192 -0.0235483 -0.999493 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0664068 -0.00508893 -0.99778 0.156546 0.0119803 -0.987598 0 0 -1 0 0 -1 0 0 -1 0.110424 -0.021777 -0.993646 -0.0102316 0.0246887 -0.999643 -0.026858 0.0263999 -0.999291 0 0 -1 0.00286475 0.00204068 -0.999994 -0.0121182 0.00142358 -0.999926 0.0070613 -0.000829522 -0.999975 -0.000959999 -0.00498573 -0.999987 0.000843126 -0.00488626 -0.999988 -0.00761431 -0.000894487 -0.999971 0.0122157 0.00143503 -0.999924 -0.0022111 0.00200229 -0.999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0136773 0 -0.999906 -0.0461003 0.00243568 -0.998934 -0.0230071 0.00253475 -0.999732 -0.137283 -0.0252295 -0.990211 -0.313619 0.00134537 -0.949548 0.0695739 -0.0549034 -0.996065 0 0 -1 -0.0108573 -0.00983215 -0.999893 0.0185073 -0.00298199 -0.999824 -0.00611353 -0.00140218 -0.99998 0.00512118 0.00532838 -0.999973 -0.00485021 0.00466303 -0.999977 0.00524311 -0.00504077 -0.999974 0.00449312 -0.00493974 -0.999978 0 0 -1 -0.168201 -0.100233 -0.980644 -0.035431 -0.0854857 -0.995709 0.35152 0.0761899 -0.933075 0 0 -1 0.0653192 -0.00414311 -0.997856 0.203204 0.0213231 -0.978904 0.241575 0.0314238 -0.969873 0.0136996 0 -0.999906 0 0 -1 0 0 -1 0 0 -1 0.0985498 -0.000383088 -0.995132 -0.0145361 0.0114754 -0.999829 0 0 -1 0.00808718 0.00732571 -0.99994 0 -0.0137366 -0.999906 -0.00838136 0.00758985 -0.999936 0 0 -1 0 0 -1 0 0.0119832 -0.999928 -0.000282006 0.0040718 -0.999992 -0.48004 0.877246 -0.000666458 0.0330461 0.124447 -0.991676 0.00606094 0.0641776 -0.99792 -0.0228417 -0.0240438 -0.99945 0 0 -1 -0.0136773 0 -0.999906 -0.0108631 -0.000211358 -0.999941 -0.167654 -0.00326196 -0.985841 0.0783649 0.113957 -0.99039 -0.314673 0.00134989 -0.949199 0.0695197 -0.0548606 -0.996071 0 0 -1 -0.0108573 -0.00983215 -0.999893 0.0185527 -0.00297139 -0.999823 -0.0274274 -4.88594e-05 -0.999624 0.000958866 0.0155574 -0.999879 -0.0355005 0.0236674 -0.999089 0.0289722 -0.0365632 -0.998911 -0.0603847 0.175319 -0.982658 0.0189655 -0.0290403 -0.999398 0 -0.004559 -0.99999 -0.00200634 -0.00484076 -0.999986 0.0187357 0.00406084 -0.999816 0 0 -1 -0.235581 0.0253043 -0.971525 -0.0171461 -0.0110119 -0.999792 0.326398 0.0319025 -0.944694 0.133321 -0.00810996 -0.99104 -0.0236134 -0.0104204 -0.999667 0.347854 0 -0.937549 0 0 -1 0 0 -1 0 0 -1 0.0973141 -0.00041937 -0.995254 -0.0289575 0.0228602 -0.999319 0 0 -1 0.0172539 0.0156293 -0.999729 0 -0.0261368 -0.999658 -0.0156781 0.0141975 -0.999776 0 0 -1 0 0 -1 0 0.177138 -0.984186 0.0279041 -0.0806937 -0.996348 -0.00703575 0.0345287 -0.999379 -0.00120804 -0.0560104 -0.998429 0.0157988 -0.140872 -0.989902 0.0153764 0.162817 -0.986537 -0.0321486 -0.03384 -0.99891 0 0 -1 -0.0136773 0 -0.999906 -0.0461003 0.00243568 -0.998934 -0.0395583 0.00246389 -0.999214 -0.0638376 0.00855282 -0.997924 -0.0757045 -0.00810125 -0.997097 0.0695197 -0.0548606 -0.996071 0 0 -1 -0.0108573 -0.00983215 -0.999893 0.018468 -0.00299115 -0.999825 0 -0.00179779 -0.999998 -0.00538338 -0.00698409 -0.999961 0.00843168 0.000990519 -0.999964 -0.0127032 -0.00149232 -0.999918 0.0084661 -0.00766909 -0.999935 -0.0507284 0.0459527 -0.997655 0.0111939 -0.0361712 -0.999283 0.0275265 0.0289757 -0.999201 -0.0965958 0.0547311 -0.993818 0.0983868 0.00220901 -0.995146 0.00465077 0.0239886 -0.999701 0.0701432 0 -0.997537 0 0 -1 0 0 -1 0 0 -1 0.178692 -0.000770072 -0.983905 -0.0402342 0.0317624 -0.998685 0 0 -1 -0.000818317 -0.000741267 -0.999999 0 0.00140305 -0.999999 0.000954583 -0.000864435 -0.999999 0 0 -1 0 0 -1 0 0.0113399 -0.999936 -0.0217159 0.0828908 -0.996322 -0.00662611 -0.0114094 -0.999913 0.498944 0.859122 0.113862 0.00606094 0.0641776 -0.99792 -0.0209786 -0.0183453 -0.999612 0 0 -1 -0.0392893 0 -0.999228 0.00598056 0.00380906 -0.999975 -0.0466343 0.00662593 -0.99889 -0.0985465 -0.00247607 -0.995129 0.0695199 -0.0548598 -0.996071 0 0 -1 -0.0108574 -0.00983202 -0.999893 0.0185406 -0.00297416 -0.999824 -0.0268316 -8.16001e-05 -0.99964 -0.00154388 0.015062 -0.999885 -0.03342 0.012349 -0.999365 0.0310667 -0.047964 -0.998366 0.00287326 0.0271243 -0.999628 0 0 -1 0.00891297 -0.00470233 -0.999949 -0.0141089 -0.0105145 -0.999845 0.994724 0.0905297 -0.0482497 0.0128072 -0.0370743 -0.99923 0.00887458 -0.00470282 -0.99995 0.0285477 0.00659926 -0.999571 0 0 -1 0.160287 0.00344773 -0.987064 -0.0377452 0.0297975 -0.998843 0 0 -1 -0.000244972 -0.000221907 -1 -1.99507e-06 0.000406627 -1 0.000258053 -0.000209596 -1 0 0 -1 0 0 -1 -5.65526e-05 0.0115263 -0.999934 0.00656802 -0.0103133 -0.999925 0.00659482 -0.0155575 -0.999857 -0.00669915 -0.0109863 -0.999917 0 0 1 0.0129871 0.130656 -0.991343 -0.0619882 -0.0652494 -0.995942 0 0 -1 -0.15858 0 -0.987346 -0.107798 0.0019264 -0.994171 0.0608958 -0.0254124 -0.997821 0.104793 -0.0240549 -0.994203 0.267283 -0.00740538 -0.96359 0.0724945 -0.0572072 -0.995727 0 0 -1 -0.0108574 -0.00983202 -0.999893 0.0184375 -0.00299823 -0.999826 -0.0418839 0.00094006 -0.999122 0.00153599 0.0257985 -0.999666 0.0104364 0.0239347 -0.999659 0.0123566 0.021784 -0.999686 -0.0405124 0.1486 -0.988067 0.00820805 0.0146574 -0.999859 0.00554845 0.00485215 -0.999973 0.033535 0.0189797 -0.999257 -0.850996 -0.0113772 -0.525049 0.119393 0 -0.992847 0 0.0774612 -0.996995 0 0 -1 0.0110269 -0.0180067 -0.999777 0.00677892 -0.00910832 -0.999936 0.0011194 -0.0684965 -0.997651 0.00606094 0.0641776 -0.99792 -0.0209786 -0.0183453 -0.999612 0 0 -1 -0.0282747 0 -0.9996 0.00536726 0.00399466 -0.999978 -0.0638854 0.00784696 -0.997926 -0.466509 -0.040128 -0.883606 0 0 -1 0 0 -1 -0.0108576 -0.00983221 -0.999893 0.0185408 -0.00297417 -0.999824 -0.0237289 -0.00027952 -0.999718 -0.00210402 0.0118865 -0.999927 0.00647974 0.0122572 -0.999904 -0.00250006 0.0165091 -0.999861 0.00905345 0.00437115 -0.999949 -0.0697195 0.220674 -0.972853 0.00393009 0.0125825 -0.999913 0.00069453 0.000731108 -1 -0.00972331 9.32931e-05 -0.999953 0.248558 -0.00238486 -0.968614 -0.00228803 -0.000905702 -0.999997 0.00203249 -0.000862298 -0.999998 0.00416981 0.000450594 -0.999991 -0.0300987 0.00724082 -0.999521 0.0732944 -0.0176324 -0.997154 -0.00670607 0.0161808 -0.999847 -0.0178691 0.0175645 -0.999686 0 0 -1 0.165933 0.118202 -0.979027 -0.141424 0.0166139 -0.98981 0.0143014 -0.00168006 -0.999896 -0.00181285 -0.00941567 -0.999954 0.0016023 -0.00928667 -0.999956 -0.0147315 -0.00173058 -0.99989 0 0 -1 0 0 -1 0 0 -1 0.0362104 0.0355715 -0.998711 -0.210876 -0.000904615 -0.977512 0 0 -1 0 0 -1 -0.00403416 0 -0.999992 0.00104918 -0.000668139 -0.999999 -0.360678 -0.0281154 -0.932267 0 0 -1 -0.0556934 0.00525832 -0.998434 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.01412 -0.0456254 -0.998859 -0.0666293 -0.0137849 -0.997683 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0209524 -0.0677024 -0.997486 -0.14999 -0.0310313 -0.9882 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0113669 -0.0367294 -0.999261 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.707107 -0.707107 0.000715616 0.953974 -0.29989 0.000107291 0.594849 -0.803837 0.000253806 0.932099 -0.362204 0 0.443658 -0.896196 0 1 0 0 1 0 0 0.2772 0.960812 0 0.707117 0.707096 0.000456792 0.889897 0.456161 0 0 1 0 0 1 0 0.382823 0.923822 0 0.382823 0.923822 0 0.707107 0.707107 0 0.707107 0.707107 0 0.54731 0.83693 0 0.0813645 0.996684 -0.000525662 0.38285 0.92381 0.000202148 0.0556606 0.99845 -0.000254626 0 1 0 0.407892 0.91303 0 -0.331406 0.943487 -0.00133466 -0.337474 0.941335 0 -0.192203 0.981355 0.000359965 0.332961 0.94294 -0.000183774 0.34347 0.939164 0.000444911 0 1 0 0 1 0 -0.38285 0.92381 0 -0.38285 0.92381 0 -0.707006 0.707207 0 -0.707006 0.707207 0 -0.164117 0.986441 -0.000439916 -0.109522 0.993984 -0.00018324 -0.548656 0.836048 0 -0.38285 0.92381 0.00020515 -0.0585114 0.998287 -9.7895e-05 -0.306288 0.951936 -0.00224872 -0.843111 0.53774 0 -0.437743 0.899099 0.00163283 -1 0 0 -1 0 0 -0.952437 -0.304736 0 -0.707107 -0.707107 0.000825015 -0.333824 -0.942635 -0.000558487 -0.119373 -0.992849 0.000761881 -0.92863 -0.371007 -0.000119381 0 -1 0 -0.382884 -0.923797 0 -0.164134 -0.986438 0.000274611 -0.707006 -0.707207 0 -0.707006 -0.707207 0 -0.548656 -0.836048 0 -0.240878 -0.970555 0 -0.38285 -0.92381 -0.00020515 -0.38285 -0.92381 0.000203374 0 -1 0 0 -1 0 -0.368685 -0.929555 0 0.348999 -0.937123 0 0.366699 -0.93034 4.67295e-05 -0.359368 -0.933196 2.4375e-05 0 -1 0 0 -1 0 0.220463 -0.975395 0 0.38285 -0.92381 0.000127446 0.450957 -0.892546 0 0.38285 -0.92381 -0.000126671 0.707107 -0.707107 0 0.707107 -0.707107 0 0.382856 -0.923808 0 0.382856 -0.923808 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.00745553 -0.00745575 0.999944 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.000689391 0 1 0.000689391 0 1 0 -0.000103564 1 -0.00241772 0 0.999997 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0417135 0.00863009 0.999092 0.00986492 -0.0137794 0.999856 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0417135 0.00863009 0.999092 0.00986492 -0.0137794 0.999856 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0809598 0.0167497 0.996577 0.0270461 -0.0377782 0.99892 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0417141 0.0086302 0.999092 0.0232777 -0.0196017 0.999537 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0417137 0.00863017 0.999092 0.023278 -0.0196021 0.999537 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0829165 0.00706158 0.996531 0 -0.0135733 0.999908 0.00966031 -0.006184 0.999934 0.0011107 -0.00571366 0.999983 0.0116116 0.00248949 0.999929 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.00769395 0 0.99997 0.00769395 0 0.99997 0 0.00109034 0.999999 -0.0214373 0 0.99977 0 0 1 -0.00932494 -0.00414797 0.999948 -0.0002604 -0.00625053 0.99998 -0.00106589 -0.00548313 0.999984 0 -0.00489897 0.999988 -0.0173419 0.00830333 0.999815 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.03878 0 0.999248 -0.03878 0 0.999248 0 0.00590999 0.999983 0.140135 0 0.990132 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0132947 -0.018574 0.999739 0.0830019 0.0171722 0.996401 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0288192 -0.0242683 0.99929 0.0780364 0.016145 0.99682 0 0 1 0 0 1 0.0916173 -0.0189548 0.995614 -0.0425766 0.0358535 0.99845 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0447738 -0.0625535 0.997037 0.121822 0.0252039 0.992232 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.382856 -0.923808 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0423531 0.00917977 0.999061 -0.00441212 -0.0106453 0.999934 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.00843174 -0.000911144 0.999964 0.0706997 0.0120966 0.997424 -0.00866368 -0.0209031 0.999744 0.0095562 -0.00039777 0.999954 0 0 1 0.00929878 -0.000686671 0.999957 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0423535 0.00917994 0.999061 -0.00441158 -0.0106451 0.999934 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.382856 -0.923808 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0243758 0.0340557 0.999123 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0421915 0.0355292 0.998478 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0423535 0.00917994 0.999061 -0.000742086 -0.00909027 0.999958 0 0 1 0 0 1 0 0 1 0.00550101 -0.0029151 0.999981 0.0164228 0.00379641 0.999858 0.0493485 -0.0023361 0.998779 0.0338608 -0.00573507 0.99941 -0.763721 0.0155585 0.645359 0.999992 -0.00387237 0.000874993 0.0788285 0.000306426 0.996888 -0.021634 -0.0128917 0.999683 0 0 1 0.0348368 -0.0382989 0.998659 -0.0800949 7.93247e-05 0.996787 -0.0131611 -0.0015461 0.999912 -0.410432 -0.0482153 0.910616 0.545787 -0.0641161 0.835467 0 0 1 0 0 1 0 0 1 0.0191806 -0.0151359 0.999701 -0.0467693 0.000180974 0.998906 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.10076 0.0132805 0.994822 0.119692 0.0408097 0.991972 -0.0944399 -0.000365436 0.99553 0.0111572 0.0109603 0.999878 0 0 1 -0.0028525 0.00203197 0.999994 0.0122545 0.00143959 0.999924 -0.00698728 -0.000820832 0.999975 -0.0184531 0.00519796 0.999816 0.00322291 0.0101515 0.999943 0.0210523 0.00430141 0.999769 -0.0177931 0.00324597 0.999836 0 0.0140193 0.999902 -0.00395867 0.0180114 0.99983 0.531575 -0.00810502 0.846972 0.0270215 0 0.999635 0 0 1 0 0 1 0.201642 0.0124884 0.97938 0.166624 0.0103196 0.985967 -0.175588 0.0724752 0.981792 0.0856978 -0.0463617 0.995242 0.0709511 0.0170687 0.997334 -0.00111181 -0.0136186 0.999907 -0.0250637 0.0178541 0.999526 0.00284757 -0.00202845 0.999994 0.0151243 -0.00251112 0.999883 0 -0.0074726 0.999972 -0.00840617 -0.00124948 0.999964 -0.00154423 -0.00169679 0.999997 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.103861 0.00672779 0.994569 -0.304783 -0.0167477 0.952275 -0.0948235 -0.000406773 0.995494 0.0111572 0.0109603 0.999878 0 0 1 0 0 1 0 0 1 -0.0322447 -0.00378795 0.999473 -0.0174489 -0.0107929 0.99979 0.0288359 0.00174628 0.999583 0.0040249 0.0098884 0.999943 0.0100599 0.0110598 0.999888 0 0 1 0 0 1 0.228188 -0.000753072 0.973617 0.00375472 0.00176936 0.999991 0 0 1 0.0202732 -0.00396766 0.999787 0.00515955 -0.00741954 0.999959 -0.655153 0.0305412 -0.754878 0.0943055 -0.000868239 0.995543 -0.0183959 -0.0180825 0.999667 0 0 1 0.00284939 -0.00202977 0.999994 -0.0122617 -0.00144045 0.999924 0.0145024 0.00170368 0.999893 0 0.00898444 0.99996 -0.014813 0.00174017 0.999889 0 0 1 0.00673779 0.000899512 0.999977 0 -0.00287007 0.999996 0.0022249 -0.00529969 0.999983 -0.0317347 0.000136136 0.999496 0 0 1 -0.0956907 0 0.995411 0 0 1 0 0 1 0 0 1 0.0655205 -0.0417248 0.996979 -0.323301 -0.0101931 0.946241 0 0 1 0 0 1 -0.00837343 0.0092006 0.999923 0.0186194 0.00296978 0.999822 -0.00646788 0.00138398 0.999978 -0.0142054 0.00572997 0.999883 0.00456398 0.0106754 0.999933 0.0263998 0.00584749 0.999634 -6.60265e-05 0.00193387 0.999998 -0.215886 0.224327 -0.9503 -0.00103524 0.0151586 0.999885 0.0838867 -0.000361509 0.996475 0 0 1 0.0142431 0 0.999899 -0.00163403 0.00121779 0.999998 -0.00594987 0.000768526 0.999982 0.395945 -0.051143 0.916849 0.0423531 0.00917977 0.999061 -0.00441212 -0.0106453 0.999934 -0.0216394 -0.0128952 0.999683 0 0 1 0.0129452 -0.0142319 0.999815 -0.0374429 -0.00414291 0.99929 0.0263385 -0.000146642 0.999653 -0.00212676 0.0164636 0.999862 -0.0310641 0.00364928 0.999511 0 0 1 0 0 1 0 0 1 0.00601145 -0.00590543 0.999965 -0.0317347 0.000136136 0.999496 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.277718 0.0702932 0.958087 -0.314998 -0.00135127 0.949091 0.0460424 0.0452296 0.997915 0 0 1 -0.0175942 0.0125331 0.999767 0.0291489 0.00342426 0.999569 -0.00735968 -0.000864575 0.999973 -0.0184169 0.00461985 0.99982 -0.0789395 -0.0113537 0.996815 0.0383132 0.0717821 0.996684 0 0.00284071 0.999996 0.00558937 -0.00333072 0.999979 0 0 1 -0.00555009 0.0523942 0.998611 0.013887 -0.0121443 0.99983 0 0 1 0.00407092 0 0.999992 -0.000813452 0.000681867 0.999999 -0.0041803 0.00042032 0.999991 0.119687 0.0199933 0.99261 -0.0216394 -0.0128952 0.999683 0 0 1 0.022276 -0.0244903 0.999452 -0.0422834 -0.000824888 0.999105 0.0158968 -0.00225766 0.999871 0.0638201 0.0134765 0.99787 -0.00997756 0.0334835 0.999389 0.0434325 0.058252 0.997357 -0.0236215 0.00509888 0.999708 -0.0277275 -0.00253657 0.999612 -0.00595425 0.0562154 0.998401 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.148175 0 0.988961 -0.0978525 -0.0087097 0.995163 -0.0948235 -0.000406776 0.995494 0.0199707 0.0119005 0.99973 0 0 1 -0.0199865 0.0219609 0.999559 -0.00120339 -0.0283167 0.999598 0.0263725 0.0230384 0.999387 -0.00010065 0.00294795 0.999996 0.00123878 0.00147793 0.999998 -0.000981888 -0.00879243 0.999961 -0.0015148 0.0267142 0.999642 0.00576818 0.00342094 0.999978 -0.00846874 0.10176 0.994773 0.0262808 -0.0229827 0.99939 0.0085473 -0.000977559 0.999963 -0.0173629 -0.000992601 0.999849 0.140682 0.0300201 0.9896 -0.72085 0.0508535 0.691223 -0.0535841 0.0227657 0.998304 -0.0420988 -0.0250872 0.998798 0 0 1 0 0 1 0.0130349 -0.00928543 0.999872 -0.0197301 -0.00304997 0.999801 0.0208469 -0.000463355 0.999783 0.00499824 0.00875214 0.999949 0.0549366 0.0199874 0.99829 -0.0263366 -0.0443582 0.998668 -0.0248536 -0.0415684 0.998827 -0.00219351 0.0207073 0.999783 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.130751 0.0172333 0.991265 0.0203449 0.0436124 0.998841 -0.428009 0.00532096 0.903759 -0.00260154 -1.252e-05 0.999997 0 0.0028351 0.999996 -0.00485804 0.00544274 0.999973 0.000951818 -0.00605611 0.999981 0.00486496 0.00534845 0.999974 0 0 1 0 0 1 0.000976883 -0.00821495 0.999966 0.00159145 0.0270075 0.999634 -0.0137167 -0.0220959 0.999662 -0.00446363 -0.0105083 0.999935 -0.0153812 0.0581687 0.998188 -0.000860721 0.00812542 0.999967 0 0 1 0.0115361 0 0.999933 -0.0017004 0.00126725 0.999998 -0.00665292 0.000859327 0.999978 0.111087 -0.0143487 0.993707 -0.0152833 -0.0120653 0.99981 0 0 1 0.00719392 -0.00651657 0.999953 -0.0104032 -0.00245741 0.999943 0.0242955 -0.000243553 0.999705 0.0225883 0.000761515 0.999745 -0.0374627 -0.0146735 0.99919 -0.00834384 0.0131159 0.999879 0.0119642 0.0578398 0.998254 -0.00441045 0.0120353 0.999918 -0.0018498 0.0016176 0.999997 0 0 1 0 0 1 0 0 1 0 0 1 -0.0439745 0.00579593 0.999016 -0.222248 -0.025306 0.974662 -0.0948235 -0.000406776 0.995494 0.0199707 0.0119005 0.99973 0 0 1 -0.00488699 0.00536975 0.999974 0 -0.00882991 0.999961 0.00544446 0.0038783 0.999978 0 0 1 0 0 1 0 0.0756463 0.997135 0.00153365 0.0205404 0.999788 0.159191 0.310488 0.937153 0.0123655 -0.0147678 0.999815 0.00654465 0.103168 0.994642 -0.00253934 0.0298138 0.999552 0.00656968 -0.00574522 0.999962 0 0 1 0.135341 0 0.990799 -0.0177029 -0.0292018 0.999417 -0.916958 0.0103737 0.398848 0 0 1 0 0 1 0 0 1 0.0111488 -0.00108224 0.999937 0.130872 0.00664003 0.991377 0.00423044 0.0724019 0.997367 -0.037387 0.0602234 0.997485 -0.0213674 0.0766695 0.996828 0.0197479 0.157136 0.98738 -0.0221266 0.0442349 0.998776 -0.011355 0.0099297 0.999886 -0.0053553 -0.00283777 0.999982 -0.0169853 0.00392642 0.999848 0 0 1 -0.0192539 -0.00265556 0.999811 0.0121431 -0.0101675 0.999875 0.627002 -0.0307916 0.778409 0 0 1 0.0075433 0.00449506 0.999961 0 0 1 -0.00488699 0.00536975 0.999974 0 -0.00882991 0.999961 0.00513845 0.00465463 0.999976 0 0 1 0 0 1 0 0.120503 0.992713 -0.00514337 -0.0460569 0.998926 -0.00466804 0.0148195 0.999879 0.0741511 0.261869 0.962251 0.0286549 -0.0471317 0.998478 -0.0163168 0.172805 0.984821 0.0518049 -0.0545322 0.997167 0 0 1 0.114224 0 0.993455 0.126866 -0.00136073 0.991919 -0.610298 -0.10935 0.784589 -0.0836798 0.00525096 0.996479 -0.0244036 0.0221058 0.999458 0.0109245 -0.00989587 0.999891 -0.018265 -0.00295309 0.999829 0.020569 -0.000485024 0.999788 0.0158477 0.0021309 0.999872 -0.0278333 -0.0102363 0.99956 0.0140306 0.0306063 0.999433 -0.0109611 -0.0169827 0.999796 -0.00519276 -0.00130055 0.999986 -0.00739436 0.00646618 0.999952 -0.053597 0 0.998563 0.0075481 -0.00632004 0.999952 0.0431857 -0.00212081 0.999065 0 0 1 -0.00414976 -0.0136165 0.999899 0 0.120503 0.992713 0 0 1 -0.00624052 0.0177428 0.999823 -0.0140451 -0.0168825 0.999759 0.0286535 -0.0471307 0.998478 -0.0179288 0.169252 0.98541 0.040841 -0.0357157 0.998527 0.00751489 0.00354132 0.999965 0 0 1 -0.00662261 0.0036908 0.999971 0.161646 0.0302422 0.986385 0.0801863 0.037426 0.996077 0.0203737 -0.00378619 0.999785 -0.00556572 -0.00637742 0.999964 0.00659539 -0.00315788 0.999973 0.000611964 -0.0060179 0.999982 -0.645497 0 0.763763 0 0 1 0 0 1 0 0 1 0.142081 -0.0293277 0.989421 0 0 1 0 0 1 -0.43304 0.000549517 0.901375 -0.452135 -0.000573749 0.891949 0 0 1 0 0 1 0 0 1 0 0 1 -0.0322447 -0.00378796 0.999473 -0.0174489 -0.010793 0.99979 0.0288359 0.00174629 0.999583 0.00207201 0.0105289 0.999942 0.0190158 0.0135458 0.999727 0 0 1 0 0 1 -0.0497072 0.0296208 0.998325 0.117101 -0.000504642 0.99312 0 0 1 0 0 1 0 0 1 0.00484029 0.00541105 0.999974 -0.375923 -0.0777744 0.923381 0.0714978 0.0998702 0.992428 0 0 1 0 0 1 -0.0291147 -0.094056 0.995141 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.011516 -0.00266212 0.99993 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.375752 -0.0777391 0.923454 0.0715427 0.0999328 0.992419 0 0 1 0 0 1 -0.0102954 -0.0332604 0.999394 0 0 1 0 0 1 0 0 1 0 0 1 0.0334329 0.00691691 0.999417 -0.00269697 -0.00526466 0.999983 -0.375923 -0.0777744 0.923381 0.0714978 0.0998702 0.992428 0 0 1 -0.00921954 -0.0203916 0.99975 0.00630025 -0.101224 0.994844 0 0 1 0 0 1 0.100399 -0.0207715 0.99473 0.0607766 0.012574 0.998072 -0.0181651 -0.0152965 0.999718 0 0 1 0 0 1 0 0 1 0 0 1 -0.0541338 -0.174881 0.9831 0 0 1 0 0 1 0.0499383 -0.0103317 0.998699 0.0641103 0.0132638 0.997855 -0.017403 -0.0146547 0.999741 0 0 1 0 0 1 0 0 1 0 0 1 -0.00975365 -0.0315095 0.999456 0 0 1 0 0 1 0.707117 0.707096 0.000471395 0.139132 0.990274 -0.000232887 0.913053 0.407841 0 0 1 0 0.382823 0.923822 0 0.164074 0.986448 0.00027462 0.707107 0.707107 0 0.707107 0.707107 0 0.54731 0.83693 0 0.0813645 0.996684 0.000521109 0.056036 0.998429 0.000256343 0.38285 0.92381 -0.000203914 0 1 0 -0.320944 0.947098 0 0.355501 0.934676 0 0 1 0.000814633 0 -0.125082 -0.992146 0 1 0 0 1 0 -0.38285 0.92381 0 -0.38285 0.92381 0 -0.707006 0.707207 0 -0.707006 0.707207 0 -0.164117 0.986441 -0.000439916 -0.109522 0.993984 -0.00018324 -0.548656 0.836048 0 -0.38285 0.92381 0.00020515 0 1 0 -0.137083 0.99056 0.00022934 -0.707117 0.707096 -0.000508477 -0.927715 0.373289 0 -1 0 0 -1 0 0 -0.707107 -0.707107 0.000533141 -0.119384 -0.992848 -0.000199729 -0.928631 -0.371005 0 0 -1 0 -0.164134 -0.986438 0.000274611 -0.382884 -0.923797 0 -0.707006 -0.707207 0 -0.707006 -0.707207 0 -0.548656 -0.836048 0 -0.240878 -0.970555 0 -0.38285 -0.92381 -0.00020515 -0.38285 -0.92381 0.000203374 0 -1 0 0 -1 0 0.366699 -0.93034 0 0 -1 0.000898436 0 -0.0032691 -0.999995 -0.368685 -0.929555 0 0 -1 0 0 -1 0 0.220463 -0.975395 0 0.38285 -0.92381 0.000127446 0.450957 -0.892546 0 0.38285 -0.92381 -0.000126671 0.707107 -0.707107 0 0.707107 -0.707107 0 0.382856 -0.923808 0 0 -1 0 0 -1 0 0.957453 -0.288588 0.000487164 0.40159 -0.91582 3.91306e-05 0.87975 -0.475436 0 0.419403 -0.9078 0 0.487849 -0.872928 0.000176646 0.971376 -0.237548 -0.000702863 1 0 0 1 0 0 0.707117 0.707096 0 0.437651 0.899145 -0.000732562 0 1 0 0.164074 0.986448 0.00027462 0.382823 0.923822 0 0.707107 0.707107 0 0.707107 0.707107 0 0.54731 0.83693 0 0.38285 0.92381 -0.000203914 0.38285 0.92381 0.000202148 0.241428 0.970419 0 0 1 0 0 1 0 0.0659349 0.997824 -0.0006607 0.357976 0.933731 0 -0.405943 0.913898 -4.22615e-05 -0.376992 0.926216 -9.6246e-05 -0.309487 0.950904 0.000280591 0.33489 0.942257 0.00100602 -0.0621203 0.998069 0.000142041 0 1 0 -0.0546862 0.998504 -0.000125037 -0.38285 0.92381 0.000128681 -0.451721 0.892159 0 -0.135183 0.99082 -0.000552131 -0.707006 0.707207 0 -0.707006 0.707207 0 -0.164117 0.986441 -0.000439916 -0.0704152 0.997518 0 -0.548656 0.836048 0 -0.164117 0.986441 0.000443759 -0.259099 0.965851 0 -0.965118 0.261816 0 -0.942876 0.333145 -0.000113139 -0.16906 0.985606 -0.000613302 -0.916754 0.399451 0.000244268 -0.162769 0.986664 0.000591735 -1 0 0 -1 0 0 -0.707107 -0.707107 0.000722372 -0.392439 -0.919778 0 -0.931951 -0.362584 0.000411361 -0.868613 -0.495491 0 -0.316216 -0.948687 0.000161467 0 -1 0 0 -1 0 -0.382884 -0.923797 0 -0.382884 -0.923797 0 -0.707006 -0.707207 0 -0.707006 -0.707207 0 -0.548656 -0.836048 0 -0.240878 -0.970555 0 -0.38285 -0.92381 -0.00020515 -0.38285 -0.92381 0.000203374 0 -1 0 0 -1 0 0.366699 -0.93034 2.72909e-05 0.355523 -0.934668 0 -0.368685 -0.929555 0 -0.317679 -0.948198 0.00013229 0 -1 0 0 -1 0 0.220583 -0.975368 0 0.38285 -0.92381 0.000127358 0.450913 -0.892568 0 0.38285 -0.92381 -0.000126584 0.707107 -0.707107 0 0.707107 -0.707107 0 0.382856 -0.923808 0 0.382856 -0.923808 0 0 -1 0 0.134752 -0.990879 -0.000451096 0.707107 -0.707107 0.00047814 0.960125 -0.279572 0 1 0 0 1 0 0 0.707117 0.707096 0 0.707117 0.707096 0 0 1 0 0 1 0 0.382823 0.923822 0 0.382823 0.923822 0 0.707107 0.707107 0 0.707107 0.707107 0 0.54731 0.83693 0 0.382884 0.923797 -0.000203875 0.382884 0.923797 0.000202109 0.241493 0.970402 0 0 1 0 0 1 0 0 1 0.000830201 0.329683 0.944092 0 -0.357704 0.933835 0 0 1 0 0 1 0 -0.382884 0.923797 0 -0.382884 0.923797 0 -0.707006 0.707207 0 -0.707006 0.707207 0 -0.38285 0.92381 -0.000203374 -0.108998 0.994042 0.000182365 -0.548656 0.836048 0 -0.164117 0.986441 0.000443759 0 1 0 -0.943103 0.332498 0.000969186 -0.162304 0.986741 -0.000271535 -0.707117 0.707096 0 -1 0 0 -1 0 0 -0.887503 -0.460802 0 -0.470056 -0.882637 0 -0.707107 -0.707107 0.000748254 -0.707107 -0.707107 -0.000652836 0 -1 0 0 -1 0 -0.382884 -0.923797 0 -0.382884 -0.923797 0 -0.707006 -0.707207 0 -0.707006 -0.707207 0 -0.548656 -0.836048 0 -0.240878 -0.970555 0 -0.38285 -0.92381 -0.00020515 -0.38285 -0.92381 0.000203374 0 -1 0 0 -1 0 -0.38294 -0.923773 0 0.414789 -0.909918 -4.73176e-05 0.305503 -0.952191 -0.000374046 0.0689537 -0.99762 0.000172188 0.0426985 -0.999088 -0.000320346 0.349004 -0.937121 0.000134743 -0.363931 -0.931426 6.98121e-05 -0.319982 -0.947424 -0.000275695 0.0221714 -0.999754 0.000101426 0.943998 0.329952 -0.000523126 0.0341224 -0.999418 0.00021686 0 -1 0 0.220583 -0.975368 0 0.38285 -0.92381 0.000127358 0.450913 -0.892568 0 0.38285 -0.92381 -0.000126584 0.707107 -0.707107 0 0.707107 -0.707107 0 0.382856 -0.923808 0 0.382856 -0.923808 0 0 -1 0 0 -1 0 0.707107 -0.707107 0 0.707107 -0.707107 0 1 0 0 1 0 0 1 0 0 1 0 0 0.00647738 -0.999979 -1.08422e-05 0.271421 -0.962461 6.24588e-05 0.954866 -0.297037 5.80297e-05 0.968484 -0.249076 0 0.69511 -0.718904 0 0.16157 -0.986861 -0.00046876 0.718277 -0.695757 0.000454333 0.69511 -0.718904 0 0.672976 -0.739664 -0.000266713 0.268379 -0.963313 -0.000964527 0.221857 -0.975079 0 0.418051 -0.908424 0.000277925 0.955422 -0.295245 -7.89238e-05 0 -1 0 0.38284 -0.923815 0 0.164082 -0.986447 0.000274634 0.707107 -0.707107 0 0.707107 -0.707107 0 0.382867 -0.923803 0 0.382867 -0.923803 0 0 -1 0 0 -1 0 -0.418621 -0.908161 0 -0.166468 -0.986047 0.000710166 0.333934 -0.942596 -0.000104186 0.36226 -0.932077 0 -0.142862 -0.989743 0.000241857 -0.297997 -0.954567 -0.000198656 0.290315 -0.956931 0.000380761 -0.347806 -0.937567 -0.000193992 0 -1 0 0 -1 0 -0.548656 -0.836048 0 -0.240911 -0.970547 0 -0.382867 -0.923803 -0.000205131 -0.382867 -0.923803 0.000203355 -0.707006 -0.707207 0 -0.707006 -0.707207 0 -0.382867 -0.923803 0 -0.164126 -0.986439 0.000274597 0 -1 0 -0.954452 -0.298363 0 -0.707112 -0.707101 0.000943828 -0.347494 -0.937682 -0.000581357 -0.437738 -0.899102 -0.00110542 -1 0 0 -1 0 0 -0.936092 0.351755 0 -0.707112 0.707101 -0.000451248 -0.192798 0.981238 0.000322551 0 1 0 -0.109537 0.993983 -0.000183266 -0.548656 0.836048 0 -0.382867 0.923803 0.000205131 -0.164126 0.986439 -0.000439907 -0.707006 0.707207 0 -0.707006 0.707207 0 -0.38285 0.92381 0 -0.38285 0.92381 0 0 1 0 0 1 0 0 0.999999 0.00134616 0.810446 0.5858 0.00391943 -0.881728 0.47175 0.00264258 -0.375885 0.926666 0 0 0 -1 0.252162 0.967685 0 0 1 0 0 1 0 0.511701 0.859163 0 0.38285 0.92381 -0.000219011 0.164925 0.986306 0 0.38285 0.92381 0.000214552 0.707107 0.707107 0 0.707107 0.707107 0 0.164082 0.986447 0 0.164082 0.986447 0 0.151112 0.988517 -4.58666e-05 0.945625 0.325258 -2.65355e-05 0.135489 0.990779 0 0.952299 0.305167 0 1 0 0 1 0 0 0.415994 -0.909367 0 0.707107 -0.707107 0.000457934 0.93538 -0.353644 0 0 -1 0 0 -1 0 0.38284 -0.923815 0 0.38284 -0.923815 0 0.707107 -0.707107 0 0.707107 -0.707107 0 0.220523 -0.975382 0 0.382867 -0.923803 0.000127415 0.450957 -0.892546 0 0.382867 -0.923803 -0.000126641 0 -1 0 0 -1 0 -0.418621 -0.908161 0 0.375481 -0.92683 0 -0.346303 -0.938123 -0.000198036 0.0539724 -0.998542 0.000759565 0 -0.999999 0.00113643 0 -1 0 0 -1 0 -0.548656 -0.836048 0 -0.240911 -0.970547 0 -0.382867 -0.923803 -0.000205131 -0.382867 -0.923803 0.000203355 -0.707006 -0.707207 0 -0.707006 -0.707207 0 -0.382867 -0.923803 0 -0.164126 -0.986439 0.000274597 0 -1 0 -0.437733 -0.899105 -0.000732326 -0.707107 -0.707107 0 -1 0 0 -1 0 0 -0.707112 0.707101 -0.000450094 -0.19624 0.980556 0.000328308 -0.938005 0.346623 0 0 1 0 -0.164117 0.986441 -0.000439869 -0.109537 0.993983 -0.000183266 -0.548626 0.836068 0 -0.38285 0.92381 0.000205107 -0.707006 0.707207 0 -0.707006 0.707207 0 -0.219602 0.97559 0 -0.382867 0.923803 0.00012865 -0.451721 0.892159 0 -0.382867 0.923803 -0.000127869 0 1 0 0 1 0 0.40788 0.913035 0 0.320772 0.947156 0.000503747 0 1 -0.000996492 -0.35911 0.933294 -0.00141337 -0.222152 0.975012 0 0 1 0 0.54933 0.835606 0 0.0813686 0.996684 -0.000528831 0.382867 0.923803 0.000205044 0.0551358 0.998479 -0.000252225 0.707107 0.707107 0 0.707107 0.707107 0 0.164074 0.986448 0 0.382823 0.923822 -0.000640752 0 1 0 0.707112 0.707102 0 0.437646 0.899147 0.000732553 -0.0877399 -0.0877386 0.992272 1 0 0 1 0 0 0.707107 -0.707107 0.000873063 0.873225 -0.487317 -0.000219859 0.924982 -0.380011 0 0.0927324 -0.995691 -0.00015522 0.547436 -0.836848 0.000260083 0 -1 0 0.38284 -0.923815 0 0.164082 -0.986447 0.000274634 0.707107 -0.707107 0 0.707107 -0.707107 0 0.382867 -0.923803 0 0.382867 -0.923803 0 0 -1 0 0 -1 0 0.214018 -0.97683 0 -0.214018 0.97683 0 -0.418621 -0.908161 0 0.333927 -0.942599 -5.74769e-05 0.356979 -0.934112 0 -0.247201 -0.968964 2.29925e-05 -0.347797 -0.93757 -0.000194016 -0.333766 -0.942656 0.000248401 0 -1 0 0 -1 0 -0.548656 -0.836048 0 -0.240911 -0.970547 0 -0.382867 -0.923803 -0.000205131 -0.382867 -0.923803 0.000203355 -0.707006 -0.707207 0 -0.707006 -0.707207 0 -0.164126 -0.986439 -0.000274597 -0.382867 -0.923803 0 0 -1 0 -0.879413 -0.47606 0 -0.193217 -0.981156 0.000119337 -0.29221 -0.956354 0.000308018 -0.928631 -0.371004 0.000292402 -0.24533 -0.96944 0.000410436 -0.940792 -0.338984 -0.000388514 -1 0 0 -1 0 0 -0.289313 0.957235 0 -0.878535 0.477679 0 -0.707117 0.707096 -0.000427636 0 1 0 0 1 0 -0.38285 0.92381 -0.000203374 -0.240878 0.970555 0 -0.548656 0.836048 0 -0.38285 0.92381 0.00020515 -0.707006 0.707207 0 -0.707006 0.707207 0 -0.382884 0.923797 0 -0.382884 0.923797 0 0 1 0 0 1 0 0.362341 0.932045 0 -0.340962 0.940077 0 0 -0.0360629 0.99935 0 1 -0.000852776 0 1 0 0 1 0 0.54936 0.835586 0 0.382884 0.923797 -0.000206859 0.382884 0.923797 0.000205068 0.239276 0.970952 0 0.707107 0.707107 0 0.707107 0.707107 0 0.382823 0.923822 0 0.103484 0.994631 -0.000346424 0 1 0 0.707117 0.707096 0 0.707117 0.707096 0 1 0 0 1 0 0 0.971549 -0.236837 -0.000535129 0.892922 -0.450213 0 0.462543 -0.886597 0 0.481032 -0.876703 5.18518e-05 0.707107 -0.707107 -0.000704127 0 -1 0 0 -1 0 0.382856 -0.923808 0 0.382856 -0.923808 0 0.707107 -0.707107 0 0.707107 -0.707107 0 0.38285 -0.92381 0 0.38285 -0.92381 0 0 -1 0 0.0221714 -0.999754 0.000101426 0.943998 0.329952 -0.000523126 0.0341224 -0.999418 0.00021686 0.376353 -0.926476 1.04809e-05 0.361922 -0.932208 -1.73609e-05 -0.331435 -0.943478 0 -0.368685 -0.929554 0.000100541 0 -1 0 0 -1 0 -0.548656 -0.836048 0 -0.240878 -0.970555 0 -0.38285 -0.92381 -0.00020515 -0.38285 -0.92381 0.000203374 -0.707006 -0.707207 0 -0.707006 -0.707207 0 -0.382884 -0.923797 0 -0.164134 -0.986438 -0.000274611 0 -1 0 -0.95494 -0.2968 0 -0.292218 -0.956351 0.000725989 -0.928625 -0.37102 -0.000141483 -0.339567 -0.940582 0.000568094 -0.437733 -0.899104 0.00119274 -1 0 0 -1 0 0 -0.707117 0.707096 0 -0.707117 0.707096 0 0 1 0 0 1 0 -0.38285 0.92381 -0.000203374 -0.240878 0.970555 0 -0.548656 0.836048 0 -0.38285 0.92381 0.00020515 -0.707006 0.707207 0 -0.707006 0.707207 0 -0.219662 0.975576 0 -0.382884 0.923797 0.00012862 -0.451721 0.892159 0 -0.382884 0.923797 -0.000127838 0 1 0 0 1 0 -0.356673 0.934229 0 -0.337845 0.941202 -5.13707e-05 0.30327 0.952905 -0.00021644 0.390131 0.920759 0 0 1 0 0 1 0 0.5493 0.835625 0 0.382884 0.923797 -0.000206771 0.382884 0.923797 0.000204981 0.239341 0.970935 0 0.707107 0.707107 0 0.707107 0.707107 0 0.382823 0.923822 0.000206384 0.382823 0.923822 -0.000204597 0.517177 0.855879 0 0.202803 0.97922 0 0 1 0 0 1 0 0.707117 0.707096 -0.000852961 0.455853 0.890055 0 0.922423 0.38618 0 0.707117 0.707096 0.000771874 1 0 0 1 0 0 0.942098 -0.335338 0 0.450384 -0.892835 0 0.605892 -0.795547 0 0.605892 -0.795547 0 -0.563267 0.826275 -0.000904915 0.22182 -0.975088 0 0.606227 -0.795291 0.00126692 0.707107 -0.707107 -0.000546916 0.707105 -0.707105 0.00216506 0 -1 0 0 -1 0 0.382856 -0.923808 0 0.707107 -0.707107 0 0.707107 -0.707107 0 0.38285 -0.92381 0 0.38285 -0.92381 0 0 -1 0 0 -1 0 0.366699 -0.93034 0 -0.368694 -0.929549 0.00167554 -0.371971 -0.928244 0 0.349403 -0.936971 -0.00158787 0 -1 0 0 -1 0 -0.38285 -0.92381 0 -0.38285 -0.92381 0 -0.707006 -0.707207 0 -0.707006 -0.707207 0 -0.382884 -0.923797 0 -0.164134 -0.986438 0.000274611 0 -1 0 -0.0392706 -0.999229 -6.56997e-05 -0.357422 -0.933943 0.000108366 -0.594507 -0.80409 -0.000262846 -0.106302 -0.994334 -0.000442921 -0.594467 -0.80412 0.000410007 -0.88083 -0.473433 -0.000499226 -0.965227 -0.261413 0 -0.93127 -0.364329 0.000133146 -1 0 0 -1 0 0 -0.942953 0.332925 0.000968269 -0.162843 0.986652 -0.000272437 -0.707117 0.707096 0 0 1 0 -0.38285 0.92381 -0.000203374 -0.108998 0.994042 0.000182365 -0.548656 0.836048 0 -0.164117 0.986441 0.000443759 -0.707006 0.707207 0 -0.707006 0.707207 0 -0.382884 0.923797 0 -0.382884 0.923797 0 0 1 0 0 1 0 0.302272 0.953222 0 0.318139 0.948044 7.53054e-05 -0.291296 0.956633 0 0.312252 0.949999 -5.07698e-05 -0.333993 0.942575 0.000210415 -0.301579 0.953441 -5.40901e-05 -0.211101 -0.977464 0 0.211101 0.977464 0 0 1 0 0 1 0 0.382884 0.923797 0 0.382884 0.923797 0 0.707107 0.707107 0 0.707107 0.707107 0 0.164074 0.986448 -0.000503977 0.517227 0.855848 0 0.0808231 0.996728 -0.000135278 0.382823 0.923822 0.000206472 0 1 0 0.707117 0.707096 0 0.437651 0.899145 0.000732562 0.99812 -0.0612878 3.20061e-05 0.873508 -0.486809 -0.000152905 0.773571 -0.633709 -0.00053256 0.422756 -0.906243 -1.99986e-08 0.613043 -0.79005 0 0.992858 0.119299 0 0.995352 0.0962997 -0.000138134 0.6558 -0.754935 7.17705e-05 0.714415 -0.699722 0 0.992858 0.119299 0 0.99587 -0.0907721 -0.00181673 0.74765 -0.664093 0.000249603 0.714415 -0.699722 0 -0.422756 0.906243 -0.00037818 0.99478 -0.102042 0.000204839 0.99743 0.0716485 -0.000190734 0.999295 0.0375394 -0.000373229 0.985433 -0.170065 -0.000575711 0.99324 -0.116075 0.00016434 0.720819 0.693123 -0.000150625 0.979256 0.202628 0.000147127 0.929803 0.368057 0.000697588 0.63678 0.771046 -6.84876e-05 0.751605 0.659613 -0.000687517 0.707107 -0.707107 0.000446747 0.420593 -0.907249 0 0.989943 -0.141467 -0.000258057 -0.138801 -0.99032 0 -0.317095 -0.948394 -0.000356661 -0.798511 -0.601981 2.02185e-05 0.0875886 -0.996157 9.68194e-06 -0.462422 -0.886658 -0.0015342 -0.357358 -0.933967 0.00117402 -0.134624 -0.990897 -2.67549e-05 0.102784 -0.994704 1.03971e-05 -0.0626371 -0.998036 -0.000302073 -0.058401 -0.998293 0.000260761 0.53758 -0.843212 0.000133518 0.671632 -0.740885 -1.25577e-05 0.535402 -0.844598 0.00039961 -0.984547 -0.17512 -9.14522e-05 -0.176079 -0.984376 -0.000274658 -0.296371 -0.955073 -4.73106e-05 -0.965712 -0.259615 4.36716e-05 -0.843487 0.53715 0 -0.766718 0.641984 0.000335261 -0.99938 -0.035219 -0.000366937 -0.845603 0.533813 0 -0.99424 0.107181 8.36956e-08 -0.985561 0.169323 0.000266129 -0.985261 -0.171056 -7.23582e-06 -0.997101 0.0760912 0.000185329 -0.981587 -0.191015 -1.4916e-07 -0.844501 -0.535553 -0.000210819 -0.615132 -0.788424 0 -0.981632 -0.190784 0 -0.508703 -0.860942 0.000297138 -0.615133 -0.788423 0 -0.725035 -0.688712 -0.000393194 -0.993112 -0.117165 -6.11868e-05 -0.562763 -0.826618 -2.6226e-05 -0.891436 -0.453146 0.000428467 -0.197757 0.980251 0 -0.967595 0.252507 0.000131866 -0.516696 0.856169 -0.000755175 0.59664 0.802509 -0.000123977 0.641623 0.76702 0 0.713874 0.700274 -8.68651e-05 0.0967603 0.995308 0 0.390964 0.920406 0.000399148 0.53758 0.843212 -0.000318137 0.17307 0.984909 1.09391e-05 -0.170026 0.98544 -0.000169254 -0.0626353 0.998036 -0.00025099 -0.135268 0.990809 0 0.189063 0.981965 -4.92205e-05 -0.695654 0.718377 -0.000151469 -0.341199 0.939991 0.000454142 -0.535638 0.844448 -0.000279201 -0.270827 0.962628 0 0 1 0 0.956253 0.29254 -0.000148751 0.177129 0.984188 0.000184995 0.955296 0.295652 -0.000154397 0.331937 0.943302 -2.09107e-05 1 0 0 0.756617 -0.653858 0 0.755617 -0.655013 -3.67152e-06 0.999955 0.00949891 -7.12119e-07 0.991218 -0.132239 -5.16572e-05 0.998037 -0.0626274 -0.000255443 0.997323 0.0731248 -9.61439e-05 0.999999 0.00167673 0.00036423 0.997068 0.0765222 -0.000216938 0.779551 0.626338 0.00021644 0.843469 0.537178 0.000306979 0.918532 0.395347 0 0.296535 -0.955022 -8.3667e-05 0.972935 -0.231078 0 0.258048 -0.966132 -0.000134765 0.978981 -0.203952 -4.71498e-05 -0.705762 -0.708449 3.5915e-05 -0.183885 -0.982948 9.60338e-05 -0.322597 -0.946536 -0.000313446 -0.319801 -0.947485 0.000628804 -0.740538 -0.672015 2.111e-05 -0.636875 -0.770967 -0.000162196 -0.172309 -0.985043 -1.803e-06 0.17004 -0.985437 -0.000229987 0.109236 -0.994016 1.17296e-05 0.0575787 -0.998341 -0.000284722 -0.173377 -0.984856 -4.75138e-06 0.745303 -0.666726 -2.41657e-05 0.344964 -0.938616 0.000504834 0.31969 -0.947522 0.000189732 0.608267 -0.793733 -0.000106696 -0.978098 -0.208145 -0.000217397 -0.601381 -0.798962 0.000634133 -0.132066 -0.991241 -0.000222151 -0.940405 0.340057 0.000355174 -0.766723 0.641979 -0.000179659 -0.920369 0.391051 -0.000427046 -0.933312 0.359067 -0.000375934 -0.988576 0.150725 8.77952e-06 -0.998057 -0.0623057 -0.0002746 -0.988417 -0.15176 -3.39001e-05 -0.998532 0.0541604 0.000589398 -0.932119 -0.362153 0.000569542 -0.74748 -0.664284 8.72717e-05 -0.974702 -0.223508 -0.000116727 -0.802203 -0.597051 0.000518108 -0.665958 -0.745989 2.65162e-05 -0.920033 -0.391841 -0.000567523 -0.37358 0.927598 0.000194784 -0.972978 0.230898 3.64895e-05 -0.340531 0.940233 7.55245e-05 -0.967428 0.253145 0.000132205 -0.799042 0.601275 -0.00114145 0.720448 0.693509 8.77145e-06 0.194074 0.980987 -0.00010119 0.40709 0.913388 0.000876212 0.291522 0.956564 -0.000374205 0.639549 0.76875 0.000478916 0.790193 0.612859 -1.03192e-05 0.100193 0.994968 0 0.624356 0.781139 -0.000580427 0.161472 0.986877 -2.19091e-06 -0.0594632 0.99823 0.000366398 -0.062645 0.998036 -0.000250997 -0.135279 0.990807 0 -0.0999642 0.994991 1.03212e-05 -0.231005 0.972952 -0.000204599 -0.13263 0.991166 -0.00013852 -0.833865 0.551968 -3.85402e-05 -0.597047 0.802206 0.000334857 0.342222 0.939619 0.000357419 0.516473 0.856303 0.000781063 0.983388 0.181515 -0.000189583 0.798158 -0.602448 -9.98475e-05 0.843252 -0.537519 -0.000265712 0.997783 -0.0665552 0.00011103 0.995115 -0.0987262 0.000204694 0.996043 0.0888705 -5.18162e-05 0.999992 -0.00389431 -0.000285399 0.995132 0.0985517 -8.97792e-05 0.990481 -0.137649 5.79579e-05 0.747526 0.664233 -0.000136354 0.876317 0.481736 -0.000237852 0.801827 0.597555 -0.000624118 0.21695 -0.976183 -0.000113281 0.985551 -0.16938 0.00017691 0.516473 -0.856303 -0.000831687 -0.841599 -0.540104 -1.8528e-05 -0.335467 -0.942052 0.000175166 -0.597031 -0.802218 -0.000563635 -0.338679 -0.940902 0.000186937 -0.650986 -0.75909 -0.000191486 -0.399694 -0.916649 -0.000605708 -0.178142 -0.984005 -2.69991e-05 0.0914396 -0.995811 -4.89382e-05 0.0561456 -0.998423 -0.000250962 -0.0594326 -0.998232 0.000296313 0.322342 -0.946623 0.000520657 0.741467 -0.67099 -2.66913e-05 0.319714 -0.947514 0.000189754 0.608267 -0.793733 -0.000106659 -0.982224 -0.187712 -9.80237e-05 -0.157874 -0.987459 -0.000245028 -0.966293 -0.257445 1.91948e-05 -0.231826 -0.972757 -0.000111253 -0.979303 0.202398 0.000105693 -0.766723 0.641979 -0.000359358 -0.563286 0.826262 0 -0.920369 0.391051 0 -0.995009 0.0997853 -0.000252219 -0.980401 0.197014 -1.17547e-05 -0.994835 -0.101509 -5.71235e-05 -0.998057 -0.0623057 -0.000260513 -0.998111 0.0614411 0.000303155 -0.995351 0.0963164 0 0.724628 0.68914 2.8156e-05 -0.999955 0.00949097 0.000155913 -0.432876 -0.901447 0.00326707 -0.726332 -0.687344 0 -0.515987 -0.856597 0 0.497784 0.867301 0.000155355 -0.726451 -0.687218 -2.95767e-05 -0.999955 0.00949647 -1.63673e-05 -0.862183 -0.506597 -0.000183423 0.999955 -0.00948762 -0.0002609 -0.968983 -0.247129 7.16776e-05 -0.647529 -0.762041 -6.27985e-05 -0.744936 -0.667136 -0.000443964 -0.865588 -0.500755 0.000940661 -0.301127 0.953584 0.000264917 -0.885433 0.464767 -0.000828911 -0.979768 0.200138 -0.000247196 0.512241 0.858842 0.000442641 0.744011 0.668167 9.67613e-05 0.110984 0.993822 -3.68003e-05 0.537596 0.843202 -0.00014011 0.173059 0.984912 1.0926e-05 -0.170039 0.985437 -0.000169376 -0.0624264 0.99805 -0.000250759 -0.131713 0.991288 1.7209e-05 0.189077 0.981962 -4.93289e-05 -0.0999866 0.994989 0.000251838 -0.390283 0.920695 0 -0.179548 0.983749 0 -0.537167 0.843476 0.000549887 -0.833866 0.551967 0 0.991756 0.128138 0.00019019 0.96846 0.24917 -1.414e-05 0.279882 0.960035 0 0.27054 0.962709 1.7305e-05 0.945524 -0.325553 0.00017002 0.801819 -0.597567 -0.000215603 0.99646 -0.084071 -3.39197e-05 0.997563 -0.069768 0 0.748323 -0.663334 -0.000155863 0.57593 -0.817499 0.000213611 0.997563 -0.069768 0 0.752111 -0.659033 -0.00190177 0.600732 -0.799451 0 0.987291 -0.158922 -2.42015e-05 0.980621 0.195915 -0.000103532 0.987393 0.158286 2.29522e-05 0.999992 0.00382734 -0.000649508 0.990532 -0.137281 5.77796e-05 0.77023 0.637767 0.00016071 0.947389 0.320086 -0.000167165 0.785604 0.618729 0.000785365 0.927864 0.372919 -0.000322868 0.637747 0.770246 -0.000112118 0.258048 -0.966132 -0.000134765 0.986295 -0.164993 8.61675e-05 0.581212 -0.813752 0.0003214 0.856307 -0.516465 0.00153342 0.972935 -0.231079 -9.44791e-05 -0.714838 -0.69929 6.9055e-05 -0.346891 -0.937905 0.000666994 -0.191861 -0.981422 0.000100199 -0.321586 -0.94688 -0.000326404 -0.744808 -0.667278 5.19176e-05 -0.170407 -0.985374 -0.000680473 -0.145329 -0.989383 2.57329e-05 0.145259 -0.989394 -2.39114e-05 0.0565406 -0.9984 -0.000411359 -0.173211 -0.984885 -8.00775e-05 0.74529 -0.666741 -2.41431e-05 0.344894 -0.938642 0.000504909 0.319714 -0.947514 0.000166698 0.536755 -0.843738 -0.000144054 -0.97134 -0.237692 -0.000124135 -0.968584 -0.248687 -0.000103212 -0.16513 -0.986272 -8.60984e-05 -0.262694 -0.964879 7.2509e-05 -0.941781 0.336226 0.000175594 -0.785854 0.618412 -0.000250871 -0.90101 0.433798 -0.000570751 -0.985081 0.172089 2.08513e-06 -1 -0.000198068 -0.000613919 -0.995413 -0.0956753 -6.83509e-05 -0.998518 0.0544311 0.000323441 -0.980559 -0.196227 0 -0.683019 -0.730401 0 -0.98088 -0.194615 1.21041e-06 -0.562918 -0.826512 0 -0.683412 -0.730033 -0.00050355 -0.475719 -0.879597 0.000283812 -0.562918 -0.826513 0 -0.843454 -0.537202 0 -0.905988 -0.423304 -0.000221071 -0.403353 0.915044 0.000210308 -0.972977 0.2309 0.000161166 -0.340531 0.940233 8.43791e-05 -0.97856 0.205963 0.000107564 0.801846 0.59753 -1.91929e-05 0.110985 0.993822 -5.78673e-05 0.500637 0.865657 0.000496866 0.506359 0.862323 -0.00011319 0.0670218 0.997751 0.000223507 0.0927009 0.995694 -0.00021311 -0.170039 0.985437 -0.000169265 0.0633098 0.997994 -0.000302652 -0.123916 0.992293 5.51573e-05 0.0692286 0.997601 -9.09354e-05 -0.537254 0.84342 6.97926e-05 -0.558055 0.829804 0.000291391 -0.641989 0.766714 4.18636e-05 0.970721 0.240211 -0.00012545 0.153811 0.9881 2.83952e-05 0.98363 0.180199 1.57571e-05 0.215947 0.976405 -0.000112758 0.612064 -0.790808 -4.08566e-05 0.987131 -0.159913 4.09969e-06 0.761943 -0.647645 -0.0003401 0.920378 -0.391031 1.80802e-05 0.929744 -0.368205 0 0.988979 -0.148057 1.85719e-05 0.980621 0.195915 -0.000103532 0.986271 0.165132 0 0.99856 0.0536388 -0.000430653 0.990481 -0.137651 5.79592e-05 0.999997 0.00238013 0.000165821 0.702945 0.711244 -0.000161721 0.748117 0.663567 -0.000222817 0.914878 0.403729 0.000182199 0.214463 -0.976732 0.000112004 0.992346 -0.123492 0.000108482 0.389524 -0.921016 -9.58749e-05 0.960206 -0.279293 -0.000284154 0 -1 0 -0.225145 -0.974325 0.000117561 -0.539622 -0.841907 -0.000253925 -0.694453 -0.719538 -0.000174537 -0.699897 -0.714244 -0.000160858 -0.174906 -0.984585 -3.0167e-05 0.170159 -0.985417 -0.000230545 0.109239 -0.994016 1.16372e-05 0.0624528 -0.998048 -0.000256835 -0.167053 -0.985948 -8.55603e-06 0.740649 -0.671892 -0.00010791 0.18209 -0.983282 0.000366019 0.319714 -0.947514 0.000189754 0.674304 -0.738454 -0.000183804 0.0728737 -0.997341 -3.79963e-05 -0.992334 -0.123587 -6.45374e-05 -0.262644 -0.964893 -0.000560776 -0.472645 -0.881253 0.000246437 -0.856293 -0.516488 -0.00181392 -0.968579 -0.248706 0.000208695 -0.941781 0.336226 0.000175578 -0.785628 0.6187 -0.000251376 -0.673299 0.73937 -6.29745e-07 -0.993958 0.109766 1.95801e-06 -0.988876 -0.148744 -3.42653e-05 -1 -0.000217031 -0.000524756 -0.990359 -0.138524 1.17985e-07 -0.983887 0.178788 -0.000290803 -0.66683 -0.74521 -0.000176185 -0.981508 -0.191419 0 -0.714442 -0.699694 0 -0.844553 -0.535472 0.000227508 -0.714442 -0.699694 0 -0.401123 -0.916024 -0.000361794 -0.98109 -0.193551 1.20414e-06 -0.422756 -0.906243 9.93405e-05 -0.994818 -0.101672 -5.30981e-05 -0.945936 -0.324354 0.00042406 -0.742576 -0.669761 -7.06454e-05 -0.938182 -0.34614 -0.000992336 -0.0235011 0.999724 -0.000126771 -0.437433 0.899248 -0.00209097 -0.946019 0.324113 0.000169268 -0.766719 0.641983 -0.000336077 -0.220518 0.975383 0.000231073 0.71858 0.695445 -0.000146053 0.407134 0.913368 0.000286606 0.754932 0.655803 -0.000110558 0.111885 0.993721 0 0.624269 0.78121 -0.000498756 0.390964 0.920406 0.000267349 0.173059 0.984912 1.0926e-05 -0.170039 0.985437 -0.000169376 -0.0626271 0.998037 -0.000250977 -0.135256 0.990811 0 0.189077 0.981962 -4.93289e-05 0.00574523 0.999983 0.000160018 -0.505087 0.863069 -0.000187397 -0.118083 0.993004 -6.1669e-05 -0.822002 0.569484 -3.61594e-05 -0.500984 0.865456 0.000503528 0.945903 0.32445 -0.000314923 0.882061 0.471136 -0.000682379 0.291406 0.956599 0.000152187 0.766369 -0.6424 3.84243e-05 0.755973 -0.654603 0 0.994983 -0.100043 0.000162326 0.988276 -0.152675 8.418e-07 0.997668 0.0682527 -4.18433e-05 0.998067 -0.0621514 -0.000395336 0.996389 0.0849097 -0.000115998 0.990487 -0.137606 5.79373e-05 0.970143 0.242533 8.26354e-07 0.621893 0.783102 -5.92187e-05 0.7286 0.684939 0.000210135 0.671129 0.741341 -0.000237686 0.945158 0.326613 0 0.891176 0.453657 -0.000244569 0.966499 -0.256671 4.47853e-05 0.972937 -0.231071 0 0.283704 -0.958912 0.000148164 0.358312 -0.933602 4.90887e-05 -0.81108 -0.584935 -2.5813e-05 -0.443588 -0.896231 0.000412037 -0.115538 -0.993303 -6.03395e-05 0.00214452 -0.999998 5.68429e-06 -0.294945 -0.955514 -0.000454216 -0.15824 -0.987401 -2.34566e-05 -0.062644 -0.998036 -0.000392709 0.14995 -0.988694 1.26554e-05 -0.0615172 -0.998106 0.00034096 0.74556 -0.666438 -0.000101961 0.506362 -0.862321 0.000132519 0.319714 -0.947514 0.000189754 0.674314 -0.738444 -0.000183817 0.0728737 -0.997341 -3.79963e-05 -0.799048 -0.601266 -0.00065399 -0.2627 -0.964878 0.000136971 -0.968583 -0.248689 0 -0.905988 0.423304 0 -0.928292 0.371851 -0.000121295 -0.682618 0.730775 1.08223e-05 0.235601 -0.971846 0.00264471 -0.966599 0.256291 -0.000750606 -0.964714 0.263299 -2.33536e-05 -0.998765 -0.0496787 -0.000325719 -0.99977 0.0214322 -0.000129016 -0.998823 0.0484992 0.000344219 -0.999087 0.0427278 0.000375144 -0.997563 -0.069768 0 -0.99819 0.0601411 0.000104917 -0.620969 -0.783835 0.000120753 -0.987763 -0.155964 -0.000568046 0.999085 -0.042773 -0.000123207 -0.924647 -0.380823 0.00111229 0.977131 0.21264 0 -0.591955 -0.805971 0.000150164 -0.714442 -0.699694 0 -0.994354 -0.10611 -3.58718e-05 -0.515868 -0.856668 5.49755e-05 -0.945939 -0.324345 0 -0.905988 -0.423304 -0.000190898 -0.403353 0.915044 0.000210308 -0.952762 0.303718 0.000160343 -0.340531 0.940233 8.43791e-05 -0.978559 0.205965 0 0.110984 0.993822 -5.78671e-05 0.557718 0.83003 0.000581652 0.476277 0.879295 0.000728361 0.162022 0.986787 -3.12616e-06 -0.00215518 0.999998 0.000272055 0.0638829 0.997957 -0.000303738 -0.0570845 0.998369 -7.33027e-05 -0.191265 0.981538 8.00085e-05 -0.675803 0.737082 -0.000213922 0.989475 0.144706 0 0.264901 0.964276 -0.000348687 0.975557 0.219748 -0.000164805 0.128308 0.991734 3.64024e-05 0.755969 -0.654607 0.000141229 0.801819 -0.597567 0 0.74767 -0.66407 0.000135291 0.988702 -0.149895 -2.22956e-05 0.997486 0.0708661 -0.000193263 0.999994 0.00340875 -0.000413755 0.999274 -0.0381037 0.000582232 0.751692 0.659514 0.000166651 0.661976 0.749525 -3.71299e-05 0.949758 0.312986 0 0.946411 0.322964 -1.86263e-05 0.972185 -0.234215 0 0.972937 -0.231071 5.13608e-06 0.421838 -0.906671 8.8283e-05 0.358313 -0.933602 0 -0.74934 -0.662186 2.68968e-05 -0.163117 -0.986607 0 -0.298531 -0.9544 -0.000509906 -0.364764 -0.9311 0.000854495 -0.149653 -0.988738 -0.000629707 -0.724129 -0.689665 3.86465e-05 -0.157191 -0.987568 -2.75372e-05 0.000417809 -1 -0.000633104 0.139999 -0.990152 -2.488e-05 -0.170941 -0.985281 -7.96932e-05 0.743418 -0.668828 -2.5393e-05 0.626328 -0.77956 0.000154549 0.319714 -0.947514 0.000166698 0.536755 -0.843738 -0.000144054 -0.95516 -0.296091 0 -0.262917 -0.964819 -7.38815e-05 -0.235065 -0.97198 -0.000122563 -0.968357 -0.249568 -8.06223e-05 -0.941782 0.336223 0 -0.946855 0.32166 2.78123e-05 -0.681103 0.732188 -1.61942e-05 -0.84231 0.538993 -0.000396799 -0.991545 0.129764 -6.67285e-05 -0.994701 -0.102813 -2.33762e-05 -0.711173 -0.703013 -0.00236618 -0.998192 0.0601128 0.000159615 -0.999999 -0.0012407 0.000752314 -0.998065 -0.0621782 -0.000223937 -0.946497 -0.322713 0.000467851 -0.66774 -0.744394 -2.57392e-05 -0.945936 -0.324353 0 -0.905984 -0.423313 -0.000190895 -0.297903 0.954596 -0.000155326 -0.221131 0.975244 0.000191852 -0.936285 0.351243 0 -0.973403 0.2291 0.00043338 -0.707233 0.706979 0.0013323 0.537656 0.843165 0.000280333 0.536754 0.843739 0.000278288 0.367842 0.929888 0 0.612239 0.790673 0.000204309 0.173043 0.984914 1.09875e-05 -0.170038 0.985438 -0.000169369 -0.0626442 0.998036 -0.000250919 -0.135256 0.990811 0 0.189076 0.981963 -4.93271e-05 0.00894609 0.99996 0.000157258 -0.382905 0.923788 -0.000100686 -0.633624 0.773641 0.000199855 -0.729998 0.68345 -4.73951e-05 -0.0668346 0.997764 -6.98024e-05 0.98648 0.16388 0 0.98249 0.186316 -4.54684e-05 0.377597 0.92597 0.000138508 0.276663 0.960967 0.000288948 0.589949 -0.807441 -3.96734e-06 0.988094 -0.153854 -8.03504e-05 0.75593 -0.654653 0.00037493 0.999969 0.00784037 -0.000128482 0.997639 0.0686768 1.22982e-06 0.985028 -0.172393 -1.2466e-06 0.998046 -0.0624757 -0.000370184 0.999707 0.0242068 -0.000118353 0.990545 -0.137186 0.00010124 0.682636 0.730759 1.14727e-06 0.843059 0.537821 0.000516712 0.784308 0.620372 -0.000473338 0.970045 0.242927 -6.18723e-05 0.702469 0.711714 -2.96996e-05 0.189652 -0.981851 -0.000198074 0.988579 -0.150703 -0.000115544 0.856308 -0.516466 0.000753278 -0.137668 -0.990478 0.000143782 -0.634051 -0.773291 -0.000354174 -0.785966 -0.618269 -3.90245e-05 -0.0844448 -0.996428 0 -0.376925 -0.926244 0.000270529 -0.68245 -0.730932 -0.000601175 -0.191583 -0.981476 0 0 -1 0.000441818 0.112197 -0.993686 0 0 -1 -0.000580158 0.669069 -0.743201 -7.20709e-05 0.626328 -0.77956 0 0.319714 -0.947514 0.00021905 0.621076 -0.78375 -9.96029e-05 -0.95516 -0.296091 0 -0.175002 -0.984568 -0.000226069 -0.96649 -0.256704 -6.83336e-05 -0.209808 -0.977743 -0.00016633 -0.590095 0.807334 0 -0.843486 0.537149 0.00156743 -0.843486 0.53715 -0.00074555 -0.98114 0.193297 0 -0.975638 0.219388 0.000491835 -0.758736 0.651399 0 -0.997495 -0.0707411 -9.5523e-06 -0.968732 0.24811 -0.000403317 -0.990633 0.136551 1.89858e-05 -0.999711 0.0240471 -0.000444159 -0.991727 -0.128363 -1.77202e-05 -0.999791 0.0204586 0.000421875 -0.779545 -0.626346 -0.000158617 -0.987436 -0.158022 -8.25269e-05 -0.709149 -0.705059 -4.07757e-05 -0.843453 -0.537202 0.000388991 -0.843666 -0.536867 -0.00111263 -0.265127 0.964213 0.00048293 -0.982299 0.187322 -0.000149548 -0.156669 0.987651 -8.63646e-05 -0.967428 0.253145 0.000132205 -0.799042 0.601275 -0.00114145 0.254775 0.967 -0.000282232 0.630137 0.776484 8.6465e-05 0.743247 0.669017 1.94963e-05 0.626328 0.77956 -0.000160136 0.161272 0.98691 -2.41662e-06 -0.170038 0.985438 -0.000169258 -0.0621207 0.998069 -0.000250429 -0.13156 0.991308 1.80639e-05 0.173377 0.984856 -5.47768e-05 0.00528022 0.999986 0.000173513 -0.747269 0.664521 -0.000180262 -0.728229 0.685334 -0.000211947 -0.449331 0.893365 8.8806e-05 0.99738 0.0723368 3.77779e-05 0.353263 0.935524 0.000276943 0.136815 0.990597 -0.000198407 0.94541 0.325882 -0.000263165 0.813539 -0.58151 0.000433008 0.94544 -0.325797 -1.97036e-05 0.536147 -0.844125 -4.01385e-06 0.999969 0.00782682 0.000158226 0.971465 -0.237184 -1.12782e-06 0.993129 -0.117021 0.000213407 0.999992 -0.00390624 -0.000203555 0.986975 0.160871 2.18627e-05 0.999858 0.0168532 0.000751214 0.924071 0.382221 -0.000283289 0.597794 0.801649 -3.67081e-05 0.99462 0.103593 -0.000108198 0.801823 0.597561 0.000315864 0.203347 -0.979107 -0.000212377 0.983711 -0.179756 0.000187746 0.421235 -0.906951 7.97933e-05 0.942124 -0.335264 1.24532e-05 0 -1 0 -0.835449 -0.549567 -1.14228e-05 -0.400699 -0.91621 0 -0.63565 -0.771977 -0.000842827 -0.630771 -0.775969 0.000556296 -0.0685726 -0.997646 0.000224773 -0.390573 -0.920572 -1.58887e-05 -0.145365 -0.989378 -6.05231e-06 0.0594831 -0.998229 0.000348466 -0.0584286 -0.998292 -0.000384843 0.156719 -0.987643 2.57179e-05 0.35406 -0.935222 -0.000526829 0.18778 -0.982211 -9.79082e-05 0.409322 -0.91239 0.000493358 0.719231 -0.694771 3.73155e-05 0.468049 -0.883702 -0.00130119 -0.261043 -0.965327 0.000136108 -0.799048 -0.601266 -0.000715428 -0.980059 -0.198705 0 -0.54801 0.836472 -7.41263e-05 -0.830095 0.557621 0.00157249 -0.982762 0.184877 -0.000453476 -0.910608 0.41327 0 -0.931426 0.36393 0.000509578 -0.999998 0.00179846 8.82912e-06 -0.987169 0.159679 2.45064e-05 -0.998371 0.0570579 -0.000288564 -0.990347 -0.138611 6.45902e-06 -0.998564 0.053562 0.000587609 -0.747674 -0.664066 0.000470025 -0.971864 -0.235544 -6.87756e-05 -0.613065 -0.790033 0 -0.981512 -0.191401 0 -0.613065 -0.790033 0 -0.997898 0.0647997 -0.000189892 -0.635563 -0.772049 5.95284e-05 -0.499104 -0.866542 -2.24578e-05 -0.635782 -0.771869 -6.52298e-05 -0.87378 -0.486321 -0.000817706 -0.969967 -0.243236 0 -0.905985 -0.423308 0.000550623 -0.234493 0.972118 0 -0.969388 0.245532 6.44974e-05 -0.226337 0.974049 -1.98597e-05 -0.978561 0.205959 0 0.717557 0.6965 -9.78147e-05 0.601105 0.799169 0.00080943 0.59664 0.802509 -0.000359048 0.342285 0.939596 0 0.53758 0.843213 6.4851e-05 0.17307 0.984909 1.09391e-05 -0.0822814 0.996609 -0.000141297 -0.0626353 0.998036 -0.00025099 -0.086925 0.996215 -0.000167331 0.189063 0.981965 -4.92205e-05 -0.345585 0.938387 0.00051306 -0.26339 0.964689 0.000390041 -0.824981 0.565161 -4.74194e-05 -0.191663 0.981461 -0.000100096 -0.32704 0.94501 -0.000381608 0.982059 0.188576 9.14167e-05 0.799065 0.601243 -0.00120827 0.432962 0.901412 0.000226114 0.29281 0.956171 -0.00033665 0.98787 0.155282 -1.3087e-05 0.708024 -0.706188 -6.02989e-07 0.771055 -0.636769 0.000178001 0.997722 -0.0674608 -0.000180973 1 0.000794403 -8.5165e-07 0.991254 -0.13197 4.94377e-05 0.997997 -0.0632575 -0.000177775 0.866721 0.498794 -0.000538852 0.746356 0.665547 -0.000157352 0.96862 0.248548 0.000259596 0.755652 0.654973 -0.000321139 0.983944 -0.178477 -0.00018641 0.360844 -0.932626 0.000907577 0.310246 -0.950656 0.000162026 0.939923 -0.341386 -0.000950046 -0.842312 -0.538991 -3.62009e-06 -0.359924 -0.932982 0.000265102 -0.138514 -0.99036 -7.23389e-05 -0.425222 -0.905089 0.000508876 -0.822894 -0.568196 -9.26049e-05 -0.24485 -0.969561 -0.000761712 -0.169954 -0.985452 -0.000579306 -0.157367 -0.98754 -2.69036e-05 -0.491655 -0.870789 0.00131458 0.158918 -0.987292 -2.13867e-05 0.356858 -0.934158 0.000762189 -0.171293 -0.98522 -7.97524e-05 0.725963 -0.687734 -7.80786e-05 0.53758 -0.843213 0.000135391 0.22529 -0.974292 0 0.367222 -0.930133 0.000378465 0.486159 -0.87387 -0.000830096 0.737693 -0.675136 -6.82752e-05 -0.977638 -0.210294 -0.000109821 -0.248403 -0.968657 0 -0.961865 -0.273525 -0.000253475 -0.188483 -0.982076 0.000110997 -0.94178 0.33623 0.000175588 -0.805042 0.593218 -0.000209603 -0.823107 0.567887 -0.00024892 -0.993796 0.111215 -4.44487e-05 -0.999951 0.00992992 -0.000179494 -0.99436 -0.106055 0.00019229 -0.999997 -0.00243459 0.000658066 -0.946497 -0.322713 0.000467848 -0.843454 -0.537202 0.000245024 -0.887671 -0.460479 0.000480948 -0.234493 0.972118 0 -0.516696 0.856169 0.000714381 -0.987818 0.155615 -0.000162533 0.86077 0.508994 7.76025e-05 0.633374 0.773845 -0.000480778 0.527923 0.849292 0.000550345 0.407415 0.913243 0 0.624005 0.781421 -0.000206262 0.38028 0.924871 0 0.17307 0.984909 1.09391e-05 -0.170026 0.98544 -0.000169254 -0.0626353 0.998036 -0.00025099 -0.135268 0.990809 0 0.189063 0.981965 -4.92205e-05 0.00473035 0.999989 0.000160933 -0.69429 0.719696 -0.000327171 -0.142853 0.989744 4.43489e-05 -0.665589 0.746319 -0.00038546 0.999904 0.0138896 -0.00011037 0.996716 0.0809792 8.59193e-06 0.501244 0.865306 -0.000744399 0.260511 0.965471 -2.6235e-05 0.706722 0 0.707491 0.706722 0 0.707491 0.133829 0 0.991004 0.133829 0 0.991004 0 -1 0 0 -1 0 0 -1 0 0 -1 0 8.93336e-06 -1 0 0 -1 -2.20758e-06 -4.38304e-06 -1 -2.2076e-06 0 -1 0 -6.89536e-06 -1 1.24002e-06 0.000611576 -1 0 0.0189516 -0.99978 0.00902177 0.000611576 -1 0 0.000611576 -1 0 0 -1 0 0.0359913 -0.998706 0.0359413 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.997344 0.0728323 -0.00403397 -0.997493 0.0706498 0 -0.997626 0.0688687 -0.0684274 -0.997473 -0.0191272 -0.00232918 -0.999997 0.000586684 -0.00745976 -0.999938 0.00825934 -0.00982588 -0.99995 -0.00196534 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.00673937 -0.999976 0.00169855 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999921 0.0125967 -0.0160288 -0.99986 0.00481537 0 -0.999975 -0.00702532 0 -1 0 0 -1 0 0.00432116 -0.999981 -0.00431207 0.00669518 -0.999978 0 -0.000524939 -0.999954 0.00962341 -0.00399602 -0.99999 -0.0020724 -0.00249999 -0.999997 0 -0.000946695 -0.999993 -0.00375259 0.000943304 -0.999997 -0.00222348 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0295558 -0.999126 -0.0295549 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.00364177 -0.999988 0.00329884 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.00537718 -0.999986 0 -0.00418582 -0.999991 0.00101532 -0.00393769 -0.999987 -0.00315345 -0.00474954 -0.999989 0 -0.00175687 -0.99999 0.00419232 0 -1 0 -0.00373158 -0.999986 -0.00374215 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.700303 -0.138384 0.700303 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999966 -0.00826179 0 -0.999966 -0.00826179 -0.0494892 -0.997862 -0.0426942 0 -0.998257 -0.0590256 0.0634395 -0.99791 0.0122839 -0.00366613 -0.999993 0.000923575 -0.00340563 -0.999994 -0.000683517 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.00401707 -0.999991 -0.00101138 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.998673 -0.0515006 -0.030491 -0.999424 0.01492 0 -0.998673 -0.0515006 0 -0.998673 -0.0515006 0 -1 0 0 -1 0 0.0230743 -0.999466 -0.0231562 0.0290857 -0.999576 -0.000977028 0.030389 -0.999538 0 0.02612 -0.999401 0.0226914 0.00712852 -0.999975 0 0.00712852 -0.999975 0 0.00169419 -0.999976 0.00671611 -0.00394598 -0.999991 0.00179228 -0.000919307 -0.999997 0.00224102 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0720337 -0.994797 0.0720358 0 -1 0 0 -1 0 0 -1 0 0.0066649 -0.999629 -0.0264228 -0.001455 -0.999796 -0.020168 -0.00274864 -0.999789 -0.0203537 0.1607 -0.978687 -0.127856 0.0616882 -0.994684 0.0824469 -0.0456986 -0.98876 0.142357 0.0597882 -0.997625 -0.0341929 0.00318847 -0.999985 0.00441982 -0.0170293 -0.999407 0.0299169 0.00372393 -0.999621 0.0272751 0.021312 -0.999767 0.00352018 0.0165598 -0.999507 -0.0266684 -0.00635278 -0.99998 -0.000470244 -0.00964382 -0.99988 -0.0121223 -0.0149242 -0.999887 0.00196991 -0.0147701 -0.999888 0.00248098 0.00811975 -0.999923 0.00941646 0.0122143 -0.999894 0.00796821 0.00223608 -0.999997 -0.000447252 0.0159383 -0.999555 0.0252263 0.0182831 -0.99973 0.0143521 -0.010522 -0.999378 -0.0336649 -0.0268262 -0.999087 -0.0332421 0.0105905 -0.999944 0.000573917 0.00230406 -0.999985 -0.00496595 0 -1 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -0.707698 0 0.706515 -0.707698 0 0.706515 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.706721 0 -0.707492 -0.706721 0 -0.707492 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.90115 1.63284e-05 0.433508 -0.301745 0 0.953389 -0.252638 -0.000183441 0.967561 -0.902573 0 0.430537 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0.707589 0 0.706624 0.707589 0 0.706624 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.707681 0 0.706532 -0.707681 0 0.706532 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0.707584 0 0.70663 0.707584 0 0.70663 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.707681 0 0.706532 -0.707681 0 0.706532 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 0.926847 0 0.375439 0.366483 -0.000487957 0.930425 0.459948 0 0.887946 0.932689 -5.86264e-05 0.360682 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0.706618 0 -0.707596 0.706618 0 -0.707596 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.707595 0 0.706618 0.707595 0 0.706618 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0.706618 0 -0.707596 0.706618 0 -0.707596 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.707291 0 0.706923 0.707291 0 0.706923 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0.398111 -0.00288468 -0.917333 0.946098 0 -0.323881 0.956822 0.00370085 -0.290652 0.452412 0 -0.891809 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.707199 0 -0.707015 -0.707199 0 -0.707015 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.707101 0 -0.707113 0.707101 0 -0.707113 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.707199 0 -0.707015 -0.707199 0 -0.707015 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.707107 0 -0.707107 0.707107 0 -0.707107 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 -0.913805 0 -0.406154 -0.314259 0 -0.949337 -0.818838 -0.000769637 -0.574024 -0.707105 -0.00253572 -0.707105 -0.434225 0.000799131 -0.900804 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -0.707394 0 0.706819 -0.707394 0 0.706819 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.706721 0 -0.707492 -0.706727 -1.17012e-07 -0.707487 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0105549 0.999944 0 0.0397202 0.998408 0.0400356 0.0528815 0.998601 0 0 1 0 0.0188942 0.999642 -0.0189613 0.0156581 0.999523 -0.0266347 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0125364 0.999843 0.0125368 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999385 -0.0350621 -0.0293801 0.999422 -0.017084 0.0206756 0.999734 -0.0102547 0 0.999699 -0.02455 -0.0322809 0.999446 -0.00812741 -0.021643 0.999753 0.00500655 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0274173 0.9996 -0.00690699 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999852 -0.0172246 -0.00485492 0.999894 -0.0137191 0 0.999802 -0.0199202 0.0118393 0.999864 -0.0114411 0 1 0 0 1 0 -0.0141939 0.999798 -0.0142341 -0.0267341 0.999643 0 -0.0231705 0.9997 0.00793354 -0.0183485 0.999832 0 -0.0200144 0.999774 0.00712768 -0.0160631 0.999871 0 -0.0135707 0.999832 0.0122929 0.0173136 0.999656 0.0196786 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.00113837 0.999999 -0.00113837 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0079084 0.999477 -0.031348 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0270999 0.999633 0 -0.0286264 0.999586 -0.00277792 -0.0296186 0.999561 0 0.000126211 1 0 -0.0282196 0.998394 0.0491287 0 1 0 9.5937e-05 1 -9.57352e-05 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.180328 0.966936 -0.180323 0 1 0 0 1 0 0 1 0 0 1 -0.000200986 -0.018241 0.999817 0.00577083 0 0.999766 0.0216464 0 0.999766 0.0216464 0.0227568 0.999725 0.00573549 0.00208977 0.999843 -0.0176172 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0036276 0.999993 0.000913736 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999975 0.007134 -0.00397464 0.999992 0.000783827 0 0.999975 0.007134 0 0.999975 0.007134 0 1 0 0 1 0 0.00235594 0.999994 0.00235267 -0.0056578 0.998756 0.0495361 0.0518957 0.998653 0 0.0259828 0.99845 -0.0492284 -0.00898024 0.99996 0 0.0188101 0.998921 0.0424712 0.00612106 0.999687 -0.0242668 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.132102 0.982394 -0.132102 0 1 0 0 1 0 0 1 0 -0.0462093 0.997413 0.0550573 -0.0778471 0.996448 -0.0321269 -0.0729961 0.997329 -0.0024904 -0.043454 0.997553 -0.0547686 0.0299726 0.997996 -0.0557332 -0.003117 0.999729 -0.0230814 0.0149612 0.999866 0.00670216 0.0189164 0.999814 0.00379657 0.0146966 0.999862 0.00771328 0.0067705 0.999891 0.0130913 0.0195563 0.999651 0.0177783 0.00350981 0.999897 0.0139136 -0.00853054 0.999961 0.00209446 -0.00331209 0.999962 0.00807399 0.0161878 0.999865 0.00295463 -0.00249092 0.999853 -0.0169613 -0.00144161 0.999737 0.0228737 -0.0216749 0.999754 0.00472608 0.00186559 0.999733 -0.0230465 0.00316958 0.999719 -0.0234815 -0.00512993 0.999636 -0.0264876 0.018423 0.999764 0.0115396 0.0185141 0.999637 0.0195791 0.00203127 0.999998 -0.000268102 0 1 0 0 1 0 1 0 0 0.924376 0 0.381483 0.995898 -0.000632141 0.0904826 -4.64665e-06 -1 -1.91764e-06 0.92244 -0.00269751 -0.38613 0.995872 0 -0.0907655 0.70736 0 -0.706853 0.70736 0 -0.706853 0.379526 0 -0.925181 0.379526 0 -0.925181 0.0536716 0 -0.998559 0.82804 -0.000184114 -0.560669 0.0818887 0.000200309 -0.996641 0.82412 -0.000123164 -0.566416 0.985117 0.000258104 -0.171886 0.991401 0 -0.130859 0.707433 0 -0.70678 0.707433 0 -0.70678 0.378954 0 -0.925415 0.378954 0 -0.925415 0 0 -1 -0.050479 -0.000705167 -0.998725 -0.379419 0 -0.925225 -0.707433 0 -0.70678 -0.707433 0 -0.70678 -0.980448 0 -0.196778 -0.980448 0 -0.196778 -0.238127 0.000839349 -0.971234 -0.959154 -0.000632972 -0.282883 -0.979497 0 -0.201457 -0.266755 0.000561308 -0.963764 -0.660553 0 -0.750779 -0.585053 0.00123107 -0.810994 -0.750296 0 -0.661102 -0.750296 0 -0.661102 -1 0 0 -1 0 0 -0.924376 0 0.381483 -0.924376 0 0.381483 -0.706788 0 0.707426 -0.706788 0 0.707426 -0.390554 0 0.92058 -0.133769 -0.000562956 0.991012 -0.943924 -0.000692486 0.330161 -0.189176 -0.000796131 0.981943 -0.38413 0.000437474 0.923279 -0.956888 -0.00035723 0.290457 -0.991402 -0.000274453 0.130852 -0.980578 0 0.196131 -0.70678 0 0.707433 -0.70678 0 0.707433 -0.38739 0 0.921916 -0.0918264 0.000641377 0.995775 0 0 1 0.0917961 0.000641181 0.995778 0.386918 0 0.922114 0.70678 0 0.707433 0.70678 0 0.707433 0.980578 0.000411305 0.196131 0.924376 0 0.381483 0.998043 0.000131123 0.0625264 0.961452 -0.000708789 0.274974 0.635013 0.00205764 0.772499 0.354192 0 0.935173 -0.825354 -0.00156314 0.564614 -0.114473 -0.00878614 -0.993388 0.960203 -0.00124708 0.279301 -0.963575 -0.00101934 -0.267438 0.718398 0.00105463 0.695632 0.10517 -0.000895219 0.994454 -0.839082 0.000544173 -0.544005 0.137975 -0.000556255 -0.990436 0.831683 -5.23124e-05 -0.555251 -0.135301 0.000993819 0.990804 0.800023 0.000339022 -0.59997 -0.369923 -0.00066209 -0.929062 -0.0806412 0.000958729 -0.996743 0.99801 7.02637e-06 0.0630594 -0.970076 0.000730809 0.242799 0.241899 -0.000760522 -0.970301 -0.819159 -0.00162342 0.573565 -0.969908 -0.000935078 -0.243469 0.959386 -0.00113268 0.282096 -0.480374 -0.000383549 -0.877064 -0.985267 0.000381669 0.171021 0.813345 0.000731324 -0.581781 0.990676 9.98168e-05 0.136237 -0.0367054 0.000509304 -0.999326 0.744569 -0.000245146 -0.667546 0.126305 -0.000978776 0.991991 0.376326 0.000982076 0.926487 -0.466744 0.000797742 0.884392 -0.472529 -0.000448694 -0.881315 -0.875537 0.000233899 -0.483152 -0.214081 0.00555381 -0.9768 0.43137 -0.00156622 -0.902174 0.468222 -0.00461659 0.883599 -0.99586 -0.000821446 -0.0908932 -0.510915 -0.00114607 -0.859631 -0.997428 6.32666e-05 0.0716794 0.675476 -0.000446215 0.737382 0.237584 0.000521217 0.971367 -0.668849 -0.000548009 0.743398 0.0435538 0.000427272 -0.999051 -0.701234 -0.000163102 0.712931 0.862446 0.00183512 -0.506146 0.172376 -0.000255358 0.985031 0.9993 -0.00116037 -0.0374 -0.785682 0.00103028 -0.618629 0.838337 0.000887525 0.545151 -0.999458 0.0061972 -0.0323253 0.470032 -0.00183027 0.882648 -0.999848 -0.0012322 -0.0174063 -0.992115 -0.00029525 0.125332 -0.974383 -9.56849e-05 -0.224895 0.808381 0.00111991 0.588659 0.0961115 0.000508152 0.99537 -0.560345 -0.000699552 0.828259 0.307789 -0.00106187 -0.951454 0.985732 -0.00125544 -0.168317 -0.713957 0.00063553 0.70019 0.0672357 0.000372741 -0.997737 0.879339 0.00137235 -0.476194 -0.475477 -0.000872105 -0.879728 -0.685251 0.000686722 -0.728307 0.707368 0 -0.706846 0.521623 -0.00253103 -0.853172 0.129437 0 -0.991588 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0292685 0.999572 0 0.0361833 0.999322 -0.00675206 0.0147101 0.999549 -0.0261854 -0.00313322 0.999995 0 0 1 0 -0.00168588 0.999997 0.00169187 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0589775 0.996516 0.0589792 0 1 0 0 1 0 0 1 0 0 0.999997 0.00236012 0.00402285 0.999992 -0.000697704 0.0417522 0.999121 0.00373245 0 0.99966 -0.0260872 -0.0380607 0.999229 -0.00958259 -0.0365084 0.999304 -0.00766145 -0.0378678 0.999254 0.00760015 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.00176862 0.999997 0.00195077 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999996 0.00265129 0.0919406 0.993489 -0.067275 0 0.993243 -0.116052 0 1 0 0 1 0 -0.0544774 0.997019 -0.0546317 -0.0706612 0.9975 0 -0.0456735 0.998088 0.0416374 -0.0100025 0.99995 0 -0.0100025 0.99995 0 -0.00252294 0.999947 0.0100007 -0.136869 0.982254 0.128236 0.0299646 0.988024 0.151363 0 1 0 0.000173436 1 -0.000154564 5.60394e-05 1 5.58418e-05 0 1 0.00011349 0.000132544 1 6.23719e-05 0 1 0 0 1 0 0 1 0 0.615865 0.00906929 0.787799 0 1 0 0 1 0 0 1 0 1.83691e-05 1 -2.02581e-05 -2.23588e-05 1 0 9.28973e-05 1 0.000130482 0 1 0 0 1 0 0.00559361 0.999739 0.0221709 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0633882 0.997989 0 -0.05559 0.998286 0.0183139 -0.0418717 0.999123 0 -0.0418717 0.999123 0 0 1 0 -0.0205641 0.999579 0.0204769 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0342212 0.998828 -0.0342212 0 1 0 0 1 0 0 1 0 0 1 0 0.015548 0.999359 0.0322621 0 0.999994 0.00362045 0 0.999993 0.00362045 0 0.999994 0.00362045 0.00603228 0.999957 -0.00701611 -0.0130756 0.999909 -0.00329402 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0625688 0.997916 0.015753 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.99999 0.00458994 0.0326764 0.998458 0.0448751 0 0.999108 0.0422262 -0.041103 0.999056 0.0140772 0 0.999108 0.0422262 0 1 0 0 1 0 0.0204031 0.999585 0.0203311 0.0369034 0.998863 -0.0301804 0.00405345 0.999992 0 0.0194905 0.999316 0.0314165 0.0334863 0.999439 0 0.0202533 0.999739 -0.0105781 0.0187916 0.999678 -0.0170435 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0297466 0.999194 0.0269491 -0.0269028 0.998669 0.0440026 -0.0414692 0.99883 0.0248982 0.0472597 0.998622 0.0228042 -0.0554437 0.997826 -0.0356212 0.0226456 0.995736 -0.0894226 -0.00320907 0.999712 0.0237646 -0.0298115 0.999539 0.00575211 -0.0173669 0.999257 0.0344184 -0.0138591 0.999904 -0.000546654 -0.0111786 0.999936 0.00147551 -0.0366042 0.999147 -0.0191143 -0.0272244 0.999629 0.00121544 -0.0122848 0.999404 -0.0322676 -0.0186664 0.999361 -0.0304806 -0.00500535 0.999751 -0.0217316 -0.000190561 0.999996 -0.00282905 -0.00172832 0.999997 -0.00152289 0.00610095 0.996132 -0.0876573 0.0862472 0.986701 -0.137778 -0.0336165 0.983943 0.175286 0 1 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -0.706733 0 -0.707481 -0.706733 0 -0.707481 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.707687 0 0.706526 -0.707687 0 0.706526 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.262575 0 -0.964912 -0.89102 0 -0.453963 -0.707095 0.00162872 -0.707116 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0.706623 0 -0.70759 0.706623 0 -0.70759 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.706715 0 -0.707498 -0.706715 0 -0.707498 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0.706618 0 -0.707596 0.706618 0 -0.707596 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.706715 0 -0.707498 -0.706715 0 -0.707498 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 1.27613e-05 0 -1 0 -3.31137e-07 -1 0.448512 0.000425136 -0.893777 0.92807 0 -0.372405 0.935692 9.81445e-05 -0.352817 0.304971 -0.000247032 -0.952361 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 0.707584 0 0.70663 0.707584 0 0.70663 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.706629 0 -0.707584 0.706629 0 -0.707584 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 0.707584 0 0.70663 0.707584 0 0.70663 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.706618 0 -0.707596 0.706618 0 -0.707596 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 -6.31654e-07 -2.5266e-05 0.260977 0 0.965345 0.830778 -0.00219833 0.556599 0.707107 -0.000857455 0.707107 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.707681 0 0.706532 -0.707681 0 0.706532 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.707584 0 0.70663 0.707584 0 0.70663 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.707681 0 0.706532 -0.707681 0 0.706532 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.707589 0 0.706624 0.707589 0 0.706624 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 -0.208822 0 0.977954 -0.460529 0.000775381 0.887644 -0.878086 -0.000359742 0.478504 -0.920155 0 0.391554 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -0.706721 0 -0.707492 -0.706721 0 -0.707492 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.707687 0 0.706526 -0.707687 0 0.706526 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.00017112 -1 0 0.00785236 -0.999962 0.00379205 0.00017112 -1 0 0.00017112 -1 0 0 -1 0 0.0483555 -0.997667 0.0481851 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0979407 -0.990361 -0.0979436 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.994973 0.100148 -0.0795823 -0.995106 0.0585665 0 -1 0.000513654 -0.000535485 -1 0.00013482 -0.0285566 -0.999109 0.0310896 -0.0356402 -0.999256 -0.0147084 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0153822 -0.999874 -0.0038751 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.997599 0.0692533 0.023257 -0.996382 0.0817481 0 -0.995792 0.0916434 0 -1 0 0 -1 0 -0.0401975 -0.99839 0.0400271 -0.0589899 -0.997707 -0.0331742 -0.0208707 -0.999782 0 -0.010078 -0.999695 -0.0225696 0.0373985 -0.989824 0.137296 -0.0612245 -0.998124 0 0.0377888 -0.968192 -0.24734 -0.00327492 -0.99991 -0.0129805 0.00601065 -0.999882 -0.0141622 -4.09735e-05 -1 0 3.65986e-05 -1 7.39641e-05 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -2.23329e-05 -1 4.74578e-05 0.0961669 -0.992173 -0.0796487 0 -1 0 0 -1 0 0 -1 0 1.04135e-05 -1 1.14576e-05 -1.27766e-05 -1 0 1.6962e-06 -1 -1.66391e-05 0 -1 0 -0.00407676 -0.999985 0.00369288 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0251257 -0.999684 0 0.000245648 -0.99983 0.0184521 -0.0137645 -0.999381 -0.0323739 0.0107311 -0.999942 0 0 -1 0 0.00771538 -0.99994 0.00773723 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999895 0.0144642 -0.0413601 -0.999126 -0.00608923 0 -0.99929 -0.037683 0 -0.99929 -0.0376829 0.0477833 -0.998804 0.010405 -0.00511786 -0.999986 0.0012893 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0294568 -0.999539 -0.00741639 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.99984 -0.0179018 -0.00242566 -0.999886 -0.0149041 0 -0.99955 -0.0300084 -0.0119404 -0.99971 -0.0208917 0 -0.99955 -0.0300084 0 -1 0 0 -1 0 0.0149382 -0.999776 -0.0149912 0.0258768 -0.99952 0.0170396 0.00143856 -0.999999 0 -0.000631803 -0.999788 0.0205752 -0.0185686 -0.999828 0 -0.0185686 -0.999828 0 -0.00571206 -0.999727 -0.0226454 0.0190042 -0.999819 -0.00115489 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0135728 -0.999816 0.0135732 0 -1 0 0 -1 0 0 -1 0 -0.0193358 -0.99978 0.00809391 -0.0120271 -0.999806 0.015568 -0.00865003 -0.999946 0.00574114 -0.000967136 -0.999972 0.00740901 -0.0135661 -0.999904 0.00271345 0.00346515 -0.999777 0.0208241 0.000943989 -0.999489 0.0319523 -0.0150899 -0.999745 -0.0167827 0.0853884 -0.996166 -0.019004 0.002639 -0.999942 -0.0104615 0.00756484 -0.99987 -0.0142685 -0.00334361 -0.999861 -0.0163142 0.020012 -0.999522 -0.0235521 0.015033 -0.999822 -0.0114148 -0.0388479 -0.999034 0.0205602 0.0779977 -0.995944 -0.0448507 0.00321573 -0.999985 0.00445762 -0.032787 -0.998159 0.0510246 -0.00321859 -0.999107 0.042134 0.0222492 -0.999628 -0.0157929 0.0198126 -0.99941 -0.0280587 -0.00452531 -0.999989 -0.00090824 0 -1 0 0 -1 0 1 0 0 0.750238 -0.000674952 -0.661167 0.995872 0.000634094 -0.0907621 0.750714 -0.000691889 0.660627 0.995898 0.000632134 0.0904859 0.706715 1.17292e-07 0.707499 0.200777 -0.000422178 0.979637 0.522249 -0.00251119 0.852789 0.342309 -0.000719779 0.939587 0.985771 -0.000615437 0.168095 0.515441 0.000715217 0.856925 0.924376 0 0.381483 0.988088 -0.000500728 0.153891 0.706788 0 0.707426 0.706788 0 0.707426 0.0926726 0.000647303 0.995696 0.39008 0 0.920781 0 0 1 -0.390554 0 0.92058 -0.0927032 0.000647501 0.995694 -0.706788 0 0.707426 -0.706788 0 0.707426 -0.980578 -0.000411305 0.196131 -0.991401 0 0.130859 -0.938095 0.000386653 0.346378 -0.353316 -0.000749105 0.935504 -0.980568 -0.000411403 0.196178 -0.293377 -0.00123466 0.955996 -0.390685 -0.00164417 0.920523 -0.133821 0 0.991006 -0.70678 0 0.707433 -0.70678 0 0.707433 -0.924376 0 0.381483 -0.896012 0.000146443 0.444029 -1 3.20172e-07 -2.29148e-05 -1 -4.85218e-07 3.47271e-05 -0.7332 0.000400328 -0.680014 -0.922444 -0.000184456 -0.386132 -0.707433 -5.85974e-08 -0.70678 -0.585052 0.00172689 -0.810994 -0.194196 0 -0.980963 -0.989667 0.000302679 -0.143382 -0.978901 -0.000165104 -0.204334 -0.316405 0 -0.948624 -0.315824 5.84778e-06 -0.948818 -0.75029 -0.000674797 -0.661109 -0.980448 0.000415398 -0.196778 -0.707425 5.8598e-08 -0.706788 -0.660559 -0.000692346 -0.750774 -0.379553 0 -0.92517 0 0 -1 0.0504908 -0.000705332 -0.998724 0.379088 0 -0.925361 0.707425 0 -0.706788 0.707425 0 -0.706788 0.922444 0 -0.386132 0.980448 -0.000415398 -0.196778 0.833179 -0.00375699 -0.552991 0.413815 0 -0.910361 0.970126 -0.000512133 -0.242602 0.821751 0.0011426 0.569845 -0.946465 0.00174099 -0.322801 -0.754456 0.00122349 0.65635 -0.865607 -0.000980557 -0.500723 0.703691 -0.000186124 0.710506 -0.0233998 0.000574182 -0.999726 0.023688 0.00027821 0.999719 0.998597 -0.00116417 -0.0529381 -0.994878 -0.00109029 0.101081 0.86123 0.00166018 -0.508212 0.261535 -0.00193024 -0.965192 -0.254837 -0.00169095 0.966983 -0.970105 -0.00694995 -0.242588 -0.972714 0.00156652 0.232002 0.0441645 0.000987272 -0.999024 -0.706874 -0.00022233 -0.707339 -0.77749 0.000770776 -0.628895 0.881054 0.00139039 -0.473013 -0.997689 -0.000740314 -0.0679411 -0.638816 -0.0011867 0.769359 -0.232617 -0.000742852 -0.972568 0.674166 -0.00085079 -0.738579 -0.0860169 0.000866298 0.996293 0.803535 -0.000129739 0.595257 0.0475195 -0.000119168 0.99887 0.715481 0.00117222 0.698631 0.99728 -0.00105522 0.0737027 -0.966155 -0.00657459 -0.257878 0.677721 -0.0116338 0.735227 -0.825877 0.000915694 -0.56385 0.793372 0.000521288 -0.608737 -0.997527 -0.00094488 0.0702789 -0.125278 0.000316573 -0.992122 -0.696659 0.000478906 0.717403 0.0898577 -0.00107882 0.995954 0.866865 -0.00101053 -0.498542 0.32979 0.0014691 0.944053 0.831725 0.000278053 0.555188 0.837958 0.000153737 0.545734 -0.363907 -0.00185591 -0.931433 -0.99966 -0.000110791 -0.0260768 -0.492114 -0.00139537 0.87053 -0.971644 0.00110607 0.236447 0.96648 0.00105233 0.25674 0.038809 0.00232702 0.999244 -0.709003 0.000774326 -0.705205 0.0518466 0.000615121 -0.998655 0.999696 -0.000844528 -0.02466 -0.490566 -0.0008094 -0.871404 0.813488 0.0012597 -0.581581 0.390287 -0.00132154 -0.920692 0.556089 -0.00121383 0.831122 -0.996361 -0.000928742 -0.0852338 -0.57996 -0.0025031 0.814641 0.706768 0 0.707445 0.706768 0 0.707445 0.200643 -0.000241202 0.979664 0.390495 0 0.920605 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0425167 -0.999096 0 -0.0133744 -0.999093 -0.0404214 0.0390942 -0.998981 0.0225551 0.0618396 -0.997448 -0.0356779 0.0391884 -0.999232 0 0.0408619 -0.99916 0.00304951 0 -1 0 0.0244197 -0.999405 0.0243719 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0926114 -0.991386 -0.0926097 0 -1 0 0 -1 0 0 -1 0 0 -0.999246 0.038813 -0.0169329 -0.999424 0.0294225 -0.0335367 -0.999298 0.016697 0.00279751 -0.999984 0.00486085 0 -0.999987 0.00511935 0.00317855 -0.999948 0.00971547 -0.0140514 -0.999895 0.00353931 -0.00695359 -0.99996 -0.00567924 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0432792 -0.999003 0.0109076 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999361 -0.0357426 0.0179393 -0.999354 -0.0311345 -0.0325126 -0.997871 -0.0565373 0 -0.999964 0.00853095 0.0363506 -0.999262 -0.01243 0 -1 0 0 -1 0 -0.00587749 -0.999966 0.00586513 -0.0105088 -0.999945 0 0.00597838 -0.999386 -0.0345281 0.0157151 -0.999835 0.00906673 0.0154111 -0.999842 -0.00889133 0.00247408 -0.99832 0.0578914 -0.0245749 -0.999698 0 -0.00858653 -0.999796 -0.0182723 -0.00662551 -0.999633 -0.0262628 0.00421983 -0.999779 -0.0206046 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0357867 -0.998719 -0.0357859 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.00161435 -0.999978 0.00639867 0.04076 -0.998784 -0.0277486 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.00495484 -0.999988 0 -0.0115202 -0.999912 -0.00664648 -0.00657174 -0.999974 0.00296159 -0.00766246 -0.999961 0.0044208 -0.00809714 -0.999967 0 0 -1 0 -0.0211626 -0.999551 -0.0212225 -0.0331994 -0.999315 0.016381 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.803148 -0.00120048 0.595778 4.84422e-05 -1 -9.81936e-05 -5.09289e-05 -1 0 -2.81861e-05 -1 -5.98963e-05 0 -1 0 0 -0.998989 -0.0449498 0.0223775 -0.998997 -0.0387816 -0.0201483 -0.997978 -0.0602798 -0.0318528 -0.997973 -0.0550954 0 -0.998108 -0.0614852 0.0555737 -0.998389 0.0114442 0.0117483 -0.999927 -0.00295957 -0.0017787 -0.999867 0.0162329 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.122166 -0.992033 -0.0307577 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999998 -0.00187853 0.0638019 -0.995427 -0.0710987 0.000914197 -0.999998 -0.00158311 -0.0140188 -0.999607 -0.0242768 -0.0270869 -0.999483 -0.017303 0 -0.999597 -0.0283993 0 -1 0 0 -1 0 0.0132717 -0.999823 -0.0133112 0.0183585 -0.999826 0.00320434 0.0137679 -0.999905 0 0.0128239 -0.99989 0.00739863 0.0100042 -0.999837 0.0150287 -0.00030109 -1 0.000173712 -0.000382051 -1 0 0.0256914 -0.999143 -0.0324555 0.0107516 -0.999034 0.0426163 -0.00699102 -0.999352 0.035299 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0571099 -0.996733 0.0571106 0 -1 0 0 -1 0 0 -1 0 -0.00116372 -0.999989 0.004613 -0.00609523 -0.999951 0.00775544 0.00492873 -0.99992 0.0116197 0 -0.999941 0.0108497 0.046916 -0.998887 -0.00476697 0.00666137 -0.997654 0.0681262 0.00834112 -0.999965 0 -0.000243915 -0.9997 -0.0245007 -0.00706717 -0.999971 -0.00291643 -0.00677736 -0.999391 -0.0342214 -0.0616171 -0.998029 -0.01192 -0.0263966 -0.99624 -0.0825165 -0.0186808 -0.999635 0.0195219 -0.00149589 -0.999999 0 -0.00133003 -0.999999 -0.000556702 -0.0941473 -0.995379 0.0188946 -0.0802508 -0.99631 0.0304243 -0.0825182 -0.996539 0.0100636 -0.00434918 -0.994399 0.1056 -0.017437 -0.999848 0.000682977 0.00644154 -0.998768 0.0492131 0.0022264 -0.999997 -0.000918748 0.00200788 -0.999998 0 0.0140435 -0.998231 0.0577801 -0.0466511 -0.998907 0.00286926 0.019189 -0.999809 -0.0037673 -0.0787592 -0.994923 0.0626543 0.0130696 -0.999543 -0.0272404 0 -1 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -0.707675 0 0.706538 -0.707675 0 0.706538 -1 0 0 -1 0 0 -0.866178 0 0.499735 -0.866178 0 0.499735 -0.866178 0 -0.499735 -0.866178 0 -0.499735 -1 0 0 -1 0 0 -0.706698 0 -0.707515 -0.706698 0 -0.707515 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.689052 0.000461951 0.724712 -0.489991 -0.000512211 0.871727 -0.922525 -0.000159412 0.385937 -0.357306 0.000798051 0.933987 -0.953626 0 0.300993 -0.232765 -9.3781e-05 0.972533 -0.689052 -0.00104701 0.724711 -0.291944 5.57496e-05 0.956436 -0.889379 0.000866976 0.457171 -0.920274 -0.000201471 0.391274 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0.707663 0 0.70655 0.707663 0 0.70655 0 0 1 0 0 1 0.500071 0 0.865985 0.500071 0 0.865985 -0.500076 0 0.865982 -0.500076 0 0.865982 0 0 1 0 0 1 -0.707683 0 0.70653 -0.707683 0 0.70653 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0.707586 0 0.706627 0.707586 0 0.706627 0 0 1 0 0 1 0.500512 0 0.86573 0.500512 0 0.86573 -0.49978 0 0.866152 -0.49978 0 0.866152 0 0 1 0 0 1 -0.707683 0 0.70653 -0.707683 0 0.70653 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 2.5053e-05 -3.57899e-07 1 0.329299 0.000269657 0.944226 0.963075 0 0.269233 0.650915 -0.00068969 0.75915 0.705714 -0.000258158 0.708497 0.955038 6.93483e-05 0.296484 0.384622 0.000633451 0.923074 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0.70662 0 -0.707593 0.70662 0 -0.707593 1 0 0 1 0 0 0.866178 0 -0.499735 0.866178 0 -0.499735 0.866178 0 0.499735 0.866178 0 0.499735 1 0 0 1 0 0 0.707598 0 0.706615 0.707598 0 0.706615 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0.70662 0 -0.707593 0.70662 0 -0.707593 1 0 0 1 0 0 0.866178 0 -0.499735 0.866178 0 -0.499735 0.866178 0 0.499735 0.866178 0 0.499735 1 0 0 1 0 0 0.707294 0 0.70692 0.707294 0 0.70692 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0.956329 0 -0.292294 0.207543 0 -0.978226 0.958676 -2.05716e-05 -0.284499 0.422264 0.00043027 -0.906473 0.665654 -0.000363917 -0.74626 0.672383 0.000728663 -0.740203 0.912604 -0.000569637 -0.408843 0.316474 -0.000363524 -0.948601 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.7072 0 -0.707013 -0.7072 0 -0.707013 0 0 -1 0 0 -1 -0.498513 0 -0.866882 -0.498513 0 -0.866882 0.499244 0 -0.866462 0.499244 0 -0.866462 0 0 -1 0 0 -1 0.707104 0 -0.70711 0.707104 0 -0.70711 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.7072 0 -0.707013 -0.7072 0 -0.707013 0 0 -1 0 0 -1 -0.498808 0 -0.866713 -0.498808 0 -0.866713 0.498803 0 -0.866716 0.498803 0 -0.866716 0 0 -1 0 0 -1 0.707181 0 -0.707033 0.707181 0 -0.707033 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 -0.229299 0 -0.973356 -0.982892 0 -0.184185 -0.777999 -3.93134e-05 -0.628266 -0.761827 -0.000167613 -0.647781 -0.74327 0.000237222 -0.668992 -0.964712 -0.000157359 -0.263307 -0.514424 -0.000816092 -0.857536 -0.983388 -6.91642e-06 -0.181516 -0.401909 -0.000299907 -0.91568 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -0.707371 0 0.706842 -0.707371 0 0.706842 -1 0 0 -1 0 0 -0.866178 0 0.499735 -0.866178 0 0.499735 -0.866178 0 -0.499735 -0.866178 0 -0.499735 -1 0 0 -1 0 0 -0.706698 0 -0.707515 -0.706698 0 -0.707515 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0392215 0.999231 0 0.0404152 0.999182 -0.00119887 0.0318538 0.999324 -0.0183778 -0.00622205 0.999974 -0.00358977 0.0148385 0.998893 -0.0446453 -0.00717017 0.999974 0 0 1 0 0.0489916 0.99759 -0.0491373 0.0757244 0.994879 0.0669405 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0174725 0.99973 0.0152999 1.54145e-05 1 3.12457e-05 -1.78677e-05 1 0 -9.66162e-06 1 2.05312e-05 0 1 0 0 0.992966 -0.1184 -0.0631184 0.992002 -0.109304 0.0983405 0.980474 -0.170296 -0.10372 0.992669 -0.0620591 0 0.999954 -0.00960461 -0.0178678 0.999837 0.002471 -0.0012175 0.999999 -0.000306528 -0.00123524 0.999999 0.000247903 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.000736734 1 0.000185595 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.99998 -0.0062614 -0.0458032 0.995804 -0.0792252 0.0411912 0.998792 -0.0267779 0.0265126 0.998592 -0.045948 0 0.998664 -0.0516779 0 1 0 0 1 0 -0.0224103 0.999496 -0.0224738 -0.0367235 0.998775 0.0331594 -0.00422704 0.999991 0 -0.00854939 0.999899 -0.0113831 -0.0263213 0.999538 0.0151859 -0.0137146 0.999875 -0.00791256 -0.0161655 0.999869 0 -0.0114799 0.999925 0.00428743 -0.00607425 0.999692 0.024076 0.025079 0.999676 0.00439726 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.106976 0.98849 0.106977 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0013097 0.999986 -0.00519152 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.00649694 0.999979 0 -0.00143123 0.999987 -0.00487064 -0.0416485 0.998843 0.0240288 -0.0131668 0.999731 -0.0190836 -0.0220015 0.999677 -0.0126936 -0.0257826 0.999668 0 0 1 0 -0.0121757 0.999852 0.01215 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.417456 0.807136 -0.417447 0 1 0 0 1 0 0 1 0 0.00291213 0.999853 0.0168772 0 0.999918 0.0128321 0.00689555 0.999904 0.0119909 0.00816203 0.9999 0.0115417 -0.00320454 0.999979 0.00556164 0 0.999979 0.00649229 0.00152063 0.999987 0.00477885 0.0176054 0.999841 -0.00276908 0.0010026 1 0.000252685 0.000913708 1 -0.000182743 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.00603507 0.999981 -0.00152013 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.998324 0.0578648 -0.0420271 0.999013 -0.0143919 0.0356468 0.997443 0.0619387 -0.0400319 0.996774 0.0695591 0 0.999969 0.00789546 0.0560538 0.997572 0.0413207 0 1 0 0 1 0 0.00563667 0.999968 0.00562562 0.0105235 0.999945 0 0.00831166 0.999954 -0.00479535 0.00623701 0.99995 -0.00775723 0.00326817 0.999993 0.00188554 0.00394534 0.999967 -0.00704779 -0.000282093 1 0 -0.000129772 1 0.000514416 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.12553 0.976846 -0.173245 -0.017487 0.999694 -0.0174867 0 1 0 0 1 0 0 1 0 0.00441022 0.99999 0.00088207 0.00846673 0.999962 -0.0022507 0.00767494 0.999641 0.0256776 0.0271156 0.999575 0.0107384 0.00148923 0.999973 0.00727137 -0.00507149 0.999979 0.00413021 -0.000583288 1 -0.000244144 -0.00366373 0.999984 0.00429949 -0.00507219 0.999987 0 0.00976906 0.977428 -0.211045 -0.209059 0.972571 0.101985 -0.0236905 0.999705 -0.0054476 -0.00117131 0.999982 -0.0059144 0.0110426 0.999936 0.00241174 0.0252477 0.99466 0.100075 -0.0366112 0.995336 0.0892568 -0.00408491 0.994426 0.105356 -0.0303335 0.997282 0.0671451 -0.0415457 0.999057 -0.0126154 -0.0309398 0.997989 -0.0553232 -0.0124823 0.999831 -0.0135287 0.00502493 0.999917 -0.011845 -0.184178 0.97939 -0.0829117 0 0.994335 -0.106296 -0.0018941 0.994259 -0.106985 0.0788298 0.996858 0.00772098 0.0671134 0.994354 0.0821883 0 1 0 1 0 0 1 0 0 0.92443 0 0.381351 0.92443 0 0.381351 0.9225 0 -0.385998 0.9225 0 -0.385998 0.707406 0 -0.706808 0.707406 0 -0.706808 0.549924 0 -0.835215 0.194278 0.000368474 -0.980946 0.132073 0.000158771 -0.99124 0.379495 -0.0002399 -0.925194 0.0543235 6.53048e-05 -0.998523 0.788879 -7.30007e-05 -0.614548 0.722008 -0.000276988 -0.691885 0.992383 0 -0.123187 0.582544 0.00141306 -0.812798 0.989072 7.76675e-05 -0.147436 0.116886 -7.04515e-05 -0.993145 0.511587 0.000383276 -0.859231 0.998803 0 -0.0489241 0.890663 0 -0.454664 0.98045 -0.000464437 -0.196768 0.98045 0.000461108 -0.196768 0.707368 0 -0.706845 0.707368 0 -0.706845 0.379409 0 -0.925229 0.379409 0 -0.925229 0 0 -1 0 0 -1 -0.232443 0 -0.97261 -0.379406 0.000151805 -0.92523 -0.379406 -0.000340779 -0.92523 -0.54939 0 -0.835566 -0.707433 0 -0.706781 -0.707433 0 -0.706781 -0.840257 0 -0.542188 -0.922454 0.00020548 -0.386107 -0.972734 0 -0.231924 -0.922454 -0.000206047 -0.386107 -1 0 0 -1 0 0 -0.881619 -0.000193169 -0.471963 -0.0923714 0 -0.995725 -0.920231 -0.000905439 -0.391374 -0.984678 0 -0.174383 -0.947871 0.000297573 -0.318654 -0.541131 0.000170118 -0.840938 -0.248834 -0.000435215 -0.968546 -0.194271 0 -0.980948 -0.194271 0 -0.980948 -0.707425 0 -0.706788 -0.707425 0 -0.706788 -0.922451 0 -0.386115 -0.922451 0 -0.386115 -1 0 0 -1 0 0 -0.924383 0 0.381467 -0.924383 0 0.381467 -0.706788 0 0.707426 -0.706788 0 0.707426 -0.200636 0 0.979666 -0.390536 0.000469569 0.920587 0 0 1 -0.990757 0.000162579 0.135649 -0.887736 0.000240021 0.460352 -0.360121 0.000150474 0.932906 -0.247864 -0.000298027 0.968795 -0.958059 0.00104428 0.286568 -0.950056 -0.000425931 0.312079 -1 0 0 -0.924386 -0.000457116 0.381459 -0.980581 0 0.196117 -0.70678 0 0.707434 -0.70678 0 0.707434 -0.387376 0 0.921922 -0.387376 0 0.921922 0 0 1 0 0 1 0.387379 0 0.92192 0.387379 0 0.92192 0.706715 0 0.707498 0.706715 0 0.707498 0.98058 0 0.196122 0.924382 -0.000457126 0.381467 1 0 0 0.963362 0.00134425 0.268203 0.99207 0.000150641 0.125689 0.835632 -0.000661696 0.549289 0.459543 -0.000544061 0.888155 0.243095 0.000292236 0.970002 0.446921 -0.00046189 0.894574 0.949719 -0.000331366 0.313102 0.819891 0.000282502 0.572519 0 0 1 -0.296565 0.00445748 0.955002 -0.645386 -0.00560123 0.763836 0.858486 -0.00111425 -0.512835 -0.184547 -0.000266948 -0.982824 0.606349 4.8019e-05 0.795198 0.953754 -0.000276094 0.300587 0.943753 -0.000110663 0.330652 0.7768 0.000178587 -0.629747 0.981436 0.00101509 -0.191787 -0.475681 1.49078e-05 0.879618 0.342102 0.00026149 -0.939663 0.398416 2.84661e-05 -0.917205 0.0808947 0.000218827 0.996723 0.0170711 0.000144423 -0.999854 -0.999744 -0.000632289 -0.0226149 0.992864 -0.000524099 -0.119251 0.587186 0.000120804 0.809452 0.0457963 5.25871e-05 0.998951 -0.962239 -9.63666e-06 -0.272208 0.803127 0.000612576 -0.595807 0.0205328 -0.00099557 0.999789 -0.536318 0.000172345 0.844016 -0.737274 -0.00032599 0.675594 0.634955 -0.000516801 0.772549 -0.722407 -0.000310061 -0.691468 -0.532844 0.00032107 -0.846214 0.843909 -0.00157309 -0.536484 -0.946958 0.00016832 0.321358 0.419516 0.000487685 -0.907748 0.286417 0.00227424 -0.958102 0.998381 0.00109759 0.0568676 0.998333 0.00301802 -0.057633 -0.258968 -0.00168297 -0.965885 -0.945827 -0.000505283 -0.32467 0.670458 -9.4298e-05 -0.741948 0.49859 -0.000607949 0.866838 0.997811 -0.000377763 0.0661303 0.459496 7.66227e-05 0.88818 0.856109 0.00148951 0.516793 -0.327429 0.00199924 0.944874 -0.663696 -0.00134864 0.748001 0.964277 0.00105237 -0.264895 0.268032 0.00283462 -0.963406 -0.445391 -0.0031486 0.895331 -0.972588 6.9303e-05 -0.232534 0.458525 -0.000417701 0.888682 -0.186758 -0.000107036 0.982406 -0.868785 0.000911043 0.495189 0.539366 -0.00161484 -0.84207 -0.44138 0.00107243 -0.897319 -0.948208 -0.00205193 -0.317643 -0.561152 0.000161888 0.827713 -0.846997 0.00199452 0.531594 0.924659 -0.000627603 0.380796 0.515936 -5.04884e-05 0.856627 -0.979121 -0.00140404 0.203274 -0.637131 -0.00110593 -0.770755 0.957541 -0.00143223 -0.288295 0.979416 0.000590882 0.20185 0.749585 0.000485188 -0.661908 -0.429428 0.00122937 0.9031 -0.0166308 0.000400285 -0.999862 -0.748922 0.000559098 -0.662658 -0.999482 -0.00213529 -0.0321237 0.882071 -0.000160742 -0.471117 0.154972 -0.0006048 0.987919 0.1529 -0.000819369 -0.988241 0.596076 0.00132408 -0.802927 0.913211 0.00112532 0.407486 -0.682714 -0.000384255 0.730685 0.888577 2.4581e-05 -0.458727 0.967729 -0.000675519 0.251994 -0.980358 8.45512e-05 -0.197225 0.655966 0.000481436 0.75479 0.225578 -0.000202285 0.974225 -0.829443 0.00014916 0.558592 -0.984171 4.33725e-05 0.177219 -0.658348 4.62625e-05 -0.752713 -0.0532425 0.00061673 -0.998581 -0.710086 0.000369179 -0.704115 -0.999636 0.000813562 -0.0269663 -0.307991 0.000475809 0.951389 0.509707 -0.000387557 -0.860348 0.953707 -0.00165863 0.300732 -0.10834 -0.000110264 -0.994114 0.910196 -0.000618855 -0.414178 0.669821 0.000353153 -0.742523 -0.711699 9.53766e-05 -0.702485 -0.0924544 -0.000346367 -0.995717 0.991085 0.000203868 -0.133232 -0.998346 -0.00301565 -0.0574142 0.769079 0.00169032 0.639151 0.652334 -0.000325305 0.757932 0.26134 -0.00175592 0.965245 -0.729219 0.000503034 -0.684281 -0.223297 0.00142786 0.974749 -0.932098 0.00220332 0.362199 -0.585148 -0.00137782 0.810925 -0.250318 -0.00394184 -0.968156 0.43536 -0.000444934 0.900256 0.217279 0.00277914 -0.976106 -0.427363 -0.000233456 -0.90408 0.527364 0.000326522 0.849639 0.987987 -0.00030246 0.15454 -0.68652 -0.000332245 0.727111 0.798378 -0.000556553 -0.602157 -0.987233 -0.000214788 -0.159282 0.948442 0.000410923 0.31695 -0.999979 -0.00122673 -0.00642752 -0.791065 0.000751279 -0.611732 -0.923765 0.000620525 0.382961 0.50312 -0.00243267 -0.864213 -0.211527 0.00108081 0.977372 0.120491 0.000137008 -0.992714 -0.456132 -0.000559686 -0.889912 0.9427 0.000954947 -0.33364 0.948219 0.000452227 0.317616 0.527017 -0.00120886 0.849854 0.67906 0.00102401 -0.734082 0.9637 -0.00146803 -0.266984 -0.680341 -0.000180516 0.732896 -0.945066 -0.000651604 0.32688 -0.999414 -0.000567741 -0.0342247 -0.79255 0.000597987 -0.609807 0.120642 -0.000988514 -0.992696 -0.132533 -0.00111363 0.991178 -0.582233 0.000428875 0.813022 0.969028 0.00116778 0.246947 -0.44209 -0.000827129 -0.89697 -0.118695 0.00114705 -0.99293 0.730799 4.75404e-05 -0.682592 0.267724 0.000970949 0.963495 -0.847511 -8.42893e-05 -0.530778 -0.990929 0.000440556 0.134387 0.707413 0 -0.7068 0.707413 0 -0.7068 0.379361 0.000912094 -0.925248 0.12939 0 -0.991594 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.103611 0.994618 0 -0.00748893 0.996051 0.0884637 0.0912846 0.994431 -0.052666 0.00246727 0.999996 0.00142348 0.045853 0.988174 -0.146322 0.000527015 1 0 0.00279151 0.999989 -0.00383707 0 1 0 0.000358596 1 -0.000359663 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0478579 0.997707 0.0478584 0 1 0 0 1 0 0 1 0 0 1 -0.000631196 -0.000281661 1 -0.000487758 0.0115268 0.999891 -0.00922919 0.00620167 0.999923 -0.0107394 -0.0171963 0.99978 -0.011972 0 0.999999 -0.00172933 -0.00297464 0.999995 -0.000748924 -0.00209117 0.999998 0.000419682 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.108305 0.993743 -0.0272836 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999667 0.0258203 0.0115389 0.999734 0.0199586 0.0292454 0.998286 -0.0506842 0.0694607 0.997302 -0.0237663 0 0.998005 -0.0631417 0 1 0 0 1 0 -0.0326299 0.998932 -0.0327224 -0.0572568 0.997813 0.0330267 -0.0103201 0.999947 0 -0.0123152 0.999774 -0.0173331 -0.0372307 0.999076 0.02148 -0.020229 0.999727 -0.011671 -0.0234481 0.999725 0 -0.0045706 0.999856 0.0163454 -0.00433327 0.999843 0.0171766 0.00872153 0.999924 0.00871773 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.228734 0.946235 0.228736 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0160389 0.997848 -0.0635721 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0074953 0.999972 0 -0.0412151 0.998845 0.0247039 -0.00667454 0.99997 0.00385083 -0.0116319 0.99991 -0.00671096 -0.00483616 0.999988 0 -0.00612436 0.999979 0.00222393 0 1 0 -0.0036738 0.999987 0.00365823 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0861399 0.993574 -0.0734203 -1.81575e-05 1 -3.66955e-05 2.06684e-05 1 0 1.12205e-05 1 -2.38438e-05 0 1 0 0 0.999971 0.00765848 0.00370554 0.999973 0.00642194 0.0053418 0.999971 0.00547924 -0.00117834 0.999997 0.00203816 0 0.999997 0.00238262 0.00263016 0.999996 -0.000565821 -5.84708e-05 1 -1.47297e-05 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.00828861 0.999963 0.00208682 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999059 0.0433828 0.0202602 0.999179 0.0350846 -0.0439166 0.996136 0.0760515 0 0.999883 0.0153263 0.0277521 0.999358 0.0226713 0 1 0 0 1 0 0.00700737 0.999951 0.00697866 0.0100608 0.999943 -0.00357216 0.00638198 0.99998 0 0.00529821 0.999981 -0.00305676 0.0049736 0.999981 -0.00360465 0.00326129 0.999993 0.00188158 0.00322342 0.999992 0.00235756 0.00451055 0.99999 0 0.0364432 0.9977 0.057149 0.014327 0.998283 -0.0567885 -0.0102399 0.998698 -0.0499777 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0523113 0.99726 -0.0523119 0 1 0 0 1 0 0 1 0 0.00613391 0.999686 0.0243148 -0.00736063 0.999812 0.0179523 0 0.999716 0.0238392 0.000797055 0.999688 0.0249461 0.0450852 0.998549 0.0294581 -0.0278863 0.998845 -0.0391267 -0.0278058 0.999438 -0.0187221 0.051969 0.998436 -0.0206079 0.000228463 0.999999 -0.00111509 -0.0584675 0.998282 -0.00375345 -0.0075923 0.998149 0.0603346 0.000807102 0.999999 0.000830061 -4.81968e-05 1 9.63942e-06 -0.0635611 0.997874 -0.0144107 -0.0054307 0.999983 -0.0022411 -0.0281775 0.999383 0.0209638 -0.0340139 0.999421 0 -0.0411748 0.997905 0.0499023 0.0337117 0.998895 -0.0327357 -0.0262369 0.99901 -0.0359176 0.0983872 0.994952 0.019745 -0.00123949 0.989633 0.143611 0.00529374 0.999735 -0.0224173 -0.00437137 0.999905 -0.0130954 -0.0174958 0.999645 0.0201192 0.00100747 0.99997 0.00772151 -0.114979 0.990896 -0.0700393 0 1 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -0.70671 0 -0.707504 -0.70671 0 -0.707504 -1 0 0 -1 0 0 -0.866178 0 -0.499735 -0.866178 0 -0.499735 -0.866178 0 0.499735 -0.866178 0 0.499735 -1 0 0 -1 0 0 -0.707664 0 0.706549 -0.707664 0 0.706549 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.930279 0 -0.366853 -0.923808 8.4311e-05 -0.382855 -0.187292 0 -0.982304 -0.593785 -0.000489779 -0.804624 -0.325335 0.000364413 -0.945599 -0.374709 -0.000376002 -0.927143 -0.597649 0.000325148 -0.801758 -0.94743 0.00019167 -0.319964 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0.706697 0 -0.707516 0.706697 0 -0.707516 0 0 -1 0 0 -1 0.500071 0 -0.865985 0.500071 0 -0.865985 -0.500076 0 -0.865982 -0.500076 0 -0.865982 0 0 -1 0 0 -1 -0.706717 0 -0.707497 -0.706717 0 -0.707497 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0.70662 0 -0.707593 0.70662 0 -0.707593 0 0 -1 0 0 -1 0.500512 0 -0.86573 0.500512 0 -0.86573 -0.49978 0 -0.866152 -0.49978 0 -0.866152 0 0 -1 0 0 -1 -0.706717 0 -0.707497 -0.706717 0 -0.707497 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 1.23433e-05 0 -1 2.56454e-05 2.03918e-07 -1 0.691671 0.000583259 -0.722213 0.981173 -4.59462e-05 -0.193132 0.975305 0 -0.220864 0.743286 -0.00024814 -0.668973 0.984738 0.000242523 -0.174043 0.569234 0.000326372 -0.822176 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 0.707586 0 0.706627 0.707586 0 0.706627 1 0 0 1 0 0 0.866178 0 0.499735 0.866178 0 0.499735 0.866178 0 -0.499735 0.866178 0 -0.499735 1 0 0 1 0 0 0.706632 0 -0.707581 0.706632 0 -0.707581 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 0.707586 0 0.706627 0.707586 0 0.706627 1 0 0 1 0 0 0.866178 0 0.499735 0.866178 0 0.499735 0.866178 0 -0.499735 0.866178 0 -0.499735 1 0 0 1 0 0 0.70662 0 -0.707593 0.70662 0 -0.707593 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0.72432 0.000414693 0.689464 0.97561 0 0.219512 0.187325 0 0.982298 0.866783 -0.000993181 0.498685 0.433945 0.000745995 0.900939 0.185604 3.11662e-06 0.982625 0.663657 -0.000437174 0.748037 0.934424 0.000278869 0.356163 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.707683 0 0.70653 -0.707683 0 0.70653 0 0 1 0 0 1 -0.49978 0 0.866152 -0.49978 0 0.866152 0.500512 0 0.86573 0.500512 0 0.86573 0 0 1 0 0 1 0.707586 0 0.706627 0.707586 0 0.706627 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.707683 0 0.70653 -0.707683 0 0.70653 0 0 1 0 0 1 -0.500076 0 0.865982 -0.500076 0 0.865982 0.500071 0 0.865985 0.500071 0 0.865985 0 0 1 0 0 1 0.707663 0 0.70655 0.707663 0 0.70655 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 -0.187458 0 0.982273 -0.626636 0.000530313 0.779312 -0.906391 0.000182963 0.422441 -0.450977 0.000421047 0.892535 -0.922368 -0.000105502 0.386312 -0.867705 -0.00115553 0.497077 -0.930762 0 0.365625 -0.582336 -0.000163509 0.812948 -0.464871 0.000534618 0.885378 -0.184759 7.53653e-06 0.982784 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -0.706698 0 -0.707515 -0.706698 0 -0.707515 -1 0 0 -1 0 0 -0.866178 0 -0.499735 -0.866178 0 -0.499735 -0.866178 0 0.499735 -0.866178 0 0.499735 -1 0 0 -1 0 0 -0.707664 0 0.706549 -0.707664 0 0.706549 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0539839 -0.998542 0 0.0397667 -0.998946 0.0229431 0.00301115 -0.999994 -0.00173726 0.0285839 -0.998913 0.0368337 0.00374864 -0.999993 0 0 -1 0 0.00195328 -0.999996 0.00194527 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.113386 -0.98706 -0.113387 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0184246 -0.999821 -0.00432425 0 -0.99984 0.0178876 -0.00906171 -0.999836 0.0156924 0.0595126 -0.997052 0.0484398 0.0359874 -0.997407 0.0623192 0 -0.997167 0.07522 -0.0864619 -0.996207 -0.00981332 -0.0155817 -0.999871 0.003923 -0.0141376 -0.999896 -0.0028276 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0278936 -0.999586 0.00702683 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999818 0.0190739 -0.00812134 -0.999868 0.0140474 0.00660345 -0.999913 0.0114442 -0.00996897 -0.999872 0.0125389 0 -0.999958 0.00915973 -0.00194732 -0.999946 0.0102135 0 -1 0 0 -1 0 -0.00573975 -0.999967 0.00571541 -0.00918728 -0.999958 0 -0.0158065 -0.9998 0.012264 -0.0134464 -0.99988 -0.0077578 -0.0269572 -0.999153 0.0311003 -0.0351923 -0.999174 0.020304 -0.0463011 -0.998928 0 -0.0133734 -0.998505 -0.0530068 0.0072687 -0.999344 -0.0354775 -3.85771e-05 -1 0 3.87488e-05 -1 7.83094e-05 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -2.16014e-05 -1 4.59036e-05 -0.00686816 -0.999965 0.00471389 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.00464217 -0.99982 0.0184011 0.0134917 -0.999901 0.00401127 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0140463 -0.999901 0 -0.000273433 -1 -0.000157755 -0.00484279 -0.999844 -0.0169897 -0.000249445 -1 0.000143915 -0.00106226 -0.999999 0 -0.000385931 -0.999999 0.00118665 0 -1 0 -0.00087441 -0.999999 -0.000876886 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0897943 -0.991904 0.089795 0 -1 0 0 -1 0 0 -1 0 0 -0.999998 -0.00218624 0.00118307 -0.999997 -0.00205033 -0.00181759 -0.999993 -0.00314387 0 -0.999998 -0.00218624 -0.0752407 -0.983736 -0.163103 0.324433 -0.944619 0.0493828 0.029223 -0.999546 -0.00736172 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.00205111 -0.999998 0.000516407 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.99946 -0.0328738 -0.0163121 -0.999863 0.00279068 0.0317496 -0.997983 -0.0549808 -0.0160451 -0.999485 -0.0277857 0 -0.99946 -0.0328738 0 -1 0 0 -1 0 0.0151173 -0.999771 -0.0151623 0.0248078 -0.999517 0.0187315 -0.0101827 -0.999948 0 -0.0118435 -0.999907 -0.006833 -0.0113043 -0.999915 0.00652191 -0.0101827 -0.999948 0 0.0365196 -0.998993 -0.0260463 0.00830493 -0.999423 0.0329208 -0.0014354 -0.999692 0.0247651 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0905539 -0.991766 0.0905549 0 -1 0 0 -1 0 0 -1 0 0.00167848 -0.999999 -0.000336858 -0.029976 -0.999184 -0.027056 8.40078e-05 -0.99979 -0.0204998 0.031583 -0.997803 0.0582423 -0.00320983 -0.999692 0.0245988 0.00467924 -0.99979 -0.0199264 0.00204198 -0.999998 -0.000842645 0.00212571 -0.999998 0 0.00654986 -0.999954 0.00696538 0.00525367 -0.999012 0.0441396 -0.0351337 -0.999108 -0.0234355 0.0342511 -0.999413 0.000468708 0.0220259 -0.995938 -0.0873048 -0.0527253 -0.998483 -0.0158476 -0.0218115 -0.99844 -0.051401 0 -0.999973 -0.00741269 0.0384026 -0.999062 -0.0200203 -0.00568873 -0.999764 0.0209469 -0.00355154 -0.999905 0.0132859 -0.00752693 -0.99991 -0.0110881 0.00126266 -0.999994 0.00307919 -0.0181451 -0.999814 0.00650867 0.000753789 -0.999843 -0.0176836 0.00340403 -0.999615 0.0275432 0.0275943 -0.999613 0.00364182 0 -1 0 1 0 0 1 0 0 0.9225 0 -0.385998 0.9225 0 -0.385998 0.977231 0 0.212176 0.92443 -0.000136613 0.381351 0.92443 0.000138624 0.381351 0.890011 0 0.455939 0.70676 0 0.707453 0.70676 0 0.707453 0.390626 0 0.920549 0.200719 -0.000241294 0.979649 0 0 1 0.995363 -0.000115273 0.0961941 0.314824 0.00128862 0.949149 0.115205 0.000138494 0.993342 0.789064 -0.000344895 0.614311 0.22558 -0.000132842 0.974225 0.543809 0.000587323 0.839209 0.823238 -2.12922e-05 0.567696 0.846359 -0.000234752 0.532613 0.512191 4.44101e-05 0.858872 0.932411 0.00175461 0.361395 0.982543 2.71118e-05 0.186038 1 0 0 0.980579 0.00023502 0.196122 0.924383 0 0.381467 0.706723 0 0.707491 0.706723 0 0.707491 0.390543 0 0.920585 0.390543 0 0.920585 0 0 1 0 0 1 -0.39054 0 0.920586 -0.39054 0 0.920586 -0.706787 0 0.707426 -0.706787 0 0.707426 -0.924386 0 0.381459 -0.98058 -0.000235014 0.196117 -1 0 0 -0.239833 -0.000888341 0.970814 -0.820979 3.19922e-05 0.570959 -0.565219 -0.000730043 0.82494 -0.0909087 0 0.995859 -0.990922 0.000161105 0.134441 -0.796899 -0.000771366 0.604112 -0.965029 0.00091577 0.262141 -0.906343 -0.00081291 0.422542 -0.490752 0.000299738 0.871299 -0.248368 0.000707092 0.968666 -0.200713 0 0.97965 -0.200713 0 0.97965 -0.70678 0 0.707433 -0.70678 0 0.707433 -0.924383 0 0.381467 -0.924382 0.000503789 0.381467 -0.924383 0 0.381467 0.986383 0 -0.164463 0.986383 0 -0.164463 0.924382 -0.000503789 -0.381467 -0.986383 0 0.164463 -1 0 0 -1 0 0 -0.922451 0 -0.386115 -0.922451 0 -0.386115 -0.707433 0 -0.70678 -0.707433 0 -0.70678 -0.379402 0 -0.925232 -0.129379 -0.000311124 -0.991595 -0.833975 -0.00225793 -0.551798 -0.0872831 -0.000209894 -0.996184 -0.905018 -0.00055056 -0.425372 -0.630535 -0.00030344 -0.776161 -0.388283 0.000377454 -0.92154 -0.980931 0.000234488 -0.194358 -0.991403 0.000157858 -0.130843 -0.980451 0 -0.196764 -0.707425 0 -0.706788 -0.707425 0 -0.706788 -0.534469 0 -0.845188 -0.379539 -0.000225392 -0.925176 -0.191315 0 -0.981529 -0.379539 0.000228708 -0.925176 0 0 -1 0 0 -1 0.379543 0 -0.925174 0.379543 0 -0.925174 0.707361 0 -0.706853 0.707361 0 -0.706853 0.857511 0 -0.514465 0.98045 -0.000456167 -0.196768 0.997885 0 -0.0650077 0.98045 0.000463563 -0.196768 0.859486 -0.000868488 -0.511158 0.182797 0 -0.983151 0.994233 0 -0.107242 0.957195 -5.83127e-05 -0.289445 0.554124 0.000378397 -0.832434 0.334108 -0.000464121 -0.942535 0.601234 -0.000851426 -0.799073 0.352549 0.000651304 -0.935793 0.869774 -0.00158162 -0.493448 0.974398 0.0011824 -0.224826 0 0 -1 0.778633 0.0182015 0.627215 -0.784518 0.00198522 -0.620102 -0.909874 0.00431125 0.414862 -0.212146 0.0043238 0.977228 0.0376281 -3.0791e-05 0.999292 0.599795 0.000121829 0.800154 0.347774 0.00113062 -0.937578 -0.42913 3.45233e-05 0.903243 0.958087 0.000560786 -0.286477 -0.659544 0.000184916 -0.751666 -0.798095 -0.000357715 0.602532 0.976061 9.70252e-05 -0.217497 -0.080672 -0.00123524 -0.99674 -0.932561 0.000275009 -0.361013 -0.98176 -0.000292795 0.190126 0.607136 -0.000974569 -0.794597 0.92338 -8.22592e-05 0.383886 -0.996062 0.000100274 0.0886562 -0.46691 0.000318428 0.884305 -0.0221026 -0.000225982 0.999756 0.600227 0.000120096 0.79983 0.609894 0.00166425 -0.792481 -0.111737 0.000181447 -0.993738 0.942284 9.47553e-05 0.334814 -0.763042 9.5127e-05 0.646349 0.919225 -0.000893254 -0.393733 -0.64247 0.000806953 -0.766311 -0.81453 -0.000417213 -0.580122 0.011941 -0.000779297 -0.999928 -0.70053 -0.000446893 0.713623 -0.980729 -0.00820706 -0.195201 0.974718 0.00334733 -0.223414 -0.888916 0.000983248 -0.458069 -0.868257 0.00613543 0.496077 -0.0476821 0.000730015 -0.998862 -0.0789109 0.0008426 0.996881 -0.75456 0.000353469 0.65623 -0.766749 8.66011e-05 0.641947 -0.632581 -0.00165232 -0.774493 0.729021 -0.00163034 -0.68449 -0.360738 -0.000543085 0.932667 0.998745 0.00107212 -0.0500653 -0.979747 0.00011907 0.20024 0.0180359 -0.000221754 -0.999837 0.130493 3.83822e-05 0.991449 0.614633 7.86915e-05 0.788813 0.957247 1.24671e-05 0.289271 -0.653555 0.000828943 -0.756879 -0.938013 0.000166694 -0.346599 -0.761769 5.13493e-05 0.647849 0.673696 -0.000194673 0.739009 0.0433499 0.000928359 -0.999059 -0.359807 -0.000295085 -0.933027 0.703115 0.00094681 -0.711076 0.997756 0.000611981 -0.0669588 0.364015 -0.000291659 -0.931393 -0.998924 -0.000238595 0.0463825 -0.309081 0.000324018 0.951036 -0.900484 -0.000125803 -0.434889 0.991859 -0.000357186 0.127337 0.864981 -3.90624e-05 -0.501805 -0.095645 -0.000971211 0.995415 0.71393 0.00140042 -0.700216 -0.191388 0.0073428 -0.981487 -0.907626 -0.00195067 0.419776 0.996796 0.00322043 0.0799177 0.390418 0.00058504 0.920638 0.912812 -0.00470007 0.408353 -0.885571 0.000104111 0.464503 -0.396493 0.000112968 0.918038 0.311787 -0.000769834 0.950152 -0.376308 -0.000177387 -0.926494 0.851676 0.00116595 0.524068 0.102063 -6.28304e-05 -0.994778 -0.973412 -0.000276536 -0.229062 -0.421372 -0.000509167 -0.906888 0.193928 0.000766792 0.981016 -0.899617 0.00151733 -0.436676 -0.989179 -0.000231896 0.146715 0.741068 -0.000234978 0.67143 0.420703 -0.00138951 -0.907197 0.994724 -0.000385238 0.10259 0.99629 0.000135007 -0.0860561 0.79512 0.000158681 -0.606453 0.878564 -0.000309093 -0.477625 0.273115 0.000575921 -0.961981 -0.780308 -0.000431874 0.625395 -0.40211 7.70111e-05 0.915591 0.999097 0.00114723 0.0424831 -0.439247 0.00131869 -0.898366 -0.690197 -0.000736251 -0.723621 -0.491126 0.00111467 0.871088 0.127143 -0.000749454 -0.991884 -0.822728 -0.00700305 0.568392 0.00660159 -0.000540988 0.999978 0.792058 -0.00101157 0.610445 0.922807 -0.00166405 -0.385258 -0.494238 0.0217461 -0.869055 -0.354439 -0.00123647 0.935078 -0.97178 -0.00172037 -0.235884 -0.740015 0.00211024 0.672587 0.975827 -0.00105228 -0.218541 0.846827 0.00263245 -0.531863 0.897466 -0.00017756 0.441083 0.242977 0.000284471 0.970032 -0.973885 -0.00105302 0.227038 -0.797687 0.00079226 0.603071 -0.132212 0.000583692 -0.991221 -0.770682 0.000401083 -0.637219 0.593701 -0.000855921 0.804686 0.921752 0.000520493 0.38778 0.128099 -0.00111965 -0.991761 0.698985 -0.00032081 -0.715136 0.135906 -0.000523837 0.990722 -0.391465 -0.000247618 0.920193 0.98355 0.000618584 -0.180638 -0.634139 -0.000883835 -0.773218 0.728761 -0.000777825 -0.684767 0.917877 0.000684803 0.396864 -0.620734 0.000431169 -0.784021 0.998404 1.42217e-05 0.0564718 -0.581979 -4.99101e-05 -0.813204 -0.422841 -0.000502825 0.906204 0.105589 0.000911849 -0.994409 0.0306175 0.00106203 0.999531 0.603589 -0.000542261 0.797295 -0.986674 0.000522186 -0.162711 0.864297 0.0013369 -0.502981 0.205501 0.000110831 -0.978657 0.643323 -0.000967282 0.765594 -0.990748 -0.00183985 0.135705 0 5.91804e-05 1 -8.51867e-06 0 1 0 -0.000253252 1 0.000127066 0 1 -4.44696e-05 6.29995e-05 1 -2.15341e-06 6.3463e-05 1 0 0.000984128 -1 0.000217413 0 -1 0.000754794 -0.000205924 -1 0 -0.000335945 -1 -0.000467001 0 -1 -0.00176573 -0.000231691 -0.999998 0.707107 0 -0.707107 0.707107 0 -0.707107 1 0.000294044 0 1 0 0 1 -9.38089e-05 0.000539968 1 0 0 1 0 0 1 -9.45326e-05 -0.000243748 0.707116 0 -0.707097 0.707116 0 -0.707097 0 0 -1 0 0 -1 -1 6.03956e-05 0 -1 0 -3.00989e-05 -1 0 0 -1 0 8.49104e-06 -1 -1.98764e-05 -2.87208e-06 -1 -1.98913e-05 1.02112e-05 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.707097 0 -0.707116 0.707097 0 -0.707116 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 3.61433e-05 -5.09821e-06 -1 0 0 -1 -0.000132359 6.64468e-05 -1 0 -2.31022e-05 -1 3.14905e-05 2.26977e-06 -1 3.15893e-05 -0.77183 0.0639603 0.632604 0.77183 -0.0639603 -0.632604 0 0.999999 0.00150367 0.000103129 1 0 0.00121908 0.999999 -0.000388489 -0.0126478 0.999768 -0.0174169 -0.0313574 0.999506 -0.00203178 -0.00999617 0.999934 -0.00567712 0.707107 0.707107 3.28755e-05 0.70709 0.707124 0 0.999998 0 0.00188048 1 -0.000672569 0 0.999995 -0.00303044 -0.000390728 1 0 -0.0004842 1 0.000287348 0 0.999999 0.00151535 -0.000476304 0.707112 0.707102 0 0.707112 0.707102 0 0 1 0 0 1 0 -1 0 6.10515e-05 -1 3.05744e-05 0 -1 0 6.35995e-05 -1 -8.45395e-06 0 -1 1.37567e-05 -3.89184e-05 -1 -4.70534e-05 -3.76108e-05 0 0 -1 -5.34403e-05 -1.71774e-05 -1 0 8.68938e-05 -1 1.97908e-05 -4.39794e-06 -1 0 0 -1 0 0 -1 0 0 -1 1 0 0 1 0 0 0.707102 0.707112 0 0.707102 0.707112 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -5.96481e-05 -1 0 0 -1 -8.41458e-06 0.000198079 -1 0 0 -1 9.83949e-05 -4.34041e-05 -1 -3.2929e-05 -4.31037e-05 -1 8.62631e-06 -0.000213571 1 0 0 1 -3.57058e-05 8.63447e-05 1 0.000196675 -5.60783e-05 1 0 0 1 7.17543e-05 8.39214e-05 1 -0.000382131 0 0.707107 0.707107 0 0.707107 0.707107 -0.000176105 0 1 0 -0.000310492 1 -1.73406e-05 -0.000215429 1 0.000226287 0 1 0 0.000148961 1 -2.05011e-05 9.50412e-05 1 0 0.707102 0.707112 0 0.707102 0.707112 0 1 0 0 1 0 -4.96975e-05 0 -1 0 2.41132e-05 -1 2.39644e-05 0 -1 0 -6.79013e-06 -1 7.83768e-06 -2.28057e-06 -1 7.7941e-06 8.18786e-06 -1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0.707112 0.707102 0 0.707112 0.707102 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -4.94645e-05 0 1 0 -6.79958e-06 1 0.000240941 0 1 0 0.000120668 1 -6.24479e-05 -4.27399e-05 1 -6.25844e-05 -6.36434e-06 1 -0.000161214 0 -1 0 7.74397e-05 -1 1.17397e-05 0.000108071 -1 0.000121214 0 -1 0 -0.000167754 -1 1.16311e-05 -0.000233495 -1 0 0.707107 -0.707107 0 0.707107 -0.707107 -0.000530843 1 0 0 1 0.00030656 0.000109366 1 0.000920328 0.000229074 1 0 0 1 -0.000144084 9.87957e-05 1 -0.000404676 0 0.707112 -0.707102 0 0.707112 -0.707102 0 0 -1 0 0 -1 -5.84262e-05 -1 0 0 -1 -3.00158e-05 -3.66063e-05 -1 0 0 -1 8.49768e-06 3.16453e-05 -1 -9.45772e-06 3.21715e-05 -1 3.44615e-05 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 0.707102 -0.707112 0 0.707102 -0.707112 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -1 4.31311e-05 -5.95718e-06 -1 0 -1.6556e-05 -1 -0.000123102 -4.35061e-05 -1 6.52145e-05 7.58458e-05 -1 6.41491e-05 6.45914e-06 -1 2.98026e-05 -0.624085 0.230166 0.746687 0.624085 -0.230166 -0.746687 0 1 0.000415059 7.51858e-05 1 0 0.000301079 1 -6.85728e-05 0.000312555 1 0.000366482 0.000648991 1 -3.59562e-05 -0.000393138 1 0.000140732 0.707107 0.707107 0 0.707107 0.707107 0 0.999998 0 0.00219861 1 -0.000451805 0 0.999993 -0.00379216 -0.000590772 1 0 -0.000331154 1 0.000209329 0 0.999998 0.0017641 -0.000593494 0.707112 0.707102 0 0.707112 0.707102 0 0 1 0 0 1 0 -1 0 4.93492e-05 -1 2.41266e-05 0 -1 0 3.66095e-05 -1 -6.78907e-06 0 -1 8.90209e-06 -2.73215e-05 -1 -3.14172e-05 -2.72145e-05 -6.27301e-05 -6.27309e-05 -1 -0.000164222 -9.53493e-05 -1 6.62662e-06 0.000234029 -1 6.17146e-05 -1.37143e-05 -1 0 0 -1 0 0 -1 0 0 -1 1 0 -2.38421e-06 1 -1.25463e-05 0 0.707102 0.707112 0 0.707102 0.707112 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -4.85956e-05 0 -1 0 6.8262e-06 -1 0.000201471 0 -1 0 -9.51338e-05 -1 -4.64593e-05 3.35548e-05 -1 -4.65683e-05 -9.87388e-07 -1 -0.000639471 0 1 0 -0.000319775 1 4.16342e-05 -0.00042764 1 0.000530611 0 1 0 0.000731688 1 4.53123e-05 0.0010003 1 0 -0.707107 0.707107 0 -0.707107 0.707107 -0.000450439 -1 0 0 -1 -2.10243e-05 0.000146815 -1 -0.000856832 1.54403e-05 -1 0 0 -1 9.66826e-06 0.000136324 -1 0.000366561 0 -0.707109 0.707104 0 -0.707109 0.707104 0 0 1 0 0 1 -6.9891e-05 1 0 0 1 3.42868e-05 4.31923e-05 1 0 0 1 -9.79103e-06 8.82816e-06 1 -4.72268e-06 8.62882e-06 1 1.69389e-05 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -0.7071 0.707114 0 -0.7071 0.707114 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 5.92508e-05 0 -1 0 -8.50089e-06 -1 -0.000114627 0 -1 0 6.09217e-05 -1 1.99642e-05 -1.98732e-05 -1 2.0388e-05 1.96613e-05 1 0.000427254 0 1 0 0.000117421 1 -7.65985e-05 0.000317743 1 -0.000175756 0 1 0 -0.00024591 1 -8.5409e-05 -0.000713693 0.707107 0 0.707107 0.707067 7.70792e-05 0.707146 0 0.00134627 0.999999 -0.0112336 -0.00605502 0.999919 -0.0134855 -0.0163917 0.999775 -5.63407e-05 0 1 -0.0275768 -0.00351261 0.999614 0.00105818 -0.000357306 0.999999 0.707097 0 0.707116 0.707097 0 0.707116 1 0 0 1 0 0 0 4.74563e-05 -1 2.35699e-05 0 -1 0 -8.17915e-05 -1 -6.83449e-06 0 -1 -1.3576e-05 1.17728e-05 -1 4.90831e-05 1.29192e-05 -1 0 -1 0 0 -1 0 0 -1 0 4.64887e-05 -1 -1.03308e-05 0 -1 0.000204474 -0.000125672 -1 -4.03952e-05 0 -1 0 0 0 1 0 0 1 0.707116 0 0.707097 0.707116 0 0.707097 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.734548 -0.667636 -0.121249 -0.734548 0.667636 0.121249 6.11621e-05 0 1 0 8.52722e-06 1 -0.00021925 0 1 0 -0.00010876 1 5.04065e-05 3.75561e-05 1 5.09246e-05 -4.96341e-06 1 0.726723 0.665409 -0.170601 -0.726723 -0.665409 0.170601 0.000664648 0 -1 0 8.607e-05 -1 -0.000184617 -0.000520703 -1 -0.00838082 0.00615796 -0.999946 -0.00155863 0.0123821 -0.999922 -0.0027676 0.00495904 -0.999984 1.85467e-05 -0.707107 -0.707107 0 -0.707098 -0.707116 0.000671935 -1 0 0 -1 0.000692368 -4.23342e-05 -1 0.000933676 -0.000485425 -1 0 0 -1 -0.000313732 -5.99353e-05 -1 -0.000468537 0 -0.707109 -0.707104 0 -0.707109 -0.707104 0 0 -1 0 0 -1 5.74615e-05 1 0 0 1 -2.89507e-05 8.91933e-06 1 0 0 1 8.03854e-06 -2.18126e-05 1 -4.39287e-06 -2.16057e-05 1 1.53962e-05 -1 0 0 -1 0.000101091 3.24938e-05 -1 0 -0.000163392 -1 -3.77128e-05 8.38064e-06 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -0.7071 -0.707114 0 -0.7071 -0.707114 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 4.57697e-05 -6.39019e-06 -1 0 0 -1 -0.000190047 8.97806e-05 -1 0 -3.13384e-05 -1 4.33796e-05 1.09963e-06 -1 4.35131e-05 0 0.999998 0.00183688 -3.80489e-06 1 0 0.00152706 0.999999 -0.000590665 0 1 6.34156e-06 8.72087e-06 1 0 -0.00334566 0.999994 -0.000564674 0.707107 0.707107 0 0.707107 0.707107 0 0.999999 0 0.00104331 1 -0.000265467 0 0.999999 -0.00170102 -0.000240997 1 0 -0.000181048 1 0.000113431 0 1 0.000874688 -0.000299092 0.707109 0.707104 0 0.707109 0.707104 0 0 1 0 0 1 0 -1 0 4.17442e-05 -1 2.15279e-05 0 -1 0 5.87413e-06 -1 -5.90822e-06 0 -1 3.17748e-06 -1.60386e-05 -1 -1.095e-05 -1.57344e-05 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 1 0 0 1 0 0 0.707109 0.707104 0 0.707109 0.707104 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -1 -4.71366e-05 6.48718e-06 -1 0 0 -1 0.000243081 -0.000116904 -1 0 4.30132e-05 -1 -6.34069e-05 7.6491e-06 -1 -6.29561e-05 0 0.999999 -0.00105281 -0.000195059 1 0 -0.00081525 1 0.000246858 0 1 0.000318827 0.000480598 1 0 0.00169038 0.999999 0.000195439 -0.707108 0.707106 0 -0.707126 0.707087 -3.68829e-05 -1 0 -0.000942299 -0.999984 -0.00503702 0.00262197 -0.999952 -0.00583184 0.00788721 -1 -4.73411e-05 0 -0.999933 -0.0114878 0.00154521 -1 0.000727887 0.000232127 -0.707107 0.707107 0 -0.707107 0.707107 0 0 1 0 0 1 0 1 0 -5.41178e-05 1 2.63941e-05 0 1 0 3.57656e-05 1 -7.56155e-06 0 1 -4.15199e-06 5.92978e-06 1 1.49959e-05 5.67908e-06 0 0 1 0 0 1 0 0 1 1.14697e-05 5.16135e-05 1 -0.00022347 0 1 4.44577e-05 -0.000138313 1 0 0 1 -1 0 0 -1 0 0 -0.707106 0.707107 0 -0.707106 0.707107 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.175767 0.656496 0.733566 -0.175767 -0.656496 -0.733566 0 -1 -4.78525e-05 6.60304e-06 -1 0 0 -1 0.000135408 -6.56332e-05 -1 0 2.29891e-05 -1 -2.84144e-05 -9.44655e-06 -1 -2.82399e-05 0 1 -0.000669787 -0.000239615 1 0 -0.000450897 1 8.38889e-05 0 1 0.000389122 0.000583637 1 0 0.00103284 0.999999 7.32252e-05 -0.707108 0.707106 0 -0.707108 0.707106 0 -1 0 -0.000500449 -1 -0.0003737 0 -1 -0.000794887 7.47863e-05 -1 0 0.00026095 -1 0.000171503 0 -1 0.000331017 6.17162e-05 -0.707107 0.707107 0 -0.707107 0.707107 0 0 1 0 0 1 0 1 0 -5.58788e-05 1 2.63583e-05 0 1 0 2.43688e-05 1 -7.56449e-06 0 1 -2.16509e-06 9.31613e-06 1 7.68522e-06 9.2463e-06 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.707106 0.707107 0 -0.707106 0.707107 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 1 0 -5.68733e-05 1 8.11302e-06 0 1 -2.92266e-05 0.000300867 1 1.35587e-05 -9.4923e-06 1 -0.000178875 -1.04359e-05 1 -5.39458e-05 5.2606e-05 -1 0 -0.000805196 -1 -0.00019996 0 -1 -0.000593076 0.000152266 -1 0 0.000326164 -1 0.000456779 0 -0.999999 0.00139713 0.000159445 -0.707107 -0.707107 0 -0.707107 -0.707107 0 0 -1 -0.000623984 -5.47333e-05 -1 0 0.00115681 -0.999999 0.000213177 0 -1 -3.96632e-05 2.51227e-05 -1 0 -0.000498035 -1 0.000200549 -0.707107 -0.707107 0 -0.707107 -0.707107 0 -1 0 0 -1 0 0 0 1 -5.41635e-05 -2.60577e-05 1 0 0 1 4.10999e-05 7.45215e-06 1 0 5.17937e-06 1 3.94028e-06 -1.84965e-05 1 3.74893e-06 0.00011296 0.00011296 1 7.66489e-05 0 1 5.36515e-05 -1.19226e-05 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -1 1.13258e-05 5.96211e-05 -1 0 -0.707107 -0.707107 0 -0.707107 -0.707107 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 5.22594e-05 7.44683e-06 1 0 -9.2728e-06 1 -0.000178997 1.74912e-05 1 1.75776e-05 -0.000103468 1 1.77335e-05 -3.44657e-05 1 -1.66896e-05 0 -0.999999 0.00141966 -6.68636e-05 -1 0 -0.00117756 -0.999999 -0.000427542 0 -1 -0.000110113 0.000151174 -1 0 0.00247338 -0.999997 -0.000395364 -0.707107 -0.707107 0 -0.707107 -0.707107 0 -1 0 0.000773574 -1 0.000403426 0 -0.999999 0.00125969 -0.000152112 -1 0 -0.000283856 -1 -0.000185682 0 -1 -0.000545151 -0.000138744 -0.707107 -0.707107 0 -0.707107 -0.707107 0 0 -1 0 0 -1 0 1 0 7.12068e-05 1 -3.41713e-05 0 1 0 1.01666e-05 1 9.66384e-06 0 1 -5.26813e-06 -2.58807e-05 1 1.87004e-05 -2.59161e-05 5.01966e-05 5.01966e-05 -1 0 3.40618e-05 -1 -5.29842e-06 2.38429e-05 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -1 0 -4.58216e-06 -1 2.41185e-05 0 -0.707107 -0.707107 0 -0.707107 -0.707107 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 3.71533e-05 1 -5.07541e-06 0 1 0 -0.000109425 1 5.37647e-05 0 1 -1.86279e-05 2.36524e-05 1 6.82327e-06 2.33043e-05 1 0.800894 0.59875 0.00815058 -0.800894 -0.59875 -0.00815058 0 0.000638514 -1 0.00012131 0 -1 0.000479267 -0.000116489 -1 0 -0.000216054 -1 -0.000485285 0 -1 -5.67778e-05 -0.000151795 -1 -3.5672e-05 -0.000136016 -1 -0.000872963 -4.91362e-05 -1 0.707107 0 -0.707107 0.707107 0 -0.707107 1 0.000724158 0 1 0 0.000187566 0.999999 -0.000173266 0.00117403 1 -0.000128596 0 1 0 -8.45523e-05 1 -0.000206675 -0.00061498 0.707111 0 -0.707102 0.707111 0 -0.707102 0 0 -1 0 0 -1 -1 5.3859e-05 0 -1 0 -2.76766e-05 -1 5.86451e-06 0 -1 0 7.59644e-06 -1 -2.00352e-05 -3.76345e-06 -1 -1.96594e-05 1.29352e-05 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.707111 0 -0.707102 0.707111 0 -0.707102 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -4.91554e-05 -1 -6.80992e-06 0 -1 0 0.000143723 -1 7.33541e-05 0 -1 -2.46735e-05 -3.10382e-05 -1 8.54272e-06 -3.1561e-05 -1 -0.684858 -0.712678 0.151856 0.684858 0.712678 -0.151856 0 -0.0011094 0.999999 9.55331e-05 0 1 0.000835563 0.000227415 1 -0.00905236 0.012151 0.999885 -0.0186525 0.00211352 0.999824 -0.00712126 0.00406555 0.999966 0.707107 -2.78186e-05 0.707107 0.707083 1.86088e-05 0.70713 1 -0.000890302 0 0.999999 -0.00132724 0.000602158 0.999986 -0.00448996 0.0029427 1 0 0.000104317 0.999974 -0.000155327 0.00718518 1 0.000193521 0.000687585 0.707111 0 0.707102 0.707111 0 0.707102 0 0 1 0 0 1 -1 -6.10528e-05 0 -1 0 3.01488e-05 -1 -1.16712e-05 0 -1 0 -8.48708e-06 -1 2.38277e-05 5.16463e-06 -1 2.38083e-05 -1.8307e-05 0 1 0 -0.000129946 1 -4.17678e-05 0 1 0.000210587 3.93656e-05 1 3.027e-05 0.000174792 1 0 -3.50523e-05 1 -0.000109051 0 1 0 1 0 0 1 0 0 0.707111 0 0.707102 0.707111 0 0.707102 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.15595 0.706483 0.690334 0.15595 -0.706483 -0.690334 0 -1 -4.65966e-05 6.3951e-06 -1 0 0 -1 0.000143885 -6.77505e-05 -1 0 2.37508e-05 -1 -3.00253e-05 -7.97787e-06 -1 -2.98842e-05 0 1 -0.000642281 -0.000120845 1 0 -0.000461609 1 0.000134611 0 1 0.000205629 0.000299404 1 0 0.00106535 0.999999 0.000122123 -0.707107 0.707107 0 -0.707107 0.707107 0 -1 0 -0.000870669 -1 -0.00058404 0 -0.999999 -0.00136976 9.26131e-05 -1 0 0.000304437 -1 0.000180401 0 -1 -0.000141934 0.000148536 -1 -0.000197379 0.000199446 -1 0.000633332 0.000147244 -0.707107 0.707107 0 -0.707107 0.707107 0 0 1 0 0 1 0 1 0 -5.72979e-05 1 2.82498e-05 0 1 0 -3.52993e-05 1 -8.09432e-06 0 1 9.30916e-06 3.03477e-05 1 -3.24909e-05 3.03483e-05 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.707107 0.707107 0 -0.707107 0.707107 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0116521 -0.736537 0.676297 0.0116521 0.736537 -0.676297 0 -1 -4.63089e-05 6.39004e-06 -1 0 0 -1 0.000152928 -7.49242e-05 -1 0 2.59728e-05 -1 -3.39575e-05 -5.87209e-06 -1 -3.41174e-05 0 1 -0.000674537 -0.000200473 1 0 -0.000464793 1 0.000102366 0 1 0.000322866 0.000454126 1 0 0.0010884 0.999999 0.000108438 -0.707107 0.707107 0 -0.707097 0.707117 1.93136e-05 -1 0 -0.000753557 -0.999999 0.000959782 -0.00146991 -0.999982 0.00325896 -0.00498926 -1 5.5006e-05 0 -0.999969 0.00785662 -0.000214823 -1 0.00059284 0.000176397 -0.707107 0.707107 0 -0.707107 0.707107 0 0 1 0 0 1 0 1 0 -5.8047e-05 1 2.91122e-05 0 1 0 3.59755e-05 1 -8.1614e-06 0 1 -4.05479e-06 7.19626e-06 1 1.47976e-05 7.03221e-06 0 0 1 0 0 1 0 0 1 9.30321e-06 4.18645e-05 1 -0.000177879 0 1 3.56815e-05 -0.000111009 1 0 0 1 -1 0 0 -1 0 0 -0.707107 0.707107 0 -0.707107 0.707107 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.132051 -0.687027 -0.714532 0.132051 0.687027 0.714532 -1 0 -4.82323e-05 -1 -6.78287e-06 0 -1 0 0.000161418 -1 7.84965e-05 0 -1 -2.68682e-05 -3.52026e-05 -1 6.56245e-06 -3.51557e-05 1 0 -0.00082932 1 0.000185789 0 1 0.00063719 0.000171887 1 0 0.000299394 1 -0.000402925 0 0.999999 -0.00132599 0.000162073 0.707107 0.707107 0 0.707107 0.707107 0 0 1 -0.000845703 -0.000119497 1 0 -0.00142189 0.999999 0.000233227 0 1 8.99448e-05 5.66085e-05 1 0 0.00066178 1 0.000228766 0.707109 0.707104 0 0.707109 0.707104 0 1 0 0 1 0 0 0 -1 -4.67604e-05 2.25846e-05 -1 0 0 -1 2.46746e-05 -6.36745e-06 -1 0 -2.45394e-06 -1 6.79461e-06 8.85174e-06 -1 6.72222e-06 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0.707109 0.707104 0 0.707109 0.707104 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -5.67372e-05 -1 0 0 -1 -8.04793e-06 9.45957e-05 -1 0 0 -1 4.69177e-05 -1.18458e-05 -1 -1.47857e-05 -1.17833e-05 -1 2.28423e-05 -0.000620594 1 0 0 1 0.000273355 5.87685e-05 1 0.000427729 0.00043684 1 0 0 1 -0.000589563 6.03157e-05 1 -0.000931275 0 0.707107 0.707107 3.04103e-05 0.707122 0.707091 -0.000708964 0 1 -0.00195881 0.00174802 0.999997 -0.0076798 0.00434197 0.999961 0 2.58558e-05 1 -0.000281878 0.0108975 0.999941 0.000184734 0.000589824 1 0 0.707109 0.707104 0 0.707109 0.707104 0 1 0 0 1 0 -5.9493e-05 0 -1 0 3.01974e-05 -1 3.73102e-05 0 -1 0 -8.48324e-06 -1 7.82521e-06 -4.03048e-06 -1 7.90945e-06 1.41765e-05 -1 1 0 0 1 0 0 1 0 0 1 5.23575e-05 -1.1635e-05 1 0 0.000221961 1 -0.000138654 -4.45673e-05 1 0 0 0 0 1 0 0 1 0 0.707109 0.707104 0 0.707109 0.707104 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.738746 -0.652777 0.16774 0.738746 0.652777 -0.16774 -5.9638e-05 0 1 0 -8.51424e-06 1 0.000140612 0 1 0 7.41441e-05 1 -2.74048e-05 -2.41748e-05 1 -2.83398e-05 1.5645e-05 1 0.675273 0.732673 0.0848318 -0.675273 -0.732673 -0.0848317 -0.00075335 0 -1 0 0.000145115 -1 0.000152048 0.000588095 -1 -0.00262131 0.00189324 -0.999995 -6.50863e-05 0.00466825 -0.999989 -0.000853436 0.000146716 -1 5.9011e-06 0.707107 -0.707107 -1.68608e-06 0.707111 -0.707103 -0.000867773 1 0 -1.19335e-05 0.999999 0.00122965 1.42349e-06 1 -2.64903e-05 0 1 -2.7372e-05 0.000231051 1 -0.000223378 0.000195118 1 -0.000653201 0 0.707109 -0.707104 0 0.707109 -0.707104 0 0 -1 0 0 -1 -5.23757e-05 -1 0 0 -1 -2.51744e-05 3.06261e-06 -1 0 0 -1 7.25067e-06 1.55683e-05 -1 -1.73413e-06 1.56458e-05 -1 6.17633e-06 1 0 0 1 -4.62988e-05 1.48817e-05 1 0 -7.42791e-05 1 5.6642e-06 -4.88851e-05 1 0.000225637 0 1 -4.51291e-05 0.000140401 1 0 0 0 1 0 0 1 0 0 0.707109 -0.707104 0 0.707109 -0.707104 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.745276 -0.190341 -0.639011 -0.745276 0.190341 0.639011 -5.00669e-05 1 0 0 1 6.99378e-06 0.000142208 1 0 0 1 -6.89729e-05 -3.08604e-05 1 2.46285e-05 -3.00291e-05 1 -9.99554e-06 -0.659005 -0.124187 0.741815 0.659005 0.124187 -0.741815 -0.000605734 -1 0 0 -1 -0.000145268 0.000106068 -1 -0.000448642 0.00818974 -0.999954 0.00504673 0.000560102 -0.999907 0.013614 0.0022682 -0.99999 0.00386445 -1.24331e-05 -0.707107 -0.707107 0 -0.707113 -0.7071 -0.000408956 0 -1 0 0.000291121 -1 5.89446e-05 0.000650998 -1 0.000190753 0 -1 0 -0.000119596 -1 7.02297e-05 -0.000295742 -1 0 -0.707109 -0.707104 0 -0.707109 -0.707104 0 -1 0 0 -1 0 -6.13348e-05 0 1 0 -2.99604e-05 1 1.18854e-05 0 1 0 8.50214e-06 1 1.57686e-05 -5.58319e-07 1 1.57404e-05 1.91031e-06 1 1 0 0 1 2.79834e-05 8.70582e-05 1 -0.000140568 0 1 7.2265e-06 -3.25191e-05 1 0 0 1 0 0 1 0 0 0 0 -1 0 0 -1 0 -0.707109 -0.707104 0 -0.707109 -0.707104 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -6.00789e-05 0 -1 0 8.47537e-06 -1 0.000179788 -1.19221e-05 -1 -7.83917e-06 1.29428e-05 -1 -7.0126e-06 -9.91206e-05 -1 2.14583e-05 -4.1119e-05 -1 -0.00080304 0 1 0 -0.000129952 1 0.000200446 -0.000651636 1 0.000215301 0 1 0 0.000293477 1 0.000182135 0.00136399 0.999999 0 -0.707107 0.707107 0 -0.707107 0.707107 -0.000492603 -1 0 0 -1 4.87346e-05 0.000167953 -1 -0.000915774 -3.56494e-05 -1 0 0 -1 -2.2158e-05 0.000160256 -1 0.000396275 0 -0.707109 0.707104 0 -0.707109 0.707104 0 0 1 0 0 1 -5.94181e-05 1 0 0 1 2.84229e-05 6.66257e-05 1 0 0 1 -8.08021e-06 -2.67198e-06 1 -9.62327e-06 -2.64521e-06 1 3.37963e-05 1 6.11788e-05 -6.11784e-05 1 0 -4.15134e-05 1 -6.45754e-06 -2.90588e-05 1 0 0 1 0 0 1 0 0 1 0 0 4.73121e-06 -1 0 0 -1 -2.49034e-05 0 -0.707109 0.707104 0 -0.707109 0.707104 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 4.90136e-05 -1 6.78686e-06 0 -1 0 -0.000191821 -1 -8.94503e-05 0 -1 3.12163e-05 4.26207e-05 -1 -3.28745e-06 4.23428e-05 0.999999 0 0.00129557 1 3.82965e-06 0 0.999999 -0.00110612 -0.000422908 1 0 6.51338e-06 1 -8.5935e-06 0 0.999997 0.00222285 -0.000378893 0.707107 -0.707107 0 0.707107 -0.707107 0 0 -0.999999 0.00109981 -0.00042205 -1 0 -0.0018279 -0.999998 -0.00023714 0 -1 -0.000276729 0.000179285 -1 0 0.000960385 -1 -0.000310165 0.707109 -0.707104 0 0.707109 -0.707104 0 1 0 0 1 0 0 0 1 6.29649e-05 3.29614e-05 1 0 0 1 1.45849e-05 -9.08085e-06 1 0 6.04433e-06 1 -2.67992e-05 -2.08091e-05 1 -2.62474e-05 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0.707109 -0.707104 0 0.707109 -0.707104 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 3.52879e-05 -1 5.07209e-06 0 -1 0 -0.000193966 -1 -9.38664e-05 0 -1 3.29612e-05 4.93306e-05 -1 7.21614e-06 4.91661e-05 0.999998 0 0.00208764 1 -7.7096e-06 0 0.999998 -0.00183795 -0.000697233 1 0 -1.26711e-05 1 1.6939e-05 0 0.999993 0.00374547 -0.000646475 0.707107 -0.707107 0 0.707107 -0.707107 0 0 -0.999999 0.00102432 -0.000455735 -1 0 -0.00172906 -0.999999 -0.000226302 0 -1 -0.000328448 0.000211322 -1 0 0.000796195 -1 -0.00022417 0.707109 -0.707104 0 0.707109 -0.707104 0 1 0 0 1 0 0 0 1 6.29814e-05 3.18058e-05 1 0 0 1 1.04955e-05 -8.89965e-06 1 0 4.90794e-06 1 -2.42384e-05 -1.75581e-05 1 -2.42472e-05 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0.707109 -0.707104 0 0.707109 -0.707104 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\n                    <technique_common>\n                        <accessor count=\"24999\" source=\"#shape0-lib-normals-array\" stride=\"3\">\n                            <param name=\"X\" type=\"float\"/>\n                            <param name=\"Y\" type=\"float\"/>\n                            <param name=\"Z\" type=\"float\"/>\n                        </accessor>\n                    </technique_common>\n                </source>\n                <vertices id=\"shape0-lib-vertices\">\n                    <input semantic=\"POSITION\" source=\"#shape0-lib-positions\"/>\n                </vertices>\n                <triangles count=\"24999\">\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#shape0-lib-vertices\"/>\n                    <input offset=\"1\" semantic=\"NORMAL\" source=\"#shape0-lib-normals\"/>\n                    <p>2 0 0 0 1 0 1 1 0 1 15 1 4 2 0 2 2 2 5 3 13 3 4 3 1 4 3 4 5 4 5 5 3 5 13 5 4 6 13 6 0 6 0 7 13 7 15 7 15 8 13 8 3 8 15 9 3 9 1 9 1 10 5 10 8 10 8 11 5 11 6 11 2 12 1 12 9 12 9 13 1 13 8 13 4 14 2 14 12 14 12 15 2 15 9 15 5 16 4 16 6 16 6 17 4 17 12 17 6 18 7 18 8 18 12 19 11 19 6 19 6 20 11 20 10 20 9 21 11 21 12 21 8 22 14 22 9 22 8 23 7 23 14 23 6 24 10 24 7 24 7 25 10 25 14 25 14 26 10 26 11 26 14 27 11 27 9 27 21 28 16 28 20 28 20 29 16 29 30 29 19 30 16 30 21 30 17 31 18 31 19 31 20 32 28 32 17 32 17 33 28 33 18 33 19 34 18 34 16 34 16 35 18 35 30 35 30 36 18 36 28 36 30 37 28 37 20 37 20 38 17 38 23 38 23 39 17 39 22 39 21 40 20 40 24 40 24 41 20 41 23 41 19 42 21 42 25 42 25 43 21 43 24 43 17 44 19 44 22 44 22 45 19 45 25 45 22 46 31 46 23 46 25 47 26 47 22 47 22 48 26 48 27 48 24 49 26 49 25 49 23 50 29 50 24 50 23 51 31 51 29 51 22 52 27 52 31 52 31 53 27 53 29 53 29 54 27 54 26 54 29 55 26 55 24 55 48 56 56 56 32 56 46 57 56 57 48 57 33 58 34 58 46 58 32 59 34 59 33 59 34 60 56 60 46 60 56 61 34 61 32 61 34 62 37 62 35 62 37 63 34 63 35 63 38 64 57 64 39 64 36 65 37 65 38 65 38 66 37 66 57 66 35 67 37 67 36 67 57 68 37 68 35 68 57 69 35 69 39 69 39 70 35 70 42 70 42 71 35 71 40 71 42 72 53 72 43 72 40 73 54 73 42 73 42 74 54 74 53 74 41 75 54 75 40 75 43 76 54 76 41 76 53 77 54 77 43 77 43 78 41 78 45 78 45 79 41 79 49 79 44 80 45 80 47 80 47 81 45 81 49 81 44 82 52 82 48 82 47 83 52 83 44 83 46 84 55 84 47 84 48 85 52 85 46 85 46 86 52 86 55 86 47 87 55 87 52 87 50 88 33 88 36 88 36 89 33 89 35 89 35 90 33 90 46 90 35 91 46 91 40 91 40 92 46 92 47 92 40 93 47 93 41 93 41 94 47 94 49 94 32 95 33 95 51 95 51 96 33 96 50 96 51 97 50 97 38 97 38 98 50 98 36 98 51 99 38 99 32 99 32 100 38 100 39 100 32 101 39 101 48 101 48 102 39 102 42 102 48 103 42 103 44 103 44 104 42 104 43 104 44 105 43 105 45 105 76 106 82 106 75 106 58 107 82 107 76 107 69 108 59 108 58 108 75 109 59 109 69 109 59 110 82 110 58 110 82 111 59 111 75 111 59 112 60 112 62 112 59 113 62 113 60 113 73 114 83 114 77 114 61 115 60 115 73 115 73 116 60 116 83 116 62 117 60 117 61 117 83 118 60 118 62 118 83 119 62 119 77 119 77 120 62 120 78 120 78 121 62 121 70 121 78 122 80 122 63 122 78 123 70 123 80 123 65 124 64 124 70 124 63 125 64 125 65 125 80 126 70 126 64 126 80 127 64 127 63 127 63 128 65 128 66 128 66 129 65 129 71 129 67 130 66 130 68 130 68 131 66 131 71 131 67 132 79 132 76 132 68 133 79 133 67 133 58 134 81 134 68 134 76 135 79 135 58 135 58 136 79 136 81 136 68 137 81 137 79 137 74 138 69 138 61 138 61 139 69 139 62 139 62 140 69 140 58 140 62 141 58 141 70 141 70 142 58 142 68 142 70 143 68 143 65 143 65 144 68 144 71 144 75 145 69 145 72 145 72 146 69 146 74 146 72 147 74 147 73 147 73 148 74 148 61 148 72 149 73 149 75 149 75 150 73 150 77 150 75 151 77 151 76 151 76 152 77 152 78 152 76 153 78 153 67 153 67 154 78 154 63 154 67 155 63 155 66 155 81 156 70 156 64 156 70 157 81 157 64 157 101 158 86 158 85 158 98 159 86 159 101 159 84 160 87 160 98 160 85 161 87 161 84 161 87 162 86 162 98 162 86 163 87 163 85 163 87 164 89 164 90 164 87 165 90 165 89 165 92 166 111 166 93 166 88 167 89 167 92 167 92 168 89 168 111 168 91 169 89 169 88 169 93 170 90 170 91 170 111 171 89 171 90 171 111 172 90 172 93 172 91 173 90 173 89 173 93 174 91 174 104 174 104 175 91 175 94 175 104 176 107 176 105 176 94 177 109 177 104 177 104 178 109 178 107 178 95 179 110 179 94 179 105 180 110 180 95 180 94 181 110 181 109 181 107 182 109 182 110 182 107 183 110 183 105 183 105 184 95 184 106 184 106 185 95 185 96 185 97 186 106 186 100 186 100 187 106 187 96 187 97 188 99 188 101 188 100 189 99 189 97 189 98 190 108 190 100 190 101 191 99 191 98 191 98 192 99 192 108 192 100 193 108 193 99 193 103 194 84 194 88 194 88 195 84 195 91 195 91 196 84 196 98 196 91 197 98 197 94 197 94 198 98 198 100 198 94 199 100 199 95 199 95 200 100 200 96 200 85 201 84 201 102 201 102 202 84 202 103 202 102 203 103 203 92 203 92 204 103 204 88 204 102 205 92 205 85 205 85 206 92 206 93 206 85 207 93 207 101 207 101 208 93 208 104 208 101 209 104 209 97 209 97 210 104 210 105 210 97 211 105 211 106 211 108 212 110 212 109 212 108 213 109 213 110 213 128 214 136 214 114 214 113 215 136 215 128 215 112 216 115 216 113 216 114 217 115 217 112 217 115 218 136 218 113 218 136 219 115 219 114 219 131 220 137 220 132 220 118 221 116 221 131 221 131 222 116 222 137 222 117 223 116 223 118 223 132 224 116 224 117 224 137 225 116 225 132 225 132 226 117 226 122 226 122 227 117 227 119 227 122 228 120 228 123 228 119 229 134 229 122 229 122 230 134 230 120 230 121 231 134 231 119 231 123 232 134 232 121 232 120 233 134 233 123 233 123 234 121 234 133 234 133 235 121 235 124 235 125 236 133 236 127 236 127 237 133 237 124 237 125 238 135 238 128 238 127 239 135 239 125 239 113 240 126 240 127 240 128 241 135 241 113 241 113 242 135 242 126 242 127 243 126 243 135 243 130 244 112 244 118 244 118 245 112 245 117 245 117 246 112 246 113 246 117 247 113 247 119 247 119 248 113 248 127 248 119 249 127 249 121 249 121 250 127 250 124 250 114 251 112 251 129 251 129 252 112 252 130 252 129 253 130 253 131 253 131 254 130 254 118 254 129 255 131 255 114 255 114 256 131 256 132 256 114 257 132 257 128 257 128 258 132 258 122 258 128 259 122 259 125 259 125 260 122 260 123 260 125 261 123 261 133 261 138 262 162 262 140 262 139 263 162 263 138 263 156 264 141 264 139 264 140 265 141 265 156 265 141 266 162 266 139 266 162 267 141 267 140 267 141 268 144 268 145 268 141 269 145 269 144 269 146 270 163 270 142 270 143 271 144 271 146 271 146 272 144 272 163 272 145 273 144 273 143 273 163 274 144 274 145 274 163 275 145 275 142 275 142 276 145 276 149 276 149 277 145 277 148 277 149 278 159 278 158 278 148 279 161 279 149 279 149 280 161 280 159 280 158 281 161 281 147 281 159 282 161 282 158 282 147 283 161 283 148 283 158 284 147 284 152 284 152 285 147 285 150 285 151 286 152 286 153 286 153 287 152 287 150 287 151 288 154 288 138 288 153 289 154 289 151 289 139 290 160 290 153 290 138 291 154 291 139 291 139 292 154 292 160 292 153 293 160 293 154 293 155 294 156 294 143 294 143 295 156 295 145 295 145 296 156 296 139 296 145 297 139 297 148 297 148 298 139 298 153 298 148 299 153 299 147 299 147 300 153 300 150 300 140 301 156 301 157 301 157 302 156 302 155 302 157 303 155 303 146 303 146 304 155 304 143 304 157 305 146 305 140 305 140 306 146 306 142 306 140 307 142 307 138 307 138 308 142 308 149 308 138 309 149 309 151 309 151 310 149 310 158 310 151 311 158 311 152 311 160 312 148 312 161 312 148 313 160 313 161 313 177 314 188 314 164 314 175 315 188 315 177 315 179 316 189 316 175 316 164 317 189 317 179 317 189 318 188 318 175 318 188 319 189 319 164 319 167 320 187 320 168 320 166 321 165 321 167 321 167 322 165 322 187 322 169 323 165 323 166 323 168 324 165 324 169 324 187 325 165 325 168 325 168 326 169 326 170 326 170 327 169 327 180 327 170 328 184 328 171 328 180 329 186 329 170 329 170 330 186 330 184 330 181 331 186 331 180 331 171 332 186 332 181 332 184 333 186 333 171 333 171 334 181 334 183 334 183 335 181 335 172 335 173 336 183 336 174 336 174 337 183 337 172 337 173 338 176 338 177 338 174 339 176 339 173 339 175 340 185 340 174 340 177 341 176 341 175 341 175 342 176 342 185 342 174 343 185 343 176 343 178 344 179 344 166 344 166 345 179 345 169 345 169 346 179 346 175 346 169 347 175 347 180 347 180 348 175 348 174 348 180 349 174 349 181 349 181 350 174 350 172 350 164 351 179 351 182 351 182 352 179 352 178 352 182 353 178 353 167 353 167 354 178 354 166 354 182 355 167 355 164 355 164 356 167 356 168 356 164 357 168 357 177 357 177 358 168 358 170 358 177 359 170 359 173 359 173 360 170 360 171 360 173 361 171 361 183 361 192 362 214 362 190 362 191 363 214 363 192 363 206 364 193 364 191 364 190 365 193 365 206 365 193 366 214 366 191 366 214 367 193 367 190 367 194 368 215 368 198 368 196 369 197 369 194 369 194 370 197 370 215 370 195 371 197 371 196 371 198 372 197 372 195 372 215 373 197 373 198 373 198 374 195 374 199 374 199 375 195 375 201 375 199 376 210 376 202 376 199 377 201 377 210 377 200 378 212 378 201 378 202 379 212 379 200 379 210 380 201 380 212 380 210 381 212 381 202 381 202 382 200 382 209 382 209 383 200 383 205 383 203 384 209 384 204 384 204 385 209 385 205 385 203 386 213 386 192 386 204 387 213 387 203 387 191 388 211 388 204 388 192 389 213 389 191 389 191 390 213 390 211 390 204 391 211 391 213 391 208 392 206 392 196 392 196 393 206 393 195 393 195 394 206 394 191 394 195 395 191 395 201 395 201 396 191 396 204 396 201 397 204 397 200 397 200 398 204 398 205 398 190 399 206 399 207 399 207 400 206 400 208 400 207 401 208 401 194 401 194 402 208 402 196 402 207 403 194 403 190 403 190 404 194 404 198 404 190 405 198 405 192 405 192 406 198 406 199 406 192 407 199 407 203 407 203 408 199 408 202 408 203 409 202 409 209 409 211 410 212 410 201 410 211 411 201 411 212 411 230 412 239 412 216 412 231 413 239 413 230 413 217 414 241 414 231 414 216 415 241 415 217 415 241 416 239 416 231 416 239 417 241 417 216 417 241 418 219 418 222 418 241 419 222 419 219 419 220 420 240 420 221 420 218 421 219 421 220 421 220 422 219 422 240 422 222 423 219 423 218 423 240 424 219 424 222 424 240 425 222 425 221 425 221 426 222 426 225 426 225 427 222 427 223 427 225 428 235 428 234 428 223 429 237 429 225 429 225 430 237 430 235 430 224 431 237 431 223 431 234 432 237 432 224 432 235 433 237 433 234 433 234 434 224 434 227 434 227 435 224 435 226 435 229 436 227 436 228 436 228 437 227 437 226 437 229 438 238 438 230 438 228 439 238 439 229 439 231 440 236 440 228 440 230 441 238 441 231 441 231 442 238 442 236 442 228 443 236 443 238 443 232 444 217 444 218 444 218 445 217 445 222 445 222 446 217 446 231 446 222 447 231 447 223 447 223 448 231 448 228 448 223 449 228 449 224 449 224 450 228 450 226 450 216 451 217 451 233 451 233 452 217 452 232 452 233 453 232 453 220 453 220 454 232 454 218 454 233 455 220 455 216 455 216 456 220 456 221 456 216 457 221 457 230 457 230 458 221 458 225 458 230 459 225 459 229 459 229 460 225 460 234 460 229 461 234 461 227 461 242 462 266 462 244 462 245 463 266 463 242 463 243 464 246 464 245 464 244 465 246 465 243 465 246 466 266 466 245 466 266 467 246 467 244 467 246 468 248 468 250 468 248 469 246 469 250 469 247 470 267 470 249 470 258 471 248 471 247 471 247 472 248 472 267 472 250 473 248 473 258 473 267 474 248 474 250 474 267 475 250 475 249 475 249 476 250 476 253 476 253 477 250 477 252 477 253 478 262 478 251 478 252 479 264 479 253 479 253 480 264 480 262 480 254 481 264 481 252 481 251 482 264 482 254 482 262 483 264 483 251 483 251 484 254 484 261 484 261 485 254 485 255 485 257 486 261 486 256 486 256 487 261 487 255 487 257 488 265 488 242 488 256 489 265 489 257 489 245 490 263 490 256 490 242 491 265 491 245 491 245 492 265 492 263 492 256 493 263 493 265 493 260 494 243 494 258 494 258 495 243 495 250 495 250 496 243 496 245 496 250 497 245 497 252 497 252 498 245 498 256 498 252 499 256 499 254 499 254 500 256 500 255 500 244 501 243 501 259 501 259 502 243 502 260 502 259 503 260 503 247 503 247 504 260 504 258 504 259 505 247 505 244 505 244 506 247 506 249 506 244 507 249 507 242 507 242 508 249 508 253 508 242 509 253 509 257 509 257 510 253 510 251 510 257 511 251 511 261 511 286 512 269 512 271 512 283 513 269 513 286 513 268 514 270 514 283 514 271 515 270 515 268 515 270 516 269 516 283 516 269 517 270 517 271 517 270 518 275 518 273 518 275 519 270 519 273 519 272 520 293 520 276 520 274 521 275 521 272 521 272 522 275 522 293 522 273 523 275 523 274 523 293 524 275 524 273 524 293 525 273 525 276 525 276 526 273 526 279 526 279 527 273 527 277 527 279 528 290 528 280 528 277 529 292 529 279 529 279 530 292 530 290 530 278 531 292 531 277 531 280 532 292 532 278 532 290 533 292 533 280 533 280 534 278 534 281 534 281 535 278 535 282 535 289 536 281 536 284 536 284 537 281 537 282 537 289 538 285 538 286 538 284 539 285 539 289 539 283 540 291 540 284 540 286 541 285 541 283 541 283 542 285 542 291 542 284 543 291 543 285 543 287 544 268 544 274 544 274 545 268 545 273 545 273 546 268 546 283 546 273 547 283 547 277 547 277 548 283 548 284 548 277 549 284 549 278 549 278 550 284 550 282 550 271 551 268 551 288 551 288 552 268 552 287 552 288 553 287 553 272 553 272 554 287 554 274 554 288 555 272 555 271 555 271 556 272 556 276 556 271 557 276 557 286 557 286 558 276 558 279 558 286 559 279 559 289 559 289 560 279 560 280 560 289 561 280 561 281 561 312 562 295 562 294 562 304 563 295 563 312 563 307 564 296 564 304 564 294 565 296 565 307 565 296 566 295 566 304 566 295 567 296 567 294 567 296 568 297 568 308 568 296 569 308 569 297 569 299 570 319 570 300 570 298 571 297 571 299 571 299 572 297 572 319 572 308 573 297 573 298 573 319 574 297 574 308 574 319 575 308 575 300 575 300 576 308 576 313 576 313 577 308 577 309 577 313 578 315 578 301 578 309 579 317 579 313 579 313 580 317 580 315 580 302 581 317 581 309 581 301 582 317 582 302 582 315 583 317 583 301 583 301 584 302 584 314 584 314 585 302 585 303 585 306 586 314 586 305 586 305 587 314 587 303 587 306 588 318 588 312 588 305 589 318 589 306 589 304 590 316 590 305 590 312 591 318 591 304 591 304 592 318 592 316 592 305 593 316 593 318 593 311 594 307 594 298 594 298 595 307 595 308 595 308 596 307 596 304 596 308 597 304 597 309 597 309 598 304 598 305 598 309 599 305 599 302 599 302 600 305 600 303 600 294 601 307 601 310 601 310 602 307 602 311 602 310 603 311 603 299 603 299 604 311 604 298 604 310 605 299 605 294 605 294 606 299 606 300 606 294 607 300 607 312 607 312 608 300 608 313 608 312 609 313 609 306 609 306 610 313 610 301 610 306 611 301 611 314 611 335 612 322 612 321 612 338 613 322 613 335 613 320 614 323 614 338 614 321 615 323 615 320 615 323 616 322 616 338 616 322 617 323 617 321 617 323 618 324 618 326 618 324 619 323 619 326 619 328 620 346 620 329 620 325 621 326 621 328 621 328 622 326 622 346 622 327 623 324 623 325 623 329 624 326 624 327 624 327 625 326 625 324 625 324 626 326 626 325 626 346 627 326 627 329 627 329 628 327 628 330 628 330 629 327 629 331 629 330 630 343 630 333 630 331 631 344 631 330 631 330 632 344 632 343 632 332 633 344 633 331 633 333 634 344 634 332 634 343 635 344 635 333 635 333 636 332 636 342 636 342 637 332 637 339 637 334 638 342 638 336 638 336 639 342 639 339 639 334 640 345 640 335 640 336 641 345 641 334 641 338 642 337 642 336 642 335 643 345 643 338 643 338 644 345 644 337 644 336 645 337 645 345 645 341 646 320 646 325 646 325 647 320 647 327 647 327 648 320 648 338 648 327 649 338 649 331 649 331 650 338 650 336 650 331 651 336 651 332 651 332 652 336 652 339 652 321 653 320 653 340 653 340 654 320 654 341 654 340 655 341 655 328 655 328 656 341 656 325 656 340 657 328 657 321 657 321 658 328 658 329 658 321 659 329 659 335 659 335 660 329 660 330 660 335 661 330 661 334 661 334 662 330 662 333 662 334 663 333 663 342 663 347 664 349 664 348 664 348 665 349 665 387 665 348 666 387 666 418 666 418 667 387 667 350 667 418 668 350 668 419 668 419 669 350 669 408 669 443 670 419 670 408 670 443 671 408 671 351 671 443 672 351 672 352 672 352 673 351 673 407 673 352 674 407 674 353 674 353 675 407 675 354 675 353 676 354 676 355 676 355 677 354 677 389 677 355 678 389 678 356 678 356 679 389 679 388 679 356 680 388 680 358 680 358 681 388 681 357 681 358 682 357 682 466 682 358 683 466 683 421 683 421 684 466 684 403 684 421 685 403 685 471 685 471 686 403 686 470 686 471 687 470 687 359 687 359 688 470 688 360 688 360 689 470 689 362 689 360 690 362 690 361 690 361 691 362 691 411 691 361 692 411 692 363 692 363 693 411 693 364 693 363 694 364 694 365 694 365 695 364 695 406 695 365 696 406 696 367 696 367 697 406 697 449 697 366 698 423 698 449 698 449 699 423 699 367 699 423 700 366 700 368 700 368 701 366 701 405 701 368 702 405 702 424 702 424 703 405 703 369 703 424 704 369 704 425 704 425 705 369 705 404 705 425 706 404 706 446 706 446 707 404 707 370 707 446 708 370 708 422 708 422 709 370 709 402 709 422 710 402 710 401 710 422 711 401 711 371 711 371 712 476 712 442 712 442 713 476 713 396 713 442 714 396 714 429 714 429 715 396 715 417 715 429 716 417 716 426 716 426 717 417 717 400 717 426 718 400 718 373 718 373 719 400 719 372 719 373 720 372 720 374 720 374 721 372 721 412 721 374 722 412 722 427 722 375 723 427 723 413 723 413 724 427 724 412 724 375 725 413 725 428 725 428 726 413 726 399 726 428 727 399 727 376 727 376 728 399 728 377 728 376 729 377 729 444 729 444 730 377 730 398 730 444 731 398 731 416 731 416 732 398 732 397 732 416 733 397 733 477 733 477 734 397 734 395 734 477 735 395 735 479 735 477 736 479 736 431 736 394 737 431 737 479 737 431 738 394 738 481 738 481 739 394 739 483 739 481 740 483 740 433 740 433 741 483 741 434 741 434 742 483 742 378 742 434 743 378 743 379 743 379 744 378 744 409 744 379 745 409 745 435 745 435 746 409 746 393 746 435 747 393 747 436 747 436 748 393 748 380 748 436 749 380 749 382 749 382 750 380 750 392 750 382 751 392 751 381 751 381 752 383 752 382 752 383 753 381 753 384 753 383 754 384 754 437 754 437 755 384 755 391 755 437 756 391 756 439 756 439 757 391 757 410 757 439 758 410 758 438 758 438 759 410 759 390 759 438 760 390 760 432 760 432 761 390 761 385 761 432 762 385 762 440 762 440 763 385 763 459 763 440 764 459 764 441 764 441 765 459 765 464 765 441 766 464 766 386 766 441 767 386 767 420 767 420 768 386 768 457 768 420 769 457 769 347 769 347 770 457 770 349 770 387 771 349 771 350 771 350 772 349 772 456 772 350 773 456 773 408 773 386 774 357 774 457 774 457 775 357 775 388 775 457 776 388 776 389 776 457 777 389 777 458 777 458 778 389 778 407 778 458 779 407 779 351 779 385 780 483 780 459 780 459 781 483 781 460 781 390 782 483 782 385 782 391 783 384 783 410 783 384 784 381 784 410 784 410 785 381 785 452 785 381 786 392 786 452 786 380 787 452 787 392 787 393 788 409 788 380 788 380 789 409 789 452 789 378 790 390 790 409 790 409 791 390 791 452 791 483 792 390 792 378 792 394 793 482 793 483 793 482 794 394 794 480 794 482 795 480 795 430 795 394 796 479 796 480 796 396 797 479 797 395 797 473 798 476 798 401 798 476 799 473 799 474 799 396 800 395 800 417 800 417 801 395 801 397 801 417 802 397 802 398 802 417 803 398 803 414 803 414 804 398 804 399 804 414 805 399 805 413 805 398 806 377 806 399 806 413 807 415 807 414 807 415 808 413 808 412 808 372 809 400 809 412 809 412 810 400 810 415 810 401 811 476 811 371 811 401 812 402 812 469 812 469 813 402 813 470 813 469 814 470 814 403 814 469 815 403 815 467 815 402 816 370 816 470 816 470 817 370 817 362 817 362 818 370 818 445 818 404 819 450 819 370 819 369 820 405 820 404 820 404 821 405 821 450 821 405 822 366 822 450 822 450 823 366 823 449 823 364 824 411 824 406 824 406 825 411 825 449 825 362 826 445 826 411 826 386 827 466 827 357 827 389 828 354 828 407 828 456 829 351 829 408 829 459 830 460 830 463 830 459 831 463 831 464 831 403 832 466 832 467 832 349 833 457 833 456 833 351 834 456 834 458 834 370 835 450 835 445 835 445 836 449 836 411 836 417 837 415 837 400 837 417 838 416 838 415 838 415 839 375 839 414 839 414 840 416 840 417 840 414 841 375 841 416 841 415 842 416 842 375 842 348 843 418 843 347 843 347 844 418 844 455 844 418 845 419 845 455 845 455 846 419 846 443 846 352 847 454 847 443 847 353 848 355 848 352 848 352 849 355 849 454 849 356 850 420 850 355 850 355 851 420 851 454 851 358 852 420 852 356 852 358 853 465 853 462 853 421 854 465 854 358 854 465 855 421 855 468 855 465 856 468 856 467 856 359 857 422 857 472 857 472 858 422 858 371 858 472 859 371 859 474 859 422 860 359 860 446 860 446 861 359 861 360 861 446 862 360 862 361 862 446 863 361 863 448 863 448 864 361 864 365 864 448 865 365 865 367 865 361 866 363 866 365 866 367 867 447 867 448 867 367 868 423 868 447 868 368 869 447 869 423 869 424 870 425 870 368 870 368 871 425 871 447 871 442 872 475 872 371 872 442 873 477 873 475 873 429 874 477 874 442 874 426 875 416 875 429 875 373 876 374 876 426 876 426 877 374 877 375 877 374 878 427 878 375 878 376 879 444 879 428 879 428 880 444 880 375 880 477 881 429 881 416 881 431 882 478 882 477 882 433 883 432 883 440 883 433 884 440 884 460 884 460 885 440 885 461 885 432 886 433 886 438 886 438 887 433 887 434 887 434 888 379 888 453 888 453 889 379 889 436 889 453 890 436 890 382 890 379 891 435 891 436 891 453 892 382 892 383 892 437 893 439 893 383 893 383 894 439 894 453 894 438 895 434 895 439 895 439 896 434 896 451 896 462 897 440 897 441 897 462 898 441 898 358 898 441 899 420 899 358 899 431 900 481 900 430 900 431 901 430 901 478 901 371 902 475 902 474 902 421 903 471 903 468 903 440 904 462 904 461 904 461 905 462 905 463 905 347 906 455 906 420 906 454 907 455 907 443 907 439 908 451 908 453 908 446 909 447 909 425 909 416 910 375 910 444 910 375 911 416 911 426 911 445 912 446 912 448 912 445 913 450 913 446 913 447 914 446 914 450 914 448 915 449 915 445 915 449 916 448 916 447 916 447 917 450 917 449 917 410 918 451 918 390 918 410 919 453 919 451 919 453 920 452 920 434 920 453 921 410 921 452 921 451 922 434 922 390 922 390 923 434 923 452 923 458 924 456 924 454 924 456 925 455 925 454 925 456 926 457 926 455 926 454 927 457 927 458 927 457 928 454 928 420 928 457 929 420 929 455 929 463 930 460 930 461 930 463 931 462 931 464 931 464 932 462 932 386 932 462 933 465 933 386 933 465 934 466 934 386 934 466 935 465 935 467 935 467 936 468 936 469 936 468 937 471 937 469 937 471 938 359 938 469 938 469 939 359 939 401 939 472 940 401 940 359 940 472 941 473 941 401 941 474 942 473 942 472 942 475 943 476 943 474 943 477 944 476 944 475 944 396 945 477 945 478 945 396 946 476 946 477 946 478 947 479 947 396 947 478 948 430 948 479 948 479 949 430 949 480 949 482 950 430 950 481 950 481 951 433 951 482 951 483 952 482 952 433 952 433 953 460 953 483 953 572 954 522 954 484 954 484 955 522 955 520 955 484 956 520 956 553 956 553 957 520 957 521 957 553 958 521 958 485 958 485 959 521 959 585 959 585 960 555 960 485 960 555 961 585 961 544 961 555 962 544 962 554 962 554 963 544 963 486 963 554 964 486 964 487 964 487 965 486 965 543 965 487 966 543 966 573 966 573 967 543 967 523 967 573 968 523 968 556 968 556 969 523 969 586 969 556 970 586 970 595 970 595 971 586 971 596 971 595 972 596 972 488 972 488 973 596 973 489 973 488 974 489 974 600 974 600 975 489 975 601 975 600 976 601 976 558 976 558 977 601 977 559 977 559 978 601 978 548 978 559 979 548 979 490 979 490 980 548 980 549 980 490 981 549 981 491 981 491 982 549 982 492 982 491 983 492 983 493 983 493 984 492 984 494 984 493 985 494 985 542 985 560 986 542 986 541 986 560 987 493 987 542 987 560 988 541 988 495 988 495 989 541 989 561 989 561 990 541 990 496 990 561 991 496 991 562 991 562 992 496 992 540 992 562 993 540 993 497 993 497 994 540 994 498 994 497 995 498 995 605 995 605 996 498 996 539 996 605 997 539 997 606 997 605 998 606 998 499 998 499 999 606 999 609 999 499 1000 609 1000 501 1000 501 1001 609 1001 500 1001 501 1002 500 1002 564 1002 564 1003 500 1003 532 1003 564 1004 532 1004 576 1004 576 1005 532 1005 502 1005 576 1006 502 1006 503 1006 503 1007 502 1007 537 1007 503 1008 537 1008 504 1008 504 1009 537 1009 538 1009 504 1010 538 1010 506 1010 506 1011 538 1011 536 1011 505 1012 506 1012 535 1012 535 1013 506 1013 536 1013 505 1014 535 1014 508 1014 508 1015 535 1015 507 1015 508 1016 507 1016 509 1016 509 1017 507 1017 510 1017 509 1018 510 1018 563 1018 563 1019 510 1019 534 1019 563 1020 534 1020 577 1020 577 1021 534 1021 533 1021 577 1022 533 1022 613 1022 613 1023 533 1023 531 1023 613 1024 531 1024 614 1024 613 1025 614 1025 511 1025 511 1026 614 1026 620 1026 620 1027 614 1027 530 1027 620 1028 530 1028 566 1028 566 1029 530 1029 512 1029 512 1030 530 1030 547 1030 512 1031 547 1031 567 1031 567 1032 547 1032 529 1032 567 1033 529 1033 568 1033 568 1034 529 1034 513 1034 568 1035 513 1035 514 1035 514 1036 513 1036 528 1036 514 1037 528 1037 569 1037 569 1038 528 1038 581 1038 515 1039 570 1039 581 1039 569 1040 581 1040 570 1040 570 1041 515 1041 516 1041 516 1042 515 1042 527 1042 516 1043 527 1043 517 1043 517 1044 527 1044 526 1044 517 1045 526 1045 575 1045 575 1046 526 1046 546 1046 575 1047 546 1047 518 1047 518 1048 546 1048 525 1048 518 1049 525 1049 565 1049 565 1050 525 1050 524 1050 565 1051 524 1051 587 1051 565 1052 587 1052 519 1052 519 1053 587 1053 589 1053 519 1054 589 1054 594 1054 594 1055 589 1055 593 1055 594 1056 593 1056 571 1056 571 1057 593 1057 557 1057 557 1058 593 1058 545 1058 557 1059 545 1059 572 1059 572 1060 545 1060 522 1060 520 1061 522 1061 521 1061 521 1062 522 1062 585 1062 545 1063 586 1063 522 1063 593 1064 596 1064 545 1064 545 1065 596 1065 586 1065 586 1066 523 1066 584 1066 584 1067 523 1067 486 1067 584 1068 486 1068 544 1068 589 1069 591 1069 593 1069 524 1070 588 1070 587 1070 525 1071 530 1071 524 1071 524 1072 530 1072 588 1072 546 1073 547 1073 525 1073 526 1074 527 1074 546 1074 546 1075 527 1075 583 1075 527 1076 515 1076 583 1076 583 1077 515 1077 581 1077 513 1078 529 1078 528 1078 528 1079 529 1079 581 1079 530 1080 525 1080 547 1080 530 1081 619 1081 588 1081 614 1082 619 1082 530 1082 615 1083 614 1083 531 1083 615 1084 531 1084 612 1084 612 1085 531 1085 500 1085 612 1086 500 1086 609 1086 610 1087 609 1087 607 1087 500 1088 531 1088 532 1088 532 1089 531 1089 533 1089 532 1090 533 1090 551 1090 551 1091 533 1091 534 1091 551 1092 534 1092 507 1092 551 1093 507 1093 535 1093 534 1094 510 1094 507 1094 551 1095 535 1095 536 1095 538 1096 502 1096 536 1096 537 1097 502 1097 538 1097 532 1098 552 1098 502 1098 609 1099 606 1099 607 1099 606 1100 539 1100 601 1100 606 1101 601 1101 603 1101 603 1102 601 1102 489 1102 539 1103 498 1103 601 1103 601 1104 498 1104 548 1104 548 1105 498 1105 540 1105 496 1106 541 1106 540 1106 540 1107 541 1107 580 1107 580 1108 541 1108 542 1108 580 1109 542 1109 579 1109 494 1110 579 1110 542 1110 492 1111 549 1111 494 1111 494 1112 549 1112 579 1112 548 1113 540 1113 549 1113 549 1114 540 1114 579 1114 523 1115 543 1115 486 1115 584 1116 544 1116 585 1116 589 1117 590 1117 591 1117 593 1118 591 1118 596 1118 603 1119 489 1119 599 1119 614 1120 616 1120 619 1120 586 1121 585 1121 522 1121 547 1122 581 1122 529 1122 546 1123 583 1123 547 1123 532 1124 551 1124 552 1124 502 1125 551 1125 536 1125 564 1126 550 1126 552 1126 502 1127 550 1127 551 1127 550 1128 563 1128 551 1128 502 1129 552 1129 550 1129 552 1130 551 1130 564 1130 564 1131 551 1131 563 1131 484 1132 553 1132 572 1132 572 1133 553 1133 574 1133 553 1134 485 1134 574 1134 485 1135 555 1135 574 1135 554 1136 573 1136 555 1136 555 1137 573 1137 574 1137 487 1138 573 1138 554 1138 556 1139 557 1139 573 1139 595 1140 557 1140 556 1140 488 1141 598 1141 595 1141 598 1142 488 1142 599 1142 599 1143 488 1143 600 1143 602 1144 600 1144 558 1144 602 1145 558 1145 604 1145 604 1146 558 1146 605 1146 604 1147 605 1147 499 1147 604 1148 499 1148 608 1148 605 1149 558 1149 497 1149 497 1150 558 1150 559 1150 559 1151 490 1151 493 1151 490 1152 491 1152 493 1152 560 1153 578 1153 493 1153 495 1154 578 1154 560 1154 561 1155 562 1155 495 1155 495 1156 562 1156 578 1156 501 1157 613 1157 499 1157 499 1158 613 1158 611 1158 564 1159 613 1159 501 1159 503 1160 504 1160 576 1160 576 1161 504 1161 550 1161 504 1162 506 1162 550 1162 550 1163 506 1163 505 1163 508 1164 563 1164 505 1164 509 1165 563 1165 508 1165 613 1166 564 1166 577 1166 511 1167 617 1167 613 1167 620 1168 566 1168 621 1168 621 1169 566 1169 565 1169 621 1170 565 1170 519 1170 621 1171 519 1171 592 1171 565 1172 566 1172 518 1172 518 1173 566 1173 512 1173 512 1174 567 1174 582 1174 582 1175 567 1175 514 1175 582 1176 514 1176 569 1176 567 1177 568 1177 514 1177 569 1178 570 1178 582 1178 517 1179 575 1179 516 1179 516 1180 575 1180 570 1180 591 1181 519 1181 594 1181 591 1182 594 1182 595 1182 595 1183 594 1183 571 1183 571 1184 557 1184 595 1184 511 1185 620 1185 618 1185 511 1186 618 1186 617 1186 519 1187 591 1187 592 1187 574 1188 557 1188 572 1188 575 1189 518 1189 570 1189 497 1190 578 1190 562 1190 493 1191 578 1191 559 1191 505 1192 563 1192 550 1192 550 1193 564 1193 576 1193 564 1194 563 1194 577 1194 540 1195 559 1195 579 1195 559 1196 540 1196 497 1196 497 1197 540 1197 580 1197 578 1198 579 1198 559 1198 580 1199 578 1199 497 1199 578 1200 580 1200 579 1200 512 1201 582 1201 547 1201 570 1202 518 1202 583 1202 582 1203 581 1203 547 1203 581 1204 570 1204 583 1204 570 1205 581 1205 582 1205 583 1206 518 1206 547 1206 512 1207 547 1207 518 1207 557 1208 585 1208 586 1208 584 1209 573 1209 586 1209 557 1210 574 1210 585 1210 584 1211 574 1211 573 1211 584 1212 585 1212 574 1212 557 1213 586 1213 573 1213 588 1214 621 1214 587 1214 587 1215 621 1215 589 1215 621 1216 592 1216 589 1216 589 1217 592 1217 590 1217 590 1218 592 1218 591 1218 595 1219 596 1219 591 1219 595 1220 598 1220 596 1220 597 1221 596 1221 598 1221 597 1222 598 1222 596 1222 596 1223 598 1223 489 1223 598 1224 599 1224 489 1224 599 1225 600 1225 603 1225 603 1226 600 1226 602 1226 602 1227 606 1227 603 1227 602 1228 604 1228 606 1228 604 1229 607 1229 606 1229 608 1230 607 1230 604 1230 608 1231 610 1231 607 1231 610 1232 608 1232 499 1232 610 1233 499 1233 611 1233 610 1234 611 1234 609 1234 609 1235 611 1235 612 1235 613 1236 612 1236 611 1236 612 1237 613 1237 615 1237 615 1238 613 1238 617 1238 615 1239 617 1239 614 1239 614 1240 617 1240 616 1240 618 1241 616 1241 617 1241 616 1242 618 1242 619 1242 619 1243 618 1243 620 1243 620 1244 588 1244 619 1244 620 1245 621 1245 588 1245 664 1246 622 1246 624 1246 624 1247 622 1247 623 1247 624 1248 623 1248 625 1248 625 1249 623 1249 665 1249 625 1250 665 1250 728 1250 728 1251 665 1251 626 1251 728 1252 626 1252 683 1252 683 1253 692 1253 728 1253 692 1254 683 1254 667 1254 692 1255 667 1255 627 1255 627 1256 667 1256 628 1256 627 1257 628 1257 693 1257 693 1258 628 1258 629 1258 693 1259 629 1259 712 1259 712 1260 629 1260 666 1260 712 1261 666 1261 694 1261 694 1262 666 1262 682 1262 694 1263 682 1263 742 1263 694 1264 742 1264 630 1264 630 1265 742 1265 676 1265 630 1266 676 1266 695 1266 695 1267 676 1267 745 1267 695 1268 745 1268 696 1268 696 1269 745 1269 698 1269 698 1270 745 1270 678 1270 698 1271 678 1271 699 1271 699 1272 678 1272 681 1272 699 1273 681 1273 631 1273 631 1274 681 1274 632 1274 631 1275 632 1275 633 1275 633 1276 632 1276 680 1276 633 1277 680 1277 635 1277 635 1278 680 1278 634 1278 635 1279 634 1279 721 1279 721 1280 634 1280 636 1280 721 1281 636 1281 700 1281 700 1282 636 1282 637 1282 700 1283 637 1283 638 1283 638 1284 637 1284 639 1284 638 1285 639 1285 713 1285 713 1286 639 1286 679 1286 713 1287 679 1287 641 1287 641 1288 679 1288 640 1288 641 1289 640 1289 747 1289 747 1290 640 1290 677 1290 747 1291 677 1291 749 1291 747 1292 749 1292 697 1292 697 1293 749 1293 752 1293 697 1294 752 1294 710 1294 710 1295 752 1295 642 1295 710 1296 642 1296 643 1296 643 1297 642 1297 689 1297 643 1298 689 1298 701 1298 701 1299 689 1299 675 1299 701 1300 675 1300 644 1300 644 1301 675 1301 645 1301 644 1302 645 1302 702 1302 702 1303 645 1303 674 1303 702 1304 674 1304 647 1304 715 1305 647 1305 646 1305 647 1306 715 1306 702 1306 715 1307 646 1307 703 1307 703 1308 646 1308 673 1308 703 1309 673 1309 648 1309 648 1310 673 1310 649 1310 648 1311 649 1311 714 1311 714 1312 649 1312 672 1312 714 1313 672 1313 717 1313 717 1314 672 1314 671 1314 717 1315 671 1315 755 1315 755 1316 671 1316 670 1316 755 1317 670 1317 754 1317 755 1318 754 1318 709 1318 709 1319 754 1319 650 1319 709 1320 650 1320 760 1320 760 1321 650 1321 761 1321 760 1322 761 1322 704 1322 704 1323 761 1323 705 1323 705 1324 761 1324 651 1324 705 1325 651 1325 706 1325 706 1326 651 1326 686 1326 706 1327 686 1327 652 1327 652 1328 686 1328 653 1328 652 1329 653 1329 656 1329 656 1330 653 1330 654 1330 656 1331 654 1331 657 1331 657 1332 655 1332 656 1332 657 1333 669 1333 655 1333 655 1334 669 1334 658 1334 658 1335 669 1335 659 1335 658 1336 659 1336 660 1336 660 1337 659 1337 668 1337 660 1338 668 1338 707 1338 707 1339 668 1339 687 1339 707 1340 687 1340 661 1340 661 1341 687 1341 688 1341 661 1342 688 1342 732 1342 732 1343 688 1343 684 1343 732 1344 684 1344 663 1344 732 1345 663 1345 662 1345 662 1346 663 1346 737 1346 737 1347 663 1347 740 1347 737 1348 740 1348 708 1348 708 1349 740 1349 711 1349 711 1350 740 1350 685 1350 711 1351 685 1351 664 1351 664 1352 685 1352 622 1352 623 1353 622 1353 665 1353 665 1354 622 1354 730 1354 665 1355 730 1355 626 1355 622 1356 685 1356 730 1356 740 1357 682 1357 685 1357 685 1358 682 1358 666 1358 685 1359 666 1359 629 1359 685 1360 629 1360 729 1360 729 1361 629 1361 667 1361 729 1362 667 1362 683 1362 663 1363 739 1363 740 1363 684 1364 761 1364 663 1364 688 1365 761 1365 684 1365 687 1366 725 1366 688 1366 668 1367 659 1367 687 1367 687 1368 659 1368 725 1368 659 1369 669 1369 725 1369 725 1370 669 1370 657 1370 654 1371 723 1371 657 1371 653 1372 686 1372 654 1372 654 1373 686 1373 723 1373 651 1374 688 1374 686 1374 686 1375 688 1375 723 1375 761 1376 688 1376 651 1376 650 1377 762 1377 761 1377 762 1378 650 1378 757 1378 762 1379 757 1379 759 1379 757 1380 650 1380 754 1380 756 1381 754 1381 642 1381 642 1382 754 1382 670 1382 752 1383 749 1383 751 1383 642 1384 670 1384 689 1384 689 1385 670 1385 671 1385 689 1386 671 1386 672 1386 689 1387 672 1387 690 1387 690 1388 672 1388 673 1388 690 1389 673 1389 646 1389 672 1390 649 1390 673 1390 674 1391 689 1391 647 1391 647 1392 689 1392 646 1392 645 1393 675 1393 674 1393 674 1394 675 1394 689 1394 749 1395 677 1395 746 1395 746 1396 677 1396 745 1396 746 1397 745 1397 676 1397 746 1398 676 1398 744 1398 677 1399 640 1399 745 1399 745 1400 640 1400 678 1400 639 1401 637 1401 679 1401 679 1402 637 1402 722 1402 637 1403 636 1403 722 1403 722 1404 636 1404 634 1404 680 1405 720 1405 634 1405 632 1406 681 1406 680 1406 680 1407 681 1407 720 1407 678 1408 640 1408 681 1408 681 1409 640 1409 720 1409 744 1410 676 1410 742 1410 741 1411 742 1411 740 1411 740 1412 742 1412 682 1412 629 1413 628 1413 667 1413 730 1414 683 1414 626 1414 739 1415 735 1415 736 1415 663 1416 735 1416 739 1416 751 1417 749 1417 750 1417 730 1418 729 1418 683 1418 723 1419 725 1419 657 1419 679 1420 722 1420 640 1420 720 1421 722 1421 634 1421 716 1422 715 1422 646 1422 646 1423 715 1423 690 1423 715 1424 691 1424 690 1424 646 1425 689 1425 716 1425 691 1426 689 1426 690 1426 689 1427 691 1427 716 1427 624 1428 625 1428 664 1428 664 1429 625 1429 728 1429 664 1430 728 1430 731 1430 692 1431 727 1431 728 1431 627 1432 693 1432 692 1432 692 1433 693 1433 727 1433 712 1434 727 1434 693 1434 694 1435 711 1435 712 1435 712 1436 711 1436 727 1436 630 1437 741 1437 694 1437 741 1438 743 1438 744 1438 747 1439 695 1439 696 1439 748 1440 747 1440 697 1440 748 1441 697 1441 750 1441 747 1442 696 1442 641 1442 641 1443 696 1443 698 1443 641 1444 698 1444 718 1444 718 1445 698 1445 719 1445 719 1446 698 1446 699 1446 719 1447 699 1447 633 1447 719 1448 633 1448 635 1448 699 1449 631 1449 633 1449 700 1450 713 1450 721 1450 638 1451 713 1451 700 1451 641 1452 718 1452 713 1452 697 1453 753 1453 750 1453 710 1454 753 1454 697 1454 643 1455 755 1455 710 1455 710 1456 755 1456 753 1456 701 1457 716 1457 643 1457 644 1458 702 1458 701 1458 701 1459 702 1459 716 1459 716 1460 702 1460 715 1460 648 1461 714 1461 703 1461 703 1462 714 1462 715 1462 717 1463 691 1463 714 1463 755 1464 643 1464 717 1464 717 1465 643 1465 691 1465 755 1466 756 1466 753 1466 709 1467 756 1467 755 1467 756 1468 709 1468 758 1468 760 1469 704 1469 732 1469 760 1470 732 1470 733 1470 733 1471 732 1471 662 1471 733 1472 662 1472 734 1472 732 1473 704 1473 661 1473 661 1474 704 1474 705 1474 661 1475 705 1475 707 1475 705 1476 706 1476 724 1476 724 1477 706 1477 656 1477 706 1478 652 1478 656 1478 655 1479 724 1479 656 1479 724 1480 655 1480 726 1480 658 1481 726 1481 655 1481 660 1482 707 1482 658 1482 658 1483 707 1483 726 1483 662 1484 737 1484 736 1484 738 1485 737 1485 708 1485 708 1486 711 1486 694 1486 664 1487 731 1487 711 1487 709 1488 760 1488 758 1488 760 1489 759 1489 758 1489 630 1490 695 1490 743 1490 630 1491 743 1491 741 1491 694 1492 741 1492 708 1492 662 1493 736 1493 734 1493 711 1494 731 1494 727 1494 635 1495 721 1495 719 1495 691 1496 715 1496 714 1496 643 1497 716 1497 691 1497 722 1498 718 1498 640 1498 640 1499 718 1499 719 1499 640 1500 719 1500 720 1500 722 1501 721 1501 713 1501 722 1502 713 1502 718 1502 720 1503 719 1503 721 1503 720 1504 721 1504 722 1504 723 1505 724 1505 725 1505 724 1506 726 1506 725 1506 724 1507 723 1507 705 1507 725 1508 726 1508 707 1508 707 1509 688 1509 725 1509 688 1510 707 1510 705 1510 688 1511 705 1511 723 1511 728 1512 727 1512 729 1512 731 1513 728 1513 730 1513 730 1514 728 1514 729 1514 727 1515 731 1515 685 1515 685 1516 729 1516 727 1516 685 1517 731 1517 730 1517 733 1518 735 1518 663 1518 733 1519 734 1519 735 1519 736 1520 735 1520 734 1520 736 1521 737 1521 739 1521 739 1522 737 1522 738 1522 738 1523 708 1523 739 1523 739 1524 708 1524 740 1524 708 1525 741 1525 740 1525 741 1526 744 1526 742 1526 743 1527 695 1527 744 1527 744 1528 695 1528 746 1528 747 1529 746 1529 695 1529 749 1530 747 1530 748 1530 749 1531 746 1531 747 1531 748 1532 750 1532 749 1532 751 1533 750 1533 753 1533 752 1534 751 1534 753 1534 753 1535 642 1535 752 1535 642 1536 753 1536 756 1536 754 1537 756 1537 757 1537 756 1538 758 1538 757 1538 759 1539 757 1539 758 1539 759 1540 760 1540 762 1540 733 1541 761 1541 760 1541 762 1542 760 1542 761 1542 733 1543 663 1543 761 1543 853 1544 822 1544 833 1544 833 1545 822 1545 796 1545 833 1546 796 1546 763 1546 763 1547 796 1547 764 1547 763 1548 764 1548 765 1548 765 1549 764 1549 819 1549 819 1550 767 1550 765 1550 767 1551 819 1551 766 1551 767 1552 766 1552 834 1552 834 1553 766 1553 818 1553 834 1554 818 1554 768 1554 768 1555 818 1555 817 1555 768 1556 817 1556 852 1556 852 1557 817 1557 769 1557 852 1558 769 1558 770 1558 770 1559 769 1559 797 1559 770 1560 797 1560 835 1560 835 1561 797 1561 816 1561 835 1562 816 1562 877 1562 884 1563 877 1563 882 1563 884 1564 882 1564 771 1564 771 1565 882 1565 837 1565 837 1566 882 1566 811 1566 837 1567 811 1567 838 1567 838 1568 811 1568 827 1568 838 1569 827 1569 772 1569 772 1570 827 1570 814 1570 772 1571 814 1571 854 1571 854 1572 814 1572 815 1572 854 1573 815 1573 773 1573 773 1574 858 1574 854 1574 858 1575 773 1575 813 1575 858 1576 813 1576 839 1576 839 1577 813 1577 812 1577 839 1578 812 1578 840 1578 840 1579 812 1579 775 1579 840 1580 775 1580 774 1580 774 1581 775 1581 826 1581 774 1582 826 1582 855 1582 855 1583 826 1583 810 1583 855 1584 810 1584 885 1584 885 1585 810 1585 886 1585 885 1586 886 1586 836 1586 836 1587 886 1587 891 1587 836 1588 891 1588 842 1588 842 1589 891 1589 804 1589 842 1590 804 1590 841 1590 841 1591 804 1591 805 1591 841 1592 805 1592 776 1592 776 1593 805 1593 809 1593 776 1594 809 1594 778 1594 778 1595 809 1595 777 1595 778 1596 777 1596 843 1596 843 1597 777 1597 808 1597 843 1598 808 1598 844 1598 844 1599 808 1599 828 1599 844 1600 828 1600 779 1600 780 1601 779 1601 828 1601 779 1602 780 1602 781 1602 781 1603 780 1603 782 1603 781 1604 782 1604 783 1604 783 1605 782 1605 807 1605 783 1606 807 1606 856 1606 856 1607 807 1607 784 1607 856 1608 784 1608 845 1608 845 1609 784 1609 806 1609 845 1610 806 1610 898 1610 898 1611 806 1611 897 1611 898 1612 897 1612 904 1612 897 1613 821 1613 904 1613 904 1614 821 1614 820 1614 904 1615 820 1615 785 1615 785 1616 820 1616 848 1616 848 1617 820 1617 825 1617 848 1618 825 1618 849 1618 849 1619 825 1619 803 1619 849 1620 803 1620 786 1620 786 1621 803 1621 802 1621 786 1622 802 1622 787 1622 787 1623 802 1623 801 1623 787 1624 801 1624 789 1624 788 1625 850 1625 789 1625 801 1626 788 1626 789 1626 850 1627 788 1627 790 1627 790 1628 788 1628 800 1628 790 1629 800 1629 791 1629 791 1630 800 1630 799 1630 791 1631 799 1631 792 1631 792 1632 799 1632 824 1632 792 1633 824 1633 863 1633 863 1634 824 1634 793 1634 863 1635 793 1635 846 1635 846 1636 793 1636 798 1636 846 1637 798 1637 906 1637 846 1638 906 1638 847 1638 847 1639 906 1639 794 1639 847 1640 794 1640 875 1640 875 1641 794 1641 874 1641 875 1642 874 1642 795 1642 795 1643 874 1643 851 1643 851 1644 874 1644 823 1644 851 1645 823 1645 853 1645 853 1646 823 1646 822 1646 796 1647 822 1647 764 1647 764 1648 822 1648 866 1648 764 1649 866 1649 819 1649 823 1650 869 1650 822 1650 822 1651 869 1651 866 1651 874 1652 816 1652 823 1652 823 1653 816 1653 797 1653 823 1654 797 1654 869 1654 869 1655 797 1655 769 1655 869 1656 769 1656 865 1656 865 1657 769 1657 818 1657 865 1658 818 1658 766 1658 794 1659 876 1659 874 1659 794 1660 906 1660 871 1660 793 1661 820 1661 798 1661 798 1662 820 1662 902 1662 824 1663 825 1663 793 1663 799 1664 800 1664 824 1664 824 1665 800 1665 862 1665 800 1666 788 1666 862 1666 862 1667 788 1667 801 1667 802 1668 803 1668 801 1668 801 1669 803 1669 861 1669 803 1670 825 1670 861 1670 820 1671 793 1671 825 1671 821 1672 902 1672 820 1672 821 1673 897 1673 899 1673 897 1674 804 1674 891 1674 897 1675 891 1675 893 1675 892 1676 891 1676 888 1676 892 1677 888 1677 890 1677 804 1678 897 1678 805 1678 805 1679 897 1679 806 1679 805 1680 806 1680 832 1680 832 1681 806 1681 784 1681 832 1682 784 1682 829 1682 829 1683 784 1683 782 1683 829 1684 782 1684 780 1684 784 1685 807 1685 782 1685 780 1686 831 1686 829 1686 831 1687 780 1687 828 1687 808 1688 831 1688 828 1688 777 1689 809 1689 808 1689 808 1690 809 1690 831 1690 805 1691 831 1691 809 1691 888 1692 891 1692 886 1692 886 1693 882 1693 883 1693 883 1694 882 1694 877 1694 883 1695 877 1695 879 1695 883 1696 879 1696 881 1696 886 1697 810 1697 882 1697 882 1698 810 1698 811 1698 775 1699 812 1699 826 1699 812 1700 813 1700 826 1700 826 1701 813 1701 859 1701 859 1702 813 1702 773 1702 815 1703 859 1703 773 1703 814 1704 827 1704 815 1704 815 1705 827 1705 859 1705 878 1706 877 1706 816 1706 878 1707 816 1707 876 1707 876 1708 816 1708 874 1708 769 1709 817 1709 818 1709 865 1710 766 1710 819 1710 865 1711 819 1711 866 1711 902 1712 906 1712 798 1712 794 1713 871 1713 873 1713 794 1714 873 1714 876 1714 821 1715 899 1715 901 1715 901 1716 899 1716 900 1716 821 1717 901 1717 902 1717 861 1718 862 1718 801 1718 824 1719 862 1719 825 1719 810 1720 826 1720 811 1720 811 1721 859 1721 827 1721 805 1722 832 1722 831 1722 831 1723 830 1723 829 1723 830 1724 831 1724 841 1724 829 1725 830 1725 832 1725 841 1726 832 1726 830 1726 831 1727 832 1727 841 1727 833 1728 763 1728 853 1728 853 1729 763 1729 867 1729 763 1730 765 1730 867 1730 867 1731 765 1731 767 1731 867 1732 767 1732 868 1732 834 1733 868 1733 767 1733 768 1734 852 1734 834 1734 834 1735 852 1735 868 1735 770 1736 868 1736 852 1736 835 1737 851 1737 770 1737 835 1738 880 1738 875 1738 835 1739 877 1739 884 1739 835 1740 884 1740 880 1740 880 1741 884 1741 881 1741 883 1742 884 1742 885 1742 885 1743 884 1743 771 1743 889 1744 885 1744 836 1744 889 1745 836 1745 890 1745 885 1746 771 1746 855 1746 855 1747 771 1747 837 1747 837 1748 838 1748 854 1748 838 1749 772 1749 854 1749 839 1750 857 1750 858 1750 840 1751 774 1751 839 1751 839 1752 774 1752 857 1752 855 1753 857 1753 774 1753 836 1754 896 1754 890 1754 842 1755 896 1755 836 1755 841 1756 898 1756 842 1756 842 1757 898 1757 896 1757 778 1758 843 1758 776 1758 776 1759 843 1759 841 1759 843 1760 844 1760 841 1760 841 1761 844 1761 830 1761 830 1762 844 1762 779 1762 781 1763 830 1763 779 1763 783 1764 856 1764 781 1764 781 1765 856 1765 830 1765 845 1766 830 1766 856 1766 898 1767 841 1767 845 1767 898 1768 895 1768 896 1768 904 1769 895 1769 898 1769 905 1770 904 1770 785 1770 905 1771 785 1771 846 1771 905 1772 846 1772 870 1772 870 1773 846 1773 847 1773 870 1774 847 1774 872 1774 870 1775 872 1775 871 1775 846 1776 785 1776 863 1776 863 1777 785 1777 848 1777 863 1778 848 1778 849 1778 863 1779 849 1779 864 1779 864 1780 849 1780 787 1780 864 1781 787 1781 789 1781 849 1782 786 1782 787 1782 789 1783 860 1783 864 1783 860 1784 789 1784 850 1784 790 1785 860 1785 850 1785 791 1786 792 1786 790 1786 790 1787 792 1787 860 1787 872 1788 847 1788 875 1788 875 1789 795 1789 835 1789 795 1790 851 1790 835 1790 904 1791 903 1791 900 1791 903 1792 901 1792 900 1792 904 1793 900 1793 895 1793 884 1794 883 1794 881 1794 853 1795 867 1795 851 1795 851 1796 868 1796 770 1796 792 1797 863 1797 860 1797 854 1798 858 1798 837 1798 855 1799 837 1799 857 1799 845 1800 841 1800 830 1800 826 1801 857 1801 837 1801 837 1802 811 1802 826 1802 837 1803 859 1803 811 1803 859 1804 837 1804 858 1804 858 1805 857 1805 826 1805 858 1806 826 1806 859 1806 860 1807 863 1807 862 1807 864 1808 860 1808 861 1808 860 1809 862 1809 861 1809 864 1810 825 1810 863 1810 825 1811 862 1811 863 1811 864 1812 861 1812 825 1812 866 1813 867 1813 868 1813 866 1814 868 1814 865 1814 866 1815 869 1815 851 1815 851 1816 869 1816 868 1816 869 1817 865 1817 868 1817 867 1818 866 1818 851 1818 870 1819 871 1819 906 1819 871 1820 872 1820 873 1820 876 1821 873 1821 875 1821 873 1822 872 1822 875 1822 878 1823 875 1823 880 1823 876 1824 875 1824 878 1824 878 1825 880 1825 877 1825 877 1826 880 1826 879 1826 881 1827 879 1827 880 1827 885 1828 886 1828 883 1828 887 1829 886 1829 889 1829 886 1830 885 1830 889 1830 887 1831 889 1831 886 1831 886 1832 889 1832 888 1832 889 1833 890 1833 888 1833 892 1834 890 1834 896 1834 892 1835 896 1835 891 1835 891 1836 896 1836 893 1836 896 1837 897 1837 893 1837 894 1838 897 1838 895 1838 897 1839 896 1839 895 1839 894 1840 895 1840 897 1840 897 1841 895 1841 899 1841 900 1842 899 1842 895 1842 901 1843 903 1843 902 1843 903 1844 904 1844 902 1844 902 1845 904 1845 905 1845 870 1846 906 1846 905 1846 902 1847 905 1847 906 1847 1104 1848 1099 1848 907 1848 907 1849 1099 1849 908 1849 1155 1850 908 1850 1156 1850 1155 1851 907 1851 908 1851 1047 1852 909 1852 952 1852 952 1853 909 1853 955 1853 952 1854 955 1854 954 1854 1047 1855 1046 1855 909 1855 909 1856 950 1856 955 1856 955 1857 950 1857 957 1857 957 1858 950 1858 1099 1858 957 1859 1099 1859 1105 1859 948 1860 1099 1860 950 1860 1041 1861 1202 1861 948 1861 1041 1862 1201 1862 1202 1862 910 1863 1201 1863 1041 1863 1040 1864 1027 1864 910 1864 910 1865 1027 1865 1200 1865 1039 1866 1031 1866 1040 1866 1040 1867 1031 1867 1028 1867 1040 1868 1028 1868 1027 1868 1038 1869 1037 1869 1039 1869 1039 1870 1037 1870 1031 1870 1028 1871 1031 1871 1032 1871 1028 1872 1032 1872 1029 1872 1029 1873 1032 1873 1692 1873 1029 1874 1692 1874 1030 1874 1200 1875 1027 1875 911 1875 1200 1876 911 1876 912 1876 1200 1877 912 1877 1204 1877 1204 1878 912 1878 1150 1878 1150 1879 912 1879 1146 1879 1146 1880 912 1880 914 1880 1146 1881 914 1881 913 1881 1146 1882 913 1882 1144 1882 1144 1883 913 1883 1018 1883 1144 1884 1018 1884 1142 1884 1142 1885 1018 1885 1169 1885 913 1886 914 1886 915 1886 915 1887 914 1887 917 1887 915 1888 917 1888 916 1888 916 1889 917 1889 918 1889 918 1890 917 1890 1022 1890 916 1891 1019 1891 915 1891 919 1892 1168 1892 1018 1892 919 1893 1167 1893 1168 1893 920 1894 1167 1894 919 1894 922 1895 921 1895 920 1895 920 1896 921 1896 1007 1896 920 1897 1007 1897 1167 1897 1167 1898 1007 1898 1005 1898 1167 1899 1005 1899 1166 1899 1166 1900 1005 1900 1157 1900 1157 1901 1005 1901 924 1901 1157 1902 924 1902 1135 1902 1157 1903 1135 1903 1136 1903 1017 1904 1600 1904 922 1904 922 1905 1600 1905 2539 1905 922 1906 2539 1906 921 1906 921 1907 2539 1907 1010 1907 1010 1908 2539 1908 2543 1908 1010 1909 2543 1909 1012 1909 923 1910 1599 1910 1017 1910 1017 1911 1599 1911 1600 1911 1600 1912 1013 1912 2539 1912 1135 1913 924 1913 925 1913 1135 1914 925 1914 1134 1914 1134 1915 925 1915 926 1915 926 1916 925 1916 927 1916 926 1917 927 1917 998 1917 926 1918 998 1918 1131 1918 1131 1919 998 1919 1189 1919 925 1920 1003 1920 927 1920 927 1921 1003 1921 999 1921 999 1922 1003 1922 2674 1922 999 1923 2674 1923 928 1923 1002 1924 929 1924 1003 1924 1003 1925 929 1925 2674 1925 996 1926 1189 1926 998 1926 996 1927 1193 1927 1189 1927 949 1928 1190 1928 996 1928 996 1929 1190 1929 1193 1929 995 1930 932 1930 949 1930 949 1931 932 1931 1190 1931 994 1932 987 1932 995 1932 995 1933 987 1933 982 1933 995 1934 982 1934 932 1934 991 1935 990 1935 994 1935 994 1936 990 1936 987 1936 987 1937 988 1937 986 1937 987 1938 986 1938 982 1938 982 1939 986 1939 930 1939 930 1940 986 1940 985 1940 930 1941 985 1941 931 1941 1190 1942 932 1942 979 1942 1190 1943 979 1943 1187 1943 1187 1944 979 1944 933 1944 1187 1945 933 1945 1191 1945 1191 1946 933 1946 1122 1946 1122 1947 933 1947 1118 1947 1118 1948 933 1948 934 1948 1118 1949 934 1949 936 1949 1118 1950 936 1950 1117 1950 1117 1951 936 1951 1115 1951 1115 1952 936 1952 935 1952 1115 1953 935 1953 1176 1953 936 1954 934 1954 937 1954 937 1955 934 1955 939 1955 937 1956 939 1956 977 1956 977 1957 939 1957 938 1957 938 1958 939 1958 978 1958 977 1959 940 1959 937 1959 941 1960 1180 1960 935 1960 942 1961 1170 1961 941 1961 941 1962 1170 1962 1180 1962 972 1963 960 1963 942 1963 942 1964 960 1964 959 1964 942 1965 959 1965 1178 1965 1178 1966 959 1966 943 1966 1178 1967 943 1967 1181 1967 1181 1968 943 1968 944 1968 1181 1969 944 1969 1108 1969 1181 1970 1108 1970 1179 1970 947 1971 967 1971 972 1971 972 1972 967 1972 965 1972 972 1973 965 1973 960 1973 960 1974 965 1974 961 1974 961 1975 965 1975 963 1975 961 1976 963 1976 945 1976 970 1977 946 1977 947 1977 947 1978 946 1978 967 1978 1108 1979 944 1979 1106 1979 1106 1980 944 1980 957 1980 1106 1981 957 1981 1105 1981 1202 1982 1203 1982 948 1982 948 1983 1203 1983 908 1983 908 1984 1203 1984 1156 1984 1156 1985 1203 1985 1205 1985 1156 1986 1205 1986 1154 1986 1154 1987 1205 1987 1151 1987 1151 1988 1205 1988 1150 1988 1150 1989 1205 1989 1204 1989 1200 1990 1201 1990 910 1990 1131 1991 1189 1991 1188 1991 1131 1992 1188 1992 1124 1992 1124 1993 1188 1993 1126 1993 1126 1994 1188 1994 1122 1994 1122 1995 1188 1995 1192 1995 1122 1996 1192 1996 1191 1996 1178 1997 1170 1997 942 1997 935 1998 1180 1998 1176 1998 1115 1999 1176 1999 1113 1999 1113 2000 1176 2000 1179 2000 1113 2001 1179 2001 1112 2001 1112 2002 1179 2002 1109 2002 1109 2003 1179 2003 1108 2003 1164 2004 1142 2004 1169 2004 1142 2005 1164 2005 1141 2005 1141 2006 1164 2006 1140 2006 1140 2007 1164 2007 1136 2007 1136 2008 1164 2008 1157 2008 1168 2009 1169 2009 1018 2009 908 2010 1099 2010 948 2010 1048 2011 952 2011 951 2011 951 2012 952 2012 954 2012 951 2013 954 2013 953 2013 953 2014 954 2014 955 2014 953 2015 955 2015 1050 2015 1050 2016 955 2016 957 2016 1050 2017 957 2017 956 2017 956 2018 957 2018 944 2018 956 2019 944 2019 958 2019 958 2020 944 2020 943 2020 958 2021 943 2021 1051 2021 1051 2022 943 2022 959 2022 1051 2023 959 2023 1053 2023 1053 2024 959 2024 960 2024 1053 2025 960 2025 1052 2025 1052 2026 960 2026 961 2026 1052 2027 961 2027 962 2027 962 2028 961 2028 945 2028 962 2029 945 2029 964 2029 964 2030 945 2030 963 2030 964 2031 963 2031 969 2031 969 2032 963 2032 965 2032 968 2033 965 2033 967 2033 967 2034 966 2034 968 2034 965 2035 968 2035 969 2035 966 2036 967 2036 1055 2036 1055 2037 967 2037 946 2037 1055 2038 946 2038 1056 2038 1056 2039 946 2039 970 2039 1056 2040 970 2040 1054 2040 1054 2041 970 2041 947 2041 1054 2042 947 2042 971 2042 971 2043 947 2043 972 2043 971 2044 972 2044 1057 2044 1057 2045 972 2045 942 2045 1057 2046 942 2046 973 2046 973 2047 942 2047 941 2047 973 2048 941 2048 974 2048 974 2049 941 2049 935 2049 974 2050 935 2050 975 2050 975 2051 935 2051 936 2051 975 2052 936 2052 1060 2052 1060 2053 936 2053 937 2053 1060 2054 937 2054 1062 2054 1062 2055 937 2055 940 2055 1062 2056 940 2056 1061 2056 1061 2057 940 2057 977 2057 1061 2058 977 2058 976 2058 976 2059 977 2059 938 2059 976 2060 938 2060 1063 2060 1063 2061 938 2061 978 2061 1063 2062 978 2062 1059 2062 1059 2063 978 2063 939 2063 1059 2064 939 2064 1058 2064 1058 2065 939 2065 934 2065 1058 2066 934 2066 1064 2066 1064 2067 934 2067 933 2067 1064 2068 933 2068 980 2068 980 2069 933 2069 979 2069 980 2070 979 2070 981 2070 981 2071 979 2071 932 2071 981 2072 932 2072 1067 2072 1067 2073 932 2073 982 2073 1067 2074 982 2074 1069 2074 1069 2075 982 2075 930 2075 1069 2076 930 2076 983 2076 983 2077 930 2077 931 2077 983 2078 931 2078 984 2078 984 2079 931 2079 985 2079 984 2080 985 2080 989 2080 989 2081 985 2081 986 2081 989 2082 986 2082 988 2082 1070 2083 988 2083 987 2083 1070 2084 987 2084 990 2084 1070 2085 990 2085 1068 2085 1068 2086 990 2086 991 2086 1068 2087 991 2087 992 2087 992 2088 991 2088 994 2088 992 2089 994 2089 993 2089 993 2090 994 2090 995 2090 993 2091 995 2091 1065 2091 1065 2092 995 2092 949 2092 1065 2093 949 2093 997 2093 997 2094 949 2094 996 2094 997 2095 996 2095 1066 2095 1066 2096 996 2096 998 2096 1066 2097 998 2097 1071 2097 1071 2098 998 2098 927 2098 1071 2099 927 2099 1074 2099 1074 2100 927 2100 999 2100 1074 2101 999 2101 1000 2101 1000 2102 999 2102 928 2102 1000 2103 928 2103 1001 2103 1001 2104 928 2104 2674 2104 1001 2105 2674 2105 1075 2105 1075 2106 2674 2106 929 2106 1075 2107 929 2107 1076 2107 1076 2108 929 2108 1002 2108 1076 2109 1002 2109 1073 2109 1073 2110 1002 2110 1003 2110 1073 2111 1003 2111 1004 2111 1004 2112 1003 2112 925 2112 1004 2113 925 2113 1098 2113 1098 2114 925 2114 924 2114 1098 2115 924 2115 1006 2115 1006 2116 924 2116 1005 2116 1006 2117 1005 2117 1077 2117 1077 2118 1005 2118 1007 2118 1077 2119 1007 2119 1008 2119 1008 2120 1007 2120 921 2120 1008 2121 921 2121 1009 2121 1009 2122 921 2122 1010 2122 1009 2123 1010 2123 1011 2123 1011 2124 1010 2124 1012 2124 1011 2125 1012 2125 1079 2125 1079 2126 1012 2126 2543 2126 1079 2127 2543 2127 1080 2127 1080 2128 2543 2128 2539 2128 1013 2129 1014 2129 1080 2129 2539 2130 1013 2130 1080 2130 1600 2131 1014 2131 1013 2131 1014 2132 1600 2132 1015 2132 1015 2133 1600 2133 1599 2133 1015 2134 1599 2134 1082 2134 1082 2135 1599 2135 923 2135 1082 2136 923 2136 1016 2136 1016 2137 923 2137 1017 2137 1016 2138 1017 2138 1081 2138 1081 2139 1017 2139 922 2139 1081 2140 922 2140 1078 2140 1078 2141 922 2141 920 2141 1078 2142 920 2142 1083 2142 1083 2143 920 2143 919 2143 1083 2144 919 2144 1084 2144 1084 2145 919 2145 1018 2145 1084 2146 1018 2146 1085 2146 1085 2147 1018 2147 913 2147 1085 2148 913 2148 1088 2148 1088 2149 913 2149 915 2149 1088 2150 915 2150 1089 2150 1089 2151 915 2151 1019 2151 1089 2152 1019 2152 1020 2152 1020 2153 1019 2153 916 2153 1020 2154 916 2154 1087 2154 1087 2155 916 2155 918 2155 1087 2156 918 2156 1021 2156 1021 2157 918 2157 1022 2157 1021 2158 1022 2158 1086 2158 1086 2159 1022 2159 917 2159 1086 2160 917 2160 1023 2160 1023 2161 917 2161 914 2161 1023 2162 914 2162 1024 2162 1024 2163 914 2163 912 2163 1024 2164 912 2164 1025 2164 1025 2165 912 2165 911 2165 1025 2166 911 2166 1026 2166 1026 2167 911 2167 1027 2167 1026 2168 1027 2168 1093 2168 1093 2169 1027 2169 1028 2169 1093 2170 1028 2170 1092 2170 1092 2171 1028 2171 1029 2171 1092 2172 1029 2172 1095 2172 1095 2173 1029 2173 1030 2173 1095 2174 1030 2174 1096 2174 1096 2175 1030 2175 1692 2175 1096 2176 1692 2176 1033 2176 1033 2177 1692 2177 1032 2177 1031 2178 1034 2178 1033 2178 1033 2179 1032 2179 1031 2179 1034 2180 1031 2180 1035 2180 1035 2181 1031 2181 1037 2181 1035 2182 1037 2182 1036 2182 1036 2183 1037 2183 1038 2183 1036 2184 1038 2184 1094 2184 1094 2185 1038 2185 1039 2185 1094 2186 1039 2186 1090 2186 1090 2187 1039 2187 1040 2187 1090 2188 1040 2188 1091 2188 1091 2189 1040 2189 910 2189 1091 2190 910 2190 1042 2190 1042 2191 910 2191 1041 2191 1042 2192 1041 2192 1043 2192 1043 2193 1041 2193 948 2193 1043 2194 948 2194 1097 2194 1097 2195 948 2195 950 2195 1097 2196 950 2196 1044 2196 1044 2197 950 2197 909 2197 1044 2198 909 2198 1045 2198 1045 2199 909 2199 1046 2199 1045 2200 1046 2200 1049 2200 1049 2201 1046 2201 1047 2201 1049 2202 1047 2202 1048 2202 1048 2203 1047 2203 952 2203 1045 2204 1049 2204 1044 2204 1044 2205 1049 2205 1048 2205 1044 2206 1048 2206 953 2206 953 2207 1048 2207 951 2207 953 2208 1050 2208 1044 2208 1044 2209 1050 2209 1097 2209 1097 2210 1050 2210 1103 2210 956 2211 1103 2211 1050 2211 958 2212 1173 2212 956 2212 958 2213 1174 2213 1173 2213 1051 2214 1174 2214 958 2214 1053 2215 1057 2215 1051 2215 1051 2216 1057 2216 1174 2216 1052 2217 969 2217 1053 2217 1053 2218 969 2218 971 2218 1053 2219 971 2219 1057 2219 962 2220 964 2220 1052 2220 1052 2221 964 2221 969 2221 969 2222 968 2222 966 2222 969 2223 966 2223 971 2223 971 2224 966 2224 1054 2224 1054 2225 966 2225 1055 2225 1054 2226 1055 2226 1056 2226 1174 2227 1057 2227 973 2227 1174 2228 973 2228 1171 2228 1171 2229 973 2229 974 2229 1171 2230 974 2230 1114 2230 1171 2231 1114 2231 1172 2231 1114 2232 974 2232 1116 2232 1116 2233 974 2233 975 2233 1116 2234 975 2234 1058 2234 1116 2235 1058 2235 1120 2235 1120 2236 1058 2236 1119 2236 1119 2237 1058 2237 1064 2237 1119 2238 1064 2238 1121 2238 1121 2239 1064 2239 1183 2239 1058 2240 975 2240 1059 2240 1059 2241 975 2241 1060 2241 1059 2242 1060 2242 976 2242 976 2243 1060 2243 1061 2243 1061 2244 1060 2244 1062 2244 976 2245 1063 2245 1059 2245 980 2246 1182 2246 1064 2246 1064 2247 1182 2247 1183 2247 981 2248 1182 2248 980 2248 1067 2249 993 2249 981 2249 981 2250 993 2250 1065 2250 981 2251 1065 2251 1182 2251 1182 2252 1065 2252 1184 2252 1184 2253 1065 2253 997 2253 1184 2254 997 2254 1066 2254 1184 2255 1066 2255 1186 2255 1186 2256 1066 2256 1132 2256 1186 2257 1132 2257 1185 2257 1069 2258 989 2258 1067 2258 1067 2259 989 2259 1070 2259 1067 2260 1070 2260 993 2260 993 2261 1070 2261 992 2261 992 2262 1070 2262 1068 2262 983 2263 984 2263 1069 2263 1069 2264 984 2264 989 2264 989 2265 988 2265 1070 2265 1132 2266 1066 2266 1133 2266 1133 2267 1066 2267 1071 2267 1133 2268 1071 2268 1072 2268 1072 2269 1071 2269 1004 2269 1072 2270 1004 2270 1098 2270 1072 2271 1098 2271 1159 2271 1071 2272 1074 2272 1004 2272 1004 2273 1074 2273 1073 2273 1073 2274 1074 2274 1001 2274 1073 2275 1001 2275 1075 2275 1074 2276 1000 2276 1001 2276 1075 2277 1076 2277 1073 2277 1006 2278 1163 2278 1098 2278 1098 2279 1163 2279 1159 2279 1077 2280 1163 2280 1006 2280 1008 2281 1078 2281 1077 2281 1077 2282 1078 2282 1161 2282 1009 2283 1080 2283 1008 2283 1008 2284 1080 2284 1081 2284 1008 2285 1081 2285 1078 2285 1011 2286 1079 2286 1009 2286 1009 2287 1079 2287 1080 2287 1081 2288 1080 2288 1014 2288 1081 2289 1014 2289 1016 2289 1016 2290 1014 2290 1015 2290 1016 2291 1015 2291 1082 2291 1161 2292 1078 2292 1083 2292 1161 2293 1083 2293 1162 2293 1162 2294 1083 2294 1084 2294 1162 2295 1084 2295 1160 2295 1160 2296 1084 2296 1143 2296 1143 2297 1084 2297 1145 2297 1145 2298 1084 2298 1085 2298 1145 2299 1085 2299 1023 2299 1145 2300 1023 2300 1148 2300 1148 2301 1023 2301 1147 2301 1147 2302 1023 2302 1024 2302 1147 2303 1024 2303 1149 2303 1149 2304 1024 2304 1198 2304 1023 2305 1085 2305 1086 2305 1086 2306 1085 2306 1088 2306 1086 2307 1088 2307 1087 2307 1087 2308 1088 2308 1020 2308 1020 2309 1088 2309 1089 2309 1087 2310 1021 2310 1086 2310 1025 2311 1198 2311 1024 2311 1025 2312 1199 2312 1198 2312 1026 2313 1199 2313 1025 2313 1093 2314 1090 2314 1026 2314 1026 2315 1090 2315 1091 2315 1026 2316 1091 2316 1199 2316 1199 2317 1091 2317 1042 2317 1199 2318 1042 2318 1197 2318 1197 2319 1042 2319 1195 2319 1195 2320 1042 2320 1043 2320 1195 2321 1043 2321 1196 2321 1196 2322 1043 2322 907 2322 1092 2323 1033 2323 1093 2323 1093 2324 1033 2324 1034 2324 1093 2325 1034 2325 1090 2325 1090 2326 1034 2326 1094 2326 1094 2327 1034 2327 1035 2327 1094 2328 1035 2328 1036 2328 1095 2329 1096 2329 1092 2329 1092 2330 1096 2330 1033 2330 907 2331 1043 2331 1104 2331 1104 2332 1043 2332 1097 2332 1104 2333 1097 2333 1103 2333 1149 2334 1198 2334 1153 2334 1153 2335 1198 2335 1194 2335 1153 2336 1194 2336 1152 2336 1152 2337 1194 2337 1155 2337 1155 2338 1194 2338 1196 2338 1155 2339 1196 2339 907 2339 1121 2340 1183 2340 1125 2340 1125 2341 1183 2341 1185 2341 1125 2342 1185 2342 1123 2342 1123 2343 1185 2343 1127 2343 1127 2344 1185 2344 1132 2344 956 2345 1173 2345 1107 2345 1107 2346 1173 2346 1175 2346 1175 2347 1110 2347 1107 2347 1110 2348 1175 2348 1111 2348 1111 2349 1175 2349 1114 2349 1114 2350 1175 2350 1172 2350 1161 2351 1163 2351 1077 2351 1072 2352 1159 2352 1138 2352 1138 2353 1159 2353 1158 2353 1138 2354 1158 2354 1139 2354 1139 2355 1158 2355 1143 2355 1143 2356 1158 2356 1160 2356 1107 2357 1103 2357 956 2357 1103 2358 1105 2358 1099 2358 1104 2359 1103 2359 1101 2359 1102 2360 1101 2360 1103 2360 1102 2361 1103 2361 1100 2361 1100 2362 1099 2362 1104 2362 1104 2363 1101 2363 1100 2363 1099 2364 1100 2364 1103 2364 1105 2365 1103 2365 1106 2365 1107 2366 1108 2366 1103 2366 1103 2367 1108 2367 1106 2367 1110 2368 1109 2368 1108 2368 1107 2369 1110 2369 1108 2369 1111 2370 1114 2370 1112 2370 1109 2371 1110 2371 1112 2371 1111 2372 1112 2372 1110 2372 1112 2373 1114 2373 1113 2373 1113 2374 1114 2374 1115 2374 1116 2375 1115 2375 1114 2375 1115 2376 1116 2376 1117 2376 1120 2377 1118 2377 1116 2377 1116 2378 1118 2378 1117 2378 1120 2379 1119 2379 1118 2379 1121 2380 1122 2380 1119 2380 1119 2381 1122 2381 1118 2381 1121 2382 1125 2382 1122 2382 1123 2383 1127 2383 1124 2383 1125 2384 1126 2384 1122 2384 1123 2385 1124 2385 1126 2385 1123 2386 1126 2386 1125 2386 1127 2387 1128 2387 1129 2387 1131 2388 1129 2388 1132 2388 1132 2389 1130 2389 1127 2389 1130 2390 1128 2390 1127 2390 1129 2391 1130 2391 1132 2391 1129 2392 1131 2392 1127 2392 1131 2393 1124 2393 1127 2393 1133 2394 926 2394 1132 2394 1132 2395 926 2395 1131 2395 1133 2396 1072 2396 926 2396 1072 2397 1134 2397 926 2397 1134 2398 1072 2398 1135 2398 1072 2399 1136 2399 1135 2399 1072 2400 1138 2400 1136 2400 1138 2401 1140 2401 1136 2401 1140 2402 1137 2402 1141 2402 1143 2403 1141 2403 1137 2403 1137 2404 1139 2404 1143 2404 1138 2405 1139 2405 1140 2405 1139 2406 1137 2406 1140 2406 1141 2407 1143 2407 1142 2407 1145 2408 1144 2408 1143 2408 1143 2409 1144 2409 1142 2409 1145 2410 1146 2410 1144 2410 1148 2411 1146 2411 1145 2411 1147 2412 1146 2412 1148 2412 1149 2413 1150 2413 1147 2413 1147 2414 1150 2414 1146 2414 1149 2415 1153 2415 1150 2415 1150 2416 1153 2416 1151 2416 1155 2417 1156 2417 1154 2417 1155 2418 1154 2418 1152 2418 1153 2419 1154 2419 1151 2419 1154 2420 1153 2420 1152 2420 1159 2421 1165 2421 1158 2421 1160 2422 1169 2422 1162 2422 1162 2423 1168 2423 1161 2423 1163 2424 1166 2424 1159 2424 1159 2425 1166 2425 1157 2425 1158 2426 1165 2426 1164 2426 1158 2427 1164 2427 1160 2427 1159 2428 1157 2428 1165 2428 1161 2429 1168 2429 1167 2429 1162 2430 1169 2430 1168 2430 1163 2431 1167 2431 1166 2431 1161 2432 1167 2432 1163 2432 1165 2433 1157 2433 1164 2433 1160 2434 1164 2434 1169 2434 1174 2435 1171 2435 1177 2435 1174 2436 1177 2436 1170 2436 1175 2437 1173 2437 1181 2437 1171 2438 1172 2438 1176 2438 1173 2439 1174 2439 1178 2439 1171 2440 1176 2440 1177 2440 1172 2441 1175 2441 1179 2441 1172 2442 1179 2442 1176 2442 1173 2443 1178 2443 1181 2443 1175 2444 1181 2444 1179 2444 1174 2445 1170 2445 1178 2445 1177 2446 1176 2446 1180 2446 1177 2447 1180 2447 1170 2447 1183 2448 1192 2448 1185 2448 1183 2449 1182 2449 1187 2449 1183 2450 1187 2450 1191 2450 1182 2451 1184 2451 1190 2451 1183 2452 1191 2452 1192 2452 1186 2453 1189 2453 1184 2453 1182 2454 1190 2454 1187 2454 1186 2455 1185 2455 1189 2455 1184 2456 1189 2456 1193 2456 1185 2457 1192 2457 1188 2457 1185 2458 1188 2458 1189 2458 1184 2459 1193 2459 1190 2459 1200 2460 1199 2460 1201 2460 1199 2461 1200 2461 1198 2461 1198 2462 1204 2462 1194 2462 1196 2463 1194 2463 1205 2463 1196 2464 1205 2464 1203 2464 1195 2465 1202 2465 1197 2465 1198 2466 1200 2466 1204 2466 1195 2467 1196 2467 1202 2467 1197 2468 1201 2468 1199 2468 1196 2469 1203 2469 1202 2469 1194 2470 1204 2470 1205 2470 1197 2471 1202 2471 1201 2471 1406 2472 1404 2472 1206 2472 1206 2473 1404 2473 1207 2473 1456 2474 1206 2474 1207 2474 1456 2475 1207 2475 1455 2475 1344 2476 1208 2476 1209 2476 1209 2477 1208 2477 1210 2477 1209 2478 1210 2478 1260 2478 1344 2479 1343 2479 1208 2479 1208 2480 1341 2480 1210 2480 1210 2481 1341 2481 1256 2481 1256 2482 1341 2482 1404 2482 1256 2483 1404 2483 1407 2483 1211 2484 1404 2484 1341 2484 1212 2485 1499 2485 1211 2485 1212 2486 1501 2486 1499 2486 1339 2487 1501 2487 1212 2487 1338 2488 1325 2488 1339 2488 1339 2489 1325 2489 1501 2489 1337 2490 1213 2490 1338 2490 1338 2491 1213 2491 1326 2491 1338 2492 1326 2492 1325 2492 1336 2493 1214 2493 1337 2493 1337 2494 1214 2494 1213 2494 1326 2495 1213 2495 1215 2495 1215 2496 1213 2496 1333 2496 1326 2497 1215 2497 1328 2497 1328 2498 1215 2498 1331 2498 1328 2499 1331 2499 1330 2499 1501 2500 1325 2500 1216 2500 1501 2501 1216 2501 1503 2501 1503 2502 1216 2502 1217 2502 1503 2503 1217 2503 1504 2503 1504 2504 1217 2504 1453 2504 1453 2505 1217 2505 1449 2505 1449 2506 1217 2506 1219 2506 1449 2507 1219 2507 1317 2507 1449 2508 1317 2508 1448 2508 1448 2509 1317 2509 1218 2509 1448 2510 1218 2510 1446 2510 1446 2511 1218 2511 1469 2511 1317 2512 1219 2512 1220 2512 1220 2513 1219 2513 1322 2513 1220 2514 1322 2514 1320 2514 1320 2515 1322 2515 1321 2515 1321 2516 1322 2516 1221 2516 1320 2517 1318 2517 1220 2517 1223 2518 1465 2518 1218 2518 1218 2519 1465 2519 1469 2519 1223 2520 1466 2520 1465 2520 1222 2521 1466 2521 1223 2521 1224 2522 1225 2522 1222 2522 1222 2523 1225 2523 1303 2523 1222 2524 1303 2524 1466 2524 1466 2525 1303 2525 1226 2525 1466 2526 1226 2526 1470 2526 1470 2527 1226 2527 1227 2527 1470 2528 1227 2528 1468 2528 1468 2529 1227 2529 1439 2529 1228 2530 1310 2530 1224 2530 1224 2531 1310 2531 1232 2531 1224 2532 1232 2532 1225 2532 1225 2533 1232 2533 1229 2533 1229 2534 1232 2534 1230 2534 1229 2535 1230 2535 1231 2535 1314 2536 1312 2536 1228 2536 1228 2537 1312 2537 1310 2537 1310 2538 1308 2538 1232 2538 1439 2539 1227 2539 1438 2539 1438 2540 1227 2540 1233 2540 1438 2541 1233 2541 1437 2541 1437 2542 1233 2542 1234 2542 1437 2543 1234 2543 1257 2543 1437 2544 1257 2544 1430 2544 1430 2545 1257 2545 1493 2545 1430 2546 1493 2546 1492 2546 1233 2547 1237 2547 1234 2547 1234 2548 1237 2548 1235 2548 1235 2549 1237 2549 1298 2549 1235 2550 1298 2550 1236 2550 1301 2551 1300 2551 1237 2551 1237 2552 1300 2552 1298 2552 1297 2553 1493 2553 1257 2553 1297 2554 1490 2554 1493 2554 1239 2555 1490 2555 1297 2555 1296 2556 1238 2556 1239 2556 1239 2557 1238 2557 1489 2557 1240 2558 1289 2558 1296 2558 1296 2559 1289 2559 1241 2559 1296 2560 1241 2560 1238 2560 1294 2561 1293 2561 1240 2561 1240 2562 1293 2562 1289 2562 1289 2563 1291 2563 1292 2563 1289 2564 1292 2564 1241 2564 1241 2565 1292 2565 1286 2565 1286 2566 1292 2566 1288 2566 1286 2567 1288 2567 1242 2567 1489 2568 1238 2568 1243 2568 1489 2569 1243 2569 1488 2569 1488 2570 1243 2570 1283 2570 1488 2571 1283 2571 1491 2571 1491 2572 1283 2572 1422 2572 1491 2573 1422 2573 1492 2573 1422 2574 1283 2574 1244 2574 1244 2575 1283 2575 1282 2575 1244 2576 1282 2576 1245 2576 1244 2577 1245 2577 1419 2577 1419 2578 1245 2578 1420 2578 1420 2579 1245 2579 1278 2579 1420 2580 1278 2580 1481 2580 1245 2581 1282 2581 1250 2581 1250 2582 1282 2582 1246 2582 1250 2583 1246 2583 1247 2583 1247 2584 1246 2584 1248 2584 1248 2585 1246 2585 1281 2585 1247 2586 1249 2586 1250 2586 1251 2587 1479 2587 1278 2587 1278 2588 1479 2588 1481 2588 1276 2589 1477 2589 1251 2589 1251 2590 1477 2590 1479 2590 1275 2591 1263 2591 1276 2591 1276 2592 1263 2592 1262 2592 1276 2593 1262 2593 1477 2593 1477 2594 1262 2594 1252 2594 1477 2595 1252 2595 1472 2595 1472 2596 1252 2596 1253 2596 1472 2597 1253 2597 1409 2597 1472 2598 1409 2598 1412 2598 1254 2599 1270 2599 1275 2599 1275 2600 1270 2600 1268 2600 1275 2601 1268 2601 1263 2601 1263 2602 1268 2602 1266 2602 1266 2603 1268 2603 1267 2603 1266 2604 1267 2604 1255 2604 1274 2605 1272 2605 1254 2605 1254 2606 1272 2606 1270 2606 1409 2607 1253 2607 1408 2607 1408 2608 1253 2608 1256 2608 1408 2609 1256 2609 1407 2609 1211 2610 1499 2610 1207 2610 1207 2611 1499 2611 1500 2611 1207 2612 1500 2612 1455 2612 1455 2613 1500 2613 1459 2613 1459 2614 1500 2614 1458 2614 1458 2615 1500 2615 1505 2615 1458 2616 1505 2616 1453 2616 1453 2617 1505 2617 1504 2617 1489 2618 1490 2618 1239 2618 1430 2619 1492 2619 1429 2619 1429 2620 1492 2620 1427 2620 1427 2621 1492 2621 1426 2621 1426 2622 1492 2622 1422 2622 1420 2623 1481 2623 1413 2623 1413 2624 1481 2624 1474 2624 1413 2625 1474 2625 1258 2625 1258 2626 1474 2626 1412 2626 1412 2627 1474 2627 1472 2627 1468 2628 1446 2628 1469 2628 1446 2629 1468 2629 1444 2629 1444 2630 1468 2630 1443 2630 1443 2631 1468 2631 1439 2631 1207 2632 1404 2632 1211 2632 1345 2633 1209 2633 1259 2633 1259 2634 1209 2634 1260 2634 1259 2635 1260 2635 1347 2635 1347 2636 1260 2636 1210 2636 1347 2637 1210 2637 1403 2637 1403 2638 1210 2638 1256 2638 1403 2639 1256 2639 1261 2639 1261 2640 1256 2640 1253 2640 1261 2641 1253 2641 1348 2641 1348 2642 1253 2642 1252 2642 1348 2643 1252 2643 1402 2643 1402 2644 1252 2644 1262 2644 1402 2645 1262 2645 1349 2645 1349 2646 1262 2646 1263 2646 1349 2647 1263 2647 1264 2647 1264 2648 1263 2648 1266 2648 1264 2649 1266 2649 1265 2649 1265 2650 1266 2650 1255 2650 1265 2651 1255 2651 1350 2651 1350 2652 1255 2652 1267 2652 1350 2653 1267 2653 1351 2653 1351 2654 1267 2654 1268 2654 1351 2655 1268 2655 1269 2655 1269 2656 1270 2656 1271 2656 1268 2657 1270 2657 1269 2657 1271 2658 1270 2658 1272 2658 1271 2659 1272 2659 1353 2659 1353 2660 1272 2660 1274 2660 1353 2661 1274 2661 1273 2661 1273 2662 1274 2662 1254 2662 1273 2663 1254 2663 1352 2663 1352 2664 1254 2664 1275 2664 1352 2665 1275 2665 1354 2665 1354 2666 1275 2666 1276 2666 1354 2667 1276 2667 1277 2667 1277 2668 1276 2668 1251 2668 1277 2669 1251 2669 1355 2669 1355 2670 1251 2670 1278 2670 1355 2671 1278 2671 1279 2671 1279 2672 1278 2672 1245 2672 1279 2673 1245 2673 1359 2673 1359 2674 1245 2674 1250 2674 1359 2675 1250 2675 1362 2675 1362 2676 1250 2676 1249 2676 1362 2677 1249 2677 1361 2677 1361 2678 1249 2678 1247 2678 1361 2679 1247 2679 1360 2679 1360 2680 1247 2680 1248 2680 1360 2681 1248 2681 1280 2681 1280 2682 1248 2682 1281 2682 1280 2683 1281 2683 1358 2683 1358 2684 1281 2684 1246 2684 1358 2685 1246 2685 1356 2685 1356 2686 1246 2686 1282 2686 1356 2687 1282 2687 1357 2687 1357 2688 1282 2688 1283 2688 1357 2689 1283 2689 1363 2689 1363 2690 1283 2690 1243 2690 1363 2691 1243 2691 1284 2691 1284 2692 1243 2692 1238 2692 1284 2693 1238 2693 1368 2693 1368 2694 1238 2694 1241 2694 1368 2695 1241 2695 1285 2695 1285 2696 1241 2696 1286 2696 1285 2697 1286 2697 1287 2697 1287 2698 1286 2698 1242 2698 1287 2699 1242 2699 1290 2699 1290 2700 1242 2700 1288 2700 1290 2701 1288 2701 1292 2701 1371 2702 1291 2702 1289 2702 1372 2703 1371 2703 1289 2703 1291 2704 1371 2704 1292 2704 1292 2705 1371 2705 1290 2705 1372 2706 1289 2706 1998 2706 1998 2707 1289 2707 1293 2707 1998 2708 1293 2708 1370 2708 1370 2709 1293 2709 1294 2709 1370 2710 1294 2710 1295 2710 1295 2711 1294 2711 1240 2711 1295 2712 1240 2712 1369 2712 1369 2713 1240 2713 1296 2713 1369 2714 1296 2714 1364 2714 1364 2715 1296 2715 1239 2715 1364 2716 1239 2716 1366 2716 1366 2717 1239 2717 1297 2717 1366 2718 1297 2718 1367 2718 1367 2719 1297 2719 1257 2719 1367 2720 1257 2720 1373 2720 1373 2721 1257 2721 1234 2721 1373 2722 1234 2722 1375 2722 1375 2723 1234 2723 1235 2723 1375 2724 1235 2724 1377 2724 1377 2725 1235 2725 1236 2725 1377 2726 1236 2726 2135 2726 2135 2727 1236 2727 1298 2727 2135 2728 1298 2728 2010 2728 2010 2729 1298 2729 1300 2729 2010 2730 1300 2730 1299 2730 1299 2731 1300 2731 1301 2731 1299 2732 1301 2732 1376 2732 1376 2733 1301 2733 1237 2733 1376 2734 1237 2734 1302 2734 1302 2735 1237 2735 1233 2735 1302 2736 1233 2736 1374 2736 1374 2737 1233 2737 1227 2737 1374 2738 1227 2738 1378 2738 1378 2739 1227 2739 1226 2739 1378 2740 1226 2740 1304 2740 1304 2741 1226 2741 1303 2741 1304 2742 1303 2742 1379 2742 1379 2743 1303 2743 1225 2743 1379 2744 1225 2744 1380 2744 1380 2745 1225 2745 1229 2745 1380 2746 1229 2746 1305 2746 1305 2747 1229 2747 1231 2747 1305 2748 1231 2748 1306 2748 1306 2749 1231 2749 1230 2749 1306 2750 1230 2750 2034 2750 2034 2751 1230 2751 1232 2751 1307 2752 1232 2752 1308 2752 1232 2753 1307 2753 2034 2753 1309 2754 1307 2754 1308 2754 1310 2755 1309 2755 1308 2755 1309 2756 1310 2756 1311 2756 1311 2757 1310 2757 1312 2757 1311 2758 1312 2758 1313 2758 1313 2759 1312 2759 1314 2759 1313 2760 1314 2760 1382 2760 1382 2761 1314 2761 1228 2761 1382 2762 1228 2762 1381 2762 1381 2763 1228 2763 1224 2763 1381 2764 1224 2764 1315 2764 1315 2765 1224 2765 1222 2765 1315 2766 1222 2766 1316 2766 1316 2767 1222 2767 1223 2767 1316 2768 1223 2768 1383 2768 1383 2769 1223 2769 1218 2769 1383 2770 1218 2770 1384 2770 1384 2771 1218 2771 1317 2771 1384 2772 1317 2772 1388 2772 1388 2773 1317 2773 1220 2773 1388 2774 1220 2774 1389 2774 1389 2775 1220 2775 1318 2775 1389 2776 1318 2776 1387 2776 1387 2777 1318 2777 1320 2777 1387 2778 1320 2778 1319 2778 1319 2779 1320 2779 1321 2779 1319 2780 1321 2780 1390 2780 1390 2781 1321 2781 1221 2781 1390 2782 1221 2782 1386 2782 1386 2783 1221 2783 1322 2783 1386 2784 1322 2784 1385 2784 1385 2785 1322 2785 1219 2785 1385 2786 1219 2786 1323 2786 1323 2787 1219 2787 1217 2787 1323 2788 1217 2788 1391 2788 1391 2789 1217 2789 1216 2789 1391 2790 1216 2790 1324 2790 1324 2791 1216 2791 1325 2791 1324 2792 1325 2792 1395 2792 1395 2793 1325 2793 1326 2793 1395 2794 1326 2794 1327 2794 1327 2795 1326 2795 1328 2795 1327 2796 1328 2796 1329 2796 1329 2797 1328 2797 1330 2797 1329 2798 1330 2798 1399 2798 1399 2799 1330 2799 1331 2799 1399 2800 1331 2800 1577 2800 1577 2801 1331 2801 1215 2801 1332 2802 1334 2802 1333 2802 1332 2803 1333 2803 1213 2803 1215 2804 1334 2804 1577 2804 1333 2805 1334 2805 1215 2805 1332 2806 1213 2806 1335 2806 1335 2807 1213 2807 1214 2807 1335 2808 1214 2808 1398 2808 1398 2809 1214 2809 1336 2809 1398 2810 1336 2810 1397 2810 1397 2811 1336 2811 1337 2811 1397 2812 1337 2812 1396 2812 1396 2813 1337 2813 1338 2813 1396 2814 1338 2814 1392 2814 1392 2815 1338 2815 1339 2815 1392 2816 1339 2816 1393 2816 1393 2817 1339 2817 1212 2817 1393 2818 1212 2818 1394 2818 1394 2819 1212 2819 1211 2819 1394 2820 1211 2820 1400 2820 1400 2821 1211 2821 1341 2821 1400 2822 1341 2822 1340 2822 1340 2823 1341 2823 1208 2823 1340 2824 1208 2824 1342 2824 1342 2825 1208 2825 1343 2825 1342 2826 1343 2826 1346 2826 1346 2827 1343 2827 1344 2827 1346 2828 1344 2828 1345 2828 1345 2829 1344 2829 1209 2829 1342 2830 1346 2830 1340 2830 1340 2831 1346 2831 1345 2831 1340 2832 1345 2832 1347 2832 1347 2833 1345 2833 1259 2833 1347 2834 1403 2834 1340 2834 1340 2835 1403 2835 1400 2835 1400 2836 1403 2836 1405 2836 1261 2837 1405 2837 1403 2837 1348 2838 1475 2838 1261 2838 1348 2839 1476 2839 1475 2839 1402 2840 1476 2840 1348 2840 1349 2841 1354 2841 1402 2841 1402 2842 1354 2842 1476 2842 1264 2843 1351 2843 1349 2843 1349 2844 1351 2844 1352 2844 1349 2845 1352 2845 1354 2845 1265 2846 1350 2846 1264 2846 1264 2847 1350 2847 1351 2847 1351 2848 1269 2848 1271 2848 1351 2849 1271 2849 1352 2849 1352 2850 1271 2850 1273 2850 1273 2851 1271 2851 1353 2851 1476 2852 1354 2852 1277 2852 1476 2853 1277 2853 1478 2853 1478 2854 1277 2854 1473 2854 1473 2855 1277 2855 1355 2855 1473 2856 1355 2856 1415 2856 1415 2857 1355 2857 1279 2857 1415 2858 1279 2858 1356 2858 1415 2859 1356 2859 1421 2859 1421 2860 1356 2860 1357 2860 1421 2861 1357 2861 1423 2861 1423 2862 1357 2862 1487 2862 1423 2863 1487 2863 1485 2863 1356 2864 1279 2864 1358 2864 1358 2865 1279 2865 1359 2865 1358 2866 1359 2866 1360 2866 1360 2867 1359 2867 1361 2867 1361 2868 1359 2868 1362 2868 1360 2869 1280 2869 1358 2869 1363 2870 1487 2870 1357 2870 1363 2871 1483 2871 1487 2871 1284 2872 1483 2872 1363 2872 1368 2873 1369 2873 1284 2873 1284 2874 1369 2874 1364 2874 1284 2875 1364 2875 1483 2875 1483 2876 1364 2876 1365 2876 1365 2877 1364 2877 1366 2877 1365 2878 1366 2878 1484 2878 1484 2879 1366 2879 1367 2879 1484 2880 1367 2880 1432 2880 1285 2881 1290 2881 1368 2881 1368 2882 1290 2882 1372 2882 1368 2883 1372 2883 1369 2883 1369 2884 1372 2884 1295 2884 1295 2885 1372 2885 1998 2885 1295 2886 1998 2886 1370 2886 1287 2887 1290 2887 1285 2887 1290 2888 1371 2888 1372 2888 1432 2889 1367 2889 1435 2889 1435 2890 1367 2890 1373 2890 1435 2891 1373 2891 1436 2891 1436 2892 1373 2892 1302 2892 1436 2893 1302 2893 1374 2893 1436 2894 1374 2894 1440 2894 1440 2895 1374 2895 1463 2895 1373 2896 1375 2896 1302 2896 1302 2897 1375 2897 1376 2897 1376 2898 1375 2898 2135 2898 1376 2899 2135 2899 2010 2899 1375 2900 1377 2900 2135 2900 2010 2901 1299 2901 1376 2901 1378 2902 1461 2902 1374 2902 1374 2903 1461 2903 1463 2903 1378 2904 1464 2904 1461 2904 1304 2905 1464 2905 1378 2905 1379 2906 1315 2906 1304 2906 1304 2907 1315 2907 1464 2907 1380 2908 2034 2908 1379 2908 1379 2909 2034 2909 1381 2909 1379 2910 1381 2910 1315 2910 1305 2911 1306 2911 1380 2911 1380 2912 1306 2912 2034 2912 1381 2913 2034 2913 1309 2913 1309 2914 2034 2914 1307 2914 1381 2915 1309 2915 1382 2915 1382 2916 1309 2916 1311 2916 1382 2917 1311 2917 1313 2917 1464 2918 1315 2918 1316 2918 1464 2919 1316 2919 1460 2919 1460 2920 1316 2920 1383 2920 1460 2921 1383 2921 1445 2921 1445 2922 1383 2922 1450 2922 1450 2923 1383 2923 1384 2923 1450 2924 1384 2924 1385 2924 1450 2925 1385 2925 1451 2925 1451 2926 1385 2926 1323 2926 1451 2927 1323 2927 1452 2927 1452 2928 1323 2928 1498 2928 1385 2929 1384 2929 1386 2929 1386 2930 1384 2930 1388 2930 1386 2931 1388 2931 1319 2931 1319 2932 1388 2932 1387 2932 1387 2933 1388 2933 1389 2933 1319 2934 1390 2934 1386 2934 1391 2935 1494 2935 1323 2935 1323 2936 1494 2936 1498 2936 1324 2937 1494 2937 1391 2937 1395 2938 1396 2938 1324 2938 1324 2939 1396 2939 1392 2939 1324 2940 1392 2940 1497 2940 1497 2941 1392 2941 1393 2941 1497 2942 1393 2942 1496 2942 1496 2943 1393 2943 1394 2943 1496 2944 1394 2944 1206 2944 1496 2945 1206 2945 1456 2945 1327 2946 1577 2946 1395 2946 1395 2947 1577 2947 1332 2947 1395 2948 1332 2948 1396 2948 1396 2949 1332 2949 1397 2949 1397 2950 1332 2950 1335 2950 1397 2951 1335 2951 1398 2951 1329 2952 1399 2952 1327 2952 1327 2953 1399 2953 1577 2953 1577 2954 1334 2954 1332 2954 1206 2955 1394 2955 1406 2955 1406 2956 1394 2956 1400 2956 1406 2957 1400 2957 1405 2957 1497 2958 1494 2958 1324 2958 1452 2959 1498 2959 1454 2959 1454 2960 1498 2960 1495 2960 1454 2961 1495 2961 1457 2961 1457 2962 1495 2962 1456 2962 1456 2963 1495 2963 1496 2963 1423 2964 1485 2964 1425 2964 1425 2965 1485 2965 1482 2965 1425 2966 1482 2966 1428 2966 1428 2967 1482 2967 1424 2967 1424 2968 1482 2968 1432 2968 1432 2969 1482 2969 1484 2969 1261 2970 1475 2970 1410 2970 1475 2971 1401 2971 1410 2971 1401 2972 1475 2972 1471 2972 1401 2973 1471 2973 1411 2973 1411 2974 1471 2974 1414 2974 1414 2975 1471 2975 1473 2975 1414 2976 1473 2976 1415 2976 1440 2977 1463 2977 1442 2977 1442 2978 1463 2978 1467 2978 1442 2979 1467 2979 1441 2979 1441 2980 1467 2980 1447 2980 1447 2981 1467 2981 1445 2981 1445 2982 1467 2982 1460 2982 1410 2983 1405 2983 1261 2983 1405 2984 1407 2984 1404 2984 1406 2985 1405 2985 1404 2985 1407 2986 1405 2986 1408 2986 1410 2987 1409 2987 1405 2987 1405 2988 1409 2988 1408 2988 1410 2989 1401 2989 1409 2989 1401 2990 1412 2990 1409 2990 1411 2991 1414 2991 1258 2991 1414 2992 1413 2992 1258 2992 1401 2993 1411 2993 1412 2993 1411 2994 1258 2994 1412 2994 1414 2995 1417 2995 1418 2995 1414 2996 1418 2996 1413 2996 1413 2997 1418 2997 1420 2997 1416 2998 1414 2998 1415 2998 1416 2999 1417 2999 1414 2999 1418 3000 1416 3000 1415 3000 1420 3001 1418 3001 1415 3001 1415 3002 1419 3002 1420 3002 1415 3003 1244 3003 1419 3003 1244 3004 1415 3004 1421 3004 1423 3005 1422 3005 1421 3005 1421 3006 1422 3006 1244 3006 1423 3007 1425 3007 1422 3007 1425 3008 1426 3008 1422 3008 1428 3009 1424 3009 1429 3009 1427 3010 1428 3010 1429 3010 1426 3011 1425 3011 1428 3011 1427 3012 1426 3012 1428 3012 1429 3013 1424 3013 1430 3013 1424 3014 1432 3014 1433 3014 1434 3015 1432 3015 1430 3015 1433 3016 1431 3016 1424 3016 1434 3017 1433 3017 1432 3017 1434 3018 1430 3018 1424 3018 1434 3019 1424 3019 1431 3019 1435 3020 1437 3020 1432 3020 1432 3021 1437 3021 1430 3021 1435 3022 1436 3022 1437 3022 1437 3023 1436 3023 1438 3023 1440 3024 1439 3024 1436 3024 1436 3025 1439 3025 1438 3025 1440 3026 1442 3026 1439 3026 1441 3027 1443 3027 1442 3027 1442 3028 1443 3028 1439 3028 1447 3029 1446 3029 1444 3029 1444 3030 1443 3030 1441 3030 1444 3031 1441 3031 1447 3031 1445 3032 1446 3032 1447 3032 1450 3033 1448 3033 1445 3033 1445 3034 1448 3034 1446 3034 1450 3035 1449 3035 1448 3035 1450 3036 1451 3036 1449 3036 1452 3037 1453 3037 1451 3037 1451 3038 1453 3038 1449 3038 1454 3039 1453 3039 1452 3039 1453 3040 1454 3040 1458 3040 1457 3041 1458 3041 1454 3041 1456 3042 1455 3042 1457 3042 1457 3043 1459 3043 1458 3043 1459 3044 1457 3044 1455 3044 1468 3045 1462 3045 1470 3045 1464 3046 1470 3046 1461 3046 1460 3047 1465 3047 1464 3047 1463 3048 1461 3048 1462 3048 1461 3049 1470 3049 1462 3049 1460 3050 1467 3050 1469 3050 1460 3051 1469 3051 1465 3051 1463 3052 1462 3052 1467 3052 1462 3053 1468 3053 1467 3053 1464 3054 1466 3054 1470 3054 1465 3055 1466 3055 1464 3055 1467 3056 1468 3056 1469 3056 1479 3057 1478 3057 1481 3057 1476 3058 1480 3058 1475 3058 1475 3059 1474 3059 1471 3059 1473 3060 1471 3060 1481 3060 1475 3061 1472 3061 1474 3061 1471 3062 1474 3062 1481 3062 1480 3063 1476 3063 1477 3063 1476 3064 1478 3064 1477 3064 1475 3065 1480 3065 1472 3065 1478 3066 1479 3066 1477 3066 1473 3067 1481 3067 1478 3067 1480 3068 1477 3068 1472 3068 1365 3069 1484 3069 1493 3069 1484 3070 1482 3070 1486 3070 1483 3071 1365 3071 1490 3071 1484 3072 1486 3072 1493 3072 1487 3073 1491 3073 1485 3073 1487 3074 1488 3074 1491 3074 1365 3075 1493 3075 1490 3075 1487 3076 1483 3076 1488 3076 1483 3077 1489 3077 1488 3077 1483 3078 1490 3078 1489 3078 1482 3079 1485 3079 1492 3079 1482 3080 1492 3080 1486 3080 1485 3081 1491 3081 1492 3081 1486 3082 1492 3082 1493 3082 1494 3083 1502 3083 1498 3083 1496 3084 1499 3084 1497 3084 1497 3085 1501 3085 1494 3085 1497 3086 1499 3086 1501 3086 1494 3087 1501 3087 1503 3087 1494 3088 1503 3088 1502 3088 1495 3089 1498 3089 1505 3089 1495 3090 1505 3090 1496 3090 1496 3091 1500 3091 1499 3091 1498 3092 1502 3092 1504 3092 1498 3093 1504 3093 1505 3093 1496 3094 1505 3094 1500 3094 1502 3095 1503 3095 1504 3095 1735 3096 1738 3096 1506 3096 1506 3097 1738 3097 1507 3097 1507 3098 1508 3098 1506 3098 1507 3099 1509 3099 1508 3099 1510 3100 1513 3100 1511 3100 1511 3101 1513 3101 1512 3101 1511 3102 1512 3102 1570 3102 1510 3103 1682 3103 1513 3103 1513 3104 1514 3104 1512 3104 1512 3105 1514 3105 1515 3105 1515 3106 1514 3106 1737 3106 1515 3107 1737 3107 1742 3107 1516 3108 1738 3108 1514 3108 1518 3109 1913 3109 1516 3109 1517 3110 1913 3110 1518 3110 1677 3111 1915 3111 1517 3111 1517 3112 1915 3112 1913 3112 1519 3113 1892 3113 1677 3113 1677 3114 1892 3114 1915 3114 1520 3115 1521 3115 1519 3115 1519 3116 1521 3116 1892 3116 1674 3117 1667 3117 1520 3117 1520 3118 1667 3118 1522 3118 1520 3119 1522 3119 1521 3119 1672 3120 1671 3120 1674 3120 1674 3121 1671 3121 1667 3121 1522 3122 1667 3122 1665 3122 1665 3123 1667 3123 1668 3123 1522 3124 1665 3124 1523 3124 1523 3125 1665 3125 1662 3125 1523 3126 1662 3126 1660 3126 1892 3127 1521 3127 1524 3127 1892 3128 1524 3128 1525 3128 1892 3129 1525 3129 1912 3129 1912 3130 1525 3130 1657 3130 1912 3131 1657 3131 1526 3131 1912 3132 1526 3132 1916 3132 1916 3133 1526 3133 1811 3133 1811 3134 1526 3134 1527 3134 1527 3135 1526 3135 1528 3135 1527 3136 1528 3136 1808 3136 1808 3137 1528 3137 1529 3137 1808 3138 1529 3138 1803 3138 1803 3139 1529 3139 1805 3139 1805 3140 1529 3140 1530 3140 1805 3141 1530 3141 1801 3141 1801 3142 1530 3142 1843 3142 1801 3143 1843 3143 1842 3143 1529 3144 1528 3144 1531 3144 1531 3145 1528 3145 1655 3145 1531 3146 1655 3146 1532 3146 1532 3147 1655 3147 1652 3147 1652 3148 1655 3148 1533 3148 1532 3149 1651 3149 1531 3149 1645 3150 1843 3150 1530 3150 1534 3151 1838 3151 1645 3151 1645 3152 1838 3152 1843 3152 1643 3153 1838 3153 1534 3153 1640 3154 1839 3154 1643 3154 1643 3155 1839 3155 1838 3155 1538 3156 1626 3156 1640 3156 1640 3157 1626 3157 1625 3157 1640 3158 1625 3158 1839 3158 1839 3159 1625 3159 1535 3159 1839 3160 1535 3160 1844 3160 1844 3161 1535 3161 1536 3161 1844 3162 1536 3162 1537 3162 1844 3163 1537 3163 1622 3163 1844 3164 1622 3164 1840 3164 1840 3165 1622 3165 1789 3165 1840 3166 1789 3166 1841 3166 1638 3167 1631 3167 1538 3167 1538 3168 1631 3168 2070 3168 1538 3169 2070 3169 1626 3169 1626 3170 2070 3170 1627 3170 1627 3171 2070 3171 2149 3171 1627 3172 2149 3172 1629 3172 1539 3173 1540 3173 1638 3173 1638 3174 1540 3174 1631 3174 1631 3175 1634 3175 2070 3175 1789 3176 1622 3176 1785 3176 1785 3177 1622 3177 1541 3177 1785 3178 1541 3178 1783 3178 1783 3179 1541 3179 1780 3179 1780 3180 1541 3180 1615 3180 1780 3181 1615 3181 1777 3181 1777 3182 1615 3182 1614 3182 1777 3183 1614 3183 1776 3183 1776 3184 1614 3184 1890 3184 1541 3185 1621 3185 1615 3185 1615 3186 1621 3186 1617 3186 1617 3187 1621 3187 2047 3187 1617 3188 2047 3188 1542 3188 1620 3189 1543 3189 1621 3189 1621 3190 1543 3190 2047 3190 1544 3191 1868 3191 1614 3191 1614 3192 1868 3192 1890 3192 1545 3193 1868 3193 1544 3193 1612 3194 1868 3194 1545 3194 1611 3195 1891 3195 1612 3195 1612 3196 1891 3196 1868 3196 1547 3197 1550 3197 1611 3197 1611 3198 1550 3198 1867 3198 1611 3199 1867 3199 1891 3199 1546 3200 1604 3200 1547 3200 1547 3201 1604 3201 1596 3201 1547 3202 1596 3202 1550 3202 1606 3203 2139 3203 1546 3203 1546 3204 2139 3204 1604 3204 1604 3205 1602 3205 1309 3205 1604 3206 1309 3206 1596 3206 1596 3207 1309 3207 1548 3207 1548 3208 1309 3208 1311 3208 1548 3209 1311 3209 1549 3209 1867 3210 1550 3210 1551 3210 1867 3211 1551 3211 1595 3211 1867 3212 1595 3212 1552 3212 1867 3213 1552 3213 1887 3213 1887 3214 1552 3214 1553 3214 1887 3215 1553 3215 1765 3215 1887 3216 1765 3216 1889 3216 1765 3217 1553 3217 1763 3217 1763 3218 1553 3218 1593 3218 1763 3219 1593 3219 1762 3219 1762 3220 1593 3220 1554 3220 1762 3221 1554 3221 1758 3221 1758 3222 1554 3222 1757 3222 1757 3223 1554 3223 1556 3223 1757 3224 1556 3224 1755 3224 1755 3225 1556 3225 1862 3225 1554 3226 1593 3226 1555 3226 1555 3227 1593 3227 1592 3227 1555 3228 1592 3228 1319 3228 1319 3229 1592 3229 1387 3229 1387 3230 1592 3230 1590 3230 1319 3231 1588 3231 1555 3231 1584 3232 1863 3232 1556 3232 1556 3233 1863 3233 1862 3233 1557 3234 1863 3234 1584 3234 1558 3235 1863 3235 1557 3235 1560 3236 1864 3236 1558 3236 1558 3237 1864 3237 1863 3237 1559 3238 1561 3238 1560 3238 1560 3239 1561 3239 1562 3239 1560 3240 1562 3240 1864 3240 1864 3241 1562 3241 1563 3241 1864 3242 1563 3242 1573 3242 1864 3243 1573 3243 1845 3243 1845 3244 1573 3244 1564 3244 1845 3245 1564 3245 1568 3245 1845 3246 1568 3246 1865 3246 1865 3247 1568 3247 1745 3247 1567 3248 1577 3248 1559 3248 1559 3249 1577 3249 1578 3249 1559 3250 1578 3250 1561 3250 1561 3251 1578 3251 1565 3251 1565 3252 1578 3252 1576 3252 1565 3253 1576 3253 1566 3253 1580 3254 1399 3254 1567 3254 1567 3255 1399 3255 1577 3255 1745 3256 1568 3256 1741 3256 1741 3257 1568 3257 1515 3257 1741 3258 1515 3258 1742 3258 1516 3259 1913 3259 1908 3259 1516 3260 1908 3260 1507 3260 1507 3261 1908 3261 1509 3261 1509 3262 1908 3262 1821 3262 1821 3263 1908 3263 1820 3263 1820 3264 1908 3264 1914 3264 1820 3265 1914 3265 1813 3265 1813 3266 1914 3266 1916 3266 1813 3267 1916 3267 1811 3267 1776 3268 1890 3268 1774 3268 1774 3269 1890 3269 1889 3269 1774 3270 1889 3270 1768 3270 1768 3271 1889 3271 1773 3271 1773 3272 1889 3272 1766 3272 1766 3273 1889 3273 1765 3273 1755 3274 1862 3274 1569 3274 1755 3275 1569 3275 1756 3275 1756 3276 1569 3276 1751 3276 1751 3277 1569 3277 1866 3277 1751 3278 1866 3278 1747 3278 1747 3279 1866 3279 1745 3279 1745 3280 1866 3280 1865 3280 1801 3281 1842 3281 1799 3281 1799 3282 1842 3282 1841 3282 1799 3283 1841 3283 1792 3283 1792 3284 1841 3284 1791 3284 1791 3285 1841 3285 1786 3285 1786 3286 1841 3286 1789 3286 1514 3287 1738 3287 1737 3287 1507 3288 1738 3288 1516 3288 1683 3289 1511 3289 1685 3289 1685 3290 1511 3290 1570 3290 1685 3291 1570 3291 1684 3291 1684 3292 1570 3292 1512 3292 1684 3293 1512 3293 1734 3293 1734 3294 1512 3294 1515 3294 1734 3295 1515 3295 1686 3295 1686 3296 1515 3296 1568 3296 1686 3297 1568 3297 1571 3297 1571 3298 1568 3298 1564 3298 1571 3299 1564 3299 1687 3299 1687 3300 1564 3300 1573 3300 1687 3301 1573 3301 1572 3301 1572 3302 1573 3302 1563 3302 1572 3303 1563 3303 1688 3303 1688 3304 1563 3304 1562 3304 1688 3305 1562 3305 1689 3305 1689 3306 1562 3306 1561 3306 1689 3307 1561 3307 1690 3307 1690 3308 1561 3308 1565 3308 1690 3309 1565 3309 1574 3309 1574 3310 1565 3310 1566 3310 1574 3311 1566 3311 1575 3311 1575 3312 1566 3312 1576 3312 1575 3313 1576 3313 1691 3313 1691 3314 1576 3314 1578 3314 1032 3315 1691 3315 1579 3315 1578 3316 1579 3316 1691 3316 1577 3317 1579 3317 1578 3317 1579 3318 1577 3318 1032 3318 1032 3319 1577 3319 1692 3319 1692 3320 1577 3320 1399 3320 1692 3321 1399 3321 1581 3321 1581 3322 1399 3322 1580 3322 1581 3323 1580 3323 1582 3323 1582 3324 1580 3324 1567 3324 1582 3325 1567 3325 1583 3325 1583 3326 1567 3326 1559 3326 1583 3327 1559 3327 1693 3327 1693 3328 1559 3328 1560 3328 1693 3329 1560 3329 1694 3329 1694 3330 1560 3330 1558 3330 1694 3331 1558 3331 1695 3331 1695 3332 1558 3332 1557 3332 1695 3333 1557 3333 1696 3333 1696 3334 1557 3334 1584 3334 1696 3335 1584 3335 1697 3335 1697 3336 1584 3336 1556 3336 1697 3337 1556 3337 1585 3337 1585 3338 1556 3338 1554 3338 1585 3339 1554 3339 1586 3339 1586 3340 1554 3340 1555 3340 1586 3341 1555 3341 1587 3341 1587 3342 1555 3342 1588 3342 1587 3343 1588 3343 918 3343 918 3344 1588 3344 1319 3344 918 3345 1319 3345 916 3345 916 3346 1319 3346 1387 3346 916 3347 1387 3347 1589 3347 1589 3348 1387 3348 1590 3348 1589 3349 1590 3349 1591 3349 1591 3350 1590 3350 1592 3350 1591 3351 1592 3351 1699 3351 1699 3352 1592 3352 1593 3352 1699 3353 1593 3353 1700 3353 1700 3354 1593 3354 1553 3354 1700 3355 1553 3355 1594 3355 1594 3356 1553 3356 1552 3356 1594 3357 1552 3357 1701 3357 1701 3358 1552 3358 1595 3358 1701 3359 1595 3359 1702 3359 1702 3360 1595 3360 1551 3360 1702 3361 1551 3361 1703 3361 1703 3362 1551 3362 1550 3362 1703 3363 1550 3363 1707 3363 1707 3364 1550 3364 1596 3364 1707 3365 1596 3365 1597 3365 1597 3366 1596 3366 1548 3366 1597 3367 1548 3367 1598 3367 1598 3368 1548 3368 1549 3368 1598 3369 1549 3369 1599 3369 1599 3370 1549 3370 1311 3370 1599 3371 1311 3371 1600 3371 1600 3372 1311 3372 1309 3372 2665 3373 1601 3373 1603 3373 2665 3374 1603 3374 1604 3374 1601 3375 1602 3375 1603 3375 1604 3376 1603 3376 1602 3376 1309 3377 1602 3377 1601 3377 1600 3378 1309 3378 1601 3378 2665 3379 1604 3379 1605 3379 1605 3380 1604 3380 2139 3380 1605 3381 2139 3381 1708 3381 1708 3382 2139 3382 1606 3382 1708 3383 1606 3383 1607 3383 1607 3384 1606 3384 1546 3384 1607 3385 1546 3385 1608 3385 1608 3386 1546 3386 1547 3386 1608 3387 1547 3387 1609 3387 1609 3388 1547 3388 1611 3388 1609 3389 1611 3389 1610 3389 1610 3390 1611 3390 1612 3390 1610 3391 1612 3391 1613 3391 1613 3392 1612 3392 1545 3392 1613 3393 1545 3393 1704 3393 1704 3394 1545 3394 1544 3394 1704 3395 1544 3395 1705 3395 1705 3396 1544 3396 1614 3396 1705 3397 1614 3397 1709 3397 1709 3398 1614 3398 1615 3398 1709 3399 1615 3399 1712 3399 1712 3400 1615 3400 1617 3400 1712 3401 1617 3401 1616 3401 1616 3402 1617 3402 1542 3402 1616 3403 1542 3403 1713 3403 1713 3404 1542 3404 2047 3404 1713 3405 2047 3405 1618 3405 1618 3406 2047 3406 1543 3406 1618 3407 1543 3407 1619 3407 1619 3408 1543 3408 1620 3408 1619 3409 1620 3409 1711 3409 1711 3410 1620 3410 1621 3410 1711 3411 1621 3411 1710 3411 1710 3412 1621 3412 1541 3412 1710 3413 1541 3413 1733 3413 1733 3414 1541 3414 1622 3414 1733 3415 1622 3415 1714 3415 1714 3416 1622 3416 1537 3416 1714 3417 1537 3417 1623 3417 1623 3418 1537 3418 1536 3418 1623 3419 1536 3419 1715 3419 1715 3420 1536 3420 1535 3420 1715 3421 1535 3421 1624 3421 1624 3422 1535 3422 1625 3422 1624 3423 1625 3423 1716 3423 1716 3424 1625 3424 1626 3424 1716 3425 1626 3425 1628 3425 1628 3426 1626 3426 1627 3426 1628 3427 1627 3427 1630 3427 1630 3428 1627 3428 1629 3428 1630 3429 1629 3429 2643 3429 2643 3430 1629 3430 2149 3430 2643 3431 2149 3431 2636 3431 2636 3432 2149 3432 2070 3432 1635 3433 1633 3433 1636 3433 1635 3434 1636 3434 1632 3434 2070 3435 1633 3435 2636 3435 1631 3436 1632 3436 1634 3436 1634 3437 1636 3437 1633 3437 1632 3438 1636 3438 1634 3438 1633 3439 1635 3439 2636 3439 1634 3440 1633 3440 2070 3440 1632 3441 1631 3441 1718 3441 1718 3442 1631 3442 1540 3442 1718 3443 1540 3443 1637 3443 1637 3444 1540 3444 1539 3444 1637 3445 1539 3445 1717 3445 1717 3446 1539 3446 1638 3446 1717 3447 1638 3447 1639 3447 1639 3448 1638 3448 1538 3448 1639 3449 1538 3449 1641 3449 1641 3450 1538 3450 1640 3450 1641 3451 1640 3451 1642 3451 1642 3452 1640 3452 1643 3452 1642 3453 1643 3453 1644 3453 1644 3454 1643 3454 1534 3454 1644 3455 1534 3455 1646 3455 1646 3456 1534 3456 1645 3456 1646 3457 1645 3457 1647 3457 1647 3458 1645 3458 1530 3458 1647 3459 1530 3459 1720 3459 1720 3460 1530 3460 1529 3460 1720 3461 1529 3461 1648 3461 1648 3462 1529 3462 1531 3462 1648 3463 1531 3463 1649 3463 1649 3464 1531 3464 1651 3464 1649 3465 1651 3465 1650 3465 1650 3466 1651 3466 1532 3466 1650 3467 1532 3467 1653 3467 1653 3468 1532 3468 1652 3468 1653 3469 1652 3469 1654 3469 1654 3470 1652 3470 1533 3470 1654 3471 1533 3471 1721 3471 1721 3472 1533 3472 1655 3472 1721 3473 1655 3473 1656 3473 1656 3474 1655 3474 1528 3474 1656 3475 1528 3475 1732 3475 1732 3476 1528 3476 1526 3476 1732 3477 1526 3477 1722 3477 1722 3478 1526 3478 1657 3478 1722 3479 1657 3479 1658 3479 1658 3480 1657 3480 1525 3480 1658 3481 1525 3481 1723 3481 1723 3482 1525 3482 1524 3482 1723 3483 1524 3483 1725 3483 1725 3484 1524 3484 1521 3484 1725 3485 1521 3485 1724 3485 1724 3486 1521 3486 1522 3486 1724 3487 1522 3487 1729 3487 1729 3488 1522 3488 1523 3488 1729 3489 1523 3489 1659 3489 1659 3490 1523 3490 1660 3490 1659 3491 1660 3491 1661 3491 1661 3492 1660 3492 1662 3492 1661 3493 1662 3493 1664 3493 1664 3494 1662 3494 1665 3494 1668 3495 1666 3495 1663 3495 1665 3496 1663 3496 1664 3496 1663 3497 1669 3497 1664 3497 1668 3498 1663 3498 1665 3498 1667 3499 1666 3499 1668 3499 1663 3500 1666 3500 1669 3500 1666 3501 1667 3501 1728 3501 1728 3502 1667 3502 1671 3502 1728 3503 1671 3503 1670 3503 1670 3504 1671 3504 1672 3504 1670 3505 1672 3505 1673 3505 1673 3506 1672 3506 1674 3506 1673 3507 1674 3507 1675 3507 1675 3508 1674 3508 1520 3508 1675 3509 1520 3509 1676 3509 1676 3510 1520 3510 1519 3510 1676 3511 1519 3511 1726 3511 1726 3512 1519 3512 1677 3512 1726 3513 1677 3513 1678 3513 1678 3514 1677 3514 1517 3514 1678 3515 1517 3515 1727 3515 1727 3516 1517 3516 1518 3516 1727 3517 1518 3517 1730 3517 1730 3518 1518 3518 1516 3518 1730 3519 1516 3519 1731 3519 1731 3520 1516 3520 1514 3520 1731 3521 1514 3521 1679 3521 1679 3522 1514 3522 1513 3522 1679 3523 1513 3523 1680 3523 1680 3524 1513 3524 1682 3524 1680 3525 1682 3525 1681 3525 1681 3526 1682 3526 1510 3526 1681 3527 1510 3527 1683 3527 1683 3528 1510 3528 1511 3528 1680 3529 1681 3529 1679 3529 1679 3530 1681 3530 1683 3530 1679 3531 1683 3531 1684 3531 1684 3532 1683 3532 1685 3532 1684 3533 1734 3533 1679 3533 1679 3534 1734 3534 1731 3534 1731 3535 1734 3535 1740 3535 1731 3536 1740 3536 1736 3536 1686 3537 1743 3537 1734 3537 1571 3538 1850 3538 1686 3538 1686 3539 1850 3539 1854 3539 1687 3540 1850 3540 1571 3540 1572 3541 1846 3541 1687 3541 1687 3542 1846 3542 1850 3542 1688 3543 1846 3543 1572 3543 1689 3544 1693 3544 1688 3544 1688 3545 1693 3545 1852 3545 1688 3546 1852 3546 1846 3546 1690 3547 1691 3547 1689 3547 1689 3548 1691 3548 1583 3548 1689 3549 1583 3549 1693 3549 1574 3550 1575 3550 1690 3550 1690 3551 1575 3551 1691 3551 1691 3552 1032 3552 1583 3552 1583 3553 1032 3553 1582 3553 1582 3554 1032 3554 1692 3554 1582 3555 1692 3555 1581 3555 1852 3556 1693 3556 1694 3556 1852 3557 1694 3557 1695 3557 1852 3558 1695 3558 1696 3558 1852 3559 1696 3559 1849 3559 1849 3560 1696 3560 1697 3560 1849 3561 1697 3561 1848 3561 1848 3562 1697 3562 1754 3562 1848 3563 1754 3563 1752 3563 1754 3564 1697 3564 1759 3564 1759 3565 1697 3565 1585 3565 1759 3566 1585 3566 1760 3566 1760 3567 1585 3567 1699 3567 1760 3568 1699 3568 1761 3568 1761 3569 1699 3569 1698 3569 1698 3570 1699 3570 1700 3570 1698 3571 1700 3571 1764 3571 1764 3572 1700 3572 1872 3572 1699 3573 1585 3573 1591 3573 1591 3574 1585 3574 1586 3574 1591 3575 1586 3575 916 3575 916 3576 1586 3576 918 3576 918 3577 1586 3577 1587 3577 916 3578 1589 3578 1591 3578 1594 3579 1870 3579 1700 3579 1700 3580 1870 3580 1872 3580 1701 3581 1873 3581 1594 3581 1594 3582 1873 3582 1870 3582 1702 3583 1873 3583 1701 3583 1703 3584 1873 3584 1702 3584 1707 3585 1608 3585 1703 3585 1703 3586 1608 3586 1609 3586 1703 3587 1609 3587 1873 3587 1873 3588 1609 3588 1869 3588 1869 3589 1609 3589 1610 3589 1869 3590 1610 3590 1613 3590 1869 3591 1613 3591 1704 3591 1869 3592 1704 3592 1705 3592 1869 3593 1705 3593 1871 3593 1871 3594 1705 3594 1706 3594 1597 3595 1600 3595 1707 3595 1707 3596 1600 3596 2665 3596 1707 3597 2665 3597 1608 3597 1608 3598 2665 3598 1607 3598 1607 3599 2665 3599 1605 3599 1607 3600 1605 3600 1708 3600 1598 3601 1599 3601 1597 3601 1597 3602 1599 3602 1600 3602 1600 3603 1601 3603 2665 3603 1706 3604 1705 3604 1778 3604 1778 3605 1705 3605 1709 3605 1778 3606 1709 3606 1779 3606 1779 3607 1709 3607 1781 3607 1781 3608 1709 3608 1710 3608 1781 3609 1710 3609 1782 3609 1782 3610 1710 3610 1733 3610 1782 3611 1733 3611 1787 3611 1787 3612 1733 3612 1824 3612 1709 3613 1712 3613 1710 3613 1710 3614 1712 3614 1711 3614 1711 3615 1712 3615 1713 3615 1711 3616 1713 3616 1618 3616 1712 3617 1616 3617 1713 3617 1618 3618 1619 3618 1711 3618 1714 3619 1831 3619 1733 3619 1733 3620 1831 3620 1824 3620 1623 3621 1831 3621 1714 3621 1715 3622 1827 3622 1623 3622 1623 3623 1827 3623 1831 3623 1624 3624 1828 3624 1715 3624 1715 3625 1828 3625 1827 3625 1716 3626 1641 3626 1624 3626 1624 3627 1641 3627 1828 3627 1628 3628 2636 3628 1716 3628 1716 3629 2636 3629 1639 3629 1716 3630 1639 3630 1641 3630 1630 3631 2643 3631 1628 3631 1628 3632 2643 3632 2636 3632 1639 3633 2636 3633 1632 3633 1632 3634 2636 3634 1635 3634 1639 3635 1632 3635 1717 3635 1717 3636 1632 3636 1718 3636 1717 3637 1718 3637 1637 3637 1828 3638 1641 3638 1642 3638 1828 3639 1642 3639 1644 3639 1828 3640 1644 3640 1823 3640 1823 3641 1644 3641 1646 3641 1823 3642 1646 3642 1647 3642 1823 3643 1647 3643 1822 3643 1822 3644 1647 3644 1800 3644 1800 3645 1647 3645 1719 3645 1719 3646 1647 3646 1720 3646 1719 3647 1720 3647 1802 3647 1802 3648 1720 3648 1656 3648 1802 3649 1656 3649 1807 3649 1807 3650 1656 3650 1806 3650 1806 3651 1656 3651 1732 3651 1806 3652 1732 3652 1809 3652 1809 3653 1732 3653 1898 3653 1656 3654 1720 3654 1721 3654 1721 3655 1720 3655 1648 3655 1721 3656 1648 3656 1653 3656 1653 3657 1648 3657 1650 3657 1650 3658 1648 3658 1649 3658 1653 3659 1654 3659 1721 3659 1722 3660 1898 3660 1732 3660 1658 3661 1898 3661 1722 3661 1723 3662 1894 3662 1658 3662 1658 3663 1894 3663 1898 3663 1725 3664 1905 3664 1723 3664 1723 3665 1905 3665 1894 3665 1724 3666 1675 3666 1725 3666 1725 3667 1675 3667 1676 3667 1725 3668 1676 3668 1905 3668 1905 3669 1676 3669 1897 3669 1897 3670 1676 3670 1726 3670 1897 3671 1726 3671 1678 3671 1897 3672 1678 3672 1896 3672 1896 3673 1678 3673 1727 3673 1896 3674 1727 3674 1730 3674 1896 3675 1730 3675 1893 3675 1893 3676 1730 3676 1899 3676 1899 3677 1730 3677 1506 3677 1899 3678 1506 3678 1508 3678 1729 3679 1664 3679 1724 3679 1724 3680 1664 3680 1666 3680 1724 3681 1666 3681 1675 3681 1675 3682 1666 3682 1673 3682 1673 3683 1666 3683 1728 3683 1673 3684 1728 3684 1670 3684 1659 3685 1661 3685 1729 3685 1729 3686 1661 3686 1664 3686 1664 3687 1669 3687 1666 3687 1506 3688 1730 3688 1735 3688 1735 3689 1730 3689 1731 3689 1735 3690 1731 3690 1736 3690 1809 3691 1898 3691 1812 3691 1812 3692 1898 3692 1895 3692 1812 3693 1895 3693 1815 3693 1815 3694 1895 3694 1814 3694 1814 3695 1895 3695 1819 3695 1819 3696 1895 3696 1508 3696 1508 3697 1895 3697 1899 3697 1764 3698 1872 3698 1767 3698 1767 3699 1872 3699 1874 3699 1767 3700 1874 3700 1770 3700 1770 3701 1874 3701 1769 3701 1769 3702 1874 3702 1775 3702 1775 3703 1874 3703 1871 3703 1775 3704 1871 3704 1706 3704 1686 3705 1854 3705 1856 3705 1686 3706 1856 3706 1744 3706 1855 3707 1744 3707 1856 3707 1744 3708 1855 3708 1746 3708 1746 3709 1855 3709 1749 3709 1749 3710 1855 3710 1847 3710 1749 3711 1847 3711 1752 3711 1752 3712 1847 3712 1848 3712 1787 3713 1824 3713 1788 3713 1788 3714 1824 3714 1826 3714 1788 3715 1826 3715 1790 3715 1790 3716 1826 3716 1793 3716 1793 3717 1826 3717 1797 3717 1797 3718 1826 3718 1822 3718 1797 3719 1822 3719 1798 3719 1798 3720 1822 3720 1800 3720 1744 3721 1743 3721 1686 3721 1734 3722 1743 3722 1740 3722 1740 3723 1742 3723 1736 3723 1736 3724 1742 3724 1737 3724 1735 3725 1739 3725 1738 3725 1735 3726 1736 3726 1739 3726 1739 3727 1737 3727 1738 3727 1737 3728 1739 3728 1736 3728 1740 3729 1741 3729 1742 3729 1740 3730 1743 3730 1741 3730 1744 3731 1745 3731 1743 3731 1743 3732 1745 3732 1741 3732 1747 3733 1744 3733 1746 3733 1745 3734 1744 3734 1747 3734 1750 3735 1749 3735 1748 3735 1752 3736 1756 3736 1749 3736 1746 3737 1750 3737 1747 3737 1748 3738 1749 3738 1756 3738 1748 3739 1751 3739 1750 3739 1751 3740 1748 3740 1756 3740 1746 3741 1749 3741 1750 3741 1751 3742 1747 3742 1750 3742 1752 3743 1753 3743 1756 3743 1756 3744 1753 3744 1755 3744 1755 3745 1753 3745 1754 3745 1753 3746 1752 3746 1754 3746 1759 3747 1757 3747 1754 3747 1754 3748 1757 3748 1755 3748 1759 3749 1760 3749 1757 3749 1760 3750 1758 3750 1757 3750 1761 3751 1762 3751 1760 3751 1760 3752 1762 3752 1758 3752 1761 3753 1763 3753 1762 3753 1761 3754 1698 3754 1763 3754 1764 3755 1765 3755 1698 3755 1698 3756 1765 3756 1763 3756 1765 3757 1764 3757 1766 3757 1766 3758 1764 3758 1767 3758 1770 3759 1769 3759 1772 3759 1768 3760 1772 3760 1769 3760 1771 3761 1770 3761 1772 3761 1767 3762 1771 3762 1766 3762 1773 3763 1771 3763 1772 3763 1771 3764 1773 3764 1766 3764 1773 3765 1772 3765 1768 3765 1767 3766 1770 3766 1771 3766 1775 3767 1774 3767 1769 3767 1769 3768 1774 3768 1768 3768 1775 3769 1776 3769 1774 3769 1776 3770 1775 3770 1706 3770 1778 3771 1777 3771 1706 3771 1706 3772 1777 3772 1776 3772 1778 3773 1780 3773 1777 3773 1778 3774 1779 3774 1780 3774 1781 3775 1783 3775 1779 3775 1779 3776 1783 3776 1780 3776 1781 3777 1784 3777 1783 3777 1783 3778 1784 3778 1785 3778 1785 3779 1784 3779 1782 3779 1781 3780 1782 3780 1784 3780 1787 3781 1789 3781 1782 3781 1782 3782 1789 3782 1785 3782 1786 3783 1789 3783 1788 3783 1788 3784 1789 3784 1787 3784 1790 3785 1791 3785 1788 3785 1788 3786 1791 3786 1786 3786 1792 3787 1796 3787 1794 3787 1794 3788 1799 3788 1792 3788 1791 3789 1795 3789 1792 3789 1799 3790 1794 3790 1798 3790 1798 3791 1794 3791 1797 3791 1790 3792 1795 3792 1791 3792 1796 3793 1793 3793 1797 3793 1793 3794 1795 3794 1790 3794 1793 3795 1796 3795 1795 3795 1794 3796 1796 3796 1797 3796 1796 3797 1792 3797 1795 3797 1798 3798 1801 3798 1799 3798 1801 3799 1798 3799 1800 3799 1719 3800 1805 3800 1800 3800 1800 3801 1805 3801 1801 3801 1719 3802 1804 3802 1805 3802 1805 3803 1804 3803 1803 3803 1803 3804 1804 3804 1802 3804 1802 3805 1804 3805 1719 3805 1807 3806 1808 3806 1802 3806 1802 3807 1808 3807 1803 3807 1807 3808 1806 3808 1808 3808 1808 3809 1806 3809 1527 3809 1809 3810 1811 3810 1806 3810 1806 3811 1811 3811 1527 3811 1809 3812 1810 3812 1811 3812 1813 3813 1810 3813 1812 3813 1810 3814 1809 3814 1812 3814 1813 3815 1811 3815 1810 3815 1815 3816 1813 3816 1812 3816 1816 3817 1819 3817 1821 3817 1815 3818 1817 3818 1813 3818 1815 3819 1816 3819 1817 3819 1816 3820 1818 3820 1817 3820 1820 3821 1818 3821 1821 3821 1816 3822 1815 3822 1814 3822 1817 3823 1820 3823 1813 3823 1817 3824 1818 3824 1820 3824 1818 3825 1816 3825 1821 3825 1816 3826 1814 3826 1819 3826 1508 3827 1509 3827 1819 3827 1819 3828 1509 3828 1821 3828 1828 3829 1825 3829 1827 3829 1822 3830 1826 3830 1835 3830 1822 3831 1835 3831 1832 3831 1823 3832 1829 3832 1828 3832 1823 3833 1822 3833 1833 3833 1823 3834 1833 3834 1829 3834 1827 3835 1825 3835 1830 3835 1822 3836 1832 3836 1833 3836 1827 3837 1830 3837 1834 3837 1827 3838 1834 3838 1831 3838 1824 3839 1837 3839 1826 3839 1831 3840 1836 3840 1824 3840 1826 3841 1837 3841 1835 3841 1831 3842 1834 3842 1836 3842 1824 3843 1836 3843 1837 3843 1833 3844 1843 3844 1829 3844 1829 3845 1838 3845 1828 3845 1829 3846 1843 3846 1838 3846 1828 3847 1838 3847 1825 3847 1834 3848 1830 3848 1844 3848 1836 3849 1840 3849 1837 3849 1825 3850 1838 3850 1839 3850 1834 3851 1844 3851 1836 3851 1833 3852 1832 3852 1843 3852 1825 3853 1839 3853 1830 3853 1837 3854 1841 3854 1835 3854 1830 3855 1839 3855 1844 3855 1832 3856 1835 3856 1842 3856 1832 3857 1842 3857 1843 3857 1837 3858 1840 3858 1841 3858 1835 3859 1841 3859 1842 3859 1836 3860 1844 3860 1840 3860 1845 3861 1865 3861 1858 3861 1848 3862 1847 3862 1860 3862 1848 3863 1860 3863 1861 3863 1849 3864 1851 3864 1852 3864 1846 3865 1852 3865 1853 3865 1854 3866 1858 3866 1856 3866 1848 3867 1861 3867 1849 3867 1847 3868 1855 3868 1857 3868 1847 3869 1857 3869 1860 3869 1846 3870 1853 3870 1859 3870 1846 3871 1859 3871 1850 3871 1856 3872 1865 3872 1855 3872 1855 3873 1866 3873 1857 3873 1849 3874 1861 3874 1851 3874 1850 3875 1859 3875 1845 3875 1850 3876 1845 3876 1854 3876 1855 3877 1865 3877 1866 3877 1854 3878 1845 3878 1858 3878 1856 3879 1858 3879 1865 3879 1852 3880 1851 3880 1863 3880 1852 3881 1863 3881 1853 3881 1851 3882 1861 3882 1863 3882 1859 3883 1853 3883 1864 3883 1860 3884 1857 3884 1569 3884 1861 3885 1860 3885 1862 3885 1853 3886 1863 3886 1864 3886 1860 3887 1569 3887 1862 3887 1861 3888 1862 3888 1863 3888 1857 3889 1866 3889 1569 3889 1859 3890 1864 3890 1845 3890 1873 3891 1879 3891 1870 3891 1887 3892 1888 3892 1867 3892 1868 3893 1891 3893 1884 3893 1871 3894 1874 3894 1883 3894 1869 3895 1877 3895 1873 3895 1870 3896 1879 3896 1888 3896 1871 3897 1883 3897 1881 3897 1869 3898 1871 3898 1875 3898 1873 3899 1877 3899 1876 3899 1872 3900 1886 3900 1882 3900 1872 3901 1882 3901 1874 3901 1870 3902 1885 3902 1872 3902 1869 3903 1875 3903 1880 3903 1872 3904 1885 3904 1886 3904 1869 3905 1880 3905 1877 3905 1873 3906 1876 3906 1879 3906 1870 3907 1888 3907 1885 3907 1871 3908 1881 3908 1875 3908 1875 3909 1878 3909 1880 3909 1875 3910 1881 3910 1878 3910 1874 3911 1882 3911 1883 3911 1880 3912 1884 3912 1877 3912 1877 3913 1884 3913 1876 3913 1880 3914 1878 3914 1868 3914 1880 3915 1868 3915 1884 3915 1876 3916 1867 3916 1879 3916 1879 3917 1867 3917 1888 3917 1883 3918 1890 3918 1881 3918 1884 3919 1891 3919 1876 3919 1885 3920 1889 3920 1886 3920 1886 3921 1889 3921 1882 3921 1882 3922 1889 3922 1883 3922 1876 3923 1891 3923 1867 3923 1888 3924 1887 3924 1885 3924 1885 3925 1887 3925 1889 3925 1881 3926 1890 3926 1878 3926 1878 3927 1890 3927 1868 3927 1883 3928 1889 3928 1890 3928 1898 3929 1902 3929 1895 3929 1915 3930 1907 3930 1913 3930 1896 3931 1893 3931 1901 3931 1898 3932 1910 3932 1902 3932 1898 3933 1894 3933 1900 3933 1894 3934 1909 3934 1900 3934 1893 3935 1899 3935 1904 3935 1893 3936 1906 3936 1901 3936 1896 3937 1901 3937 1897 3937 1894 3938 1905 3938 1909 3938 1893 3939 1904 3939 1906 3939 1898 3940 1903 3940 1910 3940 1898 3941 1900 3941 1903 3941 1897 3942 1901 3942 1915 3942 1895 3943 1914 3943 1899 3943 1905 3944 1911 3944 1909 3944 1897 3945 1915 3945 1892 3945 1897 3946 1892 3946 1905 3946 1895 3947 1902 3947 1914 3947 1899 3948 1914 3948 1908 3948 1899 3949 1908 3949 1904 3949 1906 3950 1904 3950 1907 3950 1901 3951 1906 3951 1907 3951 1901 3952 1907 3952 1915 3952 1905 3953 1892 3953 1911 3953 1903 3954 1900 3954 1912 3954 1910 3955 1903 3955 1916 3955 1903 3956 1912 3956 1916 3956 1907 3957 1904 3957 1913 3957 1900 3958 1909 3958 1912 3958 1904 3959 1908 3959 1913 3959 1910 3960 1916 3960 1902 3960 1911 3961 1892 3961 1909 3961 1909 3962 1892 3962 1912 3962 1902 3963 1916 3963 1914 3963 2167 3964 2168 3964 1918 3964 1918 3965 2168 3965 1919 3965 1917 3966 1919 3966 1974 3966 1917 3967 1918 3967 1919 3967 2120 3968 2117 3968 1978 3968 1978 3969 2117 3969 1921 3969 1978 3970 1921 3970 1920 3970 2120 3971 2118 3971 2117 3971 2117 3972 1977 3972 1921 3972 1921 3973 1977 3973 1979 3973 1979 3974 1977 3974 2164 3974 1979 3975 2164 3975 2171 3975 1922 3976 2168 3976 1977 3976 1923 3977 2428 3977 1922 3977 1922 3978 2428 3978 2429 3978 1924 3979 2428 3979 1923 3979 1925 3980 2428 3980 1924 3980 1975 3981 2463 3981 1925 3981 1925 3982 2463 3982 2428 3982 1928 3983 1926 3983 1975 3983 1975 3984 1926 3984 2463 3984 1927 3985 2100 3985 1928 3985 1928 3986 2100 3986 1929 3986 1928 3987 1929 3987 1926 3987 2112 3988 2109 3988 1927 3988 1927 3989 2109 3989 2100 3989 1929 3990 2100 3990 10827 3990 10827 3991 2100 3991 2101 3991 1929 3992 10827 3992 2095 3992 2095 3993 10827 3993 10709 3993 2095 3994 10709 3994 2096 3994 2463 3995 1926 3995 1930 3995 2463 3996 1930 3996 2457 3996 2457 3997 1930 3997 1931 3997 2457 3998 1931 3998 1932 3998 2457 3999 1932 3999 2464 3999 2464 4000 1932 4000 1933 4000 2464 4001 1933 4001 2462 4001 2462 4002 1933 4002 2291 4002 2462 4003 2291 4003 2290 4003 2291 4004 1933 4004 2282 4004 2282 4005 1933 4005 1934 4005 2282 4006 1934 4006 2283 4006 2283 4007 1934 4007 1936 4007 2283 4008 1936 4008 2279 4008 2279 4009 1936 4009 2278 4009 2278 4010 1936 4010 1935 4010 2278 4011 1935 4011 2272 4011 2272 4012 1935 4012 2346 4012 1936 4013 1934 4013 1937 4013 1937 4014 1934 4014 2090 4014 1937 4015 2090 4015 1938 4015 1938 4016 2090 4016 10716 4016 10716 4017 2090 4017 2089 4017 1938 4018 2085 4018 1937 4018 1939 4019 2346 4019 1935 4019 2080 4020 2343 4020 1939 4020 1939 4021 2343 4021 2346 4021 1940 4022 2343 4022 2080 4022 2078 4023 2343 4023 1940 4023 1944 4024 2059 4024 2078 4024 2078 4025 2059 4025 2057 4025 2078 4026 2057 4026 2343 4026 2343 4027 2057 4027 2347 4027 2347 4028 2057 4028 1941 4028 2347 4029 1941 4029 2055 4029 2347 4030 2055 4030 2054 4030 2347 4031 2054 4031 2344 4031 2344 4032 2054 4032 1942 4032 2344 4033 1942 4033 2256 4033 2344 4034 2256 4034 2305 4034 1943 4035 2065 4035 1944 4035 1944 4036 2065 4036 3583 4036 1944 4037 3583 4037 2059 4037 2059 4038 3583 4038 1945 4038 1945 4039 3583 4039 3579 4039 1945 4040 3579 4040 1946 4040 2075 4041 2073 4041 1943 4041 1943 4042 2073 4042 2065 4042 2065 4043 2067 4043 3583 4043 2256 4044 1942 4044 2250 4044 2250 4045 1942 4045 1947 4045 2250 4046 1947 4046 2249 4046 2249 4047 1947 4047 2245 4047 2245 4048 1947 4048 1948 4048 2245 4049 1948 4049 2244 4049 2244 4050 1948 4050 1949 4050 2244 4051 1949 4051 2237 4051 2237 4052 1949 4052 2421 4052 1947 4053 2052 4053 1948 4053 1948 4054 2052 4054 2046 4054 2046 4055 2052 4055 3567 4055 2046 4056 3567 4056 2048 4056 2050 4057 2049 4057 2052 4057 2052 4058 2049 4058 3567 4058 2043 4059 2416 4059 1949 4059 1950 4060 2416 4060 2043 4060 2041 4061 2424 4061 1950 4061 1950 4062 2424 4062 2416 4062 2039 4063 2424 4063 2041 4063 1952 4064 1951 4064 2039 4064 2039 4065 1951 4065 2424 4065 2037 4066 3557 4066 1952 4066 1952 4067 3557 4067 2025 4067 1952 4068 2025 4068 1951 4068 1953 4069 3558 4069 2037 4069 2037 4070 3558 4070 3557 4070 3557 4071 2028 4071 2035 4071 3557 4072 2035 4072 2025 4072 2025 4073 2035 4073 1954 4073 1954 4074 2035 4074 1955 4074 1954 4075 1955 4075 2027 4075 2424 4076 1951 4076 2427 4076 2427 4077 1951 4077 1956 4077 2427 4078 1956 4078 2420 4078 2420 4079 1956 4079 2020 4079 2420 4080 2020 4080 2019 4080 2420 4081 2019 4081 2423 4081 2423 4082 2019 4082 2016 4082 2423 4083 2016 4083 2425 4083 2425 4084 2016 4084 2215 4084 2425 4085 2215 4085 2426 4085 2215 4086 2016 4086 2208 4086 2208 4087 2016 4087 2015 4087 2208 4088 2015 4088 2207 4088 2207 4089 2015 4089 1958 4089 2207 4090 1958 4090 2205 4090 2205 4091 1958 4091 2204 4091 2204 4092 1958 4092 1957 4092 2204 4093 1957 4093 2196 4093 2196 4094 1957 4094 2383 4094 1958 4095 2015 4095 1959 4095 1959 4096 2015 4096 2014 4096 1959 4097 2014 4097 1960 4097 1960 4098 2014 4098 1961 4098 1961 4099 2014 4099 2013 4099 1960 4100 2009 4100 1959 4100 1962 4101 2381 4101 1957 4101 1963 4102 2385 4102 1962 4102 1962 4103 2385 4103 2381 4103 1964 4104 2385 4104 1963 4104 2003 4105 2384 4105 1964 4105 1964 4106 2384 4106 2385 4106 1970 4107 1985 4107 2003 4107 2003 4108 1985 4108 1965 4108 2003 4109 1965 4109 2384 4109 2384 4110 1965 4110 1966 4110 2384 4111 1966 4111 1967 4111 2384 4112 1967 4112 2377 4112 2377 4113 1967 4113 1968 4113 2377 4114 1968 4114 1969 4114 2377 4115 1969 4115 2387 4115 2387 4116 1969 4116 2386 4116 2386 4117 1969 4117 2173 4117 1972 4118 1994 4118 1970 4118 1970 4119 1994 4119 1973 4119 1970 4120 1973 4120 1985 4120 1985 4121 1973 4121 1986 4121 1986 4122 1973 4122 1989 4122 1986 4123 1989 4123 1971 4123 2000 4124 1999 4124 1972 4124 1972 4125 1999 4125 1994 4125 1994 4126 1991 4126 1973 4126 2173 4127 1969 4127 2172 4127 2172 4128 1969 4128 1979 4128 2172 4129 1979 4129 2171 4129 1922 4130 2429 4130 1919 4130 1919 4131 2429 4131 1974 4131 1974 4132 2429 4132 2302 4132 2302 4133 2429 4133 2462 4133 2302 4134 2462 4134 2304 4134 2304 4135 2462 4135 2299 4135 2299 4136 2462 4136 2290 4136 1949 4137 2416 4137 2421 4137 2237 4138 2421 4138 2239 4138 2239 4139 2421 4139 2426 4139 2239 4140 2426 4140 2234 4140 2234 4141 2426 4141 1976 4141 1976 4142 2426 4142 2217 4142 2217 4143 2426 4143 2224 4143 2224 4144 2426 4144 2212 4144 2212 4145 2426 4145 2215 4145 1957 4146 2381 4146 2383 4146 2196 4147 2383 4147 2200 4147 2200 4148 2383 4148 2194 4148 2194 4149 2383 4149 2193 4149 2193 4150 2383 4150 2386 4150 2193 4151 2386 4151 2191 4151 2191 4152 2386 4152 2177 4152 2177 4153 2386 4153 2174 4153 2174 4154 2386 4154 2173 4154 2305 4155 2276 4155 2346 4155 2346 4156 2276 4156 2272 4156 2276 4157 2305 4157 2258 4157 2258 4158 2305 4158 2269 4158 2269 4159 2305 4159 2267 4159 2267 4160 2305 4160 2253 4160 2253 4161 2305 4161 2256 4161 1977 4162 2168 4162 2164 4162 1919 4163 2168 4163 1922 4163 2121 4164 1978 4164 2124 4164 2124 4165 1978 4165 1920 4165 2124 4166 1920 4166 2125 4166 2125 4167 1920 4167 1921 4167 2125 4168 1921 4168 2163 4168 2163 4169 1921 4169 1979 4169 2163 4170 1979 4170 1980 4170 1980 4171 1979 4171 1969 4171 1980 4172 1969 4172 2127 4172 2127 4173 1969 4173 1968 4173 2127 4174 1968 4174 1981 4174 1981 4175 1968 4175 1967 4175 1981 4176 1967 4176 2128 4176 2128 4177 1967 4177 1966 4177 2128 4178 1966 4178 1982 4178 1982 4179 1966 4179 1965 4179 1982 4180 1965 4180 1983 4180 1983 4181 1965 4181 1985 4181 1983 4182 1985 4182 1984 4182 1984 4183 1985 4183 1986 4183 1984 4184 1986 4184 1987 4184 1987 4185 1986 4185 1971 4185 1987 4186 1971 4186 1988 4186 1988 4187 1971 4187 1989 4187 1988 4188 1989 4188 1992 4188 1992 4189 1989 4189 1973 4189 1997 4190 1992 4190 1993 4190 1990 4191 1995 4191 1991 4191 1994 4192 1990 4192 1991 4192 1372 4193 1990 4193 1994 4193 1372 4194 1997 4194 1993 4194 1372 4195 1993 4195 1990 4195 1993 4196 1995 4196 1990 4196 1995 4197 1993 4197 1996 4197 1996 4198 1993 4198 1992 4198 1996 4199 1992 4199 1973 4199 1995 4200 1996 4200 1991 4200 1991 4201 1996 4201 1973 4201 1372 4202 1994 4202 1998 4202 1998 4203 1994 4203 1999 4203 1998 4204 1999 4204 2001 4204 2001 4205 1999 4205 2000 4205 2001 4206 2000 4206 2130 4206 2130 4207 2000 4207 1972 4207 2130 4208 1972 4208 2002 4208 2002 4209 1972 4209 1970 4209 2002 4210 1970 4210 2129 4210 2129 4211 1970 4211 2003 4211 2129 4212 2003 4212 2131 4212 2131 4213 2003 4213 1964 4213 2131 4214 1964 4214 2132 4214 2132 4215 1964 4215 1963 4215 2132 4216 1963 4216 2004 4216 2004 4217 1963 4217 1962 4217 2004 4218 1962 4218 2005 4218 2005 4219 1962 4219 1957 4219 2005 4220 1957 4220 2006 4220 2006 4221 1957 4221 1958 4221 2006 4222 1958 4222 2007 4222 2007 4223 1958 4223 1959 4223 2007 4224 1959 4224 2008 4224 2008 4225 1959 4225 2009 4225 2008 4226 2009 4226 2135 4226 2135 4227 2009 4227 1960 4227 2135 4228 1960 4228 2010 4228 2010 4229 1960 4229 1961 4229 2010 4230 1961 4230 2011 4230 2011 4231 1961 4231 2013 4231 2011 4232 2013 4232 2012 4232 2012 4233 2013 4233 2014 4233 2012 4234 2014 4234 2133 4234 2133 4235 2014 4235 2015 4235 2133 4236 2015 4236 2134 4236 2134 4237 2015 4237 2016 4237 2134 4238 2016 4238 2017 4238 2017 4239 2016 4239 2019 4239 2017 4240 2019 4240 2018 4240 2018 4241 2019 4241 2020 4241 2018 4242 2020 4242 2021 4242 2021 4243 2020 4243 1956 4243 2021 4244 1956 4244 2022 4244 2022 4245 1956 4245 1951 4245 2022 4246 1951 4246 2023 4246 2023 4247 1951 4247 2025 4247 2023 4248 2025 4248 2024 4248 2024 4249 2025 4249 1954 4249 2024 4250 1954 4250 2026 4250 2026 4251 1954 4251 2027 4251 2026 4252 2027 4252 1306 4252 1306 4253 2027 4253 1955 4253 1306 4254 1955 4254 2034 4254 2034 4255 1955 4255 2035 4255 1604 4256 2140 4256 2029 4256 2032 4257 2035 4257 2033 4257 2031 4258 2028 4258 3557 4258 2028 4259 2033 4259 2035 4259 2034 4260 2035 4260 2032 4260 1604 4261 2031 4261 3557 4261 2140 4262 2030 4262 2029 4262 2030 4263 2140 4263 2034 4263 1604 4264 2029 4264 2031 4264 2029 4265 2030 4265 2031 4265 2030 4266 2032 4266 2033 4266 2030 4267 2033 4267 2031 4267 2028 4268 2031 4268 2033 4268 2032 4269 2030 4269 2034 4269 1604 4270 3557 4270 2139 4270 2139 4271 3557 4271 3558 4271 2139 4272 3558 4272 2036 4272 2036 4273 3558 4273 1953 4273 2036 4274 1953 4274 2138 4274 2138 4275 1953 4275 2037 4275 2138 4276 2037 4276 2038 4276 2038 4277 2037 4277 1952 4277 2038 4278 1952 4278 2136 4278 2136 4279 1952 4279 2039 4279 2136 4280 2039 4280 2040 4280 2040 4281 2039 4281 2041 4281 2040 4282 2041 4282 2137 4282 2137 4283 2041 4283 1950 4283 2137 4284 1950 4284 2042 4284 2042 4285 1950 4285 2043 4285 2042 4286 2043 4286 2044 4286 2044 4287 2043 4287 1949 4287 2044 4288 1949 4288 2141 4288 2141 4289 1949 4289 1948 4289 2141 4290 1948 4290 2045 4290 2045 4291 1948 4291 2046 4291 2045 4292 2046 4292 2144 4292 2144 4293 2046 4293 2048 4293 2144 4294 2048 4294 2047 4294 2047 4295 2048 4295 3567 4295 2047 4296 3567 4296 1543 4296 1543 4297 3567 4297 2049 4297 1543 4298 2049 4298 2051 4298 2051 4299 2049 4299 2050 4299 2051 4300 2050 4300 2143 4300 2143 4301 2050 4301 2052 4301 2143 4302 2052 4302 2142 4302 2142 4303 2052 4303 1947 4303 2142 4304 1947 4304 2053 4304 2053 4305 1947 4305 1942 4305 2053 4306 1942 4306 2145 4306 2145 4307 1942 4307 2054 4307 2145 4308 2054 4308 2056 4308 2056 4309 2054 4309 2055 4309 2056 4310 2055 4310 2146 4310 2146 4311 2055 4311 1941 4311 2146 4312 1941 4312 2148 4312 2148 4313 1941 4313 2057 4313 2148 4314 2057 4314 2147 4314 2147 4315 2057 4315 2059 4315 2147 4316 2059 4316 2058 4316 2058 4317 2059 4317 1945 4317 2058 4318 1945 4318 2060 4318 2060 4319 1945 4319 1946 4319 2060 4320 1946 4320 2149 4320 2149 4321 1946 4321 3579 4321 2149 4322 3579 4322 2070 4322 2070 4323 3579 4323 3583 4323 2069 4324 2071 4324 2068 4324 2066 4325 2063 4325 2064 4325 2061 4326 2066 4326 2065 4326 2064 4327 3583 4327 2066 4327 2066 4328 2067 4328 2065 4328 3583 4329 2064 4329 2070 4329 2062 4330 2061 4330 2065 4330 2069 4331 2068 4331 2062 4331 2071 4332 2069 4332 2070 4332 2062 4333 2068 4333 2061 4333 2063 4334 2068 4334 2064 4334 2063 4335 2066 4335 2061 4335 2067 4336 2066 4336 3583 4336 2061 4337 2068 4337 2063 4337 2068 4338 2071 4338 2064 4338 2070 4339 2064 4339 2071 4339 2062 4340 2065 4340 2072 4340 2072 4341 2065 4341 2073 4341 2072 4342 2073 4342 2074 4342 2074 4343 2073 4343 2075 4343 2074 4344 2075 4344 2076 4344 2076 4345 2075 4345 1943 4345 2076 4346 1943 4346 2077 4346 2077 4347 1943 4347 1944 4347 2077 4348 1944 4348 2150 4348 2150 4349 1944 4349 2078 4349 2150 4350 2078 4350 2151 4350 2151 4351 2078 4351 1940 4351 2151 4352 1940 4352 2079 4352 2079 4353 1940 4353 2080 4353 2079 4354 2080 4354 2081 4354 2081 4355 2080 4355 1939 4355 2081 4356 1939 4356 2152 4356 2152 4357 1939 4357 1935 4357 2152 4358 1935 4358 2082 4358 2082 4359 1935 4359 1936 4359 2082 4360 1936 4360 2083 4360 2083 4361 1936 4361 1937 4361 2083 4362 1937 4362 2084 4362 2084 4363 1937 4363 2085 4363 2084 4364 2085 4364 2086 4364 2086 4365 2085 4365 1938 4365 2086 4366 1938 4366 2087 4366 2087 4367 1938 4367 10716 4367 2087 4368 10716 4368 2088 4368 2088 4369 10716 4369 2089 4369 2088 4370 2089 4370 2155 4370 2155 4371 2089 4371 2090 4371 2155 4372 2090 4372 2153 4372 2153 4373 2090 4373 1934 4373 2153 4374 1934 4374 2154 4374 2154 4375 1934 4375 1933 4375 2154 4376 1933 4376 2156 4376 2156 4377 1933 4377 1932 4377 2156 4378 1932 4378 2091 4378 2091 4379 1932 4379 1931 4379 2091 4380 1931 4380 2092 4380 2092 4381 1931 4381 1930 4381 2092 4382 1930 4382 2158 4382 2158 4383 1930 4383 1926 4383 2158 4384 1926 4384 2093 4384 2093 4385 1926 4385 1929 4385 2093 4386 1929 4386 2162 4386 2162 4387 1929 4387 2095 4387 2162 4388 2095 4388 2094 4388 2094 4389 2095 4389 2096 4389 2094 4390 2096 4390 2097 4390 2097 4391 2096 4391 10709 4391 2097 4392 10709 4392 2098 4392 2098 4393 10709 4393 10827 4393 2103 4394 2102 4394 2108 4394 2103 4395 2108 4395 2105 4395 2100 4396 2103 4396 2106 4396 10827 4397 2105 4397 2098 4397 2099 4398 2102 4398 2100 4398 2100 4399 2102 4399 2103 4399 2107 4400 2108 4400 2104 4400 2105 4401 2108 4401 2098 4401 2105 4402 2106 4402 2103 4402 2100 4403 2106 4403 2101 4403 2101 4404 2106 4404 10827 4404 2108 4405 2099 4405 2104 4405 2099 4406 2108 4406 2102 4406 2106 4407 2105 4407 10827 4407 2098 4408 2108 4408 2107 4408 2099 4409 2100 4409 2110 4409 2110 4410 2100 4410 2109 4410 2110 4411 2109 4411 2111 4411 2111 4412 2109 4412 2112 4412 2111 4413 2112 4413 2113 4413 2113 4414 2112 4414 1927 4414 2113 4415 1927 4415 2157 4415 2157 4416 1927 4416 1928 4416 2157 4417 1928 4417 2159 4417 2159 4418 1928 4418 1975 4418 2159 4419 1975 4419 2160 4419 2160 4420 1975 4420 1925 4420 2160 4421 1925 4421 2114 4421 2114 4422 1925 4422 1924 4422 2114 4423 1924 4423 2115 4423 2115 4424 1924 4424 1923 4424 2115 4425 1923 4425 2161 4425 2161 4426 1923 4426 1922 4426 2161 4427 1922 4427 2116 4427 2116 4428 1922 4428 1977 4428 2116 4429 1977 4429 2123 4429 2123 4430 1977 4430 2117 4430 2123 4431 2117 4431 2122 4431 2122 4432 2117 4432 2118 4432 2122 4433 2118 4433 2119 4433 2119 4434 2118 4434 2120 4434 2119 4435 2120 4435 2121 4435 2121 4436 2120 4436 1978 4436 2122 4437 2119 4437 2123 4437 2123 4438 2119 4438 2121 4438 2123 4439 2121 4439 2125 4439 2125 4440 2121 4440 2124 4440 2125 4441 2163 4441 2123 4441 2123 4442 2163 4442 2116 4442 2116 4443 2163 4443 2169 4443 2116 4444 2169 4444 2166 4444 1980 4445 2126 4445 2163 4445 2163 4446 2126 4446 2169 4446 2127 4447 2358 4447 1980 4447 1980 4448 2358 4448 2349 4448 1981 4449 2358 4449 2127 4449 2128 4450 2351 4450 1981 4450 1981 4451 2351 4451 2358 4451 1982 4452 2351 4452 2128 4452 1983 4453 2129 4453 1982 4453 1982 4454 2129 4454 2348 4454 1982 4455 2348 4455 2351 4455 1984 4456 1992 4456 1983 4456 1983 4457 1992 4457 2002 4457 1983 4458 2002 4458 2129 4458 1987 4459 1988 4459 1984 4459 1984 4460 1988 4460 1992 4460 1992 4461 1997 4461 1372 4461 1992 4462 1372 4462 2002 4462 2002 4463 1372 4463 2130 4463 2130 4464 1372 4464 1998 4464 2130 4465 1998 4465 2001 4465 2348 4466 2129 4466 2131 4466 2348 4467 2131 4467 2132 4467 2348 4468 2132 4468 2004 4468 2348 4469 2004 4469 2352 4469 2352 4470 2004 4470 2005 4470 2352 4471 2005 4471 2201 4471 2352 4472 2201 4472 2197 4472 2201 4473 2005 4473 2206 4473 2206 4474 2005 4474 2006 4474 2206 4475 2006 4475 2203 4475 2203 4476 2006 4476 2133 4476 2203 4477 2133 4477 2210 4477 2210 4478 2133 4478 2209 4478 2209 4479 2133 4479 2134 4479 2209 4480 2134 4480 2214 4480 2214 4481 2134 4481 2388 4481 2214 4482 2388 4482 2395 4482 2133 4483 2006 4483 2012 4483 2012 4484 2006 4484 2007 4484 2012 4485 2007 4485 2010 4485 2010 4486 2007 4486 2135 4486 2135 4487 2007 4487 2008 4487 2010 4488 2011 4488 2012 4488 2017 4489 2388 4489 2134 4489 2018 4490 2388 4490 2017 4490 2021 4491 2390 4491 2018 4491 2018 4492 2390 4492 2388 4492 2022 4493 2394 4493 2021 4493 2021 4494 2394 4494 2390 4494 2023 4495 2038 4495 2022 4495 2022 4496 2038 4496 2136 4496 2022 4497 2136 4497 2394 4497 2394 4498 2136 4498 2392 4498 2392 4499 2136 4499 2040 4499 2392 4500 2040 4500 2137 4500 2392 4501 2137 4501 2042 4501 2392 4502 2042 4502 2389 4502 2389 4503 2042 4503 2044 4503 2389 4504 2044 4504 2393 4504 2393 4505 2044 4505 2236 4505 2393 4506 2236 4506 2238 4506 2024 4507 2034 4507 2023 4507 2023 4508 2034 4508 1604 4508 2023 4509 1604 4509 2038 4509 2038 4510 1604 4510 2138 4510 2138 4511 1604 4511 2139 4511 2138 4512 2139 4512 2036 4512 2026 4513 1306 4513 2024 4513 2024 4514 1306 4514 2034 4514 2034 4515 2140 4515 1604 4515 2236 4516 2044 4516 2243 4516 2243 4517 2044 4517 2141 4517 2243 4518 2141 4518 2241 4518 2241 4519 2141 4519 2248 4519 2248 4520 2141 4520 2142 4520 2248 4521 2142 4521 2246 4521 2246 4522 2142 4522 2053 4522 2246 4523 2053 4523 2251 4523 2251 4524 2053 4524 2308 4524 2141 4525 2045 4525 2142 4525 2142 4526 2045 4526 2143 4526 2143 4527 2045 4527 2047 4527 2143 4528 2047 4528 1543 4528 2045 4529 2144 4529 2047 4529 1543 4530 2051 4530 2143 4530 2145 4531 2309 4531 2053 4531 2056 4532 2309 4532 2145 4532 2146 4533 2307 4533 2056 4533 2056 4534 2307 4534 2309 4534 2148 4535 2307 4535 2146 4535 2147 4536 2150 4536 2148 4536 2148 4537 2150 4537 2307 4537 2058 4538 2070 4538 2147 4538 2147 4539 2070 4539 2077 4539 2147 4540 2077 4540 2150 4540 2060 4541 2149 4541 2058 4541 2058 4542 2149 4542 2070 4542 2077 4543 2070 4543 2062 4543 2062 4544 2070 4544 2069 4544 2077 4545 2062 4545 2076 4545 2076 4546 2062 4546 2072 4546 2076 4547 2072 4547 2074 4547 2307 4548 2150 4548 2312 4548 2312 4549 2150 4549 2151 4549 2312 4550 2151 4550 2079 4550 2312 4551 2079 4551 2306 4551 2306 4552 2079 4552 2081 4552 2306 4553 2081 4553 2152 4553 2306 4554 2152 4554 2317 4554 2317 4555 2152 4555 2273 4555 2317 4556 2273 4556 2310 4556 2310 4557 2273 4557 2274 4557 2273 4558 2152 4558 2277 4558 2277 4559 2152 4559 2082 4559 2277 4560 2082 4560 2281 4560 2281 4561 2082 4561 2153 4561 2281 4562 2153 4562 2284 4562 2284 4563 2153 4563 2286 4563 2286 4564 2153 4564 2154 4564 2286 4565 2154 4565 2289 4565 2289 4566 2154 4566 2430 4566 2153 4567 2082 4567 2155 4567 2155 4568 2082 4568 2083 4568 2155 4569 2083 4569 2087 4569 2087 4570 2083 4570 2086 4570 2086 4571 2083 4571 2084 4571 2087 4572 2088 4572 2155 4572 2156 4573 2437 4573 2154 4573 2154 4574 2437 4574 2430 4574 2091 4575 2437 4575 2156 4575 2092 4576 2433 4576 2091 4576 2091 4577 2433 4577 2437 4577 2158 4578 2433 4578 2092 4578 2093 4579 2157 4579 2158 4579 2158 4580 2157 4580 2159 4580 2158 4581 2159 4581 2433 4581 2433 4582 2159 4582 2431 4582 2431 4583 2159 4583 2160 4583 2431 4584 2160 4584 2114 4584 2431 4585 2114 4585 2115 4585 2431 4586 2115 4586 2161 4586 2431 4587 2161 4587 2434 4587 2434 4588 2161 4588 1918 4588 2434 4589 1918 4589 2440 4589 2162 4590 2098 4590 2093 4590 2093 4591 2098 4591 2099 4591 2093 4592 2099 4592 2157 4592 2157 4593 2099 4593 2113 4593 2113 4594 2099 4594 2110 4594 2113 4595 2110 4595 2111 4595 2094 4596 2097 4596 2162 4596 2162 4597 2097 4597 2098 4597 2098 4598 2107 4598 2104 4598 2098 4599 2104 4599 2099 4599 1918 4600 2161 4600 2167 4600 2167 4601 2161 4601 2116 4601 2167 4602 2116 4602 2166 4602 2289 4603 2430 4603 2288 4603 2288 4604 2430 4604 2293 4604 2293 4605 2430 4605 2301 4605 2301 4606 2430 4606 2440 4606 2301 4607 2440 4607 2292 4607 2292 4608 2440 4608 1917 4608 1917 4609 2440 4609 1918 4609 2214 4610 2395 4610 2213 4610 2213 4611 2395 4611 2220 4611 2220 4612 2395 4612 2396 4612 2220 4613 2396 4613 2232 4613 2232 4614 2396 4614 2218 4614 2218 4615 2396 4615 2238 4615 2238 4616 2396 4616 2393 4616 1980 4617 2349 4617 2354 4617 1980 4618 2354 4618 2176 4618 2176 4619 2354 4619 2175 4619 2175 4620 2354 4620 2187 4620 2187 4621 2354 4621 2350 4621 2187 4622 2350 4622 2178 4622 2178 4623 2350 4623 2195 4623 2195 4624 2350 4624 2197 4624 2197 4625 2350 4625 2352 4625 2053 4626 2309 4626 2308 4626 2251 4627 2308 4627 2255 4627 2255 4628 2308 4628 2310 4628 2255 4629 2310 4629 2252 4629 2252 4630 2310 4630 2263 4630 2263 4631 2310 4631 2270 4631 2270 4632 2310 4632 2257 4632 2257 4633 2310 4633 2274 4633 2176 4634 2126 4634 1980 4634 2169 4635 2171 4635 2166 4635 2166 4636 2171 4636 2164 4636 2168 4637 2167 4637 2165 4637 2167 4638 2166 4638 2165 4638 2164 4639 2165 4639 2166 4639 2168 4640 2165 4640 2164 4640 2169 4641 2170 4641 2171 4641 2172 4642 2170 4642 2126 4642 2170 4643 2169 4643 2126 4643 2170 4644 2172 4644 2171 4644 2176 4645 2173 4645 2126 4645 2126 4646 2173 4646 2172 4646 2176 4647 2174 4647 2173 4647 2174 4648 2176 4648 2175 4648 2187 4649 2177 4649 2175 4649 2175 4650 2177 4650 2174 4650 2182 4651 2185 4651 2189 4651 2187 4652 2182 4652 2188 4652 2177 4653 2192 4653 2191 4653 2194 4654 2183 4654 2195 4654 2187 4655 2184 4655 2177 4655 2177 4656 2184 4656 2186 4656 2178 4657 2179 4657 2180 4657 2185 4658 2180 4658 2179 4658 2183 4659 2185 4659 2179 4659 2187 4660 2180 4660 2182 4660 2187 4661 2182 4661 2181 4661 2188 4662 2185 4662 2184 4662 2188 4663 2184 4663 2187 4663 2184 4664 2185 4664 2186 4664 2185 4665 2192 4665 2186 4665 2177 4666 2186 4666 2190 4666 2186 4667 2192 4667 2190 4667 2192 4668 2193 4668 2191 4668 2180 4669 2187 4669 2178 4669 2182 4670 2187 4670 2181 4670 2192 4671 2177 4671 2190 4671 2185 4672 2182 4672 2180 4672 2185 4673 2188 4673 2189 4673 2185 4674 2183 4674 2192 4674 2193 4675 2183 4675 2194 4675 2192 4676 2183 4676 2193 4676 2179 4677 2178 4677 2195 4677 2183 4678 2179 4678 2195 4678 2197 4679 2200 4679 2195 4679 2195 4680 2200 4680 2194 4680 2200 4681 2197 4681 2198 4681 2201 4682 2196 4682 2198 4682 2198 4683 2197 4683 2201 4683 2199 4684 2198 4684 2196 4684 2200 4685 2199 4685 2196 4685 2199 4686 2200 4686 2198 4686 2206 4687 2204 4687 2201 4687 2201 4688 2204 4688 2196 4688 2204 4689 2202 4689 2205 4689 2205 4690 2202 4690 2203 4690 2204 4691 2206 4691 2202 4691 2202 4692 2206 4692 2203 4692 2210 4693 2207 4693 2203 4693 2203 4694 2207 4694 2205 4694 2207 4695 2210 4695 2211 4695 2208 4696 2211 4696 2209 4696 2211 4697 2208 4697 2207 4697 2209 4698 2211 4698 2210 4698 2214 4699 2215 4699 2209 4699 2209 4700 2215 4700 2208 4700 2212 4701 2216 4701 2213 4701 2213 4702 2216 4702 2214 4702 2215 4703 2216 4703 2212 4703 2215 4704 2214 4704 2216 4704 2220 4705 2224 4705 2213 4705 2213 4706 2224 4706 2212 4706 2219 4707 2218 4707 2233 4707 2230 4708 2233 4708 2223 4708 2222 4709 2221 4709 2223 4709 2226 4710 2223 4710 2227 4710 2224 4711 2227 4711 2217 4711 2234 4712 2233 4712 2218 4712 2220 4713 2221 4713 2224 4713 2232 4714 2229 4714 2220 4714 2220 4715 2229 4715 2225 4715 2229 4716 2230 4716 2225 4716 2230 4717 2223 4717 2225 4717 2220 4718 2225 4718 2221 4718 2225 4719 2223 4719 2221 4719 2235 4720 2233 4720 2234 4720 2222 4721 2226 4721 2224 4721 2228 4722 2223 4722 2226 4722 2223 4723 2231 4723 2227 4723 2231 4724 2223 4724 2235 4724 2227 4725 2231 4725 2217 4725 2217 4726 2231 4726 1976 4726 2224 4727 2221 4727 2222 4727 2227 4728 2224 4728 2226 4728 2223 4729 2228 4729 2222 4729 2232 4730 2219 4730 2229 4730 2229 4731 2219 4731 2230 4731 2230 4732 2219 4732 2233 4732 2223 4733 2233 4733 2235 4733 1976 4734 2235 4734 2234 4734 2231 4735 2235 4735 1976 4735 2219 4736 2232 4736 2218 4736 2238 4737 2239 4737 2218 4737 2218 4738 2239 4738 2234 4738 2239 4739 2238 4739 2240 4739 2240 4740 2237 4740 2239 4740 2238 4741 2236 4741 2240 4741 2237 4742 2240 4742 2236 4742 2243 4743 2244 4743 2236 4743 2236 4744 2244 4744 2237 4744 2244 4745 2243 4745 2242 4745 2244 4746 2242 4746 2245 4746 2245 4747 2242 4747 2241 4747 2242 4748 2243 4748 2241 4748 2248 4749 2249 4749 2241 4749 2241 4750 2249 4750 2245 4750 2249 4751 2247 4751 2250 4751 2250 4752 2247 4752 2246 4752 2247 4753 2248 4753 2246 4753 2249 4754 2248 4754 2247 4754 2251 4755 2256 4755 2246 4755 2246 4756 2256 4756 2250 4756 2253 4757 2254 4757 2252 4757 2254 4758 2255 4758 2252 4758 2255 4759 2254 4759 2251 4759 2256 4760 2254 4760 2253 4760 2256 4761 2251 4761 2254 4761 2263 4762 2267 4762 2252 4762 2252 4763 2267 4763 2253 4763 2263 4764 2270 4764 2264 4764 2263 4765 2264 4765 2265 4765 2259 4766 2258 4766 2271 4766 2259 4767 2271 4767 2262 4767 2269 4768 2271 4768 2258 4768 2267 4769 2268 4769 2269 4769 2258 4770 2259 4770 2257 4770 2263 4771 2266 4771 2267 4771 2261 4772 2260 4772 2270 4772 2261 4773 2270 4773 2257 4773 2270 4774 2260 4774 2264 4774 2264 4775 2260 4775 2265 4775 2260 4776 2261 4776 2259 4776 2263 4777 2265 4777 2266 4777 2266 4778 2265 4778 2262 4778 2262 4779 2268 4779 2266 4779 2268 4780 2262 4780 2271 4780 2268 4781 2267 4781 2266 4781 2262 4782 2265 4782 2260 4782 2259 4783 2262 4783 2260 4783 2268 4784 2271 4784 2269 4784 2259 4785 2261 4785 2257 4785 2274 4786 2276 4786 2257 4786 2257 4787 2276 4787 2258 4787 2274 4788 2275 4788 2276 4788 2275 4789 2272 4789 2276 4789 2272 4790 2275 4790 2273 4790 2273 4791 2275 4791 2274 4791 2277 4792 2278 4792 2273 4792 2273 4793 2278 4793 2272 4793 2278 4794 2280 4794 2279 4794 2277 4795 2281 4795 2280 4795 2279 4796 2280 4796 2281 4796 2278 4797 2277 4797 2280 4797 2284 4798 2283 4798 2281 4798 2281 4799 2283 4799 2279 4799 2283 4800 2284 4800 2285 4800 2282 4801 2285 4801 2286 4801 2285 4802 2284 4802 2286 4802 2283 4803 2285 4803 2282 4803 2289 4804 2291 4804 2286 4804 2286 4805 2291 4805 2282 4805 2291 4806 2289 4806 2287 4806 2291 4807 2287 4807 2290 4807 2290 4808 2287 4808 2288 4808 2288 4809 2287 4809 2289 4809 2293 4810 2299 4810 2288 4810 2288 4811 2299 4811 2290 4811 2301 4812 2292 4812 2303 4812 2298 4813 2294 4813 2300 4813 2296 4814 2302 4814 2304 4814 2302 4815 2295 4815 2292 4815 2293 4816 2298 4816 2299 4816 2299 4817 2298 4817 2300 4817 2301 4818 2294 4818 2297 4818 2294 4819 2301 4819 2303 4819 2294 4820 2303 4820 2295 4820 2296 4821 2304 4821 2300 4821 2293 4822 2301 4822 2297 4822 2293 4823 2297 4823 2298 4823 2304 4824 2299 4824 2300 4824 2294 4825 2298 4825 2297 4825 2296 4826 2300 4826 2294 4826 2296 4827 2294 4827 2295 4827 2296 4828 2295 4828 2302 4828 2295 4829 2303 4829 2292 4829 1917 4830 1974 4830 2292 4830 2292 4831 1974 4831 2302 4831 2310 4832 2308 4832 2316 4832 2308 4833 2309 4833 2321 4833 2307 4834 2311 4834 2319 4834 2307 4835 2319 4835 2309 4835 2307 4836 2312 4836 2311 4836 2312 4837 2331 4837 2311 4837 2309 4838 2319 4838 2313 4838 2309 4839 2313 4839 2321 4839 2310 4840 2322 4840 2318 4840 2310 4841 2318 4841 2317 4841 2317 4842 2315 4842 2306 4842 2316 4843 2314 4843 2310 4843 2310 4844 2314 4844 2322 4844 2319 4845 2311 4845 2327 4845 2321 4846 2320 4846 2308 4846 2314 4847 2316 4847 2329 4847 2311 4848 2331 4848 2327 4848 2318 4849 2322 4849 2330 4849 2318 4850 2330 4850 2317 4850 2315 4851 2317 4851 2328 4851 2312 4852 2306 4852 2324 4852 2312 4853 2324 4853 2331 4853 2314 4854 2329 4854 2322 4854 2306 4855 2315 4855 2324 4855 2319 4856 2327 4856 2325 4856 2319 4857 2325 4857 2313 4857 2313 4858 2323 4858 2321 4858 2308 4859 2320 4859 2316 4859 2317 4860 2330 4860 2326 4860 2317 4861 2326 4861 2328 4861 2313 4862 2325 4862 2323 4862 2321 4863 2323 4863 2320 4863 2315 4864 2328 4864 2324 4864 2322 4865 2329 4865 2330 4865 2324 4866 2328 4866 2332 4866 2328 4867 2326 4867 2335 4867 2329 4868 2333 4868 2330 4868 2324 4869 2332 4869 2331 4869 2329 4870 2316 4870 2340 4870 2330 4871 2333 4871 2326 4871 2327 4872 2334 4872 2325 4872 2325 4873 2334 4873 2323 4873 2323 4874 2334 4874 2337 4874 2323 4875 2337 4875 2320 4875 2331 4876 2336 4876 2327 4876 2326 4877 2333 4877 2338 4877 2316 4878 2320 4878 2339 4878 2327 4879 2336 4879 2342 4879 2327 4880 2342 4880 2334 4880 2326 4881 2338 4881 2335 4881 2329 4882 2340 4882 2333 4882 2320 4883 2337 4883 2339 4883 2316 4884 2339 4884 2340 4884 2331 4885 2332 4885 2336 4885 2334 4886 2342 4886 2341 4886 2334 4887 2341 4887 2337 4887 2337 4888 2344 4888 2339 4888 2335 4889 2338 4889 2346 4889 2328 4890 2335 4890 2345 4890 2328 4891 2345 4891 2332 4891 2332 4892 2345 4892 2336 4892 2342 4893 2336 4893 2343 4893 2340 4894 2339 4894 2305 4894 2335 4895 2346 4895 2345 4895 2339 4896 2344 4896 2305 4896 2337 4897 2341 4897 2344 4897 2336 4898 2345 4898 2343 4898 2341 4899 2347 4899 2344 4899 2342 4900 2343 4900 2347 4900 2342 4901 2347 4901 2341 4901 2333 4902 2305 4902 2338 4902 2338 4903 2305 4903 2346 4903 2345 4904 2346 4904 2343 4904 2340 4905 2305 4905 2333 4905 2384 4906 2371 4906 2385 4906 2350 4907 2356 4907 2352 4907 2351 4908 2348 4908 2353 4908 2354 4909 2349 4909 2362 4909 2351 4910 2353 4910 2358 4910 2349 4911 2361 4911 2362 4911 2352 4912 2357 4912 2348 4912 2352 4913 2359 4913 2355 4913 2352 4914 2355 4914 2357 4914 2350 4915 2354 4915 2360 4915 2349 4916 2358 4916 2361 4916 2352 4917 2356 4917 2359 4917 2358 4918 2353 4918 2373 4918 2358 4919 2364 4919 2361 4919 2350 4920 2360 4920 2356 4920 2353 4921 2363 4921 2373 4921 2355 4922 2376 4922 2357 4922 2353 4923 2348 4923 2363 4923 2348 4924 2357 4924 2365 4924 2358 4925 2373 4925 2364 4925 2360 4926 2354 4926 2370 4926 2359 4927 2356 4927 2367 4927 2359 4928 2367 4928 2355 4928 2356 4929 2360 4929 2368 4929 2356 4930 2368 4930 2367 4930 2360 4931 2370 4931 2368 4931 2364 4932 2373 4932 2372 4932 2348 4933 2365 4933 2363 4933 2354 4934 2362 4934 2366 4934 2354 4935 2366 4935 2370 4935 2355 4936 2367 4936 2369 4936 2355 4937 2369 4937 2376 4937 2361 4938 2364 4938 2379 4938 2363 4939 2365 4939 2371 4939 2364 4940 2372 4940 2379 4940 2365 4941 2357 4941 2385 4941 2365 4942 2385 4942 2371 4942 2363 4943 2371 4943 2384 4943 2363 4944 2384 4944 2373 4944 2370 4945 2366 4945 2374 4945 2361 4946 2379 4946 2387 4946 2361 4947 2387 4947 2362 4947 2370 4948 2374 4948 2368 4948 2366 4949 2362 4949 2375 4949 2366 4950 2375 4950 2374 4950 2368 4951 2374 4951 2378 4951 2368 4952 2378 4952 2367 4952 2373 4953 2384 4953 2382 4953 2373 4954 2382 4954 2372 4954 2369 4955 2367 4955 2380 4955 2369 4956 2380 4956 2376 4956 2357 4957 2376 4957 2385 4957 2367 4958 2378 4958 2380 4958 2376 4959 2381 4959 2385 4959 2376 4960 2380 4960 2381 4960 2362 4961 2387 4961 2375 4961 2372 4962 2377 4962 2379 4962 2382 4963 2377 4963 2372 4963 2378 4964 2383 4964 2380 4964 2374 4965 2383 4965 2378 4965 2379 4966 2377 4966 2387 4966 2380 4967 2383 4967 2381 4967 2375 4968 2387 4968 2386 4968 2374 4969 2375 4969 2386 4969 2374 4970 2386 4970 2383 4970 2382 4971 2384 4971 2377 4971 2389 4972 2391 4972 2392 4972 2388 4973 2390 4973 2401 4973 2388 4974 2401 4974 2399 4974 2390 4975 2406 4975 2401 4975 2388 4976 2399 4976 2395 4976 2396 4977 2410 4977 2393 4977 2394 4978 2409 4978 2390 4978 2392 4979 2391 4979 2394 4979 2401 4980 2398 4980 2399 4980 2399 4981 2397 4981 2395 4981 2396 4982 2395 4982 2400 4982 2396 4983 2400 4983 2410 4983 2393 4984 2403 4984 2389 4984 2390 4985 2409 4985 2406 4985 2391 4986 2405 4986 2394 4986 2398 4987 2401 4987 2404 4987 2395 4988 2397 4988 2400 4988 2401 4989 2406 4989 2404 4989 2389 4990 2402 4990 2391 4990 2391 4991 2402 4991 2405 4991 2394 4992 2405 4992 2409 4992 2389 4993 2403 4993 2402 4993 2399 4994 2398 4994 2411 4994 2399 4995 2411 4995 2397 4995 2398 4996 2404 4996 2411 4996 2400 4997 2397 4997 2408 4997 2393 4998 2410 4998 2403 4998 2400 4999 2408 4999 2410 4999 2397 5000 2407 5000 2408 5000 2397 5001 2411 5001 2407 5001 2405 5002 2402 5002 2412 5002 2405 5003 2412 5003 2409 5003 2402 5004 2418 5004 2412 5004 2409 5005 2413 5005 2406 5005 2402 5006 2403 5006 2418 5006 2410 5007 2408 5007 2415 5007 2409 5008 2412 5008 2413 5008 2408 5009 2407 5009 2415 5009 2412 5010 2417 5010 2413 5010 2418 5011 2414 5011 2412 5011 2403 5012 2421 5012 2418 5012 2411 5013 2422 5013 2407 5013 2407 5014 2422 5014 2415 5014 2410 5015 2415 5015 2421 5015 2410 5016 2421 5016 2403 5016 2411 5017 2419 5017 2422 5017 2412 5018 2414 5018 2417 5018 2404 5019 2406 5019 2420 5019 2404 5020 2420 5020 2423 5020 2404 5021 2423 5021 2411 5021 2411 5022 2423 5022 2419 5022 2418 5023 2421 5023 2416 5023 2414 5024 2418 5024 2416 5024 2406 5025 2413 5025 2427 5025 2414 5026 2416 5026 2417 5026 2422 5027 2426 5027 2415 5027 2417 5028 2416 5028 2424 5028 2422 5029 2419 5029 2425 5029 2422 5030 2425 5030 2426 5030 2413 5031 2417 5031 2424 5031 2413 5032 2424 5032 2427 5032 2415 5033 2426 5033 2421 5033 2406 5034 2427 5034 2420 5034 2419 5035 2423 5035 2425 5035 2434 5036 2435 5036 2431 5036 2429 5037 2458 5037 2462 5037 2431 5038 2435 5038 2444 5038 2431 5039 2432 5039 2433 5039 2431 5040 2444 5040 2432 5040 2430 5041 2438 5041 2440 5041 2430 5042 2437 5042 2436 5042 2430 5043 2436 5043 2439 5043 2430 5044 2439 5044 2438 5044 2440 5045 2442 5045 2434 5045 2434 5046 2442 5046 2454 5046 2444 5047 2450 5047 2432 5047 2436 5048 2437 5048 2443 5048 2438 5049 2439 5049 2445 5049 2438 5050 2445 5050 2440 5050 2436 5051 2441 5051 2439 5051 2440 5052 2445 5052 2442 5052 2434 5053 2454 5053 2435 5053 2432 5054 2450 5054 2449 5054 2432 5055 2449 5055 2433 5055 2437 5056 2433 5056 2451 5056 2437 5057 2451 5057 2443 5057 2435 5058 2454 5058 2446 5058 2436 5059 2443 5059 2441 5059 2435 5060 2446 5060 2444 5060 2433 5061 2449 5061 2451 5061 2439 5062 2441 5062 2447 5062 2439 5063 2447 5063 2445 5063 2441 5064 2443 5064 2452 5064 2441 5065 2452 5065 2448 5065 2441 5066 2448 5066 2447 5066 2444 5067 2446 5067 2450 5067 2442 5068 2460 5068 2454 5068 2446 5069 2459 5069 2450 5069 2445 5070 2447 5070 2456 5070 2445 5071 2456 5071 2442 5071 2448 5072 2455 5072 2447 5072 2446 5073 2454 5073 2461 5073 2449 5074 2450 5074 2463 5074 2450 5075 2459 5075 2453 5075 2450 5076 2453 5076 2463 5076 2446 5077 2461 5077 2459 5077 2447 5078 2455 5078 2456 5078 2449 5079 2463 5079 2451 5079 2448 5080 2452 5080 2455 5080 2443 5081 2451 5081 2457 5081 2443 5082 2457 5082 2452 5082 2442 5083 2456 5083 2458 5083 2442 5084 2458 5084 2460 5084 2452 5085 2457 5085 2464 5085 2451 5086 2463 5086 2457 5086 2456 5087 2455 5087 2462 5087 2456 5088 2462 5088 2458 5088 2452 5089 2464 5089 2455 5089 2454 5090 2460 5090 2461 5090 2460 5091 2429 5091 2461 5091 2460 5092 2458 5092 2429 5092 2459 5093 2461 5093 2428 5093 2455 5094 2464 5094 2462 5094 2453 5095 2459 5095 2463 5095 2459 5096 2428 5096 2463 5096 2461 5097 2429 5097 2428 5097 2717 5098 2719 5098 2467 5098 2467 5099 2719 5099 2465 5099 2469 5100 2468 5100 2466 5100 2469 5101 2467 5101 2468 5101 2465 5102 2468 5102 2467 5102 2466 5103 2468 5103 2465 5103 2656 5104 2653 5104 3565 5104 3565 5105 2653 5105 2470 5105 3565 5106 2470 5106 2526 5106 2656 5107 2654 5107 2653 5107 2653 5108 2721 5108 2470 5108 2470 5109 2721 5109 2471 5109 2471 5110 2721 5110 2720 5110 2471 5111 2720 5111 2727 5111 2651 5112 2719 5112 2721 5112 2650 5113 2976 5113 2651 5113 2648 5114 2976 5114 2650 5114 2647 5115 3011 5115 2648 5115 2648 5116 3011 5116 2976 5116 2646 5117 3011 5117 2647 5117 2473 5118 2475 5118 2646 5118 2646 5119 2475 5119 3012 5119 2646 5120 3012 5120 3011 5120 2472 5121 2638 5121 2473 5121 2473 5122 2638 5122 2474 5122 2473 5123 2474 5123 2475 5123 2645 5124 2476 5124 2472 5124 2472 5125 2476 5125 2638 5125 2474 5126 2638 5126 2641 5126 2641 5127 2638 5127 2634 5127 2474 5128 2641 5128 2477 5128 2477 5129 2641 5129 2631 5129 2477 5130 2631 5130 2478 5130 3012 5131 2475 5131 2479 5131 3012 5132 2479 5132 2480 5132 3012 5133 2480 5133 3009 5133 3009 5134 2480 5134 2481 5134 3009 5135 2481 5135 2482 5135 3009 5136 2482 5136 3010 5136 3010 5137 2482 5137 2838 5137 3010 5138 2838 5138 2834 5138 2838 5139 2482 5139 2832 5139 2832 5140 2482 5140 2483 5140 2832 5141 2483 5141 2833 5141 2833 5142 2483 5142 2484 5142 2833 5143 2484 5143 2826 5143 2826 5144 2484 5144 2828 5144 2828 5145 2484 5145 2618 5145 2828 5146 2618 5146 2823 5146 2823 5147 2618 5147 2891 5147 2484 5148 2483 5148 2621 5148 2621 5149 2483 5149 2625 5149 2621 5150 2625 5150 11205 5150 11205 5151 2625 5151 11305 5151 11305 5152 2625 5152 2624 5152 11205 5153 2622 5153 2621 5153 2486 5154 2892 5154 2618 5154 2618 5155 2892 5155 2891 5155 2485 5156 2892 5156 2486 5156 2617 5157 2893 5157 2485 5157 2485 5158 2893 5158 2892 5158 2487 5159 2893 5159 2617 5159 2616 5160 2598 5160 2487 5160 2487 5161 2598 5161 2597 5161 2487 5162 2597 5162 2893 5162 2893 5163 2597 5163 2888 5163 2888 5164 2597 5164 2488 5164 2888 5165 2488 5165 2596 5165 2888 5166 2596 5166 2890 5166 2890 5167 2596 5167 2595 5167 2890 5168 2595 5168 2489 5168 2890 5169 2489 5169 2856 5169 2856 5170 2489 5170 2804 5170 2856 5171 2804 5171 2889 5171 2492 5172 2612 5172 2616 5172 2616 5173 2612 5173 2602 5173 2616 5174 2602 5174 2598 5174 2598 5175 2602 5175 2490 5175 2490 5176 2602 5176 2491 5176 2490 5177 2491 5177 2600 5177 2613 5178 11216 5178 2492 5178 2492 5179 11216 5179 2612 5179 2612 5180 2609 5180 2602 5180 2804 5181 2489 5181 2801 5181 2801 5182 2489 5182 2593 5182 2801 5183 2593 5183 2802 5183 2802 5184 2593 5184 2794 5184 2794 5185 2593 5185 2493 5185 2794 5186 2493 5186 2790 5186 2790 5187 2493 5187 2522 5187 2790 5188 2522 5188 2785 5188 2785 5189 2522 5189 2971 5189 2593 5190 2494 5190 2493 5190 2493 5191 2494 5191 2583 5191 2583 5192 2494 5192 2586 5192 2583 5193 2586 5193 2495 5193 2590 5194 2588 5194 2494 5194 2494 5195 2588 5195 2586 5195 2496 5196 2974 5196 2522 5196 2581 5197 2974 5197 2496 5197 2497 5198 2969 5198 2581 5198 2581 5199 2969 5199 2974 5199 2578 5200 2969 5200 2497 5200 2499 5201 2504 5201 2578 5201 2578 5202 2504 5202 2969 5202 2576 5203 2566 5203 2499 5203 2499 5204 2566 5204 2498 5204 2499 5205 2498 5205 2504 5205 2500 5206 2501 5206 2576 5206 2576 5207 2501 5207 2566 5207 2566 5208 2569 5208 2572 5208 2566 5209 2572 5209 2498 5209 2498 5210 2572 5210 2502 5210 2502 5211 2572 5211 2562 5211 2502 5212 2562 5212 2503 5212 2969 5213 2504 5213 2558 5213 2969 5214 2558 5214 2970 5214 2970 5215 2558 5215 2505 5215 2970 5216 2505 5216 2506 5216 2970 5217 2506 5217 2968 5217 2968 5218 2506 5218 2507 5218 2968 5219 2507 5219 2767 5219 2968 5220 2767 5220 2972 5220 2767 5221 2507 5221 2764 5221 2764 5222 2507 5222 2508 5222 2764 5223 2508 5223 2757 5223 2757 5224 2508 5224 2754 5224 2757 5225 2754 5225 2751 5225 2756 5226 2754 5226 2509 5226 2756 5227 2509 5227 2750 5227 2750 5228 2509 5228 2929 5228 2754 5229 2508 5229 2552 5229 2552 5230 2508 5230 2510 5230 2552 5231 2510 5231 2511 5231 2511 5232 2510 5232 2555 5232 2555 5233 2510 5233 2556 5233 2511 5234 2512 5234 2552 5234 2513 5235 2929 5235 2509 5235 2550 5236 2931 5236 2513 5236 2513 5237 2931 5237 2929 5237 2514 5238 2931 5238 2550 5238 2523 5239 2927 5239 2514 5239 2514 5240 2927 5240 2931 5240 2548 5241 2515 5241 2523 5241 2523 5242 2515 5242 2516 5242 2523 5243 2516 5243 2927 5243 2927 5244 2516 5244 2932 5244 2932 5245 2516 5245 2530 5245 2932 5246 2530 5246 2517 5246 2932 5247 2517 5247 2933 5247 2933 5248 2517 5248 2528 5248 2933 5249 2528 5249 2518 5249 2933 5250 2518 5250 2930 5250 2930 5251 2518 5251 2728 5251 2930 5252 2728 5252 2928 5252 2519 5253 2544 5253 2548 5253 2548 5254 2544 5254 3551 5254 2548 5255 3551 5255 2515 5255 2515 5256 3551 5256 2520 5256 2520 5257 3551 5257 2535 5257 2520 5258 2535 5258 2534 5258 2547 5259 2545 5259 2519 5259 2519 5260 2545 5260 2544 5260 2544 5261 2537 5261 3551 5261 2728 5262 2518 5262 2723 5262 2723 5263 2518 5263 2471 5263 2723 5264 2471 5264 2727 5264 2651 5265 2976 5265 3013 5265 2651 5266 3013 5266 2465 5266 3013 5267 2466 5267 2465 5267 2521 5268 2466 5268 3013 5268 2466 5269 2521 5269 2852 5269 2852 5270 2521 5270 2847 5270 2847 5271 2521 5271 2841 5271 2841 5272 2521 5272 2840 5272 2840 5273 2521 5273 2834 5273 2834 5274 2521 5274 3010 5274 2522 5275 2974 5275 2971 5275 2785 5276 2971 5276 2973 5276 2785 5277 2973 5277 2786 5277 2786 5278 2973 5278 2772 5278 2772 5279 2973 5279 2774 5279 2774 5280 2973 5280 2972 5280 2774 5281 2972 5281 2775 5281 2775 5282 2972 5282 2765 5282 2765 5283 2972 5283 2767 5283 2750 5284 2929 5284 2747 5284 2747 5285 2929 5285 2934 5285 2747 5286 2934 5286 2744 5286 2744 5287 2934 5287 2745 5287 2745 5288 2934 5288 2741 5288 2741 5289 2934 5289 2734 5289 2734 5290 2934 5290 2731 5290 2731 5291 2934 5291 2928 5291 2891 5292 2824 5292 2823 5292 2824 5293 2891 5293 2814 5293 2814 5294 2891 5294 2810 5294 2810 5295 2891 5295 2524 5295 2524 5296 2891 5296 2807 5296 2807 5297 2891 5297 2889 5297 2807 5298 2889 5298 2804 5298 2465 5299 2719 5299 2651 5299 1713 5300 3565 5300 2525 5300 2525 5301 3565 5301 2526 5301 2525 5302 2526 5302 2657 5302 2657 5303 2526 5303 2470 5303 2657 5304 2470 5304 2659 5304 2659 5305 2470 5305 2471 5305 2659 5306 2471 5306 2527 5306 2527 5307 2471 5307 2518 5307 2527 5308 2518 5308 2660 5308 2660 5309 2518 5309 2528 5309 2660 5310 2528 5310 2529 5310 2529 5311 2528 5311 2517 5311 2529 5312 2517 5312 2661 5312 2661 5313 2517 5313 2530 5313 2661 5314 2530 5314 2531 5314 2531 5315 2530 5315 2516 5315 2531 5316 2516 5316 2532 5316 2532 5317 2516 5317 2515 5317 2532 5318 2515 5318 2664 5318 2664 5319 2515 5319 2520 5319 2664 5320 2520 5320 2533 5320 2533 5321 2520 5321 2534 5321 2533 5322 2534 5322 1605 5322 1605 5323 2534 5323 2535 5323 1605 5324 2535 5324 2665 5324 2665 5325 2535 5325 3551 5325 2541 5326 2537 5326 2540 5326 3551 5327 2536 5327 2665 5327 2539 5328 2540 5328 2544 5328 2542 5329 2538 5329 2665 5329 2539 5330 2538 5330 2540 5330 2538 5331 2542 5331 2540 5331 2542 5332 2541 5332 2540 5332 2536 5333 2541 5333 2542 5333 2536 5334 2542 5334 2665 5334 2537 5335 2541 5335 3551 5335 2544 5336 2540 5336 2537 5336 3551 5337 2541 5337 2536 5337 2539 5338 2544 5338 2543 5338 2543 5339 2544 5339 2545 5339 2543 5340 2545 5340 2546 5340 2546 5341 2545 5341 2547 5341 2546 5342 2547 5342 2666 5342 2666 5343 2547 5343 2519 5343 2666 5344 2519 5344 2663 5344 2663 5345 2519 5345 2548 5345 2663 5346 2548 5346 2662 5346 2662 5347 2548 5347 2523 5347 2662 5348 2523 5348 2667 5348 2667 5349 2523 5349 2514 5349 2667 5350 2514 5350 2549 5350 2549 5351 2514 5351 2550 5351 2549 5352 2550 5352 2668 5352 2668 5353 2550 5353 2513 5353 2668 5354 2513 5354 2551 5354 2551 5355 2513 5355 2509 5355 2551 5356 2509 5356 2671 5356 2671 5357 2509 5357 2754 5357 2671 5358 2754 5358 2673 5358 2673 5359 2754 5359 2552 5359 2673 5360 2552 5360 2553 5360 2553 5361 2552 5361 2512 5361 2553 5362 2512 5362 929 5362 929 5363 2512 5363 2511 5363 929 5364 2511 5364 2674 5364 2674 5365 2511 5365 2555 5365 2674 5366 2555 5366 2554 5366 2554 5367 2555 5367 2556 5367 2554 5368 2556 5368 2672 5368 2672 5369 2556 5369 2510 5369 2672 5370 2510 5370 2669 5370 2669 5371 2510 5371 2508 5371 2669 5372 2508 5372 2670 5372 2670 5373 2508 5373 2507 5373 2670 5374 2507 5374 2557 5374 2557 5375 2507 5375 2506 5375 2557 5376 2506 5376 2676 5376 2676 5377 2506 5377 2505 5377 2676 5378 2505 5378 2675 5378 2675 5379 2505 5379 2558 5379 2675 5380 2558 5380 2713 5380 2713 5381 2558 5381 2504 5381 2713 5382 2504 5382 2559 5382 2559 5383 2504 5383 2498 5383 2559 5384 2498 5384 2560 5384 2560 5385 2498 5385 2502 5385 2560 5386 2502 5386 2561 5386 2561 5387 2502 5387 2503 5387 2561 5388 2503 5388 990 5388 990 5389 2503 5389 2562 5389 990 5390 2562 5390 987 5390 987 5391 2562 5391 2572 5391 2570 5392 2563 5392 2564 5392 2573 5393 2563 5393 987 5393 2571 5394 2570 5394 2564 5394 2567 5395 2564 5395 2573 5395 2567 5396 2568 5396 2569 5396 2572 5397 2573 5397 987 5397 2567 5398 2569 5398 2566 5398 2571 5399 2565 5399 2566 5399 2564 5400 2563 5400 2573 5400 2568 5401 2573 5401 2572 5401 2566 5402 2565 5402 2567 5402 2569 5403 2568 5403 2572 5403 2571 5404 2564 5404 2565 5404 2567 5405 2565 5405 2564 5405 2567 5406 2573 5406 2568 5406 2571 5407 2566 5407 2574 5407 2574 5408 2566 5408 2501 5408 2574 5409 2501 5409 2575 5409 2575 5410 2501 5410 2500 5410 2575 5411 2500 5411 2679 5411 2679 5412 2500 5412 2576 5412 2679 5413 2576 5413 2577 5413 2577 5414 2576 5414 2499 5414 2577 5415 2499 5415 2677 5415 2677 5416 2499 5416 2578 5416 2677 5417 2578 5417 2579 5417 2579 5418 2578 5418 2497 5418 2579 5419 2497 5419 2580 5419 2580 5420 2497 5420 2581 5420 2580 5421 2581 5421 2582 5421 2582 5422 2581 5422 2496 5422 2582 5423 2496 5423 2678 5423 2678 5424 2496 5424 2522 5424 2678 5425 2522 5425 2680 5425 2680 5426 2522 5426 2493 5426 2680 5427 2493 5427 2584 5427 2584 5428 2493 5428 2583 5428 2584 5429 2583 5429 2681 5429 2681 5430 2583 5430 2495 5430 2681 5431 2495 5431 2585 5431 2585 5432 2495 5432 2586 5432 2585 5433 2586 5433 2587 5433 2587 5434 2586 5434 2588 5434 2587 5435 2588 5435 2589 5435 2589 5436 2588 5436 2590 5436 2589 5437 2590 5437 2591 5437 2591 5438 2590 5438 2494 5438 2591 5439 2494 5439 2592 5439 2592 5440 2494 5440 2593 5440 2592 5441 2593 5441 2715 5441 2715 5442 2593 5442 2489 5442 2715 5443 2489 5443 2594 5443 2594 5444 2489 5444 2595 5444 2594 5445 2595 5445 2682 5445 2682 5446 2595 5446 2596 5446 2682 5447 2596 5447 2683 5447 2683 5448 2596 5448 2488 5448 2683 5449 2488 5449 2684 5449 2684 5450 2488 5450 2597 5450 2684 5451 2597 5451 2686 5451 2686 5452 2597 5452 2598 5452 2686 5453 2598 5453 2685 5453 2685 5454 2598 5454 2490 5454 2685 5455 2490 5455 2599 5455 2599 5456 2490 5456 2600 5456 2599 5457 2600 5457 2687 5457 2687 5458 2600 5458 2491 5458 2687 5459 2491 5459 2607 5459 2607 5460 2491 5460 2602 5460 2689 5461 2611 5461 2604 5461 2611 5462 2606 5462 2610 5462 2603 5463 2606 5463 2607 5463 2602 5464 2603 5464 2607 5464 2604 5465 2610 5465 2612 5465 2689 5466 2605 5466 2611 5466 2605 5467 2689 5467 2607 5467 2605 5468 2606 5468 2611 5468 2606 5469 2605 5469 2607 5469 2610 5470 2606 5470 2608 5470 2601 5471 2609 5471 2608 5471 2611 5472 2610 5472 2604 5472 2612 5473 2610 5473 2608 5473 2612 5474 2608 5474 2609 5474 2606 5475 2603 5475 2608 5475 2601 5476 2608 5476 2603 5476 2609 5477 2601 5477 2602 5477 2602 5478 2601 5478 2603 5478 2604 5479 2612 5479 2690 5479 2690 5480 2612 5480 11216 5480 2690 5481 11216 5481 2691 5481 2691 5482 11216 5482 2613 5482 2691 5483 2613 5483 2614 5483 2614 5484 2613 5484 2492 5484 2614 5485 2492 5485 2688 5485 2688 5486 2492 5486 2616 5486 2688 5487 2616 5487 2615 5487 2615 5488 2616 5488 2487 5488 2615 5489 2487 5489 2692 5489 2692 5490 2487 5490 2617 5490 2692 5491 2617 5491 2693 5491 2693 5492 2617 5492 2485 5492 2693 5493 2485 5493 2694 5493 2694 5494 2485 5494 2486 5494 2694 5495 2486 5495 2695 5495 2695 5496 2486 5496 2618 5496 2695 5497 2618 5497 2619 5497 2619 5498 2618 5498 2484 5498 2619 5499 2484 5499 2620 5499 2620 5500 2484 5500 2621 5500 2620 5501 2621 5501 2623 5501 2623 5502 2621 5502 2622 5502 2623 5503 2622 5503 2698 5503 2698 5504 2622 5504 11205 5504 2698 5505 11205 5505 2697 5505 2697 5506 11205 5506 11305 5506 2697 5507 11305 5507 2699 5507 2699 5508 11305 5508 2624 5508 2699 5509 2624 5509 2700 5509 2700 5510 2624 5510 2625 5510 2700 5511 2625 5511 2696 5511 2696 5512 2625 5512 2483 5512 2696 5513 2483 5513 2701 5513 2701 5514 2483 5514 2482 5514 2701 5515 2482 5515 2626 5515 2626 5516 2482 5516 2481 5516 2626 5517 2481 5517 2627 5517 2627 5518 2481 5518 2480 5518 2627 5519 2480 5519 2702 5519 2702 5520 2480 5520 2479 5520 2702 5521 2479 5521 2711 5521 2711 5522 2479 5522 2475 5522 2711 5523 2475 5523 2628 5523 2628 5524 2475 5524 2474 5524 2628 5525 2474 5525 2707 5525 2707 5526 2474 5526 2477 5526 2707 5527 2477 5527 2629 5527 2629 5528 2477 5528 2478 5528 2629 5529 2478 5529 2630 5529 2630 5530 2478 5530 2631 5530 2630 5531 2631 5531 2710 5531 2710 5532 2631 5532 2641 5532 2635 5533 2639 5533 2637 5533 2633 5534 2642 5534 2640 5534 2634 5535 2640 5535 2642 5535 2641 5536 2633 5536 2710 5536 2636 5537 2637 5537 2638 5537 2635 5538 2632 5538 2633 5538 2632 5539 2635 5539 2636 5539 2634 5540 2642 5540 2641 5540 2640 5541 2634 5541 2638 5541 2637 5542 2636 5542 2635 5542 2640 5543 2638 5543 2637 5543 2639 5544 2640 5544 2637 5544 2635 5545 2633 5545 2639 5545 2639 5546 2633 5546 2640 5546 2642 5547 2633 5547 2641 5547 2633 5548 2632 5548 2710 5548 2636 5549 2638 5549 2643 5549 2643 5550 2638 5550 2476 5550 2643 5551 2476 5551 2709 5551 2709 5552 2476 5552 2645 5552 2709 5553 2645 5553 2644 5553 2644 5554 2645 5554 2472 5554 2644 5555 2472 5555 2708 5555 2708 5556 2472 5556 2473 5556 2708 5557 2473 5557 2703 5557 2703 5558 2473 5558 2646 5558 2703 5559 2646 5559 2704 5559 2704 5560 2646 5560 2647 5560 2704 5561 2647 5561 2705 5561 2705 5562 2647 5562 2648 5562 2705 5563 2648 5563 2706 5563 2706 5564 2648 5564 2650 5564 2706 5565 2650 5565 2649 5565 2649 5566 2650 5566 2651 5566 2649 5567 2651 5567 2658 5567 2658 5568 2651 5568 2721 5568 2658 5569 2721 5569 2652 5569 2652 5570 2721 5570 2653 5570 2652 5571 2653 5571 2655 5571 2655 5572 2653 5572 2654 5572 2655 5573 2654 5573 1618 5573 1618 5574 2654 5574 2656 5574 1618 5575 2656 5575 1713 5575 1713 5576 2656 5576 3565 5576 2655 5577 1618 5577 2652 5577 2652 5578 1618 5578 1713 5578 2652 5579 1713 5579 2657 5579 2657 5580 1713 5580 2525 5580 2657 5581 2659 5581 2652 5581 2652 5582 2659 5582 2658 5582 2658 5583 2659 5583 2726 5583 2658 5584 2726 5584 2716 5584 2527 5585 2724 5585 2659 5585 2660 5586 2901 5586 2527 5586 2527 5587 2901 5587 2898 5587 2529 5588 2901 5588 2660 5588 2661 5589 2901 5589 2529 5589 2531 5590 2901 5590 2661 5590 2532 5591 2662 5591 2531 5591 2531 5592 2662 5592 2900 5592 2531 5593 2900 5593 2901 5593 2664 5594 2665 5594 2532 5594 2532 5595 2665 5595 2663 5595 2532 5596 2663 5596 2662 5596 2533 5597 1605 5597 2664 5597 2664 5598 1605 5598 2665 5598 2665 5599 2538 5599 2539 5599 2665 5600 2539 5600 2663 5600 2663 5601 2539 5601 2666 5601 2666 5602 2539 5602 2543 5602 2666 5603 2543 5603 2546 5603 2900 5604 2662 5604 2667 5604 2900 5605 2667 5605 2549 5605 2900 5606 2549 5606 2899 5606 2899 5607 2549 5607 2668 5607 2899 5608 2668 5608 2551 5608 2899 5609 2551 5609 2903 5609 2903 5610 2551 5610 2749 5610 2749 5611 2551 5611 2755 5611 2755 5612 2551 5612 2671 5612 2755 5613 2671 5613 2752 5613 2752 5614 2671 5614 2669 5614 2752 5615 2669 5615 2762 5615 2762 5616 2669 5616 2763 5616 2763 5617 2669 5617 2670 5617 2763 5618 2670 5618 2712 5618 2712 5619 2670 5619 2939 5619 2669 5620 2671 5620 2672 5620 2672 5621 2671 5621 2673 5621 2672 5622 2673 5622 2674 5622 2674 5623 2673 5623 929 5623 929 5624 2673 5624 2553 5624 2674 5625 2554 5625 2672 5625 2557 5626 2936 5626 2670 5626 2670 5627 2936 5627 2939 5627 2676 5628 2937 5628 2557 5628 2557 5629 2937 5629 2936 5629 2675 5630 2937 5630 2676 5630 2713 5631 2941 5631 2675 5631 2675 5632 2941 5632 2937 5632 2559 5633 2577 5633 2713 5633 2713 5634 2577 5634 2677 5634 2713 5635 2677 5635 2941 5635 2941 5636 2677 5636 2579 5636 2941 5637 2579 5637 2935 5637 2935 5638 2579 5638 2580 5638 2935 5639 2580 5639 2938 5639 2938 5640 2580 5640 2582 5640 2938 5641 2582 5641 2678 5641 2938 5642 2678 5642 2942 5642 2942 5643 2678 5643 2789 5643 2942 5644 2789 5644 2943 5644 2560 5645 987 5645 2559 5645 2559 5646 987 5646 2571 5646 2559 5647 2571 5647 2577 5647 2577 5648 2571 5648 2679 5648 2679 5649 2571 5649 2574 5649 2679 5650 2574 5650 2575 5650 2561 5651 990 5651 2560 5651 2560 5652 990 5652 987 5652 987 5653 2563 5653 2571 5653 2563 5654 2570 5654 2571 5654 2789 5655 2678 5655 2791 5655 2791 5656 2678 5656 2680 5656 2791 5657 2680 5657 2792 5657 2792 5658 2680 5658 2795 5658 2795 5659 2680 5659 2592 5659 2795 5660 2592 5660 2799 5660 2799 5661 2592 5661 2715 5661 2799 5662 2715 5662 2805 5662 2805 5663 2715 5663 2866 5663 2680 5664 2584 5664 2592 5664 2592 5665 2584 5665 2591 5665 2591 5666 2584 5666 2585 5666 2591 5667 2585 5667 2587 5667 2584 5668 2681 5668 2585 5668 2587 5669 2589 5669 2591 5669 2594 5670 2857 5670 2715 5670 2682 5671 2857 5671 2594 5671 2683 5672 2857 5672 2682 5672 2684 5673 2858 5673 2683 5673 2683 5674 2858 5674 2857 5674 2686 5675 2615 5675 2684 5675 2684 5676 2615 5676 2858 5676 2685 5677 2607 5677 2686 5677 2686 5678 2607 5678 2688 5678 2686 5679 2688 5679 2615 5679 2599 5680 2687 5680 2685 5680 2685 5681 2687 5681 2607 5681 2688 5682 2607 5682 2604 5682 2604 5683 2607 5683 2689 5683 2688 5684 2604 5684 2614 5684 2614 5685 2604 5685 2690 5685 2614 5686 2690 5686 2691 5686 2858 5687 2615 5687 2692 5687 2858 5688 2692 5688 2855 5688 2855 5689 2692 5689 2693 5689 2855 5690 2693 5690 2694 5690 2855 5691 2694 5691 2695 5691 2855 5692 2695 5692 2860 5692 2860 5693 2695 5693 2820 5693 2860 5694 2820 5694 2859 5694 2859 5695 2820 5695 2821 5695 2820 5696 2695 5696 2827 5696 2827 5697 2695 5697 2619 5697 2827 5698 2619 5698 2825 5698 2825 5699 2619 5699 2696 5699 2825 5700 2696 5700 2831 5700 2831 5701 2696 5701 2830 5701 2830 5702 2696 5702 2701 5702 2830 5703 2701 5703 2835 5703 2835 5704 2701 5704 2975 5704 2696 5705 2619 5705 2700 5705 2700 5706 2619 5706 2620 5706 2700 5707 2620 5707 2697 5707 2697 5708 2620 5708 2698 5708 2698 5709 2620 5709 2623 5709 2697 5710 2699 5710 2700 5710 2626 5711 2981 5711 2701 5711 2701 5712 2981 5712 2975 5712 2627 5713 2981 5713 2626 5713 2702 5714 2981 5714 2627 5714 2711 5715 2981 5715 2702 5715 2628 5716 2708 5716 2711 5716 2711 5717 2708 5717 2703 5717 2711 5718 2703 5718 2978 5718 2978 5719 2703 5719 2704 5719 2978 5720 2704 5720 2705 5720 2978 5721 2705 5721 2706 5721 2978 5722 2706 5722 2649 5722 2978 5723 2649 5723 2977 5723 2977 5724 2649 5724 2467 5724 2977 5725 2467 5725 2469 5725 2707 5726 2710 5726 2628 5726 2628 5727 2710 5727 2636 5727 2628 5728 2636 5728 2708 5728 2708 5729 2636 5729 2644 5729 2644 5730 2636 5730 2643 5730 2644 5731 2643 5731 2709 5731 2629 5732 2630 5732 2707 5732 2707 5733 2630 5733 2710 5733 2710 5734 2632 5734 2636 5734 2467 5735 2649 5735 2717 5735 2717 5736 2649 5736 2658 5736 2717 5737 2658 5737 2716 5737 2978 5738 2981 5738 2711 5738 2835 5739 2975 5739 2982 5739 2835 5740 2982 5740 2836 5740 2836 5741 2982 5741 2849 5741 2849 5742 2982 5742 2842 5742 2842 5743 2982 5743 2839 5743 2839 5744 2982 5744 2469 5744 2469 5745 2982 5745 2977 5745 2712 5746 2939 5746 2769 5746 2769 5747 2939 5747 2770 5747 2770 5748 2939 5748 2940 5748 2770 5749 2940 5749 2778 5749 2778 5750 2940 5750 2781 5750 2781 5751 2940 5751 2788 5751 2788 5752 2940 5752 2943 5752 2788 5753 2943 5753 2789 5753 2527 5754 2898 5754 2902 5754 2527 5755 2902 5755 2729 5755 2902 5756 2730 5756 2729 5756 2730 5757 2902 5757 2740 5757 2740 5758 2902 5758 2894 5758 2740 5759 2894 5759 2735 5759 2735 5760 2894 5760 2743 5760 2743 5761 2894 5761 2714 5761 2714 5762 2894 5762 2748 5762 2748 5763 2894 5763 2895 5763 2748 5764 2895 5764 2749 5764 2749 5765 2895 5765 2903 5765 2715 5766 2857 5766 2866 5766 2805 5767 2866 5767 2861 5767 2805 5768 2861 5768 2803 5768 2803 5769 2861 5769 2808 5769 2808 5770 2861 5770 2811 5770 2811 5771 2861 5771 2862 5771 2811 5772 2862 5772 2809 5772 2809 5773 2862 5773 2821 5773 2821 5774 2862 5774 2859 5774 2729 5775 2724 5775 2527 5775 2659 5776 2724 5776 2726 5776 2726 5777 2727 5777 2716 5777 2716 5778 2727 5778 2720 5778 2719 5779 2720 5779 2721 5779 2720 5780 2718 5780 2716 5780 2719 5781 2717 5781 2718 5781 2719 5782 2718 5782 2720 5782 2716 5783 2718 5783 2717 5783 2726 5784 2725 5784 2727 5784 2722 5785 2723 5785 2727 5785 2723 5786 2725 5786 2724 5786 2726 5787 2724 5787 2725 5787 2722 5788 2725 5788 2723 5788 2722 5789 2727 5789 2725 5789 2729 5790 2728 5790 2724 5790 2724 5791 2728 5791 2723 5791 2928 5792 2728 5792 2731 5792 2729 5793 2730 5793 2732 5793 2731 5794 2732 5794 2730 5794 2728 5795 2729 5795 2732 5795 2731 5796 2728 5796 2732 5796 2740 5797 2734 5797 2730 5797 2730 5798 2734 5798 2731 5798 2735 5799 2739 5799 2740 5799 2742 5800 2743 5800 2714 5800 2740 5801 2739 5801 2736 5801 2745 5802 2742 5802 2744 5802 2744 5803 2742 5803 2714 5803 2740 5804 2737 5804 2734 5804 2733 5805 2735 5805 2743 5805 2735 5806 2733 5806 2739 5806 2739 5807 2733 5807 2736 5807 2740 5808 2736 5808 2737 5808 2733 5809 2738 5809 2737 5809 2741 5810 2738 5810 2745 5810 2741 5811 2734 5811 2737 5811 2733 5812 2737 5812 2736 5812 2738 5813 2741 5813 2737 5813 2733 5814 2743 5814 2742 5814 2733 5815 2742 5815 2738 5815 2738 5816 2742 5816 2745 5816 2748 5817 2747 5817 2714 5817 2714 5818 2747 5818 2744 5818 2748 5819 2746 5819 2747 5819 2748 5820 2749 5820 2746 5820 2750 5821 2746 5821 2749 5821 2747 5822 2746 5822 2750 5822 2755 5823 2756 5823 2749 5823 2749 5824 2756 5824 2750 5824 2755 5825 2753 5825 2756 5825 2756 5826 2753 5826 2751 5826 2751 5827 2753 5827 2752 5827 2755 5828 2752 5828 2753 5828 2754 5829 2756 5829 2751 5829 2762 5830 2757 5830 2752 5830 2752 5831 2757 5831 2751 5831 2757 5832 2762 5832 2760 5832 2759 5833 2763 5833 2762 5833 2762 5834 2763 5834 2760 5834 2764 5835 2760 5835 2763 5835 2758 5836 2761 5836 2763 5836 2757 5837 2760 5837 2764 5837 2759 5838 2762 5838 2761 5838 2761 5839 2762 5839 2763 5839 2763 5840 2759 5840 2758 5840 2712 5841 2767 5841 2763 5841 2763 5842 2767 5842 2764 5842 2766 5843 2765 5843 2768 5843 2767 5844 2766 5844 2768 5844 2765 5845 2766 5845 2769 5845 2766 5846 2712 5846 2769 5846 2767 5847 2768 5847 2765 5847 2767 5848 2712 5848 2766 5848 2770 5849 2775 5849 2769 5849 2769 5850 2775 5850 2765 5850 2770 5851 2771 5851 2773 5851 2780 5852 2784 5852 2774 5852 2780 5853 2774 5853 2776 5853 2772 5854 2774 5854 2784 5854 2772 5855 2782 5855 2781 5855 2777 5856 2773 5856 2771 5856 2770 5857 2773 5857 2775 5857 2783 5858 2778 5858 2781 5858 2778 5859 2779 5859 2771 5859 2778 5860 2771 5860 2770 5860 2779 5861 2777 5861 2771 5861 2780 5862 2777 5862 2782 5862 2777 5863 2780 5863 2776 5863 2784 5864 2780 5864 2782 5864 2784 5865 2782 5865 2772 5865 2775 5866 2773 5866 2776 5866 2776 5867 2773 5867 2777 5867 2774 5868 2775 5868 2776 5868 2779 5869 2778 5869 2783 5869 2779 5870 2783 5870 2782 5870 2779 5871 2782 5871 2777 5871 2781 5872 2782 5872 2783 5872 2788 5873 2786 5873 2781 5873 2781 5874 2786 5874 2772 5874 2788 5875 2787 5875 2786 5875 2787 5876 2785 5876 2786 5876 2788 5877 2789 5877 2787 5877 2785 5878 2787 5878 2789 5878 2791 5879 2790 5879 2789 5879 2789 5880 2790 5880 2785 5880 2790 5881 2791 5881 2793 5881 2790 5882 2793 5882 2794 5882 2794 5883 2793 5883 2792 5883 2792 5884 2793 5884 2791 5884 2795 5885 2802 5885 2792 5885 2792 5886 2802 5886 2794 5886 2795 5887 2800 5887 2802 5887 2798 5888 2797 5888 2795 5888 2801 5889 2800 5889 2799 5889 2798 5890 2795 5890 2799 5890 2795 5891 2796 5891 2800 5891 2800 5892 2796 5892 2799 5892 2796 5893 2795 5893 2797 5893 2801 5894 2802 5894 2800 5894 2799 5895 2796 5895 2798 5895 2805 5896 2804 5896 2799 5896 2799 5897 2804 5897 2801 5897 2805 5898 2806 5898 2804 5898 2807 5899 2806 5899 2803 5899 2806 5900 2805 5900 2803 5900 2804 5901 2806 5901 2807 5901 2808 5902 2524 5902 2803 5902 2803 5903 2524 5903 2807 5903 2811 5904 2818 5904 2817 5904 2811 5905 2817 5905 2815 5905 2817 5906 2818 5906 2813 5906 2813 5907 2818 5907 2814 5907 2814 5908 2818 5908 2809 5908 2808 5909 2812 5909 2524 5909 2818 5910 2811 5910 2809 5910 2808 5911 2815 5911 2812 5911 2812 5912 2815 5912 2817 5912 2819 5913 2816 5913 2813 5913 2819 5914 2813 5914 2814 5914 2816 5915 2819 5915 2810 5915 2815 5916 2808 5916 2811 5916 2524 5917 2812 5917 2810 5917 2817 5918 2816 5918 2812 5918 2816 5919 2810 5919 2812 5919 2817 5920 2813 5920 2816 5920 2810 5921 2819 5921 2814 5921 2821 5922 2824 5922 2809 5922 2809 5923 2824 5923 2814 5923 2821 5924 2822 5924 2824 5924 2822 5925 2823 5925 2824 5925 2823 5926 2822 5926 2820 5926 2822 5927 2821 5927 2820 5927 2827 5928 2828 5928 2820 5928 2820 5929 2828 5929 2823 5929 2826 5930 2829 5930 2825 5930 2828 5931 2829 5931 2826 5931 2828 5932 2827 5932 2829 5932 2829 5933 2827 5933 2825 5933 2831 5934 2833 5934 2825 5934 2825 5935 2833 5935 2826 5935 2832 5936 2831 5936 2830 5936 2833 5937 2831 5937 2832 5937 2835 5938 2838 5938 2830 5938 2830 5939 2838 5939 2832 5939 2838 5940 2837 5940 2834 5940 2837 5941 2835 5941 2836 5941 2834 5942 2837 5942 2836 5942 2838 5943 2835 5943 2837 5943 2849 5944 2840 5944 2836 5944 2836 5945 2840 5945 2834 5945 2848 5946 2842 5946 2843 5946 2846 5947 2853 5947 2847 5947 2847 5948 2853 5948 2852 5948 2852 5949 2854 5949 2839 5949 2849 5950 2845 5950 2840 5950 2848 5951 2843 5951 2850 5951 2843 5952 2844 5952 2850 5952 2844 5953 2843 5953 2851 5953 2854 5954 2851 5954 2839 5954 2854 5955 2844 5955 2851 5955 2849 5956 2850 5956 2845 5956 2845 5957 2850 5957 2844 5957 2853 5958 2844 5958 2854 5958 2853 5959 2854 5959 2852 5959 2846 5960 2844 5960 2853 5960 2844 5961 2846 5961 2845 5961 2846 5962 2847 5962 2841 5962 2849 5963 2842 5963 2848 5963 2850 5964 2849 5964 2848 5964 2840 5965 2845 5965 2841 5965 2846 5966 2841 5966 2845 5966 2843 5967 2842 5967 2851 5967 2851 5968 2842 5968 2839 5968 2469 5969 2466 5969 2839 5969 2839 5970 2466 5970 2852 5970 2858 5971 2864 5971 2857 5971 2866 5972 2874 5972 2861 5972 2857 5973 2865 5973 2866 5973 2855 5974 2860 5974 2863 5974 2857 5975 2864 5975 2865 5975 2855 5976 2863 5976 2871 5976 2855 5977 2871 5977 2858 5977 2859 5978 2868 5978 2860 5978 2865 5979 2864 5979 2867 5979 2858 5980 2872 5980 2864 5980 2862 5981 2876 5981 2859 5981 2866 5982 2869 5982 2874 5982 2866 5983 2865 5983 2869 5983 2858 5984 2871 5984 2872 5984 2864 5985 2872 5985 2867 5985 2859 5986 2876 5986 2868 5986 2860 5987 2868 5987 2885 5987 2860 5988 2885 5988 2863 5988 2865 5989 2877 5989 2869 5989 2862 5990 2861 5990 2870 5990 2862 5991 2870 5991 2876 5991 2865 5992 2867 5992 2877 5992 2867 5993 2872 5993 2873 5993 2861 5994 2874 5994 2870 5994 2872 5995 2871 5995 2882 5995 2867 5996 2873 5996 2877 5996 2877 5997 2873 5997 2875 5997 2863 5998 2885 5998 2879 5998 2863 5999 2879 5999 2871 5999 2870 6000 2884 6000 2876 6000 2873 6001 2872 6001 2887 6001 2873 6002 2887 6002 2875 6002 2869 6003 2877 6003 2856 6003 2869 6004 2856 6004 2874 6004 2876 6005 2884 6005 2868 6005 2874 6006 2856 6006 2878 6006 2868 6007 2884 6007 2886 6007 2871 6008 2879 6008 2882 6008 2870 6009 2874 6009 2883 6009 2870 6010 2883 6010 2884 6010 2868 6011 2886 6011 2880 6011 2868 6012 2880 6012 2885 6012 2874 6013 2878 6013 2883 6013 2882 6014 2881 6014 2872 6014 2872 6015 2881 6015 2888 6015 2872 6016 2888 6016 2887 6016 2882 6017 2879 6017 2881 6017 2877 6018 2875 6018 2856 6018 2879 6019 2885 6019 2892 6019 2886 6020 2884 6020 2891 6020 2886 6021 2891 6021 2880 6021 2883 6022 2878 6022 2889 6022 2880 6023 2892 6023 2885 6023 2887 6024 2890 6024 2875 6024 2883 6025 2889 6025 2884 6025 2880 6026 2891 6026 2892 6026 2887 6027 2888 6027 2890 6027 2878 6028 2856 6028 2889 6028 2881 6029 2893 6029 2888 6029 2884 6030 2889 6030 2891 6030 2875 6031 2890 6031 2856 6031 2879 6032 2892 6032 2893 6032 2879 6033 2893 6033 2881 6033 2903 6034 2897 6034 2899 6034 2901 6035 2896 6035 2898 6035 2902 6036 2898 6036 2906 6036 2900 6037 2907 6037 2901 6037 2900 6038 2899 6038 2908 6038 2900 6039 2908 6039 2904 6039 2900 6040 2904 6040 2907 6040 2899 6041 2905 6041 2908 6041 2902 6042 2906 6042 2920 6042 2894 6043 2909 6043 2895 6043 2896 6044 2901 6044 2912 6044 2901 6045 2907 6045 2912 6045 2902 6046 2920 6046 2916 6046 2902 6047 2916 6047 2894 6047 2895 6048 2909 6048 2913 6048 2895 6049 2913 6049 2903 6049 2899 6050 2897 6050 2922 6050 2899 6051 2922 6051 2905 6051 2898 6052 2896 6052 2911 6052 2898 6053 2911 6053 2906 6053 2894 6054 2916 6054 2909 6054 2897 6055 2903 6055 2910 6055 2897 6056 2910 6056 2922 6056 2903 6057 2913 6057 2910 6057 2907 6058 2904 6058 2919 6058 2904 6059 2924 6059 2919 6059 2907 6060 2919 6060 2912 6060 2908 6061 2923 6061 2904 6061 2896 6062 2912 6062 2911 6062 2912 6063 2919 6063 2914 6063 2908 6064 2915 6064 2923 6064 2908 6065 2905 6065 2915 6065 2912 6066 2914 6066 2911 6066 2910 6067 2918 6067 2922 6067 2905 6068 2922 6068 2915 6068 2904 6069 2923 6069 2924 6069 2906 6070 2930 6070 2920 6070 2913 6071 2909 6071 2917 6071 2913 6072 2917 6072 2910 6072 2910 6073 2917 6073 2918 6073 2914 6074 2926 6074 2911 6074 2906 6075 2911 6075 2930 6075 2911 6076 2926 6076 2933 6076 2911 6077 2933 6077 2930 6077 2909 6078 2916 6078 2921 6078 2909 6079 2921 6079 2917 6079 2919 6080 2926 6080 2914 6080 2919 6081 2924 6081 2925 6081 2919 6082 2925 6082 2926 6082 2920 6083 2930 6083 2928 6083 2920 6084 2928 6084 2916 6084 2916 6085 2928 6085 2921 6085 2922 6086 2918 6086 2915 6086 2915 6087 2931 6087 2923 6087 2924 6088 2923 6088 2927 6088 2924 6089 2927 6089 2925 6089 2921 6090 2934 6090 2917 6090 2918 6091 2929 6091 2915 6091 2915 6092 2929 6092 2931 6092 2926 6093 2925 6093 2933 6093 2923 6094 2931 6094 2927 6094 2925 6095 2932 6095 2933 6095 2921 6096 2928 6096 2934 6096 2917 6097 2934 6097 2929 6097 2917 6098 2929 6098 2918 6098 2925 6099 2927 6099 2932 6099 2936 6100 2937 6100 2949 6100 2937 6101 2941 6101 2946 6101 2940 6102 2939 6102 2945 6102 2937 6103 2946 6103 2952 6103 2939 6104 2936 6104 2948 6104 2936 6105 2949 6105 2947 6105 2936 6106 2947 6106 2948 6106 2939 6107 2948 6107 2945 6107 2935 6108 2938 6108 2944 6108 2940 6109 2945 6109 2958 6109 2940 6110 2958 6110 2943 6110 2938 6111 2942 6111 2944 6111 2937 6112 2952 6112 2949 6112 2943 6113 2956 6113 2942 6113 2946 6114 2959 6114 2952 6114 2941 6115 2935 6115 2954 6115 2941 6116 2954 6116 2946 6116 2946 6117 2954 6117 2959 6117 2943 6118 2958 6118 2956 6118 2948 6119 2947 6119 2953 6119 2945 6120 2950 6120 2958 6120 2944 6121 2942 6121 2951 6121 2947 6122 2949 6122 2957 6122 2945 6123 2948 6123 2950 6123 2947 6124 2957 6124 2953 6124 2948 6125 2953 6125 2950 6125 2944 6126 2951 6126 2955 6126 2935 6127 2944 6127 2960 6127 2935 6128 2960 6128 2954 6128 2944 6129 2955 6129 2960 6129 2942 6130 2956 6130 2951 6130 2950 6131 2966 6131 2958 6131 2952 6132 2967 6132 2949 6132 2952 6133 2959 6133 2967 6133 2951 6134 2956 6134 2962 6134 2951 6135 2962 6135 2955 6135 2953 6136 2961 6136 2950 6136 2953 6137 2957 6137 2961 6137 2958 6138 2973 6138 2956 6138 2956 6139 2971 6139 2962 6139 2956 6140 2973 6140 2971 6140 2959 6141 2954 6141 2963 6141 2950 6142 2961 6142 2966 6142 2958 6143 2966 6143 2973 6143 2960 6144 2964 6144 2954 6144 2954 6145 2964 6145 2963 6145 2957 6146 2949 6146 2965 6146 2960 6147 2955 6147 2964 6147 2959 6148 2963 6148 2967 6148 2957 6149 2965 6149 2961 6149 2965 6150 2968 6150 2961 6150 2964 6151 2969 6151 2963 6151 2962 6152 2974 6152 2955 6152 2964 6153 2955 6153 2974 6153 2964 6154 2974 6154 2969 6154 2967 6155 2970 6155 2949 6155 2966 6156 2972 6156 2973 6156 2949 6157 2970 6157 2965 6157 2963 6158 2969 6158 2967 6158 2967 6159 2969 6159 2970 6159 2962 6160 2971 6160 2974 6160 2965 6161 2970 6161 2968 6161 2966 6162 2961 6162 2972 6162 2961 6163 2968 6163 2972 6163 2975 6164 2979 6164 2982 6164 2977 6165 2989 6165 2985 6165 2977 6166 2985 6166 2978 6166 2978 6167 2980 6167 2981 6167 2978 6168 2993 6168 2980 6168 2975 6169 2983 6169 2979 6169 2981 6170 2980 6170 2988 6170 2981 6171 2987 6171 2975 6171 2982 6172 2984 6172 2977 6172 2985 6173 2986 6173 2978 6173 2978 6174 2986 6174 2993 6174 2975 6175 2987 6175 2983 6175 2977 6176 2984 6176 2991 6176 2977 6177 2991 6177 2989 6177 2981 6178 2988 6178 2987 6178 2982 6179 2979 6179 2994 6179 2982 6180 2994 6180 2984 6180 2985 6181 2989 6181 2995 6181 2980 6182 2993 6182 2999 6182 2983 6183 2990 6183 2979 6183 2979 6184 2990 6184 2994 6184 2994 6185 2990 6185 2997 6185 2985 6186 2995 6186 2998 6186 2985 6187 2998 6187 2986 6187 2988 6188 3006 6188 2987 6188 2984 6189 2994 6189 3008 6189 2988 6190 2980 6190 2996 6190 2988 6191 2996 6191 3006 6191 2983 6192 2987 6192 3000 6192 2983 6193 3000 6193 2990 6193 2980 6194 2999 6194 2996 6194 2984 6195 3008 6195 2991 6195 2986 6196 2998 6196 2992 6196 2986 6197 2992 6197 2993 6197 2987 6198 3006 6198 3000 6198 2989 6199 2991 6199 2995 6199 2993 6200 2992 6200 3004 6200 2993 6201 3004 6201 2999 6201 2998 6202 2995 6202 3014 6202 2998 6203 3014 6203 3003 6203 2998 6204 3003 6204 2992 6204 2994 6205 2997 6205 3001 6205 2994 6206 3001 6206 3008 6206 3000 6207 3002 6207 2990 6207 2997 6208 2990 6208 3001 6208 2995 6209 2991 6209 3014 6209 2990 6210 3002 6210 3001 6210 2999 6211 3004 6211 3007 6211 2999 6212 3007 6212 2996 6212 3006 6213 2996 6213 3005 6213 3004 6214 2992 6214 3007 6214 2992 6215 3003 6215 3007 6215 3006 6216 3005 6216 3009 6216 3006 6217 3009 6217 3000 6217 3002 6218 3000 6218 3010 6218 3003 6219 3014 6219 2976 6219 3002 6220 3010 6220 3001 6220 3008 6221 3013 6221 2991 6221 3007 6222 3011 6222 2996 6222 3000 6223 3009 6223 3010 6223 3003 6224 2976 6224 3007 6224 3001 6225 3010 6225 3015 6225 3001 6226 3015 6226 3008 6226 3008 6227 3015 6227 3013 6227 2991 6228 3013 6228 3014 6228 2996 6229 3011 6229 3012 6229 2996 6230 3012 6230 3005 6230 3007 6231 2976 6231 3011 6231 3015 6232 3010 6232 2521 6232 3013 6233 3015 6233 2521 6233 3005 6234 3012 6234 3009 6234 3014 6235 3013 6235 2976 6235 3253 6236 3251 6236 3017 6236 3017 6237 3251 6237 3016 6237 3250 6238 3016 6238 3341 6238 3250 6239 3017 6239 3016 6239 3018 6240 3187 6240 3190 6240 3190 6241 3187 6241 3071 6241 3190 6242 3071 6242 3070 6242 3018 6243 3189 6243 3187 6243 3187 6244 3019 6244 3071 6244 3071 6245 3019 6245 3020 6245 3020 6246 3019 6246 3255 6246 3020 6247 3255 6247 3257 6247 3068 6248 3251 6248 3019 6248 3184 6249 3449 6249 3068 6249 3183 6250 3449 6250 3184 6250 3181 6251 3449 6251 3183 6251 3180 6252 3447 6252 3181 6252 3181 6253 3447 6253 3449 6253 3178 6254 3024 6254 3180 6254 3180 6255 3024 6255 3447 6255 3021 6256 3170 6256 3178 6256 3178 6257 3170 6257 3022 6257 3178 6258 3022 6258 3024 6258 3177 6259 3176 6259 3021 6259 3021 6260 3176 6260 3170 6260 3022 6261 3170 6261 8092 6261 8092 6262 3170 6262 3169 6262 3022 6263 8092 6263 3023 6263 3023 6264 8092 6264 3168 6264 3023 6265 3168 6265 3166 6265 3447 6266 3024 6266 3165 6266 3447 6267 3165 6267 3450 6267 3450 6268 3165 6268 3025 6268 3450 6269 3025 6269 3163 6269 3450 6270 3163 6270 3026 6270 3450 6271 3026 6271 3451 6271 3451 6272 3026 6272 3336 6272 3451 6273 3336 6273 3452 6273 3336 6274 3026 6274 3330 6274 3330 6275 3026 6275 3029 6275 3330 6276 3029 6276 3331 6276 3331 6277 3029 6277 3027 6277 3331 6278 3027 6278 3323 6278 3323 6279 3027 6279 3322 6279 3322 6280 3027 6280 3028 6280 3322 6281 3028 6281 3319 6281 3319 6282 3028 6282 3370 6282 3027 6283 3029 6283 3030 6283 3030 6284 3029 6284 3159 6284 3030 6285 3159 6285 3156 6285 3156 6286 3159 6286 3031 6286 3031 6287 3159 6287 3158 6287 3156 6288 3154 6288 3030 6288 3153 6289 3371 6289 3028 6289 3028 6290 3371 6290 3370 6290 3032 6291 3371 6291 3153 6291 3033 6292 3371 6292 3032 6292 3152 6293 3371 6293 3033 6293 3151 6294 3136 6294 3152 6294 3152 6295 3136 6295 3034 6295 3152 6296 3034 6296 3369 6296 3369 6297 3034 6297 3035 6297 3369 6298 3035 6298 3036 6298 3369 6299 3036 6299 3372 6299 3372 6300 3036 6300 3037 6300 3372 6301 3037 6301 3038 6301 3372 6302 3038 6302 3366 6302 3366 6303 3038 6303 3358 6303 3358 6304 3038 6304 3309 6304 3358 6305 3309 6305 3368 6305 3368 6306 3309 6306 3310 6306 3040 6307 3145 6307 3151 6307 3151 6308 3145 6308 3146 6308 3151 6309 3146 6309 3136 6309 3136 6310 3146 6310 3039 6310 3039 6311 3146 6311 3140 6311 3039 6312 3140 6312 3138 6312 3149 6313 3041 6313 3040 6313 3040 6314 3041 6314 3145 6314 3145 6315 3143 6315 3146 6315 3309 6316 3038 6316 3304 6316 3304 6317 3038 6317 3042 6317 3304 6318 3042 6318 3303 6318 3303 6319 3042 6319 3299 6319 3299 6320 3042 6320 3125 6320 3299 6321 3125 6321 3298 6321 3298 6322 3125 6322 3067 6322 3298 6323 3067 6323 3297 6323 3297 6324 3067 6324 3423 6324 3042 6325 3043 6325 3125 6325 3125 6326 3043 6326 3127 6326 3127 6327 3043 6327 3129 6327 3127 6328 3129 6328 3128 6328 3131 6329 3130 6329 3043 6329 3043 6330 3130 6330 3129 6330 3044 6331 3423 6331 3067 6331 3124 6332 3417 6332 3044 6332 3044 6333 3417 6333 3423 6333 3045 6334 3417 6334 3124 6334 3121 6335 3417 6335 3045 6335 3119 6336 3051 6336 3121 6336 3121 6337 3051 6337 3424 6337 3118 6338 3115 6338 3119 6338 3119 6339 3115 6339 3046 6339 3119 6340 3046 6340 3051 6340 3047 6341 3048 6341 3118 6341 3118 6342 3048 6342 3115 6342 3115 6343 3113 6343 3046 6343 3046 6344 3113 6344 3049 6344 3049 6345 3113 6345 3050 6345 3049 6346 3050 6346 3110 6346 3424 6347 3051 6347 3052 6347 3424 6348 3052 6348 3105 6348 3424 6349 3105 6349 3402 6349 3402 6350 3105 6350 3053 6350 3402 6351 3053 6351 3054 6351 3402 6352 3054 6352 3421 6352 3421 6353 3054 6353 3283 6353 3283 6354 3054 6354 3055 6354 3055 6355 3054 6355 3056 6355 3055 6356 3056 6356 3282 6356 3282 6357 3056 6357 3098 6357 3282 6358 3098 6358 3276 6358 3276 6359 3098 6359 3275 6359 3275 6360 3098 6360 3097 6360 3275 6361 3097 6361 3272 6361 3272 6362 3097 6362 3397 6362 3098 6363 3056 6363 3057 6363 3057 6364 3056 6364 3102 6364 3057 6365 3102 6365 3100 6365 3100 6366 3102 6366 3101 6366 3101 6367 3102 6367 3058 6367 3100 6368 3059 6368 3057 6368 3060 6369 3400 6369 3097 6369 3097 6370 3400 6370 3399 6370 3095 6371 3400 6371 3060 6371 3093 6372 3400 6372 3095 6372 3061 6373 3387 6373 3093 6373 3093 6374 3387 6374 3400 6374 3091 6375 3079 6375 3061 6375 3061 6376 3079 6376 3062 6376 3061 6377 3062 6377 3387 6377 3387 6378 3062 6378 3077 6378 3387 6379 3077 6379 3074 6379 3387 6380 3074 6380 3396 6380 3396 6381 3074 6381 3073 6381 3396 6382 3073 6382 3072 6382 3396 6383 3072 6383 3388 6383 3388 6384 3072 6384 3260 6384 3388 6385 3260 6385 3269 6385 3090 6386 3084 6386 3091 6386 3091 6387 3084 6387 3066 6387 3091 6388 3066 6388 3079 6388 3079 6389 3066 6389 3064 6389 3064 6390 3066 6390 3063 6390 3064 6391 3063 6391 3065 6391 3089 6392 3088 6392 3090 6392 3090 6393 3088 6393 3084 6393 3066 6394 3084 6394 3086 6394 3260 6395 3072 6395 3259 6395 3259 6396 3072 6396 3020 6396 3259 6397 3020 6397 3257 6397 3068 6398 3449 6398 3446 6398 3068 6399 3446 6399 3016 6399 3016 6400 3446 6400 3448 6400 3016 6401 3448 6401 3341 6401 3341 6402 3448 6402 3340 6402 3340 6403 3448 6403 3339 6403 3339 6404 3448 6404 3452 6404 3339 6405 3452 6405 3334 6405 3334 6406 3452 6406 3336 6406 3424 6407 3417 6407 3121 6407 3297 6408 3423 6408 3422 6408 3297 6409 3422 6409 3296 6409 3296 6410 3422 6410 3288 6410 3288 6411 3422 6411 3289 6411 3289 6412 3422 6412 3286 6412 3286 6413 3422 6413 3284 6413 3284 6414 3422 6414 3418 6414 3284 6415 3418 6415 3283 6415 3283 6416 3418 6416 3421 6416 3097 6417 3399 6417 3397 6417 3272 6418 3397 6418 3265 6418 3265 6419 3397 6419 3398 6419 3265 6420 3398 6420 3263 6420 3263 6421 3398 6421 3269 6421 3269 6422 3398 6422 3388 6422 3370 6423 3318 6423 3319 6423 3318 6424 3370 6424 3363 6424 3318 6425 3363 6425 3316 6425 3316 6426 3363 6426 3310 6426 3310 6427 3363 6427 3368 6427 3369 6428 3371 6428 3152 6428 3019 6429 3251 6429 3255 6429 3016 6430 3251 6430 3068 6430 3192 6431 3190 6431 3069 6431 3069 6432 3190 6432 3070 6432 3069 6433 3070 6433 3193 6433 3193 6434 3070 6434 3071 6434 3193 6435 3071 6435 3194 6435 3194 6436 3071 6436 3020 6436 3194 6437 3020 6437 3195 6437 3195 6438 3020 6438 3072 6438 3195 6439 3072 6439 3196 6439 3196 6440 3072 6440 3073 6440 3196 6441 3073 6441 3075 6441 3075 6442 3073 6442 3074 6442 3075 6443 3074 6443 3076 6443 3076 6444 3074 6444 3077 6444 3076 6445 3077 6445 3197 6445 3197 6446 3077 6446 3062 6446 3197 6447 3062 6447 3078 6447 3078 6448 3062 6448 3079 6448 3078 6449 3079 6449 3199 6449 3199 6450 3079 6450 3064 6450 3199 6451 3064 6451 3080 6451 3080 6452 3064 6452 3065 6452 3080 6453 3065 6453 3081 6453 3081 6454 3065 6454 3063 6454 3081 6455 3063 6455 3200 6455 3200 6456 3063 6456 3066 6456 3083 6457 3082 6457 3084 6457 3084 6458 3085 6458 3086 6458 3066 6459 3085 6459 3200 6459 3082 6460 3085 6460 3084 6460 3086 6461 3085 6461 3066 6461 3085 6462 3082 6462 3200 6462 3083 6463 3084 6463 3087 6463 3087 6464 3084 6464 3088 6464 3087 6465 3088 6465 3202 6465 3202 6466 3088 6466 3089 6466 3202 6467 3089 6467 3201 6467 3201 6468 3089 6468 3090 6468 3201 6469 3090 6469 3198 6469 3198 6470 3090 6470 3091 6470 3198 6471 3091 6471 3203 6471 3203 6472 3091 6472 3061 6472 3203 6473 3061 6473 3092 6473 3092 6474 3061 6474 3093 6474 3092 6475 3093 6475 3094 6475 3094 6476 3093 6476 3095 6476 3094 6477 3095 6477 3096 6477 3096 6478 3095 6478 3060 6478 3096 6479 3060 6479 3204 6479 3204 6480 3060 6480 3097 6480 3204 6481 3097 6481 3205 6481 3205 6482 3097 6482 3098 6482 3205 6483 3098 6483 3209 6483 3209 6484 3098 6484 3057 6484 3209 6485 3057 6485 3210 6485 3210 6486 3057 6486 3059 6486 3210 6487 3059 6487 3099 6487 3099 6488 3059 6488 3100 6488 3099 6489 3100 6489 3208 6489 3208 6490 3100 6490 3101 6490 3208 6491 3101 6491 3211 6491 3211 6492 3101 6492 3058 6492 3211 6493 3058 6493 3207 6493 3207 6494 3058 6494 3102 6494 3207 6495 3102 6495 3206 6495 3206 6496 3102 6496 3056 6496 3206 6497 3056 6497 3103 6497 3103 6498 3056 6498 3054 6498 3103 6499 3054 6499 3104 6499 3104 6500 3054 6500 3053 6500 3104 6501 3053 6501 3106 6501 3106 6502 3053 6502 3105 6502 3106 6503 3105 6503 3107 6503 3107 6504 3105 6504 3052 6504 3107 6505 3052 6505 3213 6505 3213 6506 3052 6506 3051 6506 3213 6507 3051 6507 3212 6507 3212 6508 3051 6508 3046 6508 3212 6509 3046 6509 3108 6509 3108 6510 3046 6510 3049 6510 3108 6511 3049 6511 3218 6511 3218 6512 3049 6512 3110 6512 3218 6513 3110 6513 3109 6513 3109 6514 3110 6514 3050 6514 3109 6515 3050 6515 3111 6515 3111 6516 3050 6516 3113 6516 3112 6517 3114 6517 3115 6517 3114 6518 3112 6518 3113 6518 3219 6519 3112 6519 3115 6519 3115 6520 3114 6520 3113 6520 3113 6521 3112 6521 3111 6521 3219 6522 3115 6522 3116 6522 3116 6523 3115 6523 3048 6523 3116 6524 3048 6524 3217 6524 3217 6525 3048 6525 3047 6525 3217 6526 3047 6526 3117 6526 3117 6527 3047 6527 3118 6527 3117 6528 3118 6528 3216 6528 3216 6529 3118 6529 3119 6529 3216 6530 3119 6530 3120 6530 3120 6531 3119 6531 3121 6531 3120 6532 3121 6532 3122 6532 3122 6533 3121 6533 3045 6533 3122 6534 3045 6534 3123 6534 3123 6535 3045 6535 3124 6535 3123 6536 3124 6536 3214 6536 3214 6537 3124 6537 3044 6537 3214 6538 3044 6538 3215 6538 3215 6539 3044 6539 3067 6539 3215 6540 3067 6540 3220 6540 3220 6541 3067 6541 3125 6541 3220 6542 3125 6542 3222 6542 3222 6543 3125 6543 3127 6543 3222 6544 3127 6544 3126 6544 3126 6545 3127 6545 3128 6545 3126 6546 3128 6546 3224 6546 3224 6547 3128 6547 3129 6547 3224 6548 3129 6548 3225 6548 3225 6549 3129 6549 3130 6549 3225 6550 3130 6550 3132 6550 3132 6551 3130 6551 3131 6551 3132 6552 3131 6552 3223 6552 3223 6553 3131 6553 3043 6553 3223 6554 3043 6554 3221 6554 3221 6555 3043 6555 3042 6555 3221 6556 3042 6556 3226 6556 3226 6557 3042 6557 3038 6557 3226 6558 3038 6558 3133 6558 3133 6559 3038 6559 3037 6559 3133 6560 3037 6560 3134 6560 3134 6561 3037 6561 3036 6561 3134 6562 3036 6562 3227 6562 3227 6563 3036 6563 3035 6563 3227 6564 3035 6564 3228 6564 3228 6565 3035 6565 3034 6565 3228 6566 3034 6566 3135 6566 3135 6567 3034 6567 3136 6567 3135 6568 3136 6568 3137 6568 3137 6569 3136 6569 3039 6569 3137 6570 3039 6570 3139 6570 3139 6571 3039 6571 3138 6571 3139 6572 3138 6572 3229 6572 3229 6573 3138 6573 3140 6573 3229 6574 3140 6574 3141 6574 3141 6575 3140 6575 3146 6575 3230 6576 3142 6576 3144 6576 3146 6577 3142 6577 3141 6577 3142 6578 3230 6578 3141 6578 3142 6579 3143 6579 3144 6579 3143 6580 3145 6580 3144 6580 3143 6581 3142 6581 3146 6581 3144 6582 3145 6582 3147 6582 3147 6583 3145 6583 3041 6583 3147 6584 3041 6584 3148 6584 3148 6585 3041 6585 3149 6585 3148 6586 3149 6586 3231 6586 3231 6587 3149 6587 3040 6587 3231 6588 3040 6588 3150 6588 3150 6589 3040 6589 3151 6589 3150 6590 3151 6590 3232 6590 3232 6591 3151 6591 3152 6591 3232 6592 3152 6592 3233 6592 3233 6593 3152 6593 3033 6593 3233 6594 3033 6594 3234 6594 3234 6595 3033 6595 3032 6595 3234 6596 3032 6596 3235 6596 3235 6597 3032 6597 3153 6597 3235 6598 3153 6598 3236 6598 3236 6599 3153 6599 3028 6599 3236 6600 3028 6600 3237 6600 3237 6601 3028 6601 3027 6601 3237 6602 3027 6602 3238 6602 3238 6603 3027 6603 3030 6603 3238 6604 3030 6604 3155 6604 3155 6605 3030 6605 3154 6605 3155 6606 3154 6606 10537 6606 10537 6607 3154 6607 3156 6607 10537 6608 3156 6608 10446 6608 10446 6609 3156 6609 3031 6609 10446 6610 3031 6610 3157 6610 3157 6611 3031 6611 3158 6611 3157 6612 3158 6612 3160 6612 3160 6613 3158 6613 3159 6613 3160 6614 3159 6614 3161 6614 3161 6615 3159 6615 3029 6615 3161 6616 3029 6616 3162 6616 3162 6617 3029 6617 3026 6617 3162 6618 3026 6618 3164 6618 3164 6619 3026 6619 3163 6619 3164 6620 3163 6620 3239 6620 3239 6621 3163 6621 3025 6621 3239 6622 3025 6622 3240 6622 3240 6623 3025 6623 3165 6623 3240 6624 3165 6624 3241 6624 3241 6625 3165 6625 3024 6625 3241 6626 3024 6626 3245 6626 3245 6627 3024 6627 3022 6627 3245 6628 3022 6628 3244 6628 3244 6629 3022 6629 3023 6629 3244 6630 3023 6630 3167 6630 3167 6631 3023 6631 3166 6631 3167 6632 3166 6632 10435 6632 10435 6633 3166 6633 3168 6633 10435 6634 3168 6634 10432 6634 10432 6635 3168 6635 8092 6635 8092 6636 3171 6636 10432 6636 3173 6637 3174 6637 3170 6637 3171 6638 3172 6638 10432 6638 3174 6639 3172 6639 3171 6639 3171 6640 3169 6640 3174 6640 3174 6641 3173 6641 3172 6641 3170 6642 3174 6642 3169 6642 3169 6643 3171 6643 8092 6643 3173 6644 3170 6644 3175 6644 3175 6645 3170 6645 3176 6645 3175 6646 3176 6646 3248 6646 3248 6647 3176 6647 3177 6647 3248 6648 3177 6648 3247 6648 3247 6649 3177 6649 3021 6649 3247 6650 3021 6650 3246 6650 3246 6651 3021 6651 3178 6651 3246 6652 3178 6652 3179 6652 3179 6653 3178 6653 3180 6653 3179 6654 3180 6654 3242 6654 3242 6655 3180 6655 3181 6655 3242 6656 3181 6656 3182 6656 3182 6657 3181 6657 3183 6657 3182 6658 3183 6658 3243 6658 3243 6659 3183 6659 3184 6659 3243 6660 3184 6660 3249 6660 3249 6661 3184 6661 3068 6661 3249 6662 3068 6662 3185 6662 3185 6663 3068 6663 3019 6663 3185 6664 3019 6664 3186 6664 3186 6665 3019 6665 3187 6665 3186 6666 3187 6666 3191 6666 3191 6667 3187 6667 3189 6667 3191 6668 3189 6668 3188 6668 3188 6669 3189 6669 3018 6669 3188 6670 3018 6670 3192 6670 3192 6671 3018 6671 3190 6671 3191 6672 3188 6672 3186 6672 3186 6673 3188 6673 3192 6673 3186 6674 3192 6674 3193 6674 3193 6675 3192 6675 3069 6675 3193 6676 3194 6676 3186 6676 3186 6677 3194 6677 3185 6677 3185 6678 3194 6678 3256 6678 3185 6679 3256 6679 3252 6679 3195 6680 3258 6680 3194 6680 3196 6681 3373 6681 3195 6681 3075 6682 3373 6682 3196 6682 3076 6683 3377 6683 3075 6683 3075 6684 3377 6684 3373 6684 3197 6685 3377 6685 3076 6685 3078 6686 3203 6686 3197 6686 3197 6687 3203 6687 3377 6687 3199 6688 3200 6688 3078 6688 3078 6689 3200 6689 3198 6689 3078 6690 3198 6690 3203 6690 3080 6691 3081 6691 3199 6691 3199 6692 3081 6692 3200 6692 3082 6693 3083 6693 3200 6693 3200 6694 3083 6694 3198 6694 3198 6695 3083 6695 3201 6695 3201 6696 3083 6696 3087 6696 3201 6697 3087 6697 3202 6697 3377 6698 3203 6698 3374 6698 3374 6699 3203 6699 3092 6699 3374 6700 3092 6700 3094 6700 3374 6701 3094 6701 3096 6701 3374 6702 3096 6702 3204 6702 3374 6703 3204 6703 3376 6703 3376 6704 3204 6704 3273 6704 3376 6705 3273 6705 3375 6705 3375 6706 3273 6706 3264 6706 3273 6707 3204 6707 3277 6707 3277 6708 3204 6708 3205 6708 3277 6709 3205 6709 3278 6709 3278 6710 3205 6710 3206 6710 3278 6711 3206 6711 3280 6711 3280 6712 3206 6712 3281 6712 3281 6713 3206 6713 3103 6713 3281 6714 3103 6714 3285 6714 3285 6715 3103 6715 3401 6715 3206 6716 3205 6716 3207 6716 3207 6717 3205 6717 3209 6717 3207 6718 3209 6718 3208 6718 3208 6719 3209 6719 3099 6719 3099 6720 3209 6720 3210 6720 3208 6721 3211 6721 3207 6721 3104 6722 3412 6722 3103 6722 3103 6723 3412 6723 3401 6723 3106 6724 3404 6724 3104 6724 3104 6725 3404 6725 3412 6725 3107 6726 3404 6726 3106 6726 3213 6727 3404 6727 3107 6727 3212 6728 3216 6728 3213 6728 3213 6729 3216 6729 3120 6729 3213 6730 3120 6730 3403 6730 3403 6731 3120 6731 3122 6731 3403 6732 3122 6732 3123 6732 3403 6733 3123 6733 3214 6733 3403 6734 3214 6734 3406 6734 3406 6735 3214 6735 3215 6735 3406 6736 3215 6736 3409 6736 3409 6737 3215 6737 3295 6737 3108 6738 3111 6738 3212 6738 3212 6739 3111 6739 3219 6739 3212 6740 3219 6740 3216 6740 3216 6741 3219 6741 3117 6741 3117 6742 3219 6742 3116 6742 3117 6743 3116 6743 3217 6743 3218 6744 3109 6744 3108 6744 3108 6745 3109 6745 3111 6745 3111 6746 3112 6746 3219 6746 3295 6747 3215 6747 3301 6747 3301 6748 3215 6748 3220 6748 3301 6749 3220 6749 3300 6749 3300 6750 3220 6750 3305 6750 3305 6751 3220 6751 3221 6751 3305 6752 3221 6752 3306 6752 3306 6753 3221 6753 3226 6753 3306 6754 3226 6754 3307 6754 3307 6755 3226 6755 3351 6755 3220 6756 3222 6756 3221 6756 3221 6757 3222 6757 3223 6757 3223 6758 3222 6758 3224 6758 3223 6759 3224 6759 3225 6759 3222 6760 3126 6760 3224 6760 3225 6761 3132 6761 3223 6761 3133 6762 3348 6762 3226 6762 3226 6763 3348 6763 3351 6763 3134 6764 3348 6764 3133 6764 3227 6765 3346 6765 3134 6765 3134 6766 3346 6766 3348 6766 3228 6767 3346 6767 3227 6767 3135 6768 3232 6768 3228 6768 3228 6769 3232 6769 3346 6769 3137 6770 3141 6770 3135 6770 3135 6771 3141 6771 3150 6771 3135 6772 3150 6772 3232 6772 3139 6773 3229 6773 3137 6773 3137 6774 3229 6774 3141 6774 3150 6775 3141 6775 3144 6775 3144 6776 3141 6776 3230 6776 3150 6777 3144 6777 3231 6777 3231 6778 3144 6778 3147 6778 3231 6779 3147 6779 3148 6779 3346 6780 3232 6780 3350 6780 3350 6781 3232 6781 3233 6781 3350 6782 3233 6782 3234 6782 3350 6783 3234 6783 3349 6783 3349 6784 3234 6784 3235 6784 3349 6785 3235 6785 3236 6785 3349 6786 3236 6786 3320 6786 3349 6787 3320 6787 3345 6787 3345 6788 3320 6788 3311 6788 3320 6789 3236 6789 3326 6789 3326 6790 3236 6790 3237 6790 3326 6791 3237 6791 3329 6791 3329 6792 3237 6792 3161 6792 3329 6793 3161 6793 3332 6793 3332 6794 3161 6794 3333 6794 3333 6795 3161 6795 3162 6795 3333 6796 3162 6796 3335 6796 3335 6797 3162 6797 3425 6797 3161 6798 3237 6798 3160 6798 3160 6799 3237 6799 3238 6799 3160 6800 3238 6800 10446 6800 10446 6801 3238 6801 10537 6801 10537 6802 3238 6802 3155 6802 10446 6803 3157 6803 3160 6803 3164 6804 3425 6804 3162 6804 3239 6805 3425 6805 3164 6805 3240 6806 3427 6806 3239 6806 3239 6807 3427 6807 3425 6807 3241 6808 3427 6808 3240 6808 3245 6809 3246 6809 3241 6809 3241 6810 3246 6810 3179 6810 3241 6811 3179 6811 3428 6811 3428 6812 3179 6812 3242 6812 3428 6813 3242 6813 3431 6813 3431 6814 3242 6814 3182 6814 3431 6815 3182 6815 3243 6815 3431 6816 3243 6816 3249 6816 3431 6817 3249 6817 3426 6817 3426 6818 3249 6818 3017 6818 3426 6819 3017 6819 3250 6819 3244 6820 10432 6820 3245 6820 3245 6821 10432 6821 3173 6821 3245 6822 3173 6822 3246 6822 3246 6823 3173 6823 3247 6823 3247 6824 3173 6824 3175 6824 3247 6825 3175 6825 3248 6825 3167 6826 10435 6826 3244 6826 3244 6827 10435 6827 10432 6827 10432 6828 3172 6828 3173 6828 3017 6829 3249 6829 3253 6829 3253 6830 3249 6830 3185 6830 3253 6831 3185 6831 3252 6831 3428 6832 3427 6832 3241 6832 3335 6833 3425 6833 3338 6833 3338 6834 3425 6834 3429 6834 3338 6835 3429 6835 3344 6835 3344 6836 3429 6836 3250 6836 3250 6837 3429 6837 3426 6837 3285 6838 3401 6838 3291 6838 3291 6839 3401 6839 3405 6839 3291 6840 3405 6840 3290 6840 3290 6841 3405 6841 3294 6841 3294 6842 3405 6842 3295 6842 3295 6843 3405 6843 3409 6843 3403 6844 3404 6844 3213 6844 3195 6845 3373 6845 3380 6845 3195 6846 3380 6846 3261 6846 3380 6847 3266 6847 3261 6847 3266 6848 3380 6848 3378 6848 3266 6849 3378 6849 3270 6849 3270 6850 3378 6850 3264 6850 3264 6851 3378 6851 3375 6851 3351 6852 3347 6852 3307 6852 3307 6853 3347 6853 3308 6853 3308 6854 3347 6854 3345 6854 3308 6855 3345 6855 3312 6855 3312 6856 3345 6856 3311 6856 3261 6857 3258 6857 3195 6857 3194 6858 3258 6858 3256 6858 3256 6859 3257 6859 3252 6859 3252 6860 3257 6860 3255 6860 3253 6861 3254 6861 3251 6861 3255 6862 3254 6862 3252 6862 3254 6863 3253 6863 3252 6863 3255 6864 3251 6864 3254 6864 3256 6865 3258 6865 3257 6865 3257 6866 3258 6866 3259 6866 3261 6867 3260 6867 3258 6867 3258 6868 3260 6868 3259 6868 3261 6869 3262 6869 3260 6869 3269 6870 3262 6870 3266 6870 3261 6871 3266 6871 3262 6871 3260 6872 3262 6872 3269 6872 3265 6873 3263 6873 3268 6873 3265 6874 3271 6874 3264 6874 3266 6875 3267 6875 3269 6875 3268 6876 3270 6876 3271 6876 3269 6877 3267 6877 3263 6877 3263 6878 3267 6878 3268 6878 3267 6879 3266 6879 3270 6879 3267 6880 3270 6880 3268 6880 3271 6881 3270 6881 3264 6881 3265 6882 3268 6882 3271 6882 3264 6883 3274 6883 3265 6883 3274 6884 3272 6884 3265 6884 3272 6885 3274 6885 3273 6885 3273 6886 3274 6886 3264 6886 3277 6887 3275 6887 3273 6887 3273 6888 3275 6888 3272 6888 3277 6889 3279 6889 3275 6889 3279 6890 3276 6890 3275 6890 3276 6891 3279 6891 3278 6891 3279 6892 3277 6892 3278 6892 3280 6893 3282 6893 3278 6893 3278 6894 3282 6894 3276 6894 3055 6895 3280 6895 3281 6895 3282 6896 3280 6896 3055 6896 3285 6897 3283 6897 3281 6897 3281 6898 3283 6898 3055 6898 3284 6899 3285 6899 3291 6899 3284 6900 3283 6900 3285 6900 3291 6901 3286 6901 3284 6901 3293 6902 3290 6902 3294 6902 3289 6903 3287 6903 3288 6903 3288 6904 3287 6904 3294 6904 3291 6905 3292 6905 3286 6905 3293 6906 3287 6906 3289 6906 3290 6907 3293 6907 3292 6907 3287 6908 3293 6908 3294 6908 3293 6909 3289 6909 3292 6909 3291 6910 3290 6910 3292 6910 3289 6911 3286 6911 3292 6911 3294 6912 3296 6912 3288 6912 3294 6913 3297 6913 3296 6913 3294 6914 3295 6914 3297 6914 3301 6915 3298 6915 3295 6915 3295 6916 3298 6916 3297 6916 3301 6917 3302 6917 3298 6917 3301 6918 3300 6918 3302 6918 3302 6919 3299 6919 3298 6919 3299 6920 3302 6920 3300 6920 3305 6921 3303 6921 3300 6921 3300 6922 3303 6922 3299 6922 3305 6923 3306 6923 3303 6923 3303 6924 3306 6924 3304 6924 3307 6925 3309 6925 3306 6925 3306 6926 3309 6926 3304 6926 3309 6927 3307 6927 3310 6927 3310 6928 3307 6928 3308 6928 3312 6929 3311 6929 3317 6929 3316 6930 3317 6930 3318 6930 3318 6931 3317 6931 3311 6931 3308 6932 3315 6932 3310 6932 3313 6933 3317 6933 3316 6933 3312 6934 3313 6934 3314 6934 3315 6935 3313 6935 3316 6935 3315 6936 3316 6936 3310 6936 3308 6937 3312 6937 3314 6937 3315 6938 3308 6938 3314 6938 3315 6939 3314 6939 3313 6939 3313 6940 3312 6940 3317 6940 3311 6941 3321 6941 3318 6941 3321 6942 3319 6942 3318 6942 3319 6943 3321 6943 3320 6943 3320 6944 3321 6944 3311 6944 3326 6945 3322 6945 3320 6945 3320 6946 3322 6946 3319 6946 3326 6947 3328 6947 3322 6947 3329 6948 3323 6948 3328 6948 3327 6949 3326 6949 3329 6949 3328 6950 3324 6950 3329 6950 3329 6951 3324 6951 3327 6951 3322 6952 3328 6952 3323 6952 3325 6953 3326 6953 3327 6953 3328 6954 3326 6954 3325 6954 3328 6955 3325 6955 3324 6955 3332 6956 3331 6956 3329 6956 3329 6957 3331 6957 3323 6957 3332 6958 3330 6958 3331 6958 3330 6959 3332 6959 3333 6959 3335 6960 3336 6960 3333 6960 3333 6961 3336 6961 3330 6961 3335 6962 3337 6962 3336 6962 3335 6963 3338 6963 3337 6963 3337 6964 3334 6964 3336 6964 3334 6965 3337 6965 3338 6965 3338 6966 3339 6966 3334 6966 3344 6967 3250 6967 3343 6967 3344 6968 3343 6968 3342 6968 3344 6969 3342 6969 3338 6969 3342 6970 3343 6970 3341 6970 3339 6971 3342 6971 3340 6971 3341 6972 3343 6972 3250 6972 3338 6973 3342 6973 3339 6973 3340 6974 3342 6974 3341 6974 3349 6975 3361 6975 3350 6975 3348 6976 3346 6976 3352 6976 3346 6977 3350 6977 3362 6977 3348 6978 3356 6978 3351 6978 3349 6979 3353 6979 3361 6979 3351 6980 3356 6980 3358 6980 3351 6981 3358 6981 3347 6981 3349 6982 3345 6982 3359 6982 3349 6983 3359 6983 3353 6983 3346 6984 3362 6984 3352 6984 3348 6985 3352 6985 3356 6985 3350 6986 3361 6986 3354 6986 3350 6987 3354 6987 3362 6987 3345 6988 3347 6988 3355 6988 3345 6989 3355 6989 3359 6989 3347 6990 3357 6990 3355 6990 3352 6991 3360 6991 3356 6991 3352 6992 3362 6992 3367 6992 3352 6993 3367 6993 3360 6993 3356 6994 3366 6994 3358 6994 3347 6995 3358 6995 3357 6995 3359 6996 3365 6996 3353 6996 3356 6997 3360 6997 3364 6997 3356 6998 3364 6998 3366 6998 3357 6999 3363 6999 3355 6999 3357 7000 3368 7000 3363 7000 3357 7001 3358 7001 3368 7001 3361 7002 3353 7002 3371 7002 3361 7003 3371 7003 3354 7003 3367 7004 3364 7004 3360 7004 3365 7005 3359 7005 3370 7005 3353 7006 3365 7006 3371 7006 3362 7007 3354 7007 3367 7007 3355 7008 3363 7008 3359 7008 3365 7009 3370 7009 3371 7009 3364 7010 3367 7010 3369 7010 3364 7011 3369 7011 3372 7011 3359 7012 3363 7012 3370 7012 3354 7013 3371 7013 3369 7013 3354 7014 3369 7014 3367 7014 3364 7015 3372 7015 3366 7015 3388 7016 3386 7016 3396 7016 3377 7017 3383 7017 3373 7017 3380 7018 3389 7018 3378 7018 3374 7019 3382 7019 3385 7019 3374 7020 3385 7020 3377 7020 3373 7021 3383 7021 3390 7021 3380 7022 3384 7022 3389 7022 3374 7023 3376 7023 3381 7023 3374 7024 3381 7024 3382 7024 3378 7025 3389 7025 3379 7025 3378 7026 3379 7026 3375 7026 3373 7027 3390 7027 3386 7027 3373 7028 3386 7028 3380 7028 3384 7029 3380 7029 3388 7029 3377 7030 3385 7030 3387 7030 3377 7031 3387 7031 3383 7031 3382 7032 3381 7032 3392 7032 3380 7033 3386 7033 3388 7033 3381 7034 3376 7034 3394 7034 3382 7035 3392 7035 3385 7035 3384 7036 3388 7036 3395 7036 3384 7037 3395 7037 3389 7037 3385 7038 3392 7038 3393 7038 3379 7039 3391 7039 3375 7039 3381 7040 3394 7040 3392 7040 3385 7041 3393 7041 3387 7041 3389 7042 3395 7042 3379 7042 3390 7043 3396 7043 3386 7043 3379 7044 3395 7044 3391 7044 3375 7045 3391 7045 3397 7045 3383 7046 3387 7046 3396 7046 3383 7047 3396 7047 3390 7047 3392 7048 3400 7048 3393 7048 3376 7049 3375 7049 3399 7049 3376 7050 3399 7050 3394 7050 3392 7051 3394 7051 3400 7051 3395 7052 3388 7052 3398 7052 3375 7053 3397 7053 3399 7053 3395 7054 3398 7054 3391 7054 3394 7055 3399 7055 3400 7055 3393 7056 3400 7056 3387 7056 3391 7057 3398 7057 3397 7057 3401 7058 3410 7058 3405 7058 3403 7059 3406 7059 3411 7059 3406 7060 3409 7060 3408 7060 3404 7061 3413 7061 3412 7061 3409 7062 3405 7062 3407 7062 3406 7063 3408 7063 3411 7063 3401 7064 3412 7064 3419 7064 3405 7065 3410 7065 3415 7065 3405 7066 3415 7066 3407 7066 3404 7067 3403 7067 3414 7067 3407 7068 3416 7068 3409 7068 3401 7069 3419 7069 3421 7069 3408 7070 3409 7070 3420 7070 3404 7071 3414 7071 3413 7071 3407 7072 3415 7072 3416 7072 3412 7073 3413 7073 3419 7073 3401 7074 3421 7074 3418 7074 3401 7075 3418 7075 3410 7075 3403 7076 3411 7076 3417 7076 3403 7077 3417 7077 3424 7077 3403 7078 3424 7078 3414 7078 3411 7079 3408 7079 3420 7079 3411 7080 3420 7080 3417 7080 3413 7081 3402 7081 3419 7081 3415 7082 3422 7082 3416 7082 3416 7083 3423 7083 3409 7083 3415 7084 3410 7084 3422 7084 3416 7085 3422 7085 3423 7085 3409 7086 3423 7086 3420 7086 3414 7087 3424 7087 3413 7087 3413 7088 3424 7088 3402 7088 3419 7089 3402 7089 3421 7089 3410 7090 3418 7090 3422 7090 3420 7091 3423 7091 3417 7091 3449 7092 3437 7092 3446 7092 3425 7093 3438 7093 3429 7093 3426 7094 3429 7094 3433 7094 3425 7095 3435 7095 3438 7095 3426 7096 3432 7096 3431 7096 3428 7097 3436 7097 3443 7097 3428 7098 3443 7098 3427 7098 3429 7099 3438 7099 3441 7099 3426 7100 3433 7100 3432 7100 3428 7101 3431 7101 3436 7101 3427 7102 3434 7102 3425 7102 3429 7103 3441 7103 3433 7103 3425 7104 3430 7104 3435 7104 3425 7105 3434 7105 3430 7105 3431 7106 3432 7106 3440 7106 3431 7107 3437 7107 3436 7107 3433 7108 3439 7108 3432 7108 3427 7109 3443 7109 3434 7109 3431 7110 3440 7110 3437 7110 3430 7111 3434 7111 3444 7111 3436 7112 3447 7112 3443 7112 3434 7113 3443 7113 3444 7113 3433 7114 3441 7114 3439 7114 3430 7115 3444 7115 3442 7115 3430 7116 3442 7116 3435 7116 3432 7117 3439 7117 3440 7117 3438 7118 3445 7118 3441 7118 3438 7119 3435 7119 3445 7119 3440 7120 3446 7120 3437 7120 3436 7121 3437 7121 3447 7121 3435 7122 3442 7122 3451 7122 3435 7123 3451 7123 3445 7123 3437 7124 3449 7124 3447 7124 3441 7125 3448 7125 3439 7125 3439 7126 3448 7126 3440 7126 3443 7127 3450 7127 3444 7127 3443 7128 3447 7128 3450 7128 3442 7129 3444 7129 3450 7129 3445 7130 3451 7130 3452 7130 3445 7131 3452 7131 3441 7131 3440 7132 3448 7132 3446 7132 3442 7133 3450 7133 3451 7133 3441 7134 3452 7134 3448 7134 3691 7135 3688 7135 3453 7135 3453 7136 3688 7136 3454 7136 3454 7137 3779 7137 3453 7137 3779 7138 3773 7138 3453 7138 3623 7139 3619 7139 3455 7139 3455 7140 3619 7140 3456 7140 3455 7141 3456 7141 3517 7141 3623 7142 3621 7142 3619 7142 3619 7143 3457 7143 3456 7143 3456 7144 3457 7144 3510 7144 3510 7145 3457 7145 3689 7145 3510 7146 3689 7146 3694 7146 3511 7147 3688 7147 3457 7147 3458 7148 3873 7148 3511 7148 3459 7149 3878 7149 3458 7149 3458 7150 3878 7150 3873 7150 3460 7151 3878 7151 3459 7151 3461 7152 3878 7152 3460 7152 3462 7153 3463 7153 3461 7153 3461 7154 3463 7154 3878 7154 3616 7155 3607 7155 3462 7155 3462 7156 3607 7156 3600 7156 3462 7157 3600 7157 3463 7157 3614 7158 3613 7158 3616 7158 3616 7159 3613 7159 3607 7159 3600 7160 3607 7160 3606 7160 3606 7161 3607 7161 3608 7161 3600 7162 3606 7162 3602 7162 3602 7163 3606 7163 10733 7163 3602 7164 10733 7164 3603 7164 3878 7165 3463 7165 3874 7165 3874 7166 3463 7166 3599 7166 3874 7167 3599 7167 3598 7167 3874 7168 3598 7168 3875 7168 3875 7169 3598 7169 3871 7169 3871 7170 3598 7170 3464 7170 3871 7171 3464 7171 3596 7171 3871 7172 3596 7172 3865 7172 3865 7173 3596 7173 3876 7173 3876 7174 3596 7174 3771 7174 3771 7175 3596 7175 3767 7175 3767 7176 3596 7176 3465 7176 3767 7177 3465 7177 3765 7177 3765 7178 3465 7178 3466 7178 3765 7179 3466 7179 3760 7179 3760 7180 3466 7180 3763 7180 3763 7181 3466 7181 3515 7181 3763 7182 3515 7182 3759 7182 3759 7183 3515 7183 3801 7183 3759 7184 3801 7184 3799 7184 3466 7185 3465 7185 3467 7185 3467 7186 3465 7186 3595 7186 3467 7187 3595 7187 3590 7187 3590 7188 3595 7188 10774 7188 10774 7189 3595 7189 3593 7189 3590 7190 3589 7190 3467 7190 3468 7191 3801 7191 3515 7191 3469 7192 3801 7192 3468 7192 3470 7193 3805 7193 3469 7193 3469 7194 3805 7194 3801 7194 3471 7195 3805 7195 3470 7195 3476 7196 3477 7196 3471 7196 3471 7197 3477 7197 3472 7197 3471 7198 3472 7198 3805 7198 3805 7199 3472 7199 3802 7199 3802 7200 3472 7200 3576 7200 3802 7201 3576 7201 3575 7201 3802 7202 3575 7202 3473 7202 3802 7203 3473 7203 3474 7203 3802 7204 3474 7204 3803 7204 3803 7205 3474 7205 3748 7205 3475 7206 10789 7206 3476 7206 3476 7207 10789 7207 3583 7207 3476 7208 3583 7208 3477 7208 3477 7209 3583 7209 3478 7209 3478 7210 3583 7210 3579 7210 3478 7211 3579 7211 3578 7211 3479 7212 3584 7212 3475 7212 3475 7213 3584 7213 10789 7213 10789 7214 3581 7214 3583 7214 3748 7215 3474 7215 3742 7215 3742 7216 3474 7216 3482 7216 3742 7217 3482 7217 3745 7217 3745 7218 3482 7218 3741 7218 3741 7219 3482 7219 3480 7219 3741 7220 3480 7220 3738 7220 3738 7221 3480 7221 3481 7221 3738 7222 3481 7222 3732 7222 3732 7223 3481 7223 3855 7223 3482 7224 3571 7224 3480 7224 3480 7225 3571 7225 3564 7225 3564 7226 3571 7226 3567 7226 3564 7227 3567 7227 3566 7227 3568 7228 2049 7228 3571 7228 3571 7229 2049 7229 3567 7229 3563 7230 3855 7230 3481 7230 3483 7231 3851 7231 3563 7231 3563 7232 3851 7232 3855 7232 3484 7233 3851 7233 3483 7233 3485 7234 3851 7234 3484 7234 3486 7235 3493 7235 3485 7235 3485 7236 3493 7236 3851 7236 3489 7237 3557 7237 3486 7237 3486 7238 3557 7238 3487 7238 3486 7239 3487 7239 3493 7239 3488 7240 3558 7240 3489 7240 3489 7241 3558 7241 3557 7241 3557 7242 3556 7242 3552 7242 3557 7243 3552 7243 3487 7243 3487 7244 3552 7244 3491 7244 3491 7245 3552 7245 3490 7245 3491 7246 3490 7246 3492 7246 3851 7247 3493 7247 3852 7247 3852 7248 3493 7248 3547 7248 3852 7249 3547 7249 3546 7249 3852 7250 3546 7250 3854 7250 3854 7251 3546 7251 3545 7251 3854 7252 3545 7252 3543 7252 3854 7253 3543 7253 3720 7253 3854 7254 3720 7254 3842 7254 3720 7255 3543 7255 3717 7255 3717 7256 3543 7256 3495 7256 3717 7257 3495 7257 3716 7257 3716 7258 3495 7258 3494 7258 3716 7259 3494 7259 3710 7259 3710 7260 3494 7260 3714 7260 3714 7261 3494 7261 3514 7261 3714 7262 3514 7262 3709 7262 3709 7263 3514 7263 3815 7263 3494 7264 3495 7264 3496 7264 3496 7265 3495 7265 3497 7265 3496 7266 3497 7266 3498 7266 3498 7267 3497 7267 3542 7267 3542 7268 3497 7268 3499 7268 3498 7269 3500 7269 3496 7269 3539 7270 3830 7270 3514 7270 3514 7271 3830 7271 3815 7271 3501 7272 3828 7272 3539 7272 3539 7273 3828 7273 3830 7273 3537 7274 3828 7274 3501 7274 3513 7275 3828 7275 3537 7275 3506 7276 3522 7276 3513 7276 3513 7277 3522 7277 3502 7277 3513 7278 3502 7278 3828 7278 3828 7279 3502 7279 3814 7279 3814 7280 3502 7280 3520 7280 3814 7281 3520 7281 3503 7281 3814 7282 3503 7282 3504 7282 3814 7283 3504 7283 3829 7283 3829 7284 3504 7284 3505 7284 3829 7285 3505 7285 3827 7285 3827 7286 3505 7286 3697 7286 3508 7287 3531 7287 3506 7287 3506 7288 3531 7288 3528 7288 3506 7289 3528 7289 3522 7289 3522 7290 3528 7290 3523 7290 3523 7291 3528 7291 3525 7291 3523 7292 3525 7292 3524 7292 3507 7293 3509 7293 3508 7293 3508 7294 3509 7294 3531 7294 3531 7295 3529 7295 3528 7295 3697 7296 3505 7296 3696 7296 3696 7297 3505 7297 3510 7297 3696 7298 3510 7298 3694 7298 3511 7299 3873 7299 3877 7299 3511 7300 3877 7300 3454 7300 3454 7301 3877 7301 3868 7301 3868 7302 3779 7302 3454 7302 3779 7303 3868 7303 3872 7303 3779 7304 3872 7304 3776 7304 3776 7305 3872 7305 3775 7305 3775 7306 3872 7306 3768 7306 3768 7307 3872 7307 3876 7307 3768 7308 3876 7308 3771 7308 3732 7309 3855 7309 3734 7309 3734 7310 3855 7310 3853 7310 3734 7311 3853 7311 3512 7311 3512 7312 3853 7312 3729 7312 3729 7313 3853 7313 3724 7313 3724 7314 3853 7314 3725 7314 3725 7315 3853 7315 3719 7315 3719 7316 3853 7316 3720 7316 3720 7317 3853 7317 3842 7317 3709 7318 3815 7318 3706 7318 3706 7319 3815 7319 3820 7319 3706 7320 3820 7320 3705 7320 3705 7321 3820 7321 3701 7321 3701 7322 3820 7322 3826 7322 3701 7323 3826 7323 3697 7323 3697 7324 3826 7324 3827 7324 3804 7325 3756 7325 3799 7325 3799 7326 3756 7326 3759 7326 3756 7327 3804 7327 3750 7327 3750 7328 3804 7328 3753 7328 3753 7329 3804 7329 3751 7329 3751 7330 3804 7330 3748 7330 3748 7331 3804 7331 3803 7331 3457 7332 3688 7332 3689 7332 3454 7333 3688 7333 3511 7333 3624 7334 3455 7334 3516 7334 3516 7335 3455 7335 3517 7335 3516 7336 3517 7336 3625 7336 3625 7337 3517 7337 3456 7337 3625 7338 3456 7338 3518 7338 3518 7339 3456 7339 3510 7339 3518 7340 3510 7340 3519 7340 3519 7341 3510 7341 3505 7341 3519 7342 3505 7342 3627 7342 3627 7343 3505 7343 3504 7343 3627 7344 3504 7344 3626 7344 3626 7345 3504 7345 3503 7345 3626 7346 3503 7346 3628 7346 3628 7347 3503 7347 3520 7347 3628 7348 3520 7348 3687 7348 3687 7349 3520 7349 3502 7349 3687 7350 3502 7350 3521 7350 3521 7351 3502 7351 3522 7351 3521 7352 3522 7352 3632 7352 3632 7353 3522 7353 3523 7353 3632 7354 3523 7354 3630 7354 3630 7355 3523 7355 3524 7355 3630 7356 3524 7356 3631 7356 3631 7357 3524 7357 3525 7357 3631 7358 3525 7358 3526 7358 3526 7359 3525 7359 3528 7359 3530 7360 3532 7360 3531 7360 3527 7361 3533 7361 3532 7361 3532 7362 3530 7362 3527 7362 3529 7363 3531 7363 3532 7363 3533 7364 3529 7364 3532 7364 3528 7365 3533 7365 3527 7365 3529 7366 3533 7366 3528 7366 3526 7367 3528 7367 3527 7367 3530 7368 3531 7368 3534 7368 3534 7369 3531 7369 3509 7369 3534 7370 3509 7370 3634 7370 3634 7371 3509 7371 3507 7371 3634 7372 3507 7372 3633 7372 3633 7373 3507 7373 3508 7373 3633 7374 3508 7374 3535 7374 3535 7375 3508 7375 3506 7375 3535 7376 3506 7376 3629 7376 3629 7377 3506 7377 3513 7377 3629 7378 3513 7378 3536 7378 3536 7379 3513 7379 3537 7379 3536 7380 3537 7380 3538 7380 3538 7381 3537 7381 3501 7381 3538 7382 3501 7382 3540 7382 3540 7383 3501 7383 3539 7383 3540 7384 3539 7384 3635 7384 3635 7385 3539 7385 3514 7385 3635 7386 3514 7386 3636 7386 3636 7387 3514 7387 3494 7387 3636 7388 3494 7388 3640 7388 3640 7389 3494 7389 3496 7389 3640 7390 3496 7390 3641 7390 3641 7391 3496 7391 3500 7391 3641 7392 3500 7392 3639 7392 3639 7393 3500 7393 3498 7393 3639 7394 3498 7394 3642 7394 3642 7395 3498 7395 3542 7395 3642 7396 3542 7396 3541 7396 3541 7397 3542 7397 3499 7397 3541 7398 3499 7398 3638 7398 3638 7399 3499 7399 3497 7399 3638 7400 3497 7400 3637 7400 3637 7401 3497 7401 3495 7401 3637 7402 3495 7402 3686 7402 3686 7403 3495 7403 3543 7403 3686 7404 3543 7404 3544 7404 3544 7405 3543 7405 3545 7405 3544 7406 3545 7406 3643 7406 3643 7407 3545 7407 3546 7407 3643 7408 3546 7408 3644 7408 3644 7409 3546 7409 3547 7409 3644 7410 3547 7410 3548 7410 3548 7411 3547 7411 3493 7411 3548 7412 3493 7412 3647 7412 3647 7413 3493 7413 3487 7413 3647 7414 3487 7414 3650 7414 3650 7415 3487 7415 3491 7415 3650 7416 3491 7416 3549 7416 3549 7417 3491 7417 3492 7417 3549 7418 3492 7418 3649 7418 3649 7419 3492 7419 3490 7419 3649 7420 3490 7420 3550 7420 3550 7421 3490 7421 3552 7421 3555 7422 3553 7422 3550 7422 3552 7423 3555 7423 3550 7423 3557 7424 3551 7424 3554 7424 3551 7425 3553 7425 3554 7425 3553 7426 3555 7426 3554 7426 3556 7427 3555 7427 3552 7427 3555 7428 3556 7428 3554 7428 3554 7429 3556 7429 3557 7429 3551 7430 3557 7430 2535 7430 2535 7431 3557 7431 3558 7431 2535 7432 3558 7432 3559 7432 3559 7433 3558 7433 3488 7433 3559 7434 3488 7434 3648 7434 3648 7435 3488 7435 3489 7435 3648 7436 3489 7436 3645 7436 3645 7437 3489 7437 3486 7437 3645 7438 3486 7438 3560 7438 3560 7439 3486 7439 3485 7439 3560 7440 3485 7440 3646 7440 3646 7441 3485 7441 3484 7441 3646 7442 3484 7442 3561 7442 3561 7443 3484 7443 3483 7443 3561 7444 3483 7444 3562 7444 3562 7445 3483 7445 3563 7445 3562 7446 3563 7446 3652 7446 3652 7447 3563 7447 3481 7447 3652 7448 3481 7448 3653 7448 3653 7449 3481 7449 3480 7449 3653 7450 3480 7450 3655 7450 3655 7451 3480 7451 3564 7451 3655 7452 3564 7452 3656 7452 3656 7453 3564 7453 3566 7453 3656 7454 3566 7454 3565 7454 3565 7455 3566 7455 3567 7455 3565 7456 3567 7456 2656 7456 2656 7457 3567 7457 2049 7457 2656 7458 2049 7458 3569 7458 3569 7459 2049 7459 3568 7459 3569 7460 3568 7460 3570 7460 3570 7461 3568 7461 3571 7461 3570 7462 3571 7462 3654 7462 3654 7463 3571 7463 3482 7463 3654 7464 3482 7464 3572 7464 3572 7465 3482 7465 3474 7465 3572 7466 3474 7466 3573 7466 3573 7467 3474 7467 3473 7467 3573 7468 3473 7468 3657 7468 3657 7469 3473 7469 3575 7469 3657 7470 3575 7470 3574 7470 3574 7471 3575 7471 3576 7471 3574 7472 3576 7472 3577 7472 3577 7473 3576 7473 3472 7473 3577 7474 3472 7474 3658 7474 3658 7475 3472 7475 3477 7475 3658 7476 3477 7476 3660 7476 3660 7477 3477 7477 3478 7477 3660 7478 3478 7478 3659 7478 3659 7479 3478 7479 3578 7479 3659 7480 3578 7480 2476 7480 2476 7481 3578 7481 3579 7481 2476 7482 3579 7482 2638 7482 2638 7483 3579 7483 3583 7483 3583 7484 3582 7484 2638 7484 3582 7485 3663 7485 2638 7485 10789 7486 3662 7486 3663 7486 3580 7487 10789 7487 3663 7487 3581 7488 10789 7488 3580 7488 3663 7489 3582 7489 3580 7489 3581 7490 3580 7490 3583 7490 3580 7491 3582 7491 3583 7491 3662 7492 10789 7492 3664 7492 3664 7493 10789 7493 3584 7493 3664 7494 3584 7494 3665 7494 3665 7495 3584 7495 3479 7495 3665 7496 3479 7496 3585 7496 3585 7497 3479 7497 3475 7497 3585 7498 3475 7498 3661 7498 3661 7499 3475 7499 3476 7499 3661 7500 3476 7500 3586 7500 3586 7501 3476 7501 3471 7501 3586 7502 3471 7502 3666 7502 3666 7503 3471 7503 3470 7503 3666 7504 3470 7504 3667 7504 3667 7505 3470 7505 3469 7505 3667 7506 3469 7506 3587 7506 3587 7507 3469 7507 3468 7507 3587 7508 3468 7508 3668 7508 3668 7509 3468 7509 3515 7509 3668 7510 3515 7510 3669 7510 3669 7511 3515 7511 3466 7511 3669 7512 3466 7512 3588 7512 3588 7513 3466 7513 3467 7513 3588 7514 3467 7514 3671 7514 3671 7515 3467 7515 3589 7515 3671 7516 3589 7516 11177 7516 11177 7517 3589 7517 3590 7517 11177 7518 3590 7518 3591 7518 3591 7519 3590 7519 10774 7519 3591 7520 10774 7520 3592 7520 3592 7521 10774 7521 3593 7521 3592 7522 3593 7522 3594 7522 3594 7523 3593 7523 3595 7523 3594 7524 3595 7524 3670 7524 3670 7525 3595 7525 3465 7525 3670 7526 3465 7526 3672 7526 3672 7527 3465 7527 3596 7527 3672 7528 3596 7528 3597 7528 3597 7529 3596 7529 3464 7529 3597 7530 3464 7530 3673 7530 3673 7531 3464 7531 3598 7531 3673 7532 3598 7532 3674 7532 3674 7533 3598 7533 3599 7533 3674 7534 3599 7534 3675 7534 3675 7535 3599 7535 3463 7535 3675 7536 3463 7536 3679 7536 3679 7537 3463 7537 3600 7537 3679 7538 3600 7538 3601 7538 3601 7539 3600 7539 3602 7539 3601 7540 3602 7540 3604 7540 3604 7541 3602 7541 3603 7541 3604 7542 3603 7542 3683 7542 3683 7543 3603 7543 10733 7543 3683 7544 10733 7544 3610 7544 3610 7545 10733 7545 3606 7545 3609 7546 3605 7546 3607 7546 3605 7547 3610 7547 3612 7547 3607 7548 3605 7548 3611 7548 3611 7549 3606 7549 3608 7549 3606 7550 3612 7550 3610 7550 3607 7551 3611 7551 3608 7551 3605 7552 3612 7552 3611 7552 3606 7553 3611 7553 3612 7553 3609 7554 3607 7554 3681 7554 3681 7555 3607 7555 3613 7555 3681 7556 3613 7556 3682 7556 3682 7557 3613 7557 3614 7557 3682 7558 3614 7558 3680 7558 3680 7559 3614 7559 3616 7559 3680 7560 3616 7560 3615 7560 3615 7561 3616 7561 3462 7561 3615 7562 3462 7562 3676 7562 3676 7563 3462 7563 3461 7563 3676 7564 3461 7564 3677 7564 3677 7565 3461 7565 3460 7565 3677 7566 3460 7566 3617 7566 3617 7567 3460 7567 3459 7567 3617 7568 3459 7568 3678 7568 3678 7569 3459 7569 3458 7569 3678 7570 3458 7570 3684 7570 3684 7571 3458 7571 3511 7571 3684 7572 3511 7572 3685 7572 3685 7573 3511 7573 3457 7573 3685 7574 3457 7574 3618 7574 3618 7575 3457 7575 3619 7575 3618 7576 3619 7576 3620 7576 3620 7577 3619 7577 3621 7577 3620 7578 3621 7578 3622 7578 3622 7579 3621 7579 3623 7579 3622 7580 3623 7580 3624 7580 3624 7581 3623 7581 3455 7581 3620 7582 3622 7582 3618 7582 3618 7583 3622 7583 3624 7583 3618 7584 3624 7584 3625 7584 3625 7585 3624 7585 3516 7585 3625 7586 3518 7586 3618 7586 3618 7587 3518 7587 3685 7587 3685 7588 3518 7588 3695 7588 3685 7589 3695 7589 3690 7589 3519 7590 3693 7590 3518 7590 3518 7591 3693 7591 3695 7591 3627 7592 3806 7592 3519 7592 3626 7593 3806 7593 3627 7593 3628 7594 3817 7594 3626 7594 3626 7595 3817 7595 3806 7595 3687 7596 3817 7596 3628 7596 3521 7597 3629 7597 3687 7597 3687 7598 3629 7598 3816 7598 3687 7599 3816 7599 3817 7599 3632 7600 3526 7600 3521 7600 3521 7601 3526 7601 3535 7601 3521 7602 3535 7602 3629 7602 3630 7603 3631 7603 3632 7603 3632 7604 3631 7604 3526 7604 3526 7605 3527 7605 3530 7605 3526 7606 3530 7606 3535 7606 3535 7607 3530 7607 3633 7607 3633 7608 3530 7608 3534 7608 3633 7609 3534 7609 3634 7609 3816 7610 3629 7610 3536 7610 3816 7611 3536 7611 3811 7611 3811 7612 3536 7612 3538 7612 3811 7613 3538 7613 3540 7613 3811 7614 3540 7614 3813 7614 3813 7615 3540 7615 3635 7615 3813 7616 3635 7616 3809 7616 3809 7617 3635 7617 3708 7617 3708 7618 3635 7618 3712 7618 3712 7619 3635 7619 3636 7619 3712 7620 3636 7620 3711 7620 3711 7621 3636 7621 3637 7621 3711 7622 3637 7622 3715 7622 3715 7623 3637 7623 3718 7623 3718 7624 3637 7624 3686 7624 3718 7625 3686 7625 3721 7625 3721 7626 3686 7626 3833 7626 3637 7627 3636 7627 3638 7627 3638 7628 3636 7628 3640 7628 3638 7629 3640 7629 3642 7629 3642 7630 3640 7630 3639 7630 3639 7631 3640 7631 3641 7631 3642 7632 3541 7632 3638 7632 3544 7633 3833 7633 3686 7633 3643 7634 3833 7634 3544 7634 3644 7635 3837 7635 3643 7635 3643 7636 3837 7636 3833 7636 3548 7637 3835 7637 3644 7637 3644 7638 3835 7638 3837 7638 3647 7639 3645 7639 3548 7639 3548 7640 3645 7640 3560 7640 3548 7641 3560 7641 3835 7641 3835 7642 3560 7642 3646 7642 3835 7643 3646 7643 3561 7643 3835 7644 3561 7644 3562 7644 3835 7645 3562 7645 3836 7645 3836 7646 3562 7646 3652 7646 3836 7647 3652 7647 3832 7647 3832 7648 3652 7648 3731 7648 3832 7649 3731 7649 3735 7649 3650 7650 3550 7650 3647 7650 3647 7651 3550 7651 3551 7651 3647 7652 3551 7652 3645 7652 3645 7653 3551 7653 3648 7653 3648 7654 3551 7654 2535 7654 3648 7655 2535 7655 3559 7655 3549 7656 3649 7656 3650 7656 3650 7657 3649 7657 3550 7657 3550 7658 3553 7658 3551 7658 3731 7659 3652 7659 3651 7659 3651 7660 3652 7660 3653 7660 3651 7661 3653 7661 3740 7661 3740 7662 3653 7662 3743 7662 3743 7663 3653 7663 3654 7663 3743 7664 3654 7664 3744 7664 3744 7665 3654 7665 3572 7665 3744 7666 3572 7666 3747 7666 3747 7667 3572 7667 3781 7667 3653 7668 3655 7668 3654 7668 3654 7669 3655 7669 3570 7669 3570 7670 3655 7670 3565 7670 3570 7671 3565 7671 2656 7671 3655 7672 3656 7672 3565 7672 2656 7673 3569 7673 3570 7673 3573 7674 3783 7674 3572 7674 3657 7675 3783 7675 3573 7675 3574 7676 3780 7676 3657 7676 3657 7677 3780 7677 3783 7677 3577 7678 3780 7678 3574 7678 3658 7679 3586 7679 3577 7679 3577 7680 3586 7680 3780 7680 3660 7681 2638 7681 3658 7681 3658 7682 2638 7682 3661 7682 3658 7683 3661 7683 3586 7683 3659 7684 2476 7684 3660 7684 3660 7685 2476 7685 2638 7685 3661 7686 2638 7686 3662 7686 3662 7687 2638 7687 3663 7687 3661 7688 3662 7688 3585 7688 3585 7689 3662 7689 3664 7689 3585 7690 3664 7690 3665 7690 3780 7691 3586 7691 3782 7691 3782 7692 3586 7692 3666 7692 3782 7693 3666 7693 3667 7693 3782 7694 3667 7694 3587 7694 3782 7695 3587 7695 3787 7695 3787 7696 3587 7696 3668 7696 3787 7697 3668 7697 3757 7697 3787 7698 3757 7698 3749 7698 3757 7699 3668 7699 3761 7699 3761 7700 3668 7700 3669 7700 3761 7701 3669 7701 3762 7701 3762 7702 3669 7702 3670 7702 3762 7703 3670 7703 3766 7703 3766 7704 3670 7704 3764 7704 3764 7705 3670 7705 3672 7705 3764 7706 3672 7706 3770 7706 3770 7707 3672 7707 3861 7707 3670 7708 3669 7708 3594 7708 3594 7709 3669 7709 3588 7709 3594 7710 3588 7710 3591 7710 3591 7711 3588 7711 11177 7711 11177 7712 3588 7712 3671 7712 3591 7713 3592 7713 3594 7713 3597 7714 3857 7714 3672 7714 3673 7715 3857 7715 3597 7715 3674 7716 3858 7716 3673 7716 3673 7717 3858 7717 3857 7717 3675 7718 3858 7718 3674 7718 3679 7719 3615 7719 3675 7719 3675 7720 3615 7720 3676 7720 3675 7721 3676 7721 3862 7721 3862 7722 3676 7722 3856 7722 3856 7723 3676 7723 3677 7723 3856 7724 3677 7724 3617 7724 3856 7725 3617 7725 3678 7725 3856 7726 3678 7726 3867 7726 3867 7727 3678 7727 3684 7727 3867 7728 3684 7728 3864 7728 3864 7729 3684 7729 3453 7729 3864 7730 3453 7730 3859 7730 3601 7731 3610 7731 3679 7731 3679 7732 3610 7732 3609 7732 3679 7733 3609 7733 3615 7733 3615 7734 3609 7734 3680 7734 3680 7735 3609 7735 3681 7735 3680 7736 3681 7736 3682 7736 3604 7737 3683 7737 3601 7737 3601 7738 3683 7738 3610 7738 3610 7739 3605 7739 3609 7739 3453 7740 3684 7740 3691 7740 3691 7741 3684 7741 3685 7741 3691 7742 3685 7742 3690 7742 3862 7743 3858 7743 3675 7743 3857 7744 3861 7744 3672 7744 3770 7745 3861 7745 3772 7745 3772 7746 3861 7746 3777 7746 3777 7747 3861 7747 3869 7747 3777 7748 3869 7748 3773 7748 3773 7749 3869 7749 3859 7749 3773 7750 3859 7750 3453 7750 3831 7751 3721 7751 3833 7751 3721 7752 3831 7752 3723 7752 3723 7753 3831 7753 3727 7753 3727 7754 3831 7754 3832 7754 3727 7755 3832 7755 3728 7755 3728 7756 3832 7756 3735 7756 3519 7757 3806 7757 3807 7757 3519 7758 3807 7758 3699 7758 3808 7759 3699 7759 3807 7759 3699 7760 3808 7760 3698 7760 3698 7761 3808 7761 3704 7761 3704 7762 3808 7762 3707 7762 3707 7763 3808 7763 3809 7763 3707 7764 3809 7764 3708 7764 3572 7765 3783 7765 3781 7765 3747 7766 3781 7766 3746 7766 3746 7767 3781 7767 3784 7767 3746 7768 3784 7768 3752 7768 3752 7769 3784 7769 3749 7769 3749 7770 3784 7770 3787 7770 3699 7771 3693 7771 3519 7771 3695 7772 3694 7772 3690 7772 3690 7773 3694 7773 3689 7773 3691 7774 3692 7774 3688 7774 3691 7775 3690 7775 3692 7775 3692 7776 3689 7776 3688 7776 3689 7777 3692 7777 3690 7777 3696 7778 3694 7778 3693 7778 3694 7779 3695 7779 3693 7779 3699 7780 3697 7780 3693 7780 3693 7781 3697 7781 3696 7781 3699 7782 3700 7782 3697 7782 3700 7783 3701 7783 3697 7783 3699 7784 3698 7784 3700 7784 3701 7785 3700 7785 3698 7785 3698 7786 3702 7786 3701 7786 3703 7787 3704 7787 3707 7787 3702 7788 3703 7788 3705 7788 3702 7789 3698 7789 3704 7789 3702 7790 3704 7790 3703 7790 3701 7791 3702 7791 3705 7791 3706 7792 3703 7792 3707 7792 3706 7793 3705 7793 3703 7793 3707 7794 3709 7794 3706 7794 3708 7795 3709 7795 3707 7795 3712 7796 3714 7796 3708 7796 3708 7797 3714 7797 3709 7797 3712 7798 3713 7798 3714 7798 3710 7799 3713 7799 3711 7799 3712 7800 3711 7800 3713 7800 3714 7801 3713 7801 3710 7801 3715 7802 3716 7802 3711 7802 3711 7803 3716 7803 3710 7803 3717 7804 3716 7804 3718 7804 3716 7805 3715 7805 3718 7805 3721 7806 3720 7806 3718 7806 3718 7807 3720 7807 3717 7807 3721 7808 3722 7808 3720 7808 3721 7809 3723 7809 3722 7809 3720 7810 3722 7810 3719 7810 3719 7811 3722 7811 3723 7811 3723 7812 3725 7812 3719 7812 3723 7813 3727 7813 3726 7813 3729 7814 3728 7814 3512 7814 3725 7815 3723 7815 3724 7815 3724 7816 3723 7816 3726 7816 3726 7817 3728 7817 3729 7817 3726 7818 3729 7818 3724 7818 3727 7819 3728 7819 3726 7819 3735 7820 3734 7820 3728 7820 3728 7821 3734 7821 3512 7821 3735 7822 3736 7822 3734 7822 3734 7823 3736 7823 3737 7823 3735 7824 3731 7824 3737 7824 3737 7825 3732 7825 3730 7825 3730 7826 3734 7826 3733 7826 3736 7827 3735 7827 3737 7827 3734 7828 3737 7828 3733 7828 3732 7829 3734 7829 3730 7829 3737 7830 3731 7830 3732 7830 3651 7831 3738 7831 3731 7831 3731 7832 3738 7832 3732 7832 3651 7833 3739 7833 3738 7833 3651 7834 3740 7834 3739 7834 3738 7835 3739 7835 3741 7835 3741 7836 3739 7836 3740 7836 3743 7837 3745 7837 3740 7837 3740 7838 3745 7838 3741 7838 3742 7839 3745 7839 3744 7839 3744 7840 3745 7840 3743 7840 3747 7841 3748 7841 3744 7841 3744 7842 3748 7842 3742 7842 3751 7843 3748 7843 3746 7843 3748 7844 3747 7844 3746 7844 3750 7845 3753 7845 3755 7845 3746 7846 3754 7846 3751 7846 3754 7847 3752 7847 3755 7847 3754 7848 3755 7848 3753 7848 3754 7849 3746 7849 3752 7849 3751 7850 3754 7850 3753 7850 3752 7851 3750 7851 3755 7851 3750 7852 3752 7852 3749 7852 3749 7853 3756 7853 3750 7853 3749 7854 3758 7854 3756 7854 3758 7855 3759 7855 3756 7855 3759 7856 3758 7856 3757 7856 3757 7857 3758 7857 3749 7857 3761 7858 3763 7858 3757 7858 3757 7859 3763 7859 3759 7859 3760 7860 3763 7860 3762 7860 3763 7861 3761 7861 3762 7861 3766 7862 3765 7862 3762 7862 3762 7863 3765 7863 3760 7863 3766 7864 3767 7864 3765 7864 3767 7865 3766 7865 3764 7865 3770 7866 3771 7866 3764 7866 3764 7867 3771 7867 3767 7867 3770 7868 3769 7868 3771 7868 3770 7869 3772 7869 3769 7869 3771 7870 3769 7870 3768 7870 3768 7871 3769 7871 3772 7871 3772 7872 3775 7872 3768 7872 3778 7873 3777 7873 3773 7873 3778 7874 3773 7874 3774 7874 3776 7875 3774 7875 3779 7875 3779 7876 3774 7876 3773 7876 3772 7877 3777 7877 3775 7877 3777 7878 3778 7878 3775 7878 3776 7879 3778 7879 3774 7879 3776 7880 3775 7880 3778 7880 3802 7881 3796 7881 3805 7881 3784 7882 3798 7882 3787 7882 3781 7883 3783 7883 3795 7883 3782 7884 3785 7884 3780 7884 3781 7885 3795 7885 3786 7885 3782 7886 3787 7886 3791 7886 3782 7887 3791 7887 3785 7887 3783 7888 3780 7888 3788 7888 3780 7889 3794 7889 3788 7889 3781 7890 3786 7890 3784 7890 3784 7891 3786 7891 3789 7891 3780 7892 3785 7892 3800 7892 3780 7893 3800 7893 3794 7893 3785 7894 3791 7894 3790 7894 3785 7895 3790 7895 3800 7895 3784 7896 3789 7896 3798 7896 3787 7897 3798 7897 3792 7897 3787 7898 3792 7898 3791 7898 3786 7899 3795 7899 3793 7899 3783 7900 3788 7900 3795 7900 3791 7901 3792 7901 3801 7901 3798 7902 3799 7902 3792 7902 3786 7903 3793 7903 3789 7903 3800 7904 3790 7904 3797 7904 3789 7905 3793 7905 3804 7905 3789 7906 3804 7906 3798 7906 3794 7907 3796 7907 3788 7907 3790 7908 3791 7908 3797 7908 3792 7909 3799 7909 3801 7909 3800 7910 3797 7910 3805 7910 3800 7911 3805 7911 3794 7911 3795 7912 3788 7912 3802 7912 3795 7913 3802 7913 3793 7913 3798 7914 3804 7914 3799 7914 3791 7915 3801 7915 3797 7915 3794 7916 3805 7916 3796 7916 3788 7917 3796 7917 3802 7917 3793 7918 3802 7918 3803 7918 3793 7919 3803 7919 3804 7919 3797 7920 3801 7920 3805 7920 3806 7921 3817 7921 3814 7921 3808 7922 3812 7922 3809 7922 3806 7923 3810 7923 3807 7923 3806 7924 3814 7924 3810 7924 3807 7925 3819 7925 3808 7925 3809 7926 3812 7926 3815 7926 3810 7927 3818 7927 3807 7927 3816 7928 3825 7928 3817 7928 3817 7929 3824 7929 3814 7929 3813 7930 3823 7930 3811 7930 3810 7931 3814 7931 3818 7931 3811 7932 3823 7932 3821 7932 3816 7933 3811 7933 3822 7933 3816 7934 3822 7934 3825 7934 3808 7935 3819 7935 3812 7935 3817 7936 3825 7936 3824 7936 3809 7937 3815 7937 3813 7937 3807 7938 3818 7938 3827 7938 3812 7939 3819 7939 3826 7939 3811 7940 3821 7940 3822 7940 3807 7941 3827 7941 3819 7941 3818 7942 3829 7942 3827 7942 3812 7943 3820 7943 3815 7943 3818 7944 3814 7944 3829 7944 3819 7945 3827 7945 3826 7945 3812 7946 3826 7946 3820 7946 3813 7947 3815 7947 3823 7947 3822 7948 3821 7948 3828 7948 3822 7949 3828 7949 3825 7949 3821 7950 3823 7950 3830 7950 3821 7951 3830 7951 3828 7951 3825 7952 3828 7952 3824 7952 3824 7953 3828 7953 3814 7953 3823 7954 3815 7954 3830 7954 3851 7955 3848 7955 3855 7955 3831 7956 3833 7956 3840 7956 3831 7957 3838 7957 3832 7957 3832 7958 3834 7958 3836 7958 3835 7959 3836 7959 3839 7959 3833 7960 3837 7960 3847 7960 3833 7961 3845 7961 3840 7961 3831 7962 3840 7962 3841 7962 3831 7963 3841 7963 3838 7963 3835 7964 3850 7964 3837 7964 3836 7965 3834 7965 3839 7965 3832 7966 3838 7966 3834 7966 3833 7967 3847 7967 3845 7967 3839 7968 3844 7968 3835 7968 3837 7969 3846 7969 3847 7969 3839 7970 3848 7970 3844 7970 3840 7971 3842 7971 3841 7971 3837 7972 3850 7972 3846 7972 3839 7973 3834 7973 3843 7973 3839 7974 3843 7974 3848 7974 3840 7975 3845 7975 3842 7975 3835 7976 3844 7976 3850 7976 3834 7977 3838 7977 3843 7977 3838 7978 3849 7978 3843 7978 3841 7979 3853 7979 3838 7979 3844 7980 3848 7980 3851 7980 3846 7981 3850 7981 3851 7981 3847 7982 3846 7982 3852 7982 3847 7983 3852 7983 3854 7983 3847 7984 3854 7984 3845 7984 3845 7985 3854 7985 3842 7985 3846 7986 3851 7986 3852 7986 3842 7987 3853 7987 3841 7987 3843 7988 3849 7988 3855 7988 3838 7989 3853 7989 3849 7989 3849 7990 3853 7990 3855 7990 3848 7991 3843 7991 3855 7991 3850 7992 3844 7992 3851 7992 3858 7993 3862 7993 3863 7993 3858 7994 3863 7994 3857 7994 3861 7995 3860 7995 3869 7995 3861 7996 3865 7996 3860 7996 3862 7997 3879 7997 3863 7997 3859 7998 3877 7998 3864 7998 3867 7999 3870 7999 3856 7999 3861 8000 3857 8000 3865 8000 3863 8001 3875 8001 3857 8001 3859 8002 3869 8002 3868 8002 3857 8003 3875 8003 3871 8003 3860 8004 3866 8004 3869 8004 3860 8005 3865 8005 3866 8005 3856 8006 3870 8006 3862 8006 3859 8007 3868 8007 3877 8007 3857 8008 3871 8008 3865 8008 3869 8009 3872 8009 3868 8009 3862 8010 3870 8010 3879 8010 3863 8011 3879 8011 3874 8011 3870 8012 3878 8012 3879 8012 3864 8013 3873 8013 3867 8013 3867 8014 3873 8014 3870 8014 3869 8015 3866 8015 3872 8015 3866 8016 3865 8016 3876 8016 3870 8017 3873 8017 3878 8017 3866 8018 3876 8018 3872 8018 3864 8019 3877 8019 3873 8019 3879 8020 3878 8020 3874 8020 3863 8021 3874 8021 3875 8021 3881 8022 3882 8022 3883 8022 3880 8023 3882 8023 3881 8023 3898 8024 3884 8024 3880 8024 3883 8025 3884 8025 3898 8025 3884 8026 3882 8026 3880 8026 3882 8027 3884 8027 3883 8027 3887 8028 3905 8028 3888 8028 3886 8029 3885 8029 3887 8029 3887 8030 3885 8030 3905 8030 3895 8031 3885 8031 3886 8031 3888 8032 3885 8032 3895 8032 3905 8033 3885 8033 3888 8033 3888 8034 3895 8034 3890 8034 3890 8035 3895 8035 3896 8035 3890 8036 3901 8036 3889 8036 3896 8037 3903 8037 3890 8037 3890 8038 3903 8038 3901 8038 3891 8039 3903 8039 3896 8039 3889 8040 3903 8040 3891 8040 3901 8041 3903 8041 3889 8041 3889 8042 3891 8042 3892 8042 3892 8043 3891 8043 3893 8043 3894 8044 3892 8044 3897 8044 3897 8045 3892 8045 3893 8045 3894 8046 3904 8046 3881 8046 3897 8047 3904 8047 3894 8047 3880 8048 3902 8048 3897 8048 3881 8049 3904 8049 3880 8049 3880 8050 3904 8050 3902 8050 3897 8051 3902 8051 3904 8051 3900 8052 3898 8052 3886 8052 3886 8053 3898 8053 3895 8053 3895 8054 3898 8054 3880 8054 3895 8055 3880 8055 3896 8055 3896 8056 3880 8056 3897 8056 3896 8057 3897 8057 3891 8057 3891 8058 3897 8058 3893 8058 3883 8059 3898 8059 3899 8059 3899 8060 3898 8060 3900 8060 3899 8061 3900 8061 3887 8061 3887 8062 3900 8062 3886 8062 3899 8063 3887 8063 3883 8063 3883 8064 3887 8064 3888 8064 3883 8065 3888 8065 3881 8065 3881 8066 3888 8066 3890 8066 3881 8067 3890 8067 3894 8067 3894 8068 3890 8068 3889 8068 3894 8069 3889 8069 3892 8069 3906 8070 3931 8070 3908 8070 3922 8071 3931 8071 3906 8071 3907 8072 3909 8072 3922 8072 3908 8073 3909 8073 3907 8073 3909 8074 3931 8074 3922 8074 3931 8075 3909 8075 3908 8075 3912 8076 3930 8076 3913 8076 3911 8077 3910 8077 3912 8077 3912 8078 3910 8078 3930 8078 3914 8079 3910 8079 3911 8079 3913 8080 3910 8080 3914 8080 3930 8081 3910 8081 3913 8081 3913 8082 3914 8082 3925 8082 3925 8083 3914 8083 3916 8083 3925 8084 3927 8084 3917 8084 3916 8085 3929 8085 3925 8085 3925 8086 3929 8086 3927 8086 3915 8087 3929 8087 3916 8087 3917 8088 3929 8088 3915 8088 3927 8089 3929 8089 3917 8089 3917 8090 3915 8090 3918 8090 3918 8091 3915 8091 3921 8091 3919 8092 3918 8092 3920 8092 3920 8093 3918 8093 3921 8093 3919 8094 3926 8094 3906 8094 3920 8095 3926 8095 3919 8095 3922 8096 3928 8096 3920 8096 3906 8097 3926 8097 3922 8097 3922 8098 3926 8098 3928 8098 3920 8099 3928 8099 3926 8099 3923 8100 3907 8100 3911 8100 3911 8101 3907 8101 3914 8101 3914 8102 3907 8102 3922 8102 3914 8103 3922 8103 3916 8103 3916 8104 3922 8104 3920 8104 3916 8105 3920 8105 3915 8105 3915 8106 3920 8106 3921 8106 3908 8107 3907 8107 3924 8107 3924 8108 3907 8108 3923 8108 3924 8109 3923 8109 3912 8109 3912 8110 3923 8110 3911 8110 3924 8111 3912 8111 3908 8111 3908 8112 3912 8112 3913 8112 3908 8113 3913 8113 3906 8113 3906 8114 3913 8114 3925 8114 3906 8115 3925 8115 3919 8115 3919 8116 3925 8116 3917 8116 3919 8117 3917 8117 3918 8117 4213 8118 4209 8118 3933 8118 3933 8119 4209 8119 3934 8119 3936 8120 3937 8120 3932 8120 3932 8121 3937 8121 3934 8121 3937 8122 3933 8122 3934 8122 4558 8123 3933 8123 3936 8123 3933 8124 3935 8124 3936 8124 3937 8125 3935 8125 3933 8125 3937 8126 3936 8126 3935 8126 4145 8127 4142 8127 3990 8127 3990 8128 4142 8128 3938 8128 3990 8129 3938 8129 3939 8129 4145 8130 3940 8130 4142 8130 4142 8131 3941 8131 3938 8131 3938 8132 3941 8132 3987 8132 3987 8133 3941 8133 4208 8133 3987 8134 4208 8134 4217 8134 4141 8135 4209 8135 3941 8135 4140 8136 4608 8136 4141 8136 3942 8137 4610 8137 4140 8137 4140 8138 4610 8138 4608 8138 3943 8139 4611 8139 3942 8139 3942 8140 4611 8140 4610 8140 4138 8141 4611 8141 3943 8141 3944 8142 3946 8142 4138 8142 4138 8143 3946 8143 4611 8143 4137 8144 4126 8144 3944 8144 3944 8145 4126 8145 4114 8145 3944 8146 4114 8146 3946 8146 4136 8147 4135 8147 4137 8147 4137 8148 4135 8148 4126 8148 4114 8149 4126 8149 4132 8149 4132 8150 4126 8150 4128 8150 4114 8151 4132 8151 3945 8151 3945 8152 4132 8152 4117 8152 3945 8153 4117 8153 4116 8153 4611 8154 3946 8154 3947 8154 4611 8155 3947 8155 3948 8155 4611 8156 3948 8156 4111 8156 4611 8157 4111 8157 3949 8157 4611 8158 3949 8158 4612 8158 4612 8159 3949 8159 4613 8159 4613 8160 3949 8160 4359 8160 4359 8161 3949 8161 4350 8161 4350 8162 3949 8162 4110 8162 4350 8163 4110 8163 4354 8163 4354 8164 4110 8164 3950 8164 4354 8165 3950 8165 4349 8165 4349 8166 3950 8166 4344 8166 4344 8167 3950 8167 4104 8167 4344 8168 4104 8168 4341 8168 4341 8169 4104 8169 4436 8169 3950 8170 4110 8170 3951 8170 3951 8171 4110 8171 3952 8171 3951 8172 3952 8172 4106 8172 4106 8173 3952 8173 4107 8173 4107 8174 3952 8174 4109 8174 4106 8175 4105 8175 3951 8175 3953 8176 4439 8176 4104 8176 4102 8177 4439 8177 3953 8177 4101 8178 4437 8178 4102 8178 4102 8179 4437 8179 4439 8179 4099 8180 4437 8180 4101 8180 3954 8181 4079 8181 4099 8181 4099 8182 4079 8182 4078 8182 4099 8183 4078 8183 4437 8183 4437 8184 4078 8184 4435 8184 4435 8185 4078 8185 4077 8185 4435 8186 4077 8186 4438 8186 4438 8187 4077 8187 3955 8187 4438 8188 3955 8188 3956 8188 4438 8189 3956 8189 4384 8189 4384 8190 3956 8190 3960 8190 4384 8191 3960 8191 4434 8191 4434 8192 3960 8192 4316 8192 4097 8193 4089 8193 3954 8193 3954 8194 4089 8194 4083 8194 3954 8195 4083 8195 4079 8195 4079 8196 4083 8196 3957 8196 3957 8197 4083 8197 4081 8197 3957 8198 4081 8198 3958 8198 4096 8199 3959 8199 4097 8199 4097 8200 3959 8200 4089 8200 4089 8201 4084 8201 4083 8201 4316 8202 3960 8202 4308 8202 4308 8203 3960 8203 3961 8203 4308 8204 3961 8204 4306 8204 4306 8205 3961 8205 4305 8205 4305 8206 3961 8206 4298 8206 4298 8207 3961 8207 3963 8207 4298 8208 3963 8208 4302 8208 4302 8209 3963 8209 4297 8209 4297 8210 3963 8210 3962 8210 4297 8211 3962 8211 4294 8211 4294 8212 3962 8212 4548 8212 4294 8213 4548 8213 4547 8213 3961 8214 4074 8214 3963 8214 3963 8215 4074 8215 4066 8215 4066 8216 4074 8216 4071 8216 4066 8217 4071 8217 4069 8217 4072 8218 3964 8218 4074 8218 4074 8219 3964 8219 4071 8219 3966 8220 4548 8220 3962 8220 3965 8221 4548 8221 3966 8221 3967 8222 4553 8222 3965 8222 3965 8223 4553 8223 4548 8223 3968 8224 4554 8224 3967 8224 3967 8225 4554 8225 4553 8225 3969 8226 4033 8226 3968 8226 3968 8227 4033 8227 4554 8227 4062 8228 4048 8228 3969 8228 3969 8229 4048 8229 3970 8229 3969 8230 3970 8230 4033 8230 4060 8231 4058 8231 4062 8231 4062 8232 4058 8232 4048 8232 4048 8233 4042 8233 4041 8233 4048 8234 4041 8234 3970 8234 3970 8235 4041 8235 4036 8235 4036 8236 4041 8236 4039 8236 4036 8237 4039 8237 4038 8237 4554 8238 4033 8238 3971 8238 4554 8239 3971 8239 4032 8239 4554 8240 4032 8240 3972 8240 4554 8241 3972 8241 4555 8241 4555 8242 3972 8242 3973 8242 4555 8243 3973 8243 4264 8243 4555 8244 4264 8244 4551 8244 4264 8245 3973 8245 4260 8245 4260 8246 3973 8246 3974 8246 4260 8247 3974 8247 4258 8247 4258 8248 3974 8248 3975 8248 4258 8249 3975 8249 4255 8249 4255 8250 3975 8250 4252 8250 4252 8251 3975 8251 3976 8251 4252 8252 3976 8252 4243 8252 4243 8253 3976 8253 4489 8253 3975 8254 3974 8254 3977 8254 3977 8255 3974 8255 4031 8255 3977 8256 4031 8256 3978 8256 3978 8257 4031 8257 4027 8257 4027 8258 4031 8258 4029 8258 3978 8259 3979 8259 3977 8259 3980 8260 4496 8260 3976 8260 4023 8261 4496 8261 3980 8261 3981 8262 4491 8262 4023 8262 4023 8263 4491 8263 4496 8263 3989 8264 4491 8264 3981 8264 3982 8265 3997 8265 3989 8265 3989 8266 3997 8266 3983 8266 3989 8267 3983 8267 4491 8267 4491 8268 3983 8268 4492 8268 4492 8269 3983 8269 3996 8269 4492 8270 3996 8270 3984 8270 4492 8271 3984 8271 4493 8271 4493 8272 3984 8272 3995 8272 4493 8273 3995 8273 3994 8273 4493 8274 3994 8274 4226 8274 4493 8275 4226 8275 4494 8275 4494 8276 4226 8276 4225 8276 3985 8277 4010 8277 3982 8277 3982 8278 4010 8278 4007 8278 3982 8279 4007 8279 3997 8279 3997 8280 4007 8280 3999 8280 3999 8281 4007 8281 3986 8281 3999 8282 3986 8282 4000 8282 4019 8283 4018 8283 3985 8283 3985 8284 4018 8284 4010 8284 4010 8285 4012 8285 4007 8285 4226 8286 3994 8286 4215 8286 4215 8287 3994 8287 3987 8287 4215 8288 3987 8288 4217 8288 4141 8289 4608 8289 4607 8289 4141 8290 4607 8290 3934 8290 4606 8291 3934 8291 4607 8291 3934 8292 4606 8292 3932 8292 3932 8293 4606 8293 4368 8293 4368 8294 4606 8294 4369 8294 4369 8295 4606 8295 4370 8295 4370 8296 4606 8296 4361 8296 4361 8297 4606 8297 4360 8297 4360 8298 4606 8298 4613 8298 4360 8299 4613 8299 4359 8299 4294 8300 4547 8300 4295 8300 4295 8301 4547 8301 4291 8301 4291 8302 4547 8302 4290 8302 4290 8303 4547 8303 4556 8303 4290 8304 4556 8304 4277 8304 4277 8305 4556 8305 4276 8305 4276 8306 4556 8306 4267 8306 4267 8307 4556 8307 4551 8307 4267 8308 4551 8308 3988 8308 3988 8309 4551 8309 4264 8309 3976 8310 4496 8310 4489 8310 4243 8311 4489 8311 4247 8311 4247 8312 4489 8312 4495 8312 4247 8313 4495 8313 4232 8313 4232 8314 4495 8314 4237 8314 4237 8315 4495 8315 4494 8315 4237 8316 4494 8316 4236 8316 4236 8317 4494 8317 4224 8317 4224 8318 4494 8318 4225 8318 4341 8319 4436 8319 4343 8319 4343 8320 4436 8320 4325 8320 4325 8321 4436 8321 4434 8321 4325 8322 4434 8322 4337 8322 4337 8323 4434 8323 4330 8323 4330 8324 4434 8324 4310 8324 4439 8325 4436 8325 4104 8325 3941 8326 4209 8326 4208 8326 3934 8327 4209 8327 4141 8327 4147 8328 3990 8328 4148 8328 4148 8329 3990 8329 3939 8329 4148 8330 3939 8330 3991 8330 3991 8331 3939 8331 3938 8331 3991 8332 3938 8332 3992 8332 3992 8333 3938 8333 3987 8333 3992 8334 3987 8334 4151 8334 4151 8335 3987 8335 3994 8335 4151 8336 3994 8336 3993 8336 3993 8337 3994 8337 3995 8337 3993 8338 3995 8338 4152 8338 4152 8339 3995 8339 3984 8339 4152 8340 3984 8340 4153 8340 4153 8341 3984 8341 3996 8341 4153 8342 3996 8342 4207 8342 4207 8343 3996 8343 3983 8343 4207 8344 3983 8344 4155 8344 4155 8345 3983 8345 3997 8345 4155 8346 3997 8346 3998 8346 3998 8347 3997 8347 3999 8347 3998 8348 3999 8348 4156 8348 4156 8349 3999 8349 4000 8349 4156 8350 4000 8350 4001 8350 4001 8351 4000 8351 3986 8351 4001 8352 3986 8352 4005 8352 4005 8353 3986 8353 4007 8353 4157 8354 4011 8354 4003 8354 4005 8355 4007 8355 4004 8355 4006 8356 4007 8356 4012 8356 4008 8357 4013 8357 4010 8357 4008 8358 4010 8358 4003 8358 4011 8359 4157 8359 4002 8359 4002 8360 4157 8360 4005 8360 4002 8361 4016 8361 4011 8361 4003 8362 4011 8362 4014 8362 4016 8363 4014 8363 4011 8363 4014 8364 4016 8364 4015 8364 4004 8365 4015 8365 4016 8365 4015 8366 4009 8366 4008 8366 4013 8367 4009 8367 4012 8367 4008 8368 4003 8368 4014 8368 4010 8369 4013 8369 4012 8369 4015 8370 4008 8370 4014 8370 4009 8371 4013 8371 4008 8371 4004 8372 4016 8372 4005 8372 4009 8373 4015 8373 4004 8373 4009 8374 4006 8374 4012 8374 4016 8375 4002 8375 4005 8375 4009 8376 4004 8376 4006 8376 4006 8377 4004 8377 4007 8377 4003 8378 4010 8378 4017 8378 4017 8379 4010 8379 4018 8379 4017 8380 4018 8380 4158 8380 4158 8381 4018 8381 4019 8381 4158 8382 4019 8382 4020 8382 4020 8383 4019 8383 3985 8383 4020 8384 3985 8384 4021 8384 4021 8385 3985 8385 3982 8385 4021 8386 3982 8386 4154 8386 4154 8387 3982 8387 3989 8387 4154 8388 3989 8388 4022 8388 4022 8389 3989 8389 3981 8389 4022 8390 3981 8390 4159 8390 4159 8391 3981 8391 4023 8391 4159 8392 4023 8392 4024 8392 4024 8393 4023 8393 3980 8393 4024 8394 3980 8394 4160 8394 4160 8395 3980 8395 3976 8395 4160 8396 3976 8396 4162 8396 4162 8397 3976 8397 3975 8397 4162 8398 3975 8398 4025 8398 4025 8399 3975 8399 3977 8399 4025 8400 3977 8400 4026 8400 4026 8401 3977 8401 3979 8401 4026 8402 3979 8402 5847 8402 5847 8403 3979 8403 3978 8403 5847 8404 3978 8404 4163 8404 4163 8405 3978 8405 4027 8405 4163 8406 4027 8406 4028 8406 4028 8407 4027 8407 4029 8407 4028 8408 4029 8408 4030 8408 4030 8409 4029 8409 4031 8409 4030 8410 4031 8410 4161 8410 4161 8411 4031 8411 3974 8411 4161 8412 3974 8412 4206 8412 4206 8413 3974 8413 3973 8413 4206 8414 3973 8414 4164 8414 4164 8415 3973 8415 3972 8415 4164 8416 3972 8416 4165 8416 4165 8417 3972 8417 4032 8417 4165 8418 4032 8418 4166 8418 4166 8419 4032 8419 3971 8419 4166 8420 3971 8420 4034 8420 4034 8421 3971 8421 4033 8421 4034 8422 4033 8422 4035 8422 4035 8423 4033 8423 3970 8423 4035 8424 3970 8424 4170 8424 4170 8425 3970 8425 4036 8425 4170 8426 4036 8426 4037 8426 4037 8427 4036 8427 4038 8427 4037 8428 4038 8428 4173 8428 4173 8429 4038 8429 4039 8429 4173 8430 4039 8430 4045 8430 4045 8431 4039 8431 4041 8431 4043 8432 4055 8432 4054 8432 4044 8433 4043 8433 4051 8433 4044 8434 4051 8434 4052 8434 4040 8435 4045 8435 4041 8435 4048 8436 4052 8436 4050 8436 4049 8437 4041 8437 4056 8437 4048 8438 4050 8438 4053 8438 4057 8439 4042 8439 4053 8439 4057 8440 4041 8440 4042 8440 4052 8441 4048 8441 4047 8441 4047 8442 4048 8442 4044 8442 4047 8443 4044 8443 4052 8443 4043 8444 4054 8444 4051 8444 4040 8445 4055 8445 4045 8445 4040 8446 4054 8446 4055 8446 4054 8447 4046 8447 4051 8447 4051 8448 4046 8448 4052 8448 4046 8449 4049 8449 4052 8449 4049 8450 4046 8450 4040 8450 4049 8451 4040 8451 4041 8451 4052 8452 4049 8452 4050 8452 4049 8453 4057 8453 4050 8453 4057 8454 4049 8454 4056 8454 4050 8455 4057 8455 4053 8455 4057 8456 4056 8456 4041 8456 4048 8457 4053 8457 4042 8457 4054 8458 4040 8458 4046 8458 4044 8459 4048 8459 4172 8459 4172 8460 4048 8460 4058 8460 4172 8461 4058 8461 4059 8461 4059 8462 4058 8462 4060 8462 4059 8463 4060 8463 4061 8463 4061 8464 4060 8464 4062 8464 4061 8465 4062 8465 4171 8465 4171 8466 4062 8466 3969 8466 4171 8467 3969 8467 4063 8467 4063 8468 3969 8468 3968 8468 4063 8469 3968 8469 4167 8469 4167 8470 3968 8470 3967 8470 4167 8471 3967 8471 4064 8471 4064 8472 3967 8472 3965 8472 4064 8473 3965 8473 4168 8473 4168 8474 3965 8474 3966 8474 4168 8475 3966 8475 4169 8475 4169 8476 3966 8476 3962 8476 4169 8477 3962 8477 4065 8477 4065 8478 3962 8478 3963 8478 4065 8479 3963 8479 4067 8479 4067 8480 3963 8480 4066 8480 4067 8481 4066 8481 4068 8481 4068 8482 4066 8482 4069 8482 4068 8483 4069 8483 4174 8483 4174 8484 4069 8484 4071 8484 4174 8485 4071 8485 4070 8485 4070 8486 4071 8486 3964 8486 4070 8487 3964 8487 4073 8487 4073 8488 3964 8488 4072 8488 4073 8489 4072 8489 4175 8489 4175 8490 4072 8490 4074 8490 4175 8491 4074 8491 4075 8491 4075 8492 4074 8492 3961 8492 4075 8493 3961 8493 4176 8493 4176 8494 3961 8494 3960 8494 4176 8495 3960 8495 4177 8495 4177 8496 3960 8496 3956 8496 4177 8497 3956 8497 4076 8497 4076 8498 3956 8498 3955 8498 4076 8499 3955 8499 4178 8499 4178 8500 3955 8500 4077 8500 4178 8501 4077 8501 4179 8501 4179 8502 4077 8502 4078 8502 4179 8503 4078 8503 4181 8503 4181 8504 4078 8504 4079 8504 4181 8505 4079 8505 4180 8505 4180 8506 4079 8506 3957 8506 4180 8507 3957 8507 4080 8507 4080 8508 3957 8508 3958 8508 4080 8509 3958 8509 6252 8509 6252 8510 3958 8510 4081 8510 6252 8511 4081 8511 6250 8511 6250 8512 4081 8512 4083 8512 4090 8513 4082 8513 4085 8513 4092 8514 6250 8514 4083 8514 4089 8515 4085 8515 4088 8515 4091 8516 4083 8516 4084 8516 4085 8517 4089 8517 4090 8517 4086 8518 4093 8518 4087 8518 4090 8519 4086 8519 4082 8519 4082 8520 4087 8520 4085 8520 4092 8521 4087 8521 6250 8521 4087 8522 4088 8522 4085 8522 4088 8523 4092 8523 4091 8523 4088 8524 4084 8524 4089 8524 4086 8525 4090 8525 4093 8525 4082 8526 4086 8526 4087 8526 4087 8527 4092 8527 4088 8527 4088 8528 4091 8528 4084 8528 4087 8529 4093 8529 6250 8529 4091 8530 4092 8530 4083 8530 4090 8531 4089 8531 4094 8531 4094 8532 4089 8532 3959 8532 4094 8533 3959 8533 4095 8533 4095 8534 3959 8534 4096 8534 4095 8535 4096 8535 4182 8535 4182 8536 4096 8536 4097 8536 4182 8537 4097 8537 4098 8537 4098 8538 4097 8538 3954 8538 4098 8539 3954 8539 4183 8539 4183 8540 3954 8540 4099 8540 4183 8541 4099 8541 4184 8541 4184 8542 4099 8542 4101 8542 4184 8543 4101 8543 4100 8543 4100 8544 4101 8544 4102 8544 4100 8545 4102 8545 4103 8545 4103 8546 4102 8546 3953 8546 4103 8547 3953 8547 4185 8547 4185 8548 3953 8548 4104 8548 4185 8549 4104 8549 4187 8549 4187 8550 4104 8550 3950 8550 4187 8551 3950 8551 4191 8551 4191 8552 3950 8552 3951 8552 4191 8553 3951 8553 4192 8553 4192 8554 3951 8554 4105 8554 4192 8555 4105 8555 4190 8555 4190 8556 4105 8556 4106 8556 4190 8557 4106 8557 4189 8557 4189 8558 4106 8558 4107 8558 4189 8559 4107 8559 4108 8559 4108 8560 4107 8560 4109 8560 4108 8561 4109 8561 4193 8561 4193 8562 4109 8562 3952 8562 4193 8563 3952 8563 4188 8563 4188 8564 3952 8564 4110 8564 4188 8565 4110 8565 4194 8565 4194 8566 4110 8566 3949 8566 4194 8567 3949 8567 4195 8567 4195 8568 3949 8568 4111 8568 4195 8569 4111 8569 4196 8569 4196 8570 4111 8570 3948 8570 4196 8571 3948 8571 4112 8571 4112 8572 3948 8572 3947 8572 4112 8573 3947 8573 4205 8573 4205 8574 3947 8574 3946 8574 4205 8575 3946 8575 4113 8575 4113 8576 3946 8576 4114 8576 4113 8577 4114 8577 4203 8577 4203 8578 4114 8578 3945 8578 4203 8579 3945 8579 4115 8579 4115 8580 3945 8580 4116 8580 4115 8581 4116 8581 4204 8581 4204 8582 4116 8582 4117 8582 4204 8583 4117 8583 4131 8583 4131 8584 4117 8584 4132 8584 4121 8585 4131 8585 4123 8585 4120 8586 4122 8586 4118 8586 4124 8587 4131 8587 4119 8587 4119 8588 4131 8588 4132 8588 4119 8589 4132 8589 4124 8589 4129 8590 4124 8590 4132 8590 4129 8591 4130 8591 4118 8591 4118 8592 4130 8592 4126 8592 4118 8593 4126 8593 4120 8593 4120 8594 4127 8594 4122 8594 4127 8595 4121 8595 4122 8595 4121 8596 4123 8596 4122 8596 4122 8597 4123 8597 4118 8597 4124 8598 4123 8598 4131 8598 4123 8599 4124 8599 4118 8599 4124 8600 4129 8600 4118 8600 4125 8601 4129 8601 4132 8601 4126 8602 4130 8602 4128 8602 4121 8603 4127 8603 4131 8603 4130 8604 4129 8604 4125 8604 4128 8605 4125 8605 4132 8605 4130 8606 4125 8606 4128 8606 4120 8607 4126 8607 4133 8607 4133 8608 4126 8608 4135 8608 4133 8609 4135 8609 4134 8609 4134 8610 4135 8610 4136 8610 4134 8611 4136 8611 4202 8611 4202 8612 4136 8612 4137 8612 4202 8613 4137 8613 4201 8613 4201 8614 4137 8614 3944 8614 4201 8615 3944 8615 4197 8615 4197 8616 3944 8616 4138 8616 4197 8617 4138 8617 4198 8617 4198 8618 4138 8618 3943 8618 4198 8619 3943 8619 4139 8619 4139 8620 3943 8620 3942 8620 4139 8621 3942 8621 4199 8621 4199 8622 3942 8622 4140 8622 4199 8623 4140 8623 4200 8623 4200 8624 4140 8624 4141 8624 4200 8625 4141 8625 4149 8625 4149 8626 4141 8626 3941 8626 4149 8627 3941 8627 4146 8627 4146 8628 3941 8628 4142 8628 4146 8629 4142 8629 4143 8629 4143 8630 4142 8630 3940 8630 4143 8631 3940 8631 4144 8631 4144 8632 3940 8632 4145 8632 4144 8633 4145 8633 4147 8633 4147 8634 4145 8634 3990 8634 4143 8635 4144 8635 4146 8635 4146 8636 4144 8636 4147 8636 4146 8637 4147 8637 3991 8637 3991 8638 4147 8638 4148 8638 3991 8639 3992 8639 4146 8639 4146 8640 3992 8640 4149 8640 4149 8641 3992 8641 4150 8641 4149 8642 4150 8642 4211 8642 4151 8643 4214 8643 3992 8643 3992 8644 4214 8644 4150 8644 3993 8645 4445 8645 4151 8645 4151 8646 4445 8646 4443 8646 4152 8647 4445 8647 3993 8647 4153 8648 4448 8648 4152 8648 4152 8649 4448 8649 4445 8649 4207 8650 4448 8650 4153 8650 4155 8651 4154 8651 4207 8651 4207 8652 4154 8652 4448 8652 3998 8653 4005 8653 4155 8653 4155 8654 4005 8654 4021 8654 4155 8655 4021 8655 4154 8655 4156 8656 4001 8656 3998 8656 3998 8657 4001 8657 4005 8657 4005 8658 4157 8658 4003 8658 4005 8659 4003 8659 4021 8659 4021 8660 4003 8660 4020 8660 4020 8661 4003 8661 4017 8661 4020 8662 4017 8662 4158 8662 4448 8663 4154 8663 4022 8663 4448 8664 4022 8664 4442 8664 4442 8665 4022 8665 4159 8665 4442 8666 4159 8666 4024 8666 4442 8667 4024 8667 4160 8667 4442 8668 4160 8668 4444 8668 4444 8669 4160 8669 4246 8669 4444 8670 4246 8670 4248 8670 4246 8671 4160 8671 4250 8671 4250 8672 4160 8672 4162 8672 4250 8673 4162 8673 4249 8673 4249 8674 4162 8674 4161 8674 4249 8675 4161 8675 4256 8675 4256 8676 4161 8676 4257 8676 4257 8677 4161 8677 4206 8677 4257 8678 4206 8678 4265 8678 4265 8679 4206 8679 4502 8679 4161 8680 4162 8680 4030 8680 4030 8681 4162 8681 4025 8681 4030 8682 4025 8682 4163 8682 4163 8683 4025 8683 5847 8683 5847 8684 4025 8684 4026 8684 4163 8685 4028 8685 4030 8685 4164 8686 4498 8686 4206 8686 4206 8687 4498 8687 4502 8687 4165 8688 4498 8688 4164 8688 4166 8689 4498 8689 4165 8689 4034 8690 4503 8690 4166 8690 4166 8691 4503 8691 4498 8691 4035 8692 4171 8692 4034 8692 4034 8693 4171 8693 4063 8693 4034 8694 4063 8694 4503 8694 4503 8695 4063 8695 4167 8695 4503 8696 4167 8696 4064 8696 4503 8697 4064 8697 4501 8697 4501 8698 4064 8698 4168 8698 4501 8699 4168 8699 4169 8699 4501 8700 4169 8700 4497 8700 4497 8701 4169 8701 4292 8701 4497 8702 4292 8702 4293 8702 4170 8703 4045 8703 4035 8703 4035 8704 4045 8704 4044 8704 4035 8705 4044 8705 4171 8705 4171 8706 4044 8706 4061 8706 4061 8707 4044 8707 4172 8707 4061 8708 4172 8708 4059 8708 4037 8709 4173 8709 4170 8709 4170 8710 4173 8710 4045 8710 4045 8711 4055 8711 4044 8711 4055 8712 4043 8712 4044 8712 4292 8713 4169 8713 4299 8713 4299 8714 4169 8714 4065 8714 4299 8715 4065 8715 4300 8715 4300 8716 4065 8716 4304 8716 4304 8717 4065 8717 4075 8717 4304 8718 4075 8718 4309 8718 4309 8719 4075 8719 4176 8719 4309 8720 4176 8720 4312 8720 4312 8721 4176 8721 4394 8721 4065 8722 4067 8722 4075 8722 4075 8723 4067 8723 4175 8723 4175 8724 4067 8724 4174 8724 4175 8725 4174 8725 4070 8725 4067 8726 4068 8726 4174 8726 4070 8727 4073 8727 4175 8727 4177 8728 4389 8728 4176 8728 4176 8729 4389 8729 4394 8729 4076 8730 4389 8730 4177 8730 4178 8731 4388 8731 4076 8731 4076 8732 4388 8732 4389 8732 4179 8733 4388 8733 4178 8733 4181 8734 4183 8734 4179 8734 4179 8735 4183 8735 4388 8735 4180 8736 6250 8736 4181 8736 4181 8737 6250 8737 4098 8737 4181 8738 4098 8738 4183 8738 4080 8739 6252 8739 4180 8739 4180 8740 6252 8740 6250 8740 4098 8741 6250 8741 4090 8741 4090 8742 6250 8742 4093 8742 4098 8743 4090 8743 4182 8743 4182 8744 4090 8744 4094 8744 4182 8745 4094 8745 4095 8745 4388 8746 4183 8746 4386 8746 4386 8747 4183 8747 4184 8747 4386 8748 4184 8748 4100 8748 4386 8749 4100 8749 4383 8749 4383 8750 4100 8750 4103 8750 4383 8751 4103 8751 4185 8751 4383 8752 4185 8752 4186 8752 4383 8753 4186 8753 4385 8753 4385 8754 4186 8754 4342 8754 4186 8755 4185 8755 4345 8755 4345 8756 4185 8756 4187 8756 4345 8757 4187 8757 4346 8757 4346 8758 4187 8758 4188 8758 4346 8759 4188 8759 4351 8759 4351 8760 4188 8760 4353 8760 4353 8761 4188 8761 4194 8761 4353 8762 4194 8762 4355 8762 4355 8763 4194 8763 4559 8763 4188 8764 4187 8764 4193 8764 4193 8765 4187 8765 4191 8765 4193 8766 4191 8766 4189 8766 4189 8767 4191 8767 4190 8767 4190 8768 4191 8768 4192 8768 4189 8769 4108 8769 4193 8769 4195 8770 4562 8770 4194 8770 4194 8771 4562 8771 4559 8771 4196 8772 4562 8772 4195 8772 4112 8773 4561 8773 4196 8773 4196 8774 4561 8774 4562 8774 4205 8775 4561 8775 4112 8775 4113 8776 4201 8776 4205 8776 4205 8777 4201 8777 4197 8777 4205 8778 4197 8778 4561 8778 4561 8779 4197 8779 4198 8779 4561 8780 4198 8780 4139 8780 4561 8781 4139 8781 4558 8781 4558 8782 4139 8782 4199 8782 4558 8783 4199 8783 4200 8783 4558 8784 4200 8784 3933 8784 4203 8785 4131 8785 4113 8785 4113 8786 4131 8786 4120 8786 4113 8787 4120 8787 4201 8787 4201 8788 4120 8788 4202 8788 4202 8789 4120 8789 4133 8789 4202 8790 4133 8790 4134 8790 4115 8791 4204 8791 4203 8791 4203 8792 4204 8792 4131 8792 4131 8793 4127 8793 4120 8793 3933 8794 4200 8794 4213 8794 4213 8795 4200 8795 4149 8795 4213 8796 4149 8796 4211 8796 4559 8797 4563 8797 4355 8797 4357 8798 4563 8798 4362 8798 4362 8799 4563 8799 4557 8799 4362 8800 4557 8800 4363 8800 4363 8801 4557 8801 4364 8801 4364 8802 4557 8802 4380 8802 4380 8803 4557 8803 3936 8803 3936 8804 4557 8804 4558 8804 4502 8805 4499 8805 4265 8805 4263 8806 4499 8806 4278 8806 4278 8807 4499 8807 4283 8807 4283 8808 4499 8808 4497 8808 4283 8809 4497 8809 4289 8809 4289 8810 4497 8810 4293 8810 4151 8811 4443 8811 4222 8811 4443 8812 4440 8812 4222 8812 4220 8813 4440 8813 4227 8813 4227 8814 4440 8814 4441 8814 4227 8815 4441 8815 4234 8815 4234 8816 4441 8816 4242 8816 4242 8817 4441 8817 4244 8817 4244 8818 4441 8818 4248 8818 4248 8819 4441 8819 4444 8819 4312 8820 4394 8820 4387 8820 4312 8821 4387 8821 4313 8821 4313 8822 4387 8822 4320 8822 4320 8823 4387 8823 4319 8823 4319 8824 4387 8824 4317 8824 4317 8825 4387 8825 4342 8825 4342 8826 4387 8826 4385 8826 4222 8827 4214 8827 4151 8827 4150 8828 4217 8828 4211 8828 4211 8829 4217 8829 4208 8829 4209 8830 4213 8830 4210 8830 4210 8831 4208 8831 4209 8831 4213 8832 4212 8832 4210 8832 4210 8833 4212 8833 4211 8833 4210 8834 4211 8834 4208 8834 4212 8835 4213 8835 4211 8835 4218 8836 4216 8836 4217 8836 4216 8837 4215 8837 4217 8837 4218 8838 4214 8838 4215 8838 4218 8839 4150 8839 4214 8839 4150 8840 4218 8840 4217 8840 4216 8841 4218 8841 4215 8841 4222 8842 4226 8842 4214 8842 4214 8843 4226 8843 4215 8843 4226 8844 4222 8844 4221 8844 4225 8845 4219 8845 4224 8845 4440 8846 4220 8846 4222 8846 4221 8847 4223 8847 4220 8847 4221 8848 4220 8848 4224 8848 4222 8849 4223 8849 4221 8849 4226 8850 4219 8850 4225 8850 4219 8851 4226 8851 4221 8851 4223 8852 4222 8852 4220 8852 4219 8853 4221 8853 4224 8853 4227 8854 4236 8854 4220 8854 4220 8855 4236 8855 4224 8855 4238 8856 4240 8856 4231 8856 4241 8857 4232 8857 4239 8857 4241 8858 4239 8858 4231 8858 4232 8859 4241 8859 4242 8859 4242 8860 4241 8860 4240 8860 4227 8861 4230 8861 4236 8861 4238 8862 4234 8862 4240 8862 4227 8863 4234 8863 4229 8863 4234 8864 4238 8864 4229 8864 4227 8865 4229 8865 4230 8865 4229 8866 4238 8866 4230 8866 4228 8867 4230 8867 4231 8867 4231 8868 4233 8868 4228 8868 4228 8869 4233 8869 4235 8869 4235 8870 4233 8870 4237 8870 4237 8871 4233 8871 4239 8871 4228 8872 4236 8872 4230 8872 4236 8873 4228 8873 4235 8873 4237 8874 4236 8874 4235 8874 4231 8875 4230 8875 4238 8875 4231 8876 4240 8876 4241 8876 4233 8877 4231 8877 4239 8877 4237 8878 4239 8878 4232 8878 4240 8879 4234 8879 4242 8879 4244 8880 4247 8880 4242 8880 4242 8881 4247 8881 4232 8881 4244 8882 4245 8882 4247 8882 4244 8883 4248 8883 4245 8883 4245 8884 4246 8884 4243 8884 4245 8885 4248 8885 4246 8885 4247 8886 4245 8886 4243 8886 4250 8887 4252 8887 4246 8887 4246 8888 4252 8888 4243 8888 4251 8889 4253 8889 4252 8889 4253 8890 4255 8890 4252 8890 4250 8891 4249 8891 4254 8891 4254 8892 4251 8892 4250 8892 4251 8893 4249 8893 4255 8893 4251 8894 4254 8894 4249 8894 4250 8895 4251 8895 4252 8895 4253 8896 4251 8896 4255 8896 4256 8897 4258 8897 4249 8897 4249 8898 4258 8898 4255 8898 4259 8899 4257 8899 4260 8899 4259 8900 4256 8900 4257 8900 4256 8901 4259 8901 4258 8901 4260 8902 4258 8902 4259 8902 4265 8903 4264 8903 4257 8903 4257 8904 4264 8904 4260 8904 4264 8905 4265 8905 4262 8905 4262 8906 3988 8906 4264 8906 4261 8907 4265 8907 4263 8907 4265 8908 4261 8908 4262 8908 4262 8909 4263 8909 3988 8909 4262 8910 4261 8910 4263 8910 4263 8911 4265 8911 4499 8911 4278 8912 4267 8912 4263 8912 4263 8913 4267 8913 3988 8913 4286 8914 4283 8914 4289 8914 4271 8915 4289 8915 4287 8915 4284 8916 4287 8916 4270 8916 4266 8917 4290 8917 4274 8917 4290 8918 4266 8918 4289 8918 4289 8919 4266 8919 4285 8919 4278 8920 4273 8920 4267 8920 4283 8921 4269 8921 4278 8921 4278 8922 4269 8922 4272 8922 4269 8923 4270 8923 4272 8923 4270 8924 4286 8924 4271 8924 4288 8925 4270 8925 4287 8925 4288 8926 4287 8926 4289 8926 4270 8927 4282 8927 4272 8927 4278 8928 4272 8928 4279 8928 4272 8929 4282 8929 4279 8929 4285 8930 4282 8930 4288 8930 4285 8931 4288 8931 4289 8931 4282 8932 4275 8932 4273 8932 4275 8933 4282 8933 4274 8933 4273 8934 4275 8934 4280 8934 4281 8935 4275 8935 4274 8935 4275 8936 4281 8936 4280 8936 4268 8937 4281 8937 4274 8937 4268 8938 4274 8938 4290 8938 4281 8939 4268 8939 4290 8939 4281 8940 4276 8940 4280 8940 4281 8941 4277 8941 4276 8941 4273 8942 4278 8942 4279 8942 4280 8943 4267 8943 4273 8943 4276 8944 4267 8944 4280 8944 4282 8945 4273 8945 4279 8945 4269 8946 4283 8946 4286 8946 4270 8947 4269 8947 4286 8947 4270 8948 4271 8948 4284 8948 4270 8949 4288 8949 4282 8949 4282 8950 4285 8950 4274 8950 4271 8951 4286 8951 4289 8951 4274 8952 4285 8952 4266 8952 4277 8953 4281 8953 4290 8953 4293 8954 4291 8954 4289 8954 4289 8955 4291 8955 4290 8955 4293 8956 4296 8956 4291 8956 4296 8957 4292 8957 4294 8957 4296 8958 4293 8958 4292 8958 4291 8959 4296 8959 4295 8959 4295 8960 4296 8960 4294 8960 4299 8961 4297 8961 4292 8961 4292 8962 4297 8962 4294 8962 4299 8963 4301 8963 4297 8963 4302 8964 4301 8964 4298 8964 4301 8965 4300 8965 4298 8965 4301 8966 4299 8966 4300 8966 4297 8967 4301 8967 4302 8967 4304 8968 4305 8968 4300 8968 4300 8969 4305 8969 4298 8969 4304 8970 4307 8970 4305 8970 4307 8971 4308 8971 4306 8971 4305 8972 4307 8972 4306 8972 4303 8973 4309 8973 4307 8973 4307 8974 4309 8974 4308 8974 4303 8975 4304 8975 4309 8975 4304 8976 4303 8976 4307 8976 4312 8977 4316 8977 4309 8977 4309 8978 4316 8978 4308 8978 4311 8979 4310 8979 4315 8979 4434 8980 4316 8980 4310 8980 4314 8981 4312 8981 4313 8981 4311 8982 4313 8982 4310 8982 4311 8983 4314 8983 4313 8983 4312 8984 4314 8984 4311 8984 4312 8985 4311 8985 4316 8985 4316 8986 4311 8986 4315 8986 4316 8987 4315 8987 4310 8987 4320 8988 4330 8988 4313 8988 4313 8989 4330 8989 4310 8989 4319 8990 4334 8990 4326 8990 4334 8991 4317 8991 4338 8991 4338 8992 4317 8992 4336 8992 4338 8993 4336 8993 4322 8993 4320 8994 4327 8994 4328 8994 4322 8995 4324 8995 4323 8995 4335 8996 4325 8996 4337 8996 4325 8997 4339 8997 4317 8997 4317 8998 4339 8998 4336 8998 4320 8999 4318 8999 4330 8999 4330 9000 4318 9000 4331 9000 4334 9001 4322 9001 4326 9001 4320 9002 4326 9002 4321 9002 4320 9003 4321 9003 4327 9003 4327 9004 4321 9004 4322 9004 4326 9005 4322 9005 4321 9005 4327 9006 4322 9006 4329 9006 4320 9007 4328 9007 4318 9007 4318 9008 4328 9008 4322 9008 4318 9009 4322 9009 4331 9009 4322 9010 4323 9010 4331 9010 4323 9011 4333 9011 4331 9011 4335 9012 4323 9012 4324 9012 4335 9013 4324 9013 4325 9013 4326 9014 4320 9014 4319 9014 4330 9015 4331 9015 4332 9015 4332 9016 4331 9016 4333 9016 4330 9017 4332 9017 4337 9017 4322 9018 4328 9018 4329 9018 4337 9019 4332 9019 4333 9019 4322 9020 4334 9020 4338 9020 4322 9021 4336 9021 4324 9021 4323 9022 4335 9022 4333 9022 4333 9023 4335 9023 4337 9023 4334 9024 4319 9024 4317 9024 4336 9025 4339 9025 4324 9025 4325 9026 4324 9026 4339 9026 4342 9027 4343 9027 4317 9027 4317 9028 4343 9028 4325 9028 4343 9029 4340 9029 4341 9029 4340 9030 4342 9030 4186 9030 4340 9031 4186 9031 4341 9031 4342 9032 4340 9032 4343 9032 4345 9033 4344 9033 4186 9033 4186 9034 4344 9034 4341 9034 4345 9035 4348 9035 4344 9035 4348 9036 4349 9036 4344 9036 4347 9037 4346 9037 4348 9037 4345 9038 4347 9038 4348 9038 4348 9039 4346 9039 4349 9039 4347 9040 4345 9040 4346 9040 4351 9041 4354 9041 4346 9041 4346 9042 4354 9042 4349 9042 4354 9043 4352 9043 4350 9043 4352 9044 4353 9044 4350 9044 4352 9045 4351 9045 4353 9045 4351 9046 4352 9046 4354 9046 4355 9047 4359 9047 4353 9047 4353 9048 4359 9048 4350 9048 4355 9049 4358 9049 4359 9049 4356 9050 4355 9050 4357 9050 4358 9051 4357 9051 4360 9051 4355 9052 4563 9052 4357 9052 4359 9053 4358 9053 4360 9053 4358 9054 4355 9054 4356 9054 4358 9055 4356 9055 4357 9055 4362 9056 4361 9056 4357 9056 4357 9057 4361 9057 4360 9057 4362 9058 4363 9058 4371 9058 4366 9059 4377 9059 4367 9059 4366 9060 4367 9060 4372 9060 4377 9061 4368 9061 4381 9061 4361 9062 4373 9062 4374 9062 4375 9063 4374 9063 4378 9063 4376 9064 4379 9064 4370 9064 4364 9065 4371 9065 4363 9065 4368 9066 4382 9066 4380 9066 4380 9067 4382 9067 4377 9067 4362 9068 4373 9068 4361 9068 4365 9069 4364 9069 4380 9069 4366 9070 4371 9070 4365 9070 4371 9071 4366 9071 4372 9071 4373 9072 4367 9072 4374 9072 4367 9073 4378 9073 4374 9073 4378 9074 4367 9074 4381 9074 4361 9075 4375 9075 4376 9075 4375 9076 4378 9076 4376 9076 4378 9077 4379 9077 4376 9077 4379 9078 4378 9078 4381 9078 4370 9079 4379 9079 4369 9079 4372 9080 4362 9080 4371 9080 4362 9081 4372 9081 4373 9081 4374 9082 4375 9082 4361 9082 4370 9083 4361 9083 4376 9083 4367 9084 4373 9084 4372 9084 4365 9085 4371 9085 4364 9085 4366 9086 4365 9086 4377 9086 4377 9087 4365 9087 4380 9087 4377 9088 4381 9088 4367 9088 4369 9089 4379 9089 4381 9089 4369 9090 4381 9090 4368 9090 4377 9091 4382 9091 4368 9091 3936 9092 3932 9092 4380 9092 4380 9093 3932 9093 4368 9093 4385 9094 4392 9094 4383 9094 4387 9095 4391 9095 4385 9095 4383 9096 4390 9096 4398 9096 4383 9097 4398 9097 4386 9097 4385 9098 4391 9098 4404 9098 4385 9099 4404 9099 4392 9099 4383 9100 4392 9100 4390 9100 4388 9101 4399 9101 4389 9101 4386 9102 4393 9102 4388 9102 4388 9103 4396 9103 4399 9103 4389 9104 4395 9104 4394 9104 4388 9105 4393 9105 4396 9105 4387 9106 4394 9106 4391 9106 4389 9107 4399 9107 4395 9107 4394 9108 4395 9108 4402 9108 4391 9109 4400 9109 4404 9109 4392 9110 4404 9110 4397 9110 4392 9111 4397 9111 4390 9111 4386 9112 4398 9112 4393 9112 4394 9113 4401 9113 4391 9113 4390 9114 4403 9114 4398 9114 4391 9115 4401 9115 4400 9115 4398 9116 4403 9116 4408 9116 4398 9117 4408 9117 4393 9117 4394 9118 4402 9118 4401 9118 4393 9119 4408 9119 4416 9119 4395 9120 4405 9120 4402 9120 4399 9121 4407 9121 4395 9121 4390 9122 4397 9122 4403 9122 4396 9123 4406 9123 4399 9123 4393 9124 4416 9124 4396 9124 4395 9125 4407 9125 4405 9125 4399 9126 4406 9126 4407 9126 4396 9127 4416 9127 4410 9127 4396 9128 4410 9128 4406 9128 4402 9129 4413 9129 4401 9129 4402 9130 4405 9130 4413 9130 4400 9131 4401 9131 4411 9131 4404 9132 4412 9132 4397 9132 4397 9133 4409 9133 4403 9133 4403 9134 4409 9134 4408 9134 4404 9135 4400 9135 4422 9135 4404 9136 4422 9136 4412 9136 4400 9137 4411 9137 4422 9137 4397 9138 4412 9138 4409 9138 4401 9139 4413 9139 4414 9139 4407 9140 4427 9140 4405 9140 4412 9141 4415 9141 4409 9141 4410 9142 4416 9142 4406 9142 4409 9143 4421 9143 4408 9143 4406 9144 4424 9144 4407 9144 4408 9145 4419 9145 4416 9145 4409 9146 4415 9146 4421 9146 4401 9147 4414 9147 4411 9147 4413 9148 4417 9148 4414 9148 4416 9149 4418 9149 4406 9149 4413 9150 4405 9150 4430 9150 4413 9151 4430 9151 4417 9151 4411 9152 4414 9152 4422 9152 4422 9153 4429 9153 4412 9153 4405 9154 4427 9154 4430 9154 4408 9155 4421 9155 4419 9155 4407 9156 4424 9156 4425 9156 4407 9157 4425 9157 4427 9157 4430 9158 4420 9158 4417 9158 4417 9159 4420 9159 4414 9159 4414 9160 4426 9160 4422 9160 4421 9161 4428 9161 4419 9161 4416 9162 4419 9162 4418 9162 4406 9163 4418 9163 4424 9163 4412 9164 4429 9164 4432 9164 4412 9165 4432 9165 4415 9165 4422 9166 4426 9166 4431 9166 4414 9167 4420 9167 4426 9167 4421 9168 4415 9168 4423 9168 4415 9169 4432 9169 4423 9169 4422 9170 4431 9170 4429 9170 4421 9171 4423 9171 4428 9171 4425 9172 4438 9172 4427 9172 4424 9173 4435 9173 4425 9173 4420 9174 4430 9174 4384 9174 4420 9175 4384 9175 4426 9175 4427 9176 4438 9176 4430 9176 4431 9177 4433 9177 4429 9177 4418 9178 4419 9178 4437 9178 4418 9179 4437 9179 4424 9179 4428 9180 4439 9180 4419 9180 4424 9181 4437 9181 4435 9181 4425 9182 4435 9182 4438 9182 4426 9183 4434 9183 4431 9183 4429 9184 4433 9184 4432 9184 4426 9185 4384 9185 4434 9185 4433 9186 4431 9186 4434 9186 4428 9187 4423 9187 4439 9187 4439 9188 4437 9188 4419 9188 4430 9189 4438 9189 4384 9189 4432 9190 4436 9190 4423 9190 4423 9191 4436 9191 4439 9191 4432 9192 4433 9192 4436 9192 4433 9193 4434 9193 4436 9193 4442 9194 4446 9194 4448 9194 4440 9195 4443 9195 4452 9195 4448 9196 4446 9196 4455 9196 4444 9197 4441 9197 4450 9197 4442 9198 4444 9198 4449 9198 4444 9199 4450 9199 4447 9199 4444 9200 4447 9200 4449 9200 4442 9201 4449 9201 4446 9201 4448 9202 4456 9202 4445 9202 4441 9203 4440 9203 4450 9203 4447 9204 4450 9204 4459 9204 4448 9205 4455 9205 4456 9205 4443 9206 4445 9206 4458 9206 4443 9207 4458 9207 4452 9207 4440 9208 4452 9208 4453 9208 4440 9209 4453 9209 4450 9209 4445 9210 4451 9210 4458 9210 4449 9211 4457 9211 4446 9211 4445 9212 4456 9212 4451 9212 4446 9213 4457 9213 4455 9213 4450 9214 4453 9214 4461 9214 4447 9215 4459 9215 4463 9215 4449 9216 4447 9216 4460 9216 4449 9217 4460 9217 4457 9217 4447 9218 4463 9218 4460 9218 4452 9219 4454 9219 4453 9219 4450 9220 4461 9220 4459 9220 4456 9221 4455 9221 4467 9221 4452 9222 4458 9222 4454 9222 4455 9223 4457 9223 4464 9223 4455 9224 4464 9224 4467 9224 4451 9225 4456 9225 4465 9225 4456 9226 4467 9226 4465 9226 4458 9227 4451 9227 4462 9227 4458 9228 4462 9228 4454 9228 4457 9229 4460 9229 4469 9229 4453 9230 4454 9230 4466 9230 4453 9231 4466 9231 4461 9231 4457 9232 4469 9232 4464 9232 4461 9233 4472 9233 4459 9233 4460 9234 4463 9234 4468 9234 4460 9235 4468 9235 4469 9235 4465 9236 4467 9236 4470 9236 4461 9237 4466 9237 4472 9237 4451 9238 4465 9238 4471 9238 4451 9239 4471 9239 4462 9239 4454 9240 4462 9240 4466 9240 4468 9241 4474 9241 4469 9241 4459 9242 4485 9242 4463 9242 4463 9243 4485 9243 4483 9243 4463 9244 4483 9244 4468 9244 4464 9245 4469 9245 4477 9245 4464 9246 4477 9246 4467 9246 4467 9247 4477 9247 4479 9247 4467 9248 4479 9248 4470 9248 4465 9249 4470 9249 4471 9249 4459 9250 4472 9250 4485 9250 4468 9251 4476 9251 4474 9251 4468 9252 4483 9252 4476 9252 4469 9253 4474 9253 4477 9253 4462 9254 4473 9254 4466 9254 4462 9255 4471 9255 4478 9255 4462 9256 4478 9256 4473 9256 4466 9257 4473 9257 4475 9257 4466 9258 4475 9258 4472 9258 4472 9259 4480 9259 4485 9259 4472 9260 4475 9260 4480 9260 4477 9261 4488 9261 4479 9261 4470 9262 4479 9262 4482 9262 4477 9263 4474 9263 4484 9263 4477 9264 4484 9264 4488 9264 4470 9265 4482 9265 4486 9265 4470 9266 4486 9266 4471 9266 4478 9267 4471 9267 4487 9267 4473 9268 4478 9268 4481 9268 4473 9269 4481 9269 4475 9269 4475 9270 4490 9270 4480 9270 4478 9271 4487 9271 4481 9271 4471 9272 4486 9272 4487 9272 4475 9273 4481 9273 4490 9273 4479 9274 4488 9274 4482 9274 4476 9275 4496 9275 4474 9275 4481 9276 4487 9276 4493 9276 4480 9277 4490 9277 4495 9277 4483 9278 4485 9278 4489 9278 4483 9279 4489 9279 4476 9279 4480 9280 4495 9280 4485 9280 4484 9281 4491 9281 4488 9281 4476 9282 4489 9282 4496 9282 4474 9283 4496 9283 4491 9283 4474 9284 4491 9284 4484 9284 4486 9285 4482 9285 4487 9285 4481 9286 4493 9286 4494 9286 4481 9287 4494 9287 4490 9287 4488 9288 4491 9288 4492 9288 4488 9289 4492 9289 4482 9289 4485 9290 4495 9290 4489 9290 4487 9291 4482 9291 4492 9291 4490 9292 4494 9292 4495 9292 4487 9293 4492 9293 4493 9293 4499 9294 4504 9294 4497 9294 4497 9295 4500 9295 4501 9295 4498 9296 4510 9296 4502 9296 4498 9297 4503 9297 4505 9297 4499 9298 4502 9298 4508 9298 4498 9299 4505 9299 4507 9299 4499 9300 4508 9300 4504 9300 4504 9301 4508 9301 4506 9301 4503 9302 4514 9302 4505 9302 4498 9303 4507 9303 4510 9303 4497 9304 4516 9304 4500 9304 4503 9305 4501 9305 4513 9305 4503 9306 4513 9306 4514 9306 4502 9307 4510 9307 4511 9307 4501 9308 4500 9308 4528 9308 4501 9309 4528 9309 4513 9309 4505 9310 4515 9310 4507 9310 4497 9311 4504 9311 4516 9311 4502 9312 4511 9312 4508 9312 4500 9313 4516 9313 4509 9313 4500 9314 4509 9314 4528 9314 4504 9315 4506 9315 4516 9315 4510 9316 4507 9316 4511 9316 4514 9317 4513 9317 4525 9317 4507 9318 4512 9318 4511 9318 4513 9319 4518 9319 4525 9319 4505 9320 4514 9320 4515 9320 4513 9321 4528 9321 4518 9321 4508 9322 4511 9322 4517 9322 4508 9323 4517 9323 4506 9323 4507 9324 4519 9324 4512 9324 4515 9325 4514 9325 4520 9325 4506 9326 4524 9326 4516 9326 4506 9327 4517 9327 4521 9327 4506 9328 4521 9328 4524 9328 4516 9329 4523 9329 4509 9329 4515 9330 4520 9330 4522 9330 4515 9331 4522 9331 4507 9331 4507 9332 4522 9332 4519 9332 4514 9333 4525 9333 4520 9333 4511 9334 4512 9334 4532 9334 4511 9335 4532 9335 4517 9335 4509 9336 4523 9336 4526 9336 4509 9337 4526 9337 4527 9337 4509 9338 4527 9338 4528 9338 4522 9339 4529 9339 4519 9339 4516 9340 4524 9340 4523 9340 4512 9341 4519 9341 4532 9341 4522 9342 4520 9342 4529 9342 4521 9343 4538 9343 4524 9343 4526 9344 4523 9344 4541 9344 4526 9345 4541 9345 4527 9345 4518 9346 4539 9346 4525 9346 4521 9347 4517 9347 4530 9347 4521 9348 4530 9348 4538 9348 4527 9349 4531 9349 4528 9349 4519 9350 4535 9350 4532 9350 4528 9351 4531 9351 4518 9351 4517 9352 4532 9352 4530 9352 4527 9353 4541 9353 4531 9353 4518 9354 4531 9354 4539 9354 4529 9355 4535 9355 4519 9355 4524 9356 4538 9356 4536 9356 4524 9357 4536 9357 4523 9357 4525 9358 4539 9358 4533 9358 4525 9359 4533 9359 4520 9359 4523 9360 4536 9360 4544 9360 4523 9361 4544 9361 4541 9361 4520 9362 4533 9362 4540 9362 4520 9363 4540 9363 4529 9363 4532 9364 4535 9364 4542 9364 4532 9365 4542 9365 4530 9365 4535 9366 4534 9366 4542 9366 4535 9367 4537 9367 4534 9367 4530 9368 4550 9368 4538 9368 4529 9369 4540 9369 4537 9369 4529 9370 4537 9370 4535 9370 4530 9371 4542 9371 4543 9371 4530 9372 4543 9372 4550 9372 4536 9373 4538 9373 4549 9373 4536 9374 4549 9374 4544 9374 4538 9375 4550 9375 4549 9375 4540 9376 4545 9376 4537 9376 4541 9377 4552 9377 4531 9377 4534 9378 4546 9378 4542 9378 4537 9379 4546 9379 4534 9379 4539 9380 4553 9380 4533 9380 4537 9381 4545 9381 4546 9381 4544 9382 4547 9382 4541 9382 4541 9383 4547 9383 4552 9383 4533 9384 4553 9384 4540 9384 4540 9385 4553 9385 4545 9385 4531 9386 4548 9386 4539 9386 4539 9387 4548 9387 4553 9387 4546 9388 4555 9388 4542 9388 4550 9389 4551 9389 4549 9389 4531 9390 4552 9390 4548 9390 4545 9391 4553 9391 4554 9391 4542 9392 4555 9392 4543 9392 4544 9393 4549 9393 4556 9393 4544 9394 4556 9394 4547 9394 4545 9395 4554 9395 4546 9395 4550 9396 4543 9396 4551 9396 4546 9397 4554 9397 4555 9397 4543 9398 4555 9398 4551 9398 4549 9399 4551 9399 4556 9399 4552 9400 4547 9400 4548 9400 4558 9401 4560 9401 4561 9401 4558 9402 4565 9402 4560 9402 4557 9403 4563 9403 4570 9403 4558 9404 4564 9404 4565 9404 4558 9405 4557 9405 4564 9405 4560 9406 4569 9406 4561 9406 4561 9407 4568 9407 4562 9407 4560 9408 4565 9408 4569 9408 4561 9409 4569 9409 4566 9409 4561 9410 4566 9410 4568 9410 4557 9411 4577 9411 4564 9411 4557 9412 4570 9412 4577 9412 4564 9413 4576 9413 4565 9413 4565 9414 4574 9414 4569 9414 4565 9415 4576 9415 4574 9415 4559 9416 4562 9416 4567 9416 4559 9417 4572 9417 4563 9417 4559 9418 4567 9418 4572 9418 4562 9419 4568 9419 4567 9419 4570 9420 4573 9420 4577 9420 4564 9421 4577 9421 4578 9421 4564 9422 4578 9422 4576 9422 4568 9423 4575 9423 4567 9423 4566 9424 4571 9424 4568 9424 4570 9425 4563 9425 4573 9425 4569 9426 4581 9426 4566 9426 4563 9427 4572 9427 4585 9427 4563 9428 4585 9428 4573 9428 4566 9429 4581 9429 4571 9429 4568 9430 4571 9430 4575 9430 4567 9431 4575 9431 4580 9431 4567 9432 4580 9432 4572 9432 4569 9433 4574 9433 4589 9433 4569 9434 4589 9434 4581 9434 4572 9435 4579 9435 4585 9435 4572 9436 4580 9436 4579 9436 4577 9437 4573 9437 4583 9437 4577 9438 4583 9438 4578 9438 4575 9439 4586 9439 4580 9439 4576 9440 4578 9440 4588 9440 4576 9441 4588 9441 4574 9441 4571 9442 4582 9442 4575 9442 4575 9443 4582 9443 4586 9443 4574 9444 4588 9444 4589 9444 4571 9445 4581 9445 4584 9445 4571 9446 4584 9446 4582 9446 4582 9447 4584 9447 4591 9447 4581 9448 4589 9448 4594 9448 4581 9449 4594 9449 4584 9449 4573 9450 4587 9450 4583 9450 4578 9451 4583 9451 4593 9451 4586 9452 4595 9452 4580 9452 4573 9453 4585 9453 4590 9453 4573 9454 4590 9454 4587 9454 4585 9455 4579 9455 4590 9455 4582 9456 4591 9456 4586 9456 4580 9457 4595 9457 4592 9457 4580 9458 4592 9458 4579 9458 4586 9459 4591 9459 4595 9459 4578 9460 4593 9460 4588 9460 4589 9461 4588 9461 4596 9461 4589 9462 4596 9462 4594 9462 4579 9463 4592 9463 4598 9463 4579 9464 4598 9464 4590 9464 4590 9465 4598 9465 4587 9465 4592 9466 4605 9466 4598 9466 4598 9467 4604 9467 4587 9467 4595 9468 4602 9468 4592 9468 4592 9469 4602 9469 4605 9469 4587 9470 4604 9470 4603 9470 4587 9471 4603 9471 4583 9471 4583 9472 4603 9472 4593 9472 4595 9473 4591 9473 4602 9473 4591 9474 4601 9474 4602 9474 4588 9475 4593 9475 4597 9475 4594 9476 4596 9476 4609 9476 4591 9477 4584 9477 4600 9477 4603 9478 4597 9478 4593 9478 4588 9479 4597 9479 4608 9479 4588 9480 4608 9480 4596 9480 4594 9481 4609 9481 4584 9481 4584 9482 4609 9482 4600 9482 4591 9483 4600 9483 4601 9483 4597 9484 4599 9484 4608 9484 4609 9485 4610 9485 4600 9485 4598 9486 4605 9486 4613 9486 4603 9487 4604 9487 4606 9487 4597 9488 4603 9488 4599 9488 4596 9489 4608 9489 4609 9489 4602 9490 4612 9490 4605 9490 4603 9491 4606 9491 4599 9491 4601 9492 4600 9492 4611 9492 4600 9493 4610 9493 4611 9493 4598 9494 4613 9494 4604 9494 4602 9495 4601 9495 4612 9495 4601 9496 4611 9496 4612 9496 4599 9497 4606 9497 4607 9497 4599 9498 4607 9498 4608 9498 4609 9499 4608 9499 4610 9499 4605 9500 4612 9500 4613 9500 4604 9501 4613 9501 4606 9501 4890 9502 4889 9502 4618 9502 4618 9503 4889 9503 4619 9503 4616 9504 4614 9504 4615 9504 4614 9505 4617 9505 4615 9505 4614 9506 4618 9506 4619 9506 4617 9507 4619 9507 4615 9507 4618 9508 4616 9508 5218 9508 4618 9509 4614 9509 4616 9509 4619 9510 4617 9510 4614 9510 4621 9511 4835 9511 4620 9511 4620 9512 4835 9512 4684 9512 4620 9513 4684 9513 4682 9513 4621 9514 4622 9514 4835 9514 4835 9515 4833 9515 4684 9515 4684 9516 4833 9516 4623 9516 4623 9517 4833 9517 4888 9517 4623 9518 4888 9518 4896 9518 4832 9519 4889 9519 4833 9519 4624 9520 5257 9520 4832 9520 4625 9521 5264 9521 4624 9521 4624 9522 5264 9522 5257 9522 4829 9523 5264 9523 4625 9523 4827 9524 5264 9524 4829 9524 4826 9525 4800 9525 4827 9525 4827 9526 4800 9526 5264 9526 4626 9527 4810 9527 4826 9527 4826 9528 4810 9528 4802 9528 4826 9529 4802 9529 4800 9529 4823 9530 4822 9530 4626 9530 4626 9531 4822 9531 4810 9531 4802 9532 4810 9532 4816 9532 4816 9533 4810 9533 4811 9533 4802 9534 4816 9534 4627 9534 4627 9535 4816 9535 4805 9535 4627 9536 4805 9536 4804 9536 5264 9537 4800 9537 4628 9537 5264 9538 4628 9538 4629 9538 5264 9539 4629 9539 5266 9539 5266 9540 4629 9540 4630 9540 5266 9541 4630 9541 4631 9541 5266 9542 4631 9542 5267 9542 5267 9543 4631 9543 5262 9543 5262 9544 4631 9544 5030 9544 5030 9545 4631 9545 5026 9545 5026 9546 4631 9546 4632 9546 5026 9547 4632 9547 5020 9547 5020 9548 4632 9548 4633 9548 5020 9549 4633 9549 5016 9549 5016 9550 4633 9550 5014 9550 5014 9551 4633 9551 4638 9551 5014 9552 4638 9552 5012 9552 5012 9553 4638 9553 5107 9553 4633 9554 4632 9554 4634 9554 4634 9555 4632 9555 4635 9555 4634 9556 4635 9556 4637 9556 4637 9557 4635 9557 4636 9557 4636 9558 4635 9558 4796 9558 4637 9559 4794 9559 4634 9559 4639 9560 5104 9560 4638 9560 4792 9561 5104 9561 4639 9561 4640 9562 5102 9562 4792 9562 4792 9563 5102 9563 5104 9563 4642 9564 5102 9564 4640 9564 4647 9565 4641 9565 4642 9565 4642 9566 4641 9566 4643 9566 4642 9567 4643 9567 5108 9567 5108 9568 4643 9568 4644 9568 5108 9569 4644 9569 5053 9569 5053 9570 4644 9570 4767 9570 5053 9571 4767 9571 4645 9571 5053 9572 4645 9572 5103 9572 5103 9573 4645 9573 4651 9573 5103 9574 4651 9574 4646 9574 4789 9575 4781 9575 4647 9575 4647 9576 4781 9576 4782 9576 4647 9577 4782 9577 4641 9577 4641 9578 4782 9578 4771 9578 4771 9579 4782 9579 4773 9579 4771 9580 4773 9580 4648 9580 4649 9581 4650 9581 4789 9581 4789 9582 4650 9582 4781 9582 4781 9583 4785 9583 4782 9583 4646 9584 4651 9584 4982 9584 4982 9585 4651 9585 4652 9585 4982 9586 4652 9586 4980 9586 4980 9587 4652 9587 4978 9587 4978 9588 4652 9588 4653 9588 4978 9589 4653 9589 4977 9589 4977 9590 4653 9590 4656 9590 4977 9591 4656 9591 4968 9591 4968 9592 4656 9592 5211 9592 4968 9593 5211 9593 5204 9593 4652 9594 4765 9594 4653 9594 4653 9595 4765 9595 4654 9595 4654 9596 4765 9596 4761 9596 4654 9597 4761 9597 4759 9597 4764 9598 4655 9598 4765 9598 4765 9599 4655 9599 4761 9599 4757 9600 5211 9600 4656 9600 4755 9601 5212 9601 4757 9601 4757 9602 5212 9602 5211 9602 4658 9603 5212 9603 4755 9603 4657 9604 5212 9604 4658 9604 4753 9605 4664 9605 4657 9605 4657 9606 4664 9606 5206 9606 4657 9607 5206 9607 5212 9607 4659 9608 4741 9608 4753 9608 4753 9609 4741 9609 4660 9609 4753 9610 4660 9610 4664 9610 4661 9611 4750 9611 4659 9611 4659 9612 4750 9612 4741 9612 4741 9613 4742 9613 4744 9613 4741 9614 4744 9614 4743 9614 4741 9615 4743 9615 4660 9615 4660 9616 4743 9616 4732 9616 4732 9617 4743 9617 4662 9617 4732 9618 4662 9618 4663 9618 5206 9619 4664 9619 4665 9619 5206 9620 4665 9620 4729 9620 5206 9621 4729 9621 4728 9621 5206 9622 4728 9622 5208 9622 5208 9623 4728 9623 4666 9623 5208 9624 4666 9624 4946 9624 5208 9625 4946 9625 5207 9625 4946 9626 4666 9626 4940 9626 4940 9627 4666 9627 4727 9627 4940 9628 4727 9628 4941 9628 4941 9629 4727 9629 4667 9629 4941 9630 4667 9630 4933 9630 4933 9631 4667 9631 4934 9631 4934 9632 4667 9632 4671 9632 4934 9633 4671 9633 4925 9633 4925 9634 4671 9634 5160 9634 4667 9635 4727 9635 4668 9635 4668 9636 4727 9636 4725 9636 4668 9637 4725 9637 4670 9637 4670 9638 4725 9638 4669 9638 4669 9639 4725 9639 4724 9639 4670 9640 4719 9640 4668 9640 4717 9641 5154 9641 4671 9641 4672 9642 5109 9642 4717 9642 4717 9643 5109 9643 5154 9643 4714 9644 5109 9644 4672 9644 4673 9645 5109 9645 4714 9645 4678 9646 4689 9646 4673 9646 4673 9647 4689 9647 4688 9647 4673 9648 4688 9648 5109 9648 5109 9649 4688 9649 5161 9649 5161 9650 4688 9650 4674 9650 5161 9651 4674 9651 4675 9651 5161 9652 4675 9652 5158 9652 5158 9653 4675 9653 4676 9653 5158 9654 4676 9654 4677 9654 5158 9655 4677 9655 5159 9655 5159 9656 4677 9656 4903 9656 4679 9657 4704 9657 4678 9657 4678 9658 4704 9658 4701 9658 4678 9659 4701 9659 4689 9659 4689 9660 4701 9660 4690 9660 4690 9661 4701 9661 4692 9661 4690 9662 4692 9662 4691 9662 4711 9663 4710 9663 4679 9663 4679 9664 4710 9664 4704 9664 4704 9665 4699 9665 4701 9665 4699 9666 4700 9666 4701 9666 4903 9667 4677 9667 4892 9667 4892 9668 4677 9668 4623 9668 4892 9669 4623 9669 4898 9669 4898 9670 4623 9670 4896 9670 4832 9671 5257 9671 5265 9671 4832 9672 5265 9672 4619 9672 5263 9673 4619 9673 5265 9673 4619 9674 5263 9674 4615 9674 4615 9675 5263 9675 5049 9675 5049 9676 5263 9676 5046 9676 5046 9677 5263 9677 5043 9677 5043 9678 5263 9678 5028 9678 5028 9679 5263 9679 5262 9679 5028 9680 5262 9680 5030 9680 4968 9681 5204 9681 4972 9681 4972 9682 5204 9682 4956 9682 4956 9683 5204 9683 5205 9683 4956 9684 5205 9684 4959 9684 4959 9685 5205 9685 4963 9685 4963 9686 5205 9686 5207 9686 4963 9687 5207 9687 4947 9687 4947 9688 5207 9688 4946 9688 4671 9689 5154 9689 5160 9689 4925 9690 5160 9690 4680 9690 4680 9691 5160 9691 4932 9691 4932 9692 5160 9692 4924 9692 4924 9693 5160 9693 4913 9693 4913 9694 5160 9694 5159 9694 4913 9695 5159 9695 4915 9695 4915 9696 5159 9696 4904 9696 4904 9697 5159 9697 4903 9697 5107 9698 5008 9698 5012 9698 5106 9699 5008 9699 5107 9699 5008 9700 5106 9700 4994 9700 4994 9701 5106 9701 5100 9701 4994 9702 5100 9702 5004 9702 5004 9703 5100 9703 4999 9703 4999 9704 5100 9704 4988 9704 4988 9705 5100 9705 4646 9705 4646 9706 5100 9706 5103 9706 5108 9707 5102 9707 4642 9707 5104 9708 5107 9708 4638 9708 4833 9709 4889 9709 4888 9709 4619 9710 4889 9710 4832 9710 4838 9711 4620 9711 4681 9711 4681 9712 4620 9712 4682 9712 4681 9713 4682 9713 4683 9713 4683 9714 4682 9714 4684 9714 4683 9715 4684 9715 4685 9715 4685 9716 4684 9716 4623 9716 4685 9717 4623 9717 4840 9717 4840 9718 4623 9718 4677 9718 4840 9719 4677 9719 4686 9719 4686 9720 4677 9720 4676 9720 4686 9721 4676 9721 4841 9721 4841 9722 4676 9722 4675 9722 4841 9723 4675 9723 4842 9723 4842 9724 4675 9724 4674 9724 4842 9725 4674 9725 4687 9725 4687 9726 4674 9726 4688 9726 4687 9727 4688 9727 4844 9727 4844 9728 4688 9728 4689 9728 4844 9729 4689 9729 4843 9729 4843 9730 4689 9730 4690 9730 4843 9731 4690 9731 4846 9731 4846 9732 4690 9732 4691 9732 4846 9733 4691 9733 4847 9733 4847 9734 4691 9734 4692 9734 4847 9735 4692 9735 4693 9735 4693 9736 4692 9736 4701 9736 4707 9737 4693 9737 4706 9737 4707 9738 4706 9738 4705 9738 4708 9739 4693 9739 4696 9739 4696 9740 4693 9740 4701 9740 4694 9741 4698 9741 4699 9741 4694 9742 4704 9742 4703 9742 4705 9743 4702 9743 4707 9743 4703 9744 4705 9744 4694 9744 4705 9745 4695 9745 4694 9745 4705 9746 4706 9746 4695 9746 4708 9747 4706 9747 4693 9747 4708 9748 4695 9748 4706 9748 4695 9749 4698 9749 4694 9749 4697 9750 4695 9750 4708 9750 4697 9751 4708 9751 4696 9751 4698 9752 4695 9752 4697 9752 4697 9753 4696 9753 4701 9753 4699 9754 4698 9754 4697 9754 4694 9755 4699 9755 4704 9755 4700 9756 4697 9756 4701 9756 4699 9757 4697 9757 4700 9757 4705 9758 4703 9758 4702 9758 4707 9759 4702 9759 4693 9759 4703 9760 4704 9760 4848 9760 4848 9761 4704 9761 4710 9761 4848 9762 4710 9762 4709 9762 4709 9763 4710 9763 4711 9763 4709 9764 4711 9764 4712 9764 4712 9765 4711 9765 4679 9765 4712 9766 4679 9766 4845 9766 4845 9767 4679 9767 4678 9767 4845 9768 4678 9768 4713 9768 4713 9769 4678 9769 4673 9769 4713 9770 4673 9770 4715 9770 4715 9771 4673 9771 4714 9771 4715 9772 4714 9772 4849 9772 4849 9773 4714 9773 4672 9773 4849 9774 4672 9774 4716 9774 4716 9775 4672 9775 4717 9775 4716 9776 4717 9776 4718 9776 4718 9777 4717 9777 4671 9777 4718 9778 4671 9778 4850 9778 4850 9779 4671 9779 4667 9779 4850 9780 4667 9780 4853 9780 4853 9781 4667 9781 4668 9781 4853 9782 4668 9782 4720 9782 4720 9783 4668 9783 4719 9783 4720 9784 4719 9784 4721 9784 4721 9785 4719 9785 4670 9785 4721 9786 4670 9786 4722 9786 4722 9787 4670 9787 4669 9787 4722 9788 4669 9788 4723 9788 4723 9789 4669 9789 4724 9789 4723 9790 4724 9790 4852 9790 4852 9791 4724 9791 4725 9791 4852 9792 4725 9792 4726 9792 4726 9793 4725 9793 4727 9793 4726 9794 4727 9794 4851 9794 4851 9795 4727 9795 4666 9795 4851 9796 4666 9796 4854 9796 4854 9797 4666 9797 4728 9797 4854 9798 4728 9798 4730 9798 4730 9799 4728 9799 4729 9799 4730 9800 4729 9800 4855 9800 4855 9801 4729 9801 4665 9801 4855 9802 4665 9802 4731 9802 4731 9803 4665 9803 4664 9803 4731 9804 4664 9804 4857 9804 4857 9805 4664 9805 4660 9805 4857 9806 4660 9806 4861 9806 4861 9807 4660 9807 4732 9807 4861 9808 4732 9808 4733 9808 4733 9809 4732 9809 4663 9809 4733 9810 4663 9810 4860 9810 4860 9811 4663 9811 4662 9811 4860 9812 4662 9812 4734 9812 4734 9813 4662 9813 4743 9813 4746 9814 4734 9814 4747 9814 4734 9815 4743 9815 4747 9815 4741 9816 4736 9816 4740 9816 4748 9817 4747 9817 4743 9817 4740 9818 4742 9818 4741 9818 4736 9819 4741 9819 4735 9819 4737 9820 4862 9820 4734 9820 4862 9821 4737 9821 4738 9821 4737 9822 4746 9822 4738 9822 4738 9823 4746 9823 4739 9823 4739 9824 4740 9824 4736 9824 4739 9825 4745 9825 4740 9825 4740 9826 4745 9826 4742 9826 4735 9827 4862 9827 4738 9827 4738 9828 4736 9828 4735 9828 4738 9829 4739 9829 4736 9829 4739 9830 4746 9830 4747 9830 4739 9831 4747 9831 4745 9831 4745 9832 4747 9832 4748 9832 4745 9833 4748 9833 4742 9833 4742 9834 4748 9834 4744 9834 4744 9835 4748 9835 4743 9835 4734 9836 4746 9836 4737 9836 4735 9837 4741 9837 4749 9837 4749 9838 4741 9838 4750 9838 4749 9839 4750 9839 4751 9839 4751 9840 4750 9840 4661 9840 4751 9841 4661 9841 4859 9841 4859 9842 4661 9842 4659 9842 4859 9843 4659 9843 4858 9843 4858 9844 4659 9844 4753 9844 4858 9845 4753 9845 4752 9845 4752 9846 4753 9846 4657 9846 4752 9847 4657 9847 4856 9847 4856 9848 4657 9848 4658 9848 4856 9849 4658 9849 4754 9849 4754 9850 4658 9850 4755 9850 4754 9851 4755 9851 4756 9851 4756 9852 4755 9852 4757 9852 4756 9853 4757 9853 4863 9853 4863 9854 4757 9854 4656 9854 4863 9855 4656 9855 4864 9855 4864 9856 4656 9856 4653 9856 4864 9857 4653 9857 4758 9857 4758 9858 4653 9858 4654 9858 4758 9859 4654 9859 4760 9859 4760 9860 4654 9860 4759 9860 4760 9861 4759 9861 5603 9861 5603 9862 4759 9862 4761 9862 5603 9863 4761 9863 4762 9863 4762 9864 4761 9864 4655 9864 4762 9865 4655 9865 4763 9865 4763 9866 4655 9866 4764 9866 4763 9867 4764 9867 4867 9867 4867 9868 4764 9868 4765 9868 4867 9869 4765 9869 4865 9869 4865 9870 4765 9870 4652 9870 4865 9871 4652 9871 4869 9871 4869 9872 4652 9872 4651 9872 4869 9873 4651 9873 4868 9873 4868 9874 4651 9874 4645 9874 4868 9875 4645 9875 4766 9875 4766 9876 4645 9876 4767 9876 4766 9877 4767 9877 4870 9877 4870 9878 4767 9878 4644 9878 4870 9879 4644 9879 4768 9879 4768 9880 4644 9880 4643 9880 4768 9881 4643 9881 4769 9881 4769 9882 4643 9882 4641 9882 4769 9883 4641 9883 4770 9883 4770 9884 4641 9884 4771 9884 4770 9885 4771 9885 4772 9885 4772 9886 4771 9886 4648 9886 4772 9887 4648 9887 5695 9887 5695 9888 4648 9888 4773 9888 5695 9889 4773 9889 4777 9889 4777 9890 4773 9890 4782 9890 4776 9891 4777 9891 4783 9891 4774 9892 4777 9892 4782 9892 4781 9893 4775 9893 4780 9893 4781 9894 4780 9894 4785 9894 4775 9895 4781 9895 4778 9895 4779 9896 4784 9896 4775 9896 4774 9897 4783 9897 4777 9897 4786 9898 4783 9898 4774 9898 4786 9899 4774 9899 4782 9899 4784 9900 4783 9900 4786 9900 4784 9901 4780 9901 4775 9901 4780 9902 4784 9902 4786 9902 4780 9903 4786 9903 4782 9903 4775 9904 4778 9904 4779 9904 4784 9905 4779 9905 4776 9905 4784 9906 4776 9906 4783 9906 4785 9907 4780 9907 4782 9907 4778 9908 4781 9908 4787 9908 4787 9909 4781 9909 4650 9909 4787 9910 4650 9910 4788 9910 4788 9911 4650 9911 4649 9911 4788 9912 4649 9912 4790 9912 4790 9913 4649 9913 4789 9913 4790 9914 4789 9914 4791 9914 4791 9915 4789 9915 4647 9915 4791 9916 4647 9916 4871 9916 4871 9917 4647 9917 4642 9917 4871 9918 4642 9918 4872 9918 4872 9919 4642 9919 4640 9919 4872 9920 4640 9920 4873 9920 4873 9921 4640 9921 4792 9921 4873 9922 4792 9922 4874 9922 4874 9923 4792 9923 4639 9923 4874 9924 4639 9924 4875 9924 4875 9925 4639 9925 4638 9925 4875 9926 4638 9926 4876 9926 4876 9927 4638 9927 4633 9927 4876 9928 4633 9928 4793 9928 4793 9929 4633 9929 4634 9929 4793 9930 4634 9930 4878 9930 4878 9931 4634 9931 4794 9931 4878 9932 4794 9932 5985 9932 5985 9933 4794 9933 4637 9933 5985 9934 4637 9934 5986 9934 5986 9935 4637 9935 4636 9935 5986 9936 4636 9936 4795 9936 4795 9937 4636 9937 4796 9937 4795 9938 4796 9938 4879 9938 4879 9939 4796 9939 4635 9939 4879 9940 4635 9940 4877 9940 4877 9941 4635 9941 4632 9941 4877 9942 4632 9942 4880 9942 4880 9943 4632 9943 4631 9943 4880 9944 4631 9944 4797 9944 4797 9945 4631 9945 4630 9945 4797 9946 4630 9946 4798 9946 4798 9947 4630 9947 4629 9947 4798 9948 4629 9948 4799 9948 4799 9949 4629 9949 4628 9949 4799 9950 4628 9950 4801 9950 4801 9951 4628 9951 4800 9951 4801 9952 4800 9952 4883 9952 4883 9953 4800 9953 4802 9953 4883 9954 4802 9954 4885 9954 4885 9955 4802 9955 4627 9955 4885 9956 4627 9956 4803 9956 4803 9957 4627 9957 4804 9957 4803 9958 4804 9958 4886 9958 4886 9959 4804 9959 4805 9959 4886 9960 4805 9960 4817 9960 4817 9961 4805 9961 4816 9961 4820 9962 4815 9962 4808 9962 4815 9963 4817 9963 4818 9963 4818 9964 4817 9964 4816 9964 4807 9965 4810 9965 4808 9965 4809 9966 4814 9966 4812 9966 4814 9967 4807 9967 4812 9967 4819 9968 4814 9968 4818 9968 4810 9969 4807 9969 4813 9969 4807 9970 4814 9970 4813 9970 4814 9971 4806 9971 4813 9971 4806 9972 4814 9972 4819 9972 4806 9973 4819 9973 4816 9973 4812 9974 4808 9974 4815 9974 4809 9975 4812 9975 4815 9975 4812 9976 4807 9976 4808 9976 4806 9977 4810 9977 4813 9977 4811 9978 4810 9978 4806 9978 4815 9979 4820 9979 4817 9979 4809 9980 4815 9980 4818 9980 4809 9981 4818 9981 4814 9981 4819 9982 4818 9982 4816 9982 4811 9983 4806 9983 4816 9983 4808 9984 4810 9984 4821 9984 4821 9985 4810 9985 4822 9985 4821 9986 4822 9986 4884 9986 4884 9987 4822 9987 4823 9987 4884 9988 4823 9988 4824 9988 4824 9989 4823 9989 4626 9989 4824 9990 4626 9990 4825 9990 4825 9991 4626 9991 4826 9991 4825 9992 4826 9992 4828 9992 4828 9993 4826 9993 4827 9993 4828 9994 4827 9994 4881 9994 4881 9995 4827 9995 4829 9995 4881 9996 4829 9996 4830 9996 4830 9997 4829 9997 4625 9997 4830 9998 4625 9998 4831 9998 4831 9999 4625 9999 4624 9999 4831 10000 4624 10000 4882 10000 4882 10001 4624 10001 4832 10001 4882 10002 4832 10002 4839 10002 4839 10003 4832 10003 4833 10003 4839 10004 4833 10004 4834 10004 4834 10005 4833 10005 4835 10005 4834 10006 4835 10006 4837 10006 4837 10007 4835 10007 4622 10007 4837 10008 4622 10008 4836 10008 4836 10009 4622 10009 4621 10009 4836 10010 4621 10010 4838 10010 4838 10011 4621 10011 4620 10011 4837 10012 4836 10012 4834 10012 4834 10013 4836 10013 4838 10013 4834 10014 4838 10014 4683 10014 4683 10015 4838 10015 4681 10015 4683 10016 4685 10016 4834 10016 4834 10017 4685 10017 4839 10017 4839 10018 4685 10018 4895 10018 4839 10019 4895 10019 4891 10019 4840 10020 4893 10020 4685 10020 4685 10021 4893 10021 4894 10021 4686 10022 5112 10022 4840 10022 4840 10023 5112 10023 5113 10023 4841 10024 5112 10024 4686 10024 4842 10025 5112 10025 4841 10025 4687 10026 5112 10026 4842 10026 4844 10027 4713 10027 4687 10027 4687 10028 4713 10028 5117 10028 4687 10029 5117 10029 5112 10029 4843 10030 4693 10030 4844 10030 4844 10031 4693 10031 4845 10031 4844 10032 4845 10032 4713 10032 4846 10033 4847 10033 4843 10033 4843 10034 4847 10034 4693 10034 4693 10035 4702 10035 4703 10035 4693 10036 4703 10036 4845 10036 4845 10037 4703 10037 4712 10037 4712 10038 4703 10038 4848 10038 4712 10039 4848 10039 4709 10039 5117 10040 4713 10040 4715 10040 5117 10041 4715 10041 4849 10041 5117 10042 4849 10042 5115 10042 5115 10043 4849 10043 4716 10043 5115 10044 4716 10044 4718 10044 5115 10045 4718 10045 5111 10045 5111 10046 4718 10046 4926 10046 5111 10047 4926 10047 4930 10047 4926 10048 4718 10048 4937 10048 4937 10049 4718 10049 4850 10049 4937 10050 4850 10050 4935 10050 4935 10051 4850 10051 4726 10051 4935 10052 4726 10052 4939 10052 4939 10053 4726 10053 4938 10053 4938 10054 4726 10054 4851 10054 4938 10055 4851 10055 4945 10055 4945 10056 4851 10056 5165 10056 4726 10057 4850 10057 4852 10057 4852 10058 4850 10058 4853 10058 4852 10059 4853 10059 4722 10059 4722 10060 4853 10060 4721 10060 4721 10061 4853 10061 4720 10061 4722 10062 4723 10062 4852 10062 4854 10063 5162 10063 4851 10063 4851 10064 5162 10064 5165 10064 4730 10065 5162 10065 4854 10065 4855 10066 5169 10066 4730 10066 4730 10067 5169 10067 5162 10067 4731 10068 5169 10068 4855 10068 4857 10069 4858 10069 4731 10069 4731 10070 4858 10070 4752 10070 4731 10071 4752 10071 5169 10071 5169 10072 4752 10072 5166 10072 5166 10073 4752 10073 4856 10073 5166 10074 4856 10074 4754 10074 5166 10075 4754 10075 5163 10075 5163 10076 4754 10076 4756 10076 5163 10077 4756 10077 4863 10077 5163 10078 4863 10078 4970 10078 5163 10079 4970 10079 5164 10079 5164 10080 4970 10080 4971 10080 4861 10081 4734 10081 4857 10081 4857 10082 4734 10082 4735 10082 4857 10083 4735 10083 4858 10083 4858 10084 4735 10084 4859 10084 4859 10085 4735 10085 4749 10085 4859 10086 4749 10086 4751 10086 4733 10087 4860 10087 4861 10087 4861 10088 4860 10088 4734 10088 4734 10089 4862 10089 4735 10089 4970 10090 4863 10090 4975 10090 4975 10091 4863 10091 4864 10091 4975 10092 4864 10092 4973 10092 4973 10093 4864 10093 4979 10093 4979 10094 4864 10094 4865 10094 4979 10095 4865 10095 4866 10095 4866 10096 4865 10096 4869 10096 4866 10097 4869 10097 4987 10097 4987 10098 4869 10098 5056 10098 4864 10099 4758 10099 4865 10099 4865 10100 4758 10100 4867 10100 4867 10101 4758 10101 5603 10101 4867 10102 5603 10102 4762 10102 4758 10103 4760 10103 5603 10103 4762 10104 4763 10104 4867 10104 4868 10105 5055 10105 4869 10105 4869 10106 5055 10106 5056 10106 4766 10107 5055 10107 4868 10107 4870 10108 5055 10108 4766 10108 4768 10109 5055 10109 4870 10109 4769 10110 4871 10110 4768 10110 4768 10111 4871 10111 5054 10111 4770 10112 4777 10112 4769 10112 4769 10113 4777 10113 4791 10113 4769 10114 4791 10114 4871 10114 4772 10115 5695 10115 4770 10115 4770 10116 5695 10116 4777 10116 4791 10117 4777 10117 4778 10117 4778 10118 4777 10118 4776 10118 4778 10119 4776 10119 4779 10119 4791 10120 4778 10120 4790 10120 4790 10121 4778 10121 4787 10121 4790 10122 4787 10122 4788 10122 5054 10123 4871 10123 4872 10123 5054 10124 4872 10124 4873 10124 5054 10125 4873 10125 5057 10125 5057 10126 4873 10126 4874 10126 5057 10127 4874 10127 4875 10127 5057 10128 4875 10128 5066 10128 5066 10129 4875 10129 5010 10129 5066 10130 5010 10130 5058 10130 5010 10131 4875 10131 5015 10131 5015 10132 4875 10132 4876 10132 5015 10133 4876 10133 5019 10133 5019 10134 4876 10134 4877 10134 5019 10135 4877 10135 5023 10135 5023 10136 4877 10136 5022 10136 5022 10137 4877 10137 4880 10137 5022 10138 4880 10138 5027 10138 5027 10139 4880 10139 5217 10139 4877 10140 4876 10140 4879 10140 4879 10141 4876 10141 4793 10141 4879 10142 4793 10142 5986 10142 5986 10143 4793 10143 5985 10143 5985 10144 4793 10144 4878 10144 5986 10145 4795 10145 4879 10145 4797 10146 5214 10146 4880 10146 4880 10147 5214 10147 5217 10147 4798 10148 5214 10148 4797 10148 4799 10149 5214 10149 4798 10149 4801 10150 5214 10150 4799 10150 4883 10151 4825 10151 4801 10151 4801 10152 4825 10152 4828 10152 4801 10153 4828 10153 5214 10153 5214 10154 4828 10154 5216 10154 5216 10155 4828 10155 4881 10155 5216 10156 4881 10156 4830 10156 5216 10157 4830 10157 5213 10157 5213 10158 4830 10158 4831 10158 5213 10159 4831 10159 4882 10159 5213 10160 4882 10160 5218 10160 5218 10161 4882 10161 4618 10161 4885 10162 4817 10162 4883 10162 4883 10163 4817 10163 4808 10163 4883 10164 4808 10164 4825 10164 4825 10165 4808 10165 4824 10165 4824 10166 4808 10166 4821 10166 4824 10167 4821 10167 4884 10167 4803 10168 4886 10168 4885 10168 4885 10169 4886 10169 4817 10169 4817 10170 4820 10170 4808 10170 4618 10171 4882 10171 4890 10171 4890 10172 4882 10172 4839 10172 4890 10173 4839 10173 4891 10173 5217 10174 5215 10174 5027 10174 5027 10175 5215 10175 5032 10175 5032 10176 5215 10176 5033 10176 5033 10177 5215 10177 5047 10177 5047 10178 5215 10178 5036 10178 5036 10179 5215 10179 4616 10179 4616 10180 5215 10180 5218 10180 5167 10181 4945 10181 5165 10181 4945 10182 5167 10182 4944 10182 4944 10183 5167 10183 4962 10183 4962 10184 5167 10184 4960 10184 4960 10185 5167 10185 5164 10185 4960 10186 5164 10186 4952 10186 4952 10187 5164 10187 4971 10187 4840 10188 5113 10188 4899 10188 5110 10189 4899 10189 5113 10189 4899 10190 5110 10190 4900 10190 4900 10191 5110 10191 4914 10191 4914 10192 5110 10192 4907 10192 4907 10193 5110 10193 4918 10193 4918 10194 5110 10194 4908 10194 4908 10195 5110 10195 4927 10195 4927 10196 5110 10196 4930 10196 4930 10197 5110 10197 5111 10197 5054 10198 5055 10198 4768 10198 4987 10199 5056 10199 4984 10199 4984 10200 5056 10200 4996 10200 4996 10201 5056 10201 4990 10201 4990 10202 5056 10202 5058 10202 4990 10203 5058 10203 5006 10203 5006 10204 5058 10204 5013 10204 5013 10205 5058 10205 5010 10205 4899 10206 4893 10206 4840 10206 4685 10207 4894 10207 4895 10207 4895 10208 4896 10208 4891 10208 4891 10209 4896 10209 4888 10209 4889 10210 4890 10210 4887 10210 4887 10211 4891 10211 4888 10211 4889 10212 4887 10212 4888 10212 4887 10213 4890 10213 4891 10213 4895 10214 4897 10214 4896 10214 4894 10215 4893 10215 4897 10215 4897 10216 4893 10216 4892 10216 4897 10217 4895 10217 4894 10217 4898 10218 4896 10218 4897 10218 4898 10219 4897 10219 4892 10219 4899 10220 4903 10220 4893 10220 4893 10221 4903 10221 4892 10221 4903 10222 4899 10222 4902 10222 4899 10223 4900 10223 4901 10223 4902 10224 4900 10224 4904 10224 4902 10225 4901 10225 4900 10225 4903 10226 4902 10226 4904 10226 4902 10227 4899 10227 4901 10227 4914 10228 4915 10228 4900 10228 4900 10229 4915 10229 4904 10229 4909 10230 4907 10230 4910 10230 4905 10231 4910 10231 4906 10231 4905 10232 4906 10232 4914 10232 4906 10233 4912 10233 4914 10233 4924 10234 4923 10234 4908 10234 4908 10235 4923 10235 4911 10235 4914 10236 4912 10236 4915 10236 4911 10237 4918 10237 4908 10237 4910 10238 4907 10238 4918 10238 4910 10239 4918 10239 4911 10239 4909 10240 4905 10240 4914 10240 4917 10241 4910 10241 4905 10241 4912 10242 4906 10242 4919 10242 4919 10243 4920 10243 4916 10243 4915 10244 4916 10244 4920 10244 4915 10245 4920 10245 4913 10245 4914 10246 4907 10246 4909 10246 4915 10247 4912 10247 4916 10247 4916 10248 4912 10248 4919 10248 4910 10249 4917 10249 4909 10249 4919 10250 4906 10250 4910 10250 4910 10251 4911 10251 4921 10251 4910 10252 4921 10252 4919 10252 4920 10253 4919 10253 4921 10253 4920 10254 4921 10254 4922 10254 4920 10255 4922 10255 4913 10255 4911 10256 4923 10256 4921 10256 4922 10257 4921 10257 4924 10257 4924 10258 4921 10258 4923 10258 4924 10259 4913 10259 4922 10259 4927 10260 4932 10260 4908 10260 4908 10261 4932 10261 4924 10261 4927 10262 4931 10262 4932 10262 4927 10263 4930 10263 4928 10263 4928 10264 4926 10264 4931 10264 4931 10265 4926 10265 4925 10265 4927 10266 4928 10266 4931 10266 4929 10267 4931 10267 4925 10267 4680 10268 4929 10268 4925 10268 4929 10269 4932 10269 4931 10269 4680 10270 4932 10270 4929 10270 4926 10271 4928 10271 4930 10271 4937 10272 4934 10272 4926 10272 4926 10273 4934 10273 4925 10273 4937 10274 4936 10274 4934 10274 4937 10275 4935 10275 4936 10275 4936 10276 4935 10276 4933 10276 4936 10277 4933 10277 4934 10277 4939 10278 4941 10278 4935 10278 4935 10279 4941 10279 4933 10279 4941 10280 4939 10280 4942 10280 4939 10281 4938 10281 4942 10281 4942 10282 4938 10282 4940 10282 4941 10283 4942 10283 4940 10283 4945 10284 4946 10284 4938 10284 4938 10285 4946 10285 4940 10285 4946 10286 4945 10286 4943 10286 4948 10287 4945 10287 4944 10287 4945 10288 4948 10288 4943 10288 4943 10289 4944 10289 4947 10289 4946 10290 4943 10290 4947 10290 4944 10291 4943 10291 4948 10291 4962 10292 4963 10292 4944 10292 4944 10293 4963 10293 4947 10293 4967 10294 4965 10294 4954 10294 4955 10295 4954 10295 4958 10295 4956 10296 4967 10296 4952 10296 4962 10297 4953 10297 4963 10297 4963 10298 4953 10298 4955 10298 4949 10299 4960 10299 4964 10299 4960 10300 4949 10300 4961 10300 4962 10301 4960 10301 4961 10301 4949 10302 4950 10302 4961 10302 4950 10303 4949 10303 4951 10303 4951 10304 4949 10304 4964 10304 4966 10305 4951 10305 4952 10305 4953 10306 4950 10306 4955 10306 4950 10307 4954 10307 4955 10307 4965 10308 4967 10308 4956 10308 4958 10309 4965 10309 4957 10309 4959 10310 4958 10310 4957 10310 4959 10311 4957 10311 4956 10311 4958 10312 4959 10312 4955 10312 4961 10313 4953 10313 4962 10313 4961 10314 4950 10314 4953 10314 4959 10315 4963 10315 4955 10315 4950 10316 4951 10316 4966 10316 4954 10317 4950 10317 4966 10317 4954 10318 4965 10318 4958 10318 4964 10319 4960 10319 4952 10319 4951 10320 4964 10320 4952 10320 4954 10321 4966 10321 4967 10321 4967 10322 4966 10322 4952 10322 4957 10323 4965 10323 4956 10323 4971 10324 4972 10324 4952 10324 4952 10325 4972 10325 4956 10325 4971 10326 4969 10326 4972 10326 4971 10327 4970 10327 4969 10327 4969 10328 4970 10328 4968 10328 4972 10329 4969 10329 4968 10329 4975 10330 4977 10330 4970 10330 4970 10331 4977 10331 4968 10331 4975 10332 4976 10332 4977 10332 4975 10333 4973 10333 4974 10333 4975 10334 4974 10334 4976 10334 4976 10335 4973 10335 4978 10335 4977 10336 4976 10336 4978 10336 4973 10337 4976 10337 4974 10337 4979 10338 4980 10338 4973 10338 4973 10339 4980 10339 4978 10339 4979 10340 4866 10340 4981 10340 4981 10341 4866 10341 4982 10341 4979 10342 4981 10342 4980 10342 4980 10343 4981 10343 4982 10343 4987 10344 4646 10344 4866 10344 4866 10345 4646 10345 4982 10345 4646 10346 4987 10346 4983 10346 4985 10347 4987 10347 4984 10347 4987 10348 4985 10348 4983 10348 4983 10349 4984 10349 4988 10349 4646 10350 4983 10350 4986 10350 4986 10351 4983 10351 4988 10351 4983 10352 4985 10352 4984 10352 4988 10353 4646 10353 4986 10353 4996 10354 4999 10354 4984 10354 4984 10355 4999 10355 4988 10355 5001 10356 4990 10356 4991 10356 4996 10357 4997 10357 5002 10357 4992 10358 5007 10358 5003 10358 4992 10359 5003 10359 5002 10359 4999 10360 4998 10360 5000 10360 4994 10361 5007 10361 5006 10361 5006 10362 5007 10362 4989 10362 4996 10363 4993 10363 4999 10363 4999 10364 4993 10364 4998 10364 5005 10365 4990 10365 5006 10365 4991 10366 4990 10366 5005 10366 4997 10367 5001 10367 4991 10367 4991 10368 4992 10368 4997 10368 4997 10369 4992 10369 5002 10369 4992 10370 4991 10370 4989 10370 4993 10371 5002 10371 4998 10371 5002 10372 5003 10372 4998 10372 4998 10373 5003 10373 5000 10373 5003 10374 5004 10374 5000 10374 5004 10375 5003 10375 4995 10375 4990 10376 5001 10376 4996 10376 4997 10377 4996 10377 5001 10377 4993 10378 4996 10378 5002 10378 5004 10379 4999 10379 5000 10379 4989 10380 5005 10380 5006 10380 4991 10381 5005 10381 4989 10381 4992 10382 4989 10382 5007 10382 5003 10383 5007 10383 4995 10383 5004 10384 4995 10384 4994 10384 4994 10385 4995 10385 5007 10385 5013 10386 5008 10386 5006 10386 5006 10387 5008 10387 4994 10387 5013 10388 5009 10388 5008 10388 5008 10389 5009 10389 5011 10389 5009 10390 5010 10390 5012 10390 5011 10391 5009 10391 5012 10391 5008 10392 5011 10392 5012 10392 5009 10393 5013 10393 5010 10393 5015 10394 5014 10394 5010 10394 5010 10395 5014 10395 5012 10395 5014 10396 5015 10396 5018 10396 5018 10397 5019 10397 5016 10397 5017 10398 5015 10398 5019 10398 5018 10399 5017 10399 5019 10399 5015 10400 5017 10400 5018 10400 5014 10401 5018 10401 5016 10401 5023 10402 5020 10402 5019 10402 5019 10403 5020 10403 5016 10403 5023 10404 5021 10404 5020 10404 5021 10405 5022 10405 5026 10405 5021 10406 5025 10406 5022 10406 5023 10407 5025 10407 5021 10407 5024 10408 5021 10408 5026 10408 5020 10409 5024 10409 5026 10409 5025 10410 5023 10410 5022 10410 5024 10411 5020 10411 5021 10411 5027 10412 5030 10412 5022 10412 5022 10413 5030 10413 5026 10413 5030 10414 5027 10414 5031 10414 5030 10415 5031 10415 5029 10415 5027 10416 5032 10416 5031 10416 5031 10417 5032 10417 5028 10417 5029 10418 5031 10418 5028 10418 5030 10419 5029 10419 5028 10419 5033 10420 5043 10420 5032 10420 5032 10421 5043 10421 5028 10421 5051 10422 5036 10422 5052 10422 5044 10423 5038 10423 5048 10423 5049 10424 5052 10424 5036 10424 5033 10425 5037 10425 5043 10425 5047 10426 5034 10426 5041 10426 5050 10427 5034 10427 5036 10427 5034 10428 5035 10428 5041 10428 5033 10429 5041 10429 5042 10429 5041 10430 5035 10430 5042 10430 5051 10431 5035 10431 5050 10431 5051 10432 5050 10432 5036 10432 5038 10433 5035 10433 5051 10433 5039 10434 5038 10434 5052 10434 5039 10435 5052 10435 5049 10435 5043 10436 5044 10436 5045 10436 5044 10437 5048 10437 5045 10437 5040 10438 5039 10438 5049 10438 5046 10439 5048 10439 5040 10439 5043 10440 5045 10440 5046 10440 5046 10441 5040 10441 5049 10441 5033 10442 5047 10442 5041 10442 5033 10443 5042 10443 5037 10443 5043 10444 5037 10444 5044 10444 5044 10445 5037 10445 5038 10445 5038 10446 5042 10446 5035 10446 5038 10447 5037 10447 5042 10447 5046 10448 5045 10448 5048 10448 5034 10449 5050 10449 5035 10449 5038 10450 5051 10450 5052 10450 5048 10451 5038 10451 5039 10451 5048 10452 5039 10452 5040 10452 5036 10453 5034 10453 5047 10453 4616 10454 4615 10454 5036 10454 5036 10455 4615 10455 5049 10455 5057 10456 5062 10456 5054 10456 5055 10457 5054 10457 5061 10457 5055 10458 5068 10458 5056 10458 5056 10459 5060 10459 5058 10459 5056 10460 5059 10460 5060 10460 5066 10461 5058 10461 5070 10461 5057 10462 5066 10462 5064 10462 5056 10463 5068 10463 5059 10463 5057 10464 5064 10464 5062 10464 5055 10465 5061 10465 5068 10465 5059 10466 5067 10466 5060 10466 5058 10467 5060 10467 5063 10467 5058 10468 5063 10468 5070 10468 5066 10469 5070 10469 5076 10469 5054 10470 5062 10470 5061 10470 5062 10471 5064 10471 5073 10471 5068 10472 5085 10472 5059 10472 5061 10473 5072 10473 5068 10473 5059 10474 5065 10474 5067 10474 5060 10475 5075 10475 5063 10475 5062 10476 5073 10476 5061 10476 5073 10477 5084 10477 5061 10477 5061 10478 5084 10478 5069 10478 5061 10479 5069 10479 5072 10479 5066 10480 5076 10480 5064 10480 5067 10481 5065 10481 5077 10481 5059 10482 5085 10482 5065 10482 5067 10483 5075 10483 5060 10483 5067 10484 5077 10484 5075 10484 5064 10485 5071 10485 5073 10485 5064 10486 5076 10486 5071 10486 5068 10487 5072 10487 5074 10487 5068 10488 5074 10488 5085 10488 5072 10489 5069 10489 5074 10489 5065 10490 5079 10490 5077 10490 5075 10491 5078 10491 5063 10491 5076 10492 5083 10492 5071 10492 5063 10493 5078 10493 5082 10493 5063 10494 5082 10494 5070 10494 5076 10495 5070 10495 5087 10495 5076 10496 5087 10496 5083 10496 5073 10497 5071 10497 5081 10497 5069 10498 5084 10498 5098 10498 5070 10499 5082 10499 5087 10499 5065 10500 5085 10500 5079 10500 5073 10501 5081 10501 5084 10501 5075 10502 5077 10502 5080 10502 5077 10503 5079 10503 5080 10503 5075 10504 5080 10504 5078 10504 5078 10505 5080 10505 5096 10505 5074 10506 5091 10506 5085 10506 5081 10507 5071 10507 5105 10507 5069 10508 5098 10508 5074 10508 5081 10509 5105 10509 5084 10509 5079 10510 5086 10510 5080 10510 5071 10511 5083 10511 5097 10511 5078 10512 5096 10512 5095 10512 5078 10513 5095 10513 5082 10513 5082 10514 5092 10514 5087 10514 5074 10515 5098 10515 5091 10515 5084 10516 5105 10516 5088 10516 5084 10517 5088 10517 5098 10517 5085 10518 5091 10518 5090 10518 5085 10519 5090 10519 5079 10519 5080 10520 5086 10520 5096 10520 5079 10521 5090 10521 5086 10521 5071 10522 5097 10522 5105 10522 5082 10523 5095 10523 5092 10523 5087 10524 5093 10524 5083 10524 5086 10525 5090 10525 5089 10525 5086 10526 5089 10526 5096 10526 5091 10527 5098 10527 5094 10527 5087 10528 5092 10528 5093 10528 5091 10529 5094 10529 5090 10529 5090 10530 5101 10530 5089 10530 5090 10531 5094 10531 5101 10531 5083 10532 5093 10532 5107 10532 5083 10533 5107 10533 5097 10533 5095 10534 5096 10534 5099 10534 5095 10535 5099 10535 5092 10535 5098 10536 5088 10536 5108 10536 5096 10537 5089 10537 5099 10537 5097 10538 5104 10538 5105 10538 5097 10539 5107 10539 5104 10539 5089 10540 5100 10540 5099 10540 5092 10541 5099 10541 5106 10541 5092 10542 5106 10542 5093 10542 5098 10543 5108 10543 5094 10543 5093 10544 5106 10544 5107 10544 5088 10545 5105 10545 5102 10545 5088 10546 5102 10546 5108 10546 5089 10547 5101 10547 5100 10547 5094 10548 5108 10548 5053 10548 5094 10549 5053 10549 5101 10549 5101 10550 5103 10550 5100 10550 5101 10551 5053 10551 5103 10551 5105 10552 5104 10552 5102 10552 5099 10553 5100 10553 5106 10553 5110 10554 5113 10554 5118 10554 5110 10555 5118 10555 5114 10555 5110 10556 5114 10556 5111 10556 5112 10557 5117 10557 5119 10557 5117 10558 5115 10558 5123 10558 5112 10559 5126 10559 5113 10559 5112 10560 5119 10560 5126 10560 5113 10561 5125 10561 5118 10561 5113 10562 5126 10562 5125 10562 5111 10563 5114 10563 5121 10563 5111 10564 5116 10564 5115 10564 5111 10565 5121 10565 5116 10565 5117 10566 5123 10566 5122 10566 5115 10567 5116 10567 5120 10567 5117 10568 5122 10568 5119 10568 5115 10569 5120 10569 5123 10569 5116 10570 5135 10570 5120 10570 5116 10571 5121 10571 5124 10571 5126 10572 5130 10572 5125 10572 5114 10573 5118 10573 5129 10573 5116 10574 5124 10574 5135 10574 5123 10575 5120 10575 5134 10575 5118 10576 5127 10576 5129 10576 5119 10577 5128 10577 5126 10577 5118 10578 5125 10578 5127 10578 5123 10579 5134 10579 5132 10579 5114 10580 5129 10580 5121 10580 5125 10581 5130 10581 5133 10581 5125 10582 5133 10582 5127 10582 5121 10583 5129 10583 5137 10583 5121 10584 5137 10584 5124 10584 5119 10585 5122 10585 5128 10585 5123 10586 5132 10586 5122 10586 5128 10587 5131 10587 5126 10587 5120 10588 5135 10588 5134 10588 5126 10589 5131 10589 5130 10589 5122 10590 5132 10590 5136 10590 5130 10591 5131 10591 5155 10591 5124 10592 5137 10592 5148 10592 5124 10593 5148 10593 5135 10593 5127 10594 5139 10594 5129 10594 5129 10595 5139 10595 5137 10595 5127 10596 5133 10596 5138 10596 5122 10597 5136 10597 5128 10597 5133 10598 5130 10598 5138 10598 5127 10599 5138 10599 5139 10599 5130 10600 5155 10600 5138 10600 5128 10601 5136 10601 5156 10601 5128 10602 5156 10602 5131 10602 5134 10603 5135 10603 5141 10603 5132 10604 5143 10604 5145 10604 5132 10605 5145 10605 5136 10605 5132 10606 5134 10606 5143 10606 5138 10607 5155 10607 5147 10607 5134 10608 5141 10608 5143 10608 5131 10609 5156 10609 5144 10609 5131 10610 5144 10610 5155 10610 5135 10611 5148 10611 5146 10611 5135 10612 5146 10612 5141 10612 5136 10613 5145 10613 5142 10613 5139 10614 5149 10614 5137 10614 5139 10615 5138 10615 5140 10615 5139 10616 5140 10616 5149 10616 5136 10617 5142 10617 5156 10617 5148 10618 5137 10618 5150 10618 5137 10619 5149 10619 5150 10619 5143 10620 5151 10620 5145 10620 5143 10621 5141 10621 5151 10621 5142 10622 5145 10622 5157 10622 5142 10623 5157 10623 5156 10623 5141 10624 5146 10624 5151 10624 5145 10625 5151 10625 5157 10625 5138 10626 5147 10626 5153 10626 5138 10627 5153 10627 5140 10627 5140 10628 5153 10628 5149 10628 5146 10629 5148 10629 5160 10629 5151 10630 5109 10630 5157 10630 5148 10631 5150 10631 5160 10631 5147 10632 5155 10632 5152 10632 5147 10633 5152 10633 5153 10633 5150 10634 5149 10634 5160 10634 5156 10635 5157 10635 5161 10635 5151 10636 5146 10636 5154 10636 5151 10637 5154 10637 5109 10637 5144 10638 5158 10638 5155 10638 5144 10639 5156 10639 5161 10639 5144 10640 5161 10640 5158 10640 5155 10641 5158 10641 5152 10641 5152 10642 5159 10642 5153 10642 5152 10643 5158 10643 5159 10643 5146 10644 5160 10644 5154 10644 5153 10645 5159 10645 5149 10645 5157 10646 5109 10646 5161 10646 5149 10647 5159 10647 5160 10647 5164 10648 5171 10648 5163 10648 5164 10649 5173 10649 5171 10649 5163 10650 5168 10650 5166 10650 5163 10651 5171 10651 5168 10651 5165 10652 5162 10652 5178 10652 5167 10653 5165 10653 5170 10653 5166 10654 5168 10654 5174 10654 5164 10655 5167 10655 5179 10655 5166 10656 5172 10656 5169 10656 5167 10657 5170 10657 5179 10657 5166 10658 5174 10658 5172 10658 5162 10659 5175 10659 5178 10659 5169 10660 5172 10660 5176 10660 5169 10661 5183 10661 5162 10661 5165 10662 5178 10662 5187 10662 5169 10663 5176 10663 5183 10663 5165 10664 5187 10664 5170 10664 5168 10665 5185 10665 5174 10665 5164 10666 5179 10666 5184 10666 5164 10667 5184 10667 5173 10667 5172 10668 5174 10668 5190 10668 5162 10669 5183 10669 5175 10669 5168 10670 5171 10670 5185 10670 5179 10671 5170 10671 5181 10671 5172 10672 5190 10672 5176 10672 5174 10673 5185 10673 5190 10673 5173 10674 5184 10674 5177 10674 5173 10675 5177 10675 5171 10675 5176 10676 5190 10676 5182 10676 5170 10677 5187 10677 5181 10677 5171 10678 5177 10678 5185 10678 5185 10679 5180 10679 5190 10679 5176 10680 5182 10680 5183 10680 5177 10681 5184 10681 5189 10681 5179 10682 5181 10682 5188 10682 5179 10683 5188 10683 5184 10683 5177 10684 5189 10684 5185 10684 5187 10685 5196 10685 5181 10685 5184 10686 5188 10686 5186 10686 5178 10687 5175 10687 5195 10687 5178 10688 5195 10688 5187 10688 5175 10689 5194 10689 5195 10689 5175 10690 5183 10690 5194 10690 5182 10691 5193 10691 5183 10691 5182 10692 5190 10692 5191 10692 5182 10693 5191 10693 5193 10693 5184 10694 5186 10694 5189 10694 5185 10695 5189 10695 5199 10695 5187 10696 5195 10696 5196 10696 5181 10697 5196 10697 5188 10697 5180 10698 5185 10698 5197 10698 5185 10699 5199 10699 5197 10699 5180 10700 5197 10700 5190 10700 5183 10701 5192 10701 5194 10701 5190 10702 5197 10702 5191 10702 5183 10703 5193 10703 5192 10703 5196 10704 5209 10704 5188 10704 5188 10705 5209 10705 5210 10705 5189 10706 5186 10706 5204 10706 5197 10707 5199 10707 5200 10707 5191 10708 5197 10708 5203 10708 5196 10709 5195 10709 5209 10709 5197 10710 5200 10710 5203 10710 5193 10711 5191 10711 5201 10711 5193 10712 5201 10712 5192 10712 5199 10713 5189 10713 5198 10713 5189 10714 5204 10714 5198 10714 5195 10715 5194 10715 5202 10715 5195 10716 5202 10716 5209 10716 5186 10717 5188 10717 5204 10717 5191 10718 5203 10718 5201 10718 5194 10719 5192 10719 5202 10719 5188 10720 5210 10720 5205 10720 5188 10721 5205 10721 5204 10721 5192 10722 5201 10722 5202 10722 5199 10723 5198 10723 5211 10723 5199 10724 5211 10724 5200 10724 5200 10725 5212 10725 5203 10725 5209 10726 5207 10726 5210 10726 5202 10727 5208 10727 5209 10727 5202 10728 5201 10728 5206 10728 5200 10729 5211 10729 5212 10729 5203 10730 5212 10730 5206 10730 5203 10731 5206 10731 5201 10731 5198 10732 5204 10732 5211 10732 5202 10733 5206 10733 5208 10733 5209 10734 5208 10734 5207 10734 5210 10735 5207 10735 5205 10735 5214 10736 5220 10736 5217 10736 5214 10737 5216 10737 5221 10737 5214 10738 5221 10738 5222 10738 5215 10739 5224 10739 5218 10739 5213 10740 5218 10740 5226 10740 5214 10741 5222 10741 5220 10741 5218 10742 5219 10742 5226 10742 5217 10743 5220 10743 5223 10743 5215 10744 5217 10744 5241 10744 5213 10745 5226 10745 5228 10745 5217 10746 5223 10746 5225 10746 5215 10747 5241 10747 5224 10747 5213 10748 5228 10748 5216 10748 5217 10749 5225 10749 5241 10749 5218 10750 5224 10750 5219 10750 5226 10751 5230 10751 5228 10751 5220 10752 5222 10752 5237 10752 5226 10753 5227 10753 5230 10753 5216 10754 5228 10754 5221 10754 5222 10755 5221 10755 5237 10755 5219 10756 5224 10756 5234 10756 5219 10757 5227 10757 5226 10757 5219 10758 5234 10758 5227 10758 5224 10759 5249 10759 5234 10759 5220 10760 5237 10760 5229 10760 5220 10761 5229 10761 5223 10761 5221 10762 5231 10762 5237 10762 5221 10763 5228 10763 5231 10763 5224 10764 5241 10764 5249 10764 5231 10765 5235 10765 5237 10765 5227 10766 5234 10766 5232 10766 5227 10767 5232 10767 5233 10767 5227 10768 5233 10768 5230 10768 5223 10769 5229 10769 5225 10769 5228 10770 5230 10770 5250 10770 5228 10771 5250 10771 5231 10771 5241 10772 5225 10772 5236 10772 5230 10773 5233 10773 5240 10773 5230 10774 5240 10774 5250 10774 5225 10775 5229 10775 5238 10775 5225 10776 5238 10776 5236 10776 5234 10777 5249 10777 5242 10777 5234 10778 5242 10778 5232 10778 5229 10779 5237 10779 5246 10779 5232 10780 5239 10780 5233 10780 5229 10781 5259 10781 5238 10781 5233 10782 5239 10782 5240 10782 5231 10783 5251 10783 5235 10783 5229 10784 5246 10784 5259 10784 5231 10785 5250 10785 5251 10785 5238 10786 5259 10786 5236 10786 5236 10787 5259 10787 5248 10787 5241 10788 5236 10788 5256 10788 5241 10789 5256 10789 5249 10789 5239 10790 5244 10790 5240 10790 5235 10791 5251 10791 5243 10791 5235 10792 5243 10792 5237 10792 5250 10793 5240 10793 5247 10793 5236 10794 5248 10794 5256 10794 5232 10795 5245 10795 5239 10795 5239 10796 5245 10796 5244 10796 5232 10797 5242 10797 5245 10797 5237 10798 5243 10798 5246 10798 5249 10799 5252 10799 5242 10799 5250 10800 5247 10800 5251 10800 5240 10801 5244 10801 5255 10801 5240 10802 5255 10802 5247 10802 5249 10803 5256 10803 5252 10803 5245 10804 5242 10804 5254 10804 5246 10805 5243 10805 5253 10805 5242 10806 5252 10806 5254 10806 5245 10807 5254 10807 5244 10807 5251 10808 5258 10808 5243 10808 5243 10809 5258 10809 5253 10809 5244 10810 5254 10810 5257 10810 5244 10811 5257 10811 5255 10811 5254 10812 5252 10812 5263 10812 5247 10813 5255 10813 5260 10813 5248 10814 5259 10814 5262 10814 5254 10815 5263 10815 5265 10815 5246 10816 5253 10816 5266 10816 5246 10817 5266 10817 5259 10817 5254 10818 5265 10818 5257 10818 5258 10819 5261 10819 5253 10819 5248 10820 5262 10820 5256 10820 5255 10821 5257 10821 5260 10821 5259 10822 5267 10822 5262 10822 5256 10823 5262 10823 5252 10823 5252 10824 5262 10824 5263 10824 5247 10825 5260 10825 5251 10825 5258 10826 5251 10826 5261 10826 5253 10827 5261 10827 5266 10827 5251 10828 5260 10828 5261 10828 5259 10829 5266 10829 5267 10829 5266 10830 5261 10830 5264 10830 5260 10831 5257 10831 5264 10831 5260 10832 5264 10832 5261 10832 5465 10833 5468 10833 5269 10833 5269 10834 5468 10834 5268 10834 5268 10835 5516 10835 5269 10835 5414 10836 5271 10836 5270 10836 5270 10837 5271 10837 5272 10837 5270 10838 5272 10838 5319 10838 5414 10839 5413 10839 5271 10839 5271 10840 5317 10840 5272 10840 5272 10841 5317 10841 5273 10841 5273 10842 5317 10842 5468 10842 5273 10843 5468 10843 5470 10843 5410 10844 5468 10844 5317 10844 5409 10845 5561 10845 5410 10845 5408 10846 5562 10846 5409 10846 5409 10847 5562 10847 5561 10847 5274 10848 5278 10848 5408 10848 5408 10849 5278 10849 5557 10849 5408 10850 5557 10850 5562 10850 5275 10851 5400 10851 5274 10851 5274 10852 5400 10852 5399 10852 5274 10853 5399 10853 5278 10853 5404 10854 5403 10854 5275 10854 5275 10855 5403 10855 5400 10855 5399 10856 5400 10856 6190 10856 5399 10857 6190 10857 5276 10857 5276 10858 6190 10858 6192 10858 5276 10859 6192 10859 5277 10859 5557 10860 5278 10860 5279 10860 5557 10861 5279 10861 5558 10861 5558 10862 5279 10862 5280 10862 5558 10863 5280 10863 5560 10863 5560 10864 5280 10864 5515 10864 5515 10865 5280 10865 5512 10865 5512 10866 5280 10866 5281 10866 5512 10867 5281 10867 5386 10867 5512 10868 5386 10868 5510 10868 5510 10869 5386 10869 5316 10869 5510 10870 5316 10870 5504 10870 5504 10871 5316 10871 5526 10871 5386 10872 5281 10872 5387 10872 5387 10873 5281 10873 5395 10873 5387 10874 5395 10874 5390 10874 5390 10875 5395 10875 5391 10875 5391 10876 5395 10876 5393 10876 5390 10877 5389 10877 5387 10877 5282 10878 5527 10878 5316 10878 5316 10879 5527 10879 5526 10879 5382 10880 5520 10880 5282 10880 5282 10881 5520 10881 5527 10881 5381 10882 5372 10882 5382 10882 5382 10883 5372 10883 5283 10883 5382 10884 5283 10884 5520 10884 5520 10885 5283 10885 5284 10885 5520 10886 5284 10886 5519 10886 5519 10887 5284 10887 5369 10887 5519 10888 5369 10888 5495 10888 5519 10889 5495 10889 5315 10889 5315 10890 5495 10890 5500 10890 5380 10891 5375 10891 5381 10891 5381 10892 5375 10892 5374 10892 5381 10893 5374 10893 5372 10893 5372 10894 5374 10894 5285 10894 5285 10895 5374 10895 5286 10895 5285 10896 5286 10896 5373 10896 5379 10897 6208 10897 5380 10897 5380 10898 6208 10898 5375 10898 5495 10899 5369 10899 5493 10899 5493 10900 5369 10900 5287 10900 5493 10901 5287 10901 5494 10901 5494 10902 5287 10902 5288 10902 5494 10903 5288 10903 5290 10903 5494 10904 5290 10904 5490 10904 5490 10905 5290 10905 5542 10905 5287 10906 5367 10906 5288 10906 5288 10907 5367 10907 5360 10907 5360 10908 5367 10908 5289 10908 5360 10909 5289 10909 5361 10909 5365 10910 5364 10910 5367 10910 5367 10911 5364 10911 5289 10911 5291 10912 5549 10912 5290 10912 5290 10913 5549 10913 5542 10913 5291 10914 5550 10914 5549 10914 5314 10915 5550 10915 5291 10915 5292 10916 5293 10916 5314 10916 5314 10917 5293 10917 5551 10917 5314 10918 5551 10918 5550 10918 5357 10919 5295 10919 5292 10919 5292 10920 5295 10920 5296 10920 5292 10921 5296 10921 5293 10921 5355 10922 5294 10922 5357 10922 5357 10923 5294 10923 5295 10923 5295 10924 5353 10924 5351 10924 5295 10925 5351 10925 5296 10925 5296 10926 5351 10926 5347 10926 5347 10927 5351 10927 5297 10927 5347 10928 5297 10928 5349 10928 5551 10929 5293 10929 5343 10929 5551 10930 5343 10930 5298 10930 5298 10931 5343 10931 5299 10931 5298 10932 5299 10932 5484 10932 5298 10933 5484 10933 5548 10933 5484 10934 5299 10934 5300 10934 5300 10935 5299 10935 5301 10935 5300 10936 5301 10936 5302 10936 5300 10937 5302 10937 5480 10937 5480 10938 5302 10938 5479 10938 5479 10939 5302 10939 5303 10939 5479 10940 5303 10940 5534 10940 5302 10941 5301 10941 5335 10941 5335 10942 5301 10942 5304 10942 5335 10943 5304 10943 5339 10943 5339 10944 5304 10944 5341 10944 5341 10945 5304 10945 5342 10945 5339 10946 5338 10946 5335 10946 5305 10947 5538 10947 5303 10947 5303 10948 5538 10948 5534 10948 5332 10949 5306 10949 5305 10949 5305 10950 5306 10950 5538 10950 5310 10951 5307 10951 5332 10951 5332 10952 5307 10952 5320 10952 5332 10953 5320 10953 5306 10953 5306 10954 5320 10954 5308 10954 5306 10955 5308 10955 5536 10955 5536 10956 5308 10956 5309 10956 5536 10957 5309 10957 5539 10957 5539 10958 5309 10958 5472 10958 5331 10959 5325 10959 5310 10959 5310 10960 5325 10960 5312 10960 5310 10961 5312 10961 5307 10961 5307 10962 5312 10962 5311 10962 5311 10963 5312 10963 5323 10963 5311 10964 5323 10964 5322 10964 5329 10965 5327 10965 5331 10965 5331 10966 5327 10966 5325 10966 5472 10967 5309 10967 5313 10967 5313 10968 5309 10968 5273 10968 5313 10969 5273 10969 5470 10969 5410 10970 5561 10970 5559 10970 5410 10971 5559 10971 5268 10971 5268 10972 5559 10972 5517 10972 5517 10973 5559 10973 5518 10973 5518 10974 5559 10974 5560 10974 5518 10975 5560 10975 5515 10975 5490 10976 5542 10976 5488 10976 5488 10977 5542 10977 5485 10977 5485 10978 5542 10978 5548 10978 5485 10979 5548 10979 5487 10979 5487 10980 5548 10980 5484 10980 5479 10981 5534 10981 5537 10981 5479 10982 5537 10982 5476 10982 5476 10983 5537 10983 5477 10983 5477 10984 5537 10984 5475 10984 5475 10985 5537 10985 5539 10985 5475 10986 5539 10986 5472 10986 5526 10987 5506 10987 5504 10987 5506 10988 5526 10988 5498 10988 5498 10989 5526 10989 5315 10989 5498 10990 5315 10990 5501 10990 5501 10991 5315 10991 5500 10991 5268 10992 5468 10992 5410 10992 5418 10993 5270 10993 5318 10993 5318 10994 5270 10994 5319 10994 5318 10995 5319 10995 5417 10995 5417 10996 5319 10996 5272 10996 5417 10997 5272 10997 5420 10997 5420 10998 5272 10998 5273 10998 5420 10999 5273 10999 5463 10999 5463 11000 5273 11000 5309 11000 5463 11001 5309 11001 5421 11001 5421 11002 5309 11002 5308 11002 5421 11003 5308 11003 5422 11003 5422 11004 5308 11004 5320 11004 5422 11005 5320 11005 5423 11005 5423 11006 5320 11006 5307 11006 5423 11007 5307 11007 5424 11007 5424 11008 5307 11008 5311 11008 5424 11009 5311 11009 5321 11009 5321 11010 5311 11010 5322 11010 5321 11011 5322 11011 5425 11011 5425 11012 5322 11012 5323 11012 5425 11013 5323 11013 5326 11013 5326 11014 5323 11014 5312 11014 5325 11015 5326 11015 5312 11015 5326 11016 5325 11016 5324 11016 5324 11017 5325 11017 5427 11017 5427 11018 5325 11018 5327 11018 5427 11019 5327 11019 5328 11019 5328 11020 5327 11020 5329 11020 5328 11021 5329 11021 5330 11021 5330 11022 5329 11022 5331 11022 5330 11023 5331 11023 5426 11023 5426 11024 5331 11024 5310 11024 5426 11025 5310 11025 5333 11025 5333 11026 5310 11026 5332 11026 5333 11027 5332 11027 5428 11027 5428 11028 5332 11028 5305 11028 5428 11029 5305 11029 5334 11029 5334 11030 5305 11030 5303 11030 5334 11031 5303 11031 5429 11031 5429 11032 5303 11032 5302 11032 5429 11033 5302 11033 5433 11033 5433 11034 5302 11034 5335 11034 5433 11035 5335 11035 5336 11035 5336 11036 5335 11036 5338 11036 5336 11037 5338 11037 5337 11037 5337 11038 5338 11038 5339 11038 5337 11039 5339 11039 5340 11039 5340 11040 5339 11040 5341 11040 5340 11041 5341 11041 5434 11041 5434 11042 5341 11042 5342 11042 5434 11043 5342 11043 5432 11043 5432 11044 5342 11044 5304 11044 5432 11045 5304 11045 5430 11045 5430 11046 5304 11046 5301 11046 5430 11047 5301 11047 5431 11047 5431 11048 5301 11048 5299 11048 5431 11049 5299 11049 5435 11049 5435 11050 5299 11050 5343 11050 5435 11051 5343 11051 5344 11051 5344 11052 5343 11052 5293 11052 5344 11053 5293 11053 5345 11053 5345 11054 5293 11054 5296 11054 5345 11055 5296 11055 5346 11055 5346 11056 5296 11056 5347 11056 5346 11057 5347 11057 5348 11057 5348 11058 5347 11058 5349 11058 5348 11059 5349 11059 5439 11059 5439 11060 5349 11060 5297 11060 5439 11061 5297 11061 5350 11061 5350 11062 5297 11062 5351 11062 5353 11063 5295 11063 5352 11063 5353 11064 5352 11064 5350 11064 5353 11065 5350 11065 5351 11065 5352 11066 5295 11066 5438 11066 5438 11067 5295 11067 5294 11067 5438 11068 5294 11068 5354 11068 5354 11069 5294 11069 5355 11069 5354 11070 5355 11070 5356 11070 5356 11071 5355 11071 5357 11071 5356 11072 5357 11072 5358 11072 5358 11073 5357 11073 5292 11073 5358 11074 5292 11074 5436 11074 5436 11075 5292 11075 5314 11075 5436 11076 5314 11076 5437 11076 5437 11077 5314 11077 5291 11077 5437 11078 5291 11078 5359 11078 5359 11079 5291 11079 5290 11079 5359 11080 5290 11080 5440 11080 5440 11081 5290 11081 5288 11081 5440 11082 5288 11082 5442 11082 5442 11083 5288 11083 5360 11083 5442 11084 5360 11084 5362 11084 5362 11085 5360 11085 5361 11085 5362 11086 5361 11086 5363 11086 5363 11087 5361 11087 5289 11087 5363 11088 5289 11088 5443 11088 5443 11089 5289 11089 5364 11089 5443 11090 5364 11090 5444 11090 5444 11091 5364 11091 5365 11091 5444 11092 5365 11092 5366 11092 5366 11093 5365 11093 5367 11093 5366 11094 5367 11094 5441 11094 5441 11095 5367 11095 5287 11095 5441 11096 5287 11096 5368 11096 5368 11097 5287 11097 5369 11097 5368 11098 5369 11098 5370 11098 5370 11099 5369 11099 5284 11099 5370 11100 5284 11100 5445 11100 5445 11101 5284 11101 5283 11101 5445 11102 5283 11102 5446 11102 5446 11103 5283 11103 5372 11103 5446 11104 5372 11104 5371 11104 5371 11105 5372 11105 5285 11105 5371 11106 5285 11106 5448 11106 5448 11107 5285 11107 5373 11107 5448 11108 5373 11108 5449 11108 5449 11109 5373 11109 5286 11109 5449 11110 5286 11110 5376 11110 5376 11111 5286 11111 5374 11111 5375 11112 5667 11112 5374 11112 5667 11113 5376 11113 5374 11113 5667 11114 5375 11114 5377 11114 5377 11115 5375 11115 6208 11115 5377 11116 6208 11116 5378 11116 5378 11117 6208 11117 5379 11117 5378 11118 5379 11118 5450 11118 5450 11119 5379 11119 5380 11119 5450 11120 5380 11120 5447 11120 5447 11121 5380 11121 5381 11121 5447 11122 5381 11122 5451 11122 5451 11123 5381 11123 5382 11123 5451 11124 5382 11124 5383 11124 5383 11125 5382 11125 5282 11125 5383 11126 5282 11126 5384 11126 5384 11127 5282 11127 5316 11127 5384 11128 5316 11128 5385 11128 5385 11129 5316 11129 5386 11129 5385 11130 5386 11130 5453 11130 5453 11131 5386 11131 5387 11131 5453 11132 5387 11132 5388 11132 5388 11133 5387 11133 5389 11133 5388 11134 5389 11134 5454 11134 5454 11135 5389 11135 5390 11135 5454 11136 5390 11136 5742 11136 5742 11137 5390 11137 5391 11137 5742 11138 5391 11138 5392 11138 5392 11139 5391 11139 5393 11139 5392 11140 5393 11140 5394 11140 5394 11141 5393 11141 5395 11141 5394 11142 5395 11142 5452 11142 5452 11143 5395 11143 5281 11143 5452 11144 5281 11144 5396 11144 5396 11145 5281 11145 5280 11145 5396 11146 5280 11146 5397 11146 5397 11147 5280 11147 5279 11147 5397 11148 5279 11148 5456 11148 5456 11149 5279 11149 5278 11149 5456 11150 5278 11150 5398 11150 5398 11151 5278 11151 5399 11151 5398 11152 5399 11152 5461 11152 5461 11153 5399 11153 5276 11153 5461 11154 5276 11154 5459 11154 5459 11155 5276 11155 5277 11155 5459 11156 5277 11156 5460 11156 5460 11157 5277 11157 6192 11157 5460 11158 6192 11158 5462 11158 5462 11159 6192 11159 6190 11159 6190 11160 5401 11160 5462 11160 5400 11161 5401 11161 6190 11161 5401 11162 5400 11162 5402 11162 5402 11163 5400 11163 5403 11163 5402 11164 5403 11164 5405 11164 5405 11165 5403 11165 5404 11165 5405 11166 5404 11166 5406 11166 5406 11167 5404 11167 5275 11167 5406 11168 5275 11168 5455 11168 5455 11169 5275 11169 5274 11169 5455 11170 5274 11170 5407 11170 5407 11171 5274 11171 5408 11171 5407 11172 5408 11172 5457 11172 5457 11173 5408 11173 5409 11173 5457 11174 5409 11174 5458 11174 5458 11175 5409 11175 5410 11175 5458 11176 5410 11176 5411 11176 5411 11177 5410 11177 5317 11177 5411 11178 5317 11178 5416 11178 5416 11179 5317 11179 5271 11179 5416 11180 5271 11180 5412 11180 5412 11181 5271 11181 5413 11181 5412 11182 5413 11182 5415 11182 5415 11183 5413 11183 5414 11183 5415 11184 5414 11184 5418 11184 5418 11185 5414 11185 5270 11185 5412 11186 5415 11186 5416 11186 5416 11187 5415 11187 5418 11187 5416 11188 5418 11188 5417 11188 5417 11189 5418 11189 5318 11189 5417 11190 5420 11190 5416 11190 5416 11191 5420 11191 5411 11191 5411 11192 5420 11192 5419 11192 5411 11193 5419 11193 5464 11193 5463 11194 5419 11194 5420 11194 5421 11195 5531 11195 5463 11195 5421 11196 5529 11196 5531 11196 5422 11197 5529 11197 5421 11197 5423 11198 5333 11198 5422 11198 5422 11199 5333 11199 5528 11199 5422 11200 5528 11200 5529 11200 5424 11201 5326 11201 5423 11201 5423 11202 5326 11202 5426 11202 5423 11203 5426 11203 5333 11203 5321 11204 5425 11204 5424 11204 5424 11205 5425 11205 5326 11205 5326 11206 5324 11206 5426 11206 5426 11207 5324 11207 5330 11207 5330 11208 5324 11208 5427 11208 5330 11209 5427 11209 5328 11209 5528 11210 5333 11210 5428 11210 5528 11211 5428 11211 5532 11211 5532 11212 5428 11212 5334 11212 5532 11213 5334 11213 5530 11213 5530 11214 5334 11214 5478 11214 5478 11215 5334 11215 5481 11215 5481 11216 5334 11216 5429 11216 5481 11217 5429 11217 5430 11217 5481 11218 5430 11218 5482 11218 5482 11219 5430 11219 5431 11219 5482 11220 5431 11220 5483 11220 5483 11221 5431 11221 5540 11221 5430 11222 5429 11222 5432 11222 5432 11223 5429 11223 5433 11223 5432 11224 5433 11224 5340 11224 5340 11225 5433 11225 5337 11225 5337 11226 5433 11226 5336 11226 5340 11227 5434 11227 5432 11227 5435 11228 5547 11228 5431 11228 5431 11229 5547 11229 5540 11229 5435 11230 5545 11230 5547 11230 5344 11231 5545 11231 5435 11231 5345 11232 5358 11232 5344 11232 5344 11233 5358 11233 5436 11233 5344 11234 5436 11234 5545 11234 5545 11235 5436 11235 5546 11235 5546 11236 5436 11236 5437 11236 5546 11237 5437 11237 5543 11237 5543 11238 5437 11238 5359 11238 5543 11239 5359 11239 5541 11239 5541 11240 5359 11240 5489 11240 5346 11241 5350 11241 5345 11241 5345 11242 5350 11242 5352 11242 5345 11243 5352 11243 5358 11243 5358 11244 5352 11244 5356 11244 5356 11245 5352 11245 5438 11245 5356 11246 5438 11246 5354 11246 5348 11247 5439 11247 5346 11247 5346 11248 5439 11248 5350 11248 5489 11249 5359 11249 5492 11249 5492 11250 5359 11250 5440 11250 5492 11251 5440 11251 5491 11251 5491 11252 5440 11252 5441 11252 5491 11253 5441 11253 5368 11253 5491 11254 5368 11254 5496 11254 5496 11255 5368 11255 5523 11255 5440 11256 5442 11256 5441 11256 5441 11257 5442 11257 5366 11257 5366 11258 5442 11258 5363 11258 5366 11259 5363 11259 5443 11259 5442 11260 5362 11260 5363 11260 5443 11261 5444 11261 5366 11261 5370 11262 5523 11262 5368 11262 5370 11263 5522 11263 5523 11263 5445 11264 5522 11264 5370 11264 5446 11265 5451 11265 5445 11265 5445 11266 5451 11266 5524 11266 5445 11267 5524 11267 5522 11267 5371 11268 5376 11268 5446 11268 5446 11269 5376 11269 5447 11269 5446 11270 5447 11270 5451 11270 5448 11271 5449 11271 5371 11271 5371 11272 5449 11272 5376 11272 5447 11273 5376 11273 5667 11273 5447 11274 5667 11274 5450 11274 5450 11275 5667 11275 5377 11275 5450 11276 5377 11276 5378 11276 5524 11277 5451 11277 5383 11277 5524 11278 5383 11278 5525 11278 5525 11279 5383 11279 5384 11279 5525 11280 5384 11280 5502 11280 5525 11281 5502 11281 5521 11281 5502 11282 5384 11282 5509 11282 5509 11283 5384 11283 5385 11283 5509 11284 5385 11284 5452 11284 5509 11285 5452 11285 5511 11285 5511 11286 5452 11286 5514 11286 5514 11287 5452 11287 5396 11287 5514 11288 5396 11288 5556 11288 5452 11289 5385 11289 5394 11289 5394 11290 5385 11290 5453 11290 5394 11291 5453 11291 5742 11291 5742 11292 5453 11292 5454 11292 5454 11293 5453 11293 5388 11293 5742 11294 5392 11294 5394 11294 5397 11295 5555 11295 5396 11295 5397 11296 5552 11296 5555 11296 5456 11297 5552 11297 5397 11297 5398 11298 5455 11298 5456 11298 5456 11299 5455 11299 5407 11299 5456 11300 5407 11300 5552 11300 5552 11301 5407 11301 5554 11301 5554 11302 5407 11302 5457 11302 5554 11303 5457 11303 5458 11303 5554 11304 5458 11304 5553 11304 5553 11305 5458 11305 5269 11305 5461 11306 5462 11306 5398 11306 5398 11307 5462 11307 5401 11307 5398 11308 5401 11308 5455 11308 5455 11309 5401 11309 5406 11309 5406 11310 5401 11310 5402 11310 5406 11311 5402 11311 5405 11311 5459 11312 5460 11312 5461 11312 5461 11313 5460 11313 5462 11313 5269 11314 5458 11314 5465 11314 5465 11315 5458 11315 5411 11315 5465 11316 5411 11316 5464 11316 5396 11317 5555 11317 5556 11317 5514 11318 5556 11318 5513 11318 5513 11319 5556 11319 5516 11319 5516 11320 5556 11320 5269 11320 5269 11321 5556 11321 5553 11321 5483 11322 5540 11322 5541 11322 5483 11323 5541 11323 5486 11323 5486 11324 5541 11324 5489 11324 5463 11325 5531 11325 5471 11325 5533 11326 5471 11326 5531 11326 5471 11327 5533 11327 5535 11327 5471 11328 5535 11328 5473 11328 5473 11329 5535 11329 5474 11329 5474 11330 5535 11330 5478 11330 5478 11331 5535 11331 5530 11331 5496 11332 5523 11332 5497 11332 5497 11333 5523 11333 5521 11333 5497 11334 5521 11334 5499 11334 5499 11335 5521 11335 5505 11335 5505 11336 5521 11336 5502 11336 5471 11337 5419 11337 5463 11337 5419 11338 5470 11338 5464 11338 5464 11339 5470 11339 5468 11339 5466 11340 5467 11340 5468 11340 5469 11341 5466 11341 5468 11341 5466 11342 5468 11342 5465 11342 5466 11343 5465 11343 5464 11343 5466 11344 5464 11344 5468 11344 5468 11345 5467 11345 5469 11345 5470 11346 5419 11346 5313 11346 5471 11347 5472 11347 5419 11347 5419 11348 5472 11348 5313 11348 5472 11349 5471 11349 5475 11349 5473 11350 5475 11350 5471 11350 5475 11351 5473 11351 5477 11351 5473 11352 5474 11352 5477 11352 5477 11353 5474 11353 5476 11353 5474 11354 5478 11354 5476 11354 5479 11355 5476 11355 5478 11355 5481 11356 5479 11356 5478 11356 5480 11357 5479 11357 5481 11357 5482 11358 5300 11358 5481 11358 5481 11359 5300 11359 5480 11359 5483 11360 5484 11360 5482 11360 5482 11361 5484 11361 5300 11361 5484 11362 5483 11362 5487 11362 5485 11363 5486 11363 5488 11363 5489 11364 5488 11364 5486 11364 5486 11365 5485 11365 5487 11365 5483 11366 5486 11366 5487 11366 5489 11367 5490 11367 5488 11367 5492 11368 5494 11368 5489 11368 5489 11369 5494 11369 5490 11369 5492 11370 5491 11370 5494 11370 5493 11371 5494 11371 5491 11371 5496 11372 5495 11372 5491 11372 5491 11373 5495 11373 5493 11373 5496 11374 5500 11374 5495 11374 5497 11375 5500 11375 5496 11375 5497 11376 5499 11376 5501 11376 5497 11377 5501 11377 5500 11377 5498 11378 5499 11378 5505 11378 5499 11379 5498 11379 5501 11379 5505 11380 5506 11380 5498 11380 5505 11381 5502 11381 5507 11381 5508 11382 5507 11382 5502 11382 5508 11383 5502 11383 5503 11383 5505 11384 5503 11384 5506 11384 5506 11385 5502 11385 5504 11385 5505 11386 5507 11386 5503 11386 5506 11387 5503 11387 5502 11387 5509 11388 5510 11388 5502 11388 5502 11389 5510 11389 5504 11389 5511 11390 5512 11390 5509 11390 5509 11391 5512 11391 5510 11391 5511 11392 5514 11392 5512 11392 5514 11393 5515 11393 5512 11393 5515 11394 5513 11394 5518 11394 5514 11395 5513 11395 5515 11395 5518 11396 5513 11396 5517 11396 5516 11397 5268 11397 5517 11397 5516 11398 5517 11398 5513 11398 5523 11399 5315 11399 5521 11399 5524 11400 5525 11400 5527 11400 5522 11401 5520 11401 5523 11401 5525 11402 5521 11402 5526 11402 5522 11403 5524 11403 5520 11403 5525 11404 5526 11404 5527 11404 5521 11405 5315 11405 5526 11405 5523 11406 5519 11406 5315 11406 5523 11407 5520 11407 5519 11407 5524 11408 5527 11408 5520 11408 5530 11409 5534 11409 5532 11409 5533 11410 5539 11410 5535 11410 5532 11411 5538 11411 5528 11411 5530 11412 5535 11412 5534 11412 5532 11413 5534 11413 5538 11413 5531 11414 5529 11414 5536 11414 5535 11415 5539 11415 5537 11415 5531 11416 5539 11416 5533 11416 5531 11417 5536 11417 5539 11417 5529 11418 5528 11418 5306 11418 5529 11419 5306 11419 5536 11419 5535 11420 5537 11420 5534 11420 5528 11421 5538 11421 5306 11421 5540 11422 5542 11422 5541 11422 5546 11423 5544 11423 5545 11423 5543 11424 5549 11424 5546 11424 5545 11425 5544 11425 5551 11425 5547 11426 5545 11426 5551 11426 5546 11427 5549 11427 5550 11427 5546 11428 5550 11428 5544 11428 5540 11429 5547 11429 5298 11429 5541 11430 5542 11430 5543 11430 5540 11431 5548 11431 5542 11431 5543 11432 5542 11432 5549 11432 5547 11433 5551 11433 5298 11433 5544 11434 5550 11434 5551 11434 5540 11435 5298 11435 5548 11435 5552 11436 5557 11436 5555 11436 5552 11437 5562 11437 5557 11437 5556 11438 5555 11438 5558 11438 5553 11439 5561 11439 5554 11439 5552 11440 5554 11440 5562 11440 5555 11441 5557 11441 5558 11441 5558 11442 5560 11442 5556 11442 5553 11443 5559 11443 5561 11443 5554 11444 5561 11444 5562 11444 5553 11445 5556 11445 5559 11445 5556 11446 5560 11446 5559 11446 5752 11447 5753 11447 5563 11447 5798 11448 5563 11448 5794 11448 5798 11449 5752 11449 5563 11449 4762 11450 5702 11450 5603 11450 5603 11451 5702 11451 5605 11451 5603 11452 5605 11452 5604 11452 4762 11453 5703 11453 5702 11453 5702 11454 5700 11454 5605 11454 5605 11455 5700 11455 5598 11455 5598 11456 5700 11456 5753 11456 5564 11457 5753 11457 5700 11457 5698 11458 5842 11458 5564 11458 5698 11459 5843 11459 5842 11459 5566 11460 5843 11460 5698 11460 5565 11461 5686 11461 5566 11461 5566 11462 5686 11462 5843 11462 5567 11463 4777 11463 5565 11463 5565 11464 4777 11464 5568 11464 5565 11465 5568 11465 5686 11465 5697 11466 5695 11466 5567 11466 5567 11467 5695 11467 4777 11467 5568 11468 4777 11468 5692 11468 5568 11469 5692 11469 5688 11469 5688 11470 5692 11470 5690 11470 5688 11471 5690 11471 5569 11471 5843 11472 5686 11472 5570 11472 5843 11473 5570 11473 5839 11473 5839 11474 5570 11474 5571 11474 5839 11475 5571 11475 5844 11475 5844 11476 5571 11476 5793 11476 5793 11477 5571 11477 5791 11477 5791 11478 5571 11478 5572 11478 5791 11479 5572 11479 5573 11479 5791 11480 5573 11480 5790 11480 5790 11481 5573 11481 5789 11481 5789 11482 5573 11482 5676 11482 5789 11483 5676 11483 5809 11483 5573 11484 5572 11484 5678 11484 5678 11485 5572 11485 5682 11485 5678 11486 5682 11486 5962 11486 5962 11487 5682 11487 5963 11487 5963 11488 5682 11488 5681 11488 5962 11489 5574 11489 5678 11489 5575 11490 5809 11490 5676 11490 5575 11491 5810 11491 5809 11491 5576 11492 5810 11492 5575 11492 5673 11493 5662 11493 5576 11493 5576 11494 5662 11494 5661 11494 5576 11495 5661 11495 5810 11495 5810 11496 5661 11496 5807 11496 5807 11497 5661 11497 5577 11497 5807 11498 5577 11498 5806 11498 5806 11499 5577 11499 5578 11499 5806 11500 5578 11500 5779 11500 5806 11501 5779 11501 5783 11501 5579 11502 5949 11502 5673 11502 5673 11503 5949 11503 5668 11503 5673 11504 5668 11504 5662 11504 5662 11505 5668 11505 5663 11505 5663 11506 5668 11506 5580 11506 5663 11507 5580 11507 5581 11507 5672 11508 5669 11508 5579 11508 5579 11509 5669 11509 5949 11509 5779 11510 5578 11510 5778 11510 5778 11511 5578 11511 5657 11511 5778 11512 5657 11512 5777 11512 5777 11513 5657 11513 5648 11513 5777 11514 5648 11514 5599 11514 5777 11515 5599 11515 5774 11515 5774 11516 5599 11516 5829 11516 5657 11517 5584 11517 5648 11517 5648 11518 5584 11518 5649 11518 5649 11519 5584 11519 5582 11519 5649 11520 5582 11520 5650 11520 5655 11521 5583 11521 5584 11521 5584 11522 5583 11522 5582 11522 5647 11523 5832 11523 5599 11523 5599 11524 5832 11524 5829 11524 5646 11525 5833 11525 5647 11525 5647 11526 5833 11526 5832 11526 5586 11527 5585 11527 5646 11527 5646 11528 5585 11528 5826 11528 5646 11529 5826 11529 5833 11529 5645 11530 5588 11530 5586 11530 5586 11531 5588 11531 5633 11531 5586 11532 5633 11532 5585 11532 5587 11533 5644 11533 5645 11533 5645 11534 5644 11534 5588 11534 5588 11535 5642 11535 5640 11535 5588 11536 5640 11536 5633 11536 5633 11537 5640 11537 5634 11537 5634 11538 5640 11538 5639 11538 5634 11539 5639 11539 5637 11539 5826 11540 5585 11540 5631 11540 5826 11541 5631 11541 5828 11541 5828 11542 5631 11542 5630 11542 5828 11543 5630 11543 5831 11543 5831 11544 5630 11544 5769 11544 5769 11545 5630 11545 5766 11545 5766 11546 5630 11546 5589 11546 5766 11547 5589 11547 5590 11547 5766 11548 5590 11548 5765 11548 5765 11549 5590 11549 5601 11549 5765 11550 5601 11550 5762 11550 5762 11551 5601 11551 5818 11551 5590 11552 5589 11552 5591 11552 5591 11553 5589 11553 5592 11553 5591 11554 5592 11554 5626 11554 5626 11555 5592 11555 5627 11555 5627 11556 5592 11556 5593 11556 5626 11557 5623 11557 5591 11557 5620 11558 5818 11558 5601 11558 5620 11559 5819 11559 5818 11559 5600 11560 5819 11560 5620 11560 5595 11561 5610 11561 5600 11561 5600 11562 5610 11562 5594 11562 5600 11563 5594 11563 5819 11563 5819 11564 5594 11564 5816 11564 5816 11565 5594 11565 5609 11565 5816 11566 5609 11566 5820 11566 5820 11567 5609 11567 5608 11567 5820 11568 5608 11568 5755 11568 5596 11569 5597 11569 5595 11569 5595 11570 5597 11570 4735 11570 5595 11571 4735 11571 5610 11571 5610 11572 4735 11572 5611 11572 5611 11573 4735 11573 4749 11573 5611 11574 4749 11574 5613 11574 5618 11575 5617 11575 5596 11575 5596 11576 5617 11576 5597 11576 5597 11577 5615 11577 4735 11577 5755 11578 5608 11578 5754 11578 5754 11579 5608 11579 5598 11579 5754 11580 5598 11580 5753 11580 5564 11581 5842 11581 5563 11581 5563 11582 5842 11582 5840 11582 5563 11583 5840 11583 5794 11583 5794 11584 5840 11584 5796 11584 5796 11585 5840 11585 5793 11585 5793 11586 5840 11586 5844 11586 5774 11587 5829 11587 5772 11587 5772 11588 5829 11588 5769 11588 5769 11589 5829 11589 5831 11589 5762 11590 5818 11590 5758 11590 5758 11591 5818 11591 5821 11591 5758 11592 5821 11592 5760 11592 5760 11593 5821 11593 5755 11593 5755 11594 5821 11594 5820 11594 5808 11595 5789 11595 5809 11595 5789 11596 5808 11596 5786 11596 5786 11597 5808 11597 5784 11597 5784 11598 5808 11598 5783 11598 5783 11599 5808 11599 5806 11599 5563 11600 5753 11600 5564 11600 5602 11601 5603 11601 5705 11601 5705 11602 5603 11602 5604 11602 5705 11603 5604 11603 5606 11603 5606 11604 5604 11604 5605 11604 5606 11605 5605 11605 5607 11605 5607 11606 5605 11606 5598 11606 5607 11607 5598 11607 5707 11607 5707 11608 5598 11608 5608 11608 5707 11609 5608 11609 5708 11609 5708 11610 5608 11610 5609 11610 5708 11611 5609 11611 5710 11611 5710 11612 5609 11612 5594 11612 5710 11613 5594 11613 5712 11613 5712 11614 5594 11614 5610 11614 5712 11615 5610 11615 5711 11615 5711 11616 5610 11616 5611 11616 5711 11617 5611 11617 5713 11617 5713 11618 5611 11618 5613 11618 5713 11619 5613 11619 5612 11619 5612 11620 5613 11620 4749 11620 5612 11621 4749 11621 5614 11621 5614 11622 4749 11622 4735 11622 5615 11623 5714 11623 5614 11623 4735 11624 5615 11624 5614 11624 5714 11625 5615 11625 5597 11625 5714 11626 5597 11626 5616 11626 5616 11627 5597 11627 5617 11627 5616 11628 5617 11628 5716 11628 5716 11629 5617 11629 5618 11629 5716 11630 5618 11630 5715 11630 5715 11631 5618 11631 5596 11631 5715 11632 5596 11632 5619 11632 5619 11633 5596 11633 5595 11633 5619 11634 5595 11634 5709 11634 5709 11635 5595 11635 5600 11635 5709 11636 5600 11636 5717 11636 5717 11637 5600 11637 5620 11637 5717 11638 5620 11638 5621 11638 5621 11639 5620 11639 5601 11639 5621 11640 5601 11640 5718 11640 5718 11641 5601 11641 5590 11641 5718 11642 5590 11642 5622 11642 5622 11643 5590 11643 5591 11643 5622 11644 5591 11644 5624 11644 5624 11645 5591 11645 5623 11645 5624 11646 5623 11646 5625 11646 5625 11647 5623 11647 5626 11647 5625 11648 5626 11648 5720 11648 5720 11649 5626 11649 5627 11649 5720 11650 5627 11650 5721 11650 5721 11651 5627 11651 5593 11651 5721 11652 5593 11652 5719 11652 5719 11653 5593 11653 5592 11653 5719 11654 5592 11654 5628 11654 5628 11655 5592 11655 5589 11655 5628 11656 5589 11656 5629 11656 5629 11657 5589 11657 5630 11657 5629 11658 5630 11658 5722 11658 5722 11659 5630 11659 5631 11659 5722 11660 5631 11660 5724 11660 5724 11661 5631 11661 5585 11661 5724 11662 5585 11662 5728 11662 5728 11663 5585 11663 5633 11663 5728 11664 5633 11664 5632 11664 5632 11665 5633 11665 5634 11665 5632 11666 5634 11666 5635 11666 5635 11667 5634 11667 5637 11667 5635 11668 5637 11668 5636 11668 5636 11669 5637 11669 5639 11669 5636 11670 5639 11670 5638 11670 5638 11671 5639 11671 5640 11671 5640 11672 5642 11672 5638 11672 5588 11673 5641 11673 5642 11673 5731 11674 5642 11674 5641 11674 5642 11675 5731 11675 5638 11675 5641 11676 5588 11676 5643 11676 5643 11677 5588 11677 5644 11677 5643 11678 5644 11678 5730 11678 5730 11679 5644 11679 5587 11679 5730 11680 5587 11680 5729 11680 5729 11681 5587 11681 5645 11681 5729 11682 5645 11682 5723 11682 5723 11683 5645 11683 5586 11683 5723 11684 5586 11684 5725 11684 5725 11685 5586 11685 5646 11685 5725 11686 5646 11686 5726 11686 5726 11687 5646 11687 5647 11687 5726 11688 5647 11688 5732 11688 5732 11689 5647 11689 5599 11689 5732 11690 5599 11690 5733 11690 5733 11691 5599 11691 5648 11691 5733 11692 5648 11692 5734 11692 5734 11693 5648 11693 5649 11693 5734 11694 5649 11694 5651 11694 5651 11695 5649 11695 5650 11695 5651 11696 5650 11696 5652 11696 5652 11697 5650 11697 5582 11697 5652 11698 5582 11698 5653 11698 5653 11699 5582 11699 5583 11699 5653 11700 5583 11700 5654 11700 5654 11701 5583 11701 5655 11701 5654 11702 5655 11702 5735 11702 5735 11703 5655 11703 5584 11703 5735 11704 5584 11704 5656 11704 5656 11705 5584 11705 5657 11705 5656 11706 5657 11706 5658 11706 5658 11707 5657 11707 5578 11707 5658 11708 5578 11708 5659 11708 5659 11709 5578 11709 5577 11709 5659 11710 5577 11710 5660 11710 5660 11711 5577 11711 5661 11711 5660 11712 5661 11712 5736 11712 5736 11713 5661 11713 5662 11713 5736 11714 5662 11714 5738 11714 5738 11715 5662 11715 5663 11715 5738 11716 5663 11716 5664 11716 5664 11717 5663 11717 5581 11717 5664 11718 5581 11718 5665 11718 5665 11719 5581 11719 5580 11719 5665 11720 5580 11720 5666 11720 5666 11721 5580 11721 5668 11721 5666 11722 5668 11722 5667 11722 5668 11723 5949 11723 5667 11723 5667 11724 5949 11724 5377 11724 5377 11725 5949 11725 5669 11725 5377 11726 5669 11726 5670 11726 5670 11727 5669 11727 5672 11727 5670 11728 5672 11728 5671 11728 5671 11729 5672 11729 5579 11729 5671 11730 5579 11730 5737 11730 5737 11731 5579 11731 5673 11731 5737 11732 5673 11732 5674 11732 5674 11733 5673 11733 5576 11733 5674 11734 5576 11734 5675 11734 5675 11735 5576 11735 5575 11735 5675 11736 5575 11736 5739 11736 5739 11737 5575 11737 5676 11737 5739 11738 5676 11738 5740 11738 5740 11739 5676 11739 5573 11739 5740 11740 5573 11740 5677 11740 5677 11741 5573 11741 5678 11741 5677 11742 5678 11742 5679 11742 5679 11743 5678 11743 5574 11743 5679 11744 5574 11744 5454 11744 5454 11745 5574 11745 5962 11745 5454 11746 5962 11746 5742 11746 5742 11747 5962 11747 5963 11747 5742 11748 5963 11748 5680 11748 5680 11749 5963 11749 5681 11749 5680 11750 5681 11750 5743 11750 5743 11751 5681 11751 5682 11751 5743 11752 5682 11752 5683 11752 5683 11753 5682 11753 5572 11753 5683 11754 5572 11754 5749 11754 5749 11755 5572 11755 5571 11755 5749 11756 5571 11756 5744 11756 5744 11757 5571 11757 5570 11757 5744 11758 5570 11758 5684 11758 5684 11759 5570 11759 5686 11759 5684 11760 5686 11760 5685 11760 5685 11761 5686 11761 5568 11761 5685 11762 5568 11762 5687 11762 5687 11763 5568 11763 5688 11763 5687 11764 5688 11764 5689 11764 5689 11765 5688 11765 5569 11765 5689 11766 5569 11766 5460 11766 5460 11767 5569 11767 5690 11767 5460 11768 5690 11768 5462 11768 5462 11769 5690 11769 5692 11769 5691 11770 5692 11770 4777 11770 5692 11771 5691 11771 5462 11771 5691 11772 4777 11772 5693 11772 5693 11773 4777 11773 5695 11773 5693 11774 5695 11774 5694 11774 5694 11775 5695 11775 5697 11775 5694 11776 5697 11776 5696 11776 5696 11777 5697 11777 5567 11777 5696 11778 5567 11778 5745 11778 5745 11779 5567 11779 5565 11779 5745 11780 5565 11780 5746 11780 5746 11781 5565 11781 5566 11781 5746 11782 5566 11782 5747 11782 5747 11783 5566 11783 5698 11783 5747 11784 5698 11784 5699 11784 5699 11785 5698 11785 5564 11785 5699 11786 5564 11786 5748 11786 5748 11787 5564 11787 5700 11787 5748 11788 5700 11788 5706 11788 5706 11789 5700 11789 5702 11789 5706 11790 5702 11790 5701 11790 5701 11791 5702 11791 5703 11791 5701 11792 5703 11792 5704 11792 5704 11793 5703 11793 4762 11793 5704 11794 4762 11794 5602 11794 5602 11795 4762 11795 5603 11795 5701 11796 5704 11796 5706 11796 5706 11797 5704 11797 5602 11797 5706 11798 5602 11798 5606 11798 5606 11799 5602 11799 5705 11799 5606 11800 5607 11800 5706 11800 5706 11801 5607 11801 5748 11801 5748 11802 5607 11802 5751 11802 5707 11803 5751 11803 5607 11803 5708 11804 5813 11804 5707 11804 5710 11805 5811 11805 5708 11805 5708 11806 5811 11806 5813 11806 5712 11807 5709 11807 5710 11807 5710 11808 5709 11808 5811 11808 5711 11809 5614 11809 5712 11809 5712 11810 5614 11810 5619 11810 5712 11811 5619 11811 5709 11811 5713 11812 5612 11812 5711 11812 5711 11813 5612 11813 5614 11813 5614 11814 5714 11814 5619 11814 5619 11815 5714 11815 5715 11815 5715 11816 5714 11816 5616 11816 5715 11817 5616 11817 5716 11817 5811 11818 5709 11818 5717 11818 5811 11819 5717 11819 5814 11819 5814 11820 5717 11820 5621 11820 5814 11821 5621 11821 5815 11821 5815 11822 5621 11822 5763 11822 5763 11823 5621 11823 5764 11823 5764 11824 5621 11824 5718 11824 5764 11825 5718 11825 5628 11825 5764 11826 5628 11826 5767 11826 5767 11827 5628 11827 5768 11827 5768 11828 5628 11828 5629 11828 5768 11829 5629 11829 5770 11829 5770 11830 5629 11830 5822 11830 5770 11831 5822 11831 5827 11831 5628 11832 5718 11832 5719 11832 5719 11833 5718 11833 5622 11833 5719 11834 5622 11834 5720 11834 5720 11835 5622 11835 5625 11835 5625 11836 5622 11836 5624 11836 5720 11837 5721 11837 5719 11837 5722 11838 5822 11838 5629 11838 5722 11839 5823 11839 5822 11839 5724 11840 5823 11840 5722 11840 5728 11841 5723 11841 5724 11841 5724 11842 5723 11842 5725 11842 5724 11843 5725 11843 5823 11843 5823 11844 5725 11844 5825 11844 5825 11845 5725 11845 5726 11845 5825 11846 5726 11846 5732 11846 5825 11847 5732 11847 5830 11847 5830 11848 5732 11848 5727 11848 5830 11849 5727 11849 5824 11849 5824 11850 5727 11850 5750 11850 5632 11851 5638 11851 5728 11851 5728 11852 5638 11852 5641 11852 5728 11853 5641 11853 5723 11853 5723 11854 5641 11854 5729 11854 5729 11855 5641 11855 5643 11855 5729 11856 5643 11856 5730 11856 5635 11857 5636 11857 5632 11857 5632 11858 5636 11858 5638 11858 5638 11859 5731 11859 5641 11859 5727 11860 5732 11860 5775 11860 5775 11861 5732 11861 5733 11861 5775 11862 5733 11862 5776 11862 5776 11863 5733 11863 5656 11863 5776 11864 5656 11864 5658 11864 5776 11865 5658 11865 5780 11865 5780 11866 5658 11866 5800 11866 5733 11867 5734 11867 5656 11867 5656 11868 5734 11868 5735 11868 5735 11869 5734 11869 5652 11869 5735 11870 5652 11870 5653 11870 5734 11871 5651 11871 5652 11871 5653 11872 5654 11872 5735 11872 5659 11873 5799 11873 5658 11873 5659 11874 5804 11874 5799 11874 5660 11875 5804 11875 5659 11875 5736 11876 5674 11876 5660 11876 5660 11877 5674 11877 5805 11877 5738 11878 5666 11878 5736 11878 5736 11879 5666 11879 5737 11879 5736 11880 5737 11880 5674 11880 5664 11881 5665 11881 5738 11881 5738 11882 5665 11882 5666 11882 5737 11883 5666 11883 5667 11883 5737 11884 5667 11884 5671 11884 5671 11885 5667 11885 5377 11885 5671 11886 5377 11886 5670 11886 5805 11887 5674 11887 5675 11887 5805 11888 5675 11888 5801 11888 5801 11889 5675 11889 5739 11889 5801 11890 5739 11890 5787 11890 5801 11891 5787 11891 5802 11891 5787 11892 5739 11892 5788 11892 5788 11893 5739 11893 5740 11893 5788 11894 5740 11894 5683 11894 5788 11895 5683 11895 5741 11895 5741 11896 5683 11896 5749 11896 5741 11897 5749 11897 5792 11897 5792 11898 5749 11898 5841 11898 5683 11899 5740 11899 5743 11899 5743 11900 5740 11900 5677 11900 5743 11901 5677 11901 5742 11901 5742 11902 5677 11902 5454 11902 5454 11903 5677 11903 5679 11903 5742 11904 5680 11904 5743 11904 5744 11905 5837 11905 5749 11905 5749 11906 5837 11906 5841 11906 5744 11907 5835 11907 5837 11907 5684 11908 5835 11908 5744 11908 5685 11909 5745 11909 5684 11909 5684 11910 5745 11910 5746 11910 5684 11911 5746 11911 5835 11911 5835 11912 5746 11912 5747 11912 5835 11913 5747 11913 5834 11913 5834 11914 5747 11914 5699 11914 5834 11915 5699 11915 5752 11915 5687 11916 5462 11916 5685 11916 5685 11917 5462 11917 5691 11917 5685 11918 5691 11918 5745 11918 5745 11919 5691 11919 5696 11919 5696 11920 5691 11920 5693 11920 5696 11921 5693 11921 5694 11921 5689 11922 5460 11922 5687 11922 5687 11923 5460 11923 5462 11923 5752 11924 5699 11924 5748 11924 5752 11925 5748 11925 5751 11925 5792 11926 5841 11926 5836 11926 5792 11927 5836 11927 5795 11927 5795 11928 5836 11928 5797 11928 5797 11929 5836 11929 5798 11929 5798 11930 5836 11930 5752 11930 5752 11931 5836 11931 5834 11931 5770 11932 5827 11932 5771 11932 5771 11933 5827 11933 5773 11933 5773 11934 5827 11934 5750 11934 5750 11935 5827 11935 5824 11935 5707 11936 5813 11936 5757 11936 5812 11937 5757 11937 5813 11937 5757 11938 5812 11938 5756 11938 5756 11939 5812 11939 5759 11939 5759 11940 5812 11940 5761 11940 5761 11941 5812 11941 5815 11941 5761 11942 5815 11942 5763 11942 5805 11943 5804 11943 5660 11943 5799 11944 5800 11944 5658 11944 5780 11945 5800 11945 5781 11945 5781 11946 5800 11946 5802 11946 5781 11947 5802 11947 5782 11947 5782 11948 5802 11948 5785 11948 5785 11949 5802 11949 5787 11949 5757 11950 5751 11950 5707 11950 5753 11951 5752 11951 5751 11951 5751 11952 5754 11952 5753 11952 5757 11953 5755 11953 5751 11953 5751 11954 5755 11954 5754 11954 5757 11955 5756 11955 5755 11955 5755 11956 5756 11956 5760 11956 5759 11957 5761 11957 5758 11957 5756 11958 5759 11958 5760 11958 5760 11959 5759 11959 5758 11959 5761 11960 5763 11960 5758 11960 5758 11961 5763 11961 5762 11961 5764 11962 5765 11962 5763 11962 5763 11963 5765 11963 5762 11963 5765 11964 5764 11964 5766 11964 5767 11965 5766 11965 5764 11965 5766 11966 5767 11966 5768 11966 5770 11967 5769 11967 5768 11967 5768 11968 5769 11968 5766 11968 5769 11969 5770 11969 5771 11969 5769 11970 5771 11970 5772 11970 5771 11971 5773 11971 5772 11971 5750 11972 5774 11972 5772 11972 5772 11973 5773 11973 5750 11973 5774 11974 5750 11974 5727 11974 5775 11975 5777 11975 5727 11975 5727 11976 5777 11976 5774 11976 5775 11977 5776 11977 5777 11977 5776 11978 5778 11978 5777 11978 5780 11979 5779 11979 5776 11979 5776 11980 5779 11980 5778 11980 5780 11981 5783 11981 5779 11981 5780 11982 5781 11982 5783 11982 5781 11983 5782 11983 5784 11983 5781 11984 5784 11984 5783 11984 5785 11985 5786 11985 5782 11985 5784 11986 5782 11986 5786 11986 5785 11987 5787 11987 5789 11987 5785 11988 5789 11988 5786 11988 5788 11989 5789 11989 5787 11989 5790 11990 5789 11990 5788 11990 5741 11991 5791 11991 5788 11991 5788 11992 5791 11992 5790 11992 5792 11993 5793 11993 5741 11993 5741 11994 5793 11994 5791 11994 5792 11995 5795 11995 5793 11995 5795 11996 5797 11996 5793 11996 5796 11997 5793 11997 5797 11997 5796 11998 5797 11998 5798 11998 5796 11999 5798 11999 5794 11999 5809 12000 5801 12000 5808 12000 5802 12001 5800 12001 5808 12001 5799 12002 5804 12002 5803 12002 5804 12003 5805 12003 5807 12003 5801 12004 5809 12004 5805 12004 5799 12005 5806 12005 5800 12005 5799 12006 5803 12006 5806 12006 5800 12007 5806 12007 5808 12007 5801 12008 5802 12008 5808 12008 5805 12009 5810 12009 5807 12009 5805 12010 5809 12010 5810 12010 5803 12011 5804 12011 5806 12011 5804 12012 5807 12012 5806 12012 5813 12013 5817 12013 5812 12013 5812 12014 5821 12014 5815 12014 5812 12015 5817 12015 5821 12015 5813 12016 5811 12016 5816 12016 5813 12017 5816 12017 5820 12017 5814 12018 5815 12018 5818 12018 5811 12019 5819 12019 5816 12019 5811 12020 5814 12020 5819 12020 5813 12021 5820 12021 5817 12021 5817 12022 5820 12022 5821 12022 5815 12023 5821 12023 5818 12023 5814 12024 5818 12024 5819 12024 5823 12025 5828 12025 5822 12025 5823 12026 5825 12026 5833 12026 5824 12027 5829 12027 5830 12027 5823 12028 5826 12028 5828 12028 5822 12029 5831 12029 5827 12029 5827 12030 5829 12030 5824 12030 5822 12031 5828 12031 5831 12031 5823 12032 5833 12032 5826 12032 5827 12033 5831 12033 5829 12033 5825 12034 5832 12034 5833 12034 5825 12035 5830 12035 5832 12035 5830 12036 5829 12036 5832 12036 5834 12037 5842 12037 5835 12037 5834 12038 5836 12038 5838 12038 5835 12039 5842 12039 5843 12039 5834 12040 5838 12040 5842 12040 5836 12041 5840 12041 5838 12041 5837 12042 5835 12042 5839 12042 5837 12043 5839 12043 5841 12043 5835 12044 5843 12044 5839 12044 5841 12045 5840 12045 5836 12045 5838 12046 5840 12046 5842 12046 5841 12047 5839 12047 5844 12047 5841 12048 5844 12048 5840 12048 6032 12049 6033 12049 5845 12049 5845 12050 6033 12050 5846 12050 5845 12051 5846 12051 6083 12051 4163 12052 5848 12052 5847 12052 5847 12053 5848 12053 5849 12053 5847 12054 5849 12054 5896 12054 4163 12055 5850 12055 5848 12055 5848 12056 5983 12056 5849 12056 5849 12057 5983 12057 5889 12057 5889 12058 5983 12058 6033 12058 5889 12059 6033 12059 6038 12059 5890 12060 6033 12060 5983 12060 5982 12061 6127 12061 5890 12061 5851 12062 6127 12062 5982 12062 5979 12063 5968 12063 5851 12063 5851 12064 5968 12064 6129 12064 5978 12065 4045 12065 5979 12065 5979 12066 4045 12066 5853 12066 5979 12067 5853 12067 5968 12067 5852 12068 4173 12068 5978 12068 5978 12069 4173 12069 4045 12069 5853 12070 4045 12070 6191 12070 5853 12071 6191 12071 5972 12071 5972 12072 6191 12072 5974 12072 5972 12073 5974 12073 5973 12073 6129 12074 5968 12074 5967 12074 6129 12075 5967 12075 6128 12075 6128 12076 5967 12076 5854 12076 6128 12077 5854 12077 6119 12077 6119 12078 5854 12078 6079 12078 6079 12079 5854 12079 6077 12079 6077 12080 5854 12080 5855 12080 6077 12081 5855 12081 5856 12081 6077 12082 5856 12082 6074 12082 6074 12083 5856 12083 6075 12083 6075 12084 5856 12084 5894 12084 6075 12085 5894 12085 6071 12085 6071 12086 5894 12086 6094 12086 6071 12087 6094 12087 6095 12087 5856 12088 5855 12088 5858 12088 5858 12089 5855 12089 5857 12089 5858 12090 5857 12090 5961 12090 5961 12091 5857 12091 6200 12091 6200 12092 5857 12092 5964 12092 5961 12093 5960 12093 5858 12093 5859 12094 6094 12094 5894 12094 5859 12095 6092 12095 6094 12095 5957 12096 6092 12096 5859 12096 5956 12097 5860 12097 5957 12097 5957 12098 5860 12098 5861 12098 5957 12099 5861 12099 6092 12099 6092 12100 5861 12100 5862 12100 6092 12101 5862 12101 6096 12101 6096 12102 5862 12102 5866 12102 6096 12103 5866 12103 6084 12103 6084 12104 5866 12104 6066 12104 6084 12105 6066 12105 6067 12105 5863 12106 5952 12106 5956 12106 5956 12107 5952 12107 5951 12107 5956 12108 5951 12108 5860 12108 5860 12109 5951 12109 5945 12109 5945 12110 5951 12110 5864 12110 5945 12111 5864 12111 5947 12111 5865 12112 6209 12112 5863 12112 5863 12113 6209 12113 5952 12113 6066 12114 5866 12114 6064 12114 6064 12115 5866 12115 5867 12115 6064 12116 5867 12116 6063 12116 6063 12117 5867 12117 5868 12117 6063 12118 5868 12118 5935 12118 6063 12119 5935 12119 6059 12119 6059 12120 5935 12120 6118 12120 5867 12121 5870 12121 5868 12121 5868 12122 5870 12122 5936 12122 5936 12123 5870 12123 5938 12123 5936 12124 5938 12124 5869 12124 5943 12125 5940 12125 5870 12125 5870 12126 5940 12126 5938 12126 5933 12127 6115 12127 5935 12127 5935 12128 6115 12128 6118 12128 5933 12129 6111 12129 6115 12129 5871 12130 6111 12130 5933 12130 5872 12131 5921 12131 5871 12131 5871 12132 5921 12132 6111 12132 5931 12133 5929 12133 5872 12133 5872 12134 5929 12134 5873 12134 5872 12135 5873 12135 5921 12135 5874 12136 5875 12136 5931 12136 5931 12137 5875 12137 5929 12137 5929 12138 5927 12138 5877 12138 5929 12139 5877 12139 5873 12139 5873 12140 5877 12140 5876 12140 5876 12141 5877 12141 5923 12141 6111 12142 5921 12142 5878 12142 6111 12143 5878 12143 6117 12143 6117 12144 5878 12144 5919 12144 6117 12145 5919 12145 6055 12145 6117 12146 6055 12146 6116 12146 6055 12147 5919 12147 5879 12147 5879 12148 5919 12148 5918 12148 5879 12149 5918 12149 5880 12149 5879 12150 5880 12150 6048 12150 6048 12151 5880 12151 6049 12151 6049 12152 5880 12152 5881 12152 6049 12153 5881 12153 6108 12153 5880 12154 5918 12154 5912 12154 5912 12155 5918 12155 5882 12155 5912 12156 5882 12156 5883 12156 5883 12157 5882 12157 5884 12157 5884 12158 5882 12158 5915 12158 5883 12159 5913 12159 5912 12159 5885 12160 6106 12160 5881 12160 5881 12161 6106 12161 6108 12161 5892 12162 6099 12162 5885 12162 5885 12163 6099 12163 6106 12163 5911 12164 5888 12164 5892 12164 5892 12165 5888 12165 5898 12165 5892 12166 5898 12166 6099 12166 6099 12167 5898 12167 6105 12167 6105 12168 5898 12168 5886 12168 6105 12169 5886 12169 5887 12169 6105 12170 5887 12170 6103 12170 6103 12171 5887 12171 6039 12171 5909 12172 5905 12172 5911 12172 5911 12173 5905 12173 4003 12173 5911 12174 4003 12174 5888 12174 5888 12175 4003 12175 5901 12175 5901 12176 4003 12176 4017 12176 5901 12177 4017 12177 5902 12177 5908 12178 5907 12178 5909 12178 5909 12179 5907 12179 5905 12179 4003 12180 5905 12180 5904 12180 6039 12181 5887 12181 6037 12181 6037 12182 5887 12182 5889 12182 6037 12183 5889 12183 6038 12183 5890 12184 6127 12184 6130 12184 5890 12185 6130 12185 5846 12185 5846 12186 6130 12186 6083 12186 6083 12187 6130 12187 6119 12187 6083 12188 6119 12188 6080 12188 6080 12189 6119 12189 6079 12189 6129 12190 6127 12190 5851 12190 6059 12191 6118 12191 5891 12191 5891 12192 6118 12192 6116 12192 5891 12193 6116 12193 6053 12193 6053 12194 6116 12194 6055 12194 6049 12195 6108 12195 6047 12195 6047 12196 6108 12196 6107 12196 6047 12197 6107 12197 6044 12197 6044 12198 6107 12198 6042 12198 6042 12199 6107 12199 6103 12199 6071 12200 6095 12200 5893 12200 5893 12201 6095 12201 6070 12201 6070 12202 6095 12202 6067 12202 6067 12203 6095 12203 6084 12203 5846 12204 6033 12204 5890 12204 5986 12205 5847 12205 5895 12205 5895 12206 5847 12206 5896 12206 5895 12207 5896 12207 5987 12207 5987 12208 5896 12208 5849 12208 5987 12209 5849 12209 5990 12209 5990 12210 5849 12210 5889 12210 5990 12211 5889 12211 5897 12211 5897 12212 5889 12212 5887 12212 5897 12213 5887 12213 5991 12213 5991 12214 5887 12214 5886 12214 5991 12215 5886 12215 6029 12215 6029 12216 5886 12216 5898 12216 6029 12217 5898 12217 5899 12217 5899 12218 5898 12218 5888 12218 5899 12219 5888 12219 5992 12219 5992 12220 5888 12220 5901 12220 5992 12221 5901 12221 5900 12221 5900 12222 5901 12222 5902 12222 5900 12223 5902 12223 4886 12223 4886 12224 5902 12224 4017 12224 4886 12225 4017 12225 4817 12225 4817 12226 4017 12226 4003 12226 5905 12227 5993 12227 5904 12227 4003 12228 5993 12228 4817 12228 5904 12229 5993 12229 4003 12229 5993 12230 5905 12230 5903 12230 5903 12231 5905 12231 5906 12231 5906 12232 5905 12232 5907 12232 5906 12233 5907 12233 5996 12233 5996 12234 5907 12234 5908 12234 5996 12235 5908 12235 5995 12235 5995 12236 5908 12236 5909 12236 5995 12237 5909 12237 5994 12237 5994 12238 5909 12238 5911 12238 5994 12239 5911 12239 5910 12239 5910 12240 5911 12240 5892 12240 5910 12241 5892 12241 5997 12241 5997 12242 5892 12242 5885 12242 5997 12243 5885 12243 5998 12243 5998 12244 5885 12244 5881 12244 5998 12245 5881 12245 5999 12245 5999 12246 5881 12246 5880 12246 5999 12247 5880 12247 6001 12247 6001 12248 5880 12248 5912 12248 6001 12249 5912 12249 5914 12249 5914 12250 5912 12250 5913 12250 5914 12251 5913 12251 6003 12251 6003 12252 5913 12252 5883 12252 6003 12253 5883 12253 6002 12253 6002 12254 5883 12254 5884 12254 6002 12255 5884 12255 5916 12255 5916 12256 5884 12256 5915 12256 5916 12257 5915 12257 5917 12257 5917 12258 5915 12258 5882 12258 5917 12259 5882 12259 6000 12259 6000 12260 5882 12260 5918 12260 6000 12261 5918 12261 6004 12261 6004 12262 5918 12262 5919 12262 6004 12263 5919 12263 6005 12263 6005 12264 5919 12264 5878 12264 6005 12265 5878 12265 5920 12265 5920 12266 5878 12266 5921 12266 5920 12267 5921 12267 6008 12267 6008 12268 5921 12268 5873 12268 6008 12269 5873 12269 5922 12269 5922 12270 5873 12270 5876 12270 5922 12271 5876 12271 5924 12271 5924 12272 5876 12272 5923 12272 5924 12273 5923 12273 5925 12273 5925 12274 5923 12274 5877 12274 5925 12275 5877 12275 5926 12275 5877 12276 5927 12276 5926 12276 5927 12277 5929 12277 5928 12277 5927 12278 6011 12278 5926 12278 5928 12279 6011 12279 5927 12279 5928 12280 5929 12280 5930 12280 5930 12281 5929 12281 5875 12281 5930 12282 5875 12282 6010 12282 6010 12283 5875 12283 5874 12283 6010 12284 5874 12284 6009 12284 6009 12285 5874 12285 5931 12285 6009 12286 5931 12286 5932 12286 5932 12287 5931 12287 5872 12287 5932 12288 5872 12288 6006 12288 6006 12289 5872 12289 5871 12289 6006 12290 5871 12290 5934 12290 5934 12291 5871 12291 5933 12291 5934 12292 5933 12292 6007 12292 6007 12293 5933 12293 5935 12293 6007 12294 5935 12294 6012 12294 6012 12295 5935 12295 5868 12295 6012 12296 5868 12296 6015 12296 6015 12297 5868 12297 5936 12297 6015 12298 5936 12298 5937 12298 5937 12299 5936 12299 5869 12299 5937 12300 5869 12300 5939 12300 5939 12301 5869 12301 5938 12301 5939 12302 5938 12302 5941 12302 5941 12303 5938 12303 5940 12303 5941 12304 5940 12304 5942 12304 5942 12305 5940 12305 5943 12305 5942 12306 5943 12306 5944 12306 5944 12307 5943 12307 5870 12307 5944 12308 5870 12308 6014 12308 6014 12309 5870 12309 5867 12309 6014 12310 5867 12310 6013 12310 6013 12311 5867 12311 5866 12311 6013 12312 5866 12312 6016 12312 6016 12313 5866 12313 5862 12313 6016 12314 5862 12314 6030 12314 6030 12315 5862 12315 5861 12315 6030 12316 5861 12316 6017 12316 6017 12317 5861 12317 5860 12317 6017 12318 5860 12318 6018 12318 6018 12319 5860 12319 5945 12319 6018 12320 5945 12320 5946 12320 5946 12321 5945 12321 5947 12321 5946 12322 5947 12322 5948 12322 5948 12323 5947 12323 5864 12323 5948 12324 5864 12324 5950 12324 5950 12325 5864 12325 5951 12325 5949 12326 5950 12326 5952 12326 5951 12327 5952 12327 5950 12327 5949 12328 5952 12328 5669 12328 5669 12329 5952 12329 6209 12329 5669 12330 6209 12330 5953 12330 5953 12331 6209 12331 5865 12331 5953 12332 5865 12332 5954 12332 5954 12333 5865 12333 5863 12333 5954 12334 5863 12334 5955 12334 5955 12335 5863 12335 5956 12335 5955 12336 5956 12336 6019 12336 6019 12337 5956 12337 5957 12337 6019 12338 5957 12338 5958 12338 5958 12339 5957 12339 5859 12339 5958 12340 5859 12340 6020 12340 6020 12341 5859 12341 5894 12341 6020 12342 5894 12342 5959 12342 5959 12343 5894 12343 5856 12343 5959 12344 5856 12344 6022 12344 6022 12345 5856 12345 5858 12345 6022 12346 5858 12346 6023 12346 6023 12347 5858 12347 5960 12347 6023 12348 5960 12348 5962 12348 5962 12349 5960 12349 5961 12349 5962 12350 5961 12350 5963 12350 5963 12351 5961 12351 6200 12351 5963 12352 6200 12352 5965 12352 5965 12353 6200 12353 5964 12353 5965 12354 5964 12354 6024 12354 6024 12355 5964 12355 5857 12355 6024 12356 5857 12356 6021 12356 6021 12357 5857 12357 5855 12357 6021 12358 5855 12358 5966 12358 5966 12359 5855 12359 5854 12359 5966 12360 5854 12360 6025 12360 6025 12361 5854 12361 5967 12361 6025 12362 5967 12362 6026 12362 6026 12363 5967 12363 5968 12363 6026 12364 5968 12364 5969 12364 5969 12365 5968 12365 5853 12365 5969 12366 5853 12366 5970 12366 5970 12367 5853 12367 5972 12367 5970 12368 5972 12368 5971 12368 5971 12369 5972 12369 5973 12369 5971 12370 5973 12370 5690 12370 5690 12371 5973 12371 5974 12371 5690 12372 5974 12372 5692 12372 5692 12373 5974 12373 6191 12373 4778 12374 5975 12374 4045 12374 6191 12375 5975 12375 5692 12375 6191 12376 4045 12376 5975 12376 4778 12377 4045 12377 4787 12377 4787 12378 4045 12378 4173 12378 4787 12379 4173 12379 5976 12379 5976 12380 4173 12380 5852 12380 5976 12381 5852 12381 5977 12381 5977 12382 5852 12382 5978 12382 5977 12383 5978 12383 5980 12383 5980 12384 5978 12384 5979 12384 5980 12385 5979 12385 5981 12385 5981 12386 5979 12386 5851 12386 5981 12387 5851 12387 6027 12387 6027 12388 5851 12388 5982 12388 6027 12389 5982 12389 6028 12389 6028 12390 5982 12390 5890 12390 6028 12391 5890 12391 5989 12391 5989 12392 5890 12392 5983 12392 5989 12393 5983 12393 5988 12393 5988 12394 5983 12394 5848 12394 5988 12395 5848 12395 5984 12395 5984 12396 5848 12396 5850 12396 5984 12397 5850 12397 5985 12397 5985 12398 5850 12398 4163 12398 5985 12399 4163 12399 5986 12399 5986 12400 4163 12400 5847 12400 5984 12401 5985 12401 5988 12401 5988 12402 5985 12402 5986 12402 5988 12403 5986 12403 5987 12403 5987 12404 5986 12404 5895 12404 5987 12405 5990 12405 5988 12405 5988 12406 5990 12406 5989 12406 5989 12407 5990 12407 6040 12407 5989 12408 6040 12408 6031 12408 5897 12409 6040 12409 5990 12409 5991 12410 6097 12410 5897 12410 5991 12411 6102 12411 6097 12411 6029 12412 6102 12412 5991 12412 5899 12413 5910 12413 6029 12413 6029 12414 5910 12414 6102 12414 5992 12415 4817 12415 5899 12415 5899 12416 4817 12416 5994 12416 5899 12417 5994 12417 5910 12417 5900 12418 4886 12418 5992 12418 5992 12419 4886 12419 4817 12419 4817 12420 5993 12420 5903 12420 4817 12421 5903 12421 5994 12421 5994 12422 5903 12422 5995 12422 5995 12423 5903 12423 5906 12423 5995 12424 5906 12424 5996 12424 6102 12425 5910 12425 5997 12425 6102 12426 5997 12426 6100 12426 6100 12427 5997 12427 6101 12427 6101 12428 5997 12428 5998 12428 6101 12429 5998 12429 6046 12429 6046 12430 5998 12430 6050 12430 6050 12431 5998 12431 5999 12431 6050 12432 5999 12432 6000 12432 6050 12433 6000 12433 6051 12433 6051 12434 6000 12434 6052 12434 6052 12435 6000 12435 6004 12435 6052 12436 6004 12436 6054 12436 6054 12437 6004 12437 6114 12437 6000 12438 5999 12438 5917 12438 5917 12439 5999 12439 6001 12439 5917 12440 6001 12440 6002 12440 6002 12441 6001 12441 6003 12441 6003 12442 6001 12442 5914 12442 6002 12443 5916 12443 5917 12443 6005 12444 6113 12444 6004 12444 6004 12445 6113 12445 6114 12445 6005 12446 6112 12446 6113 12446 5920 12447 6112 12447 6005 12447 6008 12448 5932 12448 5920 12448 5920 12449 5932 12449 6006 12449 5920 12450 6006 12450 6112 12450 6112 12451 6006 12451 5934 12451 6112 12452 5934 12452 6109 12452 6109 12453 5934 12453 6007 12453 6109 12454 6007 12454 6060 12454 6109 12455 6060 12455 6110 12455 6110 12456 6060 12456 6058 12456 5922 12457 5926 12457 6008 12457 6008 12458 5926 12458 5928 12458 6008 12459 5928 12459 5932 12459 5932 12460 5928 12460 6009 12460 6009 12461 5928 12461 5930 12461 6009 12462 5930 12462 6010 12462 5924 12463 5925 12463 5922 12463 5922 12464 5925 12464 5926 12464 5926 12465 6011 12465 5928 12465 6060 12466 6007 12466 6062 12466 6062 12467 6007 12467 6012 12467 6062 12468 6012 12468 6061 12468 6061 12469 6012 12469 6014 12469 6061 12470 6014 12470 6013 12470 6061 12471 6013 12471 6065 12471 6065 12472 6013 12472 6090 12472 6012 12473 6015 12473 6014 12473 6014 12474 6015 12474 5944 12474 5944 12475 6015 12475 5939 12475 5944 12476 5939 12476 5941 12476 6015 12477 5937 12477 5939 12477 5941 12478 5942 12478 5944 12478 6016 12479 6093 12479 6013 12479 6016 12480 6089 12480 6093 12480 6030 12481 6086 12481 6016 12481 6016 12482 6086 12482 6089 12482 6017 12483 6019 12483 6030 12483 6030 12484 6019 12484 6086 12484 6018 12485 5950 12485 6017 12485 6017 12486 5950 12486 5955 12486 6017 12487 5955 12487 6019 12487 5946 12488 5948 12488 6018 12488 6018 12489 5948 12489 5950 12489 5955 12490 5950 12490 5949 12490 5955 12491 5949 12491 5954 12491 5954 12492 5949 12492 5669 12492 5954 12493 5669 12493 5953 12493 6086 12494 6019 12494 5958 12494 6086 12495 5958 12495 6087 12495 6087 12496 5958 12496 6020 12496 6087 12497 6020 12497 6088 12497 6088 12498 6020 12498 6072 12498 6072 12499 6020 12499 6073 12499 6073 12500 6020 12500 5959 12500 6073 12501 5959 12501 6021 12501 6073 12502 6021 12502 6076 12502 6076 12503 6021 12503 5966 12503 6076 12504 5966 12504 6078 12504 6078 12505 5966 12505 6121 12505 6021 12506 5959 12506 6024 12506 6024 12507 5959 12507 6022 12507 6024 12508 6022 12508 5963 12508 5963 12509 6022 12509 5962 12509 5962 12510 6022 12510 6023 12510 5963 12511 5965 12511 6024 12511 6025 12512 6121 12512 5966 12512 6025 12513 6120 12513 6121 12513 6026 12514 6120 12514 6025 12514 5969 12515 5980 12515 6026 12515 6026 12516 5980 12516 5981 12516 6026 12517 5981 12517 6120 12517 6120 12518 5981 12518 6124 12518 6124 12519 5981 12519 6027 12519 6124 12520 6027 12520 6123 12520 6123 12521 6027 12521 6028 12521 6123 12522 6028 12522 6122 12522 6122 12523 6028 12523 5845 12523 5970 12524 5692 12524 5969 12524 5969 12525 5692 12525 4778 12525 5969 12526 4778 12526 5980 12526 5980 12527 4778 12527 5977 12527 5977 12528 4778 12528 4787 12528 5977 12529 4787 12529 5976 12529 5971 12530 5690 12530 5970 12530 5970 12531 5690 12531 5692 12531 5692 12532 5975 12532 4778 12532 5845 12533 6028 12533 6032 12533 6032 12534 6028 12534 5989 12534 6032 12535 5989 12535 6031 12535 6078 12536 6121 12536 6082 12536 6082 12537 6121 12537 6081 12537 6081 12538 6121 12538 6122 12538 6081 12539 6122 12539 5845 12539 6054 12540 6114 12540 6057 12540 6057 12541 6114 12541 6110 12541 6057 12542 6110 12542 6056 12542 6056 12543 6110 12543 6058 12543 5897 12544 6097 12544 6098 12544 5897 12545 6098 12545 6040 12545 6098 12546 6041 12546 6040 12546 6041 12547 6098 12547 6043 12547 6043 12548 6098 12548 6104 12548 6043 12549 6104 12549 6045 12549 6045 12550 6104 12550 6046 12550 6046 12551 6104 12551 6101 12551 6013 12552 6093 12552 6090 12552 6065 12553 6090 12553 6069 12553 6069 12554 6090 12554 6085 12554 6069 12555 6085 12555 6068 12555 6068 12556 6085 12556 6072 12556 6072 12557 6085 12557 6088 12557 6040 12558 6038 12558 6031 12558 6031 12559 6038 12559 6033 12559 6034 12560 6035 12560 6033 12560 6036 12561 6034 12561 6033 12561 6034 12562 6033 12562 6032 12562 6034 12563 6032 12563 6031 12563 6034 12564 6031 12564 6033 12564 6033 12565 6035 12565 6036 12565 6040 12566 6037 12566 6038 12566 6040 12567 6039 12567 6037 12567 6040 12568 6041 12568 6039 12568 6041 12569 6042 12569 6039 12569 6042 12570 6103 12570 6039 12570 6043 12571 6045 12571 6047 12571 6043 12572 6047 12572 6044 12572 6041 12573 6043 12573 6042 12573 6042 12574 6043 12574 6044 12574 6045 12575 6046 12575 6047 12575 6049 12576 6047 12576 6046 12576 6050 12577 6049 12577 6046 12577 6048 12578 6049 12578 6050 12578 6051 12579 5879 12579 6050 12579 6050 12580 5879 12580 6048 12580 5879 12581 6051 12581 6052 12581 6054 12582 6055 12582 6052 12582 6052 12583 6055 12583 5879 12583 6054 12584 6057 12584 6053 12584 6055 12585 6054 12585 6053 12585 6056 12586 6058 12586 5891 12586 6056 12587 5891 12587 6053 12587 6057 12588 6056 12588 6053 12588 6058 12589 6060 12589 6059 12589 5891 12590 6058 12590 6059 12590 6062 12591 6063 12591 6060 12591 6060 12592 6063 12592 6059 12592 6062 12593 6061 12593 6063 12593 6063 12594 6061 12594 6064 12594 6065 12595 6066 12595 6061 12595 6061 12596 6066 12596 6064 12596 6066 12597 6065 12597 6067 12597 6067 12598 6065 12598 6069 12598 6068 12599 6072 12599 5893 12599 6070 12600 6067 12600 6069 12600 6069 12601 6068 12601 6070 12601 6070 12602 6068 12602 5893 12602 6072 12603 6071 12603 5893 12603 6073 12604 6075 12604 6072 12604 6072 12605 6075 12605 6071 12605 6073 12606 6074 12606 6075 12606 6076 12607 6077 12607 6073 12607 6073 12608 6077 12608 6074 12608 6078 12609 6079 12609 6076 12609 6076 12610 6079 12610 6077 12610 6078 12611 6082 12611 6079 12611 6082 12612 6080 12612 6079 12612 6080 12613 6081 12613 6083 12613 6082 12614 6081 12614 6080 12614 6083 12615 6081 12615 5845 12615 6092 12616 6091 12616 6094 12616 6087 12617 6088 12617 6094 12617 6085 12618 6090 12618 6095 12618 6089 12619 6086 12619 6092 12619 6085 12620 6095 12620 6088 12620 6087 12621 6094 12621 6091 12621 6087 12622 6091 12622 6086 12622 6093 12623 6096 12623 6090 12623 6086 12624 6091 12624 6092 12624 6089 12625 6092 12625 6096 12625 6089 12626 6096 12626 6093 12626 6088 12627 6095 12627 6094 12627 6090 12628 6084 12628 6095 12628 6090 12629 6096 12629 6084 12629 6097 12630 6103 12630 6098 12630 6101 12631 6106 12631 6100 12631 6098 12632 6107 12632 6104 12632 6098 12633 6103 12633 6107 12633 6102 12634 6100 12634 6099 12634 6104 12635 6108 12635 6101 12635 6102 12636 6105 12636 6097 12636 6104 12637 6107 12637 6108 12637 6099 12638 6105 12638 6102 12638 6097 12639 6105 12639 6103 12639 6100 12640 6106 12640 6099 12640 6101 12641 6108 12641 6106 12641 6110 12642 6118 12642 6109 12642 6112 12643 6109 12643 6111 12643 6109 12644 6118 12644 6115 12644 6109 12645 6115 12645 6111 12645 6114 12646 6116 12646 6110 12646 6110 12647 6116 12647 6118 12647 6114 12648 6113 12648 6117 12648 6112 12649 6117 12649 6113 12649 6114 12650 6117 12650 6116 12650 6112 12651 6111 12651 6117 12651 6123 12652 6127 12652 6124 12652 6121 12653 6120 12653 6126 12653 6120 12654 6124 12654 6129 12654 6121 12655 6126 12655 6125 12655 6121 12656 6125 12656 6122 12656 6122 12657 6130 12657 6123 12657 6120 12658 6129 12658 6126 12658 6122 12659 6125 12659 6130 12659 6126 12660 6129 12660 6128 12660 6124 12661 6127 12661 6129 12661 6126 12662 6119 12662 6125 12662 6126 12663 6128 12663 6119 12663 6125 12664 6119 12664 6130 12664 6123 12665 6130 12665 6127 12665 6322 12666 6131 12666 6133 12666 6372 12667 6133 12667 6132 12667 6132 12668 6133 12668 6131 12668 4070 12669 6261 12669 4174 12669 4174 12670 6261 12670 6136 12670 4174 12671 6136 12671 6134 12671 4070 12672 6135 12672 6261 12672 6261 12673 6180 12673 6136 12673 6136 12674 6180 12674 6182 12674 6182 12675 6180 12675 6131 12675 6258 12676 6131 12676 6180 12676 6137 12677 6418 12677 6258 12677 6137 12678 6419 12678 6418 12678 6138 12679 6419 12679 6137 12679 6256 12680 6141 12680 6138 12680 6138 12681 6141 12681 6419 12681 6139 12682 6250 12682 6256 12682 6256 12683 6250 12683 6245 12683 6256 12684 6245 12684 6141 12684 6255 12685 6252 12685 6139 12685 6139 12686 6252 12686 6250 12686 6245 12687 6250 12687 6251 12687 6251 12688 6250 12688 6249 12688 6245 12689 6251 12689 6246 12689 6246 12690 6251 12690 6140 12690 6419 12691 6141 12691 6243 12691 6419 12692 6243 12692 6411 12692 6411 12693 6243 12693 6417 12693 6417 12694 6243 12694 6142 12694 6417 12695 6142 12695 6410 12695 6410 12696 6142 12696 6370 12696 6370 12697 6142 12697 6368 12697 6368 12698 6142 12698 6143 12698 6368 12699 6143 12699 6144 12699 6368 12700 6144 12700 6366 12700 6366 12701 6144 12701 6367 12701 6367 12702 6144 12702 6145 12702 6367 12703 6145 12703 6385 12703 6367 12704 6385 12704 6384 12704 6144 12705 6143 12705 6146 12705 6146 12706 6143 12706 6147 12706 6146 12707 6147 12707 6148 12707 6148 12708 6147 12708 6241 12708 6241 12709 6147 12709 6242 12709 6148 12710 6239 12710 6146 12710 6236 12711 6385 12711 6145 12711 6236 12712 6386 12712 6385 12712 6179 12713 6386 12713 6236 12713 6151 12714 6224 12714 6179 12714 6179 12715 6224 12715 6149 12715 6179 12716 6149 12716 6386 12716 6386 12717 6149 12717 6387 12717 6387 12718 6149 12718 6150 12718 6387 12719 6150 12719 6388 12719 6388 12720 6150 12720 6222 12720 6388 12721 6222 12721 6356 12721 6388 12722 6356 12722 6358 12722 6155 12723 6230 12723 6151 12723 6151 12724 6230 12724 6233 12724 6151 12725 6233 12725 6224 12725 6224 12726 6233 12726 6226 12726 6226 12727 6233 12727 6152 12727 6226 12728 6152 12728 6153 12728 6154 12729 6234 12729 6155 12729 6155 12730 6234 12730 6230 12730 6231 12731 6233 12731 6230 12731 6356 12732 6222 12732 6355 12732 6355 12733 6222 12733 6156 12733 6355 12734 6156 12734 6354 12734 6354 12735 6156 12735 6157 12735 6354 12736 6157 12736 6213 12736 6354 12737 6213 12737 6350 12737 6350 12738 6213 12738 6403 12738 6156 12739 6159 12739 6157 12739 6157 12740 6159 12740 6214 12740 6214 12741 6159 12741 6216 12741 6214 12742 6216 12742 6158 12742 6221 12743 6219 12743 6159 12743 6159 12744 6219 12744 6216 12744 6160 12745 6407 12745 6213 12745 6213 12746 6407 12746 6403 12746 6160 12747 6408 12747 6407 12747 6162 12748 6408 12748 6160 12748 6163 12749 6161 12749 6162 12749 6162 12750 6161 12750 6408 12750 6165 12751 6210 12751 6163 12751 6163 12752 6210 12752 6164 12752 6163 12753 6164 12753 6161 12753 6211 12754 6210 12754 6165 12754 6210 12755 5952 12755 6164 12755 6164 12756 5952 12756 6206 12756 6206 12757 5952 12757 6209 12757 6206 12758 6209 12758 6207 12758 6408 12759 6161 12759 6409 12759 6409 12760 6161 12760 6166 12760 6409 12761 6166 12761 6167 12761 6409 12762 6167 12762 6402 12762 6402 12763 6167 12763 6342 12763 6402 12764 6342 12764 6346 12764 6342 12765 6167 12765 6341 12765 6341 12766 6167 12766 6203 12766 6341 12767 6203 12767 6169 12767 6341 12768 6169 12768 6336 12768 6336 12769 6169 12769 6337 12769 6337 12770 6169 12770 6168 12770 6337 12771 6168 12771 6333 12771 6333 12772 6168 12772 6398 12772 6169 12773 6203 12773 6170 12773 6170 12774 6203 12774 6171 12774 6170 12775 6171 12775 6200 12775 6200 12776 6171 12776 5961 12776 5961 12777 6171 12777 6201 12777 6200 12778 6172 12778 6170 12778 6198 12779 6397 12779 6168 12779 6168 12780 6397 12780 6398 12780 6173 12781 6396 12781 6198 12781 6198 12782 6396 12782 6397 12782 6196 12783 6184 12783 6173 12783 6173 12784 6184 12784 6174 12784 6173 12785 6174 12785 6396 12785 6396 12786 6174 12786 6175 12786 6396 12787 6175 12787 6176 12787 6396 12788 6176 12788 6394 12788 6394 12789 6176 12789 6326 12789 6394 12790 6326 12790 6395 12790 6177 12791 6191 12791 6196 12791 6196 12792 6191 12792 4044 12792 6196 12793 4044 12793 6184 12793 6184 12794 4044 12794 6185 12794 6185 12795 4044 12795 4172 12795 6185 12796 4172 12796 6187 12796 6194 12797 5974 12797 6177 12797 6177 12798 5974 12798 6191 12798 6326 12799 6176 12799 6324 12799 6324 12800 6176 12800 6182 12800 6324 12801 6182 12801 6131 12801 6258 12802 6418 12802 6131 12802 6131 12803 6418 12803 6420 12803 6131 12804 6420 12804 6132 12804 6132 12805 6420 12805 6410 12805 6132 12806 6410 12806 6373 12806 6373 12807 6410 12807 6370 12807 6350 12808 6403 12808 6349 12808 6349 12809 6403 12809 6406 12809 6349 12810 6406 12810 6347 12810 6347 12811 6406 12811 6346 12811 6346 12812 6406 12812 6402 12812 6333 12813 6398 12813 6178 12813 6178 12814 6398 12814 6330 12814 6330 12815 6398 12815 6395 12815 6330 12816 6395 12816 6328 12816 6328 12817 6395 12817 6326 12817 6382 12818 6367 12818 6384 12818 6367 12819 6382 12819 6360 12819 6360 12820 6382 12820 6358 12820 6358 12821 6382 12821 6388 12821 6263 12822 4174 12822 6181 12822 6181 12823 4174 12823 6134 12823 6181 12824 6134 12824 6264 12824 6264 12825 6134 12825 6136 12825 6264 12826 6136 12826 6323 12826 6323 12827 6136 12827 6182 12827 6323 12828 6182 12828 6265 12828 6265 12829 6182 12829 6176 12829 6265 12830 6176 12830 6266 12830 6266 12831 6176 12831 6175 12831 6266 12832 6175 12832 6319 12832 6319 12833 6175 12833 6174 12833 6319 12834 6174 12834 6267 12834 6267 12835 6174 12835 6184 12835 6267 12836 6184 12836 6183 12836 6183 12837 6184 12837 6185 12837 6183 12838 6185 12838 6186 12838 6186 12839 6185 12839 6187 12839 6186 12840 6187 12840 6188 12840 6188 12841 6187 12841 4172 12841 6188 12842 4172 12842 6189 12842 6189 12843 4172 12843 4044 12843 4044 12844 6191 12844 6189 12844 6191 12845 6190 12845 6189 12845 6190 12846 6191 12846 6192 12846 6192 12847 6191 12847 5974 12847 6192 12848 5974 12848 6193 12848 6193 12849 5974 12849 6194 12849 6193 12850 6194 12850 6195 12850 6195 12851 6194 12851 6177 12851 6195 12852 6177 12852 6268 12852 6268 12853 6177 12853 6196 12853 6268 12854 6196 12854 6197 12854 6197 12855 6196 12855 6173 12855 6197 12856 6173 12856 6269 12856 6269 12857 6173 12857 6198 12857 6269 12858 6198 12858 6270 12858 6270 12859 6198 12859 6168 12859 6270 12860 6168 12860 6271 12860 6271 12861 6168 12861 6169 12861 6271 12862 6169 12862 6273 12862 6273 12863 6169 12863 6170 12863 6273 12864 6170 12864 6199 12864 6199 12865 6170 12865 6172 12865 6199 12866 6172 12866 5391 12866 5391 12867 6172 12867 6200 12867 5391 12868 6200 12868 5390 12868 5390 12869 6200 12869 5961 12869 5390 12870 5961 12870 6274 12870 6274 12871 5961 12871 6201 12871 6274 12872 6201 12872 6272 12872 6272 12873 6201 12873 6171 12873 6272 12874 6171 12874 6202 12874 6202 12875 6171 12875 6203 12875 6202 12876 6203 12876 6204 12876 6204 12877 6203 12877 6167 12877 6204 12878 6167 12878 6205 12878 6205 12879 6167 12879 6166 12879 6205 12880 6166 12880 6318 12880 6318 12881 6166 12881 6161 12881 6318 12882 6161 12882 6279 12882 6279 12883 6161 12883 6164 12883 6279 12884 6164 12884 6283 12884 6283 12885 6164 12885 6206 12885 6283 12886 6206 12886 6282 12886 6282 12887 6206 12887 6207 12887 6282 12888 6207 12888 6208 12888 6208 12889 6207 12889 6209 12889 6208 12890 6209 12890 5375 12890 5375 12891 6209 12891 5952 12891 6284 12892 5375 12892 5952 12892 6280 12893 6284 12893 6210 12893 6210 12894 6284 12894 5952 12894 6280 12895 6210 12895 6281 12895 6281 12896 6210 12896 6211 12896 6281 12897 6211 12897 6212 12897 6212 12898 6211 12898 6165 12898 6212 12899 6165 12899 6276 12899 6276 12900 6165 12900 6163 12900 6276 12901 6163 12901 6277 12901 6277 12902 6163 12902 6162 12902 6277 12903 6162 12903 6278 12903 6278 12904 6162 12904 6160 12904 6278 12905 6160 12905 6285 12905 6285 12906 6160 12906 6213 12906 6285 12907 6213 12907 6286 12907 6286 12908 6213 12908 6157 12908 6286 12909 6157 12909 6288 12909 6288 12910 6157 12910 6214 12910 6288 12911 6214 12911 6215 12911 6215 12912 6214 12912 6158 12912 6215 12913 6158 12913 6217 12913 6217 12914 6158 12914 6216 12914 6217 12915 6216 12915 6218 12915 6218 12916 6216 12916 6219 12916 6218 12917 6219 12917 6220 12917 6220 12918 6219 12918 6221 12918 6220 12919 6221 12919 6289 12919 6289 12920 6221 12920 6159 12920 6289 12921 6159 12921 6287 12921 6287 12922 6159 12922 6156 12922 6287 12923 6156 12923 6320 12923 6320 12924 6156 12924 6222 12924 6320 12925 6222 12925 6290 12925 6290 12926 6222 12926 6150 12926 6290 12927 6150 12927 6291 12927 6291 12928 6150 12928 6149 12928 6291 12929 6149 12929 6223 12929 6223 12930 6149 12930 6224 12930 6223 12931 6224 12931 6225 12931 6225 12932 6224 12932 6226 12932 6225 12933 6226 12933 6227 12933 6227 12934 6226 12934 6153 12934 6227 12935 6153 12935 6293 12935 6293 12936 6153 12936 6152 12936 6293 12937 6152 12937 6228 12937 6228 12938 6152 12938 6233 12938 6230 12939 6229 12939 6232 12939 6233 12940 6231 12940 6232 12940 6230 12941 6232 12941 6231 12941 6233 12942 6232 12942 6228 12942 6229 12943 6230 12943 6295 12943 6295 12944 6230 12944 6234 12944 6295 12945 6234 12945 6235 12945 6235 12946 6234 12946 6154 12946 6235 12947 6154 12947 6294 12947 6294 12948 6154 12948 6155 12948 6294 12949 6155 12949 6292 12949 6292 12950 6155 12950 6151 12950 6292 12951 6151 12951 6296 12951 6296 12952 6151 12952 6179 12952 6296 12953 6179 12953 6297 12953 6297 12954 6179 12954 6236 12954 6297 12955 6236 12955 6237 12955 6237 12956 6236 12956 6145 12956 6237 12957 6145 12957 6298 12957 6298 12958 6145 12958 6144 12958 6298 12959 6144 12959 6304 12959 6304 12960 6144 12960 6146 12960 6304 12961 6146 12961 6305 12961 6305 12962 6146 12962 6239 12962 6305 12963 6239 12963 6238 12963 6238 12964 6239 12964 6148 12964 6238 12965 6148 12965 6303 12965 6303 12966 6148 12966 6241 12966 6303 12967 6241 12967 6240 12967 6240 12968 6241 12968 6242 12968 6240 12969 6242 12969 6306 12969 6306 12970 6242 12970 6147 12970 6306 12971 6147 12971 6300 12971 6300 12972 6147 12972 6143 12972 6300 12973 6143 12973 6307 12973 6307 12974 6143 12974 6142 12974 6307 12975 6142 12975 6308 12975 6308 12976 6142 12976 6243 12976 6308 12977 6243 12977 6310 12977 6310 12978 6243 12978 6141 12978 6310 12979 6141 12979 6244 12979 6244 12980 6141 12980 6245 12980 6244 12981 6245 12981 6313 12981 6313 12982 6245 12982 6246 12982 6313 12983 6246 12983 6315 12983 6315 12984 6246 12984 6140 12984 6315 12985 6140 12985 6247 12985 6247 12986 6140 12986 6251 12986 6247 12987 6251 12987 6248 12987 6248 12988 6251 12988 6249 12988 6250 12989 6316 12989 6249 12989 6316 12990 6248 12990 6249 12990 6316 12991 6250 12991 6253 12991 6253 12992 6250 12992 6252 12992 6253 12993 6252 12993 6254 12993 6254 12994 6252 12994 6255 12994 6254 12995 6255 12995 6314 12995 6314 12996 6255 12996 6139 12996 6314 12997 6139 12997 6309 12997 6309 12998 6139 12998 6256 12998 6309 12999 6256 12999 6257 12999 6257 13000 6256 13000 6138 13000 6257 13001 6138 13001 6311 13001 6311 13002 6138 13002 6137 13002 6311 13003 6137 13003 6312 13003 6312 13004 6137 13004 6258 13004 6312 13005 6258 13005 6317 13005 6317 13006 6258 13006 6180 13006 6317 13007 6180 13007 6259 13007 6259 13008 6180 13008 6261 13008 6259 13009 6261 13009 6260 13009 6260 13010 6261 13010 6135 13010 6260 13011 6135 13011 6262 13011 6262 13012 6135 13012 4070 13012 6262 13013 4070 13013 6263 13013 6263 13014 4070 13014 4174 13014 6260 13015 6262 13015 6259 13015 6259 13016 6262 13016 6263 13016 6259 13017 6263 13017 6264 13017 6264 13018 6263 13018 6181 13018 6264 13019 6323 13019 6259 13019 6259 13020 6323 13020 6317 13020 6317 13021 6323 13021 6321 13021 6265 13022 6321 13022 6323 13022 6266 13023 6391 13023 6265 13023 6266 13024 6389 13024 6391 13024 6319 13025 6389 13025 6266 13025 6267 13026 6197 13026 6319 13026 6319 13027 6197 13027 6393 13027 6319 13028 6393 13028 6389 13028 6183 13029 6189 13029 6267 13029 6267 13030 6189 13030 6268 13030 6267 13031 6268 13031 6197 13031 6186 13032 6188 13032 6183 13032 6183 13033 6188 13033 6189 13033 6189 13034 6190 13034 6268 13034 6268 13035 6190 13035 6195 13035 6195 13036 6190 13036 6192 13036 6195 13037 6192 13037 6193 13037 6393 13038 6197 13038 6269 13038 6393 13039 6269 13039 6270 13039 6393 13040 6270 13040 6392 13040 6392 13041 6270 13041 6332 13041 6392 13042 6332 13042 6329 13042 6332 13043 6270 13043 6339 13043 6339 13044 6270 13044 6271 13044 6339 13045 6271 13045 6202 13045 6339 13046 6202 13046 6340 13046 6340 13047 6202 13047 6204 13047 6340 13048 6204 13048 6343 13048 6343 13049 6204 13049 6399 13049 6202 13050 6271 13050 6272 13050 6272 13051 6271 13051 6273 13051 6272 13052 6273 13052 5390 13052 5390 13053 6273 13053 5391 13053 5391 13054 6273 13054 6199 13054 5390 13055 6274 13055 6272 13055 6205 13056 6405 13056 6204 13056 6204 13057 6405 13057 6399 13057 6205 13058 6275 13058 6405 13058 6318 13059 6275 13059 6205 13059 6279 13060 6276 13060 6318 13060 6318 13061 6276 13061 6277 13061 6318 13062 6277 13062 6275 13062 6275 13063 6277 13063 6401 13063 6401 13064 6277 13064 6278 13064 6401 13065 6278 13065 6285 13065 6401 13066 6285 13066 6400 13066 6400 13067 6285 13067 6351 13067 6400 13068 6351 13068 6344 13068 6283 13069 5375 13069 6279 13069 6279 13070 5375 13070 6280 13070 6279 13071 6280 13071 6276 13071 6276 13072 6280 13072 6212 13072 6212 13073 6280 13073 6281 13073 6282 13074 6208 13074 6283 13074 6283 13075 6208 13075 5375 13075 6280 13076 5375 13076 6284 13076 6351 13077 6285 13077 6353 13077 6353 13078 6285 13078 6286 13078 6353 13079 6286 13079 6352 13079 6352 13080 6286 13080 6287 13080 6352 13081 6287 13081 6320 13081 6352 13082 6320 13082 6381 13082 6352 13083 6381 13083 6376 13083 6286 13084 6288 13084 6287 13084 6287 13085 6288 13085 6289 13085 6289 13086 6288 13086 6217 13086 6289 13087 6217 13087 6218 13087 6288 13088 6215 13088 6217 13088 6218 13089 6220 13089 6289 13089 6290 13090 6379 13090 6320 13090 6320 13091 6379 13091 6381 13091 6291 13092 6379 13092 6290 13092 6223 13093 6296 13093 6291 13093 6291 13094 6296 13094 6377 13094 6225 13095 6228 13095 6223 13095 6223 13096 6228 13096 6292 13096 6223 13097 6292 13097 6296 13097 6227 13098 6293 13098 6225 13098 6225 13099 6293 13099 6228 13099 6292 13100 6228 13100 6229 13100 6229 13101 6228 13101 6232 13101 6292 13102 6229 13102 6294 13102 6294 13103 6229 13103 6295 13103 6294 13104 6295 13104 6235 13104 6377 13105 6296 13105 6297 13105 6377 13106 6297 13106 6375 13106 6375 13107 6297 13107 6237 13107 6375 13108 6237 13108 6378 13108 6378 13109 6237 13109 6364 13109 6378 13110 6364 13110 6380 13110 6364 13111 6237 13111 6299 13111 6299 13112 6237 13112 6298 13112 6299 13113 6298 13113 6300 13113 6299 13114 6300 13114 6369 13114 6369 13115 6300 13115 6301 13115 6301 13116 6300 13116 6307 13116 6301 13117 6307 13117 6302 13117 6302 13118 6307 13118 6413 13118 6300 13119 6298 13119 6306 13119 6306 13120 6298 13120 6304 13120 6306 13121 6304 13121 6303 13121 6303 13122 6304 13122 6238 13122 6238 13123 6304 13123 6305 13123 6303 13124 6240 13124 6306 13124 6308 13125 6413 13125 6307 13125 6308 13126 6412 13126 6413 13126 6310 13127 6412 13127 6308 13127 6244 13128 6309 13128 6310 13128 6310 13129 6309 13129 6257 13129 6310 13130 6257 13130 6412 13130 6412 13131 6257 13131 6311 13131 6412 13132 6311 13132 6415 13132 6415 13133 6311 13133 6312 13133 6415 13134 6312 13134 6416 13134 6416 13135 6312 13135 6133 13135 6313 13136 6248 13136 6244 13136 6244 13137 6248 13137 6316 13137 6244 13138 6316 13138 6309 13138 6309 13139 6316 13139 6314 13139 6314 13140 6316 13140 6253 13140 6314 13141 6253 13141 6254 13141 6315 13142 6247 13142 6313 13142 6313 13143 6247 13143 6248 13143 6133 13144 6312 13144 6322 13144 6322 13145 6312 13145 6317 13145 6322 13146 6317 13146 6321 13146 6302 13147 6413 13147 6414 13147 6302 13148 6414 13148 6371 13148 6371 13149 6414 13149 6374 13149 6374 13150 6414 13150 6372 13150 6372 13151 6414 13151 6416 13151 6372 13152 6416 13152 6133 13152 6343 13153 6399 13153 6345 13153 6345 13154 6399 13154 6348 13154 6348 13155 6399 13155 6344 13155 6344 13156 6399 13156 6400 13156 6265 13157 6391 13157 6325 13157 6325 13158 6391 13158 6327 13158 6327 13159 6391 13159 6390 13159 6327 13160 6390 13160 6331 13160 6331 13161 6390 13161 6329 13161 6329 13162 6390 13162 6392 13162 6377 13163 6379 13163 6291 13163 6352 13164 6376 13164 6357 13164 6357 13165 6376 13165 6359 13165 6359 13166 6376 13166 6380 13166 6359 13167 6380 13167 6365 13167 6365 13168 6380 13168 6364 13168 6325 13169 6321 13169 6265 13169 6322 13170 6321 13170 6131 13170 6131 13171 6321 13171 6324 13171 6325 13172 6326 13172 6321 13172 6321 13173 6326 13173 6324 13173 6326 13174 6327 13174 6328 13174 6327 13175 6326 13175 6325 13175 6329 13176 6178 13176 6331 13176 6331 13177 6330 13177 6327 13177 6327 13178 6330 13178 6328 13178 6330 13179 6331 13179 6178 13179 6329 13180 6333 13180 6178 13180 6329 13181 6332 13181 6333 13181 6339 13182 6337 13182 6332 13182 6332 13183 6337 13183 6333 13183 6339 13184 6336 13184 6337 13184 6335 13185 6337 13185 6334 13185 6334 13186 6337 13186 6336 13186 6334 13187 6336 13187 6338 13187 6337 13188 6335 13188 6338 13188 6336 13189 6337 13189 6338 13189 6339 13190 6341 13190 6336 13190 6339 13191 6340 13191 6341 13191 6343 13192 6342 13192 6340 13192 6340 13193 6342 13193 6341 13193 6343 13194 6346 13194 6342 13194 6345 13195 6346 13195 6343 13195 6344 13196 6349 13196 6348 13196 6347 13197 6348 13197 6349 13197 6346 13198 6345 13198 6347 13198 6345 13199 6348 13199 6347 13199 6344 13200 6351 13200 6350 13200 6349 13201 6344 13201 6350 13201 6353 13202 6354 13202 6351 13202 6351 13203 6354 13203 6350 13203 6354 13204 6353 13204 6352 13204 6354 13205 6352 13205 6355 13205 6352 13206 6356 13206 6355 13206 6352 13207 6357 13207 6356 13207 6356 13208 6357 13208 6358 13208 6358 13209 6357 13209 6360 13209 6360 13210 6357 13210 6359 13210 6365 13211 6367 13211 6359 13211 6360 13212 6359 13212 6367 13212 6365 13213 6363 13213 6364 13213 6364 13214 6362 13214 6365 13214 6362 13215 6363 13215 6365 13215 6361 13216 6364 13216 6363 13216 6365 13217 6364 13217 6367 13217 6362 13218 6364 13218 6361 13218 6299 13219 6367 13219 6364 13219 6367 13220 6299 13220 6366 13220 6369 13221 6368 13221 6299 13221 6299 13222 6368 13222 6366 13222 6301 13223 6368 13223 6369 13223 6302 13224 6370 13224 6301 13224 6301 13225 6370 13225 6368 13225 6302 13226 6371 13226 6370 13226 6374 13227 6370 13227 6371 13227 6373 13228 6372 13228 6132 13228 6370 13229 6374 13229 6373 13229 6374 13230 6372 13230 6373 13230 6376 13231 6382 13231 6380 13231 6381 13232 6388 13232 6376 13232 6379 13233 6383 13233 6381 13233 6377 13234 6387 13234 6379 13234 6379 13235 6387 13235 6383 13235 6378 13236 6385 13236 6375 13236 6388 13237 6381 13237 6383 13237 6375 13238 6386 13238 6377 13238 6376 13239 6388 13239 6382 13239 6375 13240 6385 13240 6386 13240 6377 13241 6386 13241 6387 13241 6380 13242 6382 13242 6384 13242 6380 13243 6384 13243 6378 13243 6378 13244 6384 13244 6385 13244 6383 13245 6387 13245 6388 13245 6389 13246 6394 13246 6391 13246 6393 13247 6396 13247 6389 13247 6390 13248 6398 13248 6392 13248 6391 13249 6394 13249 6395 13249 6391 13250 6395 13250 6390 13250 6393 13251 6392 13251 6397 13251 6389 13252 6396 13252 6394 13252 6390 13253 6395 13253 6398 13253 6392 13254 6398 13254 6397 13254 6393 13255 6397 13255 6396 13255 6401 13256 6408 13256 6275 13256 6399 13257 6405 13257 6402 13257 6399 13258 6406 13258 6400 13258 6275 13259 6404 13259 6405 13259 6400 13260 6406 13260 6403 13260 6401 13261 6400 13261 6407 13261 6400 13262 6403 13262 6407 13262 6401 13263 6407 13263 6408 13263 6399 13264 6402 13264 6406 13264 6404 13265 6409 13265 6405 13265 6275 13266 6408 13266 6404 13266 6405 13267 6409 13267 6402 13267 6404 13268 6408 13268 6409 13268 6416 13269 6418 13269 6415 13269 6416 13270 6420 13270 6418 13270 6414 13271 6413 13271 6410 13271 6412 13272 6415 13272 6419 13272 6412 13273 6411 13273 6413 13273 6413 13274 6411 13274 6417 13274 6412 13275 6419 13275 6411 13275 6413 13276 6417 13276 6410 13276 6414 13277 6410 13277 6416 13277 6416 13278 6410 13278 6420 13278 6415 13279 6418 13279 6419 13279 6653 13280 6656 13280 6422 13280 6422 13281 6656 13281 6421 13281 6739 13282 6423 13282 6736 13282 6423 13283 6421 13283 6736 13283 6421 13284 6423 13284 6422 13284 6422 13285 6423 13285 6739 13285 6424 13286 6586 13286 6478 13286 6478 13287 6586 13287 6482 13287 6478 13288 6482 13288 6481 13288 6424 13289 6588 13289 6586 13289 6586 13290 6426 13290 6482 13290 6482 13291 6426 13291 6425 13291 6425 13292 6426 13292 6655 13292 6425 13293 6655 13293 6659 13293 6427 13294 6656 13294 6426 13294 6584 13295 6830 13295 6427 13295 6583 13296 6830 13296 6584 13296 6428 13297 6830 13297 6583 13297 6473 13298 6831 13298 6428 13298 6428 13299 6831 13299 6830 13299 6581 13300 6429 13300 6473 13300 6473 13301 6429 13301 6831 13301 6580 13302 6574 13302 6581 13302 6581 13303 6574 13303 6569 13303 6581 13304 6569 13304 6429 13304 6578 13305 6577 13305 6580 13305 6580 13306 6577 13306 6574 13306 6569 13307 6574 13307 10111 13307 10111 13308 6574 13308 6572 13308 6569 13309 10111 13309 6570 13309 6570 13310 10111 13310 10113 13310 6570 13311 10113 13311 6571 13311 6831 13312 6429 13312 6430 13312 6831 13313 6430 13313 6828 13313 6828 13314 6430 13314 6431 13314 6828 13315 6431 13315 6567 13315 6828 13316 6567 13316 6565 13316 6828 13317 6565 13317 6832 13317 6832 13318 6565 13318 6729 13318 6729 13319 6565 13319 6725 13319 6725 13320 6565 13320 6432 13320 6725 13321 6432 13321 6728 13321 6728 13322 6432 13322 6433 13322 6728 13323 6433 13323 6724 13323 6724 13324 6433 13324 6722 13324 6722 13325 6433 13325 6560 13325 6722 13326 6560 13326 6720 13326 6720 13327 6560 13327 6763 13327 6433 13328 6432 13328 6434 13328 6434 13329 6432 13329 6435 13329 6434 13330 6435 13330 6562 13330 6562 13331 6435 13331 10121 13331 10121 13332 6435 13332 6564 13332 6562 13333 6561 13333 6434 13333 6559 13334 6763 13334 6560 13334 6437 13335 6762 13335 6559 13335 6559 13336 6762 13336 6763 13336 6436 13337 6759 13337 6437 13337 6437 13338 6759 13338 6762 13338 6439 13339 6759 13339 6436 13339 6443 13340 6438 13340 6439 13340 6439 13341 6438 13341 6545 13341 6439 13342 6545 13342 6759 13342 6759 13343 6545 13343 6764 13343 6764 13344 6545 13344 6440 13344 6764 13345 6440 13345 6441 13345 6764 13346 6441 13346 6442 13346 6764 13347 6442 13347 6542 13347 6764 13348 6542 13348 6741 13348 6741 13349 6542 13349 6707 13349 6741 13350 6707 13350 6477 13350 6444 13351 6551 13351 6443 13351 6443 13352 6551 13352 6552 13352 6443 13353 6552 13353 6438 13353 6438 13354 6552 13354 6548 13354 6548 13355 6552 13355 7688 13355 6548 13356 7688 13356 6549 13356 6556 13357 6445 13357 6444 13357 6444 13358 6445 13358 6551 13358 6551 13359 6555 13359 6552 13359 6707 13360 6542 13360 6703 13360 6703 13361 6542 13361 6447 13361 6703 13362 6447 13362 6706 13362 6706 13363 6447 13363 6700 13363 6700 13364 6447 13364 6446 13364 6700 13365 6446 13365 6701 13365 6701 13366 6446 13366 6533 13366 6701 13367 6533 13367 6695 13367 6695 13368 6533 13368 6803 13368 6447 13369 6541 13369 6446 13369 6446 13370 6541 13370 6448 13370 6448 13371 6541 13371 7681 13371 6448 13372 7681 13372 6535 13372 6539 13373 6537 13373 6541 13373 6541 13374 6537 13374 7681 13374 6532 13375 6810 13375 6533 13375 6533 13376 6810 13376 6803 13376 6531 13377 6810 13377 6532 13377 6450 13378 6787 13378 6531 13378 6531 13379 6787 13379 6810 13379 6449 13380 6787 13380 6450 13380 6452 13381 6451 13381 6449 13381 6449 13382 6451 13382 6787 13382 6528 13383 7742 13383 6452 13383 6452 13384 7742 13384 6453 13384 6452 13385 6453 13385 6451 13385 6527 13386 6524 13386 6528 13386 6528 13387 6524 13387 7742 13387 7742 13388 6520 13388 6523 13388 7742 13389 6523 13389 6453 13389 6453 13390 6523 13390 6454 13390 6454 13391 6523 13391 6518 13391 6454 13392 6518 13392 6455 13392 6787 13393 6451 13393 6808 13393 6808 13394 6451 13394 6512 13394 6808 13395 6512 13395 6456 13395 6808 13396 6456 13396 6511 13396 6808 13397 6511 13397 6809 13397 6809 13398 6511 13398 6457 13398 6809 13399 6457 13399 6685 13399 6685 13400 6457 13400 6681 13400 6681 13401 6457 13401 6509 13401 6681 13402 6509 13402 6682 13402 6682 13403 6509 13403 6458 13403 6682 13404 6458 13404 6678 13404 6678 13405 6458 13405 6674 13405 6674 13406 6458 13406 6464 13406 6674 13407 6464 13407 6671 13407 6671 13408 6464 13408 6784 13408 6458 13409 6509 13409 6459 13409 6459 13410 6509 13410 6460 13410 6459 13411 6460 13411 8278 13411 8278 13412 6460 13412 6506 13412 6506 13413 6460 13413 6461 13413 8278 13414 6462 13414 6459 13414 6463 13415 6776 13415 6464 13415 6464 13416 6776 13416 6784 13416 6504 13417 6785 13417 6463 13417 6463 13418 6785 13418 6776 13418 6465 13419 6785 13419 6504 13419 6475 13420 6786 13420 6465 13420 6465 13421 6786 13421 6785 13421 6503 13422 6489 13422 6475 13422 6475 13423 6489 13423 6466 13423 6475 13424 6466 13424 6786 13424 6786 13425 6466 13425 6467 13425 6786 13426 6467 13426 6468 13426 6786 13427 6468 13427 6782 13427 6782 13428 6468 13428 6485 13428 6782 13429 6485 13429 6767 13429 6767 13430 6485 13430 6469 13430 6767 13431 6469 13431 6661 13431 6767 13432 6661 13432 6476 13432 6472 13433 6498 13433 6503 13433 6503 13434 6498 13434 6496 13434 6503 13435 6496 13435 6489 13435 6489 13436 6496 13436 6470 13436 6470 13437 6496 13437 6493 13437 6470 13438 6493 13438 6491 13438 6471 13439 6501 13439 6472 13439 6472 13440 6501 13440 6498 13440 6498 13441 6500 13441 6496 13441 6661 13442 6469 13442 6660 13442 6660 13443 6469 13443 6425 13443 6660 13444 6425 13444 6659 13444 6427 13445 6830 13445 6834 13445 6427 13446 6834 13446 6421 13446 6833 13447 6736 13447 6834 13447 6834 13448 6736 13448 6421 13448 6736 13449 6833 13449 6733 13449 6733 13450 6833 13450 6734 13450 6734 13451 6833 13451 6832 13451 6734 13452 6832 13452 6730 13452 6730 13453 6832 13453 6729 13453 6803 13454 6804 13454 6695 13454 6695 13455 6804 13455 6474 13455 6474 13456 6804 13456 6688 13456 6688 13457 6804 13457 6692 13457 6692 13458 6804 13458 6684 13458 6684 13459 6804 13459 6807 13459 6684 13460 6807 13460 6685 13460 6685 13461 6807 13461 6809 13461 6671 13462 6784 13462 6670 13462 6670 13463 6784 13463 6783 13463 6670 13464 6783 13464 6668 13464 6668 13465 6783 13465 6476 13465 6476 13466 6783 13466 6767 13466 6761 13467 6711 13467 6763 13467 6763 13468 6711 13468 6720 13468 6711 13469 6761 13469 6714 13469 6714 13470 6761 13470 6477 13470 6477 13471 6761 13471 6741 13471 6426 13472 6656 13472 6655 13472 6421 13473 6656 13473 6427 13473 6590 13474 6478 13474 6479 13474 6479 13475 6478 13475 6481 13475 6479 13476 6481 13476 6480 13476 6480 13477 6481 13477 6482 13477 6480 13478 6482 13478 6483 13478 6483 13479 6482 13479 6425 13479 6483 13480 6425 13480 6649 13480 6649 13481 6425 13481 6469 13481 6649 13482 6469 13482 6484 13482 6484 13483 6469 13483 6485 13483 6484 13484 6485 13484 6486 13484 6486 13485 6485 13485 6468 13485 6486 13486 6468 13486 6592 13486 6592 13487 6468 13487 6467 13487 6592 13488 6467 13488 6487 13488 6487 13489 6467 13489 6466 13489 6487 13490 6466 13490 6488 13490 6488 13491 6466 13491 6489 13491 6488 13492 6489 13492 6490 13492 6490 13493 6489 13493 6470 13493 6490 13494 6470 13494 6595 13494 6595 13495 6470 13495 6491 13495 6595 13496 6491 13496 6492 13496 6492 13497 6491 13497 6493 13497 6492 13498 6493 13498 6494 13498 6494 13499 6493 13499 6496 13499 8289 13500 6497 13500 6495 13500 6496 13501 6499 13501 6494 13501 8289 13502 6495 13502 6498 13502 6499 13503 6497 13503 6494 13503 6497 13504 6499 13504 6495 13504 6500 13505 6499 13505 6496 13505 6500 13506 6495 13506 6499 13506 6495 13507 6500 13507 6498 13507 8289 13508 6498 13508 8766 13508 8766 13509 6498 13509 6501 13509 8766 13510 6501 13510 6502 13510 6502 13511 6501 13511 6471 13511 6502 13512 6471 13512 6596 13512 6596 13513 6471 13513 6472 13513 6596 13514 6472 13514 6594 13514 6594 13515 6472 13515 6503 13515 6594 13516 6503 13516 6593 13516 6593 13517 6503 13517 6475 13517 6593 13518 6475 13518 6597 13518 6597 13519 6475 13519 6465 13519 6597 13520 6465 13520 6598 13520 6598 13521 6465 13521 6504 13521 6598 13522 6504 13522 6599 13522 6599 13523 6504 13523 6463 13523 6599 13524 6463 13524 6505 13524 6505 13525 6463 13525 6464 13525 6505 13526 6464 13526 6600 13526 6600 13527 6464 13527 6458 13527 6600 13528 6458 13528 6602 13528 6602 13529 6458 13529 6459 13529 6602 13530 6459 13530 6603 13530 6603 13531 6459 13531 6462 13531 6603 13532 6462 13532 8764 13532 8764 13533 6462 13533 8278 13533 8764 13534 8278 13534 6604 13534 6604 13535 8278 13535 6506 13535 6604 13536 6506 13536 6507 13536 6507 13537 6506 13537 6461 13537 6507 13538 6461 13538 6508 13538 6508 13539 6461 13539 6460 13539 6508 13540 6460 13540 6510 13540 6510 13541 6460 13541 6509 13541 6510 13542 6509 13542 6601 13542 6601 13543 6509 13543 6457 13543 6601 13544 6457 13544 6605 13544 6605 13545 6457 13545 6511 13545 6605 13546 6511 13546 6606 13546 6606 13547 6511 13547 6456 13547 6606 13548 6456 13548 6607 13548 6607 13549 6456 13549 6512 13549 6607 13550 6512 13550 6513 13550 6513 13551 6512 13551 6451 13551 6513 13552 6451 13552 6514 13552 6514 13553 6451 13553 6453 13553 6514 13554 6453 13554 6515 13554 6515 13555 6453 13555 6454 13555 6515 13556 6454 13556 6516 13556 6516 13557 6454 13557 6455 13557 6516 13558 6455 13558 6517 13558 6517 13559 6455 13559 6518 13559 6517 13560 6518 13560 6522 13560 6522 13561 6518 13561 6523 13561 7742 13562 7379 13562 6520 13562 6523 13563 6521 13563 6522 13563 6519 13564 6521 13564 7379 13564 7379 13565 6521 13565 6520 13565 6520 13566 6521 13566 6523 13566 6521 13567 6519 13567 6522 13567 7379 13568 7742 13568 7380 13568 7380 13569 7742 13569 6524 13569 7380 13570 6524 13570 6525 13570 6525 13571 6524 13571 6527 13571 6525 13572 6527 13572 6526 13572 6526 13573 6527 13573 6528 13573 6526 13574 6528 13574 6611 13574 6611 13575 6528 13575 6452 13575 6611 13576 6452 13576 6608 13576 6608 13577 6452 13577 6449 13577 6608 13578 6449 13578 6529 13578 6529 13579 6449 13579 6450 13579 6529 13580 6450 13580 6530 13580 6530 13581 6450 13581 6531 13581 6530 13582 6531 13582 6609 13582 6609 13583 6531 13583 6532 13583 6609 13584 6532 13584 6610 13584 6610 13585 6532 13585 6533 13585 6610 13586 6533 13586 6612 13586 6612 13587 6533 13587 6446 13587 6612 13588 6446 13588 6614 13588 6614 13589 6446 13589 6448 13589 6614 13590 6448 13590 6534 13590 6534 13591 6448 13591 6535 13591 6534 13592 6535 13592 6536 13592 6536 13593 6535 13593 7681 13593 6536 13594 7681 13594 7302 13594 7302 13595 7681 13595 6537 13595 7302 13596 6537 13596 6538 13596 6538 13597 6537 13597 6539 13597 6538 13598 6539 13598 6540 13598 6540 13599 6539 13599 6541 13599 6540 13600 6541 13600 6613 13600 6613 13601 6541 13601 6447 13601 6613 13602 6447 13602 6651 13602 6651 13603 6447 13603 6542 13603 6651 13604 6542 13604 6615 13604 6615 13605 6542 13605 6442 13605 6615 13606 6442 13606 6543 13606 6543 13607 6442 13607 6441 13607 6543 13608 6441 13608 6544 13608 6544 13609 6441 13609 6440 13609 6544 13610 6440 13610 6617 13610 6617 13611 6440 13611 6545 13611 6617 13612 6545 13612 6546 13612 6546 13613 6545 13613 6438 13613 6546 13614 6438 13614 6547 13614 6547 13615 6438 13615 6548 13615 6547 13616 6548 13616 6619 13616 6619 13617 6548 13617 6549 13617 6619 13618 6549 13618 6620 13618 6620 13619 6549 13619 7688 13619 6620 13620 7688 13620 6550 13620 6550 13621 7688 13621 6552 13621 6552 13622 6554 13622 6550 13622 6553 13623 6555 13623 6551 13623 6555 13624 6554 13624 6552 13624 6555 13625 6553 13625 6621 13625 6621 13626 6554 13626 6555 13626 6554 13627 6621 13627 6550 13627 6553 13628 6551 13628 10462 13628 10462 13629 6551 13629 6445 13629 10462 13630 6445 13630 6622 13630 6622 13631 6445 13631 6556 13631 6622 13632 6556 13632 6557 13632 6557 13633 6556 13633 6444 13633 6557 13634 6444 13634 6618 13634 6618 13635 6444 13635 6443 13635 6618 13636 6443 13636 6616 13636 6616 13637 6443 13637 6439 13637 6616 13638 6439 13638 6623 13638 6623 13639 6439 13639 6436 13639 6623 13640 6436 13640 6558 13640 6558 13641 6436 13641 6437 13641 6558 13642 6437 13642 6624 13642 6624 13643 6437 13643 6559 13643 6624 13644 6559 13644 6625 13644 6625 13645 6559 13645 6560 13645 6625 13646 6560 13646 6626 13646 6626 13647 6560 13647 6433 13647 6626 13648 6433 13648 6630 13648 6630 13649 6433 13649 6434 13649 6630 13650 6434 13650 6631 13650 6631 13651 6434 13651 6561 13651 6631 13652 6561 13652 10447 13652 10447 13653 6561 13653 6562 13653 10447 13654 6562 13654 6563 13654 6563 13655 6562 13655 10121 13655 6563 13656 10121 13656 6632 13656 6632 13657 10121 13657 6564 13657 6632 13658 6564 13658 6629 13658 6629 13659 6564 13659 6435 13659 6629 13660 6435 13660 6628 13660 6628 13661 6435 13661 6432 13661 6628 13662 6432 13662 6634 13662 6634 13663 6432 13663 6565 13663 6634 13664 6565 13664 6633 13664 6633 13665 6565 13665 6567 13665 6633 13666 6567 13666 6566 13666 6566 13667 6567 13667 6431 13667 6566 13668 6431 13668 6635 13668 6635 13669 6431 13669 6430 13669 6635 13670 6430 13670 6637 13670 6637 13671 6430 13671 6429 13671 6637 13672 6429 13672 6568 13672 6568 13673 6429 13673 6569 13673 6568 13674 6569 13674 6644 13674 6644 13675 6569 13675 6570 13675 6644 13676 6570 13676 6643 13676 6643 13677 6570 13677 6571 13677 6643 13678 6571 13678 10436 13678 10436 13679 6571 13679 10113 13679 10436 13680 10113 13680 6645 13680 6645 13681 10113 13681 10111 13681 6575 13682 10111 13682 6572 13682 6574 13683 6573 13683 6572 13683 10111 13684 6575 13684 6645 13684 6641 13685 6573 13685 6574 13685 6575 13686 6646 13686 6645 13686 6573 13687 6646 13687 6575 13687 6575 13688 6572 13688 6573 13688 6573 13689 6641 13689 6646 13689 6641 13690 6574 13690 6576 13690 6576 13691 6574 13691 6577 13691 6576 13692 6577 13692 6642 13692 6642 13693 6577 13693 6578 13693 6642 13694 6578 13694 6579 13694 6579 13695 6578 13695 6580 13695 6579 13696 6580 13696 6636 13696 6636 13697 6580 13697 6581 13697 6636 13698 6581 13698 6582 13698 6582 13699 6581 13699 6473 13699 6582 13700 6473 13700 6638 13700 6638 13701 6473 13701 6428 13701 6638 13702 6428 13702 6639 13702 6639 13703 6428 13703 6583 13703 6639 13704 6583 13704 6585 13704 6585 13705 6583 13705 6584 13705 6585 13706 6584 13706 6640 13706 6640 13707 6584 13707 6427 13707 6640 13708 6427 13708 6647 13708 6647 13709 6427 13709 6426 13709 6647 13710 6426 13710 6591 13710 6591 13711 6426 13711 6586 13711 6591 13712 6586 13712 6587 13712 6587 13713 6586 13713 6588 13713 6587 13714 6588 13714 6589 13714 6589 13715 6588 13715 6424 13715 6589 13716 6424 13716 6590 13716 6590 13717 6424 13717 6478 13717 6587 13718 6589 13718 6591 13718 6591 13719 6589 13719 6590 13719 6591 13720 6590 13720 6480 13720 6480 13721 6590 13721 6479 13721 6480 13722 6483 13722 6591 13722 6591 13723 6483 13723 6647 13723 6647 13724 6483 13724 6658 13724 6647 13725 6658 13725 6652 13725 6649 13726 6657 13726 6483 13726 6483 13727 6657 13727 6658 13727 6484 13728 6775 13728 6649 13728 6649 13729 6775 13729 6771 13729 6486 13730 6775 13730 6484 13730 6592 13731 6775 13731 6486 13731 6487 13732 6775 13732 6592 13732 6488 13733 6593 13733 6487 13733 6487 13734 6593 13734 6775 13734 6490 13735 6494 13735 6488 13735 6488 13736 6494 13736 6594 13736 6488 13737 6594 13737 6593 13737 6595 13738 6492 13738 6490 13738 6490 13739 6492 13739 6494 13739 6494 13740 6497 13740 8289 13740 6494 13741 8289 13741 6594 13741 6594 13742 8289 13742 6596 13742 6596 13743 8289 13743 8766 13743 6596 13744 8766 13744 6502 13744 6775 13745 6593 13745 6766 13745 6766 13746 6593 13746 6597 13746 6766 13747 6597 13747 6598 13747 6766 13748 6598 13748 6773 13748 6773 13749 6598 13749 6599 13749 6773 13750 6599 13750 6505 13750 6773 13751 6505 13751 6769 13751 6769 13752 6505 13752 6672 13752 6769 13753 6672 13753 6669 13753 6672 13754 6505 13754 6675 13754 6675 13755 6505 13755 6600 13755 6675 13756 6600 13756 6677 13756 6677 13757 6600 13757 6510 13757 6677 13758 6510 13758 6679 13758 6679 13759 6510 13759 6680 13759 6680 13760 6510 13760 6601 13760 6680 13761 6601 13761 6683 13761 6683 13762 6601 13762 6789 13762 6510 13763 6600 13763 6508 13763 6508 13764 6600 13764 6602 13764 6508 13765 6602 13765 6604 13765 6604 13766 6602 13766 8764 13766 8764 13767 6602 13767 6603 13767 6604 13768 6507 13768 6508 13768 6605 13769 6794 13769 6601 13769 6601 13770 6794 13770 6789 13770 6606 13771 6794 13771 6605 13771 6607 13772 6790 13772 6606 13772 6606 13773 6790 13773 6794 13773 6513 13774 6790 13774 6607 13774 6514 13775 6611 13775 6513 13775 6513 13776 6611 13776 6608 13776 6513 13777 6608 13777 6790 13777 6790 13778 6608 13778 6529 13778 6790 13779 6529 13779 6788 13779 6788 13780 6529 13780 6530 13780 6788 13781 6530 13781 6609 13781 6788 13782 6609 13782 6610 13782 6788 13783 6610 13783 6797 13783 6797 13784 6610 13784 6696 13784 6797 13785 6696 13785 6694 13785 6515 13786 6522 13786 6514 13786 6514 13787 6522 13787 7379 13787 6514 13788 7379 13788 6611 13788 6611 13789 7379 13789 6526 13789 6526 13790 7379 13790 7380 13790 6526 13791 7380 13791 6525 13791 6516 13792 6517 13792 6515 13792 6515 13793 6517 13793 6522 13793 6522 13794 6519 13794 7379 13794 6696 13795 6610 13795 6699 13795 6699 13796 6610 13796 6612 13796 6699 13797 6612 13797 6698 13797 6698 13798 6612 13798 6704 13798 6704 13799 6612 13799 6613 13799 6704 13800 6613 13800 6705 13800 6705 13801 6613 13801 6651 13801 6705 13802 6651 13802 6709 13802 6709 13803 6651 13803 6749 13803 6612 13804 6614 13804 6613 13804 6613 13805 6614 13805 6540 13805 6540 13806 6614 13806 6536 13806 6540 13807 6536 13807 7302 13807 6614 13808 6534 13808 6536 13808 7302 13809 6538 13809 6540 13809 6615 13810 6745 13810 6651 13810 6543 13811 6745 13811 6615 13811 6544 13812 6746 13812 6543 13812 6543 13813 6746 13813 6745 13813 6617 13814 6746 13814 6544 13814 6546 13815 6616 13815 6617 13815 6617 13816 6616 13816 6746 13816 6547 13817 6550 13817 6546 13817 6546 13818 6550 13818 6618 13818 6546 13819 6618 13819 6616 13819 6619 13820 6620 13820 6547 13820 6547 13821 6620 13821 6550 13821 6618 13822 6550 13822 6553 13822 6553 13823 6550 13823 6621 13823 6618 13824 6553 13824 6557 13824 6557 13825 6553 13825 10462 13825 6557 13826 10462 13826 6622 13826 6746 13827 6616 13827 6743 13827 6743 13828 6616 13828 6623 13828 6743 13829 6623 13829 6558 13829 6743 13830 6558 13830 6744 13830 6744 13831 6558 13831 6624 13831 6744 13832 6624 13832 6625 13832 6744 13833 6625 13833 6747 13833 6747 13834 6625 13834 6719 13834 6747 13835 6719 13835 6742 13835 6742 13836 6719 13836 6712 13836 6719 13837 6625 13837 6723 13837 6723 13838 6625 13838 6626 13838 6723 13839 6626 13839 6627 13839 6627 13840 6626 13840 6628 13840 6627 13841 6628 13841 6726 13841 6726 13842 6628 13842 6727 13842 6727 13843 6628 13843 6634 13843 6727 13844 6634 13844 6648 13844 6648 13845 6634 13845 6817 13845 6628 13846 6626 13846 6629 13846 6629 13847 6626 13847 6630 13847 6629 13848 6630 13848 6563 13848 6563 13849 6630 13849 10447 13849 10447 13850 6630 13850 6631 13850 6563 13851 6632 13851 6629 13851 6633 13852 6813 13852 6634 13852 6566 13853 6813 13853 6633 13853 6635 13854 6812 13854 6566 13854 6566 13855 6812 13855 6813 13855 6637 13856 6812 13856 6635 13856 6568 13857 6636 13857 6637 13857 6637 13858 6636 13858 6582 13858 6637 13859 6582 13859 6812 13859 6812 13860 6582 13860 6811 13860 6811 13861 6582 13861 6638 13861 6811 13862 6638 13862 6814 13862 6814 13863 6638 13863 6639 13863 6814 13864 6639 13864 6585 13864 6814 13865 6585 13865 6640 13865 6814 13866 6640 13866 6815 13866 6815 13867 6640 13867 6422 13867 6815 13868 6422 13868 6739 13868 6644 13869 6645 13869 6568 13869 6568 13870 6645 13870 6641 13870 6568 13871 6641 13871 6636 13871 6636 13872 6641 13872 6579 13872 6579 13873 6641 13873 6576 13873 6579 13874 6576 13874 6642 13874 6643 13875 10436 13875 6644 13875 6644 13876 10436 13876 6645 13876 6645 13877 6646 13877 6641 13877 6422 13878 6640 13878 6653 13878 6653 13879 6640 13879 6647 13879 6653 13880 6647 13880 6652 13880 6813 13881 6817 13881 6634 13881 6648 13882 6817 13882 6732 13882 6732 13883 6817 13883 6820 13883 6732 13884 6820 13884 6738 13884 6738 13885 6820 13885 6815 13885 6738 13886 6815 13886 6739 13886 6792 13887 6683 13887 6789 13887 6683 13888 6792 13888 6687 13888 6687 13889 6792 13889 6689 13889 6689 13890 6792 13890 6694 13890 6694 13891 6792 13891 6797 13891 6649 13892 6771 13892 6662 13892 6662 13893 6771 13893 6768 13893 6768 13894 6650 13894 6662 13894 6650 13895 6768 13895 6664 13895 6664 13896 6768 13896 6669 13896 6669 13897 6768 13897 6769 13897 6651 13898 6745 13898 6749 13898 6709 13899 6749 13899 6708 13899 6708 13900 6749 13900 6710 13900 6710 13901 6749 13901 6742 13901 6710 13902 6742 13902 6717 13902 6717 13903 6742 13903 6712 13903 6662 13904 6657 13904 6649 13904 6658 13905 6659 13905 6652 13905 6652 13906 6659 13906 6655 13906 6653 13907 6654 13907 6656 13907 6656 13908 6654 13908 6655 13908 6654 13909 6653 13909 6652 13909 6655 13910 6654 13910 6652 13910 6660 13911 6659 13911 6657 13911 6659 13912 6658 13912 6657 13912 6662 13913 6661 13913 6657 13913 6657 13914 6661 13914 6660 13914 6662 13915 6663 13915 6661 13915 6661 13916 6663 13916 6476 13916 6476 13917 6663 13917 6650 13917 6662 13918 6650 13918 6663 13918 6668 13919 6667 13919 6670 13919 6670 13920 6667 13920 6669 13920 6650 13921 6665 13921 6476 13921 6666 13922 6667 13922 6668 13922 6666 13923 6668 13923 6665 13923 6665 13924 6650 13924 6664 13924 6665 13925 6664 13925 6666 13925 6665 13926 6668 13926 6476 13926 6664 13927 6667 13927 6666 13927 6667 13928 6664 13928 6669 13928 6669 13929 6673 13929 6670 13929 6673 13930 6671 13930 6670 13930 6671 13931 6673 13931 6672 13931 6673 13932 6669 13932 6672 13932 6675 13933 6674 13933 6672 13933 6672 13934 6674 13934 6671 13934 6675 13935 6676 13935 6674 13935 6678 13936 6676 13936 6677 13936 6675 13937 6677 13937 6676 13937 6674 13938 6676 13938 6678 13938 6679 13939 6682 13939 6677 13939 6677 13940 6682 13940 6678 13940 6679 13941 6681 13941 6682 13941 6681 13942 6679 13942 6680 13942 6683 13943 6685 13943 6680 13943 6680 13944 6685 13944 6681 13944 6683 13945 6686 13945 6685 13945 6686 13946 6684 13946 6685 13946 6683 13947 6687 13947 6686 13947 6684 13948 6686 13948 6687 13948 6687 13949 6692 13949 6684 13949 6688 13950 6693 13950 6474 13950 6474 13951 6691 13951 6694 13951 6687 13952 6690 13952 6692 13952 6691 13953 6689 13953 6694 13953 6689 13954 6693 13954 6690 13954 6693 13955 6689 13955 6691 13955 6693 13956 6688 13956 6690 13956 6690 13957 6688 13957 6692 13957 6690 13958 6687 13958 6689 13958 6693 13959 6691 13959 6474 13959 6694 13960 6697 13960 6474 13960 6695 13961 6697 13961 6696 13961 6697 13962 6694 13962 6696 13962 6474 13963 6697 13963 6695 13963 6699 13964 6701 13964 6696 13964 6696 13965 6701 13965 6695 13965 6699 13966 6702 13966 6701 13966 6699 13967 6698 13967 6702 13967 6701 13968 6702 13968 6700 13968 6700 13969 6702 13969 6698 13969 6704 13970 6706 13970 6698 13970 6698 13971 6706 13971 6700 13971 6703 13972 6706 13972 6705 13972 6705 13973 6706 13973 6704 13973 6709 13974 6707 13974 6705 13974 6705 13975 6707 13975 6703 13975 6707 13976 6709 13976 6708 13976 6707 13977 6708 13977 6477 13977 6710 13978 6477 13978 6708 13978 6717 13979 6712 13979 6713 13979 6713 13980 6711 13980 6714 13980 6711 13981 6713 13981 6712 13981 6710 13982 6715 13982 6477 13982 6477 13983 6715 13983 6716 13983 6717 13984 6716 13984 6715 13984 6716 13985 6717 13985 6713 13985 6710 13986 6717 13986 6715 13986 6714 13987 6477 13987 6716 13987 6716 13988 6713 13988 6714 13988 6712 13989 6718 13989 6711 13989 6718 13990 6720 13990 6711 13990 6720 13991 6718 13991 6719 13991 6718 13992 6712 13992 6719 13992 6723 13993 6722 13993 6719 13993 6719 13994 6722 13994 6720 13994 6723 13995 6721 13995 6722 13995 6724 13996 6721 13996 6627 13996 6723 13997 6627 13997 6721 13997 6722 13998 6721 13998 6724 13998 6726 13999 6728 13999 6627 13999 6627 14000 6728 14000 6724 14000 6725 14001 6728 14001 6727 14001 6728 14002 6726 14002 6727 14002 6648 14003 6729 14003 6727 14003 6727 14004 6729 14004 6725 14004 6648 14005 6731 14005 6729 14005 6731 14006 6730 14006 6729 14006 6730 14007 6731 14007 6732 14007 6648 14008 6732 14008 6731 14008 6732 14009 6734 14009 6730 14009 6740 14010 6738 14010 6739 14010 6735 14011 6738 14011 6737 14011 6733 14012 6740 14012 6736 14012 6734 14013 6735 14013 6733 14013 6736 14014 6740 14014 6739 14014 6732 14015 6735 14015 6734 14015 6737 14016 6740 14016 6733 14016 6737 14017 6733 14017 6735 14017 6732 14018 6738 14018 6735 14018 6737 14019 6738 14019 6740 14019 6762 14020 6753 14020 6763 14020 6749 14021 6745 14021 6755 14021 6743 14022 6752 14022 6746 14022 6744 14023 6747 14023 6753 14023 6746 14024 6754 14024 6745 14024 6744 14025 6753 14025 6751 14025 6744 14026 6751 14026 6743 14026 6746 14027 6748 14027 6754 14027 6745 14028 6754 14028 6750 14028 6745 14029 6750 14029 6755 14029 6755 14030 6760 14030 6749 14030 6747 14031 6758 14031 6753 14031 6746 14032 6752 14032 6748 14032 6747 14033 6742 14033 6757 14033 6747 14034 6757 14034 6758 14034 6742 14035 6749 14035 6756 14035 6742 14036 6756 14036 6757 14036 6743 14037 6751 14037 6752 14037 6749 14038 6760 14038 6756 14038 6748 14039 6752 14039 6759 14039 6751 14040 6753 14040 6762 14040 6751 14041 6762 14041 6752 14041 6754 14042 6765 14042 6750 14042 6748 14043 6759 14043 6754 14043 6755 14044 6750 14044 6741 14044 6754 14045 6764 14045 6765 14045 6756 14046 6761 14046 6757 14046 6756 14047 6760 14047 6761 14047 6757 14048 6761 14048 6763 14048 6758 14049 6757 14049 6763 14049 6750 14050 6765 14050 6741 14050 6753 14051 6758 14051 6763 14051 6754 14052 6759 14052 6764 14052 6755 14053 6741 14053 6760 14053 6752 14054 6762 14054 6759 14054 6760 14055 6741 14055 6761 14055 6765 14056 6764 14056 6741 14056 6771 14057 6777 14057 6768 14057 6769 14058 6768 14058 6772 14058 6769 14059 6770 14059 6773 14059 6766 14060 6773 14060 6774 14060 6775 14061 6766 14061 6779 14061 6773 14062 6776 14062 6774 14062 6766 14063 6774 14063 6780 14063 6766 14064 6780 14064 6779 14064 6775 14065 6782 14065 6771 14065 6773 14066 6770 14066 6776 14066 6768 14067 6777 14067 6778 14067 6775 14068 6779 14068 6782 14068 6769 14069 6772 14069 6770 14069 6771 14070 6767 14070 6777 14070 6774 14071 6781 14071 6780 14071 6768 14072 6778 14072 6772 14072 6774 14073 6776 14073 6781 14073 6770 14074 6784 14074 6776 14074 6777 14075 6767 14075 6778 14075 6771 14076 6782 14076 6767 14076 6772 14077 6783 14077 6770 14077 6772 14078 6778 14078 6783 14078 6779 14079 6780 14079 6786 14079 6781 14080 6785 14080 6780 14080 6778 14081 6767 14081 6783 14081 6781 14082 6776 14082 6785 14082 6780 14083 6785 14083 6786 14083 6770 14084 6783 14084 6784 14084 6779 14085 6786 14085 6782 14085 6788 14086 6799 14086 6790 14086 6804 14087 6803 14087 6802 14087 6789 14088 6794 14088 6793 14088 6789 14089 6793 14089 6791 14089 6788 14090 6795 14090 6799 14090 6788 14091 6797 14091 6795 14091 6790 14092 6799 14092 6796 14092 6792 14093 6789 14093 6800 14093 6789 14094 6791 14094 6800 14094 6792 14095 6800 14095 6798 14095 6792 14096 6798 14096 6797 14096 6794 14097 6805 14097 6793 14097 6790 14098 6796 14098 6806 14098 6790 14099 6801 14099 6794 14099 6797 14100 6803 14100 6795 14100 6790 14101 6806 14101 6801 14101 6791 14102 6807 14102 6800 14102 6794 14103 6801 14103 6805 14103 6793 14104 6809 14104 6791 14104 6800 14105 6804 14105 6798 14105 6797 14106 6798 14106 6802 14106 6797 14107 6802 14107 6803 14107 6793 14108 6805 14108 6809 14108 6791 14109 6809 14109 6807 14109 6798 14110 6804 14110 6802 14110 6795 14111 6803 14111 6810 14111 6795 14112 6810 14112 6799 14112 6806 14113 6796 14113 6787 14113 6800 14114 6807 14114 6804 14114 6805 14115 6801 14115 6808 14115 6801 14116 6806 14116 6808 14116 6799 14117 6810 14117 6796 14117 6805 14118 6808 14118 6809 14118 6796 14119 6810 14119 6787 14119 6806 14120 6787 14120 6808 14120 6832 14121 6827 14121 6828 14121 6828 14122 6824 14122 6831 14122 6813 14123 6812 14123 6823 14123 6815 14124 6819 14124 6816 14124 6815 14125 6816 14125 6814 14125 6815 14126 6820 14126 6829 14126 6815 14127 6829 14127 6818 14127 6815 14128 6818 14128 6819 14128 6812 14129 6811 14129 6821 14129 6813 14130 6823 14130 6822 14130 6814 14131 6816 14131 6826 14131 6814 14132 6826 14132 6811 14132 6811 14133 6826 14133 6821 14133 6812 14134 6821 14134 6824 14134 6818 14135 6833 14135 6819 14135 6812 14136 6824 14136 6823 14136 6813 14137 6827 14137 6817 14137 6813 14138 6822 14138 6827 14138 6818 14139 6829 14139 6833 14139 6817 14140 6827 14140 6832 14140 6817 14141 6832 14141 6820 14141 6820 14142 6832 14142 6829 14142 6816 14143 6819 14143 6825 14143 6816 14144 6825 14144 6826 14144 6823 14145 6824 14145 6822 14145 6819 14146 6833 14146 6834 14146 6826 14147 6830 14147 6821 14147 6822 14148 6824 14148 6828 14148 6822 14149 6828 14149 6827 14149 6825 14150 6830 14150 6826 14150 6824 14151 6821 14151 6831 14151 6819 14152 6834 14152 6825 14152 6829 14153 6832 14153 6833 14153 6821 14154 6830 14154 6831 14154 6825 14155 6834 14155 6830 14155 7074 14156 7073 14156 6836 14156 6836 14157 7073 14157 6837 14157 7159 14158 6835 14158 7163 14158 6835 14159 6837 14159 7163 14159 6837 14160 6835 14160 6836 14160 6835 14161 7159 14161 6836 14161 7013 14162 7010 14162 6838 14162 6838 14163 7010 14163 6839 14163 6838 14164 6839 14164 6898 14164 7013 14165 6840 14165 7010 14165 7010 14166 7008 14166 6839 14166 6839 14167 7008 14167 6841 14167 6841 14168 7008 14168 7077 14168 6841 14169 7077 14169 7081 14169 6893 14170 7073 14170 7008 14170 6842 14171 7239 14171 6893 14171 6843 14172 7264 14172 6842 14172 6842 14173 7264 14173 7239 14173 7006 14174 7264 14174 6843 14174 6844 14175 7260 14175 7006 14175 7006 14176 7260 14176 7264 14176 6845 14177 6848 14177 6844 14177 6844 14178 6848 14178 7260 14178 7003 14179 6997 14179 6845 14179 6845 14180 6997 14180 6846 14180 6845 14181 6846 14181 6848 14181 7000 14182 6999 14182 7003 14182 7003 14183 6999 14183 6997 14183 6846 14184 6997 14184 6992 14184 6992 14185 6997 14185 6994 14185 6846 14186 6992 14186 6847 14186 6847 14187 6992 14187 10758 14187 6847 14188 10758 14188 6991 14188 7260 14189 6848 14189 7265 14189 7265 14190 6848 14190 6987 14190 7265 14191 6987 14191 6985 14191 7265 14192 6985 14192 7240 14192 7240 14193 6985 14193 6984 14193 7240 14194 6984 14194 6849 14194 7240 14195 6849 14195 7157 14195 7240 14196 7157 14196 7261 14196 7157 14197 6849 14197 7153 14197 7153 14198 6849 14198 6983 14198 7153 14199 6983 14199 7151 14199 7151 14200 6983 14200 6850 14200 7151 14201 6850 14201 7147 14201 7147 14202 6850 14202 7149 14202 7149 14203 6850 14203 6975 14203 7149 14204 6975 14204 7145 14204 7145 14205 6975 14205 7186 14205 6850 14206 6983 14206 6977 14206 6977 14207 6983 14207 6851 14207 6977 14208 6851 14208 10891 14208 10891 14209 6851 14209 10892 14209 10892 14210 6851 14210 6852 14210 10891 14211 6853 14211 6977 14211 6854 14212 7187 14212 6975 14212 6975 14213 7187 14213 7186 14213 6855 14214 7187 14214 6854 14214 6856 14215 7188 14215 6855 14215 6855 14216 7188 14216 7187 14216 6896 14217 7188 14217 6856 14217 6862 14218 6857 14218 6896 14218 6896 14219 6857 14219 6858 14219 6896 14220 6858 14220 7166 14220 7166 14221 6858 14221 6859 14221 7166 14222 6859 14222 6959 14222 7166 14223 6959 14223 7189 14223 7189 14224 6959 14224 6860 14224 7189 14225 6860 14225 6861 14225 7189 14226 6861 14226 7165 14226 7165 14227 6861 14227 7133 14227 7165 14228 7133 14228 7134 14228 6865 14229 10791 14229 6862 14229 6862 14230 10791 14230 6965 14230 6862 14231 6965 14231 6857 14231 6857 14232 6965 14232 6963 14232 6963 14233 6965 14233 6863 14233 6963 14234 6863 14234 6864 14234 6969 14235 10787 14235 6865 14235 6865 14236 10787 14236 10791 14236 7133 14237 6861 14237 7131 14237 7131 14238 6861 14238 6866 14238 7131 14239 6866 14239 7128 14239 7128 14240 6866 14240 7125 14240 7125 14241 6866 14241 6951 14241 7125 14242 6951 14242 7123 14242 7123 14243 6951 14243 6867 14243 7123 14244 6867 14244 7122 14244 7122 14245 6867 14245 7217 14245 6866 14246 6958 14246 6951 14246 6951 14247 6958 14247 6868 14247 6868 14248 6958 14248 6954 14248 6868 14249 6954 14249 6953 14249 6957 14250 6955 14250 6958 14250 6958 14251 6955 14251 6954 14251 6950 14252 7237 14252 6867 14252 6869 14253 7237 14253 6950 14253 6948 14254 7216 14254 6869 14254 6869 14255 7216 14255 7237 14255 6870 14256 7216 14256 6948 14256 6871 14257 6872 14257 6870 14257 6870 14258 6872 14258 7216 14258 6873 14259 6938 14259 6871 14259 6871 14260 6938 14260 6933 14260 6871 14261 6933 14261 6872 14261 6945 14262 6874 14262 6873 14262 6873 14263 6874 14263 6938 14263 6940 14264 6943 14264 6938 14264 6938 14265 6943 14265 6937 14265 6938 14266 6937 14266 6933 14266 6933 14267 6937 14267 6875 14267 6875 14268 6937 14268 6936 14268 6875 14269 6936 14269 6934 14269 7216 14270 6872 14270 6932 14270 7216 14271 6932 14271 6931 14271 7216 14272 6931 14272 7235 14272 7235 14273 6931 14273 6876 14273 7235 14274 6876 14274 6878 14274 7235 14275 6878 14275 6877 14275 6877 14276 6878 14276 7107 14276 7107 14277 6878 14277 7105 14277 7105 14278 6878 14278 6879 14278 7105 14279 6879 14279 7102 14279 7102 14280 6879 14280 6880 14280 7102 14281 6880 14281 7098 14281 7098 14282 6880 14282 7097 14282 7097 14283 6880 14283 6922 14283 7097 14284 6922 14284 7094 14284 7094 14285 6922 14285 7212 14285 6880 14286 6879 14286 6883 14286 6883 14287 6879 14287 6881 14287 6883 14288 6881 14288 6926 14288 6926 14289 6881 14289 6882 14289 6882 14290 6881 14290 6928 14290 6926 14291 6924 14291 6883 14291 6884 14292 7207 14292 6922 14292 6885 14293 7210 14293 6884 14293 6884 14294 7210 14294 7207 14294 6886 14295 7210 14295 6885 14295 6888 14296 7213 14296 6886 14296 6886 14297 7213 14297 7210 14297 6891 14298 6887 14298 6888 14298 6888 14299 6887 14299 6889 14299 6888 14300 6889 14300 7213 14300 7213 14301 6889 14301 6890 14301 7213 14302 6890 14302 6901 14302 7213 14303 6901 14303 7190 14303 7190 14304 6901 14304 6900 14304 7190 14305 6900 14305 6899 14305 7190 14306 6899 14306 7214 14306 7214 14307 6899 14307 7082 14307 7214 14308 7082 14308 7089 14308 6920 14309 6913 14309 6891 14309 6891 14310 6913 14310 6912 14310 6891 14311 6912 14311 6887 14311 6887 14312 6912 14312 6904 14312 6904 14313 6912 14313 6908 14313 6904 14314 6908 14314 6907 14314 6918 14315 6892 14315 6920 14315 6920 14316 6892 14316 6913 14316 6913 14317 6914 14317 6912 14317 7082 14318 6899 14318 7079 14318 7079 14319 6899 14319 6841 14319 7079 14320 6841 14320 7081 14320 6893 14321 7239 14321 6837 14321 6837 14322 7239 14322 7262 14322 7262 14323 7163 14323 6837 14323 7163 14324 7262 14324 6894 14324 6894 14325 7262 14325 7158 14325 7158 14326 7262 14326 7261 14326 7158 14327 7261 14327 7157 14327 7237 14328 7217 14328 6867 14328 7122 14329 7217 14329 7120 14329 7120 14330 7217 14330 7236 14330 7120 14331 7236 14331 7112 14331 7112 14332 7236 14332 7110 14332 7110 14333 7236 14333 7109 14333 7109 14334 7236 14334 6895 14334 6895 14335 7236 14335 6877 14335 6895 14336 6877 14336 7107 14336 7207 14337 7212 14337 6922 14337 7094 14338 7212 14338 7092 14338 7092 14339 7212 14339 7215 14339 7092 14340 7215 14340 7090 14340 7090 14341 7215 14341 7089 14341 7089 14342 7215 14342 7214 14342 7184 14343 7141 14343 7186 14343 7186 14344 7141 14344 7145 14344 7141 14345 7184 14345 7136 14345 7136 14346 7184 14346 7135 14346 7135 14347 7184 14347 7134 14347 7134 14348 7184 14348 7165 14348 7166 14349 7188 14349 6896 14349 7008 14350 7073 14350 7077 14350 6837 14351 7073 14351 6893 14351 7012 14352 6838 14352 6897 14352 6897 14353 6838 14353 6898 14353 6897 14354 6898 14354 7014 14354 7014 14355 6898 14355 6839 14355 7014 14356 6839 14356 7016 14356 7016 14357 6839 14357 6841 14357 7016 14358 6841 14358 7017 14358 7017 14359 6841 14359 6899 14359 7017 14360 6899 14360 7018 14360 7018 14361 6899 14361 6900 14361 7018 14362 6900 14362 7019 14362 7019 14363 6900 14363 6901 14363 7019 14364 6901 14364 6902 14364 6902 14365 6901 14365 6890 14365 6902 14366 6890 14366 7072 14366 7072 14367 6890 14367 6889 14367 7072 14368 6889 14368 7020 14368 7020 14369 6889 14369 6887 14369 7020 14370 6887 14370 6903 14370 6903 14371 6887 14371 6904 14371 6903 14372 6904 14372 6905 14372 6905 14373 6904 14373 6907 14373 6905 14374 6907 14374 6906 14374 6906 14375 6907 14375 6908 14375 6906 14376 6908 14376 6911 14376 6911 14377 6908 14377 6912 14377 6913 14378 6910 14378 6914 14378 6914 14379 6910 14379 6911 14379 6909 14380 6910 14380 6913 14380 6914 14381 6911 14381 6912 14381 6909 14382 6913 14382 6915 14382 6915 14383 6913 14383 6892 14383 6915 14384 6892 14384 6916 14384 6916 14385 6892 14385 6918 14385 6916 14386 6918 14386 6917 14386 6917 14387 6918 14387 6920 14387 6917 14388 6920 14388 6919 14388 6919 14389 6920 14389 6891 14389 6919 14390 6891 14390 7021 14390 7021 14391 6891 14391 6888 14391 7021 14392 6888 14392 6921 14392 6921 14393 6888 14393 6886 14393 6921 14394 6886 14394 7022 14394 7022 14395 6886 14395 6885 14395 7022 14396 6885 14396 7023 14396 7023 14397 6885 14397 6884 14397 7023 14398 6884 14398 7024 14398 7024 14399 6884 14399 6922 14399 7024 14400 6922 14400 7025 14400 7025 14401 6922 14401 6880 14401 7025 14402 6880 14402 6923 14402 6923 14403 6880 14403 6883 14403 6923 14404 6883 14404 6925 14404 6925 14405 6883 14405 6924 14405 6925 14406 6924 14406 7027 14406 7027 14407 6924 14407 6926 14407 7027 14408 6926 14408 7026 14408 7026 14409 6926 14409 6882 14409 7026 14410 6882 14410 7028 14410 7028 14411 6882 14411 6928 14411 7028 14412 6928 14412 6927 14412 6927 14413 6928 14413 6881 14413 6927 14414 6881 14414 6929 14414 6929 14415 6881 14415 6879 14415 6929 14416 6879 14416 7029 14416 7029 14417 6879 14417 6878 14417 7029 14418 6878 14418 7030 14418 7030 14419 6878 14419 6876 14419 7030 14420 6876 14420 6930 14420 6930 14421 6876 14421 6931 14421 6930 14422 6931 14422 7031 14422 7031 14423 6931 14423 6932 14423 7031 14424 6932 14424 7033 14424 7033 14425 6932 14425 6872 14425 7033 14426 6872 14426 7038 14426 7038 14427 6872 14427 6933 14427 7038 14428 6933 14428 7037 14428 7037 14429 6933 14429 6875 14429 7037 14430 6875 14430 7042 14430 7042 14431 6875 14431 6934 14431 7042 14432 6934 14432 6935 14432 6935 14433 6934 14433 6936 14433 6935 14434 6936 14434 6944 14434 6944 14435 6936 14435 6937 14435 6939 14436 6941 14436 6942 14436 6939 14437 6937 14437 6943 14437 6937 14438 6939 14438 6944 14438 6942 14439 6940 14439 6938 14439 6943 14440 6940 14440 6939 14440 6940 14441 6942 14441 6941 14441 6941 14442 6939 14442 6940 14442 6942 14443 6938 14443 7040 14443 7040 14444 6938 14444 6874 14444 7040 14445 6874 14445 7041 14445 7041 14446 6874 14446 6945 14446 7041 14447 6945 14447 7039 14447 7039 14448 6945 14448 6873 14448 7039 14449 6873 14449 6946 14449 6946 14450 6873 14450 6871 14450 6946 14451 6871 14451 7032 14451 7032 14452 6871 14452 6870 14452 7032 14453 6870 14453 6947 14453 6947 14454 6870 14454 6948 14454 6947 14455 6948 14455 7034 14455 7034 14456 6948 14456 6869 14456 7034 14457 6869 14457 6949 14457 6949 14458 6869 14458 6950 14458 6949 14459 6950 14459 7035 14459 7035 14460 6950 14460 6867 14460 7035 14461 6867 14461 7043 14461 7043 14462 6867 14462 6951 14462 7043 14463 6951 14463 7047 14463 7047 14464 6951 14464 6868 14464 7047 14465 6868 14465 6952 14465 6952 14466 6868 14466 6953 14466 6952 14467 6953 14467 7048 14467 7048 14468 6953 14468 6954 14468 7048 14469 6954 14469 7046 14469 7046 14470 6954 14470 6955 14470 7046 14471 6955 14471 6956 14471 6956 14472 6955 14472 6957 14472 6956 14473 6957 14473 7045 14473 7045 14474 6957 14474 6958 14474 7045 14475 6958 14475 7044 14475 7044 14476 6958 14476 6866 14476 7044 14477 6866 14477 7049 14477 7049 14478 6866 14478 6861 14478 7049 14479 6861 14479 7051 14479 7051 14480 6861 14480 6860 14480 7051 14481 6860 14481 7050 14481 7050 14482 6860 14482 6959 14482 7050 14483 6959 14483 7052 14483 7052 14484 6959 14484 6859 14484 7052 14485 6859 14485 6960 14485 6960 14486 6859 14486 6858 14486 6960 14487 6858 14487 6961 14487 6961 14488 6858 14488 6857 14488 6961 14489 6857 14489 6962 14489 6962 14490 6857 14490 6963 14490 6962 14491 6963 14491 6964 14491 6964 14492 6963 14492 6864 14492 6964 14493 6864 14493 7054 14493 7054 14494 6864 14494 6863 14494 7054 14495 6863 14495 6966 14495 6966 14496 6863 14496 6965 14496 10791 14497 6967 14497 6965 14497 11184 14498 6967 14498 10791 14498 6965 14499 7055 14499 6966 14499 6967 14500 11184 14500 7055 14500 6967 14501 7055 14501 6965 14501 11184 14502 10791 14502 6968 14502 6968 14503 10791 14503 10787 14503 6968 14504 10787 14504 6970 14504 6970 14505 10787 14505 6969 14505 6970 14506 6969 14506 7056 14506 7056 14507 6969 14507 6865 14507 7056 14508 6865 14508 7053 14508 7053 14509 6865 14509 6862 14509 7053 14510 6862 14510 6971 14510 6971 14511 6862 14511 6896 14511 6971 14512 6896 14512 6972 14512 6972 14513 6896 14513 6856 14513 6972 14514 6856 14514 7057 14514 7057 14515 6856 14515 6855 14515 7057 14516 6855 14516 6973 14516 6973 14517 6855 14517 6854 14517 6973 14518 6854 14518 6974 14518 6974 14519 6854 14519 6975 14519 6974 14520 6975 14520 7058 14520 7058 14521 6975 14521 6850 14521 7058 14522 6850 14522 6976 14522 6976 14523 6850 14523 6977 14523 6976 14524 6977 14524 6978 14524 6978 14525 6977 14525 6853 14525 6978 14526 6853 14526 11137 14526 11137 14527 6853 14527 10891 14527 11137 14528 10891 14528 6979 14528 6979 14529 10891 14529 10892 14529 6979 14530 10892 14530 6980 14530 6980 14531 10892 14531 6852 14531 6980 14532 6852 14532 6981 14532 6981 14533 6852 14533 6851 14533 6981 14534 6851 14534 6982 14534 6982 14535 6851 14535 6983 14535 6982 14536 6983 14536 7068 14536 7068 14537 6983 14537 6849 14537 7068 14538 6849 14538 7059 14538 7059 14539 6849 14539 6984 14539 7059 14540 6984 14540 7060 14540 7060 14541 6984 14541 6985 14541 7060 14542 6985 14542 6986 14542 6986 14543 6985 14543 6987 14543 6986 14544 6987 14544 6988 14544 6988 14545 6987 14545 6848 14545 6988 14546 6848 14546 7061 14546 7061 14547 6848 14547 6846 14547 7061 14548 6846 14548 6989 14548 6989 14549 6846 14549 6847 14549 6989 14550 6847 14550 6990 14550 6990 14551 6847 14551 6991 14551 6990 14552 6991 14552 7065 14552 7065 14553 6991 14553 10758 14553 7065 14554 10758 14554 7066 14554 7066 14555 10758 14555 6992 14555 6995 14556 6993 14556 6996 14556 6993 14557 7066 14557 6992 14557 6996 14558 6994 14558 6997 14558 6995 14559 6996 14559 6997 14559 6996 14560 6993 14560 6992 14560 6994 14561 6996 14561 6992 14561 6995 14562 6997 14562 6998 14562 6998 14563 6997 14563 6999 14563 6998 14564 6999 14564 7001 14564 7001 14565 6999 14565 7000 14565 7001 14566 7000 14566 7002 14566 7002 14567 7000 14567 7003 14567 7002 14568 7003 14568 7062 14568 7062 14569 7003 14569 6845 14569 7062 14570 6845 14570 7004 14570 7004 14571 6845 14571 6844 14571 7004 14572 6844 14572 7005 14572 7005 14573 6844 14573 7006 14573 7005 14574 7006 14574 7063 14574 7063 14575 7006 14575 6843 14575 7063 14576 6843 14576 7007 14576 7007 14577 6843 14577 6842 14577 7007 14578 6842 14578 7064 14578 7064 14579 6842 14579 6893 14579 7064 14580 6893 14580 7067 14580 7067 14581 6893 14581 7008 14581 7067 14582 7008 14582 7015 14582 7015 14583 7008 14583 7010 14583 7015 14584 7010 14584 7009 14584 7009 14585 7010 14585 6840 14585 7009 14586 6840 14586 7011 14586 7011 14587 6840 14587 7013 14587 7011 14588 7013 14588 7012 14588 7012 14589 7013 14589 6838 14589 7009 14590 7011 14590 7015 14590 7015 14591 7011 14591 7012 14591 7015 14592 7012 14592 7014 14592 7014 14593 7012 14593 6897 14593 7014 14594 7016 14594 7015 14594 7015 14595 7016 14595 7067 14595 7067 14596 7016 14596 7078 14596 7067 14597 7078 14597 7075 14597 7017 14598 7080 14598 7016 14598 7016 14599 7080 14599 7078 14599 7018 14600 7197 14600 7017 14600 7019 14601 7194 14601 7018 14601 7018 14602 7194 14602 7197 14602 6902 14603 7194 14603 7019 14603 7072 14604 7191 14604 6902 14604 6902 14605 7191 14605 7194 14605 7020 14606 7021 14606 7072 14606 7072 14607 7021 14607 7191 14607 6903 14608 6911 14608 7020 14608 7020 14609 6911 14609 6919 14609 7020 14610 6919 14610 7021 14610 6905 14611 6906 14611 6903 14611 6903 14612 6906 14612 6911 14612 6911 14613 6910 14613 6909 14613 6911 14614 6909 14614 6919 14614 6919 14615 6909 14615 6917 14615 6917 14616 6909 14616 6915 14616 6917 14617 6915 14617 6916 14617 7191 14618 7021 14618 6921 14618 7191 14619 6921 14619 7198 14619 7198 14620 6921 14620 7022 14620 7198 14621 7022 14621 7023 14621 7198 14622 7023 14622 7024 14622 7198 14623 7024 14623 7195 14623 7195 14624 7024 14624 7096 14624 7195 14625 7096 14625 7192 14625 7096 14626 7024 14626 7100 14626 7100 14627 7024 14627 7025 14627 7100 14628 7025 14628 7099 14628 7099 14629 7025 14629 6929 14629 7099 14630 6929 14630 7104 14630 7104 14631 6929 14631 7103 14631 7103 14632 6929 14632 7029 14632 7103 14633 7029 14633 7106 14633 7106 14634 7029 14634 7069 14634 6929 14635 7025 14635 6927 14635 6927 14636 7025 14636 6923 14636 6927 14637 6923 14637 7026 14637 7026 14638 6923 14638 7027 14638 7027 14639 6923 14639 6925 14639 7026 14640 7028 14640 6927 14640 7030 14641 7227 14641 7029 14641 7029 14642 7227 14642 7069 14642 6930 14643 7220 14643 7030 14643 7030 14644 7220 14644 7227 14644 7031 14645 7234 14645 6930 14645 6930 14646 7234 14646 7220 14646 7033 14647 7234 14647 7031 14647 7038 14648 6946 14648 7033 14648 7033 14649 6946 14649 7032 14649 7033 14650 7032 14650 7234 14650 7234 14651 7032 14651 7219 14651 7219 14652 7032 14652 6947 14652 7219 14653 6947 14653 7223 14653 7223 14654 6947 14654 7034 14654 7223 14655 7034 14655 6949 14655 7223 14656 6949 14656 7035 14656 7223 14657 7035 14657 7218 14657 7218 14658 7035 14658 7036 14658 7218 14659 7036 14659 7111 14659 7037 14660 6944 14660 7038 14660 7038 14661 6944 14661 6942 14661 7038 14662 6942 14662 6946 14662 6946 14663 6942 14663 7039 14663 7039 14664 6942 14664 7040 14664 7039 14665 7040 14665 7041 14665 7042 14666 6935 14666 7037 14666 7037 14667 6935 14667 6944 14667 6944 14668 6939 14668 6942 14668 7036 14669 7035 14669 7127 14669 7127 14670 7035 14670 7043 14670 7127 14671 7043 14671 7124 14671 7124 14672 7043 14672 7129 14672 7129 14673 7043 14673 7044 14673 7129 14674 7044 14674 7130 14674 7130 14675 7044 14675 7049 14675 7130 14676 7049 14676 7132 14676 7132 14677 7049 14677 7169 14677 7043 14678 7047 14678 7044 14678 7044 14679 7047 14679 7045 14679 7045 14680 7047 14680 7048 14680 7045 14681 7048 14681 7046 14681 7047 14682 6952 14682 7048 14682 7046 14683 6956 14683 7045 14683 7051 14684 7169 14684 7049 14684 7050 14685 7167 14685 7051 14685 7051 14686 7167 14686 7169 14686 7052 14687 7167 14687 7050 14687 6960 14688 7167 14688 7052 14688 6961 14689 6971 14689 6960 14689 6960 14690 6971 14690 7167 14690 6962 14691 6966 14691 6961 14691 6961 14692 6966 14692 7053 14692 6961 14693 7053 14693 6971 14693 6964 14694 7054 14694 6962 14694 6962 14695 7054 14695 6966 14695 7053 14696 6966 14696 11184 14696 11184 14697 6966 14697 7055 14697 7053 14698 11184 14698 7056 14698 7056 14699 11184 14699 6968 14699 7056 14700 6968 14700 6970 14700 7167 14701 6971 14701 7168 14701 7168 14702 6971 14702 6972 14702 7168 14703 6972 14703 7057 14703 7168 14704 7057 14704 7164 14704 7164 14705 7057 14705 6973 14705 7164 14706 6973 14706 6974 14706 7164 14707 6974 14707 7170 14707 7170 14708 6974 14708 7144 14708 7170 14709 7144 14709 7139 14709 7144 14710 6974 14710 7148 14710 7148 14711 6974 14711 7058 14711 7148 14712 7058 14712 7150 14712 7150 14713 7058 14713 6982 14713 7150 14714 6982 14714 7152 14714 7152 14715 6982 14715 7154 14715 7154 14716 6982 14716 7068 14716 7154 14717 7068 14717 7155 14717 7155 14718 7068 14718 7243 14718 6982 14719 7058 14719 6981 14719 6981 14720 7058 14720 6976 14720 6981 14721 6976 14721 6979 14721 6979 14722 6976 14722 11137 14722 11137 14723 6976 14723 6978 14723 6979 14724 6980 14724 6981 14724 7059 14725 7243 14725 7068 14725 7060 14726 7247 14726 7059 14726 7059 14727 7247 14727 7243 14727 6986 14728 7247 14728 7060 14728 6988 14729 7247 14729 6986 14729 7061 14730 7062 14730 6988 14730 6988 14731 7062 14731 7004 14731 6988 14732 7004 14732 7247 14732 7247 14733 7004 14733 7005 14733 7247 14734 7005 14734 7246 14734 7246 14735 7005 14735 7063 14735 7246 14736 7063 14736 7007 14736 7246 14737 7007 14737 7241 14737 7241 14738 7007 14738 7064 14738 7241 14739 7064 14739 6836 14739 7241 14740 6836 14740 7256 14740 7256 14741 6836 14741 7159 14741 6989 14742 7066 14742 7061 14742 7061 14743 7066 14743 6995 14743 7061 14744 6995 14744 7062 14744 7062 14745 6995 14745 7002 14745 7002 14746 6995 14746 6998 14746 7002 14747 6998 14747 7001 14747 6990 14748 7065 14748 6989 14748 6989 14749 7065 14749 7066 14749 7066 14750 6993 14750 6995 14750 6836 14751 7064 14751 7074 14751 7074 14752 7064 14752 7067 14752 7074 14753 7067 14753 7075 14753 7155 14754 7243 14754 7244 14754 7155 14755 7244 14755 7156 14755 7156 14756 7244 14756 7160 14756 7160 14757 7244 14757 7256 14757 7160 14758 7256 14758 7159 14758 7071 14759 7106 14759 7069 14759 7106 14760 7071 14760 7113 14760 7113 14761 7071 14761 7070 14761 7070 14762 7071 14762 7111 14762 7111 14763 7071 14763 7218 14763 7197 14764 7196 14764 7017 14764 7017 14765 7196 14765 7083 14765 7193 14766 7087 14766 7196 14766 7196 14767 7087 14767 7083 14767 7087 14768 7193 14768 7088 14768 7088 14769 7193 14769 7093 14769 7093 14770 7193 14770 7192 14770 7093 14771 7192 14771 7095 14771 7095 14772 7192 14772 7096 14772 7169 14773 7172 14773 7132 14773 7132 14774 7172 14774 7137 14774 7137 14775 7172 14775 7174 14775 7137 14776 7174 14776 7138 14776 7138 14777 7174 14777 7139 14777 7139 14778 7174 14778 7170 14778 7083 14779 7080 14779 7017 14779 7078 14780 7081 14780 7075 14780 7075 14781 7081 14781 7077 14781 7074 14782 7076 14782 7073 14782 7074 14783 7075 14783 7076 14783 7076 14784 7077 14784 7073 14784 7077 14785 7076 14785 7075 14785 7079 14786 7081 14786 7080 14786 7081 14787 7078 14787 7080 14787 7083 14788 7082 14788 7080 14788 7080 14789 7082 14789 7079 14789 7083 14790 7084 14790 7082 14790 7089 14791 7084 14791 7087 14791 7083 14792 7087 14792 7084 14792 7084 14793 7089 14793 7082 14793 7091 14794 7092 14794 7090 14794 7092 14795 7091 14795 7093 14795 7087 14796 7085 14796 7089 14796 7088 14797 7086 14797 7085 14797 7088 14798 7085 14798 7087 14798 7091 14799 7086 14799 7088 14799 7091 14800 7088 14800 7093 14800 7090 14801 7086 14801 7091 14801 7089 14802 7085 14802 7090 14802 7090 14803 7085 14803 7086 14803 7095 14804 7092 14804 7093 14804 7094 14805 7092 14805 7096 14805 7096 14806 7092 14806 7095 14806 7100 14807 7097 14807 7096 14807 7096 14808 7097 14808 7094 14808 7100 14809 7101 14809 7097 14809 7098 14810 7101 14810 7099 14810 7100 14811 7099 14811 7101 14811 7101 14812 7098 14812 7097 14812 7104 14813 7102 14813 7099 14813 7099 14814 7102 14814 7098 14814 7104 14815 7103 14815 7102 14815 7103 14816 7105 14816 7102 14816 7106 14817 7107 14817 7103 14817 7103 14818 7107 14818 7105 14818 7106 14819 7108 14819 7107 14819 7106 14820 7113 14820 7108 14820 7108 14821 6895 14821 7107 14821 6895 14822 7108 14822 7113 14822 7113 14823 7109 14823 6895 14823 7114 14824 7110 14824 7109 14824 7110 14825 7116 14825 7112 14825 7112 14826 7116 14826 7111 14826 7113 14827 7114 14827 7109 14827 7116 14828 7070 14828 7111 14828 7070 14829 7115 14829 7114 14829 7115 14830 7070 14830 7116 14830 7110 14831 7115 14831 7116 14831 7114 14832 7113 14832 7070 14832 7110 14833 7114 14833 7115 14833 7111 14834 7120 14834 7112 14834 7120 14835 7111 14835 7118 14835 7118 14836 7122 14836 7117 14836 7122 14837 7119 14837 7036 14837 7036 14838 7119 14838 7118 14838 7117 14839 7120 14839 7121 14839 7120 14840 7118 14840 7121 14840 7122 14841 7120 14841 7117 14841 7036 14842 7118 14842 7111 14842 7118 14843 7119 14843 7122 14843 7127 14844 7123 14844 7036 14844 7036 14845 7123 14845 7122 14845 7127 14846 7126 14846 7123 14846 7127 14847 7124 14847 7126 14847 7126 14848 7125 14848 7123 14848 7125 14849 7126 14849 7124 14849 7129 14850 7128 14850 7124 14850 7124 14851 7128 14851 7125 14851 7131 14852 7128 14852 7130 14852 7128 14853 7129 14853 7130 14853 7132 14854 7133 14854 7130 14854 7130 14855 7133 14855 7131 14855 7137 14856 7134 14856 7133 14856 7133 14857 7132 14857 7137 14857 7137 14858 7135 14858 7134 14858 7138 14859 7139 14859 7140 14859 7143 14860 7138 14860 7142 14860 7142 14861 7140 14861 7136 14861 7141 14862 7140 14862 7139 14862 7137 14863 7143 14863 7135 14863 7137 14864 7138 14864 7143 14864 7143 14865 7142 14865 7135 14865 7136 14866 7140 14866 7141 14866 7136 14867 7135 14867 7142 14867 7138 14868 7140 14868 7142 14868 7139 14869 7146 14869 7141 14869 7146 14870 7145 14870 7141 14870 7145 14871 7146 14871 7144 14871 7144 14872 7146 14872 7139 14872 7148 14873 7149 14873 7144 14873 7144 14874 7149 14874 7145 14874 7148 14875 7150 14875 7149 14875 7149 14876 7150 14876 7147 14876 7152 14877 7151 14877 7150 14877 7150 14878 7151 14878 7147 14878 7152 14879 7153 14879 7151 14879 7153 14880 7152 14880 7154 14880 7155 14881 7157 14881 7154 14881 7154 14882 7157 14882 7153 14882 7158 14883 7155 14883 7156 14883 7157 14884 7155 14884 7158 14884 7162 14885 7160 14885 7159 14885 7160 14886 7161 14886 7156 14886 7163 14887 7162 14887 7159 14887 7158 14888 7156 14888 6894 14888 6894 14889 7156 14889 7161 14889 6894 14890 7161 14890 7162 14890 7161 14891 7160 14891 7162 14891 6894 14892 7162 14892 7163 14892 7166 14893 7185 14893 7188 14893 7168 14894 7183 14894 7167 14894 7164 14895 7175 14895 7168 14895 7167 14896 7173 14896 7169 14896 7168 14897 7175 14897 7182 14897 7168 14898 7182 14898 7183 14898 7172 14899 7169 14899 7171 14899 7169 14900 7173 14900 7178 14900 7169 14901 7178 14901 7171 14901 7167 14902 7183 14902 7179 14902 7170 14903 7177 14903 7164 14903 7172 14904 7171 14904 7176 14904 7172 14905 7176 14905 7174 14905 7164 14906 7177 14906 7175 14906 7170 14907 7174 14907 7177 14907 7167 14908 7179 14908 7173 14908 7174 14909 7176 14909 7184 14909 7174 14910 7184 14910 7177 14910 7177 14911 7184 14911 7180 14911 7177 14912 7180 14912 7181 14912 7177 14913 7181 14913 7175 14913 7176 14914 7165 14914 7184 14914 7178 14915 7173 14915 7189 14915 7175 14916 7181 14916 7187 14916 7175 14917 7187 14917 7182 14917 7183 14918 7185 14918 7179 14918 7171 14919 7165 14919 7176 14919 7182 14920 7188 14920 7183 14920 7173 14921 7179 14921 7189 14921 7178 14922 7189 14922 7165 14922 7178 14923 7165 14923 7171 14923 7185 14924 7166 14924 7179 14924 7189 14925 7179 14925 7166 14925 7183 14926 7188 14926 7185 14926 7181 14927 7180 14927 7186 14927 7181 14928 7186 14928 7187 14928 7180 14929 7184 14929 7186 14929 7182 14930 7187 14930 7188 14930 7207 14931 7209 14931 7212 14931 7193 14932 7196 14932 7202 14932 7191 14933 7205 14933 7194 14933 7194 14934 7205 14934 7197 14934 7191 14935 7198 14935 7199 14935 7191 14936 7200 14936 7205 14936 7191 14937 7199 14937 7200 14937 7195 14938 7192 14938 7201 14938 7196 14939 7197 14939 7202 14939 7198 14940 7195 14940 7204 14940 7197 14941 7203 14941 7202 14941 7197 14942 7205 14942 7203 14942 7198 14943 7204 14943 7199 14943 7202 14944 7206 14944 7193 14944 7204 14945 7195 14945 7207 14945 7192 14946 7193 14946 7208 14946 7192 14947 7208 14947 7201 14947 7193 14948 7206 14948 7208 14948 7195 14949 7201 14949 7209 14949 7195 14950 7209 14950 7207 14950 7202 14951 7203 14951 7211 14951 7202 14952 7211 14952 7206 14952 7204 14953 7210 14953 7199 14953 7204 14954 7207 14954 7210 14954 7200 14955 7199 14955 7213 14955 7200 14956 7213 14956 7205 14956 7201 14957 7208 14957 7215 14957 7203 14958 7205 14958 7190 14958 7201 14959 7212 14959 7209 14959 7210 14960 7213 14960 7199 14960 7201 14961 7215 14961 7212 14961 7211 14962 7214 14962 7206 14962 7208 14963 7206 14963 7215 14963 7211 14964 7203 14964 7214 14964 7203 14965 7190 14965 7214 14965 7206 14966 7214 14966 7215 14966 7205 14967 7213 14967 7190 14967 7069 14968 7221 14968 7071 14968 7217 14969 7237 14969 7230 14969 7218 14970 7071 14970 7232 14970 7223 14971 7218 14971 7226 14971 7219 14972 7222 14972 7234 14972 7069 14973 7227 14973 7228 14973 7218 14974 7232 14974 7226 14974 7069 14975 7228 14975 7221 14975 7219 14976 7223 14976 7222 14976 7226 14977 7232 14977 7233 14977 7071 14978 7224 14978 7232 14978 7222 14979 7223 14979 7238 14979 7071 14980 7221 14980 7225 14980 7222 14981 7216 14981 7234 14981 7227 14982 7229 14982 7228 14982 7223 14983 7226 14983 7238 14983 7071 14984 7225 14984 7224 14984 7226 14985 7230 14985 7238 14985 7221 14986 7228 14986 7225 14986 7226 14987 7233 14987 7230 14987 7222 14988 7238 14988 7216 14988 7220 14989 7231 14989 7227 14989 7220 14990 7234 14990 7231 14990 7227 14991 7231 14991 7229 14991 7238 14992 7230 14992 7237 14992 7229 14993 7231 14993 7235 14993 7228 14994 6877 14994 7225 14994 7225 14995 6877 14995 7224 14995 7224 14996 7236 14996 7232 14996 7224 14997 6877 14997 7236 14997 7229 14998 7235 14998 7228 14998 7232 14999 7236 14999 7217 14999 7232 15000 7217 15000 7233 15000 7234 15001 7216 15001 7231 15001 7231 15002 7216 15002 7235 15002 7233 15003 7217 15003 7230 15003 7228 15004 7235 15004 6877 15004 7238 15005 7237 15005 7216 15005 7243 15006 7245 15006 7244 15006 7262 15007 7263 15007 7261 15007 7247 15008 7242 15008 7243 15008 7241 15009 7256 15009 7253 15009 7247 15010 7249 15010 7242 15010 7247 15011 7246 15011 7249 15011 7244 15012 7245 15012 7263 15012 7244 15013 7263 15013 7256 15013 7241 15014 7252 15014 7246 15014 7245 15015 7243 15015 7248 15015 7241 15016 7254 15016 7252 15016 7246 15017 7252 15017 7249 15017 7243 15018 7242 15018 7251 15018 7243 15019 7255 15019 7248 15019 7242 15020 7249 15020 7250 15020 7248 15021 7261 15021 7245 15021 7245 15022 7261 15022 7263 15022 7241 15023 7253 15023 7254 15023 7242 15024 7250 15024 7251 15024 7243 15025 7251 15025 7255 15025 7249 15026 7252 15026 7260 15026 7251 15027 7250 15027 7258 15027 7252 15028 7254 15028 7259 15028 7252 15029 7264 15029 7260 15029 7252 15030 7259 15030 7264 15030 7251 15031 7258 15031 7255 15031 7250 15032 7249 15032 7257 15032 7250 15033 7257 15033 7258 15033 7253 15034 7256 15034 7262 15034 7248 15035 7255 15035 7261 15035 7257 15036 7265 15036 7258 15036 7249 15037 7260 15037 7257 15037 7254 15038 7253 15038 7239 15038 7254 15039 7239 15039 7259 15039 7255 15040 7258 15040 7240 15040 7253 15041 7262 15041 7239 15041 7257 15042 7260 15042 7265 15042 7255 15043 7240 15043 7261 15043 7256 15044 7263 15044 7262 15044 7259 15045 7239 15045 7264 15045 7258 15046 7265 15046 7240 15046 7507 15047 7508 15047 7269 15047 7269 15048 7508 15048 7267 15048 7268 15049 7269 15049 7266 15049 7266 15050 7269 15050 7267 15050 7441 15051 7271 15051 7270 15051 7270 15052 7271 15052 7329 15052 7270 15053 7329 15053 7328 15053 7441 15054 7439 15054 7271 15054 7271 15055 7273 15055 7329 15055 7329 15056 7273 15056 7272 15056 7272 15057 7273 15057 7326 15057 7272 15058 7326 15058 7511 15058 7322 15059 7508 15059 7273 15059 7274 15060 7675 15060 7322 15060 7322 15061 7675 15061 7674 15061 7437 15062 7675 15062 7274 15062 7275 15063 7675 15063 7437 15063 7276 15064 7672 15064 7275 15064 7275 15065 7672 15065 7675 15065 7277 15066 7279 15066 7276 15066 7276 15067 7279 15067 7672 15067 7278 15068 7430 15068 7277 15068 7277 15069 7430 15069 7423 15069 7277 15070 7423 15070 7279 15070 7434 15071 7433 15071 7278 15071 7278 15072 7433 15072 7430 15072 7423 15073 7430 15073 10488 15073 10488 15074 7430 15074 7431 15074 7423 15075 10488 15075 7424 15075 7424 15076 10488 15076 7426 15076 7424 15077 7426 15077 7425 15077 7672 15078 7279 15078 7280 15078 7672 15079 7280 15079 7419 15079 7672 15080 7419 15080 7676 15080 7676 15081 7419 15081 7418 15081 7676 15082 7418 15082 7417 15082 7676 15083 7417 15083 7673 15083 7673 15084 7417 15084 7581 15084 7581 15085 7417 15085 7578 15085 7578 15086 7417 15086 7281 15086 7578 15087 7281 15087 7576 15087 7576 15088 7281 15088 7282 15088 7576 15089 7282 15089 7575 15089 7575 15090 7282 15090 7574 15090 7574 15091 7282 15091 7325 15091 7574 15092 7325 15092 7283 15092 7283 15093 7325 15093 7590 15093 7282 15094 7281 15094 7284 15094 7284 15095 7281 15095 7416 15095 7284 15096 7416 15096 10476 15096 10476 15097 7416 15097 7415 15097 7415 15098 7416 15098 7285 15098 10476 15099 7414 15099 7284 15099 7411 15100 7589 15100 7325 15100 7325 15101 7589 15101 7590 15101 7286 15102 7589 15102 7411 15102 7287 15103 7604 15103 7286 15103 7286 15104 7604 15104 7589 15104 7288 15105 7604 15105 7287 15105 7293 15106 7289 15106 7288 15106 7288 15107 7289 15107 7290 15107 7288 15108 7290 15108 7607 15108 7607 15109 7290 15109 7291 15109 7607 15110 7291 15110 7397 15110 7607 15111 7397 15111 7608 15111 7608 15112 7397 15112 7396 15112 7608 15113 7396 15113 7292 15113 7608 15114 7292 15114 7609 15114 7609 15115 7292 15115 7561 15115 7296 15116 10464 15116 7293 15116 7293 15117 10464 15117 6550 15117 7293 15118 6550 15118 7289 15118 7289 15119 6550 15119 7398 15119 7398 15120 6550 15120 6620 15120 7398 15121 6620 15121 7294 15121 7295 15122 10404 15122 7296 15122 7296 15123 10404 15123 10464 15123 10464 15124 7404 15124 6550 15124 7561 15125 7292 15125 7557 15125 7557 15126 7292 15126 7299 15126 7557 15127 7299 15127 7556 15127 7556 15128 7299 15128 7297 15128 7297 15129 7299 15129 7298 15129 7297 15130 7298 15130 7554 15130 7554 15131 7298 15131 7303 15131 7554 15132 7303 15132 7551 15132 7551 15133 7303 15133 7652 15133 7299 15134 7300 15134 7298 15134 7298 15135 7300 15135 7301 15135 7301 15136 7300 15136 6536 15136 7301 15137 6536 15137 7390 15137 7394 15138 7302 15138 7300 15138 7300 15139 7302 15139 6536 15139 7387 15140 7648 15140 7303 15140 7303 15141 7648 15141 7653 15141 7304 15142 7648 15142 7387 15142 7386 15143 7648 15143 7304 15143 7305 15144 7648 15144 7386 15144 7384 15145 7365 15145 7305 15145 7305 15146 7365 15146 7651 15146 7305 15147 7651 15147 7648 15147 7307 15148 7379 15148 7384 15148 7384 15149 7379 15149 7366 15149 7384 15150 7366 15150 7365 15150 7306 15151 7380 15151 7307 15151 7307 15152 7380 15152 7379 15152 7379 15153 7377 15153 7374 15153 7379 15154 7374 15154 7366 15154 7366 15155 7374 15155 7368 15155 7368 15156 7374 15156 7371 15156 7368 15157 7371 15157 7370 15157 7651 15158 7365 15158 7308 15158 7651 15159 7308 15159 7362 15159 7651 15160 7362 15160 7361 15160 7651 15161 7361 15161 7646 15161 7646 15162 7361 15162 7360 15162 7646 15163 7360 15163 7538 15163 7646 15164 7538 15164 7536 15164 7538 15165 7360 15165 7533 15165 7533 15166 7360 15166 7309 15166 7533 15167 7309 15167 7532 15167 7532 15168 7309 15168 7310 15168 7532 15169 7310 15169 7527 15169 7527 15170 7310 15170 7529 15170 7529 15171 7310 15171 7351 15171 7529 15172 7351 15172 7523 15172 7523 15173 7351 15173 7610 15173 7310 15174 7309 15174 7314 15174 7314 15175 7309 15175 7311 15175 7314 15176 7311 15176 7312 15176 7312 15177 7311 15177 7354 15177 7354 15178 7311 15178 7355 15178 7312 15179 7313 15179 7314 15179 7350 15180 7630 15180 7351 15180 7351 15181 7630 15181 7610 15181 7349 15182 7630 15182 7350 15182 7316 15183 7630 15183 7349 15183 7315 15184 7631 15184 7316 15184 7316 15185 7631 15185 7630 15185 7319 15186 7335 15186 7315 15186 7315 15187 7335 15187 7317 15187 7315 15188 7317 15188 7631 15188 7631 15189 7317 15189 7333 15189 7631 15190 7333 15190 7332 15190 7631 15191 7332 15191 7632 15191 7632 15192 7332 15192 7331 15192 7632 15193 7331 15193 7330 15193 7632 15194 7330 15194 7628 15194 7628 15195 7330 15195 7516 15195 7628 15196 7516 15196 7629 15196 7318 15197 7338 15197 7319 15197 7319 15198 7338 15198 7342 15198 7319 15199 7342 15199 7335 15199 7335 15200 7342 15200 7320 15200 7320 15201 7342 15201 7321 15201 7320 15202 7321 15202 7336 15202 7346 15203 7345 15203 7318 15203 7318 15204 7345 15204 7338 15204 7338 15205 7341 15205 7342 15205 7516 15206 7330 15206 7512 15206 7512 15207 7330 15207 7272 15207 7512 15208 7272 15208 7511 15208 7322 15209 7674 15209 7267 15209 7267 15210 7674 15210 7266 15210 7266 15211 7674 15211 7671 15211 7266 15212 7671 15212 7323 15212 7323 15213 7671 15213 7588 15213 7588 15214 7671 15214 7673 15214 7588 15215 7673 15215 7584 15215 7584 15216 7673 15216 7580 15216 7580 15217 7673 15217 7581 15217 7653 15218 7652 15218 7303 15218 7551 15219 7652 15219 7552 15219 7552 15220 7652 15220 7549 15220 7549 15221 7652 15221 7633 15221 7549 15222 7633 15222 7547 15222 7547 15223 7633 15223 7543 15223 7543 15224 7633 15224 7536 15224 7536 15225 7633 15225 7646 15225 7523 15226 7610 15226 7526 15226 7526 15227 7610 15227 7629 15227 7526 15228 7629 15228 7521 15228 7521 15229 7629 15229 7520 15229 7520 15230 7629 15230 7324 15230 7324 15231 7629 15231 7513 15231 7513 15232 7629 15232 7516 15232 7590 15233 7569 15233 7283 15233 7569 15234 7590 15234 7566 15234 7566 15235 7590 15235 7606 15235 7566 15236 7606 15236 7560 15236 7560 15237 7606 15237 7609 15237 7560 15238 7609 15238 7561 15238 7607 15239 7604 15239 7288 15239 7273 15240 7508 15240 7326 15240 7267 15241 7508 15241 7322 15241 7445 15242 7270 15242 7327 15242 7327 15243 7270 15243 7328 15243 7327 15244 7328 15244 7444 15244 7444 15245 7328 15245 7329 15245 7444 15246 7329 15246 7506 15246 7506 15247 7329 15247 7272 15247 7506 15248 7272 15248 7446 15248 7446 15249 7272 15249 7330 15249 7446 15250 7330 15250 7448 15250 7448 15251 7330 15251 7331 15251 7448 15252 7331 15252 7447 15252 7447 15253 7331 15253 7332 15253 7447 15254 7332 15254 7449 15254 7449 15255 7332 15255 7333 15255 7449 15256 7333 15256 7450 15256 7450 15257 7333 15257 7317 15257 7450 15258 7317 15258 7334 15258 7334 15259 7317 15259 7335 15259 7334 15260 7335 15260 7452 15260 7452 15261 7335 15261 7320 15261 7452 15262 7320 15262 7451 15262 7451 15263 7320 15263 7336 15263 7451 15264 7336 15264 7337 15264 7337 15265 7336 15265 7321 15265 7337 15266 7321 15266 7453 15266 7453 15267 7321 15267 7342 15267 7338 15268 7340 15268 7341 15268 7340 15269 7453 15269 7339 15269 7340 15270 7339 15270 7341 15270 7339 15271 7453 15271 7342 15271 7339 15272 7342 15272 7341 15272 7340 15273 7338 15273 7343 15273 7343 15274 7338 15274 7345 15274 7343 15275 7345 15275 7344 15275 7344 15276 7345 15276 7346 15276 7344 15277 7346 15277 7347 15277 7347 15278 7346 15278 7318 15278 7347 15279 7318 15279 7454 15279 7454 15280 7318 15280 7319 15280 7454 15281 7319 15281 7348 15281 7348 15282 7319 15282 7315 15282 7348 15283 7315 15283 7455 15283 7455 15284 7315 15284 7316 15284 7455 15285 7316 15285 7456 15285 7456 15286 7316 15286 7349 15286 7456 15287 7349 15287 7457 15287 7457 15288 7349 15288 7350 15288 7457 15289 7350 15289 7458 15289 7458 15290 7350 15290 7351 15290 7458 15291 7351 15291 7459 15291 7459 15292 7351 15292 7310 15292 7459 15293 7310 15293 7352 15293 7352 15294 7310 15294 7314 15294 7352 15295 7314 15295 7461 15295 7461 15296 7314 15296 7313 15296 7461 15297 7313 15297 7460 15297 7460 15298 7313 15298 7312 15298 7460 15299 7312 15299 7353 15299 7353 15300 7312 15300 7354 15300 7353 15301 7354 15301 7356 15301 7356 15302 7354 15302 7355 15302 7356 15303 7355 15303 7357 15303 7357 15304 7355 15304 7311 15304 7357 15305 7311 15305 7358 15305 7358 15306 7311 15306 7309 15306 7358 15307 7309 15307 7462 15307 7462 15308 7309 15308 7360 15308 7462 15309 7360 15309 7359 15309 7359 15310 7360 15310 7361 15310 7359 15311 7361 15311 7463 15311 7463 15312 7361 15312 7362 15312 7463 15313 7362 15313 7363 15313 7363 15314 7362 15314 7308 15314 7363 15315 7308 15315 7464 15315 7464 15316 7308 15316 7365 15316 7464 15317 7365 15317 7364 15317 7364 15318 7365 15318 7366 15318 7364 15319 7366 15319 7367 15319 7367 15320 7366 15320 7368 15320 7367 15321 7368 15321 7369 15321 7369 15322 7368 15322 7370 15322 7369 15323 7370 15323 7469 15323 7469 15324 7370 15324 7371 15324 7469 15325 7371 15325 7373 15325 7373 15326 7371 15326 7374 15326 7372 15327 7378 15327 7376 15327 7375 15328 7374 15328 7377 15328 7374 15329 7375 15329 7373 15329 7378 15330 7372 15330 7379 15330 7379 15331 7372 15331 7377 15331 7375 15332 7376 15332 7373 15332 7376 15333 7375 15333 7372 15333 7372 15334 7375 15334 7377 15334 7378 15335 7379 15335 7468 15335 7468 15336 7379 15336 7380 15336 7468 15337 7380 15337 7381 15337 7381 15338 7380 15338 7306 15338 7381 15339 7306 15339 7382 15339 7382 15340 7306 15340 7307 15340 7382 15341 7307 15341 7383 15341 7383 15342 7307 15342 7384 15342 7383 15343 7384 15343 7465 15343 7465 15344 7384 15344 7305 15344 7465 15345 7305 15345 7385 15345 7385 15346 7305 15346 7386 15346 7385 15347 7386 15347 7466 15347 7466 15348 7386 15348 7304 15348 7466 15349 7304 15349 7467 15349 7467 15350 7304 15350 7387 15350 7467 15351 7387 15351 7470 15351 7470 15352 7387 15352 7303 15352 7470 15353 7303 15353 7472 15353 7472 15354 7303 15354 7298 15354 7472 15355 7298 15355 7388 15355 7388 15356 7298 15356 7301 15356 7388 15357 7301 15357 7389 15357 7389 15358 7301 15358 7390 15358 7389 15359 7390 15359 7391 15359 7391 15360 7390 15360 6536 15360 7391 15361 6536 15361 7392 15361 7392 15362 6536 15362 7302 15362 7392 15363 7302 15363 7393 15363 7393 15364 7302 15364 7394 15364 7393 15365 7394 15365 7474 15365 7474 15366 7394 15366 7300 15366 7474 15367 7300 15367 7473 15367 7473 15368 7300 15368 7299 15368 7473 15369 7299 15369 7395 15369 7395 15370 7299 15370 7292 15370 7395 15371 7292 15371 7476 15371 7476 15372 7292 15372 7396 15372 7476 15373 7396 15373 7475 15373 7475 15374 7396 15374 7397 15374 7475 15375 7397 15375 7478 15375 7478 15376 7397 15376 7291 15376 7478 15377 7291 15377 7477 15377 7477 15378 7291 15378 7290 15378 7477 15379 7290 15379 7479 15379 7479 15380 7290 15380 7289 15380 7479 15381 7289 15381 7480 15381 7480 15382 7289 15382 7398 15382 7480 15383 7398 15383 7399 15383 7399 15384 7398 15384 7294 15384 7399 15385 7294 15385 7400 15385 7400 15386 7294 15386 6620 15386 7400 15387 6620 15387 7401 15387 7401 15388 6620 15388 6550 15388 7405 15389 7402 15389 7401 15389 7403 15390 7405 15390 10464 15390 7402 15391 7405 15391 7403 15391 7405 15392 7401 15392 7404 15392 7404 15393 7401 15393 6550 15393 7404 15394 10464 15394 7405 15394 7403 15395 10464 15395 7482 15395 7482 15396 10464 15396 10404 15396 7482 15397 10404 15397 7406 15397 7406 15398 10404 15398 7295 15398 7406 15399 7295 15399 7407 15399 7407 15400 7295 15400 7296 15400 7407 15401 7296 15401 7481 15401 7481 15402 7296 15402 7293 15402 7481 15403 7293 15403 7408 15403 7408 15404 7293 15404 7288 15404 7408 15405 7288 15405 7483 15405 7483 15406 7288 15406 7287 15406 7483 15407 7287 15407 7409 15407 7409 15408 7287 15408 7286 15408 7409 15409 7286 15409 7410 15409 7410 15410 7286 15410 7411 15410 7410 15411 7411 15411 7484 15411 7484 15412 7411 15412 7325 15412 7484 15413 7325 15413 7485 15413 7485 15414 7325 15414 7282 15414 7485 15415 7282 15415 7489 15415 7489 15416 7282 15416 7284 15416 7489 15417 7284 15417 7412 15417 7412 15418 7284 15418 7414 15418 7412 15419 7414 15419 7413 15419 7413 15420 7414 15420 10476 15420 7413 15421 10476 15421 7488 15421 7488 15422 10476 15422 7415 15422 7488 15423 7415 15423 7490 15423 7490 15424 7415 15424 7285 15424 7490 15425 7285 15425 7491 15425 7491 15426 7285 15426 7416 15426 7491 15427 7416 15427 7486 15427 7486 15428 7416 15428 7281 15428 7486 15429 7281 15429 7487 15429 7487 15430 7281 15430 7417 15430 7487 15431 7417 15431 7492 15431 7492 15432 7417 15432 7418 15432 7492 15433 7418 15433 7420 15433 7420 15434 7418 15434 7419 15434 7420 15435 7419 15435 7421 15435 7421 15436 7419 15436 7280 15436 7421 15437 7280 15437 7422 15437 7422 15438 7280 15438 7279 15438 7422 15439 7279 15439 7493 15439 7493 15440 7279 15440 7423 15440 7493 15441 7423 15441 7501 15441 7501 15442 7423 15442 7424 15442 7501 15443 7424 15443 7499 15443 7499 15444 7424 15444 7425 15444 7499 15445 7425 15445 7500 15445 7500 15446 7425 15446 7426 15446 7500 15447 7426 15447 7427 15447 7427 15448 7426 15448 10488 15448 7502 15449 7427 15449 7428 15449 7428 15450 7431 15450 7430 15450 7431 15451 7428 15451 10488 15451 7428 15452 7429 15452 7502 15452 7428 15453 7430 15453 7429 15453 7428 15454 7427 15454 10488 15454 7429 15455 7430 15455 7432 15455 7432 15456 7430 15456 7433 15456 7432 15457 7433 15457 7498 15457 7498 15458 7433 15458 7434 15458 7498 15459 7434 15459 7497 15459 7497 15460 7434 15460 7278 15460 7497 15461 7278 15461 7494 15461 7494 15462 7278 15462 7277 15462 7494 15463 7277 15463 7495 15463 7495 15464 7277 15464 7276 15464 7495 15465 7276 15465 7435 15465 7435 15466 7276 15466 7275 15466 7435 15467 7275 15467 7436 15467 7436 15468 7275 15468 7437 15468 7436 15469 7437 15469 7496 15469 7496 15470 7437 15470 7274 15470 7496 15471 7274 15471 7438 15471 7438 15472 7274 15472 7322 15472 7438 15473 7322 15473 7503 15473 7503 15474 7322 15474 7273 15474 7503 15475 7273 15475 7443 15475 7443 15476 7273 15476 7271 15476 7443 15477 7271 15477 7440 15477 7440 15478 7271 15478 7439 15478 7440 15479 7439 15479 7442 15479 7442 15480 7439 15480 7441 15480 7442 15481 7441 15481 7445 15481 7445 15482 7441 15482 7270 15482 7440 15483 7442 15483 7443 15483 7443 15484 7442 15484 7445 15484 7443 15485 7445 15485 7444 15485 7444 15486 7445 15486 7327 15486 7444 15487 7506 15487 7443 15487 7443 15488 7506 15488 7503 15488 7503 15489 7506 15489 7510 15489 7503 15490 7510 15490 7509 15490 7446 15491 7505 15491 7506 15491 7448 15492 7615 15492 7446 15492 7447 15493 7615 15493 7448 15493 7449 15494 7614 15494 7447 15494 7447 15495 7614 15495 7615 15495 7450 15496 7614 15496 7449 15496 7334 15497 7348 15497 7450 15497 7450 15498 7348 15498 7614 15498 7452 15499 7453 15499 7334 15499 7334 15500 7453 15500 7454 15500 7334 15501 7454 15501 7348 15501 7451 15502 7337 15502 7452 15502 7452 15503 7337 15503 7453 15503 7453 15504 7340 15504 7454 15504 7454 15505 7340 15505 7347 15505 7347 15506 7340 15506 7343 15506 7347 15507 7343 15507 7344 15507 7614 15508 7348 15508 7616 15508 7616 15509 7348 15509 7455 15509 7616 15510 7455 15510 7611 15510 7611 15511 7455 15511 7456 15511 7611 15512 7456 15512 7457 15512 7611 15513 7457 15513 7458 15513 7611 15514 7458 15514 7618 15514 7618 15515 7458 15515 7525 15515 7618 15516 7525 15516 7613 15516 7525 15517 7458 15517 7528 15517 7528 15518 7458 15518 7459 15518 7528 15519 7459 15519 7530 15519 7530 15520 7459 15520 7358 15520 7530 15521 7358 15521 7531 15521 7531 15522 7358 15522 7535 15522 7535 15523 7358 15523 7462 15523 7535 15524 7462 15524 7542 15524 7542 15525 7462 15525 7634 15525 7358 15526 7459 15526 7357 15526 7357 15527 7459 15527 7352 15527 7357 15528 7352 15528 7353 15528 7353 15529 7352 15529 7460 15529 7460 15530 7352 15530 7461 15530 7353 15531 7356 15531 7357 15531 7359 15532 7637 15532 7462 15532 7462 15533 7637 15533 7634 15533 7463 15534 7637 15534 7359 15534 7363 15535 7637 15535 7463 15535 7464 15536 7639 15536 7363 15536 7363 15537 7639 15537 7637 15537 7364 15538 7383 15538 7464 15538 7464 15539 7383 15539 7465 15539 7464 15540 7465 15540 7639 15540 7639 15541 7465 15541 7635 15541 7635 15542 7465 15542 7385 15542 7635 15543 7385 15543 7466 15543 7635 15544 7466 15544 7467 15544 7635 15545 7467 15545 7470 15545 7635 15546 7470 15546 7638 15546 7638 15547 7470 15547 7550 15547 7638 15548 7550 15548 7548 15548 7367 15549 7373 15549 7364 15549 7364 15550 7373 15550 7378 15550 7364 15551 7378 15551 7383 15551 7383 15552 7378 15552 7382 15552 7382 15553 7378 15553 7468 15553 7382 15554 7468 15554 7381 15554 7369 15555 7469 15555 7367 15555 7367 15556 7469 15556 7373 15556 7373 15557 7376 15557 7378 15557 7550 15558 7470 15558 7471 15558 7471 15559 7470 15559 7472 15559 7471 15560 7472 15560 7553 15560 7553 15561 7472 15561 7555 15561 7555 15562 7472 15562 7473 15562 7555 15563 7473 15563 7558 15563 7558 15564 7473 15564 7395 15564 7558 15565 7395 15565 7559 15565 7559 15566 7395 15566 7593 15566 7472 15567 7388 15567 7473 15567 7473 15568 7388 15568 7474 15568 7474 15569 7388 15569 7391 15569 7474 15570 7391 15570 7392 15570 7388 15571 7389 15571 7391 15571 7392 15572 7393 15572 7474 15572 7476 15573 7594 15573 7395 15573 7475 15574 7594 15574 7476 15574 7478 15575 7594 15575 7475 15575 7477 15576 7592 15576 7478 15576 7478 15577 7592 15577 7594 15577 7479 15578 7408 15578 7477 15578 7477 15579 7408 15579 7591 15579 7477 15580 7591 15580 7592 15580 7480 15581 7401 15581 7479 15581 7479 15582 7401 15582 7481 15582 7479 15583 7481 15583 7408 15583 7399 15584 7400 15584 7480 15584 7480 15585 7400 15585 7401 15585 7481 15586 7401 15586 7403 15586 7403 15587 7401 15587 7402 15587 7481 15588 7403 15588 7407 15588 7407 15589 7403 15589 7482 15589 7407 15590 7482 15590 7406 15590 7591 15591 7408 15591 7483 15591 7591 15592 7483 15592 7409 15592 7591 15593 7409 15593 7410 15593 7591 15594 7410 15594 7596 15594 7596 15595 7410 15595 7484 15595 7596 15596 7484 15596 7595 15596 7595 15597 7484 15597 7571 15597 7571 15598 7484 15598 7573 15598 7573 15599 7484 15599 7485 15599 7573 15600 7485 15600 7572 15600 7572 15601 7485 15601 7486 15601 7572 15602 7486 15602 7577 15602 7577 15603 7486 15603 7579 15603 7579 15604 7486 15604 7487 15604 7579 15605 7487 15605 7582 15605 7582 15606 7487 15606 7659 15606 7486 15607 7485 15607 7491 15607 7491 15608 7485 15608 7489 15608 7491 15609 7489 15609 7488 15609 7488 15610 7489 15610 7413 15610 7413 15611 7489 15611 7412 15611 7488 15612 7490 15612 7491 15612 7492 15613 7657 15613 7487 15613 7487 15614 7657 15614 7659 15614 7420 15615 7656 15615 7492 15615 7492 15616 7656 15616 7657 15616 7421 15617 7656 15617 7420 15617 7422 15618 7656 15618 7421 15618 7493 15619 7494 15619 7422 15619 7422 15620 7494 15620 7495 15620 7422 15621 7495 15621 7656 15621 7656 15622 7495 15622 7654 15622 7654 15623 7495 15623 7435 15623 7654 15624 7435 15624 7436 15624 7654 15625 7436 15625 7655 15625 7655 15626 7436 15626 7496 15626 7655 15627 7496 15627 7438 15627 7655 15628 7438 15628 7660 15628 7660 15629 7438 15629 7269 15629 7501 15630 7427 15630 7493 15630 7493 15631 7427 15631 7429 15631 7493 15632 7429 15632 7494 15632 7494 15633 7429 15633 7497 15633 7497 15634 7429 15634 7432 15634 7497 15635 7432 15635 7498 15635 7499 15636 7500 15636 7501 15636 7501 15637 7500 15637 7427 15637 7427 15638 7502 15638 7429 15638 7269 15639 7438 15639 7507 15639 7507 15640 7438 15640 7503 15640 7507 15641 7503 15641 7509 15641 7582 15642 7659 15642 7586 15642 7586 15643 7659 15643 7658 15643 7586 15644 7658 15644 7583 15644 7583 15645 7658 15645 7268 15645 7268 15646 7658 15646 7660 15646 7268 15647 7660 15647 7269 15647 7636 15648 7539 15648 7634 15648 7634 15649 7539 15649 7542 15649 7539 15650 7636 15650 7544 15650 7544 15651 7636 15651 7546 15651 7546 15652 7636 15652 7548 15652 7548 15653 7636 15653 7638 15653 7446 15654 7615 15654 7612 15654 7446 15655 7612 15655 7514 15655 7514 15656 7612 15656 7515 15656 7515 15657 7612 15657 7518 15657 7518 15658 7612 15658 7522 15658 7522 15659 7612 15659 7613 15659 7522 15660 7613 15660 7524 15660 7524 15661 7613 15661 7525 15661 7395 15662 7594 15662 7593 15662 7559 15663 7593 15663 7563 15663 7563 15664 7593 15664 7595 15664 7563 15665 7595 15665 7564 15665 7564 15666 7595 15666 7504 15666 7504 15667 7595 15667 7570 15667 7570 15668 7595 15668 7571 15668 7514 15669 7505 15669 7446 15669 7506 15670 7505 15670 7510 15670 7510 15671 7511 15671 7509 15671 7509 15672 7511 15672 7326 15672 7507 15673 7509 15673 7508 15673 7508 15674 7509 15674 7326 15674 7512 15675 7511 15675 7505 15675 7505 15676 7511 15676 7510 15676 7514 15677 7516 15677 7505 15677 7505 15678 7516 15678 7512 15678 7516 15679 7514 15679 7515 15679 7513 15680 7516 15680 7515 15680 7518 15681 7324 15681 7515 15681 7515 15682 7324 15682 7513 15682 7518 15683 7522 15683 7519 15683 7526 15684 7517 15684 7524 15684 7518 15685 7519 15685 7324 15685 7520 15686 7519 15686 7521 15686 7522 15687 7521 15687 7519 15687 7519 15688 7520 15688 7324 15688 7522 15689 7517 15689 7521 15689 7521 15690 7517 15690 7526 15690 7524 15691 7517 15691 7522 15691 7524 15692 7525 15692 7526 15692 7525 15693 7523 15693 7526 15693 7528 15694 7529 15694 7525 15694 7525 15695 7529 15695 7523 15695 7527 15696 7529 15696 7530 15696 7529 15697 7528 15697 7530 15697 7531 15698 7532 15698 7530 15698 7530 15699 7532 15699 7527 15699 7531 15700 7534 15700 7532 15700 7532 15701 7534 15701 7533 15701 7533 15702 7534 15702 7535 15702 7534 15703 7531 15703 7535 15703 7542 15704 7538 15704 7535 15704 7535 15705 7538 15705 7533 15705 7540 15706 7536 15706 7541 15706 7538 15707 7540 15707 7537 15707 7538 15708 7537 15708 7536 15708 7536 15709 7538 15709 7539 15709 7539 15710 7538 15710 7542 15710 7540 15711 7538 15711 7536 15711 7541 15712 7536 15712 7537 15712 7544 15713 7543 15713 7539 15713 7539 15714 7543 15714 7536 15714 7549 15715 7545 15715 7548 15715 7544 15716 7546 15716 7543 15716 7546 15717 7547 15717 7543 15717 7547 15718 7546 15718 7545 15718 7547 15719 7545 15719 7549 15719 7545 15720 7546 15720 7548 15720 7548 15721 7552 15721 7549 15721 7548 15722 7551 15722 7552 15722 7551 15723 7548 15723 7550 15723 7471 15724 7554 15724 7550 15724 7550 15725 7554 15725 7551 15725 7297 15726 7554 15726 7553 15726 7471 15727 7553 15727 7554 15727 7555 15728 7556 15728 7553 15728 7553 15729 7556 15729 7297 15729 7558 15730 7557 15730 7556 15730 7555 15731 7558 15731 7556 15731 7559 15732 7561 15732 7558 15732 7558 15733 7561 15733 7557 15733 7559 15734 7562 15734 7561 15734 7560 15735 7562 15735 7563 15735 7562 15736 7559 15736 7563 15736 7560 15737 7561 15737 7562 15737 7560 15738 7568 15738 7566 15738 7569 15739 7565 15739 7504 15739 7563 15740 7567 15740 7560 15740 7564 15741 7568 15741 7567 15741 7565 15742 7564 15742 7504 15742 7568 15743 7564 15743 7565 15743 7560 15744 7567 15744 7568 15744 7563 15745 7564 15745 7567 15745 7568 15746 7565 15746 7566 15746 7569 15747 7566 15747 7565 15747 7570 15748 7569 15748 7504 15748 7570 15749 7571 15749 7569 15749 7569 15750 7571 15750 7283 15750 7573 15751 7574 15751 7571 15751 7571 15752 7574 15752 7283 15752 7575 15753 7574 15753 7572 15753 7574 15754 7573 15754 7572 15754 7577 15755 7576 15755 7572 15755 7572 15756 7576 15756 7575 15756 7577 15757 7579 15757 7576 15757 7579 15758 7578 15758 7576 15758 7582 15759 7581 15759 7579 15759 7579 15760 7581 15760 7578 15760 7581 15761 7582 15761 7586 15761 7581 15762 7586 15762 7580 15762 7586 15763 7584 15763 7580 15763 7587 15764 7585 15764 7588 15764 7584 15765 7587 15765 7588 15765 7586 15766 7587 15766 7584 15766 7585 15767 7583 15767 7268 15767 7583 15768 7585 15768 7587 15768 7588 15769 7585 15769 7268 15769 7588 15770 7268 15770 7323 15770 7587 15771 7586 15771 7583 15771 7268 15772 7266 15772 7323 15772 7591 15773 7596 15773 7600 15773 7591 15774 7597 15774 7592 15774 7593 15775 7594 15775 7602 15775 7594 15776 7592 15776 7598 15776 7595 15777 7593 15777 7599 15777 7591 15778 7600 15778 7597 15778 7592 15779 7597 15779 7598 15779 7595 15780 7605 15780 7596 15780 7595 15781 7601 15781 7605 15781 7596 15782 7605 15782 7600 15782 7593 15783 7602 15783 7599 15783 7595 15784 7599 15784 7601 15784 7594 15785 7598 15785 7603 15785 7594 15786 7603 15786 7602 15786 7600 15787 7604 15787 7597 15787 7603 15788 7609 15788 7602 15788 7598 15789 7608 15789 7603 15789 7597 15790 7607 15790 7598 15790 7601 15791 7599 15791 7590 15791 7599 15792 7606 15792 7590 15792 7600 15793 7589 15793 7604 15793 7598 15794 7607 15794 7608 15794 7597 15795 7604 15795 7607 15795 7602 15796 7609 15796 7599 15796 7601 15797 7590 15797 7605 15797 7600 15798 7605 15798 7589 15798 7603 15799 7608 15799 7609 15799 7605 15800 7590 15800 7589 15800 7599 15801 7609 15801 7606 15801 7612 15802 7615 15802 7617 15802 7611 15803 7626 15803 7616 15803 7613 15804 7612 15804 7621 15804 7611 15805 7618 15805 7625 15805 7612 15806 7617 15806 7620 15806 7613 15807 7623 15807 7618 15807 7615 15808 7614 15808 7624 15808 7615 15809 7624 15809 7622 15809 7616 15810 7627 15810 7614 15810 7615 15811 7622 15811 7617 15811 7613 15812 7621 15812 7623 15812 7612 15813 7620 15813 7621 15813 7611 15814 7625 15814 7626 15814 7618 15815 7623 15815 7625 15815 7614 15816 7627 15816 7619 15816 7614 15817 7619 15817 7624 15817 7616 15818 7626 15818 7627 15818 7621 15819 7620 15819 7629 15819 7627 15820 7631 15820 7619 15820 7620 15821 7617 15821 7628 15821 7626 15822 7630 15822 7627 15822 7623 15823 7610 15823 7625 15823 7620 15824 7628 15824 7629 15824 7626 15825 7625 15825 7630 15825 7619 15826 7631 15826 7624 15826 7623 15827 7621 15827 7610 15827 7627 15828 7630 15828 7631 15828 7621 15829 7629 15829 7610 15829 7617 15830 7622 15830 7632 15830 7617 15831 7632 15831 7628 15831 7625 15832 7610 15832 7630 15832 7624 15833 7631 15833 7632 15833 7624 15834 7632 15834 7622 15834 7635 15835 7638 15835 7641 15835 7635 15836 7641 15836 7642 15836 7637 15837 7640 15837 7634 15837 7636 15838 7634 15838 7644 15838 7636 15839 7650 15839 7638 15839 7635 15840 7642 15840 7639 15840 7637 15841 7639 15841 7640 15841 7634 15842 7640 15842 7649 15842 7636 15843 7644 15843 7650 15843 7638 15844 7647 15844 7641 15844 7638 15845 7650 15845 7645 15845 7638 15846 7645 15846 7647 15846 7634 15847 7649 15847 7644 15847 7639 15848 7642 15848 7643 15848 7639 15849 7643 15849 7640 15849 7649 15850 7646 15850 7644 15850 7640 15851 7643 15851 7651 15851 7644 15852 7633 15852 7650 15852 7643 15853 7642 15853 7648 15853 7647 15854 7653 15854 7641 15854 7641 15855 7648 15855 7642 15855 7644 15856 7646 15856 7633 15856 7645 15857 7650 15857 7652 15857 7641 15858 7653 15858 7648 15858 7650 15859 7633 15859 7652 15859 7645 15860 7652 15860 7647 15860 7643 15861 7648 15861 7651 15861 7640 15862 7651 15862 7649 15862 7649 15863 7651 15863 7646 15863 7647 15864 7652 15864 7653 15864 7675 15865 7665 15865 7674 15865 7659 15866 7662 15866 7664 15866 7659 15867 7664 15867 7658 15867 7656 15868 7654 15868 7669 15868 7657 15869 7667 15869 7659 15869 7657 15870 7656 15870 7670 15870 7657 15871 7670 15871 7667 15871 7660 15872 7658 15872 7661 15872 7660 15873 7661 15873 7663 15873 7660 15874 7663 15874 7655 15874 7655 15875 7663 15875 7665 15875 7656 15876 7669 15876 7670 15876 7655 15877 7668 15877 7666 15877 7655 15878 7666 15878 7654 15878 7655 15879 7665 15879 7668 15879 7659 15880 7667 15880 7662 15880 7658 15881 7664 15881 7661 15881 7654 15882 7666 15882 7669 15882 7661 15883 7674 15883 7663 15883 7664 15884 7671 15884 7661 15884 7661 15885 7671 15885 7674 15885 7663 15886 7674 15886 7665 15886 7669 15887 7666 15887 7672 15887 7667 15888 7670 15888 7676 15888 7662 15889 7673 15889 7664 15889 7670 15890 7669 15890 7676 15890 7668 15891 7665 15891 7675 15891 7668 15892 7675 15892 7666 15892 7669 15893 7672 15893 7676 15893 7664 15894 7673 15894 7671 15894 7662 15895 7667 15895 7673 15895 7666 15896 7675 15896 7672 15896 7667 15897 7676 15897 7673 15897 7919 15898 7916 15898 7677 15898 7677 15899 7916 15899 7678 15899 7678 15900 7995 15900 7677 15900 7679 15901 7995 15901 7678 15901 6537 15902 7859 15902 7681 15902 7681 15903 7859 15903 7680 15903 7681 15904 7680 15904 7728 15904 6537 15905 7682 15905 7859 15905 7859 15906 7857 15906 7680 15906 7680 15907 7857 15907 7731 15907 7731 15908 7857 15908 7918 15908 7731 15909 7918 15909 7920 15909 7684 15910 7916 15910 7857 15910 7683 15911 8086 15911 7684 15911 7685 15912 8069 15912 7683 15912 7683 15913 8069 15913 8086 15913 7686 15914 8069 15914 7685 15914 7854 15915 8069 15915 7686 15915 7852 15916 7687 15916 7854 15916 7854 15917 7687 15917 8069 15917 7851 15918 6552 15918 7852 15918 7852 15919 6552 15919 7837 15919 7852 15920 7837 15920 7687 15920 7850 15921 7688 15921 7851 15921 7851 15922 7688 15922 6552 15922 7837 15923 6552 15923 7843 15923 7843 15924 6552 15924 7847 15924 7837 15925 7843 15925 7689 15925 7689 15926 7843 15926 7690 15926 7689 15927 7690 15927 7840 15927 8069 15928 7687 15928 8083 15928 8083 15929 7687 15929 7691 15929 8083 15930 7691 15930 7692 15930 8083 15931 7692 15931 8084 15931 8084 15932 7692 15932 7693 15932 8084 15933 7693 15933 7694 15933 8084 15934 7694 15934 8087 15934 8087 15935 7694 15935 7988 15935 8087 15936 7988 15936 7990 15936 7988 15937 7694 15937 7984 15937 7984 15938 7694 15938 7695 15938 7984 15939 7695 15939 7986 15939 7986 15940 7695 15940 7696 15940 7986 15941 7696 15941 7980 15941 7980 15942 7696 15942 7979 15942 7979 15943 7696 15943 7699 15943 7979 15944 7699 15944 7978 15944 7978 15945 7699 15945 8011 15945 7696 15946 7695 15946 7698 15946 7698 15947 7695 15947 7697 15947 7698 15948 7697 15948 10220 15948 10220 15949 7697 15949 7834 15949 7834 15950 7697 15950 7835 15950 10220 15951 7832 15951 7698 15951 7828 15952 8012 15952 7699 15952 7699 15953 8012 15953 8011 15953 7701 15954 8018 15954 7828 15954 7828 15955 8018 15955 8012 15955 7700 15956 8018 15956 7701 15956 7727 15957 8018 15957 7700 15957 7823 15958 7704 15958 7727 15958 7727 15959 7704 15959 7702 15959 7727 15960 7702 15960 8013 15960 8013 15961 7702 15961 7807 15961 8013 15962 7807 15962 7806 15962 8013 15963 7806 15963 8019 15963 8019 15964 7806 15964 7703 15964 8019 15965 7703 15965 7803 15965 8019 15966 7803 15966 8016 15966 8016 15967 7803 15967 7968 15967 8016 15968 7968 15968 7972 15968 7822 15969 7706 15969 7823 15969 7823 15970 7706 15970 7815 15970 7823 15971 7815 15971 7704 15971 7704 15972 7815 15972 7705 15972 7705 15973 7815 15973 7811 15973 7705 15974 7811 15974 7809 15974 7821 15975 10158 15975 7822 15975 7822 15976 10158 15976 7706 15976 7706 15977 7817 15977 7818 15977 7706 15978 7818 15978 7815 15978 7968 15979 7803 15979 7966 15979 7966 15980 7803 15980 7802 15980 7966 15981 7802 15981 7965 15981 7965 15982 7802 15982 7959 15982 7959 15983 7802 15983 7707 15983 7959 15984 7707 15984 7961 15984 7961 15985 7707 15985 7711 15985 7961 15986 7711 15986 7958 15986 7958 15987 7711 15987 8066 15987 7802 15988 7710 15988 7707 15988 7707 15989 7710 15989 7708 15989 7708 15990 7710 15990 7798 15990 7708 15991 7798 15991 7709 15991 7801 15992 7799 15992 7710 15992 7710 15993 7799 15993 7798 15993 7794 15994 8067 15994 7711 15994 7712 15995 8067 15995 7794 15995 7792 15996 8046 15996 7712 15996 7712 15997 8046 15997 8067 15997 7791 15998 8046 15998 7792 15998 7790 15999 7713 15999 7791 15999 7791 16000 7713 16000 8065 16000 7791 16001 8065 16001 8046 16001 7789 16002 7782 16002 7790 16002 7790 16003 7782 16003 7772 16003 7790 16004 7772 16004 7713 16004 7787 16005 7786 16005 7789 16005 7789 16006 7786 16006 7782 16006 7782 16007 7784 16007 7781 16007 7782 16008 7781 16008 7772 16008 7772 16009 7781 16009 7775 16009 7775 16010 7781 16010 7714 16010 7775 16011 7714 16011 7776 16011 8065 16012 7713 16012 7770 16012 8065 16013 7770 16013 8045 16013 8045 16014 7770 16014 7769 16014 8045 16015 7769 16015 7767 16015 8045 16016 7767 16016 7715 16016 8045 16017 7715 16017 8062 16017 8062 16018 7715 16018 7945 16018 8062 16019 7945 16019 7948 16019 7945 16020 7715 16020 7716 16020 7716 16021 7715 16021 7717 16021 7716 16022 7717 16022 7942 16022 7942 16023 7717 16023 7754 16023 7942 16024 7754 16024 7938 16024 7938 16025 7754 16025 7939 16025 7939 16026 7754 16026 7721 16026 7939 16027 7721 16027 7936 16027 7936 16028 7721 16028 8043 16028 7936 16029 8043 16029 8042 16029 7754 16030 7717 16030 7718 16030 7718 16031 7717 16031 7764 16031 7718 16032 7764 16032 7719 16032 7719 16033 7764 16033 7761 16033 7761 16034 7764 16034 7763 16034 7719 16035 7758 16035 7718 16035 7720 16036 8038 16036 7721 16036 7721 16037 8038 16037 8043 16037 7752 16038 8038 16038 7720 16038 7750 16039 8038 16039 7752 16039 7726 16040 8039 16040 7750 16040 7750 16041 8039 16041 8038 16041 7722 16042 7736 16042 7726 16042 7726 16043 7736 16043 7735 16043 7726 16044 7735 16044 8039 16044 8039 16045 7735 16045 7734 16045 8039 16046 7734 16046 7723 16046 8039 16047 7723 16047 7733 16047 8039 16048 7733 16048 8044 16048 8044 16049 7733 16049 7732 16049 8044 16050 7732 16050 7924 16050 8044 16051 7924 16051 8031 16051 7724 16052 7743 16052 7722 16052 7722 16053 7743 16053 7742 16053 7722 16054 7742 16054 7736 16054 7736 16055 7742 16055 7725 16055 7725 16056 7742 16056 6524 16056 7725 16057 6524 16057 7738 16057 7748 16058 7747 16058 7724 16058 7724 16059 7747 16059 7743 16059 7743 16060 7745 16060 7742 16060 7924 16061 7732 16061 7923 16061 7923 16062 7732 16062 7731 16062 7923 16063 7731 16063 7920 16063 7684 16064 8086 16064 8085 16064 7684 16065 8085 16065 7678 16065 8085 16066 7679 16066 7678 16066 7679 16067 8085 16067 8088 16067 7679 16068 8088 16068 7989 16068 7989 16069 8088 16069 7991 16069 7991 16070 8088 16070 7990 16070 7990 16071 8088 16071 8087 16071 8067 16072 8066 16072 7711 16072 7958 16073 8066 16073 7952 16073 7952 16074 8066 16074 8063 16074 7952 16075 8063 16075 7956 16075 7956 16076 8063 16076 7954 16076 7954 16077 8063 16077 7948 16077 7948 16078 8063 16078 8062 16078 7936 16079 8042 16079 7928 16079 7928 16080 8042 16080 8040 16080 7928 16081 8040 16081 7935 16081 7935 16082 8040 16082 7931 16082 7931 16083 8040 16083 7930 16083 7930 16084 8040 16084 8031 16084 7930 16085 8031 16085 7924 16085 8017 16086 7977 16086 8011 16086 8011 16087 7977 16087 7978 16087 7977 16088 8017 16088 7976 16088 7976 16089 8017 16089 7970 16089 7970 16090 8017 16090 7972 16090 7972 16091 8017 16091 8016 16091 8013 16092 8018 16092 7727 16092 7857 16093 7916 16093 7918 16093 7678 16094 7916 16094 7684 16094 7861 16095 7681 16095 7729 16095 7729 16096 7681 16096 7728 16096 7729 16097 7728 16097 7730 16097 7730 16098 7728 16098 7680 16098 7730 16099 7680 16099 7915 16099 7915 16100 7680 16100 7731 16100 7915 16101 7731 16101 7862 16101 7862 16102 7731 16102 7732 16102 7862 16103 7732 16103 7863 16103 7863 16104 7732 16104 7733 16104 7863 16105 7733 16105 7865 16105 7865 16106 7733 16106 7723 16106 7865 16107 7723 16107 7864 16107 7864 16108 7723 16108 7734 16108 7864 16109 7734 16109 7867 16109 7867 16110 7734 16110 7735 16110 7867 16111 7735 16111 7866 16111 7866 16112 7735 16112 7736 16112 7866 16113 7736 16113 7870 16113 7870 16114 7736 16114 7725 16114 7870 16115 7725 16115 7869 16115 7869 16116 7725 16116 7738 16116 7869 16117 7738 16117 7737 16117 7737 16118 7738 16118 6524 16118 7737 16119 6524 16119 7740 16119 7740 16120 6524 16120 7742 16120 7743 16121 7741 16121 7745 16121 7742 16122 7741 16122 7740 16122 7741 16123 7744 16123 7740 16123 7744 16124 7743 16124 7739 16124 7744 16125 7741 16125 7743 16125 7745 16126 7741 16126 7742 16126 7739 16127 7743 16127 7746 16127 7746 16128 7743 16128 7747 16128 7746 16129 7747 16129 7872 16129 7872 16130 7747 16130 7748 16130 7872 16131 7748 16131 7871 16131 7871 16132 7748 16132 7724 16132 7871 16133 7724 16133 7868 16133 7868 16134 7724 16134 7722 16134 7868 16135 7722 16135 7749 16135 7749 16136 7722 16136 7726 16136 7749 16137 7726 16137 7873 16137 7873 16138 7726 16138 7750 16138 7873 16139 7750 16139 7751 16139 7751 16140 7750 16140 7752 16140 7751 16141 7752 16141 7874 16141 7874 16142 7752 16142 7720 16142 7874 16143 7720 16143 7753 16143 7753 16144 7720 16144 7721 16144 7753 16145 7721 16145 7755 16145 7755 16146 7721 16146 7754 16146 7755 16147 7754 16147 7756 16147 7756 16148 7754 16148 7718 16148 7756 16149 7718 16149 7757 16149 7757 16150 7718 16150 7758 16150 7757 16151 7758 16151 7759 16151 7759 16152 7758 16152 7719 16152 7759 16153 7719 16153 7760 16153 7760 16154 7719 16154 7761 16154 7760 16155 7761 16155 7762 16155 7762 16156 7761 16156 7763 16156 7762 16157 7763 16157 7875 16157 7875 16158 7763 16158 7764 16158 7875 16159 7764 16159 7765 16159 7765 16160 7764 16160 7717 16160 7765 16161 7717 16161 7914 16161 7914 16162 7717 16162 7715 16162 7914 16163 7715 16163 7766 16163 7766 16164 7715 16164 7767 16164 7766 16165 7767 16165 7768 16165 7768 16166 7767 16166 7769 16166 7768 16167 7769 16167 7876 16167 7876 16168 7769 16168 7770 16168 7876 16169 7770 16169 7771 16169 7771 16170 7770 16170 7713 16170 7771 16171 7713 16171 7880 16171 7880 16172 7713 16172 7772 16172 7880 16173 7772 16173 7773 16173 7773 16174 7772 16174 7775 16174 7773 16175 7775 16175 7774 16175 7774 16176 7775 16176 7776 16176 7774 16177 7776 16177 7777 16177 7777 16178 7776 16178 7714 16178 7777 16179 7714 16179 7783 16179 7783 16180 7714 16180 7781 16180 7780 16181 7779 16181 7778 16181 7782 16182 7778 16182 7784 16182 7779 16183 7784 16183 7778 16183 7784 16184 7779 16184 7781 16184 7780 16185 7783 16185 7779 16185 7783 16186 7781 16186 7779 16186 7778 16187 7782 16187 7882 16187 7882 16188 7782 16188 7786 16188 7882 16189 7786 16189 7785 16189 7785 16190 7786 16190 7787 16190 7785 16191 7787 16191 7788 16191 7788 16192 7787 16192 7789 16192 7788 16193 7789 16193 7881 16193 7881 16194 7789 16194 7790 16194 7881 16195 7790 16195 7877 16195 7877 16196 7790 16196 7791 16196 7877 16197 7791 16197 7793 16197 7793 16198 7791 16198 7792 16198 7793 16199 7792 16199 7878 16199 7878 16200 7792 16200 7712 16200 7878 16201 7712 16201 7879 16201 7879 16202 7712 16202 7794 16202 7879 16203 7794 16203 7795 16203 7795 16204 7794 16204 7711 16204 7795 16205 7711 16205 7796 16205 7796 16206 7711 16206 7707 16206 7796 16207 7707 16207 7797 16207 7797 16208 7707 16208 7708 16208 7797 16209 7708 16209 7885 16209 7885 16210 7708 16210 7709 16210 7885 16211 7709 16211 7884 16211 7884 16212 7709 16212 7798 16212 7884 16213 7798 16213 7886 16213 7886 16214 7798 16214 7799 16214 7886 16215 7799 16215 7887 16215 7887 16216 7799 16216 7801 16216 7887 16217 7801 16217 7800 16217 7800 16218 7801 16218 7710 16218 7800 16219 7710 16219 7883 16219 7883 16220 7710 16220 7802 16220 7883 16221 7802 16221 7888 16221 7888 16222 7802 16222 7803 16222 7888 16223 7803 16223 7804 16223 7804 16224 7803 16224 7703 16224 7804 16225 7703 16225 7805 16225 7805 16226 7703 16226 7806 16226 7805 16227 7806 16227 7889 16227 7889 16228 7806 16228 7807 16228 7889 16229 7807 16229 7808 16229 7808 16230 7807 16230 7702 16230 7808 16231 7702 16231 7890 16231 7890 16232 7702 16232 7704 16232 7890 16233 7704 16233 7891 16233 7891 16234 7704 16234 7705 16234 7891 16235 7705 16235 7810 16235 7810 16236 7705 16236 7809 16236 7810 16237 7809 16237 7893 16237 7893 16238 7809 16238 7811 16238 7893 16239 7811 16239 7814 16239 7814 16240 7811 16240 7815 16240 7815 16241 7816 16241 7814 16241 7816 16242 7813 16242 7814 16242 7813 16243 7816 16243 7812 16243 7818 16244 7816 16244 7815 16244 7816 16245 7818 16245 7817 16245 7706 16246 7812 16246 7817 16246 7816 16247 7817 16247 7812 16247 7812 16248 7706 16248 7819 16248 7819 16249 7706 16249 10158 16249 7819 16250 10158 16250 7820 16250 7820 16251 10158 16251 7821 16251 7820 16252 7821 16252 7894 16252 7894 16253 7821 16253 7822 16253 7894 16254 7822 16254 7892 16254 7892 16255 7822 16255 7823 16255 7892 16256 7823 16256 7824 16256 7824 16257 7823 16257 7727 16257 7824 16258 7727 16258 7825 16258 7825 16259 7727 16259 7700 16259 7825 16260 7700 16260 7826 16260 7826 16261 7700 16261 7701 16261 7826 16262 7701 16262 7827 16262 7827 16263 7701 16263 7828 16263 7827 16264 7828 16264 7895 16264 7895 16265 7828 16265 7699 16265 7895 16266 7699 16266 7829 16266 7829 16267 7699 16267 7696 16267 7829 16268 7696 16268 7900 16268 7900 16269 7696 16269 7698 16269 7900 16270 7698 16270 7830 16270 7830 16271 7698 16271 7832 16271 7830 16272 7832 16272 7831 16272 7831 16273 7832 16273 10220 16273 7831 16274 10220 16274 7901 16274 7901 16275 10220 16275 7834 16275 7901 16276 7834 16276 7833 16276 7833 16277 7834 16277 7835 16277 7833 16278 7835 16278 7899 16278 7899 16279 7835 16279 7697 16279 7899 16280 7697 16280 7836 16280 7836 16281 7697 16281 7695 16281 7836 16282 7695 16282 7898 16282 7898 16283 7695 16283 7694 16283 7898 16284 7694 16284 7902 16284 7902 16285 7694 16285 7693 16285 7902 16286 7693 16286 7903 16286 7903 16287 7693 16287 7692 16287 7903 16288 7692 16288 7904 16288 7904 16289 7692 16289 7691 16289 7904 16290 7691 16290 7913 16290 7913 16291 7691 16291 7687 16291 7913 16292 7687 16292 7908 16292 7908 16293 7687 16293 7837 16293 7908 16294 7837 16294 7910 16294 7910 16295 7837 16295 7689 16295 7910 16296 7689 16296 7838 16296 7838 16297 7689 16297 7840 16297 7838 16298 7840 16298 7839 16298 7839 16299 7840 16299 7690 16299 7839 16300 7690 16300 7841 16300 7841 16301 7690 16301 7843 16301 7846 16302 7844 16302 7841 16302 7842 16303 7844 16303 7845 16303 7843 16304 7846 16304 7841 16304 7845 16305 7844 16305 7846 16305 7842 16306 7845 16306 7847 16306 7847 16307 6552 16307 7842 16307 7847 16308 7845 16308 7846 16308 7847 16309 7846 16309 7843 16309 7842 16310 6552 16310 7909 16310 7909 16311 6552 16311 7688 16311 7909 16312 7688 16312 7848 16312 7848 16313 7688 16313 7850 16313 7848 16314 7850 16314 7849 16314 7849 16315 7850 16315 7851 16315 7849 16316 7851 16316 7905 16316 7905 16317 7851 16317 7852 16317 7905 16318 7852 16318 7853 16318 7853 16319 7852 16319 7854 16319 7853 16320 7854 16320 7906 16320 7906 16321 7854 16321 7686 16321 7906 16322 7686 16322 7855 16322 7855 16323 7686 16323 7685 16323 7855 16324 7685 16324 7907 16324 7907 16325 7685 16325 7683 16325 7907 16326 7683 16326 7911 16326 7911 16327 7683 16327 7684 16327 7911 16328 7684 16328 7912 16328 7912 16329 7684 16329 7857 16329 7912 16330 7857 16330 7856 16330 7856 16331 7857 16331 7859 16331 7856 16332 7859 16332 7858 16332 7858 16333 7859 16333 7682 16333 7858 16334 7682 16334 7860 16334 7860 16335 7682 16335 6537 16335 7860 16336 6537 16336 7861 16336 7861 16337 6537 16337 7681 16337 7858 16338 7860 16338 7856 16338 7856 16339 7860 16339 7861 16339 7856 16340 7861 16340 7730 16340 7730 16341 7861 16341 7729 16341 7730 16342 7915 16342 7856 16342 7856 16343 7915 16343 7912 16343 7912 16344 7915 16344 7921 16344 7912 16345 7921 16345 7917 16345 7862 16346 7922 16346 7915 16346 7863 16347 8021 16347 7862 16347 7862 16348 8021 16348 8024 16348 7865 16349 8021 16349 7863 16349 7864 16350 8021 16350 7865 16350 7867 16351 8022 16351 7864 16351 7864 16352 8022 16352 8021 16352 7866 16353 7749 16353 7867 16353 7867 16354 7749 16354 8022 16354 7870 16355 7740 16355 7866 16355 7866 16356 7740 16356 7868 16356 7866 16357 7868 16357 7749 16357 7869 16358 7737 16358 7870 16358 7870 16359 7737 16359 7740 16359 7740 16360 7744 16360 7739 16360 7740 16361 7739 16361 7868 16361 7868 16362 7739 16362 7871 16362 7871 16363 7739 16363 7746 16363 7871 16364 7746 16364 7872 16364 8022 16365 7749 16365 7873 16365 8022 16366 7873 16366 8027 16366 8027 16367 7873 16367 7751 16367 8027 16368 7751 16368 7874 16368 8027 16369 7874 16369 7753 16369 8027 16370 7753 16370 8026 16370 8026 16371 7753 16371 7937 16371 8026 16372 7937 16372 7927 16372 7937 16373 7753 16373 7940 16373 7940 16374 7753 16374 7755 16374 7940 16375 7755 16375 7941 16375 7941 16376 7755 16376 7765 16376 7941 16377 7765 16377 7944 16377 7944 16378 7765 16378 7943 16378 7943 16379 7765 16379 7914 16379 7943 16380 7914 16380 7947 16380 7947 16381 7914 16381 8049 16381 7765 16382 7755 16382 7875 16382 7875 16383 7755 16383 7756 16383 7875 16384 7756 16384 7760 16384 7760 16385 7756 16385 7759 16385 7759 16386 7756 16386 7757 16386 7760 16387 7762 16387 7875 16387 7766 16388 8047 16388 7914 16388 7914 16389 8047 16389 8049 16389 7768 16390 8048 16390 7766 16390 7766 16391 8048 16391 8047 16391 7876 16392 8048 16392 7768 16392 7771 16393 8051 16393 7876 16393 7876 16394 8051 16394 8048 16394 7880 16395 7881 16395 7771 16395 7771 16396 7881 16396 7877 16396 7771 16397 7877 16397 8051 16397 8051 16398 7877 16398 7793 16398 8051 16399 7793 16399 7878 16399 8051 16400 7878 16400 7879 16400 8051 16401 7879 16401 8050 16401 8050 16402 7879 16402 7795 16402 8050 16403 7795 16403 7957 16403 8050 16404 7957 16404 7951 16404 7773 16405 7783 16405 7880 16405 7880 16406 7783 16406 7778 16406 7880 16407 7778 16407 7881 16407 7881 16408 7778 16408 7788 16408 7788 16409 7778 16409 7882 16409 7788 16410 7882 16410 7785 16410 7774 16411 7777 16411 7773 16411 7773 16412 7777 16412 7783 16412 7783 16413 7780 16413 7778 16413 7957 16414 7795 16414 7962 16414 7962 16415 7795 16415 7796 16415 7962 16416 7796 16416 7960 16416 7960 16417 7796 16417 7964 16417 7964 16418 7796 16418 7883 16418 7964 16419 7883 16419 7963 16419 7963 16420 7883 16420 7888 16420 7963 16421 7888 16421 7967 16421 7967 16422 7888 16422 7998 16422 7796 16423 7797 16423 7883 16423 7883 16424 7797 16424 7800 16424 7800 16425 7797 16425 7884 16425 7800 16426 7884 16426 7886 16426 7797 16427 7885 16427 7884 16427 7886 16428 7887 16428 7800 16428 7804 16429 8008 16429 7888 16429 7888 16430 8008 16430 7998 16430 7805 16431 8008 16431 7804 16431 7889 16432 8008 16432 7805 16432 7808 16433 8001 16433 7889 16433 7889 16434 8001 16434 8008 16434 7890 16435 7824 16435 7808 16435 7808 16436 7824 16436 7997 16436 7808 16437 7997 16437 8001 16437 7891 16438 7814 16438 7890 16438 7890 16439 7814 16439 7892 16439 7890 16440 7892 16440 7824 16440 7810 16441 7893 16441 7891 16441 7891 16442 7893 16442 7814 16442 7892 16443 7814 16443 7812 16443 7812 16444 7814 16444 7813 16444 7892 16445 7812 16445 7894 16445 7894 16446 7812 16446 7819 16446 7894 16447 7819 16447 7820 16447 7997 16448 7824 16448 7825 16448 7997 16449 7825 16449 7826 16449 7997 16450 7826 16450 8002 16450 8002 16451 7826 16451 7827 16451 8002 16452 7827 16452 7895 16452 8002 16453 7895 16453 8000 16453 8000 16454 7895 16454 7896 16454 7896 16455 7895 16455 7981 16455 7981 16456 7895 16456 7829 16456 7981 16457 7829 16457 7897 16457 7897 16458 7829 16458 7836 16458 7897 16459 7836 16459 7982 16459 7982 16460 7836 16460 7985 16460 7985 16461 7836 16461 7898 16461 7985 16462 7898 16462 7987 16462 7987 16463 7898 16463 8072 16463 7836 16464 7829 16464 7899 16464 7899 16465 7829 16465 7900 16465 7899 16466 7900 16466 7901 16466 7901 16467 7900 16467 7831 16467 7831 16468 7900 16468 7830 16468 7901 16469 7833 16469 7899 16469 7902 16470 8071 16470 7898 16470 7898 16471 8071 16471 8072 16471 7903 16472 8071 16472 7902 16472 7904 16473 8071 16473 7903 16473 7913 16474 8074 16474 7904 16474 7904 16475 8074 16475 8071 16475 7908 16476 7905 16476 7913 16476 7913 16477 7905 16477 7853 16477 7913 16478 7853 16478 8074 16478 8074 16479 7853 16479 8068 16479 8068 16480 7853 16480 7906 16480 8068 16481 7906 16481 7855 16481 8068 16482 7855 16482 8080 16482 8080 16483 7855 16483 7907 16483 8080 16484 7907 16484 7911 16484 8080 16485 7911 16485 8070 16485 8070 16486 7911 16486 7677 16486 8070 16487 7677 16487 7995 16487 7910 16488 7841 16488 7908 16488 7908 16489 7841 16489 7842 16489 7908 16490 7842 16490 7905 16490 7905 16491 7842 16491 7849 16491 7849 16492 7842 16492 7909 16492 7849 16493 7909 16493 7848 16493 7838 16494 7839 16494 7910 16494 7910 16495 7839 16495 7841 16495 7841 16496 7844 16496 7842 16496 7677 16497 7911 16497 7919 16497 7919 16498 7911 16498 7912 16498 7919 16499 7912 16499 7917 16499 7987 16500 8072 16500 7992 16500 7992 16501 8072 16501 8075 16501 7992 16502 8075 16502 7996 16502 7996 16503 8075 16503 7995 16503 7995 16504 8075 16504 8070 16504 8049 16505 7946 16505 7947 16505 7946 16506 8049 16506 8052 16506 7946 16507 8052 16507 7949 16507 7949 16508 8052 16508 7951 16508 7951 16509 8052 16509 8050 16509 7862 16510 8024 16510 7925 16510 8020 16511 7925 16511 8024 16511 7925 16512 8020 16512 7926 16512 7926 16513 8020 16513 7932 16513 7932 16514 8020 16514 8028 16514 7932 16515 8028 16515 7927 16515 7927 16516 8028 16516 8026 16516 7967 16517 7998 16517 7971 16517 7971 16518 7998 16518 7999 16518 7971 16519 7999 16519 7969 16519 7969 16520 7999 16520 7975 16520 7975 16521 7999 16521 8000 16521 7975 16522 8000 16522 7896 16522 7925 16523 7922 16523 7862 16523 7915 16524 7922 16524 7921 16524 7921 16525 7920 16525 7917 16525 7917 16526 7920 16526 7918 16526 7918 16527 7919 16527 7917 16527 7918 16528 7916 16528 7919 16528 7921 16529 7922 16529 7920 16529 7923 16530 7920 16530 7922 16530 7925 16531 7924 16531 7922 16531 7922 16532 7924 16532 7923 16532 7930 16533 7925 16533 7926 16533 7924 16534 7925 16534 7930 16534 7926 16535 7932 16535 7934 16535 7933 16536 7929 16536 7935 16536 7928 16537 7929 16537 7927 16537 7926 16538 7934 16538 7930 16538 7932 16539 7933 16539 7934 16539 7929 16540 7932 16540 7927 16540 7930 16541 7934 16541 7931 16541 7934 16542 7933 16542 7931 16542 7933 16543 7935 16543 7931 16543 7933 16544 7932 16544 7929 16544 7935 16545 7929 16545 7928 16545 7927 16546 7936 16546 7928 16546 7936 16547 7927 16547 7937 16547 7940 16548 7939 16548 7937 16548 7937 16549 7939 16549 7936 16549 7940 16550 7938 16550 7939 16550 7938 16551 7940 16551 7941 16551 7944 16552 7942 16552 7941 16552 7941 16553 7942 16553 7938 16553 7716 16554 7944 16554 7943 16554 7942 16555 7944 16555 7716 16555 7947 16556 7945 16556 7943 16556 7943 16557 7945 16557 7716 16557 7947 16558 7948 16558 7945 16558 7947 16559 7946 16559 7948 16559 7946 16560 7954 16560 7948 16560 7949 16561 7950 16561 7946 16561 7952 16562 7955 16562 7951 16562 7954 16563 7946 16563 7956 16563 7953 16564 7950 16564 7955 16564 7953 16565 7946 16565 7950 16565 7946 16566 7953 16566 7956 16566 7955 16567 7950 16567 7949 16567 7956 16568 7955 16568 7952 16568 7953 16569 7955 16569 7956 16569 7955 16570 7949 16570 7951 16570 7951 16571 7958 16571 7952 16571 7958 16572 7951 16572 7957 16572 7962 16573 7961 16573 7957 16573 7957 16574 7961 16574 7958 16574 7959 16575 7962 16575 7960 16575 7961 16576 7962 16576 7959 16576 7964 16577 7965 16577 7960 16577 7960 16578 7965 16578 7959 16578 7965 16579 7964 16579 7963 16579 7966 16580 7965 16580 7963 16580 7967 16581 7968 16581 7963 16581 7963 16582 7968 16582 7966 16582 7968 16583 7967 16583 7972 16583 7967 16584 7971 16584 7972 16584 7975 16585 7976 16585 7974 16585 7972 16586 7973 16586 7970 16586 7974 16587 7969 16587 7975 16587 7971 16588 7973 16588 7972 16588 7970 16589 7974 16589 7976 16589 7971 16590 7969 16590 7973 16590 7974 16591 7973 16591 7969 16591 7970 16592 7973 16592 7974 16592 7975 16593 7977 16593 7976 16593 7975 16594 7896 16594 7977 16594 7978 16595 7977 16595 7896 16595 7981 16596 7979 16596 7896 16596 7896 16597 7979 16597 7978 16597 7979 16598 7981 16598 7980 16598 7980 16599 7981 16599 7897 16599 7982 16600 7986 16600 7897 16600 7897 16601 7986 16601 7980 16601 7982 16602 7983 16602 7986 16602 7986 16603 7983 16603 7984 16603 7982 16604 7985 16604 7983 16604 7984 16605 7983 16605 7985 16605 7987 16606 7988 16606 7985 16606 7985 16607 7988 16607 7984 16607 7987 16608 7990 16608 7988 16608 7990 16609 7987 16609 7992 16609 7992 16610 7996 16610 7994 16610 7994 16611 7996 16611 7993 16611 7992 16612 7994 16612 7990 16612 7991 16613 7993 16613 7989 16613 7993 16614 7991 16614 7994 16614 7990 16615 7994 16615 7991 16615 7993 16616 7996 16616 7989 16616 7989 16617 7996 16617 7995 16617 7995 16618 7679 16618 7989 16618 8016 16619 8015 16619 8019 16619 8002 16620 8007 16620 7997 16620 8002 16621 8000 16621 8006 16621 7999 16622 8009 16622 8000 16622 8001 16623 7997 16623 8014 16623 8008 16624 8003 16624 7998 16624 7999 16625 7998 16625 8005 16625 7999 16626 8005 16626 8009 16626 8000 16627 8009 16627 8006 16627 8008 16628 8004 16628 8003 16628 8006 16629 8010 16629 8002 16629 8001 16630 8014 16630 8004 16630 8001 16631 8004 16631 8008 16631 8002 16632 8010 16632 8007 16632 7997 16633 8007 16633 8014 16633 7998 16634 8003 16634 8005 16634 8003 16635 8015 16635 8005 16635 8010 16636 8006 16636 8011 16636 8004 16637 8014 16637 8013 16637 8005 16638 8015 16638 8016 16638 8006 16639 8009 16639 8017 16639 8007 16640 8010 16640 8018 16640 8006 16641 8017 16641 8011 16641 8010 16642 8012 16642 8018 16642 8005 16643 8016 16643 8017 16643 8005 16644 8017 16644 8009 16644 8010 16645 8011 16645 8012 16645 8003 16646 8019 16646 8015 16646 8004 16647 8019 16647 8003 16647 8007 16648 8018 16648 8014 16648 8014 16649 8018 16649 8013 16649 8004 16650 8013 16650 8019 16650 8027 16651 8030 16651 8022 16651 8024 16652 8023 16652 8025 16652 8024 16653 8025 16653 8020 16653 8021 16654 8037 16654 8029 16654 8021 16655 8029 16655 8024 16655 8022 16656 8037 16656 8021 16656 8022 16657 8033 16657 8037 16657 8024 16658 8029 16658 8023 16658 8027 16659 8034 16659 8030 16659 8022 16660 8030 16660 8033 16660 8026 16661 8034 16661 8027 16661 8020 16662 8025 16662 8032 16662 8020 16663 8032 16663 8028 16663 8028 16664 8036 16664 8026 16664 8026 16665 8036 16665 8034 16665 8023 16666 8031 16666 8025 16666 8030 16667 8034 16667 8038 16667 8025 16668 8031 16668 8032 16668 8033 16669 8041 16669 8037 16669 8032 16670 8040 16670 8028 16670 8037 16671 8035 16671 8029 16671 8023 16672 8029 16672 8035 16672 8037 16673 8041 16673 8039 16673 8032 16674 8031 16674 8040 16674 8028 16675 8040 16675 8036 16675 8030 16676 8038 16676 8041 16676 8030 16677 8041 16677 8033 16677 8036 16678 8042 16678 8034 16678 8037 16679 8039 16679 8035 16679 8035 16680 8044 16680 8023 16680 8023 16681 8044 16681 8031 16681 8034 16682 8042 16682 8043 16682 8036 16683 8040 16683 8042 16683 8035 16684 8039 16684 8044 16684 8034 16685 8043 16685 8038 16685 8041 16686 8038 16686 8039 16686 8050 16687 8053 16687 8051 16687 8045 16688 8064 16688 8065 16688 8049 16689 8055 16689 8052 16689 8050 16690 8052 16690 8061 16690 8048 16691 8051 16691 8064 16691 8050 16692 8061 16692 8054 16692 8050 16693 8054 16693 8053 16693 8047 16694 8056 16694 8049 16694 8052 16695 8055 16695 8061 16695 8053 16696 8058 16696 8051 16696 8048 16697 8057 16697 8047 16697 8048 16698 8064 16698 8057 16698 8047 16699 8057 16699 8056 16699 8049 16700 8060 16700 8055 16700 8051 16701 8058 16701 8059 16701 8051 16702 8059 16702 8064 16702 8049 16703 8056 16703 8060 16703 8055 16704 8060 16704 8063 16704 8058 16705 8046 16705 8059 16705 8054 16706 8061 16706 8066 16706 8057 16707 8064 16707 8045 16707 8059 16708 8046 16708 8065 16708 8059 16709 8065 16709 8064 16709 8057 16710 8045 16710 8056 16710 8054 16711 8066 16711 8053 16711 8055 16712 8063 16712 8061 16712 8053 16713 8066 16713 8067 16713 8058 16714 8053 16714 8046 16714 8061 16715 8063 16715 8066 16715 8053 16716 8067 16716 8046 16716 8056 16717 8045 16717 8060 16717 8060 16718 8062 16718 8063 16718 8060 16719 8045 16719 8062 16719 8071 16720 8074 16720 8079 16720 8072 16721 8076 16721 8075 16721 8071 16722 8073 16722 8072 16722 8068 16723 8081 16723 8074 16723 8070 16724 8075 16724 8078 16724 8075 16725 8082 16725 8078 16725 8074 16726 8081 16726 8079 16726 8070 16727 8078 16727 8080 16727 8072 16728 8073 16728 8077 16728 8075 16729 8076 16729 8082 16729 8080 16730 8078 16730 8086 16730 8072 16731 8077 16731 8076 16731 8068 16732 8080 16732 8081 16732 8071 16733 8079 16733 8073 16733 8081 16734 8069 16734 8079 16734 8081 16735 8080 16735 8069 16735 8080 16736 8086 16736 8069 16736 8076 16737 8088 16737 8082 16737 8073 16738 8084 16738 8077 16738 8077 16739 8084 16739 8087 16739 8082 16740 8085 16740 8078 16740 8079 16741 8083 16741 8073 16741 8073 16742 8083 16742 8084 16742 8077 16743 8087 16743 8076 16743 8076 16744 8087 16744 8088 16744 8079 16745 8069 16745 8083 16745 8082 16746 8088 16746 8085 16746 8078 16747 8085 16747 8086 16747 8089 16748 8456 16748 8090 16748 8090 16749 8456 16749 8455 16749 8090 16750 8455 16750 8094 16750 8094 16751 8455 16751 8095 16751 8093 16752 8094 16752 8095 16752 8091 16753 8093 16753 8092 16753 8091 16754 8094 16754 8093 16754 8092 16755 10432 16755 8091 16755 10432 16756 8092 16756 10435 16756 10435 16757 8092 16757 3168 16757 10435 16758 3168 16758 8685 16758 8685 16759 3168 16759 8097 16759 8685 16760 8097 16760 8096 16760 8096 16761 8097 16761 8098 16761 8096 16762 8098 16762 8099 16762 8099 16763 8098 16763 8100 16763 8099 16764 8100 16764 8101 16764 8101 16765 8100 16765 8459 16765 8101 16766 8459 16766 8686 16766 8686 16767 8459 16767 8595 16767 8686 16768 8595 16768 8103 16768 8103 16769 8595 16769 8594 16769 8102 16770 8103 16770 8594 16770 8102 16771 8104 16771 8103 16771 8687 16772 8104 16772 8102 16772 8590 16773 8687 16773 8102 16773 8687 16774 8590 16774 8106 16774 8106 16775 8590 16775 8105 16775 8106 16776 8105 16776 8688 16776 8688 16777 8105 16777 8589 16777 8688 16778 8589 16778 8689 16778 8689 16779 8589 16779 8107 16779 8689 16780 8107 16780 8691 16780 8691 16781 8107 16781 8108 16781 8691 16782 8108 16782 8109 16782 8109 16783 8108 16783 8110 16783 8109 16784 8110 16784 10446 16784 10446 16785 8110 16785 3031 16785 10446 16786 3031 16786 8111 16786 8111 16787 3031 16787 8591 16787 8111 16788 8591 16788 8115 16788 8113 16789 8114 16789 8115 16789 8112 16790 8114 16790 8113 16790 8111 16791 8114 16791 8116 16791 8112 16792 8116 16792 8114 16792 8114 16793 8111 16793 8115 16793 8112 16794 8113 16794 8694 16794 8694 16795 8113 16795 8593 16795 8694 16796 8593 16796 8693 16796 8693 16797 8593 16797 8117 16797 8693 16798 8117 16798 8692 16798 8692 16799 8117 16799 8592 16799 8692 16800 8592 16800 8690 16800 8690 16801 8592 16801 8588 16801 8690 16802 8588 16802 8118 16802 8118 16803 8588 16803 8587 16803 8118 16804 8587 16804 8119 16804 8119 16805 8587 16805 8120 16805 8119 16806 8120 16806 8695 16806 8695 16807 8120 16807 8121 16807 8123 16808 8122 16808 8695 16808 8121 16809 8123 16809 8695 16809 8123 16810 8585 16810 8696 16810 8123 16811 8696 16811 8122 16811 8696 16812 8585 16812 8124 16812 8124 16813 8585 16813 8584 16813 8124 16814 8584 16814 8862 16814 8862 16815 8584 16815 8586 16815 8862 16816 8586 16816 8125 16816 8125 16817 8586 16817 8617 16817 8125 16818 8617 16818 8861 16818 8861 16819 8617 16819 8126 16819 8861 16820 8126 16820 8697 16820 8697 16821 8126 16821 8583 16821 8697 16822 8583 16822 8698 16822 8698 16823 8583 16823 8582 16823 8698 16824 8582 16824 8127 16824 8127 16825 8582 16825 8128 16825 8127 16826 8128 16826 8129 16826 8129 16827 8128 16827 8130 16827 8129 16828 8130 16828 8131 16828 8131 16829 8130 16829 8581 16829 8131 16830 8581 16830 8132 16830 8132 16831 8581 16831 8580 16831 8132 16832 8580 16832 8699 16832 8699 16833 8580 16833 8604 16833 8699 16834 8604 16834 8133 16834 8133 16835 8604 16835 8134 16835 8133 16836 8134 16836 8700 16836 8700 16837 8134 16837 8135 16837 8701 16838 8700 16838 8135 16838 8135 16839 8138 16839 8701 16839 8137 16840 8701 16840 8138 16840 8136 16841 8137 16841 8138 16841 8137 16842 8136 16842 8139 16842 8139 16843 8136 16843 8141 16843 8139 16844 8141 16844 8140 16844 8140 16845 8141 16845 8142 16845 8140 16846 8142 16846 8702 16846 8702 16847 8142 16847 8579 16847 8702 16848 8579 16848 8859 16848 8859 16849 8579 16849 8143 16849 8859 16850 8143 16850 8144 16850 8144 16851 8143 16851 8578 16851 8144 16852 8578 16852 8146 16852 8146 16853 8578 16853 8145 16853 8146 16854 8145 16854 8147 16854 8147 16855 8145 16855 8148 16855 8147 16856 8148 16856 8149 16856 8149 16857 8148 16857 8577 16857 8149 16858 8577 16858 8704 16858 8704 16859 8577 16859 8613 16859 8704 16860 8613 16860 8705 16860 8705 16861 8613 16861 8150 16861 8705 16862 8150 16862 8706 16862 8706 16863 8150 16863 8603 16863 8706 16864 8603 16864 8151 16864 8151 16865 8603 16865 8152 16865 8151 16866 8152 16866 8707 16866 8707 16867 8152 16867 8153 16867 8707 16868 8153 16868 8154 16868 8154 16869 8155 16869 8707 16869 8156 16870 8155 16870 8154 16870 8575 16871 8156 16871 8154 16871 8156 16872 8575 16872 8708 16872 8708 16873 8575 16873 8574 16873 8708 16874 8574 16874 8709 16874 8709 16875 8574 16875 8157 16875 8709 16876 8157 16876 8856 16876 8856 16877 8157 16877 8572 16877 8856 16878 8572 16878 8855 16878 8855 16879 8572 16879 8573 16879 8855 16880 8573 16880 8158 16880 8158 16881 8573 16881 8571 16881 8158 16882 8571 16882 8710 16882 8710 16883 8571 16883 8570 16883 8710 16884 8570 16884 8713 16884 8713 16885 8570 16885 8159 16885 8713 16886 8159 16886 8160 16886 8160 16887 8159 16887 8161 16887 8160 16888 8161 16888 8711 16888 8711 16889 8161 16889 8611 16889 8711 16890 8611 16890 8712 16890 8712 16891 8611 16891 8569 16891 8712 16892 8569 16892 8162 16892 8162 16893 8569 16893 8601 16893 8162 16894 8601 16894 8714 16894 8714 16895 8601 16895 8568 16895 8714 16896 8568 16896 8715 16896 8715 16897 8568 16897 8163 16897 8839 16898 8715 16898 8163 16898 8163 16899 8164 16899 8839 16899 8165 16900 8839 16900 8164 16900 8164 16901 8567 16901 8165 16901 8165 16902 8567 16902 8716 16902 8716 16903 8567 16903 8166 16903 8716 16904 8166 16904 8838 16904 8838 16905 8166 16905 8566 16905 8838 16906 8566 16906 8851 16906 8851 16907 8566 16907 8167 16907 8851 16908 8167 16908 8717 16908 8717 16909 8167 16909 8609 16909 8717 16910 8609 16910 8718 16910 8718 16911 8609 16911 8169 16911 8718 16912 8169 16912 8168 16912 8168 16913 8169 16913 8170 16913 8168 16914 8170 16914 8171 16914 8171 16915 8170 16915 8564 16915 8171 16916 8564 16916 8172 16916 8172 16917 8564 16917 8173 16917 8172 16918 8173 16918 8719 16918 8719 16919 8173 16919 8565 16919 8719 16920 8565 16920 8720 16920 8720 16921 8565 16921 8175 16921 8720 16922 8175 16922 8174 16922 8174 16923 8175 16923 8600 16923 8174 16924 8600 16924 8176 16924 8176 16925 8600 16925 8177 16925 8176 16926 8177 16926 8721 16926 8721 16927 8177 16927 8178 16927 8179 16928 8721 16928 8178 16928 8180 16929 8179 16929 8178 16929 8563 16930 8722 16930 8180 16930 8722 16931 8179 16931 8180 16931 8722 16932 8563 16932 8182 16932 8182 16933 8563 16933 8181 16933 8182 16934 8181 16934 8183 16934 8183 16935 8181 16935 8560 16935 8183 16936 8560 16936 8849 16936 8849 16937 8560 16937 8559 16937 8849 16938 8559 16938 8848 16938 8848 16939 8559 16939 8558 16939 8848 16940 8558 16940 8723 16940 8723 16941 8558 16941 8184 16941 8723 16942 8184 16942 8727 16942 8727 16943 8184 16943 8185 16943 8727 16944 8185 16944 8186 16944 8186 16945 8185 16945 8562 16945 8186 16946 8562 16946 8728 16946 8728 16947 8562 16947 8187 16947 8728 16948 8187 16948 8188 16948 8188 16949 8187 16949 8557 16949 8188 16950 8557 16950 8724 16950 8724 16951 8557 16951 8189 16951 8724 16952 8189 16952 8725 16952 8725 16953 8189 16953 8556 16953 8725 16954 8556 16954 8190 16954 8190 16955 8556 16955 8191 16955 8190 16956 8191 16956 8726 16956 8726 16957 8191 16957 8555 16957 8192 16958 8726 16958 8555 16958 8192 16959 8729 16959 8726 16959 8730 16960 8729 16960 8192 16960 8192 16961 8554 16961 8730 16961 8730 16962 8554 16962 8193 16962 8193 16963 8554 16963 8194 16963 8193 16964 8194 16964 8196 16964 8196 16965 8194 16965 8195 16965 8196 16966 8195 16966 8731 16966 8731 16967 8195 16967 8552 16967 8731 16968 8552 16968 8736 16968 8736 16969 8552 16969 8551 16969 8736 16970 8551 16970 8735 16970 8735 16971 8551 16971 8197 16971 8735 16972 8197 16972 8198 16972 8198 16973 8197 16973 8199 16973 8198 16974 8199 16974 8200 16974 8200 16975 8199 16975 8201 16975 8200 16976 8201 16976 8202 16976 8202 16977 8201 16977 8203 16977 8202 16978 8203 16978 8737 16978 8737 16979 8203 16979 8550 16979 8737 16980 8550 16980 8204 16980 8204 16981 8550 16981 8548 16981 8204 16982 8548 16982 8738 16982 8738 16983 8548 16983 8206 16983 8738 16984 8206 16984 8205 16984 8205 16985 8206 16985 8547 16985 8205 16986 8547 16986 8734 16986 8734 16987 8547 16987 8208 16987 8210 16988 8734 16988 8207 16988 8207 16989 8734 16989 8208 16989 8209 16990 8207 16990 8208 16990 8207 16991 8209 16991 8210 16991 8212 16992 8210 16992 8209 16992 8212 16993 8211 16993 8210 16993 8211 16994 8212 16994 8213 16994 8213 16995 8212 16995 8546 16995 8213 16996 8546 16996 8739 16996 8739 16997 8546 16997 8214 16997 8739 16998 8214 16998 8215 16998 8215 16999 8214 16999 8545 16999 8215 17000 8545 17000 8216 17000 8216 17001 8545 17001 8544 17001 8216 17002 8544 17002 8217 17002 8217 17003 8544 17003 8218 17003 8217 17004 8218 17004 8741 17004 8741 17005 8218 17005 8219 17005 8741 17006 8219 17006 8742 17006 8742 17007 8219 17007 8220 17007 8742 17008 8220 17008 8221 17008 8221 17009 8220 17009 8222 17009 8221 17010 8222 17010 8223 17010 8223 17011 8222 17011 8543 17011 8223 17012 8543 17012 8224 17012 8224 17013 8543 17013 8542 17013 8224 17014 8542 17014 8740 17014 8740 17015 8542 17015 8225 17015 8740 17016 8225 17016 8226 17016 8226 17017 8225 17017 8227 17017 8226 17018 8227 17018 8228 17018 8228 17019 8227 17019 8230 17019 8230 17020 8229 17020 8231 17020 8228 17021 8230 17021 8231 17021 8234 17022 8231 17022 8229 17022 8234 17023 8232 17023 8231 17023 8232 17024 8234 17024 8233 17024 8233 17025 8234 17025 8541 17025 8233 17026 8541 17026 8235 17026 8235 17027 8541 17027 8538 17027 8235 17028 8538 17028 8237 17028 8237 17029 8538 17029 8236 17029 8237 17030 8236 17030 8238 17030 8238 17031 8236 17031 8239 17031 8238 17032 8239 17032 8240 17032 8240 17033 8239 17033 8241 17033 8240 17034 8241 17034 8744 17034 8744 17035 8241 17035 8540 17035 8744 17036 8540 17036 8745 17036 8745 17037 8540 17037 8242 17037 8745 17038 8242 17038 8243 17038 8243 17039 8242 17039 8539 17039 8243 17040 8539 17040 8746 17040 8746 17041 8539 17041 8244 17041 8746 17042 8244 17042 8743 17042 8743 17043 8244 17043 8245 17043 8743 17044 8245 17044 8246 17044 8246 17045 8245 17045 8537 17045 8246 17046 8537 17046 8747 17046 8747 17047 8537 17047 8536 17047 8747 17048 8536 17048 8748 17048 8748 17049 8536 17049 8247 17049 8749 17050 8748 17050 8247 17050 8749 17051 8247 17051 8533 17051 8750 17052 8749 17052 8533 17052 8248 17053 8750 17053 8533 17053 8750 17054 8248 17054 8249 17054 8249 17055 8248 17055 8535 17055 8249 17056 8535 17056 8250 17056 8250 17057 8535 17057 8251 17057 8250 17058 8251 17058 8751 17058 8751 17059 8251 17059 8532 17059 8751 17060 8532 17060 8752 17060 8752 17061 8532 17061 8531 17061 8752 17062 8531 17062 8252 17062 8252 17063 8531 17063 8253 17063 8252 17064 8253 17064 8756 17064 8756 17065 8253 17065 8534 17065 8756 17066 8534 17066 8757 17066 8757 17067 8534 17067 8254 17067 8757 17068 8254 17068 8255 17068 8255 17069 8254 17069 8256 17069 8255 17070 8256 17070 8753 17070 8753 17071 8256 17071 8530 17071 8753 17072 8530 17072 8754 17072 8754 17073 8530 17073 8529 17073 8754 17074 8529 17074 8257 17074 8257 17075 8529 17075 8528 17075 8257 17076 8528 17076 8258 17076 8258 17077 8528 17077 8259 17077 8258 17078 8259 17078 8755 17078 8755 17079 8259 17079 8527 17079 8261 17080 8755 17080 8527 17080 8261 17081 8260 17081 8755 17081 8263 17082 8260 17082 8261 17082 8261 17083 8262 17083 8263 17083 8263 17084 8262 17084 8264 17084 8264 17085 8262 17085 8265 17085 8264 17086 8265 17086 8760 17086 8760 17087 8265 17087 8266 17087 8760 17088 8266 17088 8267 17088 8267 17089 8266 17089 8268 17089 8267 17090 8268 17090 8762 17090 8762 17091 8268 17091 8269 17091 8762 17092 8269 17092 8270 17092 8270 17093 8269 17093 8525 17093 8270 17094 8525 17094 8763 17094 8763 17095 8525 17095 8526 17095 8763 17096 8526 17096 8273 17096 8273 17097 8526 17097 8276 17097 8273 17098 8276 17098 8275 17098 8272 17099 8274 17099 8275 17099 8272 17100 8271 17100 8274 17100 8274 17101 8273 17101 8275 17101 8271 17102 8272 17102 8764 17102 8764 17103 8272 17103 8278 17103 8764 17104 8278 17104 8277 17104 8277 17105 8278 17105 8279 17105 8277 17106 8279 17106 8280 17106 8280 17107 8279 17107 8524 17107 8280 17108 8524 17108 8282 17108 8282 17109 8524 17109 8281 17109 8282 17110 8281 17110 8761 17110 8761 17111 8281 17111 8605 17111 8761 17112 8605 17112 8758 17112 8758 17113 8605 17113 8606 17113 8758 17114 8606 17114 8759 17114 8759 17115 8606 17115 8523 17115 8523 17116 8522 17116 8283 17116 8759 17117 8523 17117 8283 17117 8283 17118 8522 17118 8517 17118 8517 17119 8846 17119 8283 17119 8846 17120 8517 17120 8845 17120 8845 17121 8517 17121 8516 17121 8845 17122 8516 17122 8844 17122 8844 17123 8516 17123 8515 17123 8844 17124 8515 17124 8284 17124 8284 17125 8515 17125 8285 17125 8284 17126 8285 17126 8765 17126 8765 17127 8285 17127 8286 17127 8765 17128 8286 17128 8287 17128 8287 17129 8286 17129 8288 17129 8287 17130 8288 17130 8766 17130 8766 17131 8288 17131 6501 17131 8766 17132 6501 17132 8289 17132 8289 17133 6501 17133 6498 17133 6498 17134 8294 17134 8289 17134 8294 17135 8293 17135 8289 17135 8292 17136 8293 17136 8294 17136 8293 17137 8292 17137 8290 17137 8291 17138 8293 17138 8290 17138 8292 17139 8294 17139 6498 17139 8291 17140 8290 17140 8295 17140 8295 17141 8290 17141 8296 17141 8295 17142 8296 17142 8768 17142 8768 17143 8296 17143 8297 17143 8768 17144 8297 17144 8767 17144 8767 17145 8297 17145 8521 17145 8767 17146 8521 17146 8298 17146 8298 17147 8521 17147 8520 17147 8298 17148 8520 17148 8299 17148 8299 17149 8520 17149 8519 17149 8299 17150 8519 17150 8300 17150 8300 17151 8519 17151 8518 17151 8300 17152 8518 17152 8302 17152 8302 17153 8518 17153 8301 17153 8301 17154 8303 17154 8769 17154 8302 17155 8301 17155 8769 17155 8305 17156 8304 17156 8303 17156 8303 17157 8304 17157 8769 17157 8304 17158 8305 17158 8306 17158 8306 17159 8305 17159 8307 17159 8306 17160 8307 17160 8308 17160 8308 17161 8307 17161 8514 17161 8308 17162 8514 17162 8770 17162 8770 17163 8514 17163 8512 17163 8770 17164 8512 17164 8771 17164 8771 17165 8512 17165 8511 17165 8771 17166 8511 17166 8309 17166 8309 17167 8511 17167 8310 17167 8309 17168 8310 17168 8311 17168 8311 17169 8310 17169 8513 17169 8311 17170 8513 17170 8312 17170 8312 17171 8513 17171 8313 17171 8312 17172 8313 17172 8773 17172 8773 17173 8313 17173 8314 17173 8773 17174 8314 17174 8315 17174 8315 17175 8314 17175 8510 17175 8315 17176 8510 17176 8772 17176 8772 17177 8510 17177 8509 17177 8772 17178 8509 17178 8316 17178 8316 17179 8509 17179 8317 17179 8316 17180 8317 17180 8318 17180 8318 17181 8317 17181 8319 17181 8318 17182 8319 17182 8323 17182 8323 17183 8319 17183 8322 17183 8322 17184 8321 17184 8320 17184 8323 17185 8322 17185 8320 17185 8325 17186 8320 17186 8321 17186 8324 17187 8325 17187 8321 17187 8325 17188 8324 17188 8774 17188 8774 17189 8324 17189 8326 17189 8774 17190 8326 17190 8775 17190 8775 17191 8326 17191 8327 17191 8775 17192 8327 17192 8776 17192 8776 17193 8327 17193 8507 17193 8776 17194 8507 17194 8777 17194 8777 17195 8507 17195 8506 17195 8777 17196 8506 17196 8329 17196 8329 17197 8506 17197 8328 17197 8329 17198 8328 17198 8330 17198 8330 17199 8328 17199 8331 17199 8330 17200 8331 17200 8782 17200 8782 17201 8331 17201 8333 17201 8782 17202 8333 17202 8332 17202 8332 17203 8333 17203 8334 17203 8332 17204 8334 17204 8778 17204 8778 17205 8334 17205 8508 17205 8778 17206 8508 17206 8779 17206 8779 17207 8508 17207 8505 17207 8779 17208 8505 17208 8780 17208 8780 17209 8505 17209 8504 17209 8780 17210 8504 17210 8335 17210 8335 17211 8504 17211 8336 17211 8335 17212 8336 17212 8781 17212 8781 17213 8336 17213 8503 17213 8338 17214 8781 17214 8337 17214 8337 17215 8781 17215 8503 17215 8339 17216 8338 17216 8337 17216 8337 17217 8502 17217 8339 17217 8339 17218 8502 17218 8783 17218 8783 17219 8502 17219 8341 17219 8783 17220 8341 17220 8340 17220 8340 17221 8341 17221 8342 17221 8340 17222 8342 17222 8785 17222 8785 17223 8342 17223 8343 17223 8785 17224 8343 17224 8790 17224 8790 17225 8343 17225 8344 17225 8790 17226 8344 17226 8345 17226 8345 17227 8344 17227 8346 17227 8345 17228 8346 17228 8789 17228 8789 17229 8346 17229 8347 17229 8789 17230 8347 17230 8791 17230 8791 17231 8347 17231 8348 17231 8791 17232 8348 17232 8792 17232 8792 17233 8348 17233 8349 17233 8792 17234 8349 17234 8786 17234 8786 17235 8349 17235 8501 17235 8786 17236 8501 17236 8787 17236 8787 17237 8501 17237 8350 17237 8787 17238 8350 17238 8351 17238 8351 17239 8350 17239 8500 17239 8351 17240 8500 17240 8793 17240 8793 17241 8500 17241 8352 17241 8793 17242 8352 17242 8354 17242 8354 17243 8352 17243 8355 17243 8353 17244 8354 17244 8355 17244 8353 17245 8355 17245 8356 17245 8496 17246 8794 17246 8353 17246 8356 17247 8496 17247 8353 17247 8794 17248 8496 17248 8357 17248 8357 17249 8496 17249 8358 17249 8357 17250 8358 17250 8795 17250 8795 17251 8358 17251 8499 17251 8795 17252 8499 17252 8796 17252 8796 17253 8499 17253 8359 17253 8796 17254 8359 17254 8800 17254 8800 17255 8359 17255 8498 17255 8800 17256 8498 17256 8799 17256 8799 17257 8498 17257 8360 17257 8799 17258 8360 17258 8361 17258 8361 17259 8360 17259 8497 17259 8361 17260 8497 17260 8362 17260 8362 17261 8497 17261 8364 17261 8362 17262 8364 17262 8363 17262 8363 17263 8364 17263 8365 17263 8363 17264 8365 17264 8797 17264 8797 17265 8365 17265 8495 17265 8797 17266 8495 17266 8798 17266 8798 17267 8495 17267 8367 17267 8798 17268 8367 17268 8366 17268 8366 17269 8367 17269 8368 17269 8366 17270 8368 17270 8801 17270 8801 17271 8368 17271 8369 17271 8801 17272 8369 17272 8373 17272 8373 17273 8369 17273 8374 17273 8370 17274 8373 17274 8371 17274 8371 17275 8373 17275 8374 17275 8371 17276 8372 17276 8370 17276 8372 17277 8371 17277 8374 17277 8370 17278 8375 17278 8802 17278 8375 17279 8370 17279 8372 17279 8375 17280 8376 17280 8802 17280 8376 17281 8375 17281 8372 17281 8802 17282 8376 17282 8803 17282 8803 17283 8376 17283 8377 17283 8803 17284 8377 17284 8804 17284 8804 17285 8377 17285 8494 17285 8804 17286 8494 17286 8378 17286 8378 17287 8494 17287 8379 17287 8378 17288 8379 17288 8847 17288 8847 17289 8379 17289 8492 17289 8847 17290 8492 17290 8380 17290 8380 17291 8492 17291 8382 17291 8380 17292 8382 17292 8381 17292 8381 17293 8382 17293 8493 17293 8381 17294 8493 17294 8805 17294 8805 17295 8493 17295 8383 17295 8805 17296 8383 17296 8384 17296 8384 17297 8383 17297 8385 17297 8384 17298 8385 17298 8386 17298 8386 17299 8385 17299 8387 17299 8386 17300 8387 17300 8807 17300 8807 17301 8387 17301 8491 17301 8807 17302 8491 17302 8806 17302 8806 17303 8491 17303 8490 17303 8806 17304 8490 17304 8388 17304 8388 17305 8490 17305 8389 17305 8388 17306 8389 17306 8390 17306 8390 17307 8389 17307 8488 17307 8489 17308 8390 17308 8488 17308 8489 17309 8391 17309 8392 17309 8489 17310 8392 17310 8390 17310 8392 17311 8391 17311 8485 17311 8485 17312 8808 17312 8392 17312 8808 17313 8485 17313 8394 17313 8394 17314 8485 17314 8393 17314 8394 17315 8393 17315 8395 17315 8395 17316 8393 17316 8487 17316 8395 17317 8487 17317 8809 17317 8809 17318 8487 17318 8483 17318 8809 17319 8483 17319 8850 17319 8850 17320 8483 17320 8396 17320 8850 17321 8396 17321 8810 17321 8810 17322 8396 17322 8397 17322 8810 17323 8397 17323 8811 17323 8811 17324 8397 17324 8486 17324 8811 17325 8486 17325 8812 17325 8812 17326 8486 17326 8398 17326 8812 17327 8398 17327 8813 17327 8813 17328 8398 17328 8399 17328 8813 17329 8399 17329 8814 17329 8814 17330 8399 17330 8607 17330 8814 17331 8607 17331 8852 17331 8852 17332 8607 17332 8400 17332 8852 17333 8400 17333 8815 17333 8815 17334 8400 17334 8608 17334 8815 17335 8608 17335 8401 17335 8401 17336 8608 17336 8482 17336 8401 17337 8482 17337 8403 17337 8403 17338 8482 17338 8402 17338 8404 17339 8403 17339 8402 17339 8404 17340 8402 17340 8405 17340 8404 17341 8405 17341 8479 17341 8479 17342 8406 17342 8404 17342 8406 17343 8479 17343 8407 17343 8407 17344 8479 17344 8408 17344 8407 17345 8408 17345 8409 17345 8409 17346 8408 17346 8411 17346 8409 17347 8411 17347 8410 17347 8410 17348 8411 17348 8478 17348 8410 17349 8478 17349 8853 17349 8853 17350 8478 17350 8477 17350 8853 17351 8477 17351 8412 17351 8412 17352 8477 17352 8481 17352 8412 17353 8481 17353 8816 17353 8816 17354 8481 17354 8413 17354 8816 17355 8413 17355 8817 17355 8817 17356 8413 17356 8480 17356 8817 17357 8480 17357 8818 17357 8818 17358 8480 17358 8414 17358 8818 17359 8414 17359 8821 17359 8821 17360 8414 17360 8610 17360 8821 17361 8610 17361 8819 17361 8819 17362 8610 17362 8416 17362 8819 17363 8416 17363 8415 17363 8415 17364 8416 17364 8476 17364 8415 17365 8476 17365 8822 17365 8822 17366 8476 17366 8475 17366 8822 17367 8475 17367 8823 17367 8823 17368 8475 17368 8474 17368 8824 17369 8823 17369 8474 17369 8474 17370 8417 17370 8824 17370 8824 17371 8473 17371 8825 17371 8473 17372 8824 17372 8417 17372 8825 17373 8473 17373 8418 17373 8418 17374 8473 17374 8419 17374 8418 17375 8419 17375 8841 17375 8841 17376 8419 17376 8472 17376 8841 17377 8472 17377 8826 17377 8826 17378 8472 17378 8470 17378 8826 17379 8470 17379 8858 17379 8858 17380 8470 17380 8420 17380 8858 17381 8420 17381 8421 17381 8421 17382 8420 17382 8422 17382 8421 17383 8422 17383 8827 17383 8827 17384 8422 17384 8423 17384 8827 17385 8423 17385 8828 17385 8828 17386 8423 17386 8424 17386 8828 17387 8424 17387 8425 17387 8425 17388 8424 17388 8426 17388 8425 17389 8426 17389 8857 17389 8857 17390 8426 17390 8469 17390 8857 17391 8469 17391 8427 17391 8427 17392 8469 17392 8468 17392 8427 17393 8468 17393 8428 17393 8428 17394 8468 17394 8612 17394 8428 17395 8612 17395 8429 17395 8429 17396 8612 17396 8430 17396 8429 17397 8430 17397 8829 17397 8829 17398 8430 17398 8467 17398 8432 17399 8829 17399 8467 17399 8467 17400 8431 17400 8432 17400 8432 17401 8433 17401 8434 17401 8433 17402 8432 17402 8431 17402 8434 17403 8433 17403 8435 17403 8435 17404 8433 17404 8436 17404 8435 17405 8436 17405 8437 17405 8437 17406 8436 17406 8465 17406 8437 17407 8465 17407 8438 17407 8438 17408 8465 17408 8464 17408 8438 17409 8464 17409 8860 17409 8860 17410 8464 17410 8463 17410 8860 17411 8463 17411 8439 17411 8439 17412 8463 17412 8466 17412 8439 17413 8466 17413 8830 17413 8830 17414 8466 17414 8440 17414 8830 17415 8440 17415 8441 17415 8441 17416 8440 17416 8462 17416 8441 17417 8462 17417 8443 17417 8443 17418 8462 17418 8442 17418 8443 17419 8442 17419 8831 17419 8831 17420 8442 17420 8614 17420 8831 17421 8614 17421 8832 17421 8832 17422 8614 17422 8615 17422 8832 17423 8615 17423 8444 17423 8444 17424 8615 17424 8616 17424 8444 17425 8616 17425 8445 17425 8445 17426 8616 17426 8461 17426 8445 17427 8461 17427 8446 17427 8446 17428 8461 17428 8447 17428 8446 17429 8448 17429 8449 17429 8448 17430 8446 17430 8447 17430 8460 17431 8449 17431 8448 17431 8460 17432 8450 17432 8449 17432 8450 17433 8460 17433 8451 17433 8451 17434 8460 17434 8452 17434 8451 17435 8452 17435 8843 17435 8843 17436 8452 17436 8453 17436 8843 17437 8453 17437 8454 17437 8454 17438 8453 17438 8458 17438 8454 17439 8458 17439 8684 17439 8684 17440 8458 17440 8457 17440 8684 17441 8457 17441 8089 17441 8089 17442 8457 17442 8456 17442 8093 17443 8095 17443 8455 17443 8093 17444 8455 17444 8456 17444 8093 17445 8456 17445 8457 17445 8093 17446 8457 17446 8092 17446 8092 17447 8457 17447 8458 17447 8092 17448 8458 17448 8098 17448 8098 17449 8458 17449 8100 17449 8100 17450 8458 17450 8453 17450 8100 17451 8453 17451 8459 17451 8459 17452 8453 17452 8460 17452 8459 17453 8460 17453 8448 17453 8453 17454 8452 17454 8460 17454 8448 17455 8447 17455 9468 17455 8461 17456 8616 17456 8447 17456 8447 17457 8616 17457 9468 17457 8615 17458 8629 17458 8616 17458 8616 17459 8629 17459 8633 17459 8614 17460 8627 17460 8615 17460 8615 17461 8627 17461 8632 17461 8615 17462 8632 17462 8629 17462 8442 17463 8462 17463 8614 17463 8614 17464 8462 17464 8463 17464 8614 17465 8463 17465 8628 17465 8628 17466 8463 17466 8621 17466 8621 17467 8463 17467 8624 17467 8624 17468 8463 17468 8464 17468 8624 17469 8464 17469 8683 17469 8683 17470 8464 17470 8682 17470 8682 17471 8464 17471 8465 17471 8682 17472 8465 17472 8679 17472 8679 17473 8465 17473 8433 17473 8679 17474 8433 17474 8431 17474 8462 17475 8440 17475 8463 17475 8463 17476 8440 17476 8466 17476 8465 17477 8436 17477 8433 17477 8431 17478 8467 17478 9534 17478 8430 17479 8612 17479 8467 17479 8467 17480 8612 17480 9534 17480 8468 17481 8869 17481 8612 17481 8612 17482 8869 17482 8872 17482 8469 17483 8864 17483 8468 17483 8468 17484 8864 17484 8870 17484 8426 17485 8424 17485 8469 17485 8469 17486 8424 17486 8420 17486 8469 17487 8420 17487 8868 17487 8868 17488 8420 17488 8922 17488 8922 17489 8420 17489 8923 17489 8923 17490 8420 17490 8925 17490 8925 17491 8420 17491 8470 17491 8925 17492 8470 17492 8917 17492 8917 17493 8470 17493 8918 17493 8918 17494 8470 17494 8472 17494 8918 17495 8472 17495 8471 17495 8471 17496 8472 17496 8473 17496 8471 17497 8473 17497 8417 17497 8424 17498 8423 17498 8420 17498 8420 17499 8423 17499 8422 17499 8472 17500 8419 17500 8473 17500 8417 17501 8474 17501 9603 17501 8475 17502 8476 17502 8474 17502 8474 17503 8476 17503 9603 17503 8416 17504 8931 17504 8476 17504 8476 17505 8931 17505 8935 17505 8610 17506 8926 17506 8416 17506 8416 17507 8926 17507 8930 17507 8414 17508 8480 17508 8610 17508 8610 17509 8480 17509 8477 17509 8610 17510 8477 17510 8928 17510 8928 17511 8477 17511 8987 17511 8987 17512 8477 17512 8991 17512 8991 17513 8477 17513 8478 17513 8991 17514 8478 17514 8986 17514 8986 17515 8478 17515 8985 17515 8985 17516 8478 17516 8411 17516 8985 17517 8411 17517 8980 17517 8980 17518 8411 17518 8479 17518 8980 17519 8479 17519 8405 17519 8480 17520 8413 17520 8477 17520 8477 17521 8413 17521 8481 17521 8411 17522 8408 17522 8479 17522 8405 17523 8402 17523 9669 17523 8482 17524 8608 17524 8402 17524 8402 17525 8608 17525 9669 17525 8400 17526 8999 17526 8608 17526 8608 17527 8999 17527 9003 17527 8607 17528 8995 17528 8400 17528 8400 17529 8995 17529 8998 17529 8400 17530 8998 17530 8999 17530 8399 17531 8398 17531 8607 17531 8607 17532 8398 17532 8396 17532 8607 17533 8396 17533 8994 17533 8994 17534 8396 17534 9054 17534 9054 17535 8396 17535 9056 17535 9056 17536 8396 17536 8483 17536 9056 17537 8483 17537 9051 17537 9051 17538 8483 17538 8484 17538 8484 17539 8483 17539 8487 17539 8484 17540 8487 17540 9050 17540 9050 17541 8487 17541 8485 17541 9050 17542 8485 17542 8391 17542 8398 17543 8486 17543 8396 17543 8396 17544 8486 17544 8397 17544 8487 17545 8393 17545 8485 17545 8391 17546 8488 17546 9378 17546 8488 17547 8391 17547 8489 17547 8389 17548 8490 17548 8488 17548 8488 17549 8490 17549 9378 17549 9378 17550 8490 17550 9382 17550 9382 17551 8490 17551 8491 17551 9382 17552 8491 17552 9387 17552 9387 17553 8491 17553 8387 17553 9387 17554 8387 17554 9386 17554 9386 17555 8387 17555 8492 17555 9386 17556 8492 17556 9320 17556 9320 17557 8492 17557 9325 17557 9325 17558 8492 17558 8379 17558 9325 17559 8379 17559 9331 17559 9331 17560 8379 17560 9330 17560 9330 17561 8379 17561 8494 17561 9330 17562 8494 17562 9332 17562 9332 17563 8494 17563 8376 17563 9332 17564 8376 17564 8372 17564 8385 17565 8383 17565 8387 17565 8387 17566 8383 17566 8492 17566 8383 17567 8493 17567 8492 17567 8492 17568 8493 17568 8382 17568 8494 17569 8377 17569 8376 17569 8372 17570 8374 17570 9305 17570 8369 17571 8368 17571 8374 17571 8374 17572 8368 17572 9305 17572 9305 17573 8368 17573 9312 17573 9312 17574 8368 17574 8367 17574 9312 17575 8367 17575 9310 17575 9310 17576 8367 17576 9315 17576 9315 17577 8367 17577 8495 17577 9315 17578 8495 17578 9318 17578 9318 17579 8495 17579 8498 17579 9318 17580 8498 17580 9257 17580 9257 17581 8498 17581 9258 17581 9258 17582 8498 17582 9262 17582 9262 17583 8498 17583 8359 17583 9262 17584 8359 17584 9265 17584 9265 17585 8359 17585 9266 17585 9266 17586 8359 17586 8499 17586 9266 17587 8499 17587 9268 17587 9268 17588 8499 17588 8496 17588 9268 17589 8496 17589 8356 17589 8365 17590 8364 17590 8495 17590 8495 17591 8364 17591 8498 17591 8364 17592 8497 17592 8498 17592 8498 17593 8497 17593 8360 17593 8499 17594 8358 17594 8496 17594 8356 17595 8355 17595 9246 17595 8352 17596 8500 17596 8355 17596 8355 17597 8500 17597 9246 17597 9246 17598 8500 17598 9253 17598 9253 17599 8500 17599 8350 17599 9253 17600 8350 17600 9252 17600 9252 17601 8350 17601 8501 17601 9252 17602 8501 17602 9255 17602 9255 17603 8501 17603 8344 17603 9255 17604 8344 17604 9193 17604 9193 17605 8344 17605 9194 17605 9194 17606 8344 17606 8343 17606 9194 17607 8343 17607 9197 17607 9197 17608 8343 17608 9198 17608 9198 17609 8343 17609 8342 17609 9198 17610 8342 17610 9201 17610 9201 17611 8342 17611 8502 17611 9201 17612 8502 17612 8337 17612 8349 17613 8348 17613 8501 17613 8501 17614 8348 17614 8344 17614 8348 17615 8347 17615 8344 17615 8344 17616 8347 17616 8346 17616 8342 17617 8341 17617 8502 17617 8337 17618 8503 17618 9181 17618 8336 17619 8504 17619 8503 17619 8503 17620 8504 17620 9181 17620 9181 17621 8504 17621 9185 17621 9185 17622 8504 17622 8505 17622 9185 17623 8505 17623 9186 17623 9186 17624 8505 17624 8508 17624 9186 17625 8508 17625 9190 17625 9190 17626 8508 17626 8506 17626 9190 17627 8506 17627 9132 17627 9132 17628 8506 17628 9130 17628 9130 17629 8506 17629 8507 17629 9130 17630 8507 17630 9136 17630 9136 17631 8507 17631 9135 17631 9135 17632 8507 17632 8327 17632 9135 17633 8327 17633 9141 17633 9141 17634 8327 17634 8324 17634 9141 17635 8324 17635 8321 17635 8334 17636 8333 17636 8508 17636 8508 17637 8333 17637 8506 17637 8333 17638 8331 17638 8506 17638 8506 17639 8331 17639 8328 17639 8327 17640 8326 17640 8324 17640 8321 17641 8322 17641 9116 17641 8321 17642 9116 17642 9117 17642 8319 17643 8317 17643 8322 17643 8322 17644 8317 17644 9116 17644 9116 17645 8317 17645 9121 17645 9121 17646 8317 17646 8509 17646 9121 17647 8509 17647 9124 17647 9124 17648 8509 17648 8510 17648 9124 17649 8510 17649 9127 17649 9127 17650 8510 17650 9126 17650 9126 17651 8510 17651 8511 17651 9126 17652 8511 17652 9061 17652 9061 17653 8511 17653 9060 17653 9060 17654 8511 17654 9059 17654 9059 17655 8511 17655 8512 17655 9059 17656 8512 17656 9069 17656 9069 17657 8512 17657 9070 17657 9070 17658 8512 17658 8514 17658 9070 17659 8514 17659 9075 17659 9075 17660 8514 17660 8305 17660 9075 17661 8305 17661 8303 17661 8314 17662 8313 17662 8510 17662 8510 17663 8313 17663 8511 17663 8313 17664 8513 17664 8511 17664 8511 17665 8513 17665 8310 17665 8514 17666 8307 17666 8305 17666 8303 17667 8301 17667 8515 17667 8303 17668 8515 17668 9405 17668 9405 17669 8515 17669 8516 17669 9405 17670 8516 17670 9407 17670 9407 17671 8516 17671 9410 17671 9410 17672 8516 17672 8517 17672 9410 17673 8517 17673 9413 17673 9413 17674 8517 17674 8522 17674 8518 17675 8519 17675 8301 17675 8301 17676 8519 17676 8515 17676 8515 17677 8519 17677 8285 17677 8285 17678 8519 17678 8520 17678 8285 17679 8520 17679 8286 17679 8286 17680 8520 17680 6498 17680 8286 17681 6498 17681 6501 17681 8520 17682 8521 17682 6498 17682 6498 17683 8521 17683 8292 17683 8292 17684 8521 17684 8297 17684 8292 17685 8297 17685 8296 17685 8292 17686 8296 17686 8290 17686 6501 17687 8288 17687 8286 17687 9413 17688 8522 17688 8523 17688 9413 17689 8523 17689 9416 17689 8606 17690 9420 17690 8523 17690 8523 17691 9420 17691 9416 17691 8605 17692 9419 17692 8606 17692 8606 17693 9419 17693 9420 17693 8281 17694 8266 17694 8605 17694 8605 17695 8266 17695 8262 17695 8605 17696 8262 17696 8261 17696 8266 17697 8281 17697 8268 17697 8268 17698 8281 17698 8524 17698 8268 17699 8524 17699 8272 17699 8272 17700 8524 17700 8278 17700 8278 17701 8524 17701 8279 17701 8268 17702 8272 17702 8269 17702 8269 17703 8272 17703 8275 17703 8269 17704 8275 17704 8525 17704 8525 17705 8275 17705 8526 17705 8526 17706 8275 17706 8276 17706 8266 17707 8265 17707 8262 17707 8261 17708 8527 17708 9084 17708 8261 17709 9084 17709 9087 17709 8259 17710 8528 17710 8527 17710 8527 17711 8528 17711 9084 17711 9084 17712 8528 17712 9089 17712 9089 17713 8528 17713 8529 17713 9089 17714 8529 17714 9091 17714 9091 17715 8529 17715 9096 17715 9096 17716 8529 17716 8530 17716 9096 17717 8530 17717 9092 17717 9092 17718 8530 17718 9099 17718 9099 17719 8530 17719 8531 17719 9099 17720 8531 17720 9101 17720 9101 17721 8531 17721 9100 17721 9100 17722 8531 17722 8532 17722 9100 17723 8532 17723 9104 17723 9104 17724 8532 17724 8251 17724 9104 17725 8251 17725 9107 17725 9107 17726 8251 17726 8248 17726 9107 17727 8248 17727 8533 17727 8256 17728 8254 17728 8530 17728 8530 17729 8254 17729 8534 17729 8530 17730 8534 17730 8531 17730 8531 17731 8534 17731 8253 17731 8251 17732 8535 17732 8248 17732 8533 17733 8247 17733 9150 17733 8533 17734 9150 17734 9151 17734 8536 17735 8537 17735 8247 17735 8247 17736 8537 17736 9150 17736 9150 17737 8537 17737 9155 17737 9155 17738 8537 17738 8245 17738 9155 17739 8245 17739 9153 17739 9153 17740 8245 17740 9157 17740 9157 17741 8245 17741 8244 17741 9157 17742 8244 17742 9158 17742 9158 17743 8244 17743 9162 17743 9162 17744 8244 17744 8239 17744 9162 17745 8239 17745 9164 17745 9164 17746 8239 17746 9163 17746 9163 17747 8239 17747 8236 17747 9163 17748 8236 17748 9166 17748 9166 17749 8236 17749 8538 17749 9166 17750 8538 17750 9171 17750 9171 17751 8538 17751 8234 17751 9171 17752 8234 17752 8229 17752 8539 17753 8242 17753 8244 17753 8244 17754 8242 17754 8540 17754 8244 17755 8540 17755 8239 17755 8239 17756 8540 17756 8241 17756 8538 17757 8541 17757 8234 17757 8229 17758 8230 17758 9214 17758 8229 17759 9214 17759 9213 17759 8227 17760 8225 17760 8230 17760 8230 17761 8225 17761 9214 17761 9214 17762 8225 17762 9216 17762 9216 17763 8225 17763 8542 17763 9216 17764 8542 17764 9220 17764 9220 17765 8542 17765 8543 17765 9220 17766 8543 17766 9225 17766 9225 17767 8543 17767 9219 17767 9219 17768 8543 17768 9230 17768 9230 17769 8543 17769 8544 17769 9230 17770 8544 17770 9229 17770 9229 17771 8544 17771 9228 17771 9228 17772 8544 17772 8545 17772 9228 17773 8545 17773 9235 17773 9235 17774 8545 17774 9232 17774 9232 17775 8545 17775 8214 17775 9232 17776 8214 17776 9237 17776 9237 17777 8214 17777 8212 17777 9237 17778 8212 17778 8209 17778 8222 17779 8220 17779 8543 17779 8543 17780 8220 17780 8219 17780 8543 17781 8219 17781 8544 17781 8544 17782 8219 17782 8218 17782 8214 17783 8546 17783 8212 17783 8209 17784 8208 17784 9278 17784 8209 17785 9278 17785 9280 17785 8547 17786 8206 17786 8208 17786 8208 17787 8206 17787 9278 17787 9278 17788 8206 17788 9285 17788 9285 17789 8206 17789 8548 17789 9285 17790 8548 17790 9283 17790 9283 17791 8548 17791 8550 17791 9283 17792 8550 17792 8549 17792 8549 17793 8550 17793 9292 17793 9292 17794 8550 17794 8551 17794 9292 17795 8551 17795 9290 17795 9290 17796 8551 17796 8552 17796 9290 17797 8552 17797 9297 17797 9297 17798 8552 17798 9294 17798 9294 17799 8552 17799 8195 17799 9294 17800 8195 17800 8553 17800 8553 17801 8195 17801 8554 17801 8553 17802 8554 17802 8192 17802 8203 17803 8201 17803 8550 17803 8550 17804 8201 17804 8199 17804 8550 17805 8199 17805 8551 17805 8551 17806 8199 17806 8197 17806 8195 17807 8194 17807 8554 17807 8192 17808 8555 17808 9343 17808 8192 17809 9343 17809 9344 17809 8191 17810 8556 17810 8555 17810 8555 17811 8556 17811 9343 17811 9343 17812 8556 17812 9345 17812 9345 17813 8556 17813 8189 17813 9345 17814 8189 17814 9346 17814 9346 17815 8189 17815 9354 17815 9354 17816 8189 17816 8557 17816 9354 17817 8557 17817 9353 17817 9353 17818 8557 17818 9352 17818 9352 17819 8557 17819 9359 17819 9359 17820 8557 17820 8558 17820 9359 17821 8558 17821 9360 17821 9360 17822 8558 17822 8559 17822 9360 17823 8559 17823 9364 17823 9364 17824 8559 17824 9362 17824 9362 17825 8559 17825 8560 17825 9362 17826 8560 17826 8561 17826 8561 17827 8560 17827 8563 17827 8561 17828 8563 17828 8180 17828 8187 17829 8562 17829 8557 17829 8557 17830 8562 17830 8185 17830 8557 17831 8185 17831 8558 17831 8558 17832 8185 17832 8184 17832 8560 17833 8181 17833 8563 17833 8180 17834 8178 17834 9779 17834 8177 17835 8600 17835 8178 17835 8178 17836 8600 17836 9779 17836 8175 17837 9031 17837 8600 17837 8600 17838 9031 17838 9035 17838 8600 17839 9035 17839 9032 17839 8175 17840 8565 17840 9031 17840 9031 17841 8565 17841 9030 17841 8173 17842 8564 17842 8565 17842 8565 17843 8564 17843 8170 17843 8565 17844 8170 17844 8609 17844 8609 17845 8170 17845 8169 17845 8167 17846 9019 17846 8609 17846 8566 17847 9016 17847 8167 17847 8167 17848 9016 17848 9015 17848 8166 17849 8567 17849 8566 17849 8566 17850 8567 17850 9010 17850 8566 17851 9010 17851 9016 17851 8567 17852 8164 17852 9010 17852 9010 17853 8164 17853 9012 17853 9012 17854 8164 17854 9692 17854 9012 17855 9692 17855 9691 17855 8164 17856 8163 17856 9708 17856 8568 17857 8601 17857 8163 17857 8163 17858 8601 17858 9708 17858 8569 17859 8966 17859 8601 17859 8601 17860 8966 17860 8969 17860 8601 17861 8969 17861 8972 17861 8569 17862 8611 17862 8966 17862 8966 17863 8611 17863 8968 17863 8161 17864 8159 17864 8611 17864 8611 17865 8159 17865 8570 17865 8611 17866 8570 17866 8573 17866 8573 17867 8570 17867 8571 17867 8572 17868 8956 17868 8573 17868 8573 17869 8956 17869 8954 17869 8157 17870 8950 17870 8572 17870 8572 17871 8950 17871 8956 17871 8574 17872 8575 17872 8157 17872 8157 17873 8575 17873 8948 17873 8157 17874 8948 17874 8950 17874 8575 17875 8154 17875 8948 17875 8948 17876 8154 17876 8946 17876 8946 17877 8154 17877 9624 17877 8946 17878 9624 17878 9623 17878 8154 17879 8153 17879 9636 17879 8152 17880 8603 17880 8153 17880 8153 17881 8603 17881 9636 17881 8150 17882 8901 17882 8603 17882 8603 17883 8901 17883 8576 17883 8603 17884 8576 17884 8902 17884 8150 17885 8613 17885 8901 17885 8901 17886 8613 17886 8900 17886 8577 17887 8148 17887 8613 17887 8613 17888 8148 17888 8145 17888 8613 17889 8145 17889 8143 17889 8143 17890 8145 17890 8578 17890 8579 17891 8891 17891 8143 17891 8143 17892 8891 17892 8890 17892 8142 17893 8887 17893 8579 17893 8579 17894 8887 17894 8891 17894 8141 17895 8136 17895 8142 17895 8142 17896 8136 17896 8883 17896 8142 17897 8883 17897 8887 17897 8136 17898 8138 17898 8883 17898 8883 17899 8138 17899 8884 17899 8884 17900 8138 17900 9552 17900 8884 17901 9552 17901 9546 17901 8138 17902 8135 17902 9569 17902 8134 17903 8604 17903 8135 17903 8135 17904 8604 17904 9569 17904 8580 17905 8661 17905 8604 17905 8604 17906 8661 17906 8667 17906 8604 17907 8667 17907 8668 17907 8580 17908 8581 17908 8661 17908 8661 17909 8581 17909 8663 17909 8130 17910 8128 17910 8581 17910 8581 17911 8128 17911 8582 17911 8581 17912 8582 17912 8126 17912 8126 17913 8582 17913 8583 17913 8617 17914 8618 17914 8126 17914 8126 17915 8618 17915 8651 17915 8586 17916 8648 17916 8617 17916 8617 17917 8648 17917 8618 17917 8584 17918 8585 17918 8586 17918 8586 17919 8585 17919 8646 17919 8586 17920 8646 17920 8648 17920 8585 17921 8123 17921 8646 17921 8646 17922 8123 17922 8644 17922 8644 17923 8123 17923 9490 17923 8123 17924 8121 17924 9502 17924 8120 17925 8587 17925 8121 17925 8121 17926 8587 17926 9502 17926 8588 17927 8107 17927 8587 17927 8587 17928 8107 17928 8589 17928 8587 17929 8589 17929 9507 17929 9507 17930 8589 17930 8105 17930 9507 17931 8105 17931 8590 17931 9507 17932 8590 17932 8102 17932 8588 17933 8592 17933 8107 17933 8107 17934 8592 17934 8108 17934 8108 17935 8592 17935 8113 17935 8108 17936 8113 17936 8591 17936 8591 17937 8113 17937 8115 17937 8117 17938 8593 17938 8592 17938 8592 17939 8593 17939 8113 17939 8591 17940 3031 17940 8108 17940 8108 17941 3031 17941 8110 17941 8102 17942 8594 17942 9520 17942 9520 17943 8594 17943 8595 17943 9520 17944 8595 17944 9521 17944 9521 17945 8595 17945 8459 17945 9521 17946 8459 17946 9460 17946 9460 17947 8459 17947 8448 17947 9460 17948 8448 17948 9468 17948 8097 17949 3168 17949 8098 17949 8098 17950 3168 17950 8092 17950 9992 17951 9995 17951 9994 17951 9990 17952 9996 17952 9992 17952 9992 17953 9996 17953 9995 17953 9996 17954 9990 17954 10004 17954 10004 17955 9990 17955 8321 17955 8321 17956 9990 17956 9138 17956 8321 17957 9138 17957 9141 17957 9138 17958 9990 17958 10049 17958 9138 17959 10049 17959 10046 17959 9138 17960 10046 17960 9143 17960 9143 17961 10046 17961 10047 17961 9143 17962 10047 17962 10044 17962 9143 17963 10044 17963 9146 17963 9146 17964 10044 17964 10040 17964 9146 17965 10040 17965 10038 17965 9146 17966 10038 17966 10035 17966 10035 17967 10036 17967 9146 17967 9146 17968 10036 17968 9151 17968 9151 17969 10036 17969 10032 17969 9151 17970 10032 17970 8533 17970 8533 17971 10032 17971 10022 17971 10022 17972 10032 17972 10029 17972 10022 17973 10029 17973 10025 17973 10025 17974 10029 17974 10023 17974 9107 17975 10022 17975 10020 17975 9107 17976 10020 17976 8596 17976 8596 17977 10020 17977 10019 17977 8596 17978 10019 17978 9109 17978 9109 17979 10019 17979 10016 17979 10016 17980 10013 17980 9109 17980 9109 17981 10013 17981 9114 17981 9114 17982 10013 17982 10009 17982 9114 17983 10009 17983 9112 17983 9112 17984 10009 17984 10006 17984 10006 17985 10003 17985 9112 17985 9112 17986 10003 17986 9117 17986 9117 17987 10003 17987 10001 17987 9117 17988 10001 17988 10004 17988 9117 17989 10004 17989 8321 17989 9920 17990 9926 17990 9923 17990 9984 17991 9929 17991 9920 17991 9920 17992 9929 17992 9928 17992 9920 17993 9928 17993 9926 17993 9929 17994 9984 17994 8337 17994 8337 17995 9984 17995 9201 17995 9201 17996 9984 17996 9987 17996 9201 17997 9987 17997 9200 17997 9200 17998 9987 17998 9983 17998 9200 17999 9983 17999 9205 17999 9205 18000 9983 18000 9981 18000 9205 18001 9981 18001 9979 18001 9205 18002 9979 18002 9978 18002 9205 18003 9978 18003 9208 18003 9208 18004 9978 18004 9977 18004 9208 18005 9977 18005 9976 18005 9208 18006 9976 18006 9209 18006 9976 18007 9970 18007 9209 18007 9209 18008 9970 18008 9213 18008 9213 18009 9970 18009 9968 18009 9213 18010 9968 18010 9967 18010 9213 18011 9967 18011 8229 18011 8229 18012 9967 18012 9951 18012 9951 18013 9967 18013 9963 18013 9951 18014 9963 18014 9953 18014 9953 18015 9963 18015 9956 18015 9963 18016 9957 18016 9956 18016 9956 18017 9957 18017 9962 18017 9170 18018 9951 18018 9948 18018 9170 18019 9948 18019 9944 18019 9170 18020 9944 18020 9174 18020 9174 18021 9944 18021 9945 18021 9174 18022 9945 18022 9942 18022 9174 18023 9942 18023 9175 18023 9175 18024 9942 18024 9940 18024 9175 18025 9940 18025 9177 18025 9177 18026 9940 18026 9937 18026 9937 18027 9935 18027 9177 18027 9177 18028 9935 18028 9178 18028 9178 18029 9935 18029 9931 18029 9178 18030 9931 18030 9932 18030 9178 18031 9932 18031 9181 18031 9181 18032 9932 18032 9929 18032 9181 18033 9929 18033 8337 18033 9917 18034 9867 18034 9857 18034 9857 18035 9867 18035 9862 18035 9857 18036 9862 18036 9859 18036 9859 18037 9862 18037 9864 18037 9867 18038 9917 18038 8356 18038 8356 18039 9917 18039 9268 18039 9268 18040 9917 18040 9915 18040 9268 18041 9915 18041 9267 18041 9267 18042 9915 18042 9919 18042 9267 18043 9919 18043 9273 18043 9273 18044 9919 18044 9912 18044 9912 18045 9911 18045 9273 18045 9273 18046 9911 18046 9275 18046 9275 18047 9911 18047 9909 18047 9275 18048 9909 18048 9905 18048 9275 18049 9905 18049 9277 18049 9277 18050 9905 18050 9907 18050 9907 18051 9902 18051 9277 18051 9277 18052 9902 18052 9280 18052 9280 18053 9902 18053 9900 18053 9280 18054 9900 18054 9899 18054 9280 18055 9899 18055 8209 18055 8209 18056 9899 18056 9887 18056 9887 18057 9899 18057 9897 18057 9887 18058 9897 18058 9892 18058 9892 18059 9897 18059 9891 18059 9891 18060 9897 18060 9895 18060 9237 18061 9887 18061 9881 18061 9237 18062 9881 18062 9236 18062 9236 18063 9881 18063 9885 18063 9236 18064 9885 18064 9240 18064 9240 18065 9885 18065 9879 18065 9879 18066 9878 18066 9240 18066 9240 18067 9878 18067 9244 18067 9244 18068 9878 18068 9874 18068 9244 18069 9874 18069 9245 18069 9245 18070 9874 18070 9871 18070 9871 18071 9869 18071 9245 18071 9245 18072 9869 18072 9249 18072 9249 18073 9869 18073 9246 18073 9246 18074 9869 18074 9867 18074 9246 18075 9867 18075 8356 18075 9793 18076 9801 18076 9797 18076 9797 18077 9801 18077 9799 18077 9801 18078 9793 18078 9804 18078 9804 18079 9793 18079 8372 18079 8372 18080 9793 18080 9332 18080 9332 18081 9793 18081 9855 18081 9332 18082 9855 18082 9334 18082 9334 18083 9855 18083 9851 18083 9334 18084 9851 18084 9339 18084 9339 18085 9851 18085 9849 18085 9339 18086 9849 18086 9848 18086 9339 18087 9848 18087 8597 18087 8597 18088 9848 18088 9844 18088 8597 18089 9844 18089 9842 18089 8597 18090 9842 18090 9340 18090 9340 18091 9842 18091 9843 18091 9843 18092 9840 18092 9340 18092 9340 18093 9840 18093 9344 18093 9344 18094 9840 18094 9836 18094 9344 18095 9836 18095 8192 18095 8192 18096 9836 18096 9823 18096 9823 18097 9836 18097 9832 18097 9823 18098 9832 18098 9826 18098 9826 18099 9832 18099 9824 18099 9832 18100 9830 18100 9824 18100 9299 18101 9823 18101 9822 18101 9299 18102 9822 18102 9819 18102 9299 18103 9819 18103 8598 18103 8598 18104 9819 18104 9815 18104 9815 18105 9816 18105 8598 18105 8598 18106 9816 18106 9302 18106 9302 18107 9816 18107 9811 18107 9302 18108 9811 18108 9810 18108 9302 18109 9810 18109 8599 18109 9810 18110 9803 18110 8599 18110 8599 18111 9803 18111 9308 18111 9308 18112 9803 18112 9806 18112 9308 18113 9806 18113 9305 18113 9305 18114 9806 18114 9804 18114 9305 18115 9804 18115 8372 18115 9728 18116 9738 18116 9731 18116 9731 18117 9738 18117 9732 18117 9732 18118 9738 18118 9737 18118 9738 18119 9728 18119 9743 18119 9743 18120 9728 18120 8391 18120 8391 18121 9728 18121 9049 18121 8391 18122 9049 18122 9050 18122 9049 18123 9728 18123 9792 18123 9049 18124 9792 18124 9789 18124 9049 18125 9789 18125 9044 18125 9044 18126 9789 18126 9042 18126 9042 18127 9789 18127 9781 18127 9042 18128 9781 18128 9039 18128 9039 18129 9781 18129 9032 18129 9032 18130 9781 18130 8600 18130 9781 18131 9789 18131 9788 18131 9781 18132 9788 18132 9786 18132 9786 18133 9788 18133 9787 18133 9781 18134 9786 18134 9784 18134 9781 18135 9778 18135 8600 18135 8600 18136 9778 18136 9779 18136 8180 18137 9779 18137 9762 18137 9762 18138 9779 18138 9776 18138 9762 18139 9776 18139 9763 18139 9763 18140 9776 18140 9769 18140 9776 18141 9774 18141 9769 18141 9365 18142 9762 18142 9759 18142 9365 18143 9759 18143 9757 18143 9365 18144 9757 18144 9369 18144 9369 18145 9757 18145 9754 18145 9754 18146 9755 18146 9369 18146 9369 18147 9755 18147 9372 18147 9372 18148 9755 18148 9750 18148 9372 18149 9750 18149 9748 18149 9372 18150 9748 18150 9744 18150 9744 18151 9745 18151 9372 18151 9372 18152 9745 18152 9375 18152 9375 18153 9745 18153 9379 18153 9379 18154 9745 18154 9378 18154 9378 18155 9745 18155 9743 18155 9378 18156 9743 18156 8391 18156 9661 18157 9662 18157 9659 18157 9657 18158 9670 18158 9661 18158 9661 18159 9670 18159 9662 18159 9662 18160 9670 18160 9666 18160 9670 18161 9657 18161 9669 18161 9669 18162 9657 18162 9727 18162 9669 18163 9727 18163 8405 18163 8405 18164 9727 18164 8981 18164 8405 18165 8981 18165 8980 18165 8981 18166 9727 18166 9726 18166 8981 18167 9726 18167 9725 18167 8981 18168 9725 18168 8979 18168 8979 18169 9725 18169 8977 18169 8977 18170 9725 18170 9713 18170 8977 18171 9713 18171 8976 18171 8976 18172 9713 18172 8972 18172 8972 18173 9713 18173 8601 18173 9713 18174 9725 18174 9714 18174 9714 18175 9725 18175 9717 18175 9725 18176 9723 18176 9717 18176 9717 18177 9723 18177 9722 18177 9714 18178 9717 18178 9719 18178 9713 18179 9711 18179 8601 18179 8601 18180 9711 18180 9708 18180 8164 18181 9708 18181 9692 18181 9692 18182 9708 18182 9703 18182 9692 18183 9703 18183 9695 18183 9695 18184 9703 18184 9697 18184 9695 18185 9697 18185 9694 18185 9697 18186 9703 18186 9702 18186 9012 18187 9691 18187 9689 18187 9012 18188 9689 18188 9008 18188 9689 18189 9683 18189 9008 18189 9008 18190 9683 18190 9684 18190 9008 18191 9684 18191 9006 18191 9006 18192 9684 18192 9681 18192 9006 18193 9681 18193 9679 18193 9006 18194 9679 18194 9678 18194 9678 18195 9676 18195 9006 18195 9006 18196 9676 18196 9672 18196 9006 18197 9672 18197 8608 18197 8608 18198 9672 18198 9669 18198 9595 18199 9598 18199 9590 18199 9595 18200 9603 18200 9600 18200 9595 18201 9600 18201 9598 18201 9603 18202 9595 18202 9655 18202 9603 18203 9655 18203 8417 18203 8417 18204 9655 18204 8602 18204 8417 18205 8602 18205 8471 18205 8602 18206 9655 18206 9656 18206 8602 18207 9656 18207 9651 18207 8602 18208 9651 18208 8908 18208 8908 18209 9651 18209 8910 18209 8910 18210 9651 18210 9640 18210 8910 18211 9640 18211 8907 18211 8907 18212 9640 18212 8902 18212 8902 18213 9640 18213 8603 18213 9640 18214 9651 18214 9648 18214 9651 18215 9650 18215 9648 18215 9640 18216 9648 18216 9645 18216 9640 18217 9645 18217 9641 18217 9640 18218 9639 18218 8603 18218 8603 18219 9639 18219 9636 18219 8154 18220 9636 18220 9624 18220 9624 18221 9636 18221 9626 18221 9626 18222 9636 18222 9635 18222 9626 18223 9635 18223 9628 18223 9628 18224 9635 18224 9629 18224 8946 18225 9623 18225 9621 18225 8946 18226 9621 18226 8938 18226 9621 18227 9616 18227 8938 18227 8938 18228 9616 18228 9617 18228 8938 18229 9617 18229 8942 18229 8942 18230 9617 18230 9613 18230 8942 18231 9613 18231 9610 18231 9610 18232 9608 18232 8942 18232 8942 18233 9608 18233 8476 18233 8476 18234 9608 18234 9603 18234 9584 18235 9534 18235 9524 18235 9524 18236 9534 18236 9530 18236 9524 18237 9530 18237 9526 18237 9526 18238 9530 18238 9528 18238 9534 18239 9584 18239 8431 18239 8431 18240 9584 18240 8677 18240 8431 18241 8677 18241 8679 18241 8677 18242 9584 18242 9587 18242 8677 18243 9587 18243 9583 18243 8677 18244 9583 18244 8674 18244 8674 18245 9583 18245 8672 18245 8672 18246 9583 18246 9568 18246 8672 18247 9568 18247 8670 18247 8670 18248 9568 18248 8668 18248 8668 18249 9568 18249 8604 18249 9568 18250 9583 18250 9576 18250 9583 18251 9582 18251 9576 18251 9576 18252 9582 18252 9575 18252 9568 18253 9576 18253 9578 18253 9568 18254 9578 18254 9572 18254 9568 18255 9570 18255 8604 18255 8604 18256 9570 18256 9569 18256 8138 18257 9569 18257 9552 18257 9552 18258 9569 18258 9551 18258 9551 18259 9569 18259 9566 18259 9551 18260 9566 18260 9554 18260 9554 18261 9566 18261 9555 18261 9555 18262 9566 18262 9561 18262 8884 18263 9546 18263 9547 18263 8884 18264 9547 18264 8881 18264 9547 18265 9543 18265 8881 18265 8881 18266 9543 18266 9544 18266 8881 18267 9544 18267 8879 18267 8879 18268 9544 18268 9540 18268 8879 18269 9540 18269 9537 18269 9537 18270 9531 18270 8879 18270 8879 18271 9531 18271 9533 18271 8879 18272 9533 18272 8612 18272 8612 18273 9533 18273 9534 18273 9460 18274 9466 18274 9462 18274 9462 18275 9466 18275 9464 18275 9466 18276 9460 18276 9468 18276 9520 18277 9508 18277 9507 18277 9520 18278 9507 18278 8102 18278 9508 18279 9520 18279 9513 18279 9520 18280 9516 18280 9513 18280 9508 18281 9513 18281 9511 18281 9507 18282 9503 18282 8587 18282 8587 18283 9503 18283 9502 18283 8123 18284 9502 18284 9490 18284 9490 18285 9502 18285 9489 18285 9489 18286 9502 18286 9497 18286 9489 18287 9497 18287 9494 18287 9494 18288 9497 18288 9496 18288 8644 18289 9490 18289 9486 18289 8644 18290 9486 18290 8643 18290 9486 18291 9483 18291 8643 18291 8643 18292 9483 18292 9484 18292 8643 18293 9484 18293 8640 18293 8640 18294 9484 18294 9481 18294 8640 18295 9481 18295 9478 18295 8640 18296 9478 18296 9474 18296 9474 18297 9473 18297 8640 18297 8640 18298 9473 18298 9471 18298 8640 18299 9471 18299 8616 18299 8616 18300 9471 18300 9468 18300 9388 18301 9402 18301 9398 18301 9398 18302 9402 18302 9401 18302 9402 18303 9388 18303 9405 18303 9405 18304 9388 18304 8303 18304 8303 18305 9388 18305 9075 18305 9456 18306 9075 18306 9388 18306 9075 18307 9456 18307 9455 18307 9075 18308 9455 18308 9072 18308 9072 18309 9455 18309 9458 18309 9072 18310 9458 18310 9081 18310 9081 18311 9458 18311 9449 18311 9449 18312 9450 18312 9081 18312 9081 18313 9450 18313 9079 18313 9079 18314 9450 18314 9447 18314 9079 18315 9447 18315 9445 18315 9079 18316 9445 18316 9082 18316 9082 18317 9445 18317 9444 18317 9444 18318 9441 18318 9082 18318 9082 18319 9441 18319 9087 18319 9087 18320 9441 18320 9438 18320 9087 18321 9438 18321 9440 18321 9087 18322 9440 18322 8261 18322 8261 18323 9440 18323 9423 18323 9423 18324 9440 18324 9433 18324 9423 18325 9433 18325 9428 18325 9428 18326 9433 18326 9434 18326 8261 18327 9423 18327 8605 18327 8605 18328 9423 18328 9419 18328 9762 18329 9365 18329 8180 18329 8180 18330 9365 18330 8561 18330 9823 18331 9299 18331 8192 18331 8192 18332 9299 18332 8553 18332 9887 18333 9237 18333 8209 18333 9951 18334 9170 18334 8229 18334 8229 18335 9170 18335 9171 18335 10022 18336 9107 18336 8533 18336 8994 18337 8995 18337 8607 18337 9003 18338 9001 18338 8608 18338 8608 18339 9001 18339 9006 18339 8167 18340 9015 18340 9019 18340 9019 18341 9022 18341 8609 18341 8609 18342 9022 18342 8565 18342 9022 18343 9023 18343 8565 18343 8565 18344 9023 18344 9025 18344 8565 18345 9025 18345 9030 18345 8610 18346 8928 18346 8926 18346 8930 18347 8931 18347 8416 18347 8935 18348 8934 18348 8476 18348 8476 18349 8934 18349 8937 18349 8476 18350 8937 18350 8942 18350 8954 18351 8958 18351 8573 18351 8573 18352 8958 18352 8611 18352 8958 18353 8963 18353 8611 18353 8963 18354 8964 18354 8611 18354 8611 18355 8964 18355 8968 18355 8469 18356 8868 18356 8864 18356 8870 18357 8869 18357 8468 18357 8872 18358 8876 18358 8612 18358 8612 18359 8876 18359 8879 18359 8890 18360 8893 18360 8143 18360 8143 18361 8893 18361 8613 18361 8893 18362 8896 18362 8613 18362 8613 18363 8896 18363 8897 18363 8613 18364 8897 18364 8900 18364 8614 18365 8628 18365 8627 18365 8633 18366 8635 18366 8616 18366 8616 18367 8635 18367 8638 18367 8616 18368 8638 18368 8640 18368 8126 18369 8651 18369 8581 18369 8651 18370 8656 18370 8581 18370 8656 18371 8655 18371 8581 18371 8581 18372 8655 18372 8663 18372 8623 18373 8621 18373 8624 18373 8622 18374 8619 18374 8623 18374 8622 18375 8623 18375 8624 18375 8623 18376 8619 18376 8621 18376 8620 18377 8622 18377 8624 18377 8626 18378 8628 18378 8619 18378 8619 18379 8628 18379 8621 18379 8625 18380 8863 18380 8627 18380 8628 18381 8625 18381 8627 18381 8628 18382 8626 18382 8625 18382 8631 18383 8632 18383 8863 18383 8863 18384 8632 18384 8627 18384 8631 18385 8630 18385 8632 18385 8632 18386 8630 18386 8629 18386 8634 18387 8633 18387 8630 18387 8630 18388 8633 18388 8629 18388 8634 18389 8637 18389 8633 18389 8634 18390 8636 18390 8637 18390 8633 18391 8637 18391 8635 18391 8635 18392 8637 18392 8636 18392 8636 18393 8638 18393 8635 18393 8636 18394 8642 18394 8638 18394 8642 18395 8643 18395 8640 18395 8641 18396 8639 18396 8643 18396 8641 18397 8643 18397 8642 18397 8636 18398 8641 18398 8642 18398 8638 18399 8642 18399 8640 18399 8647 18400 8644 18400 8639 18400 8639 18401 8644 18401 8643 18401 8647 18402 8646 18402 8644 18402 8646 18403 8647 18403 8645 18403 8649 18404 8648 18404 8645 18404 8645 18405 8648 18405 8646 18405 8650 18406 8618 18406 8648 18406 8618 18407 8650 18407 8652 18407 8649 18408 8650 18408 8648 18408 8649 18409 8652 18409 8650 18409 8652 18410 8653 18410 8618 18410 8652 18411 8654 18411 8653 18411 8651 18412 8653 18412 8654 18412 8618 18413 8653 18413 8651 18413 8657 18414 8656 18414 8654 18414 8654 18415 8656 18415 8651 18415 8657 18416 8660 18416 8656 18416 8656 18417 8660 18417 8655 18417 8659 18418 8655 18418 8660 18418 8660 18419 8658 18419 8659 18419 8658 18420 8660 18420 8657 18420 8659 18421 8663 18421 8655 18421 8661 18422 8663 18422 8662 18422 8662 18423 8663 18423 8659 18423 8666 18424 8667 18424 8662 18424 8662 18425 8667 18425 8661 18425 8666 18426 8665 18426 8667 18426 8668 18427 8665 18427 8664 18427 8666 18428 8664 18428 8665 18428 8665 18429 8668 18429 8667 18429 8669 18430 8670 18430 8664 18430 8664 18431 8670 18431 8668 18431 8669 18432 8671 18432 8670 18432 8673 18433 8674 18433 8672 18433 8673 18434 8672 18434 8671 18434 8670 18435 8671 18435 8672 18435 8676 18436 8677 18436 8673 18436 8673 18437 8677 18437 8674 18437 8676 18438 8678 18438 8677 18438 8678 18439 8679 18439 8677 18439 8679 18440 8678 18440 8675 18440 8675 18441 8678 18441 8676 18441 8681 18442 8682 18442 8675 18442 8675 18443 8682 18443 8679 18443 8681 18444 8680 18444 8682 18444 8683 18445 8682 18445 8680 18445 8620 18446 8624 18446 8680 18446 8680 18447 8624 18447 8683 18447 8089 18448 8090 18448 8684 18448 8684 18449 8090 18449 8094 18449 8684 18450 8094 18450 8096 18450 8096 18451 8094 18451 10432 18451 8096 18452 10432 18452 10435 18452 8094 18453 8091 18453 10432 18453 10435 18454 8685 18454 8096 18454 8096 18455 8099 18455 8684 18455 8684 18456 8099 18456 8454 18456 8454 18457 8099 18457 8843 18457 8843 18458 8099 18458 8101 18458 8843 18459 8101 18459 9518 18459 9518 18460 8101 18460 8686 18460 9518 18461 8686 18461 8103 18461 9518 18462 8103 18462 8104 18462 8104 18463 8687 18463 9504 18463 9504 18464 8687 18464 8106 18464 9504 18465 8106 18465 8688 18465 9504 18466 8688 18466 9501 18466 9501 18467 8688 18467 8122 18467 9501 18468 8122 18468 9487 18468 9487 18469 8122 18469 8696 18469 9487 18470 8696 18470 8862 18470 8862 18471 8696 18471 8124 18471 8689 18472 8118 18472 8688 18472 8688 18473 8118 18473 8695 18473 8688 18474 8695 18474 8122 18474 8118 18475 8689 18475 8690 18475 8690 18476 8689 18476 8691 18476 8690 18477 8691 18477 8111 18477 8111 18478 8691 18478 10446 18478 10446 18479 8691 18479 8109 18479 8690 18480 8111 18480 8692 18480 8692 18481 8111 18481 8116 18481 8692 18482 8116 18482 8693 18482 8693 18483 8116 18483 8694 18483 8694 18484 8116 18484 8112 18484 8118 18485 8119 18485 8695 18485 8125 18486 8649 18486 8862 18486 8862 18487 8649 18487 8645 18487 8862 18488 8645 18488 8647 18488 8861 18489 8652 18489 8125 18489 8697 18490 8698 18490 8861 18490 8861 18491 8698 18491 8131 18491 8861 18492 8131 18492 8654 18492 8654 18493 8131 18493 8657 18493 8657 18494 8131 18494 8658 18494 8658 18495 8131 18495 8659 18495 8659 18496 8131 18496 8132 18496 8659 18497 8132 18497 8662 18497 8662 18498 8132 18498 8699 18498 8662 18499 8699 18499 8666 18499 8666 18500 8699 18500 8700 18500 8666 18501 8700 18501 8701 18501 8698 18502 8127 18502 8131 18502 8131 18503 8127 18503 8129 18503 8699 18504 8133 18504 8700 18504 8701 18505 8137 18505 9550 18505 8139 18506 8140 18506 8137 18506 8137 18507 8140 18507 9550 18507 8702 18508 8703 18508 8140 18508 8140 18509 8703 18509 8882 18509 8140 18510 8882 18510 8885 18510 8859 18511 8892 18511 8702 18511 8702 18512 8892 18512 8886 18512 8144 18513 8146 18513 8859 18513 8859 18514 8146 18514 8704 18514 8859 18515 8704 18515 8889 18515 8889 18516 8704 18516 8895 18516 8895 18517 8704 18517 8898 18517 8898 18518 8704 18518 8894 18518 8894 18519 8704 18519 8705 18519 8894 18520 8705 18520 8899 18520 8899 18521 8705 18521 8706 18521 8899 18522 8706 18522 8905 18522 8905 18523 8706 18523 8707 18523 8905 18524 8707 18524 8155 18524 8146 18525 8147 18525 8704 18525 8704 18526 8147 18526 8149 18526 8706 18527 8151 18527 8707 18527 8155 18528 8156 18528 9620 18528 8708 18529 8709 18529 8156 18529 8156 18530 8709 18530 9620 18530 8856 18531 8949 18531 8709 18531 8709 18532 8949 18532 8945 18532 8709 18533 8945 18533 8943 18533 8855 18534 8952 18534 8856 18534 8158 18535 8710 18535 8855 18535 8855 18536 8710 18536 8711 18536 8855 18537 8711 18537 8957 18537 8957 18538 8711 18538 8960 18538 8960 18539 8711 18539 8961 18539 8961 18540 8711 18540 8959 18540 8959 18541 8711 18541 8712 18541 8959 18542 8712 18542 8965 18542 8965 18543 8712 18543 8967 18543 8967 18544 8712 18544 8162 18544 8967 18545 8162 18545 8970 18545 8970 18546 8162 18546 8715 18546 8970 18547 8715 18547 8839 18547 8710 18548 8713 18548 8711 18548 8711 18549 8713 18549 8160 18549 8162 18550 8714 18550 8715 18550 8839 18551 8165 18551 9688 18551 8716 18552 8838 18552 8165 18552 8165 18553 8838 18553 9688 18553 8851 18554 9014 18554 8838 18554 8838 18555 9014 18555 9011 18555 8838 18556 9011 18556 9013 18556 8717 18557 9018 18557 8851 18557 8718 18558 8168 18558 8717 18558 8717 18559 8168 18559 8719 18559 8717 18560 8719 18560 9021 18560 9021 18561 8719 18561 9026 18561 9026 18562 8719 18562 9024 18562 9024 18563 8719 18563 8720 18563 9024 18564 8720 18564 9028 18564 9028 18565 8720 18565 9029 18565 9029 18566 8720 18566 8174 18566 9029 18567 8174 18567 9033 18567 9033 18568 8174 18568 8721 18568 9033 18569 8721 18569 8179 18569 8168 18570 8171 18570 8719 18570 8719 18571 8171 18571 8172 18571 8174 18572 8176 18572 8721 18572 8179 18573 8722 18573 9760 18573 8182 18574 8183 18574 8722 18574 8722 18575 8183 18575 9760 18575 8849 18576 9361 18576 8183 18576 8183 18577 9361 18577 9366 18577 8183 18578 9366 18578 9367 18578 8848 18579 9356 18579 8849 18579 8723 18580 8727 18580 8848 18580 8848 18581 8727 18581 8188 18581 8848 18582 8188 18582 9358 18582 9358 18583 8188 18583 9348 18583 9348 18584 8188 18584 9350 18584 9350 18585 8188 18585 9349 18585 9349 18586 8188 18586 8724 18586 9349 18587 8724 18587 9347 18587 9347 18588 8724 18588 8725 18588 9347 18589 8725 18589 9342 18589 9342 18590 8725 18590 8726 18590 9342 18591 8726 18591 8729 18591 8727 18592 8186 18592 8188 18592 8188 18593 8186 18593 8728 18593 8725 18594 8190 18594 8726 18594 8729 18595 8730 18595 9298 18595 8729 18596 9298 18596 8836 18596 8193 18597 8196 18597 8730 18597 8730 18598 8196 18598 9298 18598 9298 18599 8196 18599 9296 18599 9296 18600 8196 18600 8731 18600 9296 18601 8731 18601 9293 18601 9293 18602 8731 18602 8732 18602 8732 18603 8731 18603 8736 18603 8732 18604 8736 18604 9291 18604 9291 18605 8736 18605 8737 18605 9291 18606 8737 18606 9288 18606 9288 18607 8737 18607 9286 18607 9286 18608 8737 18608 9287 18608 9287 18609 8737 18609 8204 18609 9287 18610 8204 18610 9282 18610 9282 18611 8204 18611 9284 18611 9284 18612 8204 18612 8738 18612 9284 18613 8738 18613 8733 18613 8733 18614 8738 18614 8734 18614 8733 18615 8734 18615 8210 18615 8735 18616 8198 18616 8736 18616 8736 18617 8198 18617 8737 18617 8198 18618 8200 18618 8737 18618 8737 18619 8200 18619 8202 18619 8738 18620 8205 18620 8734 18620 8210 18621 8211 18621 9239 18621 8210 18622 9239 18622 9238 18622 8213 18623 8739 18623 8211 18623 8211 18624 8739 18624 9239 18624 9239 18625 8739 18625 9233 18625 9233 18626 8739 18626 8215 18626 9233 18627 8215 18627 9231 18627 9231 18628 8215 18628 9226 18628 9226 18629 8215 18629 8216 18629 9226 18630 8216 18630 9227 18630 9227 18631 8216 18631 8223 18631 9227 18632 8223 18632 9224 18632 9224 18633 8223 18633 9221 18633 9221 18634 8223 18634 9223 18634 9223 18635 8223 18635 8224 18635 9223 18636 8224 18636 9218 18636 9218 18637 8224 18637 9217 18637 9217 18638 8224 18638 8740 18638 9217 18639 8740 18639 9212 18639 9212 18640 8740 18640 8228 18640 9212 18641 8228 18641 8231 18641 8217 18642 8741 18642 8216 18642 8216 18643 8741 18643 8223 18643 8741 18644 8742 18644 8223 18644 8223 18645 8742 18645 8221 18645 8740 18646 8226 18646 8228 18646 8231 18647 8232 18647 9172 18647 8231 18648 9172 18648 9169 18648 8233 18649 8235 18649 8232 18649 8232 18650 8235 18650 9172 18650 9172 18651 8235 18651 9165 18651 9165 18652 8235 18652 8237 18652 9165 18653 8237 18653 9168 18653 9168 18654 8237 18654 9161 18654 9161 18655 8237 18655 8238 18655 9161 18656 8238 18656 9160 18656 9160 18657 8238 18657 8746 18657 9160 18658 8746 18658 9159 18658 9159 18659 8746 18659 9156 18659 9156 18660 8746 18660 8743 18660 9156 18661 8743 18661 9154 18661 9154 18662 8743 18662 8246 18662 9154 18663 8246 18663 9149 18663 9149 18664 8246 18664 8748 18664 9149 18665 8748 18665 8749 18665 8240 18666 8744 18666 8238 18666 8238 18667 8744 18667 8746 18667 8744 18668 8745 18668 8746 18668 8746 18669 8745 18669 8243 18669 8246 18670 8747 18670 8748 18670 8749 18671 8750 18671 9108 18671 8749 18672 9108 18672 9106 18672 8249 18673 8250 18673 8750 18673 8750 18674 8250 18674 9108 18674 9108 18675 8250 18675 9103 18675 9103 18676 8250 18676 8751 18676 9103 18677 8751 18677 9102 18677 9102 18678 8751 18678 9097 18678 9097 18679 8751 18679 8752 18679 9097 18680 8752 18680 9098 18680 9098 18681 8752 18681 8753 18681 9098 18682 8753 18682 9095 18682 9095 18683 8753 18683 9093 18683 9093 18684 8753 18684 8754 18684 9093 18685 8754 18685 9090 18685 9090 18686 8754 18686 8257 18686 9090 18687 8257 18687 9086 18687 9086 18688 8257 18688 8755 18688 9086 18689 8755 18689 8260 18689 8252 18690 8756 18690 8752 18690 8752 18691 8756 18691 8753 18691 8756 18692 8757 18692 8753 18692 8753 18693 8757 18693 8255 18693 8257 18694 8258 18694 8755 18694 8260 18695 8263 18695 8761 18695 8260 18696 8761 18696 9422 18696 9422 18697 8761 18697 9421 18697 9421 18698 8761 18698 8758 18698 9421 18699 8758 18699 9417 18699 9417 18700 8758 18700 8759 18700 9417 18701 8759 18701 9418 18701 9418 18702 8759 18702 9415 18702 9415 18703 8759 18703 8283 18703 8264 18704 8760 18704 8263 18704 8263 18705 8760 18705 8761 18705 8761 18706 8760 18706 8282 18706 8282 18707 8760 18707 8267 18707 8282 18708 8267 18708 8280 18708 8280 18709 8267 18709 8271 18709 8280 18710 8271 18710 8764 18710 8267 18711 8762 18711 8271 18711 8271 18712 8762 18712 8274 18712 8274 18713 8762 18713 8270 18713 8274 18714 8270 18714 8763 18714 8274 18715 8763 18715 8273 18715 8764 18716 8277 18716 8280 18716 9415 18717 8283 18717 9411 18717 9411 18718 8283 18718 8846 18718 8845 18719 9409 18719 8846 18719 8844 18720 9406 18720 8845 18720 8845 18721 9406 18721 9408 18721 8284 18722 8299 18722 8844 18722 8844 18723 8299 18723 8302 18723 8844 18724 8302 18724 8769 18724 8299 18725 8284 18725 8298 18725 8298 18726 8284 18726 8765 18726 8298 18727 8765 18727 8289 18727 8289 18728 8765 18728 8766 18728 8766 18729 8765 18729 8287 18729 8298 18730 8289 18730 8767 18730 8767 18731 8289 18731 8293 18731 8767 18732 8293 18732 8768 18732 8768 18733 8293 18733 8295 18733 8295 18734 8293 18734 8291 18734 8299 18735 8300 18735 8302 18735 8769 18736 8304 18736 9074 18736 8769 18737 9074 18737 9073 18737 8306 18738 8308 18738 8304 18738 8304 18739 8308 18739 9074 18739 9074 18740 8308 18740 9071 18740 9071 18741 8308 18741 8770 18741 9071 18742 8770 18742 9062 18742 9062 18743 8770 18743 8771 18743 9062 18744 8771 18744 9066 18744 9066 18745 8771 18745 9067 18745 9067 18746 8771 18746 9123 18746 9123 18747 8771 18747 8315 18747 9123 18748 8315 18748 9125 18748 9125 18749 8315 18749 9122 18749 9122 18750 8315 18750 8772 18750 9122 18751 8772 18751 9120 18751 9120 18752 8772 18752 8316 18752 9120 18753 8316 18753 9118 18753 9118 18754 8316 18754 8323 18754 9118 18755 8323 18755 8320 18755 8309 18756 8311 18756 8771 18756 8771 18757 8311 18757 8312 18757 8771 18758 8312 18758 8315 18758 8315 18759 8312 18759 8773 18759 8316 18760 8318 18760 8323 18760 8320 18761 8325 18761 9140 18761 8320 18762 9140 18762 9137 18762 8774 18763 8775 18763 8325 18763 8325 18764 8775 18764 9140 18764 9140 18765 8775 18765 9133 18765 9133 18766 8775 18766 8776 18766 9133 18767 8776 18767 9134 18767 9134 18768 8776 18768 9128 18768 9128 18769 8776 18769 8777 18769 9128 18770 8777 18770 9129 18770 9129 18771 8777 18771 9131 18771 9131 18772 8777 18772 9189 18772 9189 18773 8777 18773 8778 18773 9189 18774 8778 18774 9188 18774 9188 18775 8778 18775 9187 18775 9187 18776 8778 18776 8779 18776 9187 18777 8779 18777 9183 18777 9183 18778 8779 18778 9184 18778 9184 18779 8779 18779 8780 18779 9184 18780 8780 18780 9179 18780 9179 18781 8780 18781 8781 18781 9179 18782 8781 18782 8338 18782 8329 18783 8330 18783 8777 18783 8777 18784 8330 18784 8782 18784 8777 18785 8782 18785 8778 18785 8778 18786 8782 18786 8332 18786 8780 18787 8335 18787 8781 18787 8338 18788 8339 18788 9202 18788 8338 18789 9202 18789 9199 18789 8783 18790 8340 18790 8339 18790 8339 18791 8340 18791 9202 18791 9202 18792 8340 18792 8784 18792 8784 18793 8340 18793 8785 18793 8784 18794 8785 18794 9192 18794 9192 18795 8785 18795 8790 18795 9192 18796 8790 18796 9196 18796 9196 18797 8790 18797 9191 18797 9191 18798 8790 18798 9254 18798 9254 18799 8790 18799 8786 18799 9254 18800 8786 18800 9256 18800 9256 18801 8786 18801 8787 18801 9256 18802 8787 18802 9251 18802 9251 18803 8787 18803 9250 18803 9250 18804 8787 18804 8351 18804 9250 18805 8351 18805 8788 18805 8788 18806 8351 18806 8354 18806 8788 18807 8354 18807 8353 18807 8345 18808 8789 18808 8790 18808 8790 18809 8789 18809 8791 18809 8790 18810 8791 18810 8786 18810 8786 18811 8791 18811 8792 18811 8351 18812 8793 18812 8354 18812 8353 18813 8794 18813 9269 18813 8353 18814 9269 18814 9271 18814 8357 18815 8795 18815 8794 18815 8794 18816 8795 18816 9269 18816 9269 18817 8795 18817 9264 18817 9264 18818 8795 18818 8796 18818 9264 18819 8796 18819 9263 18819 9263 18820 8796 18820 9259 18820 9259 18821 8796 18821 8800 18821 9259 18822 8800 18822 9261 18822 9261 18823 8800 18823 9316 18823 9316 18824 8800 18824 8797 18824 9316 18825 8797 18825 9317 18825 9317 18826 8797 18826 8798 18826 9317 18827 8798 18827 9313 18827 9313 18828 8798 18828 9311 18828 9311 18829 8798 18829 8366 18829 9311 18830 8366 18830 9309 18830 9309 18831 8366 18831 8373 18831 9309 18832 8373 18832 8370 18832 8799 18833 8361 18833 8800 18833 8800 18834 8361 18834 8362 18834 8800 18835 8362 18835 8797 18835 8797 18836 8362 18836 8363 18836 8366 18837 8801 18837 8373 18837 8370 18838 8802 18838 9854 18838 8803 18839 8804 18839 8802 18839 8802 18840 8804 18840 9854 18840 8378 18841 9329 18841 8804 18841 8804 18842 9329 18842 9335 18842 8804 18843 9335 18843 9333 18843 8378 18844 8847 18844 9329 18844 9329 18845 8847 18845 9328 18845 9329 18846 9328 18846 9330 18846 8380 18847 8381 18847 8847 18847 8847 18848 8381 18848 8805 18848 8847 18849 8805 18849 8386 18849 8386 18850 8805 18850 8384 18850 8807 18851 9384 18851 8386 18851 8806 18852 9380 18852 8807 18852 8388 18853 8390 18853 8806 18853 8806 18854 8390 18854 9377 18854 8806 18855 9377 18855 9380 18855 8390 18856 8392 18856 9377 18856 9377 18857 8392 18857 9740 18857 9377 18858 9740 18858 9742 18858 9377 18859 9742 18859 9376 18859 8392 18860 8808 18860 9729 18860 8394 18861 8395 18861 8808 18861 8808 18862 8395 18862 9729 18862 8809 18863 9052 18863 8395 18863 8395 18864 9052 18864 9047 18864 8395 18865 9047 18865 9045 18865 8809 18866 8850 18866 9052 18866 9052 18867 8850 18867 9053 18867 8810 18868 8811 18868 8850 18868 8850 18869 8811 18869 8812 18869 8850 18870 8812 18870 8814 18870 8814 18871 8812 18871 8813 18871 8852 18872 8993 18872 8814 18872 8814 18873 8993 18873 8992 18873 8815 18874 8997 18874 8852 18874 8401 18875 8403 18875 8815 18875 8815 18876 8403 18876 9000 18876 8815 18877 9000 18877 8997 18877 8403 18878 8404 18878 9000 18878 9000 18879 8404 18879 9668 18879 9000 18880 9668 18880 9673 18880 9000 18881 9673 18881 9002 18881 8404 18882 8406 18882 9658 18882 8407 18883 8409 18883 8406 18883 8406 18884 8409 18884 9658 18884 8410 18885 8854 18885 8409 18885 8409 18886 8854 18886 8984 18886 8409 18887 8984 18887 8983 18887 8410 18888 8853 18888 8854 18888 8854 18889 8853 18889 8988 18889 8412 18890 8816 18890 8853 18890 8853 18891 8816 18891 8817 18891 8853 18892 8817 18892 8821 18892 8821 18893 8817 18893 8818 18893 8819 18894 8820 18894 8821 18894 8821 18895 8820 18895 8927 18895 8415 18896 8929 18896 8819 18896 8819 18897 8929 18897 8820 18897 8822 18898 8823 18898 8415 18898 8415 18899 8823 18899 8932 18899 8415 18900 8932 18900 8929 18900 8823 18901 8824 18901 8932 18901 8932 18902 8824 18902 9605 18902 8932 18903 9605 18903 9604 18903 8932 18904 9604 18904 8933 18904 8824 18905 8825 18905 9589 18905 8418 18906 8841 18906 8825 18906 8825 18907 8841 18907 9589 18907 8826 18908 8916 18908 8841 18908 8841 18909 8916 18909 8912 18909 8841 18910 8912 18910 8914 18910 8826 18911 8858 18911 8916 18911 8916 18912 8858 18912 8915 18912 8916 18913 8915 18913 8917 18913 8421 18914 8827 18914 8858 18914 8858 18915 8827 18915 8828 18915 8858 18916 8828 18916 8857 18916 8857 18917 8828 18917 8425 18917 8427 18918 8865 18918 8857 18918 8857 18919 8865 18919 8867 18919 8428 18920 8871 18920 8427 18920 8427 18921 8871 18921 8865 18921 8429 18922 8829 18922 8428 18922 8428 18923 8829 18923 8873 18923 8428 18924 8873 18924 8871 18924 8829 18925 8432 18925 8873 18925 8873 18926 8432 18926 9529 18926 8873 18927 9529 18927 8875 18927 8432 18928 8434 18928 9585 18928 8435 18929 8437 18929 8434 18929 8434 18930 8437 18930 9585 18930 8438 18931 8681 18931 8437 18931 8437 18932 8681 18932 8675 18932 8437 18933 8675 18933 8676 18933 8438 18934 8860 18934 8681 18934 8681 18935 8860 18935 8680 18935 8439 18936 8830 18936 8860 18936 8860 18937 8830 18937 8441 18937 8860 18938 8441 18938 8831 18938 8831 18939 8441 18939 8443 18939 8832 18940 8863 18940 8831 18940 8831 18941 8863 18941 8625 18941 8444 18942 8630 18942 8832 18942 8445 18943 8446 18943 8444 18943 8444 18944 8446 18944 8634 18944 8444 18945 8634 18945 8630 18945 8446 18946 8449 18946 8634 18946 8634 18947 8449 18947 9469 18947 8634 18948 9469 18948 9470 18948 8634 18949 9470 18949 8636 18949 8449 18950 8450 18950 9459 18950 8451 18951 8843 18951 8450 18951 8450 18952 8843 18952 9459 18952 9989 18953 9998 18953 8320 18953 9989 18954 8320 18954 9137 18954 9998 18955 9989 18955 9991 18955 9998 18956 9991 18956 9999 18956 9999 18957 9991 18957 9993 18957 9999 18958 9993 18958 9997 18958 8833 18959 9998 18959 10000 18959 8833 18960 10000 18960 10002 18960 8833 18961 10002 18961 9115 18961 9115 18962 10002 18962 10005 18962 9115 18963 10005 18963 10007 18963 9115 18964 10007 18964 10010 18964 9115 18965 10010 18965 9111 18965 9111 18966 10012 18966 9110 18966 9110 18967 10012 18967 10014 18967 10014 18968 10017 18968 9110 18968 9110 18969 10017 18969 9106 18969 9106 18970 10017 18970 10018 18970 9106 18971 10018 18971 10021 18971 9106 18972 10021 18972 8749 18972 10021 18973 10027 18973 10030 18973 10021 18974 10030 18974 8749 18974 8749 18975 10030 18975 9148 18975 8749 18976 9148 18976 9149 18976 10027 18977 10021 18977 10024 18977 10027 18978 10024 18978 10028 18978 9148 18979 10030 18979 10031 18979 9148 18980 10031 18980 10033 18980 9148 18981 10033 18981 9147 18981 9147 18982 10033 18982 10039 18982 9147 18983 10039 18983 10037 18983 9147 18984 10037 18984 9144 18984 9144 18985 10037 18985 10043 18985 9144 18986 10043 18986 9142 18986 9142 18987 10043 18987 10042 18987 10042 18988 10045 18988 9142 18988 9142 18989 10045 18989 9137 18989 9137 18990 10045 18990 10048 18990 9137 18991 10048 18991 9989 18991 9921 18992 9930 18992 9985 18992 9985 18993 9930 18993 8338 18993 9985 18994 8338 18994 9199 18994 9930 18995 9921 18995 9927 18995 9927 18996 9921 18996 8834 18996 8834 18997 9921 18997 9922 18997 9921 18998 9924 18998 9922 18998 9179 18999 9930 18999 9934 18999 9179 19000 9934 19000 9182 19000 9182 19001 9934 19001 9933 19001 9182 19002 9933 19002 9938 19002 9182 19003 9938 19003 9939 19003 9182 19004 9939 19004 8835 19004 8835 19005 9939 19005 9946 19005 9946 19006 9947 19006 8835 19006 8835 19007 9947 19007 9169 19007 9169 19008 9947 19008 9949 19008 9169 19009 9949 19009 8231 19009 9950 19010 9964 19010 9949 19010 9949 19011 9964 19011 9966 19011 9949 19012 9966 19012 8231 19012 8231 19013 9966 19013 9211 19013 8231 19014 9211 19014 9212 19014 9964 19015 9950 19015 9954 19015 9964 19016 9954 19016 9960 19016 9211 19017 9966 19017 9971 19017 9211 19018 9971 19018 9969 19018 9211 19019 9969 19019 9210 19019 9210 19020 9969 19020 9973 19020 9210 19021 9973 19021 9974 19021 9210 19022 9974 19022 9206 19022 9206 19023 9974 19023 9980 19023 9206 19024 9980 19024 9204 19024 9204 19025 9980 19025 9982 19025 9982 19026 9986 19026 9204 19026 9204 19027 9986 19027 9199 19027 9199 19028 9986 19028 9985 19028 9858 19029 9865 19029 9916 19029 9916 19030 9865 19030 8353 19030 9916 19031 8353 19031 9271 19031 9865 19032 9858 19032 9856 19032 9865 19033 9856 19033 9863 19033 9863 19034 9856 19034 9860 19034 9247 19035 9865 19035 9870 19035 9247 19036 9870 19036 9868 19036 9247 19037 9868 19037 9242 19037 9242 19038 9868 19038 9875 19038 9242 19039 9875 19039 9873 19039 9242 19040 9873 19040 9241 19040 9241 19041 9873 19041 9877 19041 9241 19042 9877 19042 9243 19042 9243 19043 9877 19043 9880 19043 9880 19044 9883 19044 9243 19044 9243 19045 9883 19045 9238 19045 9238 19046 9883 19046 9882 19046 9238 19047 9882 19047 9884 19047 9238 19048 9884 19048 8210 19048 9884 19049 9894 19049 9898 19049 9884 19050 9898 19050 8210 19050 8210 19051 9898 19051 9279 19051 8210 19052 9279 19052 8733 19052 9894 19053 9884 19053 9888 19053 9894 19054 9888 19054 9890 19054 9279 19055 9898 19055 9901 19055 9279 19056 9901 19056 9274 19056 9274 19057 9901 19057 9906 19057 9906 19058 9904 19058 9274 19058 9274 19059 9904 19059 9276 19059 9276 19060 9904 19060 9910 19060 9276 19061 9910 19061 9270 19061 9270 19062 9910 19062 9913 19062 9270 19063 9913 19063 9271 19063 9913 19064 9914 19064 9271 19064 9271 19065 9914 19065 9918 19065 9271 19066 9918 19066 9916 19066 8370 19067 9854 19067 9802 19067 9802 19068 9854 19068 9800 19068 9800 19069 9854 19069 9795 19069 9800 19070 9795 19070 9798 19070 9798 19071 9795 19071 9794 19071 9309 19072 9802 19072 9805 19072 9309 19073 9805 19073 9307 19073 9307 19074 9805 19074 9808 19074 9307 19075 9808 19075 9304 19075 9304 19076 9808 19076 9807 19076 9807 19077 9812 19077 9304 19077 9304 19078 9812 19078 9303 19078 9303 19079 9812 19079 9814 19079 9303 19080 9814 19080 9301 19080 9301 19081 9814 19081 9817 19081 9817 19082 9818 19082 9301 19082 9301 19083 9818 19083 8836 19083 8836 19084 9818 19084 9820 19084 8836 19085 9820 19085 9821 19085 8836 19086 9821 19086 8729 19086 9825 19087 9833 19087 9821 19087 9821 19088 9833 19088 9838 19088 9821 19089 9838 19089 8729 19089 8729 19090 9838 19090 9341 19090 8729 19091 9341 19091 9342 19091 9833 19092 9825 19092 9831 19092 9831 19093 9825 19093 9827 19093 9341 19094 9838 19094 9837 19094 9341 19095 9837 19095 9835 19095 9341 19096 9835 19096 9337 19096 9337 19097 9835 19097 9839 19097 9337 19098 9839 19098 9841 19098 9337 19099 9841 19099 9338 19099 9338 19100 9841 19100 9846 19100 9338 19101 9846 19101 9847 19101 9847 19102 9850 19102 9338 19102 9336 19103 9850 19103 9333 19103 9333 19104 9850 19104 9853 19104 9333 19105 9853 19105 8804 19105 9853 19106 9852 19106 8804 19106 8804 19107 9852 19107 9854 19107 8392 19108 9729 19108 9740 19108 9740 19109 9729 19109 9735 19109 9735 19110 9729 19110 9730 19110 9735 19111 9730 19111 9733 19111 9735 19112 9733 19112 9739 19112 9376 19113 9742 19113 9741 19113 9376 19114 9741 19114 9374 19114 9741 19115 9747 19115 9374 19115 9747 19116 9746 19116 9374 19116 9374 19117 9746 19117 9749 19117 9374 19118 9749 19118 9370 19118 9370 19119 9749 19119 9753 19119 9370 19120 9753 19120 9752 19120 9752 19121 9756 19121 9370 19121 9370 19122 9756 19122 9758 19122 9370 19123 9758 19123 8183 19123 8183 19124 9758 19124 9760 19124 9760 19125 9771 19125 9777 19125 9760 19126 9777 19126 8179 19126 8179 19127 9777 19127 9034 19127 8179 19128 9034 19128 9033 19128 9771 19129 9760 19129 9761 19129 9771 19130 9761 19130 9767 19130 9767 19131 9761 19131 9765 19131 9034 19132 9777 19132 9780 19132 9034 19133 9780 19133 9782 19133 9034 19134 9782 19134 9037 19134 9037 19135 9782 19135 9040 19135 9040 19136 9782 19136 9790 19136 9040 19137 9790 19137 9043 19137 9043 19138 9790 19138 9045 19138 9045 19139 9790 19139 8395 19139 9790 19140 9782 19140 8837 19140 9790 19141 8837 19141 9783 19141 9783 19142 9787 19142 9790 19142 9790 19143 9791 19143 8395 19143 8395 19144 9791 19144 9729 19144 8404 19145 9658 19145 9668 19145 9668 19146 9658 19146 9660 19146 9668 19147 9660 19147 9667 19147 9667 19148 9660 19148 9665 19148 9665 19149 9660 19149 9664 19149 9002 19150 9673 19150 9671 19150 9671 19151 9675 19151 9002 19151 9002 19152 9675 19152 9005 19152 9675 19153 9674 19153 9005 19153 9005 19154 9674 19154 9677 19154 9005 19155 9677 19155 9007 19155 9007 19156 9677 19156 9685 19156 9007 19157 9685 19157 9682 19157 9682 19158 9686 19158 9007 19158 9007 19159 9686 19159 9687 19159 9007 19160 9687 19160 8838 19160 8838 19161 9687 19161 9688 19161 9688 19162 9706 19162 9707 19162 9688 19163 9707 19163 8839 19163 8839 19164 9707 19164 8971 19164 8839 19165 8971 19165 8970 19165 9706 19166 9688 19166 9693 19166 9706 19167 9693 19167 9699 19167 9699 19168 9693 19168 9704 19168 8971 19169 9707 19169 9709 19169 8971 19170 9709 19170 8974 19170 8974 19171 9709 19171 8975 19171 8975 19172 9709 19172 8840 19172 8975 19173 8840 19173 8978 19173 8978 19174 8840 19174 8983 19174 8983 19175 8840 19175 8409 19175 8840 19176 9709 19176 9724 19176 9724 19177 9709 19177 9720 19177 9720 19178 9709 19178 9715 19178 9715 19179 9709 19179 9712 19179 9720 19180 9721 19180 9724 19180 8409 19181 8840 19181 9658 19181 8824 19182 9589 19182 9605 19182 9605 19183 9589 19183 9601 19183 9601 19184 9589 19184 9596 19184 9601 19185 9596 19185 9597 19185 9597 19186 9596 19186 9591 19186 8933 19187 9604 19187 9607 19187 8933 19188 9607 19188 8941 19188 9607 19189 9611 19189 8941 19189 8941 19190 9611 19190 9612 19190 8941 19191 9612 19191 8939 19191 8939 19192 9612 19192 9614 19192 8939 19193 9614 19193 9618 19193 9618 19194 9619 19194 8939 19194 8939 19195 9619 19195 9622 19195 8939 19196 9622 19196 8709 19196 8709 19197 9622 19197 9620 19197 9620 19198 9630 19198 9637 19198 9620 19199 9637 19199 8155 19199 8155 19200 9637 19200 8903 19200 8155 19201 8903 19201 8905 19201 9630 19202 9620 19202 9625 19202 9630 19203 9625 19203 9634 19203 8903 19204 9637 19204 9638 19204 8903 19205 9638 19205 9643 19205 8903 19206 9643 19206 8906 19206 8906 19207 9643 19207 8909 19207 8909 19208 9643 19208 9653 19208 8909 19209 9653 19209 8911 19209 8911 19210 9653 19210 8914 19210 8914 19211 9653 19211 8841 19211 9653 19212 9643 19212 9642 19212 9653 19213 9642 19213 9644 19213 9644 19214 9642 19214 9646 19214 9644 19215 9652 19215 9653 19215 9644 19216 9649 19216 9652 19216 9653 19217 9654 19217 8841 19217 8841 19218 9654 19218 9589 19218 8432 19219 9585 19219 9529 19219 9529 19220 9585 19220 9522 19220 9529 19221 9522 19221 9525 19221 9525 19222 9522 19222 9523 19222 8875 19223 9529 19223 9532 19223 8875 19224 9532 19224 8877 19224 9532 19225 9536 19225 8877 19225 8877 19226 9536 19226 9538 19226 8877 19227 9538 19227 8878 19227 8878 19228 9538 19228 9541 19228 8878 19229 9541 19229 9542 19229 9542 19230 9548 19230 8878 19230 8878 19231 9548 19231 9545 19231 8878 19232 9545 19232 8140 19232 8140 19233 9545 19233 9550 19233 9550 19234 9567 19234 8701 19234 8701 19235 9567 19235 8664 19235 8701 19236 8664 19236 8666 19236 9567 19237 9550 19237 9564 19237 9564 19238 9550 19238 9549 19238 9564 19239 9549 19239 9559 19239 9559 19240 9549 19240 9553 19240 8664 19241 9567 19241 9571 19241 8664 19242 9571 19242 8669 19242 8669 19243 9571 19243 8671 19243 8671 19244 9571 19244 9588 19244 8671 19245 9588 19245 8673 19245 8673 19246 9588 19246 8676 19246 8676 19247 9588 19247 8437 19247 9588 19248 9571 19248 9581 19248 9581 19249 9571 19249 9573 19249 9581 19250 9573 19250 9579 19250 9579 19251 9573 19251 9574 19251 9579 19252 9580 19252 9581 19252 9588 19253 9586 19253 8437 19253 8437 19254 9586 19254 9585 19254 8449 19255 9459 19255 9469 19255 9469 19256 9459 19256 9467 19256 9467 19257 9459 19257 8842 19257 9467 19258 8842 19258 9461 19258 9467 19259 9461 19259 9465 19259 8636 19260 9470 19260 9475 19260 9475 19261 9476 19261 8636 19261 8636 19262 9476 19262 9477 19262 8636 19263 9477 19263 8641 19263 8641 19264 9477 19264 9479 19264 8641 19265 9479 19265 9482 19265 9482 19266 9485 19266 8641 19266 8641 19267 9485 19267 9488 19267 8641 19268 9488 19268 8862 19268 8862 19269 9488 19269 9487 19269 9501 19270 9487 19270 9499 19270 9499 19271 9487 19271 9492 19271 9499 19272 9492 19272 9495 19272 9495 19273 9492 19273 9491 19273 9505 19274 9517 19274 9504 19274 9504 19275 9517 19275 9518 19275 9504 19276 9518 19276 8104 19276 9517 19277 9505 19277 9515 19277 9515 19278 9505 19278 9509 19278 9515 19279 9514 19279 9517 19279 9518 19280 9519 19280 8843 19280 8843 19281 9519 19281 9459 19281 9389 19282 9404 19282 8769 19282 9389 19283 8769 19283 9073 19283 9404 19284 9389 19284 9390 19284 9404 19285 9390 19285 9400 19285 9400 19286 9390 19286 9391 19286 8769 19287 9404 19287 8844 19287 8844 19288 9404 19288 9406 19288 9408 19289 9409 19289 8845 19289 9409 19290 9411 19290 8846 19290 9422 19291 9436 19291 9439 19291 9422 19292 9439 19292 8260 19292 8260 19293 9439 19293 9085 19293 8260 19294 9085 19294 9086 19294 9436 19295 9422 19295 9435 19295 9435 19296 9422 19296 9426 19296 9435 19297 9426 19297 9427 19297 9427 19298 9426 19298 9424 19298 9435 19299 9427 19299 9430 19299 9085 19300 9439 19300 9437 19300 9085 19301 9437 19301 9083 19301 9083 19302 9437 19302 9442 19302 9083 19303 9442 19303 9446 19303 9083 19304 9446 19304 9077 19304 9077 19305 9446 19305 9451 19305 9077 19306 9451 19306 9076 19306 9076 19307 9451 19307 9453 19307 9453 19308 9452 19308 9076 19308 9076 19309 9452 19309 9073 19309 9073 19310 9452 19310 9454 19310 9073 19311 9454 19311 9457 19311 9073 19312 9457 19312 9389 19312 9385 19313 9322 19313 8847 19313 8847 19314 9322 19314 9321 19314 8847 19315 9321 19315 9328 19315 9850 19316 9336 19316 9338 19316 9358 19317 9357 19317 8848 19317 8848 19318 9357 19318 9356 19318 9356 19319 9361 19319 8849 19319 8183 19320 9367 19320 9368 19320 8183 19321 9368 19321 9370 19321 8807 19322 9380 19322 9384 19322 9384 19323 9380 19323 9381 19323 9384 19324 9385 19324 8386 19324 8386 19325 9385 19325 8847 19325 9802 19326 9309 19326 8370 19326 9865 19327 9247 19327 8353 19327 8353 19328 9247 19328 8788 19328 9930 19329 9179 19329 8338 19329 9998 19330 8833 19330 8320 19330 8320 19331 8833 19331 9118 19331 9057 19332 8850 19332 8992 19332 8992 19333 8850 19333 8814 19333 8850 19334 9057 19334 9055 19334 9055 19335 9053 19335 8850 19335 9021 19336 9020 19336 8717 19336 8717 19337 9020 19337 9018 19337 9018 19338 9014 19338 8851 19338 8838 19339 9013 19339 9009 19339 8838 19340 9009 19340 9007 19340 8852 19341 8997 19341 8993 19341 8993 19342 8997 19342 8996 19342 8990 19343 8853 19343 8927 19343 8927 19344 8853 19344 8821 19344 8990 19345 8989 19345 8853 19345 8853 19346 8989 19346 8988 19346 8957 19347 8955 19347 8855 19347 8855 19348 8955 19348 8952 19348 8952 19349 8949 19349 8856 19349 8709 19350 8943 19350 8939 19350 8939 19351 8943 19351 8944 19351 8919 19352 8858 19352 8866 19352 8866 19353 8858 19353 8857 19353 8866 19354 8857 19354 8867 19354 8919 19355 8920 19355 8858 19355 8858 19356 8920 19356 8924 19356 8924 19357 8915 19357 8858 19357 8889 19358 8892 19358 8859 19358 8886 19359 8703 19359 8702 19359 8140 19360 8885 19360 8880 19360 8140 19361 8880 19361 8878 19361 8619 19362 8860 19362 8626 19362 8626 19363 8860 19363 8831 19363 8626 19364 8831 19364 8625 19364 8619 19365 8622 19365 8860 19365 8860 19366 8622 19366 8620 19366 8620 19367 8680 19367 8860 19367 8861 19368 8654 19368 8652 19368 8652 19369 8649 19369 8125 19369 8862 19370 8647 19370 8639 19370 8862 19371 8639 19371 8641 19371 8832 19372 8630 19372 8863 19372 8863 19373 8630 19373 8631 19373 8868 19374 8867 19374 8864 19374 8864 19375 8867 19375 8865 19375 8866 19376 8867 19376 8868 19376 8865 19377 8870 19377 8864 19377 8869 19378 8870 19378 8871 19378 8870 19379 8865 19379 8871 19379 8873 19380 8872 19380 8871 19380 8871 19381 8872 19381 8869 19381 8873 19382 8874 19382 8872 19382 8874 19383 8876 19383 8872 19383 8876 19384 8874 19384 8875 19384 8874 19385 8873 19385 8875 19385 8877 19386 8876 19386 8875 19386 8881 19387 8878 19387 8880 19387 8878 19388 8876 19388 8877 19388 8878 19389 8881 19389 8876 19389 8876 19390 8881 19390 8879 19390 8885 19391 8884 19391 8880 19391 8880 19392 8884 19392 8881 19392 8885 19393 8883 19393 8884 19393 8883 19394 8885 19394 8882 19394 8703 19395 8887 19395 8882 19395 8882 19396 8887 19396 8883 19396 8888 19397 8891 19397 8887 19397 8891 19398 8888 19398 8886 19398 8703 19399 8888 19399 8887 19399 8703 19400 8886 19400 8888 19400 8892 19401 8891 19401 8886 19401 8892 19402 8890 19402 8891 19402 8892 19403 8889 19403 8890 19403 8890 19404 8889 19404 8893 19404 8895 19405 8896 19405 8889 19405 8889 19406 8896 19406 8893 19406 8897 19407 8896 19407 8898 19407 8897 19408 8898 19408 8894 19408 8896 19409 8895 19409 8898 19409 8894 19410 8900 19410 8897 19410 8894 19411 8899 19411 8900 19411 8901 19412 8900 19412 8899 19412 8905 19413 8576 19413 8899 19413 8899 19414 8576 19414 8901 19414 8905 19415 8904 19415 8576 19415 8902 19416 8904 19416 8903 19416 8905 19417 8903 19417 8904 19417 8902 19418 8576 19418 8904 19418 8906 19419 8907 19419 8903 19419 8903 19420 8907 19420 8902 19420 8908 19421 8909 19421 8911 19421 8909 19422 8908 19422 8907 19422 8908 19423 8910 19423 8907 19423 8906 19424 8909 19424 8907 19424 8914 19425 8602 19425 8911 19425 8911 19426 8602 19426 8908 19426 8914 19427 8913 19427 8602 19427 8913 19428 8471 19428 8602 19428 8471 19429 8913 19429 8912 19429 8912 19430 8913 19430 8914 19430 8916 19431 8918 19431 8912 19431 8912 19432 8918 19432 8471 19432 8916 19433 8917 19433 8918 19433 8924 19434 8925 19434 8915 19434 8915 19435 8925 19435 8917 19435 8920 19436 8919 19436 8921 19436 8920 19437 8921 19437 8924 19437 8921 19438 8919 19438 8922 19438 8925 19439 8924 19439 8921 19439 8921 19440 8923 19440 8925 19440 8923 19441 8921 19441 8922 19441 8866 19442 8868 19442 8919 19442 8919 19443 8868 19443 8922 19443 8927 19444 8926 19444 8928 19444 8820 19445 8926 19445 8927 19445 8820 19446 8930 19446 8926 19446 8820 19447 8929 19447 8930 19447 8931 19448 8930 19448 8929 19448 8932 19449 8935 19449 8929 19449 8929 19450 8935 19450 8931 19450 8932 19451 8936 19451 8935 19451 8932 19452 8933 19452 8936 19452 8936 19453 8934 19453 8935 19453 8934 19454 8936 19454 8933 19454 8941 19455 8937 19455 8933 19455 8933 19456 8937 19456 8934 19456 8941 19457 8940 19457 8942 19457 8937 19458 8941 19458 8942 19458 8938 19459 8940 19459 8944 19459 8940 19460 8939 19460 8944 19460 8942 19461 8940 19461 8938 19461 8939 19462 8940 19462 8941 19462 8938 19463 8944 19463 8943 19463 8943 19464 8946 19464 8938 19464 8943 19465 8947 19465 8946 19465 8947 19466 8948 19466 8946 19466 8948 19467 8947 19467 8945 19467 8945 19468 8947 19468 8943 19468 8949 19469 8950 19469 8945 19469 8945 19470 8950 19470 8948 19470 8951 19471 8956 19471 8950 19471 8956 19472 8951 19472 8952 19472 8949 19473 8951 19473 8950 19473 8949 19474 8952 19474 8951 19474 8952 19475 8953 19475 8956 19475 8953 19476 8957 19476 8958 19476 8953 19477 8955 19477 8957 19477 8956 19478 8953 19478 8954 19478 8954 19479 8953 19479 8958 19479 8953 19480 8952 19480 8955 19480 8960 19481 8963 19481 8957 19481 8957 19482 8963 19482 8958 19482 8963 19483 8962 19483 8964 19483 8962 19484 8959 19484 8964 19484 8960 19485 8961 19485 8962 19485 8960 19486 8962 19486 8963 19486 8959 19487 8962 19487 8961 19487 8965 19488 8968 19488 8959 19488 8959 19489 8968 19489 8964 19489 8966 19490 8968 19490 8967 19490 8967 19491 8968 19491 8965 19491 8970 19492 8969 19492 8967 19492 8967 19493 8969 19493 8966 19493 8970 19494 8973 19494 8969 19494 8972 19495 8973 19495 8971 19495 8970 19496 8971 19496 8973 19496 8969 19497 8973 19497 8972 19497 8974 19498 8976 19498 8971 19498 8971 19499 8976 19499 8972 19499 8975 19500 8978 19500 8977 19500 8979 19501 8977 19501 8978 19501 8974 19502 8975 19502 8976 19502 8977 19503 8976 19503 8975 19503 8983 19504 8981 19504 8978 19504 8978 19505 8981 19505 8979 19505 8983 19506 8982 19506 8981 19506 8982 19507 8980 19507 8981 19507 8980 19508 8982 19508 8984 19508 8984 19509 8982 19509 8983 19509 8854 19510 8985 19510 8984 19510 8984 19511 8985 19511 8980 19511 8985 19512 8988 19512 8986 19512 8854 19513 8988 19513 8985 19513 8988 19514 8991 19514 8986 19514 8989 19515 8991 19515 8988 19515 8989 19516 8987 19516 8991 19516 8987 19517 8989 19517 8990 19517 8927 19518 8928 19518 8990 19518 8990 19519 8928 19519 8987 19519 8995 19520 8992 19520 8993 19520 8995 19521 8994 19521 8992 19521 8996 19522 8998 19522 8993 19522 8993 19523 8998 19523 8995 19523 8996 19524 8997 19524 8999 19524 8996 19525 8999 19525 8998 19525 9000 19526 9003 19526 8997 19526 8997 19527 9003 19527 8999 19527 9000 19528 9004 19528 9003 19528 9000 19529 9002 19529 9004 19529 9004 19530 9001 19530 9003 19530 9001 19531 9004 19531 9002 19531 9005 19532 9006 19532 9002 19532 9002 19533 9006 19533 9001 19533 9007 19534 9008 19534 9006 19534 9005 19535 9007 19535 9006 19535 9008 19536 9007 19536 9009 19536 9013 19537 9012 19537 9009 19537 9009 19538 9012 19538 9008 19538 9013 19539 9010 19539 9012 19539 9010 19540 9013 19540 9011 19540 9014 19541 9016 19541 9011 19541 9011 19542 9016 19542 9010 19542 9017 19543 9015 19543 9016 19543 9015 19544 9017 19544 9018 19544 9014 19545 9017 19545 9016 19545 9014 19546 9018 19546 9017 19546 9018 19547 9019 19547 9015 19547 9020 19548 9021 19548 9019 19548 9018 19549 9020 19549 9019 19549 9019 19550 9021 19550 9022 19550 9026 19551 9023 19551 9021 19551 9021 19552 9023 19552 9022 19552 9026 19553 9027 19553 9023 19553 9024 19554 9025 19554 9027 19554 9027 19555 9025 19555 9023 19555 9027 19556 9026 19556 9024 19556 9028 19557 9030 19557 9024 19557 9024 19558 9030 19558 9025 19558 9031 19559 9030 19559 9029 19559 9029 19560 9030 19560 9028 19560 9033 19561 9035 19561 9029 19561 9029 19562 9035 19562 9031 19562 9033 19563 9036 19563 9035 19563 9032 19564 9036 19564 9034 19564 9033 19565 9034 19565 9036 19565 9036 19566 9032 19566 9035 19566 9037 19567 9039 19567 9034 19567 9034 19568 9039 19568 9032 19568 9037 19569 9038 19569 9039 19569 9044 19570 9041 19570 9043 19570 9041 19571 9040 19571 9043 19571 9040 19572 9041 19572 9038 19572 9038 19573 9041 19573 9042 19573 9042 19574 9041 19574 9044 19574 9039 19575 9038 19575 9042 19575 9037 19576 9040 19576 9038 19576 9046 19577 9045 19577 9044 19577 9046 19578 9044 19578 9043 19578 9046 19579 9043 19579 9045 19579 9045 19580 9049 19580 9044 19580 9045 19581 9048 19581 9049 19581 9048 19582 9050 19582 9049 19582 9050 19583 9048 19583 9047 19583 9047 19584 9048 19584 9045 19584 9052 19585 8484 19585 9047 19585 9047 19586 8484 19586 9050 19586 9053 19587 9051 19587 8484 19587 9052 19588 9053 19588 8484 19588 9055 19589 9056 19589 9053 19589 9053 19590 9056 19590 9051 19590 9056 19591 9057 19591 9054 19591 9056 19592 9055 19592 9057 19592 8992 19593 8994 19593 9057 19593 9057 19594 8994 19594 9054 19594 9123 19595 9126 19595 9067 19595 9067 19596 9126 19596 9061 19596 9062 19597 9063 19597 9059 19597 9059 19598 9063 19598 9065 19598 9060 19599 9068 19599 9061 19599 9068 19600 9067 19600 9061 19600 9065 19601 9068 19601 9058 19601 9062 19602 9066 19602 9065 19602 9066 19603 9068 19603 9065 19603 9058 19604 9068 19604 9064 19604 9064 19605 9068 19605 9060 19605 9063 19606 9062 19606 9065 19606 9059 19607 9065 19607 9064 19607 9060 19608 9059 19608 9064 19608 9068 19609 9066 19609 9067 19609 9062 19610 9059 19610 9069 19610 9071 19611 9069 19611 9070 19611 9071 19612 9062 19612 9069 19612 9071 19613 9070 19613 9074 19613 9074 19614 9070 19614 9075 19614 9073 19615 9075 19615 9072 19615 9073 19616 9074 19616 9075 19616 9073 19617 9072 19617 9076 19617 9076 19618 9072 19618 9081 19618 9083 19619 9078 19619 9082 19619 9082 19620 9078 19620 9080 19620 9077 19621 9076 19621 9080 19621 9081 19622 9080 19622 9076 19622 9077 19623 9080 19623 9078 19623 9082 19624 9080 19624 9079 19624 9079 19625 9080 19625 9081 19625 9083 19626 9077 19626 9078 19626 9083 19627 9082 19627 9085 19627 9085 19628 9082 19628 9087 19628 9086 19629 9088 19629 9084 19629 9087 19630 9088 19630 9085 19630 9086 19631 9085 19631 9088 19631 9084 19632 9088 19632 9087 19632 9086 19633 9084 19633 9090 19633 9090 19634 9084 19634 9089 19634 9089 19635 9091 19635 9090 19635 9091 19636 9093 19636 9090 19636 9093 19637 9091 19637 9096 19637 9095 19638 9094 19638 9092 19638 9092 19639 9094 19639 9096 19639 9094 19640 9093 19640 9096 19640 9094 19641 9095 19641 9093 19641 9095 19642 9092 19642 9098 19642 9098 19643 9092 19643 9099 19643 9098 19644 9099 19644 9101 19644 9098 19645 9101 19645 9097 19645 9101 19646 9100 19646 9097 19646 9097 19647 9100 19647 9102 19647 9100 19648 9105 19648 9102 19648 9103 19649 9105 19649 9104 19649 9103 19650 9102 19650 9105 19650 9105 19651 9100 19651 9104 19651 9103 19652 9104 19652 9108 19652 9108 19653 9104 19653 9107 19653 9108 19654 8596 19654 9106 19654 8596 19655 9108 19655 9107 19655 9106 19656 8596 19656 9110 19656 9110 19657 8596 19657 9109 19657 9113 19658 9109 19658 9112 19658 9115 19659 9111 19659 9113 19659 9113 19660 9111 19660 9110 19660 9109 19661 9113 19661 9110 19661 9114 19662 9112 19662 9109 19662 9113 19663 9112 19663 9115 19663 9115 19664 9112 19664 8833 19664 8833 19665 9112 19665 9117 19665 9118 19666 9119 19666 9116 19666 8833 19667 9119 19667 9118 19667 9117 19668 9119 19668 8833 19668 9117 19669 9116 19669 9119 19669 9118 19670 9116 19670 9120 19670 9120 19671 9116 19671 9121 19671 9120 19672 9121 19672 9124 19672 9122 19673 9120 19673 9124 19673 9125 19674 9122 19674 9127 19674 9123 19675 9125 19675 9127 19675 9127 19676 9122 19676 9124 19676 9123 19677 9127 19677 9126 19677 9189 19678 9190 19678 9131 19678 9131 19679 9190 19679 9132 19679 9129 19680 9130 19680 9128 19680 9130 19681 9129 19681 9132 19681 9132 19682 9129 19682 9131 19682 9128 19683 9130 19683 9134 19683 9134 19684 9130 19684 9136 19684 9135 19685 9134 19685 9136 19685 9133 19686 9134 19686 9135 19686 9133 19687 9135 19687 9140 19687 9140 19688 9135 19688 9141 19688 9137 19689 9139 19689 9138 19689 9139 19690 9141 19690 9138 19690 9141 19691 9139 19691 9140 19691 9140 19692 9139 19692 9137 19692 9137 19693 9138 19693 9142 19693 9142 19694 9138 19694 9143 19694 9147 19695 9145 19695 9146 19695 9144 19696 9142 19696 9143 19696 9144 19697 9145 19697 9147 19697 9144 19698 9143 19698 9145 19698 9143 19699 9146 19699 9145 19699 9147 19700 9146 19700 9148 19700 9148 19701 9146 19701 9151 19701 9149 19702 9152 19702 9150 19702 9151 19703 9152 19703 9148 19703 9149 19704 9148 19704 9152 19704 9151 19705 9150 19705 9152 19705 9149 19706 9150 19706 9154 19706 9154 19707 9150 19707 9155 19707 9154 19708 9155 19708 9153 19708 9154 19709 9153 19709 9156 19709 9156 19710 9153 19710 9157 19710 9157 19711 9159 19711 9156 19711 9158 19712 9159 19712 9157 19712 9159 19713 9158 19713 9160 19713 9160 19714 9158 19714 9162 19714 9164 19715 9161 19715 9160 19715 9163 19716 9161 19716 9164 19716 9162 19717 9164 19717 9160 19717 9161 19718 9163 19718 9168 19718 9167 19719 9163 19719 9166 19719 9163 19720 9167 19720 9168 19720 9165 19721 9167 19721 9166 19721 9165 19722 9168 19722 9167 19722 9165 19723 9166 19723 9172 19723 9172 19724 9166 19724 9171 19724 9169 19725 9173 19725 9170 19725 9173 19726 9171 19726 9170 19726 9171 19727 9173 19727 9172 19727 9173 19728 9169 19728 9172 19728 9169 19729 9170 19729 8835 19729 8835 19730 9170 19730 9174 19730 9182 19731 9176 19731 9177 19731 9176 19732 9175 19732 9177 19732 9182 19733 8835 19733 9176 19733 9175 19734 9176 19734 9174 19734 9174 19735 9176 19735 8835 19735 9182 19736 9177 19736 9178 19736 9179 19737 9180 19737 9181 19737 9179 19738 9182 19738 9180 19738 9180 19739 9178 19739 9181 19739 9178 19740 9180 19740 9182 19740 9179 19741 9181 19741 9184 19741 9184 19742 9181 19742 9185 19742 9186 19743 9184 19743 9185 19743 9183 19744 9184 19744 9186 19744 9183 19745 9186 19745 9187 19745 9187 19746 9190 19746 9189 19746 9190 19747 9187 19747 9186 19747 9187 19748 9189 19748 9188 19748 9254 19749 9255 19749 9191 19749 9191 19750 9255 19750 9193 19750 9195 19751 9193 19751 9194 19751 9196 19752 9191 19752 9195 19752 9195 19753 9191 19753 9193 19753 9196 19754 9194 19754 9192 19754 9195 19755 9194 19755 9196 19755 9192 19756 9194 19756 9197 19756 8784 19757 9197 19757 9198 19757 8784 19758 9192 19758 9197 19758 8784 19759 9198 19759 9202 19759 9202 19760 9198 19760 9201 19760 9199 19761 9201 19761 9200 19761 9199 19762 9202 19762 9201 19762 9199 19763 9200 19763 9204 19763 9204 19764 9200 19764 9205 19764 9203 19765 9204 19765 9205 19765 9203 19766 9205 19766 9204 19766 9210 19767 9207 19767 9209 19767 9206 19768 9204 19768 9208 19768 9205 19769 9208 19769 9204 19769 9206 19770 9208 19770 9207 19770 9210 19771 9206 19771 9207 19771 9208 19772 9209 19772 9207 19772 9210 19773 9209 19773 9211 19773 9211 19774 9209 19774 9213 19774 9212 19775 9215 19775 9214 19775 9213 19776 9215 19776 9211 19776 9212 19777 9211 19777 9215 19777 9214 19778 9215 19778 9213 19778 9212 19779 9214 19779 9217 19779 9217 19780 9214 19780 9216 19780 9216 19781 9220 19781 9218 19781 9218 19782 9217 19782 9216 19782 9218 19783 9220 19783 9223 19783 9219 19784 9224 19784 9222 19784 9225 19785 9222 19785 9220 19785 9221 19786 9223 19786 9222 19786 9224 19787 9221 19787 9222 19787 9222 19788 9223 19788 9220 19788 9219 19789 9222 19789 9225 19789 9224 19790 9219 19790 9227 19790 9227 19791 9219 19791 9230 19791 9228 19792 9226 19792 9229 19792 9229 19793 9227 19793 9230 19793 9227 19794 9229 19794 9226 19794 9226 19795 9228 19795 9231 19795 9231 19796 9228 19796 9235 19796 9234 19797 9235 19797 9232 19797 9235 19798 9234 19798 9231 19798 9233 19799 9234 19799 9232 19799 9233 19800 9231 19800 9234 19800 9233 19801 9232 19801 9239 19801 9239 19802 9232 19802 9237 19802 9239 19803 9236 19803 9238 19803 9236 19804 9239 19804 9237 19804 9238 19805 9236 19805 9243 19805 9243 19806 9236 19806 9240 19806 9245 19807 9242 19807 9244 19807 9243 19808 9240 19808 9244 19808 9242 19809 9241 19809 9243 19809 9243 19810 9244 19810 9242 19810 9242 19811 9245 19811 9247 19811 9247 19812 9245 19812 9249 19812 8788 19813 9248 19813 9246 19813 8788 19814 9247 19814 9248 19814 9246 19815 9248 19815 9249 19815 9249 19816 9248 19816 9247 19816 8788 19817 9246 19817 9250 19817 9250 19818 9246 19818 9253 19818 9250 19819 9253 19819 9251 19819 9251 19820 9253 19820 9252 19820 9251 19821 9252 19821 9256 19821 9252 19822 9254 19822 9256 19822 9252 19823 9255 19823 9254 19823 9316 19824 9318 19824 9261 19824 9261 19825 9318 19825 9257 19825 9260 19826 9257 19826 9258 19826 9260 19827 9261 19827 9257 19827 9262 19828 9259 19828 9260 19828 9260 19829 9258 19829 9262 19829 9260 19830 9259 19830 9261 19830 9259 19831 9262 19831 9263 19831 9263 19832 9262 19832 9265 19832 9264 19833 9265 19833 9266 19833 9263 19834 9265 19834 9264 19834 9264 19835 9266 19835 9269 19835 9269 19836 9266 19836 9268 19836 9271 19837 9268 19837 9267 19837 9271 19838 9269 19838 9268 19838 9271 19839 9267 19839 9273 19839 9272 19840 9271 19840 9273 19840 9272 19841 9273 19841 9270 19841 9272 19842 9270 19842 9271 19842 9276 19843 9270 19843 9275 19843 9273 19844 9275 19844 9270 19844 9277 19845 9274 19845 9275 19845 9275 19846 9274 19846 9276 19846 9274 19847 9277 19847 9279 19847 9279 19848 9277 19848 9280 19848 8733 19849 9281 19849 9278 19849 9280 19850 9281 19850 9279 19850 8733 19851 9279 19851 9281 19851 9278 19852 9281 19852 9280 19852 8733 19853 9278 19853 9284 19853 9284 19854 9278 19854 9285 19854 9284 19855 9285 19855 9282 19855 9285 19856 9283 19856 9282 19856 9282 19857 9283 19857 9287 19857 9288 19858 9289 19858 8549 19858 9286 19859 9287 19859 9289 19859 9288 19860 9286 19860 9289 19860 9289 19861 9287 19861 9283 19861 8549 19862 9289 19862 9283 19862 9288 19863 8549 19863 9291 19863 9291 19864 8549 19864 9292 19864 9290 19865 9291 19865 9292 19865 9290 19866 8732 19866 9291 19866 8732 19867 9290 19867 9293 19867 9293 19868 9290 19868 9297 19868 9295 19869 9297 19869 9294 19869 9297 19870 9295 19870 9293 19870 9296 19871 9295 19871 9294 19871 9296 19872 9293 19872 9295 19872 9296 19873 9294 19873 9298 19873 9298 19874 9294 19874 8553 19874 8836 19875 9300 19875 9299 19875 9300 19876 8553 19876 9299 19876 8553 19877 9300 19877 9298 19877 9298 19878 9300 19878 8836 19878 8836 19879 9299 19879 9301 19879 9301 19880 9299 19880 8598 19880 8598 19881 9302 19881 9301 19881 9301 19882 9302 19882 9303 19882 9303 19883 9302 19883 9304 19883 8599 19884 9304 19884 9302 19884 9304 19885 8599 19885 9307 19885 9307 19886 8599 19886 9308 19886 9309 19887 9306 19887 9305 19887 9309 19888 9307 19888 9306 19888 9306 19889 9308 19889 9305 19889 9308 19890 9306 19890 9307 19890 9309 19891 9305 19891 9311 19891 9311 19892 9305 19892 9312 19892 9313 19893 9311 19893 9314 19893 9310 19894 9314 19894 9312 19894 9312 19895 9314 19895 9311 19895 9313 19896 9314 19896 9310 19896 9313 19897 9310 19897 9317 19897 9317 19898 9310 19898 9315 19898 9317 19899 9319 19899 9316 19899 9317 19900 9315 19900 9319 19900 9316 19901 9319 19901 9318 19901 9318 19902 9319 19902 9315 19902 9385 19903 9386 19903 9322 19903 9322 19904 9386 19904 9320 19904 9323 19905 9322 19905 9320 19905 9325 19906 9321 19906 9323 19906 9327 19907 9323 19907 9324 19907 9324 19908 9323 19908 9326 19908 9327 19909 9325 19909 9323 19909 9326 19910 9325 19910 9327 19910 9323 19911 9325 19911 9326 19911 9322 19912 9323 19912 9321 19912 9320 19913 9325 19913 9323 19913 9321 19914 9325 19914 9328 19914 9328 19915 9325 19915 9331 19915 9331 19916 9330 19916 9328 19916 9329 19917 9330 19917 9335 19917 9335 19918 9330 19918 9332 19918 9333 19919 9332 19919 9334 19919 9333 19920 9335 19920 9332 19920 9333 19921 9334 19921 9336 19921 9336 19922 9334 19922 9339 19922 9339 19923 9338 19923 9336 19923 9338 19924 9339 19924 9337 19924 9340 19925 9337 19925 8597 19925 9339 19926 8597 19926 9337 19926 9337 19927 9340 19927 9341 19927 9341 19928 9340 19928 9344 19928 9342 19929 9344 19929 9343 19929 9341 19930 9344 19930 9342 19930 9342 19931 9343 19931 9347 19931 9347 19932 9343 19932 9345 19932 9345 19933 9346 19933 9347 19933 9346 19934 9349 19934 9347 19934 9349 19935 9346 19935 9354 19935 9355 19936 9349 19936 9354 19936 9355 19937 9354 19937 9353 19937 9355 19938 9353 19938 9351 19938 9355 19939 9350 19939 9349 19939 9350 19940 9355 19940 9351 19940 9348 19941 9350 19941 9351 19941 9352 19942 9348 19942 9351 19942 9352 19943 9351 19943 9353 19943 9348 19944 9352 19944 9358 19944 9358 19945 9352 19945 9359 19945 9357 19946 9358 19946 9360 19946 9356 19947 9357 19947 9360 19947 9360 19948 9358 19948 9359 19948 9356 19949 9360 19949 9364 19949 9363 19950 9364 19950 9362 19950 9364 19951 9363 19951 9356 19951 9361 19952 9363 19952 9362 19952 9361 19953 9356 19953 9363 19953 9361 19954 9362 19954 9366 19954 9366 19955 9362 19955 8561 19955 9367 19956 8561 19956 9365 19956 8561 19957 9367 19957 9366 19957 9367 19958 9365 19958 9368 19958 9368 19959 9365 19959 9369 19959 9374 19960 9371 19960 9375 19960 9374 19961 9370 19961 9371 19961 9369 19962 9371 19962 9368 19962 9371 19963 9372 19963 9375 19963 9371 19964 9370 19964 9368 19964 9369 19965 9372 19965 9371 19965 9373 19966 9374 19966 9375 19966 9373 19967 9375 19967 9374 19967 9374 19968 9375 19968 9376 19968 9376 19969 9375 19969 9379 19969 9377 19970 9379 19970 9378 19970 9379 19971 9377 19971 9376 19971 9377 19972 9378 19972 9380 19972 9380 19973 9378 19973 9382 19973 9387 19974 9383 19974 9382 19974 9382 19975 9383 19975 9380 19975 9381 19976 9383 19976 9387 19976 9380 19977 9383 19977 9381 19977 9381 19978 9387 19978 9384 19978 9385 19979 9384 19979 9386 19979 9386 19980 9384 19980 9387 19980 9389 19981 9456 19981 9388 19981 9390 19982 9389 19982 9398 19982 9389 19983 9388 19983 9398 19983 9390 19984 9398 19984 9397 19984 9393 19985 9392 19985 9390 19985 9396 19986 9392 19986 9394 19986 9396 19987 9391 19987 9392 19987 9393 19988 9390 19988 9397 19988 9395 19989 9394 19989 9397 19989 9394 19990 9395 19990 9396 19990 9398 19991 9396 19991 9395 19991 9392 19992 9391 19992 9390 19992 9397 19993 9394 19993 9393 19993 9398 19994 9395 19994 9397 19994 9400 19995 9399 19995 9401 19995 9399 19996 9391 19996 9396 19996 9399 19997 9400 19997 9391 19997 9396 19998 9398 19998 9401 19998 9396 19999 9401 19999 9399 19999 9400 20000 9401 20000 9402 20000 9404 20001 9403 20001 9405 20001 9405 20002 9403 20002 9402 20002 9402 20003 9403 20003 9400 20003 9403 20004 9404 20004 9400 20004 9406 20005 9405 20005 9407 20005 9406 20006 9407 20006 9408 20006 9406 20007 9404 20007 9405 20007 9407 20008 9410 20008 9408 20008 9408 20009 9410 20009 9409 20009 9410 20010 9412 20010 9409 20010 9411 20011 9412 20011 9413 20011 9412 20012 9410 20012 9413 20012 9411 20013 9409 20013 9412 20013 9415 20014 9414 20014 9416 20014 9411 20015 9413 20015 9414 20015 9415 20016 9411 20016 9414 20016 9414 20017 9413 20017 9416 20017 9416 20018 9418 20018 9415 20018 9416 20019 9417 20019 9418 20019 9420 20020 9417 20020 9416 20020 9422 20021 9421 20021 9423 20021 9421 20022 9417 20022 9420 20022 9421 20023 9420 20023 9419 20023 9423 20024 9421 20024 9419 20024 9428 20025 9426 20025 9423 20025 9423 20026 9426 20026 9422 20026 9424 20027 9428 20027 9425 20027 9428 20028 9424 20028 9426 20028 9430 20029 9425 20029 9434 20029 9427 20030 9425 20030 9430 20030 9427 20031 9424 20031 9425 20031 9425 20032 9428 20032 9434 20032 9430 20033 9434 20033 9431 20033 9435 20034 9430 20034 9433 20034 9433 20035 9431 20035 9432 20035 9429 20036 9431 20036 9434 20036 9433 20037 9430 20037 9431 20037 9429 20038 9433 20038 9432 20038 9429 20039 9434 20039 9433 20039 9439 20040 9436 20040 9440 20040 9433 20041 9436 20041 9435 20041 9440 20042 9436 20042 9433 20042 9437 20043 9438 20043 9441 20043 9439 20044 9440 20044 9438 20044 9437 20045 9439 20045 9438 20045 9442 20046 9441 20046 9444 20046 9437 20047 9441 20047 9442 20047 9444 20048 9443 20048 9442 20048 9446 20049 9443 20049 9445 20049 9442 20050 9443 20050 9446 20050 9444 20051 9445 20051 9443 20051 9451 20052 9448 20052 9450 20052 9448 20053 9445 20053 9447 20053 9451 20054 9446 20054 9448 20054 9446 20055 9445 20055 9448 20055 9447 20056 9450 20056 9448 20056 9453 20057 9450 20057 9449 20057 9450 20058 9453 20058 9451 20058 9452 20059 9453 20059 9449 20059 9458 20060 9452 20060 9449 20060 9452 20061 9458 20061 9454 20061 9457 20062 9455 20062 9389 20062 9455 20063 9454 20063 9458 20063 9389 20064 9455 20064 9456 20064 9455 20065 9457 20065 9454 20065 9459 20066 9521 20066 9460 20066 9462 20067 9459 20067 9460 20067 9462 20068 8842 20068 9459 20068 9461 20069 8842 20069 9462 20069 9465 20070 9463 20070 9464 20070 9461 20071 9463 20071 9465 20071 9461 20072 9462 20072 9463 20072 9464 20073 9463 20073 9462 20073 9464 20074 9466 20074 9465 20074 9466 20075 9467 20075 9465 20075 9467 20076 9466 20076 9468 20076 9467 20077 9468 20077 9469 20077 9473 20078 9470 20078 9471 20078 9470 20079 9469 20079 9468 20079 9475 20080 9470 20080 9473 20080 9468 20081 9471 20081 9470 20081 9476 20082 9472 20082 9474 20082 9473 20083 9472 20083 9475 20083 9472 20084 9476 20084 9475 20084 9474 20085 9472 20085 9473 20085 9474 20086 9477 20086 9476 20086 9478 20087 9477 20087 9474 20087 9479 20088 9480 20088 9484 20088 9480 20089 9478 20089 9481 20089 9477 20090 9478 20090 9480 20090 9480 20091 9479 20091 9477 20091 9481 20092 9484 20092 9480 20092 9482 20093 9484 20093 9483 20093 9484 20094 9482 20094 9479 20094 9486 20095 9485 20095 9483 20095 9485 20096 9482 20096 9483 20096 9490 20097 9487 20097 9488 20097 9490 20098 9488 20098 9486 20098 9488 20099 9485 20099 9486 20099 9489 20100 9487 20100 9490 20100 9487 20101 9489 20101 9492 20101 9491 20102 9492 20102 9494 20102 9492 20103 9489 20103 9494 20103 9495 20104 9493 20104 9496 20104 9495 20105 9491 20105 9493 20105 9491 20106 9494 20106 9493 20106 9493 20107 9494 20107 9496 20107 9496 20108 9499 20108 9495 20108 9499 20109 9496 20109 9497 20109 9501 20110 9498 20110 9502 20110 9502 20111 9498 20111 9497 20111 9497 20112 9498 20112 9499 20112 9498 20113 9501 20113 9499 20113 9504 20114 9500 20114 9507 20114 9500 20115 9502 20115 9503 20115 9507 20116 9500 20116 9503 20116 9500 20117 9501 20117 9502 20117 9500 20118 9504 20118 9501 20118 9505 20119 9506 20119 9508 20119 9504 20120 9507 20120 9506 20120 9508 20121 9506 20121 9507 20121 9506 20122 9505 20122 9504 20122 9509 20123 9505 20123 9510 20123 9508 20124 9510 20124 9505 20124 9509 20125 9510 20125 9511 20125 9510 20126 9508 20126 9511 20126 9515 20127 9512 20127 9513 20127 9512 20128 9511 20128 9513 20128 9515 20129 9509 20129 9512 20129 9509 20130 9511 20130 9512 20130 9513 20131 9514 20131 9515 20131 9513 20132 9516 20132 9514 20132 9518 20133 9517 20133 9520 20133 9516 20134 9517 20134 9514 20134 9520 20135 9517 20135 9516 20135 9519 20136 9518 20136 9520 20136 9521 20137 9519 20137 9520 20137 9519 20138 9521 20138 9459 20138 9522 20139 9584 20139 9524 20139 9522 20140 9585 20140 9584 20140 9523 20141 9522 20141 9524 20141 9525 20142 9527 20142 9528 20142 9527 20143 9524 20143 9526 20143 9523 20144 9527 20144 9525 20144 9523 20145 9524 20145 9527 20145 9526 20146 9528 20146 9527 20146 9525 20147 9528 20147 9530 20147 9529 20148 9525 20148 9530 20148 9529 20149 9530 20149 9534 20149 9531 20150 9532 20150 9533 20150 9533 20151 9529 20151 9534 20151 9533 20152 9532 20152 9529 20152 9536 20153 9535 20153 9537 20153 9535 20154 9532 20154 9531 20154 9536 20155 9532 20155 9535 20155 9531 20156 9537 20156 9535 20156 9537 20157 9538 20157 9536 20157 9540 20158 9538 20158 9537 20158 9541 20159 9539 20159 9544 20159 9538 20160 9540 20160 9539 20160 9539 20161 9541 20161 9538 20161 9540 20162 9544 20162 9539 20162 9542 20163 9541 20163 9544 20163 9542 20164 9544 20164 9543 20164 9547 20165 9548 20165 9543 20165 9548 20166 9542 20166 9543 20166 9550 20167 9545 20167 9552 20167 9548 20168 9547 20168 9545 20168 9545 20169 9546 20169 9552 20169 9546 20170 9545 20170 9547 20170 9551 20171 9550 20171 9552 20171 9550 20172 9551 20172 9549 20172 9554 20173 9549 20173 9551 20173 9553 20174 9549 20174 9554 20174 9553 20175 9554 20175 9555 20175 9559 20176 9556 20176 9561 20176 9553 20177 9555 20177 9556 20177 9556 20178 9559 20178 9553 20178 9555 20179 9561 20179 9556 20179 9558 20180 9557 20180 9559 20180 9564 20181 9560 20181 9558 20181 9561 20182 9564 20182 9559 20182 9557 20183 9562 20183 9559 20183 9563 20184 9558 20184 9560 20184 9563 20185 9562 20185 9557 20185 9564 20186 9562 20186 9563 20186 9560 20187 9564 20187 9563 20187 9562 20188 9564 20188 9559 20188 9566 20189 9564 20189 9561 20189 9559 20190 9564 20190 9558 20190 9567 20191 9565 20191 9569 20191 9566 20192 9565 20192 9564 20192 9565 20193 9567 20193 9564 20193 9566 20194 9569 20194 9565 20194 9571 20195 9570 20195 9568 20195 9570 20196 9571 20196 9567 20196 9569 20197 9570 20197 9567 20197 9572 20198 9573 20198 9568 20198 9573 20199 9572 20199 9574 20199 9571 20200 9568 20200 9573 20200 9578 20201 9574 20201 9572 20201 9579 20202 9577 20202 9575 20202 9577 20203 9578 20203 9576 20203 9579 20204 9574 20204 9577 20204 9574 20205 9578 20205 9577 20205 9576 20206 9575 20206 9577 20206 9575 20207 9580 20207 9579 20207 9582 20208 9580 20208 9575 20208 9588 20209 9581 20209 9583 20209 9583 20210 9581 20210 9582 20210 9581 20211 9580 20211 9582 20211 9585 20212 9587 20212 9584 20212 9585 20213 9586 20213 9587 20213 9588 20214 9583 20214 9587 20214 9587 20215 9586 20215 9588 20215 9655 20216 9595 20216 9589 20216 9595 20217 9596 20217 9589 20217 9590 20218 9591 20218 9592 20218 9590 20219 9592 20219 9594 20219 9595 20220 9591 20220 9596 20220 9592 20221 9591 20221 9595 20221 9590 20222 9594 20222 9593 20222 9590 20223 9593 20223 9595 20223 9595 20224 9593 20224 9592 20224 9597 20225 9599 20225 9600 20225 9599 20226 9590 20226 9598 20226 9591 20227 9590 20227 9599 20227 9599 20228 9597 20228 9591 20228 9598 20229 9600 20229 9599 20229 9601 20230 9597 20230 9600 20230 9605 20231 9602 20231 9603 20231 9602 20232 9600 20232 9603 20232 9605 20233 9601 20233 9602 20233 9600 20234 9602 20234 9601 20234 9604 20235 9608 20235 9607 20235 9606 20236 9605 20236 9603 20236 9604 20237 9606 20237 9608 20237 9608 20238 9606 20238 9603 20238 9605 20239 9606 20239 9604 20239 9611 20240 9609 20240 9610 20240 9610 20241 9609 20241 9608 20241 9609 20242 9607 20242 9608 20242 9607 20243 9609 20243 9611 20243 9610 20244 9612 20244 9611 20244 9613 20245 9612 20245 9610 20245 9614 20246 9615 20246 9617 20246 9612 20247 9613 20247 9615 20247 9615 20248 9614 20248 9612 20248 9613 20249 9617 20249 9615 20249 9618 20250 9617 20250 9616 20250 9617 20251 9618 20251 9614 20251 9621 20252 9619 20252 9616 20252 9619 20253 9618 20253 9616 20253 9620 20254 9622 20254 9624 20254 9624 20255 9622 20255 9623 20255 9622 20256 9619 20256 9621 20256 9623 20257 9622 20257 9621 20257 9626 20258 9620 20258 9624 20258 9620 20259 9626 20259 9625 20259 9625 20260 9626 20260 9628 20260 9634 20261 9627 20261 9629 20261 9625 20262 9627 20262 9634 20262 9625 20263 9628 20263 9627 20263 9628 20264 9629 20264 9627 20264 9633 20265 9629 20265 9631 20265 9630 20266 9634 20266 9635 20266 9633 20267 9634 20267 9629 20267 9632 20268 9631 20268 9635 20268 9635 20269 9631 20269 9629 20269 9635 20270 9634 20270 9633 20270 9635 20271 9633 20271 9632 20271 9630 20272 9635 20272 9636 20272 9630 20273 9636 20273 9637 20273 9640 20274 9643 20274 9638 20274 9638 20275 9636 20275 9639 20275 9640 20276 9638 20276 9639 20276 9638 20277 9637 20277 9636 20277 9646 20278 9642 20278 9641 20278 9640 20279 9642 20279 9643 20279 9641 20280 9642 20280 9640 20280 9646 20281 9641 20281 9645 20281 9644 20282 9646 20282 9645 20282 9649 20283 9647 20283 9650 20283 9647 20284 9645 20284 9648 20284 9644 20285 9647 20285 9649 20285 9644 20286 9645 20286 9647 20286 9648 20287 9650 20287 9647 20287 9652 20288 9649 20288 9650 20288 9651 20289 9653 20289 9650 20289 9650 20290 9653 20290 9652 20290 9589 20291 9656 20291 9655 20291 9656 20292 9654 20292 9653 20292 9589 20293 9654 20293 9656 20293 9656 20294 9653 20294 9651 20294 9660 20295 9657 20295 9661 20295 9727 20296 9657 20296 9658 20296 9660 20297 9658 20297 9657 20297 9660 20298 9661 20298 9664 20298 9664 20299 9661 20299 9659 20299 9665 20300 9663 20300 9666 20300 9663 20301 9659 20301 9662 20301 9664 20302 9659 20302 9663 20302 9663 20303 9665 20303 9664 20303 9662 20304 9666 20304 9663 20304 9666 20305 9667 20305 9665 20305 9670 20306 9667 20306 9666 20306 9670 20307 9668 20307 9667 20307 9669 20308 9668 20308 9670 20308 9671 20309 9672 20309 9676 20309 9673 20310 9668 20310 9672 20310 9673 20311 9672 20311 9671 20311 9668 20312 9669 20312 9672 20312 9671 20313 9676 20313 9675 20313 9676 20314 9678 20314 9675 20314 9678 20315 9674 20315 9675 20315 9677 20316 9678 20316 9679 20316 9678 20317 9677 20317 9674 20317 9685 20318 9680 20318 9684 20318 9680 20319 9679 20319 9681 20319 9677 20320 9679 20320 9680 20320 9680 20321 9685 20321 9677 20321 9681 20322 9684 20322 9680 20322 9682 20323 9684 20323 9683 20323 9684 20324 9682 20324 9685 20324 9689 20325 9686 20325 9683 20325 9686 20326 9682 20326 9683 20326 9686 20327 9689 20327 9687 20327 9688 20328 9690 20328 9692 20328 9691 20329 9690 20329 9689 20329 9687 20330 9689 20330 9690 20330 9688 20331 9687 20331 9690 20331 9690 20332 9691 20332 9692 20332 9695 20333 9688 20333 9692 20333 9688 20334 9695 20334 9693 20334 9694 20335 9693 20335 9695 20335 9704 20336 9696 20336 9702 20336 9696 20337 9694 20337 9697 20337 9693 20338 9696 20338 9704 20338 9693 20339 9694 20339 9696 20339 9697 20340 9702 20340 9696 20340 9699 20341 9702 20341 9703 20341 9701 20342 9698 20342 9704 20342 9700 20343 9701 20343 9699 20343 9699 20344 9704 20344 9698 20344 9700 20345 9699 20345 9698 20345 9699 20346 9701 20346 9702 20346 9702 20347 9701 20347 9704 20347 9699 20348 9703 20348 9706 20348 9707 20349 9705 20349 9708 20349 9705 20350 9703 20350 9708 20350 9706 20351 9703 20351 9705 20351 9707 20352 9706 20352 9705 20352 9709 20353 9710 20353 9713 20353 9709 20354 9707 20354 9710 20354 9707 20355 9708 20355 9711 20355 9710 20356 9707 20356 9711 20356 9713 20357 9710 20357 9711 20357 9712 20358 9709 20358 9714 20358 9714 20359 9709 20359 9713 20359 9714 20360 9716 20360 9712 20360 9715 20361 9716 20361 9719 20361 9719 20362 9716 20362 9714 20362 9715 20363 9712 20363 9716 20363 9720 20364 9718 20364 9722 20364 9718 20365 9719 20365 9717 20365 9720 20366 9715 20366 9718 20366 9715 20367 9719 20367 9718 20367 9717 20368 9722 20368 9718 20368 9722 20369 9721 20369 9720 20369 9723 20370 9721 20370 9722 20370 8840 20371 9724 20371 9725 20371 9723 20372 9724 20372 9721 20372 9725 20373 9724 20373 9723 20373 9658 20374 9726 20374 9727 20374 8840 20375 9726 20375 9658 20375 9726 20376 8840 20376 9725 20376 9730 20377 9729 20377 9731 20377 9731 20378 9729 20378 9728 20378 9733 20379 9730 20379 9731 20379 9739 20380 9734 20380 9737 20380 9734 20381 9731 20381 9732 20381 9733 20382 9734 20382 9739 20382 9733 20383 9731 20383 9734 20383 9732 20384 9737 20384 9734 20384 9737 20385 9736 20385 9739 20385 9735 20386 9736 20386 9738 20386 9739 20387 9736 20387 9735 20387 9738 20388 9736 20388 9737 20388 9740 20389 9738 20389 9743 20389 9740 20390 9735 20390 9738 20390 9742 20391 9743 20391 9745 20391 9742 20392 9740 20392 9743 20392 9744 20393 9741 20393 9745 20393 9741 20394 9742 20394 9745 20394 9747 20395 9748 20395 9746 20395 9747 20396 9744 20396 9748 20396 9741 20397 9744 20397 9747 20397 9749 20398 9746 20398 9750 20398 9748 20399 9750 20399 9746 20399 9753 20400 9751 20400 9755 20400 9749 20401 9751 20401 9753 20401 9749 20402 9750 20402 9751 20402 9750 20403 9755 20403 9751 20403 9752 20404 9755 20404 9754 20404 9753 20405 9755 20405 9752 20405 9757 20406 9756 20406 9754 20406 9756 20407 9752 20407 9754 20407 9756 20408 9757 20408 9758 20408 9760 20409 9758 20409 9759 20409 9758 20410 9757 20410 9759 20410 9762 20411 9760 20411 9759 20411 9761 20412 9760 20412 9762 20412 9763 20413 9761 20413 9762 20413 9761 20414 9763 20414 9765 20414 9764 20415 9765 20415 9769 20415 9769 20416 9765 20416 9763 20416 9767 20417 9766 20417 9775 20417 9767 20418 9765 20418 9764 20418 9767 20419 9764 20419 9766 20419 9764 20420 9775 20420 9766 20420 9769 20421 9775 20421 9764 20421 9770 20422 9768 20422 9775 20422 9775 20423 9772 20423 9767 20423 9771 20424 9772 20424 9774 20424 9774 20425 9770 20425 9769 20425 9769 20426 9770 20426 9775 20426 9772 20427 9771 20427 9767 20427 9772 20428 9768 20428 9773 20428 9773 20429 9774 20429 9772 20429 9774 20430 9773 20430 9770 20430 9775 20431 9768 20431 9772 20431 9771 20432 9774 20432 9776 20432 9777 20433 9776 20433 9779 20433 9771 20434 9776 20434 9777 20434 9781 20435 9782 20435 9780 20435 9780 20436 9779 20436 9778 20436 9781 20437 9780 20437 9778 20437 9780 20438 9777 20438 9779 20438 9781 20439 8837 20439 9782 20439 9784 20440 8837 20440 9781 20440 8837 20441 9784 20441 9783 20441 9787 20442 9785 20442 9786 20442 9785 20443 9784 20443 9786 20443 9783 20444 9785 20444 9787 20444 9783 20445 9784 20445 9785 20445 9790 20446 9788 20446 9789 20446 9787 20447 9788 20447 9790 20447 9729 20448 9792 20448 9728 20448 9792 20449 9790 20449 9789 20449 9729 20450 9791 20450 9792 20450 9792 20451 9791 20451 9790 20451 9793 20452 9797 20452 9795 20452 9795 20453 9854 20453 9793 20453 9797 20454 9794 20454 9795 20454 9798 20455 9796 20455 9799 20455 9794 20456 9797 20456 9796 20456 9796 20457 9798 20457 9794 20457 9796 20458 9797 20458 9799 20458 9800 20459 9798 20459 9799 20459 9800 20460 9799 20460 9801 20460 9802 20461 9801 20461 9804 20461 9802 20462 9800 20462 9801 20462 9806 20463 9802 20463 9804 20463 9806 20464 9805 20464 9802 20464 9805 20465 9806 20465 9803 20465 9808 20466 9805 20466 9803 20466 9807 20467 9809 20467 9810 20467 9803 20468 9809 20468 9808 20468 9809 20469 9807 20469 9808 20469 9810 20470 9809 20470 9803 20470 9812 20471 9810 20471 9811 20471 9810 20472 9812 20472 9807 20472 9814 20473 9813 20473 9816 20473 9812 20474 9813 20474 9814 20474 9812 20475 9811 20475 9813 20475 9811 20476 9816 20476 9813 20476 9817 20477 9816 20477 9815 20477 9816 20478 9817 20478 9814 20478 9819 20479 9818 20479 9815 20479 9818 20480 9817 20480 9815 20480 9821 20481 9820 20481 9823 20481 9822 20482 9820 20482 9819 20482 9820 20483 9818 20483 9819 20483 9823 20484 9820 20484 9822 20484 9826 20485 9821 20485 9823 20485 9825 20486 9821 20486 9826 20486 9826 20487 9827 20487 9825 20487 9824 20488 9827 20488 9826 20488 9831 20489 9828 20489 9830 20489 9827 20490 9824 20490 9828 20490 9828 20491 9824 20491 9829 20491 9828 20492 9829 20492 9830 20492 9830 20493 9829 20493 9824 20493 9831 20494 9827 20494 9828 20494 9830 20495 9833 20495 9831 20495 9833 20496 9830 20496 9832 20496 9838 20497 9832 20497 9836 20497 9838 20498 9833 20498 9832 20498 9835 20499 9834 20499 9840 20499 9835 20500 9837 20500 9834 20500 9834 20501 9838 20501 9836 20501 9834 20502 9837 20502 9838 20502 9840 20503 9834 20503 9836 20503 9839 20504 9835 20504 9840 20504 9843 20505 9839 20505 9840 20505 9841 20506 9843 20506 9842 20506 9841 20507 9839 20507 9843 20507 9846 20508 9845 20508 9848 20508 9845 20509 9842 20509 9844 20509 9846 20510 9841 20510 9845 20510 9841 20511 9842 20511 9845 20511 9844 20512 9848 20512 9845 20512 9848 20513 9847 20513 9846 20513 9849 20514 9847 20514 9848 20514 9851 20515 9850 20515 9849 20515 9849 20516 9850 20516 9847 20516 9850 20517 9851 20517 9853 20517 9854 20518 9855 20518 9793 20518 9854 20519 9852 20519 9855 20519 9852 20520 9853 20520 9855 20520 9855 20521 9853 20521 9851 20521 9856 20522 9858 20522 9857 20522 9917 20523 9858 20523 9916 20523 9857 20524 9858 20524 9917 20524 9860 20525 9856 20525 9859 20525 9859 20526 9856 20526 9857 20526 9863 20527 9861 20527 9864 20527 9860 20528 9861 20528 9863 20528 9861 20529 9860 20529 9859 20529 9859 20530 9864 20530 9861 20530 9863 20531 9864 20531 9862 20531 9866 20532 9862 20532 9867 20532 9865 20533 9863 20533 9866 20533 9867 20534 9865 20534 9866 20534 9866 20535 9863 20535 9862 20535 9869 20536 9868 20536 9870 20536 9870 20537 9865 20537 9867 20537 9869 20538 9870 20538 9867 20538 9869 20539 9871 20539 9868 20539 9875 20540 9868 20540 9871 20540 9871 20541 9872 20541 9875 20541 9873 20542 9872 20542 9874 20542 9873 20543 9875 20543 9872 20543 9871 20544 9874 20544 9872 20544 9877 20545 9876 20545 9878 20545 9876 20546 9874 20546 9878 20546 9873 20547 9874 20547 9876 20547 9876 20548 9877 20548 9873 20548 9880 20549 9878 20549 9879 20549 9880 20550 9877 20550 9878 20550 9885 20551 9883 20551 9879 20551 9883 20552 9880 20552 9879 20552 9884 20553 9882 20553 9887 20553 9882 20554 9883 20554 9885 20554 9882 20555 9881 20555 9887 20555 9881 20556 9882 20556 9885 20556 9888 20557 9886 20557 9892 20557 9886 20558 9887 20558 9892 20558 9888 20559 9884 20559 9886 20559 9887 20560 9886 20560 9884 20560 9890 20561 9888 20561 9889 20561 9892 20562 9889 20562 9888 20562 9890 20563 9889 20563 9891 20563 9891 20564 9889 20564 9892 20564 9894 20565 9893 20565 9895 20565 9890 20566 9893 20566 9894 20566 9890 20567 9891 20567 9893 20567 9893 20568 9891 20568 9895 20568 9895 20569 9897 20569 9894 20569 9898 20570 9896 20570 9899 20570 9894 20571 9897 20571 9896 20571 9899 20572 9896 20572 9897 20572 9898 20573 9894 20573 9896 20573 9901 20574 9903 20574 9902 20574 9903 20575 9899 20575 9900 20575 9902 20576 9903 20576 9900 20576 9903 20577 9898 20577 9899 20577 9903 20578 9901 20578 9898 20578 9906 20579 9901 20579 9902 20579 9906 20580 9902 20580 9907 20580 9907 20581 9904 20581 9906 20581 9905 20582 9904 20582 9907 20582 9910 20583 9908 20583 9911 20583 9908 20584 9905 20584 9909 20584 9910 20585 9904 20585 9908 20585 9904 20586 9905 20586 9908 20586 9909 20587 9911 20587 9908 20587 9911 20588 9913 20588 9910 20588 9912 20589 9913 20589 9911 20589 9912 20590 9914 20590 9913 20590 9919 20591 9914 20591 9912 20591 9916 20592 9915 20592 9917 20592 9918 20593 9919 20593 9915 20593 9918 20594 9914 20594 9919 20594 9915 20595 9916 20595 9918 20595 9920 20596 9921 20596 9984 20596 9985 20597 9984 20597 9921 20597 9921 20598 9920 20598 9924 20598 9922 20599 9924 20599 9923 20599 9920 20600 9923 20600 9924 20600 8834 20601 9925 20601 9926 20601 9922 20602 9925 20602 8834 20602 9922 20603 9923 20603 9925 20603 9923 20604 9926 20604 9925 20604 9928 20605 8834 20605 9926 20605 9928 20606 9927 20606 8834 20606 9930 20607 9927 20607 9929 20607 9928 20608 9929 20608 9927 20608 9934 20609 9931 20609 9933 20609 9932 20610 9930 20610 9929 20610 9934 20611 9932 20611 9931 20611 9930 20612 9932 20612 9934 20612 9933 20613 9931 20613 9935 20613 9938 20614 9936 20614 9937 20614 9933 20615 9935 20615 9936 20615 9933 20616 9936 20616 9938 20616 9937 20617 9936 20617 9935 20617 9939 20618 9938 20618 9940 20618 9937 20619 9940 20619 9938 20619 9946 20620 9941 20620 9942 20620 9941 20621 9940 20621 9942 20621 9939 20622 9941 20622 9946 20622 9939 20623 9940 20623 9941 20623 9945 20624 9946 20624 9942 20624 9947 20625 9943 20625 9944 20625 9944 20626 9943 20626 9945 20626 9945 20627 9943 20627 9946 20627 9943 20628 9947 20628 9946 20628 9947 20629 9944 20629 9948 20629 9947 20630 9948 20630 9949 20630 9951 20631 9949 20631 9948 20631 9950 20632 9952 20632 9953 20632 9952 20633 9951 20633 9953 20633 9952 20634 9950 20634 9951 20634 9951 20635 9950 20635 9949 20635 9954 20636 9950 20636 9953 20636 9954 20637 9953 20637 9956 20637 9960 20638 9955 20638 9962 20638 9954 20639 9955 20639 9960 20639 9954 20640 9956 20640 9955 20640 9955 20641 9956 20641 9962 20641 9964 20642 9960 20642 9959 20642 9962 20643 9957 20643 9960 20643 9959 20644 9958 20644 9964 20644 9961 20645 9959 20645 9960 20645 9958 20646 9961 20646 9964 20646 9957 20647 9961 20647 9960 20647 9964 20648 9961 20648 9957 20648 9964 20649 9957 20649 9963 20649 9963 20650 9965 20650 9964 20650 9966 20651 9964 20651 9965 20651 9967 20652 9966 20652 9965 20652 9963 20653 9967 20653 9965 20653 9970 20654 9969 20654 9971 20654 9971 20655 9967 20655 9968 20655 9970 20656 9971 20656 9968 20656 9971 20657 9966 20657 9967 20657 9973 20658 9972 20658 9976 20658 9976 20659 9972 20659 9970 20659 9973 20660 9969 20660 9972 20660 9969 20661 9970 20661 9972 20661 9974 20662 9973 20662 9976 20662 9980 20663 9975 20663 9978 20663 9975 20664 9976 20664 9977 20664 9980 20665 9974 20665 9975 20665 9974 20666 9976 20666 9975 20666 9977 20667 9978 20667 9975 20667 9979 20668 9982 20668 9980 20668 9978 20669 9979 20669 9980 20669 9982 20670 9979 20670 9981 20670 9986 20671 9981 20671 9983 20671 9986 20672 9982 20672 9981 20672 9985 20673 9988 20673 9984 20673 9985 20674 9986 20674 9988 20674 9988 20675 9986 20675 9983 20675 9988 20676 9983 20676 9987 20676 9988 20677 9987 20677 9984 20677 9991 20678 9989 20678 9992 20678 9992 20679 9989 20679 9990 20679 9993 20680 9991 20680 9994 20680 9991 20681 9992 20681 9994 20681 9997 20682 9994 20682 9995 20682 9993 20683 9994 20683 9997 20683 9999 20684 9997 20684 9996 20684 9995 20685 9996 20685 9997 20685 10004 20686 9998 20686 9996 20686 9996 20687 9998 20687 9999 20687 10000 20688 9998 20688 10004 20688 10000 20689 10004 20689 10002 20689 10003 20690 10002 20690 10001 20690 10002 20691 10004 20691 10001 20691 10007 20692 10008 20692 10006 20692 10008 20693 10005 20693 10003 20693 10003 20694 10005 20694 10002 20694 10008 20695 10003 20695 10006 20695 10007 20696 10005 20696 10008 20696 10010 20697 10007 20697 10009 20697 10006 20698 10009 20698 10007 20698 10012 20699 10011 20699 10013 20699 9111 20700 10011 20700 10012 20700 10010 20701 10009 20701 10011 20701 10011 20702 9111 20702 10010 20702 10009 20703 10013 20703 10011 20703 10014 20704 10013 20704 10016 20704 10014 20705 10012 20705 10013 20705 10017 20706 10015 20706 10019 20706 10019 20707 10015 20707 10016 20707 10017 20708 10014 20708 10015 20708 10016 20709 10015 20709 10014 20709 10021 20710 10020 20710 10022 20710 10020 20711 10017 20711 10019 20711 10018 20712 10020 20712 10021 20712 10020 20713 10018 20713 10017 20713 10025 20714 10021 20714 10022 20714 10021 20715 10025 20715 10024 20715 10024 20716 10025 20716 10023 20716 10028 20717 10026 20717 10029 20717 10028 20718 10024 20718 10026 20718 10024 20719 10023 20719 10026 20719 10026 20720 10023 20720 10029 20720 10029 20721 10027 20721 10028 20721 10029 20722 10030 20722 10027 20722 10032 20723 10030 20723 10029 20723 10036 20724 10033 20724 10031 20724 10036 20725 10031 20725 10032 20725 10031 20726 10030 20726 10032 20726 10039 20727 10034 20727 10035 20727 10033 20728 10034 20728 10039 20728 10035 20729 10034 20729 10036 20729 10034 20730 10033 20730 10036 20730 10039 20731 10035 20731 10038 20731 10037 20732 10039 20732 10038 20732 10043 20733 10041 20733 10044 20733 10041 20734 10038 20734 10040 20734 10043 20735 10037 20735 10041 20735 10037 20736 10038 20736 10041 20736 10040 20737 10044 20737 10041 20737 10044 20738 10042 20738 10043 20738 10047 20739 10042 20739 10044 20739 10045 20740 10047 20740 10046 20740 10047 20741 10045 20741 10042 20741 9989 20742 10048 20742 9990 20742 10048 20743 10049 20743 9990 20743 10049 20744 10045 20744 10046 20744 10049 20745 10048 20745 10045 20745 10249 20746 10250 20746 10051 20746 10051 20747 10250 20747 10050 20747 10308 20748 10050 20748 10311 20748 10308 20749 10051 20749 10050 20749 10198 20750 10052 20750 10095 20750 10095 20751 10052 20751 10098 20751 10095 20752 10098 20752 10096 20752 10198 20753 10195 20753 10052 20753 10052 20754 10251 20754 10098 20754 10098 20755 10251 20755 10091 20755 10091 20756 10251 20756 10248 20756 10091 20757 10248 20757 10254 20757 10092 20758 10250 20758 10251 20758 10053 20759 10363 20759 10092 20759 10092 20760 10363 20760 10365 20760 10191 20761 10363 20761 10053 20761 10190 20762 10363 20762 10191 20762 10055 20763 10054 20763 10190 20763 10190 20764 10054 20764 10366 20764 10188 20765 10184 20765 10055 20765 10055 20766 10184 20766 10056 20766 10055 20767 10056 20767 10054 20767 10187 20768 10057 20768 10188 20768 10188 20769 10057 20769 10184 20769 10056 20770 10184 20770 10186 20770 10056 20771 10186 20771 10058 20771 10058 20772 10186 20772 10059 20772 10058 20773 10059 20773 10180 20773 10366 20774 10054 20774 10060 20774 10366 20775 10060 20775 10361 20775 10361 20776 10060 20776 10061 20776 10361 20777 10061 20777 10362 20777 10362 20778 10061 20778 10306 20778 10362 20779 10306 20779 10364 20779 10364 20780 10306 20780 10307 20780 10306 20781 10061 20781 10303 20781 10303 20782 10061 20782 10062 20782 10303 20783 10062 20783 10301 20783 10301 20784 10062 20784 10166 20784 10301 20785 10166 20785 10299 20785 10299 20786 10166 20786 10065 20786 10299 20787 10065 20787 10296 20787 10296 20788 10065 20788 10325 20788 10166 20789 10062 20789 10169 20789 10169 20790 10062 20790 10063 20790 10169 20791 10063 20791 10172 20791 10172 20792 10063 20792 10173 20792 10173 20793 10063 20793 10064 20793 10172 20794 10171 20794 10169 20794 10066 20795 10323 20795 10065 20795 10066 20796 10312 20796 10323 20796 10067 20797 10312 20797 10066 20797 10068 20798 10155 20798 10067 20798 10067 20799 10155 20799 10154 20799 10067 20800 10154 20800 10312 20800 10312 20801 10154 20801 10069 20801 10312 20802 10069 20802 10324 20802 10324 20803 10069 20803 10321 20803 10321 20804 10069 20804 10070 20804 10321 20805 10070 20805 10071 20805 10321 20806 10071 20806 10289 20806 10074 20807 10160 20807 10068 20807 10068 20808 10160 20808 10072 20808 10068 20809 10072 20809 10155 20809 10155 20810 10072 20810 10156 20810 10156 20811 10072 20811 10073 20811 10156 20812 10073 20812 10157 20812 10164 20813 10162 20813 10074 20813 10074 20814 10162 20814 10160 20814 10160 20815 10161 20815 10072 20815 10071 20816 10070 20816 10284 20816 10284 20817 10070 20817 10152 20817 10284 20818 10152 20818 10285 20818 10285 20819 10152 20819 10281 20819 10281 20820 10152 20820 10075 20820 10281 20821 10075 20821 10282 20821 10282 20822 10075 20822 10144 20822 10282 20823 10144 20823 10354 20823 10152 20824 10151 20824 10075 20824 10075 20825 10151 20825 10076 20825 10076 20826 10151 20826 10077 20826 10076 20827 10077 20827 10147 20827 10149 20828 10148 20828 10151 20828 10151 20829 10148 20829 10077 20829 10141 20830 10348 20830 10144 20830 10144 20831 10348 20831 10354 20831 10141 20832 10350 20832 10348 20832 10078 20833 10351 20833 10141 20833 10141 20834 10351 20834 10350 20834 10138 20835 10080 20835 10078 20835 10078 20836 10080 20836 10351 20836 10137 20837 10131 20837 10138 20837 10138 20838 10131 20838 10079 20838 10138 20839 10079 20839 10080 20839 10136 20840 10134 20840 10137 20840 10137 20841 10134 20841 10131 20841 10131 20842 10133 20842 3145 20842 10131 20843 3145 20843 10079 20843 10079 20844 3145 20844 10130 20844 10130 20845 3145 20845 3041 20845 10130 20846 3041 20846 10081 20846 10351 20847 10080 20847 10126 20847 10351 20848 10126 20848 10125 20848 10351 20849 10125 20849 10352 20849 10352 20850 10125 20850 10124 20850 10352 20851 10124 20851 10353 20851 10353 20852 10124 20852 10273 20852 10353 20853 10273 20853 10093 20853 10273 20854 10124 20854 10270 20854 10270 20855 10124 20855 10082 20855 10270 20856 10082 20856 10271 20856 10271 20857 10082 20857 10083 20857 10271 20858 10083 20858 10266 20858 10266 20859 10083 20859 10267 20859 10267 20860 10083 20860 10085 20860 10267 20861 10085 20861 10265 20861 10265 20862 10085 20862 10338 20862 10083 20863 10082 20863 10118 20863 10118 20864 10082 20864 10123 20864 10118 20865 10123 20865 3031 20865 3031 20866 10123 20866 3156 20866 3156 20867 10123 20867 10084 20867 3031 20868 10120 20868 10118 20868 10117 20869 10339 20869 10085 20869 10085 20870 10339 20870 10336 20870 10116 20871 10339 20871 10117 20871 10115 20872 10339 20872 10116 20872 10088 20873 10105 20873 10115 20873 10115 20874 10105 20874 10086 20874 10115 20875 10086 20875 10339 20875 10339 20876 10086 20876 10333 20876 10333 20877 10086 20877 10102 20877 10333 20878 10102 20878 10334 20878 10334 20879 10102 20879 10100 20879 10334 20880 10100 20880 10087 20880 10334 20881 10087 20881 10257 20881 10334 20882 10257 20882 10335 20882 10335 20883 10257 20883 10259 20883 10090 20884 8092 20884 10088 20884 10088 20885 8092 20885 10112 20885 10088 20886 10112 20886 10105 20886 10105 20887 10112 20887 10089 20887 10089 20888 10112 20888 10108 20888 10089 20889 10108 20889 10106 20889 10114 20890 3168 20890 10090 20890 10090 20891 3168 20891 8092 20891 8092 20892 10110 20892 10112 20892 10257 20893 10087 20893 10253 20893 10253 20894 10087 20894 10091 20894 10253 20895 10091 20895 10254 20895 10092 20896 10365 20896 10050 20896 10368 20897 10050 20897 10365 20897 10050 20898 10368 20898 10311 20898 10311 20899 10368 20899 10310 20899 10310 20900 10368 20900 10364 20900 10310 20901 10364 20901 10307 20901 10366 20902 10363 20902 10190 20902 10282 20903 10354 20903 10279 20903 10279 20904 10354 20904 10349 20904 10279 20905 10349 20905 10276 20905 10276 20906 10349 20906 10093 20906 10093 20907 10349 20907 10353 20907 10085 20908 10336 20908 10338 20908 10265 20909 10338 20909 10340 20909 10265 20910 10340 20910 10258 20910 10258 20911 10340 20911 10263 20911 10263 20912 10340 20912 10259 20912 10259 20913 10340 20913 10335 20913 10320 20914 10292 20914 10296 20914 10292 20915 10320 20915 10322 20915 10292 20916 10322 20916 10293 20916 10293 20917 10322 20917 10289 20917 10289 20918 10322 20918 10321 20918 10323 20919 10325 20919 10065 20919 10325 20920 10320 20920 10296 20920 10050 20921 10250 20921 10092 20921 10197 20922 10095 20922 10094 20922 10094 20923 10095 20923 10096 20923 10094 20924 10096 20924 10097 20924 10097 20925 10096 20925 10098 20925 10097 20926 10098 20926 10200 20926 10200 20927 10098 20927 10091 20927 10200 20928 10091 20928 10099 20928 10099 20929 10091 20929 10087 20929 10099 20930 10087 20930 10101 20930 10101 20931 10087 20931 10100 20931 10101 20932 10100 20932 10102 20932 10101 20933 10102 20933 10202 20933 10202 20934 10102 20934 10086 20934 10202 20935 10086 20935 10103 20935 10103 20936 10086 20936 10105 20936 10103 20937 10105 20937 10104 20937 10104 20938 10105 20938 10089 20938 10104 20939 10089 20939 10107 20939 10107 20940 10089 20940 10106 20940 10107 20941 10106 20941 10203 20941 10203 20942 10106 20942 10108 20942 10203 20943 10108 20943 10109 20943 10109 20944 10108 20944 10112 20944 10110 20945 10204 20945 10109 20945 10110 20946 8092 20946 10111 20946 10204 20947 10110 20947 10111 20947 10110 20948 10109 20948 10112 20948 10111 20949 8092 20949 10113 20949 10113 20950 8092 20950 3168 20950 10113 20951 3168 20951 10207 20951 10207 20952 3168 20952 10114 20952 10207 20953 10114 20953 10206 20953 10206 20954 10114 20954 10090 20954 10206 20955 10090 20955 10205 20955 10205 20956 10090 20956 10088 20956 10205 20957 10088 20957 10201 20957 10201 20958 10088 20958 10115 20958 10201 20959 10115 20959 10208 20959 10208 20960 10115 20960 10116 20960 10208 20961 10116 20961 10117 20961 10208 20962 10117 20962 10209 20962 10209 20963 10117 20963 10085 20963 10209 20964 10085 20964 10210 20964 10210 20965 10085 20965 10083 20965 10210 20966 10083 20966 10212 20966 10212 20967 10083 20967 10118 20967 10212 20968 10118 20968 10119 20968 10119 20969 10118 20969 10120 20969 10119 20970 10120 20970 10121 20970 10121 20971 10120 20971 3031 20971 10121 20972 3031 20972 6562 20972 6562 20973 3031 20973 3156 20973 6562 20974 3156 20974 10213 20974 10213 20975 3156 20975 10084 20975 10213 20976 10084 20976 10122 20976 10122 20977 10084 20977 10123 20977 10122 20978 10123 20978 10211 20978 10211 20979 10123 20979 10082 20979 10211 20980 10082 20980 10246 20980 10246 20981 10082 20981 10124 20981 10246 20982 10124 20982 10127 20982 10127 20983 10124 20983 10125 20983 10127 20984 10125 20984 10126 20984 10127 20985 10126 20985 10128 20985 10128 20986 10126 20986 10080 20986 10128 20987 10080 20987 10215 20987 10215 20988 10080 20988 10079 20988 10215 20989 10079 20989 10129 20989 10129 20990 10079 20990 10130 20990 10129 20991 10130 20991 10217 20991 10217 20992 10130 20992 10081 20992 10217 20993 10081 20993 6445 20993 6445 20994 10081 20994 3041 20994 6445 20995 3041 20995 6551 20995 6551 20996 3041 20996 3145 20996 10131 20997 7843 20997 10133 20997 10133 20998 10132 20998 6551 20998 10133 20999 6551 20999 3145 20999 7843 21000 10132 21000 10133 21000 7843 21001 10131 21001 7690 21001 7690 21002 10131 21002 10134 21002 7690 21003 10134 21003 10135 21003 10135 21004 10134 21004 10136 21004 10135 21005 10136 21005 10216 21005 10216 21006 10136 21006 10137 21006 10216 21007 10137 21007 10139 21007 10139 21008 10137 21008 10138 21008 10139 21009 10138 21009 10140 21009 10140 21010 10138 21010 10078 21010 10140 21011 10078 21011 10142 21011 10142 21012 10078 21012 10141 21012 10142 21013 10141 21013 10143 21013 10143 21014 10141 21014 10214 21014 10214 21015 10141 21015 10144 21015 10214 21016 10144 21016 10218 21016 10218 21017 10144 21017 10075 21017 10218 21018 10075 21018 10145 21018 10145 21019 10075 21019 10076 21019 10145 21020 10076 21020 10146 21020 10146 21021 10076 21021 10147 21021 10146 21022 10147 21022 7834 21022 7834 21023 10147 21023 10077 21023 7834 21024 10077 21024 10220 21024 10220 21025 10077 21025 10148 21025 10220 21026 10148 21026 10221 21026 10221 21027 10148 21027 10149 21027 10221 21028 10149 21028 10150 21028 10150 21029 10149 21029 10151 21029 10150 21030 10151 21030 10219 21030 10219 21031 10151 21031 10152 21031 10219 21032 10152 21032 10247 21032 10247 21033 10152 21033 10070 21033 10247 21034 10070 21034 10222 21034 10222 21035 10070 21035 10069 21035 10222 21036 10069 21036 10223 21036 10223 21037 10069 21037 10225 21037 10225 21038 10069 21038 10154 21038 10225 21039 10154 21039 10153 21039 10153 21040 10154 21040 10155 21040 10153 21041 10155 21041 10228 21041 10228 21042 10155 21042 10156 21042 10228 21043 10156 21043 10227 21043 10227 21044 10156 21044 10157 21044 10227 21045 10157 21045 10158 21045 10158 21046 10157 21046 10073 21046 10158 21047 10073 21047 7706 21047 7706 21048 10073 21048 10072 21048 10159 21049 10229 21049 10072 21049 10229 21050 7706 21050 10072 21050 10161 21051 10159 21051 10072 21051 10159 21052 10161 21052 10160 21052 10159 21053 10160 21053 10230 21053 10230 21054 10160 21054 10162 21054 10230 21055 10162 21055 10231 21055 10231 21056 10162 21056 10164 21056 10231 21057 10164 21057 10163 21057 10163 21058 10164 21058 10074 21058 10163 21059 10074 21059 10226 21059 10226 21060 10074 21060 10068 21060 10226 21061 10068 21061 10224 21061 10224 21062 10068 21062 10067 21062 10224 21063 10067 21063 10232 21063 10232 21064 10067 21064 10066 21064 10232 21065 10066 21065 10233 21065 10233 21066 10066 21066 10165 21066 10165 21067 10066 21067 10065 21067 10165 21068 10065 21068 10167 21068 10167 21069 10065 21069 10166 21069 10167 21070 10166 21070 10236 21070 10236 21071 10166 21071 10169 21071 10236 21072 10169 21072 10168 21072 10168 21073 10169 21073 10171 21073 10168 21074 10171 21074 10170 21074 10170 21075 10171 21075 10172 21075 10170 21076 10172 21076 10174 21076 10174 21077 10172 21077 10173 21077 10174 21078 10173 21078 10175 21078 10175 21079 10173 21079 10064 21079 10175 21080 10064 21080 10176 21080 10176 21081 10064 21081 10063 21081 10176 21082 10063 21082 10234 21082 10234 21083 10063 21083 10062 21083 10234 21084 10062 21084 10235 21084 10235 21085 10062 21085 10061 21085 10235 21086 10061 21086 10237 21086 10237 21087 10061 21087 10060 21087 10237 21088 10060 21088 10177 21088 10177 21089 10060 21089 10178 21089 10178 21090 10060 21090 10054 21090 10178 21091 10054 21091 10240 21091 10240 21092 10054 21092 10056 21092 10240 21093 10056 21093 10179 21093 10179 21094 10056 21094 10058 21094 10179 21095 10058 21095 10245 21095 10245 21096 10058 21096 10180 21096 10245 21097 10180 21097 10181 21097 10181 21098 10180 21098 10059 21098 10181 21099 10059 21099 10183 21099 10183 21100 10059 21100 10186 21100 10241 21101 10182 21101 10184 21101 10186 21102 10185 21102 10183 21102 10182 21103 10185 21103 10184 21103 10185 21104 10186 21104 10184 21104 10185 21105 10182 21105 10183 21105 10241 21106 10184 21106 10242 21106 10242 21107 10184 21107 10057 21107 10242 21108 10057 21108 10244 21108 10244 21109 10057 21109 10187 21109 10244 21110 10187 21110 10243 21110 10243 21111 10187 21111 10188 21111 10243 21112 10188 21112 10238 21112 10238 21113 10188 21113 10055 21113 10238 21114 10055 21114 10189 21114 10189 21115 10055 21115 10190 21115 10189 21116 10190 21116 10239 21116 10239 21117 10190 21117 10191 21117 10239 21118 10191 21118 10053 21118 10239 21119 10053 21119 10192 21119 10192 21120 10053 21120 10092 21120 10192 21121 10092 21121 10193 21121 10193 21122 10092 21122 10251 21122 10193 21123 10251 21123 10199 21123 10199 21124 10251 21124 10052 21124 10199 21125 10052 21125 10194 21125 10194 21126 10052 21126 10195 21126 10194 21127 10195 21127 10196 21127 10196 21128 10195 21128 10198 21128 10196 21129 10198 21129 10197 21129 10197 21130 10198 21130 10095 21130 10194 21131 10196 21131 10199 21131 10199 21132 10196 21132 10197 21132 10199 21133 10197 21133 10097 21133 10097 21134 10197 21134 10094 21134 10097 21135 10200 21135 10199 21135 10199 21136 10200 21136 10193 21136 10193 21137 10200 21137 10252 21137 10099 21138 10255 21138 10200 21138 10101 21139 10332 21139 10099 21139 10101 21140 10331 21140 10332 21140 10202 21141 10331 21141 10101 21141 10103 21142 10201 21142 10202 21142 10202 21143 10201 21143 10326 21143 10202 21144 10326 21144 10331 21144 10104 21145 10109 21145 10103 21145 10103 21146 10109 21146 10205 21146 10103 21147 10205 21147 10201 21147 10107 21148 10203 21148 10104 21148 10104 21149 10203 21149 10109 21149 10109 21150 10204 21150 10111 21150 10109 21151 10111 21151 10205 21151 10205 21152 10111 21152 10206 21152 10206 21153 10111 21153 10113 21153 10206 21154 10113 21154 10207 21154 10326 21155 10201 21155 10208 21155 10326 21156 10208 21156 10329 21156 10329 21157 10208 21157 10328 21157 10328 21158 10208 21158 10209 21158 10328 21159 10209 21159 10264 21159 10328 21160 10264 21160 10327 21160 10264 21161 10209 21161 10268 21161 10268 21162 10209 21162 10210 21162 10268 21163 10210 21163 10272 21163 10272 21164 10210 21164 10211 21164 10272 21165 10211 21165 10269 21165 10269 21166 10211 21166 10246 21166 10269 21167 10246 21167 10275 21167 10275 21168 10246 21168 10342 21168 10211 21169 10210 21169 10122 21169 10122 21170 10210 21170 10212 21170 10122 21171 10212 21171 6562 21171 6562 21172 10212 21172 10121 21172 10121 21173 10212 21173 10119 21173 6562 21174 10213 21174 10122 21174 10127 21175 10342 21175 10246 21175 10127 21176 10345 21176 10342 21176 10128 21177 10344 21177 10127 21177 10127 21178 10344 21178 10345 21178 10215 21179 10139 21179 10128 21179 10128 21180 10139 21180 10140 21180 10128 21181 10140 21181 10344 21181 10344 21182 10140 21182 10142 21182 10344 21183 10142 21183 10346 21183 10346 21184 10142 21184 10143 21184 10346 21185 10143 21185 10343 21185 10343 21186 10143 21186 10214 21186 10343 21187 10214 21187 10280 21187 10343 21188 10280 21188 10278 21188 10129 21189 6551 21189 10215 21189 10215 21190 6551 21190 7843 21190 10215 21191 7843 21191 10139 21191 10139 21192 7843 21192 10216 21192 10216 21193 7843 21193 7690 21193 10216 21194 7690 21194 10135 21194 10217 21195 6445 21195 10129 21195 10129 21196 6445 21196 6551 21196 7843 21197 6551 21197 10132 21197 10280 21198 10214 21198 10218 21198 10280 21199 10218 21199 10283 21199 10283 21200 10218 21200 10287 21200 10287 21201 10218 21201 10219 21201 10287 21202 10219 21202 10286 21202 10286 21203 10219 21203 10247 21203 10286 21204 10247 21204 10288 21204 10288 21205 10247 21205 10317 21205 10218 21206 10145 21206 10219 21206 10219 21207 10145 21207 10150 21207 10150 21208 10145 21208 7834 21208 10150 21209 7834 21209 10220 21209 10145 21210 10146 21210 7834 21210 10220 21211 10221 21211 10150 21211 10222 21212 10317 21212 10247 21212 10222 21213 10314 21213 10317 21213 10223 21214 10314 21214 10222 21214 10225 21215 10316 21215 10223 21215 10223 21216 10316 21216 10314 21216 10153 21217 10224 21217 10225 21217 10225 21218 10224 21218 10316 21218 10228 21219 7706 21219 10153 21219 10153 21220 7706 21220 10226 21220 10153 21221 10226 21221 10224 21221 10227 21222 10158 21222 10228 21222 10228 21223 10158 21223 7706 21223 10226 21224 7706 21224 10159 21224 10159 21225 7706 21225 10229 21225 10226 21226 10159 21226 10163 21226 10163 21227 10159 21227 10230 21227 10163 21228 10230 21228 10231 21228 10316 21229 10224 21229 10232 21229 10316 21230 10232 21230 10313 21230 10313 21231 10232 21231 10233 21231 10313 21232 10233 21232 10165 21232 10313 21233 10165 21233 10295 21233 10313 21234 10295 21234 10315 21234 10295 21235 10165 21235 10298 21235 10298 21236 10165 21236 10167 21236 10298 21237 10167 21237 10297 21237 10297 21238 10167 21238 10234 21238 10297 21239 10234 21239 10300 21239 10300 21240 10234 21240 10302 21240 10302 21241 10234 21241 10235 21241 10302 21242 10235 21242 10304 21242 10304 21243 10235 21243 10357 21243 10234 21244 10167 21244 10176 21244 10176 21245 10167 21245 10236 21245 10176 21246 10236 21246 10174 21246 10174 21247 10236 21247 10170 21247 10170 21248 10236 21248 10168 21248 10174 21249 10175 21249 10176 21249 10237 21250 10355 21250 10235 21250 10235 21251 10355 21251 10357 21251 10177 21252 10355 21252 10237 21252 10178 21253 10355 21253 10177 21253 10240 21254 10238 21254 10178 21254 10178 21255 10238 21255 10189 21255 10178 21256 10189 21256 10355 21256 10355 21257 10189 21257 10356 21257 10356 21258 10189 21258 10239 21258 10356 21259 10239 21259 10358 21259 10358 21260 10239 21260 10192 21260 10358 21261 10192 21261 10359 21261 10359 21262 10192 21262 10051 21262 10179 21263 10183 21263 10240 21263 10240 21264 10183 21264 10241 21264 10240 21265 10241 21265 10238 21265 10238 21266 10241 21266 10243 21266 10243 21267 10241 21267 10242 21267 10243 21268 10242 21268 10244 21268 10245 21269 10181 21269 10179 21269 10179 21270 10181 21270 10183 21270 10183 21271 10182 21271 10241 21271 10051 21272 10192 21272 10249 21272 10249 21273 10192 21273 10193 21273 10249 21274 10193 21274 10252 21274 10357 21275 10360 21275 10304 21275 10304 21276 10360 21276 10305 21276 10305 21277 10360 21277 10309 21277 10309 21278 10360 21278 10308 21278 10308 21279 10360 21279 10359 21279 10308 21280 10359 21280 10051 21280 10341 21281 10274 21281 10342 21281 10342 21282 10274 21282 10275 21282 10274 21283 10341 21283 10277 21283 10277 21284 10341 21284 10278 21284 10278 21285 10341 21285 10343 21285 10099 21286 10332 21286 10256 21286 10330 21287 10262 21287 10332 21287 10332 21288 10262 21288 10256 21288 10262 21289 10330 21289 10261 21289 10261 21290 10330 21290 10260 21290 10260 21291 10330 21291 10327 21291 10260 21292 10327 21292 10264 21292 10288 21293 10317 21293 10319 21293 10288 21294 10319 21294 10291 21294 10291 21295 10319 21295 10290 21295 10290 21296 10319 21296 10294 21296 10294 21297 10319 21297 10315 21297 10294 21298 10315 21298 10295 21298 10256 21299 10255 21299 10099 21299 10200 21300 10255 21300 10252 21300 10252 21301 10254 21301 10248 21301 10249 21302 10248 21302 10250 21302 10249 21303 10252 21303 10248 21303 10251 21304 10250 21304 10248 21304 10252 21305 10253 21305 10254 21305 10255 21306 10253 21306 10252 21306 10256 21307 10257 21307 10255 21307 10255 21308 10257 21308 10253 21308 10256 21309 10262 21309 10257 21309 10262 21310 10259 21310 10257 21310 10262 21311 10263 21311 10259 21311 10261 21312 10260 21312 10263 21312 10262 21313 10261 21313 10263 21313 10258 21314 10263 21314 10260 21314 10260 21315 10264 21315 10258 21315 10258 21316 10264 21316 10265 21316 10268 21317 10267 21317 10264 21317 10264 21318 10267 21318 10265 21318 10267 21319 10272 21319 10266 21319 10268 21320 10272 21320 10267 21320 10272 21321 10271 21321 10266 21321 10272 21322 10269 21322 10271 21322 10271 21323 10269 21323 10270 21323 10275 21324 10273 21324 10269 21324 10269 21325 10273 21325 10270 21325 10275 21326 10274 21326 10273 21326 10273 21327 10274 21327 10093 21327 10277 21328 10279 21328 10276 21328 10093 21329 10277 21329 10276 21329 10093 21330 10274 21330 10277 21330 10278 21331 10279 21331 10277 21331 10278 21332 10280 21332 10282 21332 10278 21333 10282 21333 10279 21333 10280 21334 10283 21334 10282 21334 10282 21335 10283 21335 10281 21335 10287 21336 10285 21336 10283 21336 10283 21337 10285 21337 10281 21337 10287 21338 10284 21338 10285 21338 10286 21339 10284 21339 10287 21339 10288 21340 10071 21340 10286 21340 10286 21341 10071 21341 10284 21341 10288 21342 10289 21342 10071 21342 10288 21343 10291 21343 10289 21343 10290 21344 10294 21344 10292 21344 10293 21345 10289 21345 10291 21345 10290 21346 10293 21346 10291 21346 10292 21347 10293 21347 10290 21347 10294 21348 10295 21348 10292 21348 10292 21349 10295 21349 10296 21349 10298 21350 10299 21350 10295 21350 10295 21351 10299 21351 10296 21351 10299 21352 10298 21352 10297 21352 10301 21353 10299 21353 10297 21353 10300 21354 10301 21354 10297 21354 10300 21355 10303 21355 10301 21355 10303 21356 10300 21356 10302 21356 10304 21357 10306 21357 10302 21357 10302 21358 10306 21358 10303 21358 10306 21359 10305 21359 10307 21359 10304 21360 10305 21360 10306 21360 10309 21361 10307 21361 10305 21361 10307 21362 10309 21362 10310 21362 10309 21363 10308 21363 10310 21363 10310 21364 10308 21364 10311 21364 10314 21365 10316 21365 10312 21365 10317 21366 10318 21366 10319 21366 10315 21367 10325 21367 10313 21367 10317 21368 10314 21368 10324 21368 10313 21369 10325 21369 10323 21369 10313 21370 10323 21370 10316 21370 10317 21371 10324 21371 10321 21371 10319 21372 10318 21372 10322 21372 10315 21373 10319 21373 10320 21373 10316 21374 10323 21374 10312 21374 10319 21375 10322 21375 10320 21375 10318 21376 10317 21376 10321 21376 10318 21377 10321 21377 10322 21377 10315 21378 10320 21378 10325 21378 10314 21379 10312 21379 10324 21379 10326 21380 10329 21380 10339 21380 10327 21381 10330 21381 10340 21381 10327 21382 10338 21382 10328 21382 10331 21383 10334 21383 10332 21383 10329 21384 10328 21384 10337 21384 10327 21385 10340 21385 10338 21385 10326 21386 10339 21386 10331 21386 10331 21387 10333 21387 10334 21387 10329 21388 10337 21388 10339 21388 10339 21389 10333 21389 10331 21389 10332 21390 10335 21390 10330 21390 10332 21391 10334 21391 10335 21391 10330 21392 10335 21392 10340 21392 10328 21393 10336 21393 10337 21393 10328 21394 10338 21394 10336 21394 10337 21395 10336 21395 10339 21395 10342 21396 10345 21396 10352 21396 10341 21397 10347 21397 10343 21397 10344 21398 10346 21398 10350 21398 10345 21399 10344 21399 10351 21399 10346 21400 10348 21400 10350 21400 10347 21401 10341 21401 10349 21401 10343 21402 10347 21402 10354 21402 10343 21403 10354 21403 10346 21403 10345 21404 10351 21404 10352 21404 10346 21405 10354 21405 10348 21405 10342 21406 10352 21406 10353 21406 10347 21407 10349 21407 10354 21407 10342 21408 10353 21408 10341 21408 10344 21409 10350 21409 10351 21409 10341 21410 10353 21410 10349 21410 10364 21411 10367 21411 10362 21411 10355 21412 10356 21412 10366 21412 10360 21413 10357 21413 10367 21413 10357 21414 10362 21414 10367 21414 10360 21415 10367 21415 10364 21415 10356 21416 10363 21416 10366 21416 10355 21417 10366 21417 10361 21417 10357 21418 10355 21418 10361 21418 10358 21419 10359 21419 10365 21419 10358 21420 10363 21420 10356 21420 10357 21421 10361 21421 10362 21421 10359 21422 10368 21422 10365 21422 10358 21423 10365 21423 10363 21423 10359 21424 10360 21424 10368 21424 10360 21425 10364 21425 10368 21425 10574 21426 10369 21426 10568 21426 10568 21427 10369 21427 10414 21427 10414 21428 10631 21428 10568 21428 10370 21429 10371 21429 10417 21429 10417 21430 10371 21430 10373 21430 10417 21431 10373 21431 10418 21431 10370 21432 10372 21432 10371 21432 10371 21433 10522 21433 10373 21433 10373 21434 10522 21434 10421 21434 10421 21435 10522 21435 10573 21435 10421 21436 10573 21436 10576 21436 10374 21437 10369 21437 10522 21437 10519 21438 10680 21438 10374 21438 10374 21439 10680 21439 10674 21439 10519 21440 10678 21440 10680 21440 10375 21441 10678 21441 10519 21441 10518 21442 10379 21442 10375 21442 10375 21443 10379 21443 10678 21443 10376 21444 10514 21444 10518 21444 10518 21445 10514 21445 10506 21445 10518 21446 10506 21446 10379 21446 10516 21447 10377 21447 10376 21447 10376 21448 10377 21448 10514 21448 10506 21449 10514 21449 10509 21449 10509 21450 10514 21450 10511 21450 10506 21451 10509 21451 10378 21451 10378 21452 10509 21452 10508 21452 10378 21453 10508 21453 10507 21453 10678 21454 10379 21454 10380 21454 10678 21455 10380 21455 10681 21455 10681 21456 10380 21456 10677 21456 10677 21457 10380 21457 10381 21457 10677 21458 10381 21458 10627 21458 10677 21459 10627 21459 10679 21459 10679 21460 10627 21460 10629 21460 10627 21461 10381 21461 10622 21461 10622 21462 10381 21462 10502 21462 10622 21463 10502 21463 10624 21463 10624 21464 10502 21464 10382 21464 10624 21465 10382 21465 10619 21465 10619 21466 10382 21466 10416 21466 10619 21467 10416 21467 10640 21467 10382 21468 10502 21468 10383 21468 10383 21469 10502 21469 10501 21469 10383 21470 10501 21470 10386 21470 10386 21471 10501 21471 10384 21471 10384 21472 10501 21472 10385 21472 10386 21473 10497 21473 10383 21473 10387 21474 10640 21474 10416 21474 10387 21475 10642 21475 10640 21475 10415 21476 10642 21476 10387 21476 10392 21477 10482 21477 10415 21477 10415 21478 10482 21478 10388 21478 10415 21479 10388 21479 10642 21479 10642 21480 10388 21480 10389 21480 10642 21481 10389 21481 10643 21481 10643 21482 10389 21482 10390 21482 10643 21483 10390 21483 10395 21483 10643 21484 10395 21484 10391 21484 10643 21485 10391 21485 10641 21485 10641 21486 10391 21486 10615 21486 10494 21487 10486 21487 10392 21487 10392 21488 10486 21488 10488 21488 10392 21489 10488 21489 10482 21489 10482 21490 10488 21490 10393 21490 10393 21491 10488 21491 7426 21491 10393 21492 7426 21492 10394 21492 10492 21493 10489 21493 10494 21493 10494 21494 10489 21494 10486 21494 10486 21495 10485 21495 10488 21495 10391 21496 10395 21496 10610 21496 10610 21497 10395 21497 10396 21497 10610 21498 10396 21498 10608 21498 10608 21499 10396 21499 10607 21499 10607 21500 10396 21500 10397 21500 10607 21501 10397 21501 10606 21501 10606 21502 10397 21502 10398 21502 10606 21503 10398 21503 10603 21503 10603 21504 10398 21504 10667 21504 10396 21505 10400 21505 10397 21505 10397 21506 10400 21506 10475 21506 10475 21507 10400 21507 10476 21507 10475 21508 10476 21508 10399 21508 10477 21509 7415 21509 10400 21509 10400 21510 7415 21510 10476 21510 10471 21511 10669 21511 10398 21511 10471 21512 10668 21512 10669 21512 10470 21513 10668 21513 10471 21513 10402 21514 10668 21514 10470 21514 10401 21515 10459 21515 10402 21515 10402 21516 10459 21516 10668 21516 10469 21517 10464 21517 10401 21517 10401 21518 10464 21518 10403 21518 10401 21519 10403 21519 10459 21519 10467 21520 10404 21520 10469 21520 10469 21521 10404 21521 10464 21521 10464 21522 10405 21522 6553 21522 10464 21523 6553 21523 10403 21523 10403 21524 6553 21524 10460 21524 10460 21525 6553 21525 10462 21525 10460 21526 10462 21526 10461 21526 10668 21527 10459 21527 10658 21527 10658 21528 10459 21528 10406 21528 10658 21529 10406 21529 10455 21529 10658 21530 10455 21530 10407 21530 10658 21531 10407 21531 10670 21531 10670 21532 10407 21532 10594 21532 10594 21533 10407 21533 10591 21533 10591 21534 10407 21534 10453 21534 10591 21535 10453 21535 10592 21535 10592 21536 10453 21536 10444 21536 10592 21537 10444 21537 10590 21537 10590 21538 10444 21538 10587 21538 10587 21539 10444 21539 10443 21539 10587 21540 10443 21540 10584 21540 10584 21541 10443 21541 10654 21541 10444 21542 10453 21542 10408 21542 10408 21543 10453 21543 10451 21543 10408 21544 10451 21544 6563 21544 6563 21545 10451 21545 10447 21545 10447 21546 10451 21546 10449 21546 6563 21547 10445 21547 10408 21547 10441 21548 10650 21548 10443 21548 10443 21549 10650 21549 10654 21549 10409 21550 10655 21550 10441 21550 10441 21551 10655 21551 10650 21551 10410 21552 10655 21552 10409 21552 10439 21553 10428 21553 10410 21553 10410 21554 10428 21554 10427 21554 10410 21555 10427 21555 10655 21555 10655 21556 10427 21556 10652 21556 10652 21557 10427 21557 10423 21557 10652 21558 10423 21558 10651 21558 10651 21559 10423 21559 10422 21559 10651 21560 10422 21560 10656 21560 10656 21561 10422 21561 10578 21561 10438 21562 6645 21562 10439 21562 10439 21563 6645 21563 10433 21563 10439 21564 10433 21564 10428 21564 10428 21565 10433 21565 10429 21565 10429 21566 10433 21566 10411 21566 10429 21567 10411 21567 10412 21567 10413 21568 10436 21568 10438 21568 10438 21569 10436 21569 6645 21569 10578 21570 10422 21570 10421 21570 10578 21571 10421 21571 10576 21571 10374 21572 10674 21572 10369 21572 10674 21573 10414 21573 10369 21573 10414 21574 10674 21574 10679 21574 10414 21575 10679 21575 10630 21575 10630 21576 10679 21576 10629 21576 10398 21577 10669 21577 10667 21577 10603 21578 10667 21578 10602 21578 10602 21579 10667 21579 10600 21579 10600 21580 10667 21580 10599 21580 10599 21581 10667 21581 10670 21581 10599 21582 10670 21582 10594 21582 10584 21583 10654 21583 10657 21583 10584 21584 10657 21584 10585 21584 10585 21585 10657 21585 10580 21585 10580 21586 10657 21586 10578 21586 10578 21587 10657 21587 10656 21587 10638 21588 10612 21588 10640 21588 10640 21589 10612 21589 10619 21589 10612 21590 10638 21590 10616 21590 10616 21591 10638 21591 10641 21591 10616 21592 10641 21592 10615 21592 10522 21593 10369 21593 10573 21593 10525 21594 10417 21594 10419 21594 10419 21595 10417 21595 10418 21595 10419 21596 10418 21596 10526 21596 10526 21597 10418 21597 10373 21597 10526 21598 10373 21598 10420 21598 10420 21599 10373 21599 10421 21599 10420 21600 10421 21600 10529 21600 10529 21601 10421 21601 10422 21601 10529 21602 10422 21602 10424 21602 10424 21603 10422 21603 10423 21603 10424 21604 10423 21604 10425 21604 10425 21605 10423 21605 10426 21605 10426 21606 10423 21606 10427 21606 10426 21607 10427 21607 10530 21607 10530 21608 10427 21608 10428 21608 10530 21609 10428 21609 10532 21609 10532 21610 10428 21610 10429 21610 10532 21611 10429 21611 10531 21611 10531 21612 10429 21612 10412 21612 10531 21613 10412 21613 10430 21613 10430 21614 10412 21614 10411 21614 10430 21615 10411 21615 10434 21615 10434 21616 10411 21616 10433 21616 10431 21617 6645 21617 10432 21617 10433 21618 10431 21618 10434 21618 10433 21619 6645 21619 10431 21619 10432 21620 6645 21620 10435 21620 10435 21621 6645 21621 10436 21621 10435 21622 10436 21622 10437 21622 10437 21623 10436 21623 10413 21623 10437 21624 10413 21624 10534 21624 10534 21625 10413 21625 10438 21625 10534 21626 10438 21626 10533 21626 10533 21627 10438 21627 10439 21627 10533 21628 10439 21628 10535 21628 10535 21629 10439 21629 10410 21629 10535 21630 10410 21630 10440 21630 10440 21631 10410 21631 10409 21631 10440 21632 10409 21632 10441 21632 10440 21633 10441 21633 10442 21633 10442 21634 10441 21634 10443 21634 10442 21635 10443 21635 10536 21635 10536 21636 10443 21636 10444 21636 10536 21637 10444 21637 10538 21637 10538 21638 10444 21638 10408 21638 10538 21639 10408 21639 10539 21639 10539 21640 10408 21640 10445 21640 10539 21641 10445 21641 10446 21641 10446 21642 10445 21642 6563 21642 10446 21643 6563 21643 10537 21643 10537 21644 6563 21644 10447 21644 10537 21645 10447 21645 10448 21645 10448 21646 10447 21646 10449 21646 10448 21647 10449 21647 10450 21647 10450 21648 10449 21648 10451 21648 10450 21649 10451 21649 10452 21649 10452 21650 10451 21650 10453 21650 10452 21651 10453 21651 10454 21651 10454 21652 10453 21652 10407 21652 10454 21653 10407 21653 10456 21653 10456 21654 10407 21654 10455 21654 10456 21655 10455 21655 10406 21655 10456 21656 10406 21656 10457 21656 10457 21657 10406 21657 10459 21657 10457 21658 10459 21658 10458 21658 10458 21659 10459 21659 10403 21659 10458 21660 10403 21660 10542 21660 10542 21661 10403 21661 10460 21661 10542 21662 10460 21662 10545 21662 10545 21663 10460 21663 10461 21663 10545 21664 10461 21664 3147 21664 3147 21665 10461 21665 10462 21665 3147 21666 10462 21666 3144 21666 3144 21667 10462 21667 6553 21667 10463 21668 3144 21668 6553 21668 10405 21669 10464 21669 10544 21669 10463 21670 10405 21670 10544 21670 10405 21671 10463 21671 6553 21671 10544 21672 10464 21672 10465 21672 10465 21673 10464 21673 10404 21673 10465 21674 10404 21674 10466 21674 10466 21675 10404 21675 10467 21675 10466 21676 10467 21676 10468 21676 10468 21677 10467 21677 10469 21677 10468 21678 10469 21678 10543 21678 10543 21679 10469 21679 10401 21679 10543 21680 10401 21680 10540 21680 10540 21681 10401 21681 10402 21681 10540 21682 10402 21682 10541 21682 10541 21683 10402 21683 10470 21683 10541 21684 10470 21684 10471 21684 10541 21685 10471 21685 10472 21685 10472 21686 10471 21686 10398 21686 10472 21687 10398 21687 10473 21687 10473 21688 10398 21688 10397 21688 10473 21689 10397 21689 10547 21689 10547 21690 10397 21690 10475 21690 10547 21691 10475 21691 10474 21691 10474 21692 10475 21692 10399 21692 10474 21693 10399 21693 10549 21693 10549 21694 10399 21694 10476 21694 10549 21695 10476 21695 10548 21695 10548 21696 10476 21696 7415 21696 10548 21697 7415 21697 10478 21697 10478 21698 7415 21698 10477 21698 10478 21699 10477 21699 10479 21699 10479 21700 10477 21700 10400 21700 10479 21701 10400 21701 10546 21701 10546 21702 10400 21702 10396 21702 10546 21703 10396 21703 10550 21703 10550 21704 10396 21704 10395 21704 10550 21705 10395 21705 10480 21705 10480 21706 10395 21706 10390 21706 10480 21707 10390 21707 10389 21707 10480 21708 10389 21708 10481 21708 10481 21709 10389 21709 10388 21709 10481 21710 10388 21710 10551 21710 10551 21711 10388 21711 10482 21711 10551 21712 10482 21712 10555 21712 10555 21713 10482 21713 10393 21713 10555 21714 10393 21714 10554 21714 10554 21715 10393 21715 10394 21715 10554 21716 10394 21716 10483 21716 10483 21717 10394 21717 7426 21717 10483 21718 7426 21718 10484 21718 10484 21719 7426 21719 10488 21719 10487 21720 10485 21720 10486 21720 10485 21721 10487 21721 10488 21721 10487 21722 10484 21722 10488 21722 10487 21723 10486 21723 10490 21723 10490 21724 10486 21724 10489 21724 10490 21725 10489 21725 10491 21725 10491 21726 10489 21726 10492 21726 10491 21727 10492 21727 10493 21727 10493 21728 10492 21728 10494 21728 10493 21729 10494 21729 10552 21729 10552 21730 10494 21730 10392 21730 10552 21731 10392 21731 10553 21731 10553 21732 10392 21732 10415 21732 10553 21733 10415 21733 10556 21733 10556 21734 10415 21734 10387 21734 10556 21735 10387 21735 10557 21735 10557 21736 10387 21736 10558 21736 10558 21737 10387 21737 10416 21737 10558 21738 10416 21738 10495 21738 10495 21739 10416 21739 10382 21739 10495 21740 10382 21740 10561 21740 10561 21741 10382 21741 10383 21741 10561 21742 10383 21742 10496 21742 10496 21743 10383 21743 10497 21743 10496 21744 10497 21744 10562 21744 10562 21745 10497 21745 10386 21745 10562 21746 10386 21746 10498 21746 10498 21747 10386 21747 10384 21747 10498 21748 10384 21748 10499 21748 10499 21749 10384 21749 10385 21749 10499 21750 10385 21750 10500 21750 10500 21751 10385 21751 10501 21751 10500 21752 10501 21752 10559 21752 10559 21753 10501 21753 10502 21753 10559 21754 10502 21754 10560 21754 10560 21755 10502 21755 10381 21755 10560 21756 10381 21756 10563 21756 10563 21757 10381 21757 10380 21757 10563 21758 10380 21758 10503 21758 10503 21759 10380 21759 10504 21759 10504 21760 10380 21760 10379 21760 10504 21761 10379 21761 10505 21761 10505 21762 10379 21762 10506 21762 10505 21763 10506 21763 10571 21763 10571 21764 10506 21764 10378 21764 10571 21765 10378 21765 10570 21765 10570 21766 10378 21766 10507 21766 10570 21767 10507 21767 10572 21767 10572 21768 10507 21768 10508 21768 10572 21769 10508 21769 10510 21769 10510 21770 10508 21770 10509 21770 10510 21771 10509 21771 10512 21771 10512 21772 10509 21772 10511 21772 10512 21773 10511 21773 10513 21773 10513 21774 10511 21774 10514 21774 10513 21775 10514 21775 10569 21775 10569 21776 10514 21776 10377 21776 10569 21777 10377 21777 10515 21777 10515 21778 10377 21778 10516 21778 10515 21779 10516 21779 10517 21779 10517 21780 10516 21780 10376 21780 10517 21781 10376 21781 10565 21781 10565 21782 10376 21782 10518 21782 10565 21783 10518 21783 10566 21783 10566 21784 10518 21784 10375 21784 10566 21785 10375 21785 10520 21785 10520 21786 10375 21786 10519 21786 10520 21787 10519 21787 10567 21787 10567 21788 10519 21788 10521 21788 10521 21789 10519 21789 10374 21789 10521 21790 10374 21790 10528 21790 10528 21791 10374 21791 10522 21791 10528 21792 10522 21792 10527 21792 10527 21793 10522 21793 10371 21793 10527 21794 10371 21794 10523 21794 10523 21795 10371 21795 10372 21795 10523 21796 10372 21796 10524 21796 10524 21797 10372 21797 10370 21797 10524 21798 10370 21798 10525 21798 10525 21799 10370 21799 10417 21799 10523 21800 10524 21800 10527 21800 10527 21801 10524 21801 10525 21801 10527 21802 10525 21802 10526 21802 10526 21803 10525 21803 10419 21803 10526 21804 10420 21804 10527 21804 10527 21805 10420 21805 10528 21805 10528 21806 10420 21806 10575 21806 10529 21807 10577 21807 10420 21807 10424 21808 10648 21808 10529 21808 10529 21809 10648 21809 10647 21809 10425 21810 10648 21810 10424 21810 10426 21811 10648 21811 10425 21811 10530 21812 10535 21812 10426 21812 10426 21813 10535 21813 10649 21813 10532 21814 10434 21814 10530 21814 10530 21815 10434 21815 10533 21815 10530 21816 10533 21816 10535 21816 10531 21817 10430 21817 10532 21817 10532 21818 10430 21818 10434 21818 10434 21819 10431 21819 10432 21819 10434 21820 10432 21820 10533 21820 10533 21821 10432 21821 10534 21821 10534 21822 10432 21822 10435 21822 10534 21823 10435 21823 10437 21823 10649 21824 10535 21824 10440 21824 10649 21825 10440 21825 10645 21825 10645 21826 10440 21826 10442 21826 10645 21827 10442 21827 10586 21827 10645 21828 10586 21828 10644 21828 10644 21829 10586 21829 10583 21829 10586 21830 10442 21830 10588 21830 10588 21831 10442 21831 10536 21831 10588 21832 10536 21832 10589 21832 10589 21833 10536 21833 10452 21833 10589 21834 10452 21834 10593 21834 10593 21835 10452 21835 10454 21835 10593 21836 10454 21836 10595 21836 10595 21837 10454 21837 10666 21837 10452 21838 10536 21838 10450 21838 10450 21839 10536 21839 10538 21839 10450 21840 10538 21840 10537 21840 10537 21841 10538 21841 10446 21841 10446 21842 10538 21842 10539 21842 10537 21843 10448 21843 10450 21843 10456 21844 10660 21844 10454 21844 10456 21845 10663 21845 10660 21845 10457 21846 10663 21846 10456 21846 10458 21847 10543 21847 10457 21847 10457 21848 10543 21848 10540 21848 10457 21849 10540 21849 10663 21849 10663 21850 10540 21850 10659 21850 10659 21851 10540 21851 10541 21851 10659 21852 10541 21852 10664 21852 10664 21853 10541 21853 10661 21853 10661 21854 10541 21854 10472 21854 10661 21855 10472 21855 10662 21855 10662 21856 10472 21856 10601 21856 10662 21857 10601 21857 10596 21857 10542 21858 3144 21858 10458 21858 10458 21859 3144 21859 10544 21859 10458 21860 10544 21860 10543 21860 10543 21861 10544 21861 10468 21861 10468 21862 10544 21862 10465 21862 10468 21863 10465 21863 10466 21863 10545 21864 3147 21864 10542 21864 10542 21865 3147 21865 3144 21865 3144 21866 10463 21866 10544 21866 10601 21867 10472 21867 10605 21867 10605 21868 10472 21868 10473 21868 10605 21869 10473 21869 10604 21869 10604 21870 10473 21870 10609 21870 10609 21871 10473 21871 10546 21871 10609 21872 10546 21872 10611 21872 10611 21873 10546 21873 10550 21873 10611 21874 10550 21874 10637 21874 10473 21875 10547 21875 10546 21875 10546 21876 10547 21876 10479 21876 10479 21877 10547 21877 10549 21877 10479 21878 10549 21878 10548 21878 10547 21879 10474 21879 10549 21879 10548 21880 10478 21880 10479 21880 10480 21881 10632 21881 10550 21881 10550 21882 10632 21882 10637 21882 10480 21883 10635 21883 10632 21883 10481 21884 10635 21884 10480 21884 10551 21885 10553 21885 10481 21885 10481 21886 10553 21886 10635 21886 10555 21887 10484 21887 10551 21887 10551 21888 10484 21888 10552 21888 10551 21889 10552 21889 10553 21889 10554 21890 10483 21890 10555 21890 10555 21891 10483 21891 10484 21891 10552 21892 10484 21892 10487 21892 10552 21893 10487 21893 10493 21893 10493 21894 10487 21894 10490 21894 10493 21895 10490 21895 10491 21895 10635 21896 10553 21896 10556 21896 10635 21897 10556 21897 10634 21897 10634 21898 10556 21898 10557 21898 10634 21899 10557 21899 10558 21899 10634 21900 10558 21900 10633 21900 10633 21901 10558 21901 10618 21901 10618 21902 10558 21902 10620 21902 10620 21903 10558 21903 10495 21903 10620 21904 10495 21904 10621 21904 10621 21905 10495 21905 10559 21905 10621 21906 10559 21906 10623 21906 10623 21907 10559 21907 10625 21907 10625 21908 10559 21908 10560 21908 10625 21909 10560 21909 10626 21909 10626 21910 10560 21910 10675 21910 10559 21911 10495 21911 10500 21911 10500 21912 10495 21912 10561 21912 10500 21913 10561 21913 10498 21913 10498 21914 10561 21914 10562 21914 10562 21915 10561 21915 10496 21915 10498 21916 10499 21916 10500 21916 10563 21917 10564 21917 10560 21917 10560 21918 10564 21918 10675 21918 10503 21919 10672 21919 10563 21919 10563 21920 10672 21920 10564 21920 10504 21921 10672 21921 10503 21921 10505 21922 10565 21922 10504 21922 10504 21923 10565 21923 10566 21923 10504 21924 10566 21924 10672 21924 10672 21925 10566 21925 10673 21925 10673 21926 10566 21926 10520 21926 10673 21927 10520 21927 10671 21927 10671 21928 10520 21928 10567 21928 10671 21929 10567 21929 10521 21929 10671 21930 10521 21930 10568 21930 10671 21931 10568 21931 10676 21931 10571 21932 10510 21932 10505 21932 10505 21933 10510 21933 10513 21933 10505 21934 10513 21934 10565 21934 10565 21935 10513 21935 10517 21935 10517 21936 10513 21936 10569 21936 10517 21937 10569 21937 10515 21937 10570 21938 10572 21938 10571 21938 10571 21939 10572 21939 10510 21939 10510 21940 10512 21940 10513 21940 10568 21941 10521 21941 10574 21941 10574 21942 10521 21942 10528 21942 10574 21943 10528 21943 10575 21943 10626 21944 10675 21944 10628 21944 10628 21945 10675 21945 10676 21945 10628 21946 10676 21946 10631 21946 10631 21947 10676 21947 10568 21947 10595 21948 10666 21948 10598 21948 10598 21949 10666 21949 10662 21949 10598 21950 10662 21950 10597 21950 10597 21951 10662 21951 10596 21951 10660 21952 10666 21952 10454 21952 10529 21953 10647 21953 10579 21953 10646 21954 10579 21954 10647 21954 10579 21955 10646 21955 10581 21955 10581 21956 10646 21956 10582 21956 10582 21957 10646 21957 10644 21957 10582 21958 10644 21958 10583 21958 10649 21959 10648 21959 10426 21959 10611 21960 10637 21960 10614 21960 10614 21961 10637 21961 10636 21961 10614 21962 10636 21962 10613 21962 10613 21963 10636 21963 10617 21963 10617 21964 10636 21964 10633 21964 10617 21965 10633 21965 10618 21965 10579 21966 10577 21966 10529 21966 10420 21967 10577 21967 10575 21967 10575 21968 10576 21968 10573 21968 10369 21969 10574 21969 10573 21969 10574 21970 10575 21970 10573 21970 10576 21971 10577 21971 10578 21971 10576 21972 10575 21972 10577 21972 10579 21973 10578 21973 10577 21973 10579 21974 10581 21974 10580 21974 10579 21975 10580 21975 10578 21975 10581 21976 10582 21976 10580 21976 10583 21977 10585 21977 10582 21977 10585 21978 10580 21978 10582 21978 10586 21979 10584 21979 10583 21979 10585 21980 10583 21980 10584 21980 10588 21981 10587 21981 10586 21981 10586 21982 10587 21982 10584 21982 10589 21983 10590 21983 10588 21983 10590 21984 10587 21984 10588 21984 10589 21985 10592 21985 10590 21985 10593 21986 10591 21986 10592 21986 10592 21987 10589 21987 10593 21987 10595 21988 10594 21988 10593 21988 10593 21989 10594 21989 10591 21989 10598 21990 10599 21990 10595 21990 10594 21991 10595 21991 10599 21991 10597 21992 10600 21992 10599 21992 10600 21993 10597 21993 10602 21993 10598 21994 10597 21994 10599 21994 10602 21995 10597 21995 10596 21995 10596 21996 10601 21996 10602 21996 10603 21997 10602 21997 10601 21997 10605 21998 10606 21998 10601 21998 10601 21999 10606 21999 10603 21999 10605 22000 10604 22000 10606 22000 10606 22001 10604 22001 10607 22001 10609 22002 10608 22002 10604 22002 10604 22003 10608 22003 10607 22003 10610 22004 10609 22004 10611 22004 10610 22005 10608 22005 10609 22005 10611 22006 10391 22006 10610 22006 10611 22007 10614 22007 10391 22007 10614 22008 10615 22008 10391 22008 10612 22009 10616 22009 10617 22009 10617 22010 10616 22010 10613 22010 10615 22011 10614 22011 10616 22011 10614 22012 10613 22012 10616 22012 10612 22013 10618 22013 10619 22013 10617 22014 10618 22014 10612 22014 10620 22015 10619 22015 10618 22015 10619 22016 10620 22016 10624 22016 10621 22017 10624 22017 10620 22017 10623 22018 10624 22018 10621 22018 10624 22019 10623 22019 10622 22019 10625 22020 10622 22020 10623 22020 10626 22021 10627 22021 10625 22021 10625 22022 10627 22022 10622 22022 10626 22023 10628 22023 10627 22023 10628 22024 10629 22024 10627 22024 10630 22025 10628 22025 10631 22025 10630 22026 10631 22026 10414 22026 10629 22027 10628 22027 10630 22027 10636 22028 10638 22028 10633 22028 10635 22029 10639 22029 10632 22029 10632 22030 10643 22030 10637 22030 10635 22031 10642 22031 10639 22031 10636 22032 10641 22032 10638 22032 10635 22033 10634 22033 10642 22033 10636 22034 10637 22034 10641 22034 10633 22035 10638 22035 10640 22035 10632 22036 10639 22036 10643 22036 10634 22037 10633 22037 10640 22037 10634 22038 10640 22038 10642 22038 10637 22039 10643 22039 10641 22039 10639 22040 10642 22040 10643 22040 10645 22041 10644 22041 10654 22041 10647 22042 10656 22042 10646 22042 10644 22043 10646 22043 10653 22043 10646 22044 10657 22044 10653 22044 10647 22045 10648 22045 10651 22045 10644 22046 10653 22046 10654 22046 10645 22047 10654 22047 10650 22047 10646 22048 10656 22048 10657 22048 10647 22049 10651 22049 10656 22049 10645 22050 10650 22050 10649 22050 10649 22051 10655 22051 10648 22051 10649 22052 10650 22052 10655 22052 10648 22053 10655 22053 10652 22053 10648 22054 10652 22054 10651 22054 10653 22055 10657 22055 10654 22055 10670 22056 10665 22056 10658 22056 10661 22057 10669 22057 10664 22057 10666 22058 10667 22058 10662 22058 10664 22059 10669 22059 10659 22059 10662 22060 10667 22060 10661 22060 10663 22061 10659 22061 10668 22061 10660 22062 10663 22062 10665 22062 10666 22063 10670 22063 10667 22063 10663 22064 10658 22064 10665 22064 10660 22065 10665 22065 10666 22065 10666 22066 10665 22066 10670 22066 10661 22067 10667 22067 10669 22067 10659 22068 10669 22068 10668 22068 10663 22069 10668 22069 10658 22069 10676 22070 10675 22070 10679 22070 10671 22071 10680 22071 10673 22071 10671 22072 10676 22072 10674 22072 10675 22073 10564 22073 10677 22073 10564 22074 10672 22074 10681 22074 10673 22075 10680 22075 10678 22075 10564 22076 10681 22076 10677 22076 10672 22077 10673 22077 10678 22077 10672 22078 10678 22078 10681 22078 10671 22079 10674 22079 10680 22079 10675 22080 10677 22080 10679 22080 10676 22081 10679 22081 10674 22081 10928 22082 10930 22082 10682 22082 10682 22083 10930 22083 10684 22083 11005 22084 10682 22084 10683 22084 10682 22085 10684 22085 10683 22085 10877 22086 10873 22086 10737 22086 10737 22087 10873 22087 10687 22087 10737 22088 10687 22088 10685 22088 10877 22089 10874 22089 10873 22089 10873 22090 10686 22090 10687 22090 10687 22091 10686 22091 10740 22091 10740 22092 10686 22092 10931 22092 10740 22093 10931 22093 10932 22093 10871 22094 10930 22094 10686 22094 10686 22095 10930 22095 10931 22095 10870 22096 11094 22096 10871 22096 10871 22097 11094 22097 11096 22097 10688 22098 11094 22098 10870 22098 10869 22099 11094 22099 10688 22099 10689 22100 11097 22100 10869 22100 10869 22101 11097 22101 11094 22101 10690 22102 10852 22102 10689 22102 10689 22103 10852 22103 11097 22103 10691 22104 10863 22104 10690 22104 10690 22105 10863 22105 10692 22105 10690 22106 10692 22106 10852 22106 10867 22107 10865 22107 10691 22107 10691 22108 10865 22108 10863 22108 10692 22109 10863 22109 10857 22109 10857 22110 10863 22110 10860 22110 10692 22111 10857 22111 10693 22111 10693 22112 10857 22112 10694 22112 10693 22113 10694 22113 10695 22113 11097 22114 10852 22114 10696 22114 11097 22115 10696 22115 10697 22115 11097 22116 10697 22116 11098 22116 11098 22117 10697 22117 10698 22117 11098 22118 10698 22118 10699 22118 11098 22119 10699 22119 11095 22119 11095 22120 10699 22120 10998 22120 11095 22121 10998 22121 11099 22121 10998 22122 10699 22122 10993 22122 10993 22123 10699 22123 10846 22123 10993 22124 10846 22124 10700 22124 10700 22125 10846 22125 10837 22125 10700 22126 10837 22126 10989 22126 10989 22127 10837 22127 10990 22127 10990 22128 10837 22128 10701 22128 10990 22129 10701 22129 10988 22129 10988 22130 10701 22130 11026 22130 10837 22131 10846 22131 10838 22131 10838 22132 10846 22132 10845 22132 10838 22133 10845 22133 10840 22133 10840 22134 10845 22134 10842 22134 10842 22135 10845 22135 10844 22135 10840 22136 10839 22136 10838 22136 10702 22137 11028 22137 10701 22137 10703 22138 11028 22138 10702 22138 10833 22139 11028 22139 10703 22139 10831 22140 11022 22140 10833 22140 10833 22141 11022 22141 11028 22141 10708 22142 10816 22142 10831 22142 10831 22143 10816 22143 10814 22143 10831 22144 10814 22144 11022 22144 11022 22145 10814 22145 10704 22145 11022 22146 10704 22146 11029 22146 11029 22147 10704 22147 10705 22147 11029 22148 10705 22148 10706 22148 11029 22149 10706 22149 11030 22149 11030 22150 10706 22150 10707 22150 11030 22151 10707 22151 11027 22151 11027 22152 10707 22152 10978 22152 11027 22153 10978 22153 10981 22153 10830 22154 10820 22154 10708 22154 10708 22155 10820 22155 10827 22155 10708 22156 10827 22156 10816 22156 10816 22157 10827 22157 10817 22157 10817 22158 10827 22158 10709 22158 10817 22159 10709 22159 10710 22159 10829 22160 10828 22160 10830 22160 10830 22161 10828 22161 10820 22161 10820 22162 10823 22162 10827 22162 10978 22163 10707 22163 10712 22163 10712 22164 10707 22164 10711 22164 10712 22165 10711 22165 10977 22165 10977 22166 10711 22166 10973 22166 10973 22167 10711 22167 10713 22167 10973 22168 10713 22168 10974 22168 10974 22169 10713 22169 10803 22169 10974 22170 10803 22170 10734 22170 10734 22171 10803 22171 11066 22171 10734 22172 11066 22172 11075 22172 10711 22173 10714 22173 10713 22173 10713 22174 10714 22174 10715 22174 10715 22175 10714 22175 1938 22175 10715 22176 1938 22176 10806 22176 10808 22177 10716 22177 10714 22177 10714 22178 10716 22178 1938 22178 10717 22179 11066 22179 10803 22179 10800 22180 10718 22180 10717 22180 10717 22181 10718 22181 11066 22181 10719 22182 10718 22182 10800 22182 10799 22183 10718 22183 10719 22183 10797 22184 10722 22184 10799 22184 10799 22185 10722 22185 11072 22185 10799 22186 11072 22186 10718 22186 10796 22187 2065 22187 10797 22187 10797 22188 2065 22188 10720 22188 10797 22189 10720 22189 10722 22189 10721 22190 2073 22190 10796 22190 10796 22191 2073 22191 2065 22191 2065 22192 10792 22192 10789 22192 2065 22193 10789 22193 10720 22193 10720 22194 10789 22194 10785 22194 10785 22195 10789 22195 3584 22195 10785 22196 3584 22196 10788 22196 11072 22197 10722 22197 10723 22197 11072 22198 10723 22198 10724 22198 11072 22199 10724 22199 11054 22199 11054 22200 10724 22200 10725 22200 11054 22201 10725 22201 10727 22201 11054 22202 10727 22202 11073 22202 11073 22203 10727 22203 10726 22203 11073 22204 10726 22204 11074 22204 10726 22205 10727 22205 10957 22205 10957 22206 10727 22206 10779 22206 10957 22207 10779 22207 10954 22207 10954 22208 10779 22208 10770 22208 10954 22209 10770 22209 10953 22209 10953 22210 10770 22210 10952 22210 10952 22211 10770 22211 10735 22211 10952 22212 10735 22212 10948 22212 10948 22213 10735 22213 11051 22213 10770 22214 10779 22214 10728 22214 10728 22215 10779 22215 10777 22215 10728 22216 10777 22216 10774 22216 10774 22217 10777 22217 3590 22217 3590 22218 10777 22218 10775 22218 10774 22219 10772 22219 10728 22219 10768 22220 11052 22220 10735 22220 10735 22221 11052 22221 11051 22221 10765 22222 11052 22222 10768 22222 10729 22223 11045 22223 10765 22223 10765 22224 11045 22224 11052 22224 10763 22225 11045 22225 10729 22225 10762 22226 10746 22226 10763 22226 10763 22227 10746 22227 10744 22227 10763 22228 10744 22228 11045 22228 11045 22229 10744 22229 11047 22229 11047 22230 10744 22230 10730 22230 11047 22231 10730 22231 10731 22231 11047 22232 10731 22232 11048 22232 11048 22233 10731 22233 10741 22233 11048 22234 10741 22234 10732 22234 11048 22235 10732 22235 11049 22235 11049 22236 10732 22236 10936 22236 11049 22237 10936 22237 10946 22237 10761 22238 3606 22238 10762 22238 10762 22239 3606 22239 10753 22239 10762 22240 10753 22240 10746 22240 10746 22241 10753 22241 10747 22241 10747 22242 10753 22242 10750 22242 10747 22243 10750 22243 10748 22243 10760 22244 10733 22244 10761 22244 10761 22245 10733 22245 3606 22245 3606 22246 10757 22246 10753 22246 10936 22247 10732 22247 10934 22247 10934 22248 10732 22248 10740 22248 10934 22249 10740 22249 10932 22249 10871 22250 11096 22250 10684 22250 11100 22251 10684 22251 11096 22251 10684 22252 11100 22252 10683 22252 10683 22253 11100 22253 10999 22253 10999 22254 11100 22254 11003 22254 11003 22255 11100 22255 11002 22255 11002 22256 11100 22256 10996 22256 10996 22257 11100 22257 11099 22257 10996 22258 11099 22258 10998 22258 10734 22259 11075 22259 10965 22259 10965 22260 11075 22260 10968 22260 10968 22261 11075 22261 10962 22261 10962 22262 11075 22262 11074 22262 10962 22263 11074 22263 10961 22263 10961 22264 11074 22264 10726 22264 10948 22265 11051 22265 10941 22265 10941 22266 11051 22266 11050 22266 10941 22267 11050 22267 10943 22267 10943 22268 11050 22268 11049 22268 10943 22269 11049 22269 10945 22269 10945 22270 11049 22270 10946 22270 10988 22271 11024 22271 10986 22271 10986 22272 11024 22272 10736 22272 10736 22273 11024 22273 10985 22273 10985 22274 11024 22274 10981 22274 10981 22275 11024 22275 11027 22275 11028 22276 11026 22276 10701 22276 11026 22277 11024 22277 10988 22277 10684 22278 10930 22278 10871 22278 10879 22279 10737 22279 10738 22279 10738 22280 10737 22280 10685 22280 10738 22281 10685 22281 10739 22281 10739 22282 10685 22282 10687 22282 10739 22283 10687 22283 10927 22283 10927 22284 10687 22284 10740 22284 10927 22285 10740 22285 10925 22285 10925 22286 10740 22286 10732 22286 10925 22287 10732 22287 10880 22287 10880 22288 10732 22288 10741 22288 10880 22289 10741 22289 10881 22289 10881 22290 10741 22290 10731 22290 10881 22291 10731 22291 10742 22291 10742 22292 10731 22292 10730 22292 10742 22293 10730 22293 10882 22293 10882 22294 10730 22294 10744 22294 10882 22295 10744 22295 10743 22295 10743 22296 10744 22296 10746 22296 10743 22297 10746 22297 10745 22297 10745 22298 10746 22298 10747 22298 10745 22299 10747 22299 10884 22299 10884 22300 10747 22300 10748 22300 10884 22301 10748 22301 10749 22301 10749 22302 10748 22302 10750 22302 10749 22303 10750 22303 10755 22303 10755 22304 10750 22304 10753 22304 10754 22305 10756 22305 10752 22305 3606 22306 10752 22306 10756 22306 10756 22307 10753 22307 10757 22307 3606 22308 10756 22308 10757 22308 10753 22309 10754 22309 10755 22309 6992 22310 10752 22310 3606 22310 10751 22311 10754 22311 10752 22311 10752 22312 6992 22312 10751 22312 10754 22313 10751 22313 10755 22313 10756 22314 10754 22314 10753 22314 6992 22315 3606 22315 10758 22315 10758 22316 3606 22316 10733 22316 10758 22317 10733 22317 10759 22317 10759 22318 10733 22318 10760 22318 10759 22319 10760 22319 10885 22319 10885 22320 10760 22320 10761 22320 10885 22321 10761 22321 10883 22321 10883 22322 10761 22322 10762 22322 10883 22323 10762 22323 10886 22323 10886 22324 10762 22324 10763 22324 10886 22325 10763 22325 10764 22325 10764 22326 10763 22326 10729 22326 10764 22327 10729 22327 10766 22327 10766 22328 10729 22328 10765 22328 10766 22329 10765 22329 10767 22329 10767 22330 10765 22330 10768 22330 10767 22331 10768 22331 10887 22331 10887 22332 10768 22332 10735 22332 10887 22333 10735 22333 10769 22333 10769 22334 10735 22334 10770 22334 10769 22335 10770 22335 10771 22335 10771 22336 10770 22336 10728 22336 10771 22337 10728 22337 10773 22337 10773 22338 10728 22338 10772 22338 10773 22339 10772 22339 10892 22339 10892 22340 10772 22340 10774 22340 10892 22341 10774 22341 10891 22341 10891 22342 10774 22342 3590 22342 10891 22343 3590 22343 10893 22343 10893 22344 3590 22344 10775 22344 10893 22345 10775 22345 10890 22345 10890 22346 10775 22346 10777 22346 10890 22347 10777 22347 10776 22347 10776 22348 10777 22348 10779 22348 10776 22349 10779 22349 10778 22349 10778 22350 10779 22350 10727 22350 10778 22351 10727 22351 10780 22351 10780 22352 10727 22352 10725 22352 10780 22353 10725 22353 10781 22353 10781 22354 10725 22354 10724 22354 10781 22355 10724 22355 10894 22355 10894 22356 10724 22356 10723 22356 10894 22357 10723 22357 10782 22357 10782 22358 10723 22358 10722 22358 10782 22359 10722 22359 10783 22359 10783 22360 10722 22360 10720 22360 10783 22361 10720 22361 10784 22361 10784 22362 10720 22362 10785 22362 10784 22363 10785 22363 10786 22363 10786 22364 10785 22364 10788 22364 10786 22365 10788 22365 10787 22365 10787 22366 10788 22366 3584 22366 10787 22367 3584 22367 10791 22367 10791 22368 3584 22368 10789 22368 10791 22369 10789 22369 10794 22369 10793 22370 10792 22370 2065 22370 10790 22371 10794 22371 10792 22371 10792 22372 10794 22372 10789 22372 10790 22373 10792 22373 10793 22373 10791 22374 10794 22374 10790 22374 10793 22375 2065 22375 10898 22375 10898 22376 2065 22376 2073 22376 10898 22377 2073 22377 10899 22377 10899 22378 2073 22378 10721 22378 10899 22379 10721 22379 10897 22379 10897 22380 10721 22380 10796 22380 10897 22381 10796 22381 10795 22381 10795 22382 10796 22382 10797 22382 10795 22383 10797 22383 10895 22383 10895 22384 10797 22384 10799 22384 10895 22385 10799 22385 10798 22385 10798 22386 10799 22386 10719 22386 10798 22387 10719 22387 10896 22387 10896 22388 10719 22388 10800 22388 10896 22389 10800 22389 10801 22389 10801 22390 10800 22390 10717 22390 10801 22391 10717 22391 10802 22391 10802 22392 10717 22392 10803 22392 10802 22393 10803 22393 10900 22393 10900 22394 10803 22394 10713 22394 10900 22395 10713 22395 10804 22395 10804 22396 10713 22396 10715 22396 10804 22397 10715 22397 10805 22397 10805 22398 10715 22398 10806 22398 10805 22399 10806 22399 10902 22399 10902 22400 10806 22400 1938 22400 10902 22401 1938 22401 10807 22401 10807 22402 1938 22402 10716 22402 10807 22403 10716 22403 10809 22403 10809 22404 10716 22404 10808 22404 10809 22405 10808 22405 10810 22405 10810 22406 10808 22406 10714 22406 10810 22407 10714 22407 10901 22407 10901 22408 10714 22408 10711 22408 10901 22409 10711 22409 10903 22409 10903 22410 10711 22410 10707 22410 10903 22411 10707 22411 10811 22411 10811 22412 10707 22412 10706 22412 10811 22413 10706 22413 10904 22413 10904 22414 10706 22414 10705 22414 10904 22415 10705 22415 10812 22415 10812 22416 10705 22416 10704 22416 10812 22417 10704 22417 10813 22417 10813 22418 10704 22418 10814 22418 10813 22419 10814 22419 10815 22419 10815 22420 10814 22420 10816 22420 10815 22421 10816 22421 10818 22421 10818 22422 10816 22422 10817 22422 10818 22423 10817 22423 10819 22423 10819 22424 10817 22424 10710 22424 10819 22425 10710 22425 10907 22425 10907 22426 10710 22426 10709 22426 10907 22427 10709 22427 10821 22427 10821 22428 10709 22428 10827 22428 10827 22429 10822 22429 10821 22429 10820 22430 10825 22430 10824 22430 10822 22431 10826 22431 10821 22431 10825 22432 10826 22432 10824 22432 10826 22433 10822 22433 10824 22433 10822 22434 10823 22434 10824 22434 10823 22435 10822 22435 10827 22435 10824 22436 10823 22436 10820 22436 10825 22437 10820 22437 10909 22437 10909 22438 10820 22438 10828 22438 10909 22439 10828 22439 10910 22439 10910 22440 10828 22440 10829 22440 10910 22441 10829 22441 10908 22441 10908 22442 10829 22442 10830 22442 10908 22443 10830 22443 10905 22443 10905 22444 10830 22444 10708 22444 10905 22445 10708 22445 10906 22445 10906 22446 10708 22446 10831 22446 10906 22447 10831 22447 10832 22447 10832 22448 10831 22448 10833 22448 10832 22449 10833 22449 10834 22449 10834 22450 10833 22450 10703 22450 10834 22451 10703 22451 10911 22451 10911 22452 10703 22452 10702 22452 10911 22453 10702 22453 10835 22453 10835 22454 10702 22454 10701 22454 10835 22455 10701 22455 10912 22455 10912 22456 10701 22456 10837 22456 10912 22457 10837 22457 10836 22457 10836 22458 10837 22458 10838 22458 10836 22459 10838 22459 10916 22459 10916 22460 10838 22460 10839 22460 10916 22461 10839 22461 10915 22461 10915 22462 10839 22462 10840 22462 10915 22463 10840 22463 10841 22463 10841 22464 10840 22464 10842 22464 10841 22465 10842 22465 10843 22465 10843 22466 10842 22466 10844 22466 10843 22467 10844 22467 10914 22467 10914 22468 10844 22468 10845 22468 10914 22469 10845 22469 10913 22469 10913 22470 10845 22470 10846 22470 10913 22471 10846 22471 10924 22471 10924 22472 10846 22472 10699 22472 10924 22473 10699 22473 10847 22473 10847 22474 10699 22474 10698 22474 10847 22475 10698 22475 10848 22475 10848 22476 10698 22476 10697 22476 10848 22477 10697 22477 10849 22477 10849 22478 10697 22478 10696 22478 10849 22479 10696 22479 10850 22479 10850 22480 10696 22480 10852 22480 10850 22481 10852 22481 10851 22481 10851 22482 10852 22482 10692 22482 10851 22483 10692 22483 10853 22483 10853 22484 10692 22484 10693 22484 10853 22485 10693 22485 10854 22485 10854 22486 10693 22486 10695 22486 10854 22487 10695 22487 10923 22487 10923 22488 10695 22488 10694 22488 10923 22489 10694 22489 10862 22489 10862 22490 10694 22490 10857 22490 10855 22491 10862 22491 10857 22491 10858 22492 10859 22492 10863 22492 10861 22493 10855 22493 10859 22493 10855 22494 10856 22494 10859 22494 10856 22495 10860 22495 10859 22495 10859 22496 10860 22496 10863 22496 10860 22497 10856 22497 10857 22497 10859 22498 10858 22498 10861 22498 10855 22499 10857 22499 10856 22499 10858 22500 10863 22500 10864 22500 10864 22501 10863 22501 10865 22501 10864 22502 10865 22502 10922 22502 10922 22503 10865 22503 10867 22503 10922 22504 10867 22504 10866 22504 10866 22505 10867 22505 10691 22505 10866 22506 10691 22506 10917 22506 10917 22507 10691 22507 10690 22507 10917 22508 10690 22508 10868 22508 10868 22509 10690 22509 10689 22509 10868 22510 10689 22510 10918 22510 10918 22511 10689 22511 10869 22511 10918 22512 10869 22512 10919 22512 10919 22513 10869 22513 10688 22513 10919 22514 10688 22514 10920 22514 10920 22515 10688 22515 10870 22515 10920 22516 10870 22516 10921 22516 10921 22517 10870 22517 10871 22517 10921 22518 10871 22518 10872 22518 10872 22519 10871 22519 10686 22519 10872 22520 10686 22520 10878 22520 10878 22521 10686 22521 10873 22521 10878 22522 10873 22522 10875 22522 10875 22523 10873 22523 10874 22523 10875 22524 10874 22524 10876 22524 10876 22525 10874 22525 10877 22525 10876 22526 10877 22526 10879 22526 10879 22527 10877 22527 10737 22527 10875 22528 10876 22528 10878 22528 10878 22529 10876 22529 10879 22529 10878 22530 10879 22530 10739 22530 10739 22531 10879 22531 10738 22531 10739 22532 10927 22532 10878 22532 10878 22533 10927 22533 10872 22533 10872 22534 10927 22534 10933 22534 10872 22535 10933 22535 10929 22535 10925 22536 10935 22536 10927 22536 10927 22537 10935 22537 10933 22537 10880 22538 11033 22538 10925 22538 10925 22539 11033 22539 11031 22539 10881 22540 11033 22540 10880 22540 10742 22541 11035 22541 10881 22541 10881 22542 11035 22542 11033 22542 10882 22543 11035 22543 10742 22543 10743 22544 10886 22544 10882 22544 10882 22545 10886 22545 11032 22545 10882 22546 11032 22546 11035 22546 10745 22547 10755 22547 10743 22547 10743 22548 10755 22548 10883 22548 10743 22549 10883 22549 10886 22549 10884 22550 10749 22550 10745 22550 10745 22551 10749 22551 10755 22551 10755 22552 10751 22552 6992 22552 10755 22553 6992 22553 10883 22553 10883 22554 6992 22554 10885 22554 10885 22555 6992 22555 10758 22555 10885 22556 10758 22556 10759 22556 11032 22557 10886 22557 10764 22557 11032 22558 10764 22558 10766 22558 11032 22559 10766 22559 10767 22559 11032 22560 10767 22560 11041 22560 11041 22561 10767 22561 10887 22561 11041 22562 10887 22562 11034 22562 11034 22563 10887 22563 10888 22563 11034 22564 10888 22564 10942 22564 10888 22565 10887 22565 10950 22565 10950 22566 10887 22566 10769 22566 10950 22567 10769 22567 10951 22567 10951 22568 10769 22568 10776 22568 10951 22569 10776 22569 10955 22569 10955 22570 10776 22570 10889 22570 10889 22571 10776 22571 10778 22571 10889 22572 10778 22572 10959 22572 10959 22573 10778 22573 11058 22573 10776 22574 10769 22574 10890 22574 10890 22575 10769 22575 10771 22575 10890 22576 10771 22576 10891 22576 10891 22577 10771 22577 10892 22577 10892 22578 10771 22578 10773 22578 10891 22579 10893 22579 10890 22579 10780 22580 11055 22580 10778 22580 10781 22581 11060 22581 10780 22581 10780 22582 11060 22582 11055 22582 10894 22583 11060 22583 10781 22583 10782 22584 11060 22584 10894 22584 10783 22585 10795 22585 10782 22585 10782 22586 10795 22586 10895 22586 10782 22587 10895 22587 11060 22587 11060 22588 10895 22588 11064 22588 11064 22589 10895 22589 10798 22589 11064 22590 10798 22590 11053 22590 11053 22591 10798 22591 10896 22591 11053 22592 10896 22592 10801 22592 11053 22593 10801 22593 10802 22593 11053 22594 10802 22594 11056 22594 11056 22595 10802 22595 10970 22595 11056 22596 10970 22596 11059 22596 10784 22597 10791 22597 10783 22597 10783 22598 10791 22598 10793 22598 10783 22599 10793 22599 10795 22599 10795 22600 10793 22600 10897 22600 10897 22601 10793 22601 10898 22601 10897 22602 10898 22602 10899 22602 10786 22603 10787 22603 10784 22603 10784 22604 10787 22604 10791 22604 10791 22605 10790 22605 10793 22605 10970 22606 10802 22606 10972 22606 10972 22607 10802 22607 10900 22607 10972 22608 10900 22608 10971 22608 10971 22609 10900 22609 10975 22609 10975 22610 10900 22610 10901 22610 10975 22611 10901 22611 10976 22611 10976 22612 10901 22612 10903 22612 10976 22613 10903 22613 10979 22613 10979 22614 10903 22614 11010 22614 10900 22615 10804 22615 10901 22615 10901 22616 10804 22616 10810 22616 10810 22617 10804 22617 10902 22617 10810 22618 10902 22618 10807 22618 10804 22619 10805 22619 10902 22619 10807 22620 10809 22620 10810 22620 10811 22621 11015 22621 10903 22621 10903 22622 11015 22622 11010 22622 10904 22623 11021 22623 10811 22623 10811 22624 11021 22624 11015 22624 10812 22625 11021 22625 10904 22625 10813 22626 11021 22626 10812 22626 10815 22627 10906 22627 10813 22627 10813 22628 10906 22628 11021 22628 10818 22629 10821 22629 10815 22629 10815 22630 10821 22630 10905 22630 10815 22631 10905 22631 10906 22631 10819 22632 10907 22632 10818 22632 10818 22633 10907 22633 10821 22633 10905 22634 10821 22634 10825 22634 10825 22635 10821 22635 10826 22635 10905 22636 10825 22636 10908 22636 10908 22637 10825 22637 10909 22637 10908 22638 10909 22638 10910 22638 11021 22639 10906 22639 11007 22639 11007 22640 10906 22640 10832 22640 11007 22641 10832 22641 10834 22641 11007 22642 10834 22642 11012 22642 11012 22643 10834 22643 10911 22643 11012 22644 10911 22644 10835 22644 11012 22645 10835 22645 11013 22645 11013 22646 10835 22646 11008 22646 11008 22647 10835 22647 10987 22647 11008 22648 10987 22648 10983 22648 10987 22649 10835 22649 10991 22649 10991 22650 10835 22650 10912 22650 10991 22651 10912 22651 10992 22651 10992 22652 10912 22652 10913 22652 10992 22653 10913 22653 10994 22653 10994 22654 10913 22654 10995 22654 10995 22655 10913 22655 10924 22655 10995 22656 10924 22656 10997 22656 10997 22657 10924 22657 11082 22657 10913 22658 10912 22658 10914 22658 10914 22659 10912 22659 10836 22659 10914 22660 10836 22660 10841 22660 10841 22661 10836 22661 10915 22661 10915 22662 10836 22662 10916 22662 10841 22663 10843 22663 10914 22663 10847 22664 11077 22664 10924 22664 10924 22665 11077 22665 11082 22665 10848 22666 11077 22666 10847 22666 10849 22667 11077 22667 10848 22667 10850 22668 11080 22668 10849 22668 10849 22669 11080 22669 11077 22669 10851 22670 10917 22670 10850 22670 10850 22671 10917 22671 10868 22671 10850 22672 10868 22672 11080 22672 11080 22673 10868 22673 10918 22673 11080 22674 10918 22674 10919 22674 11080 22675 10919 22675 11079 22675 11079 22676 10919 22676 10920 22676 11079 22677 10920 22677 11076 22677 11076 22678 10920 22678 10921 22678 11076 22679 10921 22679 10682 22679 10853 22680 10862 22680 10851 22680 10851 22681 10862 22681 10858 22681 10851 22682 10858 22682 10917 22682 10917 22683 10858 22683 10866 22683 10866 22684 10858 22684 10864 22684 10866 22685 10864 22685 10922 22685 10854 22686 10923 22686 10853 22686 10853 22687 10923 22687 10862 22687 10862 22688 10855 22688 10861 22688 10862 22689 10861 22689 10858 22689 10682 22690 10921 22690 10928 22690 10928 22691 10921 22691 10872 22691 10928 22692 10872 22692 10929 22692 10997 22693 11082 22693 11000 22693 11000 22694 11082 22694 11078 22694 11000 22695 11078 22695 11006 22695 11006 22696 11078 22696 11005 22696 11005 22697 11078 22697 10682 22697 10682 22698 11078 22698 11076 22698 10959 22699 11058 22699 10958 22699 10958 22700 11058 22700 11059 22700 10958 22701 11059 22701 10964 22701 10964 22702 11059 22702 10967 22702 10967 22703 11059 22703 10963 22703 10963 22704 11059 22704 10969 22704 10969 22705 11059 22705 10970 22705 10778 22706 11055 22706 11058 22706 10925 22707 11031 22707 10937 22707 11031 22708 10938 22708 10937 22708 10938 22709 11031 22709 10940 22709 10940 22710 11031 22710 10944 22710 10944 22711 11031 22711 10942 22711 10942 22712 11031 22712 11034 22712 10979 22713 11010 22713 11009 22713 10979 22714 11009 22714 10980 22714 10980 22715 11009 22715 11011 22715 10980 22716 11011 22716 10926 22716 10926 22717 11011 22717 10984 22717 10984 22718 11011 22718 10983 22718 10983 22719 11011 22719 11008 22719 10937 22720 10935 22720 10925 22720 10933 22721 10932 22721 10929 22721 10929 22722 10932 22722 10931 22722 10928 22723 10931 22723 10930 22723 10931 22724 10928 22724 10929 22724 10934 22725 10933 22725 10935 22725 10933 22726 10934 22726 10932 22726 10937 22727 10936 22727 10935 22727 10935 22728 10936 22728 10934 22728 10937 22729 10939 22729 10936 22729 10939 22730 10946 22730 10936 22730 10946 22731 10939 22731 10938 22731 10937 22732 10938 22732 10939 22732 10940 22733 10946 22733 10938 22733 10944 22734 10943 22734 10947 22734 10947 22735 10943 22735 10945 22735 10941 22736 10943 22736 10942 22736 10944 22737 10947 22737 10940 22737 10943 22738 10944 22738 10942 22738 10946 22739 10940 22739 10945 22739 10947 22740 10945 22740 10940 22740 10942 22741 10949 22741 10941 22741 10948 22742 10949 22742 10888 22742 10949 22743 10942 22743 10888 22743 10941 22744 10949 22744 10948 22744 10950 22745 10952 22745 10888 22745 10888 22746 10952 22746 10948 22746 10950 22747 10951 22747 10952 22747 10952 22748 10951 22748 10953 22748 10955 22749 10954 22749 10951 22749 10951 22750 10954 22750 10953 22750 10955 22751 10956 22751 10954 22751 10954 22752 10956 22752 10957 22752 10955 22753 10889 22753 10956 22753 10957 22754 10956 22754 10889 22754 10959 22755 10726 22755 10889 22755 10889 22756 10726 22756 10957 22756 10959 22757 10960 22757 10726 22757 10960 22758 10961 22758 10726 22758 10961 22759 10960 22759 10958 22759 10960 22760 10959 22760 10958 22760 10964 22761 10962 22761 10958 22761 10958 22762 10962 22762 10961 22762 10966 22763 10967 22763 10968 22763 10965 22764 10963 22764 10969 22764 10966 22765 10968 22765 10962 22765 10964 22766 10966 22766 10962 22766 10967 22767 10966 22767 10964 22767 10968 22768 10967 22768 10963 22768 10968 22769 10963 22769 10965 22769 10969 22770 10970 22770 10965 22770 10965 22771 10970 22771 10734 22771 10972 22772 10974 22772 10970 22772 10970 22773 10974 22773 10734 22773 10973 22774 10974 22774 10971 22774 10971 22775 10974 22775 10972 22775 10975 22776 10977 22776 10971 22776 10971 22777 10977 22777 10973 22777 10976 22778 10977 22778 10975 22778 10712 22779 10977 22779 10976 22779 10979 22780 10978 22780 10976 22780 10976 22781 10978 22781 10712 22781 10978 22782 10979 22782 10981 22782 10981 22783 10979 22783 10980 22783 10926 22784 10981 22784 10980 22784 10736 22785 10982 22785 10983 22785 10985 22786 10984 22786 10982 22786 10984 22787 10985 22787 10926 22787 10981 22788 10926 22788 10985 22788 10982 22789 10984 22789 10983 22789 10736 22790 10985 22790 10982 22790 10983 22791 10986 22791 10736 22791 10983 22792 10988 22792 10986 22792 10988 22793 10983 22793 10987 22793 10991 22794 10990 22794 10987 22794 10987 22795 10990 22795 10988 22795 10990 22796 10991 22796 10989 22796 10989 22797 10991 22797 10992 22797 10994 22798 10700 22798 10992 22798 10992 22799 10700 22799 10989 22799 10993 22800 10994 22800 10995 22800 10700 22801 10994 22801 10993 22801 10997 22802 10998 22802 10995 22802 10995 22803 10998 22803 10993 22803 10997 22804 11000 22804 10998 22804 10996 22805 10998 22805 11000 22805 11000 22806 11002 22806 10996 22806 11000 22807 11006 22807 11004 22807 11000 22808 11004 22808 11002 22808 11006 22809 11001 22809 11004 22809 10999 22810 11001 22810 11006 22810 10999 22811 11006 22811 11005 22811 11003 22812 11001 22812 10999 22812 11002 22813 11004 22813 11003 22813 11001 22814 11003 22814 11004 22814 11005 22815 10683 22815 10999 22815 11022 22816 11025 22816 11028 22816 11007 22817 11020 22817 11021 22817 11008 22818 11011 22818 11014 22818 11010 22819 11027 22819 11009 22819 11013 22820 11026 22820 11012 22820 11008 22821 11017 22821 11013 22821 11013 22822 11017 22822 11026 22822 11014 22823 11011 22823 11016 22823 11008 22824 11014 22824 11017 22824 11020 22825 11007 22825 11025 22825 11011 22826 11009 22826 11016 22826 11009 22827 11018 22827 11016 22827 11012 22828 11025 22828 11007 22828 11009 22829 11027 22829 11018 22829 11015 22830 11021 22830 11029 22830 11014 22831 11019 22831 11017 22831 11012 22832 11026 22832 11023 22832 11012 22833 11023 22833 11025 22833 11015 22834 11029 22834 11030 22834 11014 22835 11016 22835 11019 22835 11023 22836 11028 22836 11025 22836 11020 22837 11025 22837 11022 22837 11020 22838 11022 22838 11021 22838 11026 22839 11028 22839 11023 22839 11010 22840 11015 22840 11030 22840 11010 22841 11030 22841 11027 22841 11019 22842 11016 22842 11024 22842 11021 22843 11022 22843 11029 22843 11018 22844 11024 22844 11016 22844 11018 22845 11027 22845 11024 22845 11017 22846 11019 22846 11026 22846 11019 22847 11024 22847 11026 22847 11032 22848 11041 22848 11036 22848 11034 22849 11040 22849 11041 22849 11035 22850 11032 22850 11044 22850 11031 22851 11033 22851 11043 22851 11035 22852 11038 22852 11033 22852 11031 22853 11043 22853 11039 22853 11033 22854 11038 22854 11043 22854 11031 22855 11039 22855 11037 22855 11031 22856 11037 22856 11034 22856 11035 22857 11044 22857 11038 22857 11032 22858 11036 22858 11044 22858 11039 22859 11046 22859 11037 22859 11034 22860 11042 22860 11040 22860 11039 22861 11043 22861 11049 22861 11039 22862 11049 22862 11046 22862 11034 22863 11037 22863 11042 22863 11044 22864 11036 22864 11045 22864 11041 22865 11040 22865 11036 22865 11042 22866 11051 22866 11040 22866 11037 22867 11046 22867 11050 22867 11042 22868 11037 22868 11051 22868 11043 22869 11038 22869 11048 22869 11043 22870 11048 22870 11049 22870 11037 22871 11050 22871 11051 22871 11036 22872 11040 22872 11052 22872 11038 22873 11044 22873 11047 22873 11038 22874 11047 22874 11048 22874 11045 22875 11047 22875 11044 22875 11046 22876 11049 22876 11050 22876 11036 22877 11052 22877 11045 22877 11040 22878 11051 22878 11052 22878 11053 22879 11057 22879 11064 22879 11055 22880 11061 22880 11058 22880 11056 22881 11059 22881 11063 22881 11055 22882 11060 22882 11062 22882 11055 22883 11062 22883 11061 22883 11058 22884 11069 22884 11059 22884 11056 22885 11066 22885 11053 22885 11058 22886 11061 22886 11069 22886 11059 22887 11069 22887 11068 22887 11064 22888 11057 22888 11067 22888 11059 22889 11068 22889 11070 22889 11059 22890 11070 22890 11063 22890 11053 22891 11066 22891 11071 22891 11053 22892 11071 22892 11057 22892 11060 22893 11064 22893 11065 22893 11060 22894 11065 22894 11062 22894 11064 22895 11067 22895 11065 22895 11057 22896 11071 22896 11067 22896 11056 22897 11063 22897 11066 22897 11062 22898 11054 22898 11061 22898 11068 22899 11069 22899 11074 22899 11062 22900 11065 22900 11054 22900 11061 22901 11073 22901 11069 22901 11061 22902 11054 22902 11073 22902 11065 22903 11067 22903 11072 22903 11065 22904 11072 22904 11054 22904 11069 22905 11073 22905 11074 22905 11067 22906 11071 22906 10718 22906 11068 22907 11074 22907 11075 22907 11068 22908 11075 22908 11070 22908 11070 22909 11075 22909 11063 22909 11067 22910 10718 22910 11072 22910 11063 22911 11075 22911 11066 22911 11071 22912 11066 22912 10718 22912 11077 22913 11093 22913 11082 22913 11076 22914 11078 22914 11081 22914 11080 22915 11090 22915 11077 22915 11076 22916 11081 22916 11087 22916 11078 22917 11084 22917 11081 22917 11080 22918 11083 22918 11090 22918 11079 22919 11088 22919 11080 22919 11082 22920 11093 22920 11089 22920 11076 22921 11087 22921 11079 22921 11082 22922 11091 22922 11078 22922 11080 22923 11088 22923 11083 22923 11078 22924 11091 22924 11086 22924 11078 22925 11086 22925 11084 22925 11082 22926 11089 22926 11091 22926 11081 22927 11085 22927 11087 22927 11077 22928 11090 22928 11093 22928 11081 22929 11092 22929 11085 22929 11081 22930 11084 22930 11092 22930 11079 22931 11087 22931 11088 22931 11083 22932 11088 22932 11097 22932 11083 22933 11097 22933 11090 22933 11087 22934 11085 22934 11094 22934 11087 22935 11094 22935 11088 22935 11089 22936 11093 22936 11095 22936 11089 22937 11095 22937 11091 22937 11086 22938 11091 22938 11099 22938 11086 22939 11099 22939 11084 22939 11085 22940 11092 22940 11096 22940 11093 22941 11090 22941 11098 22941 11093 22942 11098 22942 11095 22942 11088 22943 11094 22943 11097 22943 11092 22944 11084 22944 11100 22944 11092 22945 11100 22945 11096 22945 11085 22946 11096 22946 11094 22946 11090 22947 11097 22947 11098 22947 11084 22948 11099 22948 11100 22948 11091 22949 11095 22949 11099 22949 11338 22950 11337 22950 11102 22950 11102 22951 11337 22951 11103 22951 11333 22952 11103 22952 11101 22952 11103 22953 11333 22953 11102 22953 11276 22954 11106 22954 11277 22954 11277 22955 11106 22955 11104 22955 11277 22956 11104 22956 11105 22956 11276 22957 11274 22957 11106 22957 11106 22958 11272 22958 11104 22958 11104 22959 11272 22959 11155 22959 11155 22960 11272 22960 11336 22960 11155 22961 11336 22961 11342 22961 11150 22962 11337 22962 11272 22962 11272 22963 11337 22963 11336 22963 11107 22964 11508 22964 11150 22964 11150 22965 11508 22965 11511 22965 11271 22966 11508 22966 11107 22966 11270 22967 11506 22967 11271 22967 11271 22968 11506 22968 11508 22968 11268 22969 11512 22969 11270 22969 11270 22970 11512 22970 11506 22970 11267 22971 11108 22971 11268 22971 11268 22972 11108 22972 11512 22972 11266 22973 11259 22973 11267 22973 11267 22974 11259 22974 11248 22974 11267 22975 11248 22975 11108 22975 11265 22976 11264 22976 11266 22976 11266 22977 11264 22977 11259 22977 11248 22978 11259 22978 11262 22978 11262 22979 11259 22979 11256 22979 11248 22980 11262 22980 11250 22980 11250 22981 11262 22981 11253 22981 11250 22982 11253 22982 11251 22982 11512 22983 11108 22983 11109 22983 11512 22984 11109 22984 11110 22984 11512 22985 11110 22985 11510 22985 11510 22986 11110 22986 11244 22986 11510 22987 11244 22987 11513 22987 11513 22988 11244 22988 11111 22988 11513 22989 11111 22989 11414 22989 11513 22990 11414 22990 11415 22990 11414 22991 11111 22991 11411 22991 11411 22992 11111 22992 11241 22992 11411 22993 11241 22993 11408 22993 11408 22994 11241 22994 11112 22994 11408 22995 11112 22995 11406 22995 11406 22996 11112 22996 11404 22996 11404 22997 11112 22997 11116 22997 11404 22998 11116 22998 11401 22998 11401 22999 11116 22999 11444 22999 11112 23000 11241 23000 11113 23000 11113 23001 11241 23001 11114 23001 11113 23002 11114 23002 11238 23002 11238 23003 11114 23003 11239 23003 11239 23004 11114 23004 11115 23004 11238 23005 11237 23005 11113 23005 11233 23006 11441 23006 11116 23006 11117 23007 11441 23007 11233 23007 11231 23008 11439 23008 11117 23008 11117 23009 11439 23009 11441 23009 11230 23010 11439 23010 11231 23010 11229 23011 11214 23011 11230 23011 11230 23012 11214 23012 11118 23012 11230 23013 11118 23013 11439 23013 11439 23014 11118 23014 11437 23014 11437 23015 11118 23015 11213 23015 11437 23016 11213 23016 11423 23016 11423 23017 11213 23017 11212 23017 11423 23018 11212 23018 11119 23018 11423 23019 11119 23019 11211 23019 11423 23020 11211 23020 11443 23020 11443 23021 11211 23021 11392 23021 11443 23022 11392 23022 11442 23022 11228 23023 11220 23023 11229 23023 11229 23024 11220 23024 11218 23024 11229 23025 11218 23025 11214 23025 11214 23026 11218 23026 11120 23026 11120 23027 11218 23027 11121 23027 11120 23028 11121 23028 11215 23028 11225 23029 11122 23029 11228 23029 11228 23030 11122 23030 11220 23030 11220 23031 11219 23031 11218 23031 11392 23032 11211 23032 11123 23032 11123 23033 11211 23033 11124 23033 11123 23034 11124 23034 11391 23034 11391 23035 11124 23035 11388 23035 11388 23036 11124 23036 11200 23036 11388 23037 11200 23037 11384 23037 11384 23038 11200 23038 11198 23038 11384 23039 11198 23039 11380 23039 11380 23040 11198 23040 11490 23040 11124 23041 11209 23041 11200 23041 11200 23042 11209 23042 11201 23042 11201 23043 11209 23043 11203 23043 11201 23044 11203 23044 11202 23044 11207 23045 11204 23045 11209 23045 11209 23046 11204 23046 11203 23046 11197 23047 11478 23047 11198 23047 11198 23048 11478 23048 11490 23048 11196 23049 11478 23049 11197 23049 11125 23050 11478 23050 11196 23050 11151 23051 11485 23051 11125 23051 11125 23052 11485 23052 11478 23052 11192 23053 11126 23053 11151 23053 11151 23054 11126 23054 11485 23054 11127 23055 11185 23055 11192 23055 11192 23056 11185 23056 11181 23056 11192 23057 11181 23057 11126 23057 11191 23058 11189 23058 11127 23058 11127 23059 11189 23059 11185 23059 11185 23060 11187 23060 11184 23060 11185 23061 11184 23061 11181 23061 11181 23062 11184 23062 11128 23062 11128 23063 11184 23063 6968 23063 11128 23064 6968 23064 11129 23064 11485 23065 11126 23065 11130 23065 11485 23066 11130 23066 11131 23066 11485 23067 11131 23067 11486 23067 11486 23068 11131 23068 11132 23068 11486 23069 11132 23069 11133 23069 11486 23070 11133 23070 11488 23070 11488 23071 11133 23071 11369 23071 11369 23072 11133 23072 11367 23072 11367 23073 11133 23073 11134 23073 11367 23074 11134 23074 11364 23074 11364 23075 11134 23075 11135 23075 11364 23076 11135 23076 11363 23076 11363 23077 11135 23077 11361 23077 11361 23078 11135 23078 11140 23078 11361 23079 11140 23079 11358 23079 11358 23080 11140 23080 11461 23080 11135 23081 11134 23081 11136 23081 11136 23082 11134 23082 11138 23082 11136 23083 11138 23083 6979 23083 6979 23084 11138 23084 11137 23084 11137 23085 11138 23085 11139 23085 6979 23086 11176 23086 11136 23086 11141 23087 11152 23087 11140 23087 11142 23088 11152 23088 11141 23088 11173 23089 11152 23089 11142 23089 11143 23090 11464 23090 11173 23090 11173 23091 11464 23091 11152 23091 11148 23092 11162 23092 11143 23092 11143 23093 11162 23093 11144 23093 11143 23094 11144 23094 11464 23094 11464 23095 11144 23095 11463 23095 11463 23096 11144 23096 11160 23096 11463 23097 11160 23097 11145 23097 11463 23098 11145 23098 11462 23098 11462 23099 11145 23099 11146 23099 11462 23100 11146 23100 11465 23100 11465 23101 11146 23101 11156 23101 11465 23102 11156 23102 11460 23102 11460 23103 11156 23103 11346 23103 11460 23104 11346 23104 11349 23104 11147 23105 7066 23105 11148 23105 11148 23106 7066 23106 11171 23106 11148 23107 11171 23107 11162 23107 11162 23108 11171 23108 11163 23108 11163 23109 11171 23109 11149 23109 11163 23110 11149 23110 11164 23110 11172 23111 7065 23111 11147 23111 11147 23112 7065 23112 7066 23112 7066 23113 11170 23113 11171 23113 11346 23114 11156 23114 11344 23114 11344 23115 11156 23115 11155 23115 11344 23116 11155 23116 11342 23116 11150 23117 11511 23117 11103 23117 11103 23118 11511 23118 11101 23118 11101 23119 11511 23119 11421 23119 11421 23120 11511 23120 11498 23120 11421 23121 11498 23121 11418 23121 11418 23122 11498 23122 11415 23122 11415 23123 11498 23123 11513 23123 11380 23124 11490 23124 11489 23124 11380 23125 11489 23125 11379 23125 11379 23126 11489 23126 11378 23126 11378 23127 11489 23127 11374 23127 11374 23128 11489 23128 11488 23128 11374 23129 11488 23129 11369 23129 11140 23130 11152 23130 11461 23130 11358 23131 11461 23131 11359 23131 11359 23132 11461 23132 11457 23132 11359 23133 11457 23133 11356 23133 11356 23134 11457 23134 11348 23134 11348 23135 11457 23135 11349 23135 11349 23136 11457 23136 11460 23136 11444 23137 11399 23137 11401 23137 11399 23138 11444 23138 11440 23138 11399 23139 11440 23139 11396 23139 11396 23140 11440 23140 11442 23140 11396 23141 11442 23141 11395 23141 11395 23142 11442 23142 11392 23142 11116 23143 11441 23143 11444 23143 11103 23144 11337 23144 11150 23144 11279 23145 11277 23145 11153 23145 11153 23146 11277 23146 11105 23146 11153 23147 11105 23147 11154 23147 11154 23148 11105 23148 11104 23148 11154 23149 11104 23149 11280 23149 11280 23150 11104 23150 11155 23150 11280 23151 11155 23151 11334 23151 11334 23152 11155 23152 11156 23152 11334 23153 11156 23153 11157 23153 11157 23154 11156 23154 11146 23154 11157 23155 11146 23155 11158 23155 11158 23156 11146 23156 11145 23156 11158 23157 11145 23157 11159 23157 11159 23158 11145 23158 11160 23158 11159 23159 11160 23159 11161 23159 11161 23160 11160 23160 11144 23160 11161 23161 11144 23161 11281 23161 11281 23162 11144 23162 11162 23162 11281 23163 11162 23163 11284 23163 11284 23164 11162 23164 11163 23164 11284 23165 11163 23165 11165 23165 11165 23166 11163 23166 11164 23166 11165 23167 11164 23167 11166 23167 11166 23168 11164 23168 11149 23168 11166 23169 11149 23169 11285 23169 11285 23170 11149 23170 11171 23170 11167 23171 11285 23171 11171 23171 11170 23172 11167 23172 11171 23172 3610 23173 11169 23173 7066 23173 11167 23174 11170 23174 11169 23174 11169 23175 11170 23175 7066 23175 3610 23176 11168 23176 11169 23176 11167 23177 11169 23177 11168 23177 11168 23178 11285 23178 11167 23178 3610 23179 7066 23179 3683 23179 3683 23180 7066 23180 7065 23180 3683 23181 7065 23181 11287 23181 11287 23182 7065 23182 11172 23182 11287 23183 11172 23183 11286 23183 11286 23184 11172 23184 11147 23184 11286 23185 11147 23185 11282 23185 11282 23186 11147 23186 11148 23186 11282 23187 11148 23187 11283 23187 11283 23188 11148 23188 11143 23188 11283 23189 11143 23189 11288 23189 11288 23190 11143 23190 11173 23190 11288 23191 11173 23191 11289 23191 11289 23192 11173 23192 11142 23192 11289 23193 11142 23193 11290 23193 11290 23194 11142 23194 11141 23194 11290 23195 11141 23195 11291 23195 11291 23196 11141 23196 11140 23196 11291 23197 11140 23197 11292 23197 11292 23198 11140 23198 11135 23198 11292 23199 11135 23199 11174 23199 11174 23200 11135 23200 11136 23200 11174 23201 11136 23201 11175 23201 11175 23202 11136 23202 11176 23202 11175 23203 11176 23203 3591 23203 3591 23204 11176 23204 6979 23204 3591 23205 6979 23205 11177 23205 11177 23206 6979 23206 11137 23206 11177 23207 11137 23207 11178 23207 11178 23208 11137 23208 11139 23208 11178 23209 11139 23209 11294 23209 11294 23210 11139 23210 11138 23210 11294 23211 11138 23211 11293 23211 11293 23212 11138 23212 11134 23212 11293 23213 11134 23213 11296 23213 11296 23214 11134 23214 11133 23214 11296 23215 11133 23215 11295 23215 11295 23216 11133 23216 11132 23216 11295 23217 11132 23217 11297 23217 11297 23218 11132 23218 11131 23218 11297 23219 11131 23219 11298 23219 11298 23220 11131 23220 11130 23220 11298 23221 11130 23221 11179 23221 11179 23222 11130 23222 11126 23222 11179 23223 11126 23223 11180 23223 11180 23224 11126 23224 11181 23224 11180 23225 11181 23225 11302 23225 11302 23226 11181 23226 11128 23226 11302 23227 11128 23227 11182 23227 11182 23228 11128 23228 11129 23228 11182 23229 11129 23229 3664 23229 3664 23230 11129 23230 6968 23230 3664 23231 6968 23231 3662 23231 3662 23232 6968 23232 11184 23232 11183 23233 3662 23233 11186 23233 11185 23234 11186 23234 11187 23234 2641 23235 11186 23235 11185 23235 3662 23236 11187 23236 11186 23236 2641 23237 11183 23237 11186 23237 3662 23238 11184 23238 11187 23238 2641 23239 11185 23239 2631 23239 2631 23240 11185 23240 11189 23240 2631 23241 11189 23241 11188 23241 11188 23242 11189 23242 11191 23242 11188 23243 11191 23243 11190 23243 11190 23244 11191 23244 11127 23244 11190 23245 11127 23245 11299 23245 11299 23246 11127 23246 11192 23246 11299 23247 11192 23247 11193 23247 11193 23248 11192 23248 11151 23248 11193 23249 11151 23249 11194 23249 11194 23250 11151 23250 11125 23250 11194 23251 11125 23251 11300 23251 11300 23252 11125 23252 11196 23252 11300 23253 11196 23253 11195 23253 11195 23254 11196 23254 11197 23254 11195 23255 11197 23255 11301 23255 11301 23256 11197 23256 11198 23256 11301 23257 11198 23257 11303 23257 11303 23258 11198 23258 11200 23258 11303 23259 11200 23259 11199 23259 11199 23260 11200 23260 11201 23260 11199 23261 11201 23261 11306 23261 11306 23262 11201 23262 11202 23262 11306 23263 11202 23263 11305 23263 11305 23264 11202 23264 11203 23264 11305 23265 11203 23265 11205 23265 11205 23266 11203 23266 11204 23266 11205 23267 11204 23267 11206 23267 11206 23268 11204 23268 11207 23268 11206 23269 11207 23269 11304 23269 11304 23270 11207 23270 11209 23270 11304 23271 11209 23271 11208 23271 11208 23272 11209 23272 11124 23272 11208 23273 11124 23273 11210 23273 11210 23274 11124 23274 11211 23274 11210 23275 11211 23275 11307 23275 11307 23276 11211 23276 11119 23276 11307 23277 11119 23277 11308 23277 11308 23278 11119 23278 11212 23278 11308 23279 11212 23279 11309 23279 11309 23280 11212 23280 11213 23280 11309 23281 11213 23281 11310 23281 11310 23282 11213 23282 11118 23282 11310 23283 11118 23283 11311 23283 11311 23284 11118 23284 11214 23284 11311 23285 11214 23285 11313 23285 11313 23286 11214 23286 11120 23286 11313 23287 11120 23287 11312 23287 11312 23288 11120 23288 11215 23288 11312 23289 11215 23289 11216 23289 11216 23290 11215 23290 11121 23290 11216 23291 11121 23291 2612 23291 2612 23292 11121 23292 11218 23292 11222 23293 11223 23293 11221 23293 11218 23294 11223 23294 2612 23294 11217 23295 11221 23295 11220 23295 11223 23296 11222 23296 2612 23296 11221 23297 11219 23297 11220 23297 11221 23298 11217 23298 11222 23298 11219 23299 11221 23299 11223 23299 11219 23300 11223 23300 11218 23300 11217 23301 11220 23301 11314 23301 11314 23302 11220 23302 11122 23302 11314 23303 11122 23303 11224 23303 11224 23304 11122 23304 11225 23304 11224 23305 11225 23305 11226 23305 11226 23306 11225 23306 11228 23306 11226 23307 11228 23307 11227 23307 11227 23308 11228 23308 11229 23308 11227 23309 11229 23309 11315 23309 11315 23310 11229 23310 11230 23310 11315 23311 11230 23311 11316 23311 11316 23312 11230 23312 11231 23312 11316 23313 11231 23313 11232 23313 11232 23314 11231 23314 11117 23314 11232 23315 11117 23315 11317 23315 11317 23316 11117 23316 11233 23316 11317 23317 11233 23317 11234 23317 11234 23318 11233 23318 11116 23318 11234 23319 11116 23319 11319 23319 11319 23320 11116 23320 11112 23320 11319 23321 11112 23321 11320 23321 11320 23322 11112 23322 11113 23322 11320 23323 11113 23323 11235 23323 11235 23324 11113 23324 11237 23324 11235 23325 11237 23325 11236 23325 11236 23326 11237 23326 11238 23326 11236 23327 11238 23327 11322 23327 11322 23328 11238 23328 11239 23328 11322 23329 11239 23329 11240 23329 11240 23330 11239 23330 11115 23330 11240 23331 11115 23331 11321 23331 11321 23332 11115 23332 11114 23332 11321 23333 11114 23333 11318 23333 11318 23334 11114 23334 11241 23334 11318 23335 11241 23335 11242 23335 11242 23336 11241 23336 11111 23336 11242 23337 11111 23337 11243 23337 11243 23338 11111 23338 11244 23338 11243 23339 11244 23339 11323 23339 11323 23340 11244 23340 11110 23340 11323 23341 11110 23341 11245 23341 11245 23342 11110 23342 11109 23342 11245 23343 11109 23343 11246 23343 11246 23344 11109 23344 11108 23344 11246 23345 11108 23345 11247 23345 11247 23346 11108 23346 11248 23346 11247 23347 11248 23347 11249 23347 11249 23348 11248 23348 11250 23348 11249 23349 11250 23349 11252 23349 11252 23350 11250 23350 11251 23350 11252 23351 11251 23351 11254 23351 11254 23352 11251 23352 11253 23352 11254 23353 11253 23353 11255 23353 11255 23354 11253 23354 11262 23354 11262 23355 11263 23355 11255 23355 11260 23356 11257 23356 11263 23356 11260 23357 11261 23357 11259 23357 11256 23358 11261 23358 11262 23358 11261 23359 11256 23359 11259 23359 11260 23360 11258 23360 11257 23360 11258 23361 11260 23361 11259 23361 11260 23362 11263 23362 11261 23362 11261 23363 11263 23363 11262 23363 11263 23364 11257 23364 11255 23364 11258 23365 11259 23365 11329 23365 11329 23366 11259 23366 11264 23366 11329 23367 11264 23367 11331 23367 11331 23368 11264 23368 11265 23368 11331 23369 11265 23369 11330 23369 11330 23370 11265 23370 11266 23370 11330 23371 11266 23371 11328 23371 11328 23372 11266 23372 11267 23372 11328 23373 11267 23373 11324 23373 11324 23374 11267 23374 11268 23374 11324 23375 11268 23375 11269 23375 11269 23376 11268 23376 11270 23376 11269 23377 11270 23377 11325 23377 11325 23378 11270 23378 11271 23378 11325 23379 11271 23379 11326 23379 11326 23380 11271 23380 11107 23380 11326 23381 11107 23381 11327 23381 11327 23382 11107 23382 11150 23382 11327 23383 11150 23383 11332 23383 11332 23384 11150 23384 11272 23384 11332 23385 11272 23385 11278 23385 11278 23386 11272 23386 11106 23386 11278 23387 11106 23387 11273 23387 11273 23388 11106 23388 11274 23388 11273 23389 11274 23389 11275 23389 11275 23390 11274 23390 11276 23390 11275 23391 11276 23391 11279 23391 11279 23392 11276 23392 11277 23392 11273 23393 11275 23393 11278 23393 11278 23394 11275 23394 11279 23394 11278 23395 11279 23395 11154 23395 11154 23396 11279 23396 11153 23396 11154 23397 11280 23397 11278 23397 11278 23398 11280 23398 11332 23398 11332 23399 11280 23399 11340 23399 11332 23400 11340 23400 11339 23400 11334 23401 11341 23401 11280 23401 11280 23402 11341 23402 11340 23402 11157 23403 11449 23403 11334 23403 11158 23404 11449 23404 11157 23404 11159 23405 11445 23405 11158 23405 11158 23406 11445 23406 11449 23406 11161 23407 11445 23407 11159 23407 11281 23408 11283 23408 11161 23408 11161 23409 11283 23409 11445 23409 11284 23410 11285 23410 11281 23410 11281 23411 11285 23411 11282 23411 11281 23412 11282 23412 11283 23412 11165 23413 11166 23413 11284 23413 11284 23414 11166 23414 11285 23414 11285 23415 11168 23415 3610 23415 11285 23416 3610 23416 11282 23416 11282 23417 3610 23417 11286 23417 11286 23418 3610 23418 3683 23418 11286 23419 3683 23419 11287 23419 11445 23420 11283 23420 11452 23420 11452 23421 11283 23421 11288 23421 11452 23422 11288 23422 11289 23422 11452 23423 11289 23423 11447 23423 11447 23424 11289 23424 11290 23424 11447 23425 11290 23425 11291 23425 11447 23426 11291 23426 11448 23426 11448 23427 11291 23427 11357 23427 11448 23428 11357 23428 11350 23428 11357 23429 11291 23429 11362 23429 11362 23430 11291 23430 11292 23430 11362 23431 11292 23431 11360 23431 11360 23432 11292 23432 11293 23432 11360 23433 11293 23433 11366 23433 11366 23434 11293 23434 11365 23434 11365 23435 11293 23435 11296 23435 11365 23436 11296 23436 11368 23436 11368 23437 11296 23437 11467 23437 11293 23438 11292 23438 11294 23438 11294 23439 11292 23439 11174 23439 11294 23440 11174 23440 11177 23440 11177 23441 11174 23441 3591 23441 3591 23442 11174 23442 11175 23442 11177 23443 11178 23443 11294 23443 11295 23444 11467 23444 11296 23444 11297 23445 11467 23445 11295 23445 11298 23446 11472 23446 11297 23446 11297 23447 11472 23447 11467 23447 11179 23448 11480 23448 11298 23448 11298 23449 11480 23449 11472 23449 11180 23450 11299 23450 11179 23450 11179 23451 11299 23451 11193 23451 11179 23452 11193 23452 11480 23452 11480 23453 11193 23453 11194 23453 11480 23454 11194 23454 11476 23454 11476 23455 11194 23455 11300 23455 11476 23456 11300 23456 11471 23456 11471 23457 11300 23457 11195 23457 11471 23458 11195 23458 11301 23458 11471 23459 11301 23459 11381 23459 11471 23460 11381 23460 11372 23460 11302 23461 3662 23461 11180 23461 11180 23462 3662 23462 2641 23462 11180 23463 2641 23463 11299 23463 11299 23464 2641 23464 11190 23464 11190 23465 2641 23465 2631 23465 11190 23466 2631 23466 11188 23466 11182 23467 3664 23467 11302 23467 11302 23468 3664 23468 3662 23468 2641 23469 3662 23469 11183 23469 11381 23470 11301 23470 11382 23470 11382 23471 11301 23471 11303 23471 11382 23472 11303 23472 11386 23472 11386 23473 11303 23473 11390 23473 11390 23474 11303 23474 11208 23474 11390 23475 11208 23475 11389 23475 11389 23476 11208 23476 11210 23476 11389 23477 11210 23477 11393 23477 11393 23478 11210 23478 11424 23478 11393 23479 11424 23479 11425 23479 11303 23480 11199 23480 11208 23480 11208 23481 11199 23481 11304 23481 11304 23482 11199 23482 11305 23482 11304 23483 11305 23483 11205 23483 11199 23484 11306 23484 11305 23484 11205 23485 11206 23485 11304 23485 11307 23486 11424 23486 11210 23486 11308 23487 11428 23487 11307 23487 11307 23488 11428 23488 11424 23488 11309 23489 11428 23489 11308 23489 11310 23490 11430 23490 11309 23490 11309 23491 11430 23491 11428 23491 11311 23492 11315 23492 11310 23492 11310 23493 11315 23493 11430 23493 11313 23494 2612 23494 11311 23494 11311 23495 2612 23495 11227 23495 11311 23496 11227 23496 11315 23496 11312 23497 11216 23497 11313 23497 11313 23498 11216 23498 2612 23498 11227 23499 2612 23499 11217 23499 11217 23500 2612 23500 11222 23500 11227 23501 11217 23501 11226 23501 11226 23502 11217 23502 11314 23502 11226 23503 11314 23503 11224 23503 11430 23504 11315 23504 11316 23504 11430 23505 11316 23505 11232 23505 11430 23506 11232 23506 11317 23506 11430 23507 11317 23507 11234 23507 11430 23508 11234 23508 11427 23508 11427 23509 11234 23509 11426 23509 11426 23510 11234 23510 11400 23510 11400 23511 11234 23511 11405 23511 11405 23512 11234 23512 11319 23512 11405 23513 11319 23513 11407 23513 11407 23514 11319 23514 11318 23514 11407 23515 11318 23515 11410 23515 11410 23516 11318 23516 11409 23516 11409 23517 11318 23517 11242 23517 11409 23518 11242 23518 11413 23518 11413 23519 11242 23519 11491 23519 11318 23520 11319 23520 11321 23520 11321 23521 11319 23521 11320 23521 11321 23522 11320 23522 11322 23522 11322 23523 11320 23523 11236 23523 11236 23524 11320 23524 11235 23524 11322 23525 11240 23525 11321 23525 11243 23526 11493 23526 11242 23526 11242 23527 11493 23527 11491 23527 11323 23528 11493 23528 11243 23528 11245 23529 11493 23529 11323 23529 11246 23530 11493 23530 11245 23530 11247 23531 11328 23531 11246 23531 11246 23532 11328 23532 11324 23532 11246 23533 11324 23533 11493 23533 11493 23534 11324 23534 11492 23534 11492 23535 11324 23535 11269 23535 11492 23536 11269 23536 11325 23536 11492 23537 11325 23537 11326 23537 11492 23538 11326 23538 11327 23538 11492 23539 11327 23539 11494 23539 11494 23540 11327 23540 11102 23540 11494 23541 11102 23541 11497 23541 11249 23542 11255 23542 11247 23542 11247 23543 11255 23543 11258 23543 11247 23544 11258 23544 11328 23544 11328 23545 11258 23545 11330 23545 11330 23546 11258 23546 11329 23546 11330 23547 11329 23547 11331 23547 11252 23548 11254 23548 11249 23548 11249 23549 11254 23549 11255 23549 11255 23550 11257 23550 11258 23550 11102 23551 11327 23551 11338 23551 11338 23552 11327 23552 11332 23552 11338 23553 11332 23553 11339 23553 11413 23554 11491 23554 11420 23554 11420 23555 11491 23555 11419 23555 11419 23556 11491 23556 11497 23556 11419 23557 11497 23557 11333 23557 11333 23558 11497 23558 11102 23558 11470 23559 11368 23559 11467 23559 11368 23560 11470 23560 11370 23560 11370 23561 11470 23561 11375 23561 11375 23562 11470 23562 11475 23562 11375 23563 11475 23563 11373 23563 11373 23564 11475 23564 11372 23564 11372 23565 11475 23565 11471 23565 11334 23566 11449 23566 11347 23566 11446 23567 11345 23567 11449 23567 11449 23568 11345 23568 11347 23568 11345 23569 11446 23569 11335 23569 11335 23570 11446 23570 11352 23570 11352 23571 11446 23571 11354 23571 11354 23572 11446 23572 11350 23572 11350 23573 11446 23573 11448 23573 11393 23574 11425 23574 11394 23574 11394 23575 11425 23575 11397 23575 11397 23576 11425 23576 11402 23576 11402 23577 11425 23577 11426 23577 11402 23578 11426 23578 11400 23578 11347 23579 11341 23579 11334 23579 11340 23580 11342 23580 11339 23580 11339 23581 11342 23581 11336 23581 11338 23582 11336 23582 11337 23582 11339 23583 11336 23583 11338 23583 11340 23584 11343 23584 11342 23584 11343 23585 11344 23585 11342 23585 11340 23586 11341 23586 11343 23586 11344 23587 11343 23587 11341 23587 11347 23588 11346 23588 11341 23588 11341 23589 11346 23589 11344 23589 11347 23590 11345 23590 11346 23590 11349 23591 11346 23591 11345 23591 11335 23592 11349 23592 11345 23592 11356 23593 11354 23593 11350 23593 11353 23594 11348 23594 11349 23594 11335 23595 11353 23595 11349 23595 11351 23596 11352 23596 11354 23596 11335 23597 11352 23597 11353 23597 11352 23598 11351 23598 11353 23598 11355 23599 11351 23599 11354 23599 11348 23600 11351 23600 11355 23600 11351 23601 11348 23601 11353 23601 11348 23602 11355 23602 11356 23602 11356 23603 11355 23603 11354 23603 11350 23604 11359 23604 11356 23604 11350 23605 11357 23605 11359 23605 11358 23606 11359 23606 11357 23606 11362 23607 11361 23607 11357 23607 11357 23608 11361 23608 11358 23608 11363 23609 11362 23609 11360 23609 11361 23610 11362 23610 11363 23610 11366 23611 11364 23611 11360 23611 11360 23612 11364 23612 11363 23612 11364 23613 11366 23613 11367 23613 11367 23614 11366 23614 11365 23614 11368 23615 11369 23615 11365 23615 11365 23616 11369 23616 11367 23616 11369 23617 11368 23617 11370 23617 11374 23618 11369 23618 11370 23618 11375 23619 11374 23619 11370 23619 11373 23620 11372 23620 11371 23620 11373 23621 11377 23621 11376 23621 11377 23622 11371 23622 11378 23622 11379 23623 11371 23623 11372 23623 11375 23624 11376 23624 11374 23624 11377 23625 11378 23625 11376 23625 11374 23626 11376 23626 11378 23626 11375 23627 11373 23627 11376 23627 11373 23628 11371 23628 11377 23628 11378 23629 11371 23629 11379 23629 11372 23630 11380 23630 11379 23630 11380 23631 11372 23631 11381 23631 11382 23632 11384 23632 11381 23632 11381 23633 11384 23633 11380 23633 11382 23634 11388 23634 11384 23634 11382 23635 11386 23635 11385 23635 11382 23636 11386 23636 11388 23636 11387 23637 11385 23637 11386 23637 11385 23638 11383 23638 11386 23638 11386 23639 11382 23639 11385 23639 11383 23640 11387 23640 11386 23640 11390 23641 11391 23641 11386 23641 11386 23642 11391 23642 11388 23642 11123 23643 11391 23643 11389 23643 11391 23644 11390 23644 11389 23644 11393 23645 11392 23645 11389 23645 11389 23646 11392 23646 11123 23646 11393 23647 11394 23647 11392 23647 11392 23648 11394 23648 11395 23648 11402 23649 11398 23649 11397 23649 11394 23650 11397 23650 11395 23650 11396 23651 11398 23651 11402 23651 11398 23652 11396 23652 11397 23652 11396 23653 11395 23653 11397 23653 11396 23654 11402 23654 11399 23654 11402 23655 11400 23655 11399 23655 11399 23656 11400 23656 11401 23656 11405 23657 11404 23657 11400 23657 11400 23658 11404 23658 11401 23658 11405 23659 11403 23659 11404 23659 11404 23660 11403 23660 11406 23660 11406 23661 11403 23661 11407 23661 11403 23662 11405 23662 11407 23662 11410 23663 11408 23663 11407 23663 11407 23664 11408 23664 11406 23664 11408 23665 11410 23665 11411 23665 11411 23666 11410 23666 11409 23666 11413 23667 11414 23667 11409 23667 11409 23668 11414 23668 11411 23668 11413 23669 11412 23669 11414 23669 11414 23670 11412 23670 11415 23670 11415 23671 11412 23671 11420 23671 11420 23672 11412 23672 11413 23672 11416 23673 11417 23673 11418 23673 11421 23674 11422 23674 11333 23674 11420 23675 11416 23675 11415 23675 11420 23676 11419 23676 11417 23676 11422 23677 11417 23677 11419 23677 11422 23678 11419 23678 11333 23678 11418 23679 11417 23679 11422 23679 11418 23680 11422 23680 11421 23680 11416 23681 11420 23681 11417 23681 11415 23682 11416 23682 11418 23682 11333 23683 11101 23683 11421 23683 11425 23684 11432 23684 11426 23684 11430 23685 11438 23685 11428 23685 11424 23686 11428 23686 11429 23686 11425 23687 11424 23687 11433 23687 11425 23688 11433 23688 11442 23688 11425 23689 11442 23689 11432 23689 11430 23690 11427 23690 11431 23690 11424 23691 11434 23691 11433 23691 11427 23692 11426 23692 11435 23692 11430 23693 11436 23693 11438 23693 11424 23694 11429 23694 11434 23694 11426 23695 11444 23695 11435 23695 11430 23696 11431 23696 11436 23696 11428 23697 11438 23697 11437 23697 11428 23698 11437 23698 11429 23698 11427 23699 11435 23699 11431 23699 11426 23700 11432 23700 11444 23700 11429 23701 11437 23701 11423 23701 11433 23702 11434 23702 11443 23702 11433 23703 11443 23703 11442 23703 11432 23704 11442 23704 11440 23704 11431 23705 11435 23705 11441 23705 11436 23706 11431 23706 11439 23706 11432 23707 11440 23707 11444 23707 11429 23708 11423 23708 11434 23708 11435 23709 11444 23709 11441 23709 11436 23710 11439 23710 11438 23710 11438 23711 11439 23711 11437 23711 11431 23712 11441 23712 11439 23712 11434 23713 11423 23713 11443 23713 11461 23714 11466 23714 11457 23714 11449 23715 11445 23715 11455 23715 11448 23716 11446 23716 11456 23716 11447 23717 11448 23717 11450 23717 11446 23718 11449 23718 11451 23718 11447 23719 11453 23719 11452 23719 11447 23720 11450 23720 11454 23720 11450 23721 11461 23721 11454 23721 11446 23722 11451 23722 11456 23722 11449 23723 11455 23723 11458 23723 11447 23724 11454 23724 11453 23724 11445 23725 11459 23725 11455 23725 11450 23726 11448 23726 11461 23726 11449 23727 11458 23727 11451 23727 11452 23728 11453 23728 11464 23728 11452 23729 11464 23729 11445 23729 11445 23730 11463 23730 11459 23730 11451 23731 11457 23731 11456 23731 11456 23732 11466 23732 11448 23732 11454 23733 11461 23733 11152 23733 11445 23734 11464 23734 11463 23734 11451 23735 11458 23735 11460 23735 11451 23736 11460 23736 11457 23736 11458 23737 11455 23737 11465 23737 11455 23738 11459 23738 11462 23738 11458 23739 11465 23739 11460 23739 11448 23740 11466 23740 11461 23740 11454 23741 11152 23741 11453 23741 11456 23742 11457 23742 11466 23742 11459 23743 11463 23743 11462 23743 11455 23744 11462 23744 11465 23744 11453 23745 11152 23745 11464 23745 11470 23746 11474 23746 11475 23746 11475 23747 11468 23747 11471 23747 11485 23748 11487 23748 11478 23748 11467 23749 11469 23749 11470 23749 11467 23750 11472 23750 11473 23750 11467 23751 11473 23751 11469 23751 11480 23752 11476 23752 11481 23752 11472 23753 11480 23753 11482 23753 11472 23754 11482 23754 11473 23754 11468 23755 11479 23755 11471 23755 11473 23756 11477 23756 11469 23756 11468 23757 11475 23757 11479 23757 11471 23758 11484 23758 11476 23758 11471 23759 11479 23759 11484 23759 11473 23760 11482 23760 11486 23760 11476 23761 11484 23761 11478 23761 11476 23762 11478 23762 11481 23762 11473 23763 11486 23763 11477 23763 11475 23764 11474 23764 11479 23764 11469 23765 11477 23765 11483 23765 11469 23766 11483 23766 11470 23766 11474 23767 11470 23767 11489 23767 11470 23768 11483 23768 11489 23768 11474 23769 11489 23769 11479 23769 11480 23770 11481 23770 11487 23770 11480 23771 11487 23771 11482 23771 11483 23772 11477 23772 11488 23772 11479 23773 11490 23773 11484 23773 11484 23774 11490 23774 11478 23774 11482 23775 11487 23775 11485 23775 11479 23776 11489 23776 11490 23776 11481 23777 11478 23777 11487 23777 11482 23778 11485 23778 11486 23778 11477 23779 11486 23779 11488 23779 11483 23780 11488 23780 11489 23780 11493 23781 11496 23781 11491 23781 11511 23782 11509 23782 11498 23782 11491 23783 11504 23783 11507 23783 11491 23784 11502 23784 11497 23784 11492 23785 11501 23785 11495 23785 11492 23786 11495 23786 11493 23786 11492 23787 11494 23787 11501 23787 11494 23788 11497 23788 11503 23788 11491 23789 11507 23789 11498 23789 11491 23790 11498 23790 11502 23790 11493 23791 11505 23791 11496 23791 11491 23792 11496 23792 11504 23792 11494 23793 11503 23793 11499 23793 11494 23794 11499 23794 11501 23794 11493 23795 11500 23795 11505 23795 11493 23796 11495 23796 11500 23796 11497 23797 11509 23797 11503 23797 11497 23798 11502 23798 11509 23798 11495 23799 11501 23799 11506 23799 11496 23800 11505 23800 11504 23800 11495 23801 11506 23801 11500 23801 11501 23802 11499 23802 11508 23802 11504 23803 11505 23803 11513 23803 11501 23804 11508 23804 11506 23804 11505 23805 11510 23805 11513 23805 11502 23806 11498 23806 11509 23806 11500 23807 11510 23807 11505 23807 11503 23808 11509 23808 11511 23808 11503 23809 11511 23809 11499 23809 11504 23810 11513 23810 11507 23810 11500 23811 11506 23811 11512 23811 11500 23812 11512 23812 11510 23812 11499 23813 11511 23813 11508 23813 11507 23814 11513 23814 11498 23814 11528 23815 11539 23815 11534 23815 11526 23816 11539 23816 11528 23816 11531 23817 11514 23817 11526 23817 11534 23818 11514 23818 11531 23818 11514 23819 11539 23819 11526 23819 11539 23820 11514 23820 11534 23820 11518 23821 11538 23821 11519 23821 11515 23822 11516 23822 11518 23822 11518 23823 11516 23823 11538 23823 11517 23824 11516 23824 11515 23824 11519 23825 11516 23825 11517 23825 11538 23826 11516 23826 11519 23826 11519 23827 11517 23827 11521 23827 11521 23828 11517 23828 11522 23828 11521 23829 11535 23829 11520 23829 11522 23830 11536 23830 11521 23830 11521 23831 11536 23831 11535 23831 11523 23832 11536 23832 11522 23832 11520 23833 11536 23833 11523 23833 11535 23834 11536 23834 11520 23834 11520 23835 11523 23835 11524 23835 11524 23836 11523 23836 11530 23836 11527 23837 11524 23837 11529 23837 11529 23838 11524 23838 11530 23838 11527 23839 11525 23839 11528 23839 11529 23840 11525 23840 11527 23840 11526 23841 11537 23841 11529 23841 11528 23842 11525 23842 11526 23842 11526 23843 11525 23843 11537 23843 11529 23844 11537 23844 11525 23844 11532 23845 11531 23845 11515 23845 11515 23846 11531 23846 11517 23846 11517 23847 11531 23847 11526 23847 11517 23848 11526 23848 11522 23848 11522 23849 11526 23849 11529 23849 11522 23850 11529 23850 11523 23850 11523 23851 11529 23851 11530 23851 11534 23852 11531 23852 11533 23852 11533 23853 11531 23853 11532 23853 11533 23854 11532 23854 11518 23854 11518 23855 11532 23855 11515 23855 11533 23856 11518 23856 11534 23856 11534 23857 11518 23857 11519 23857 11534 23858 11519 23858 11528 23858 11528 23859 11519 23859 11521 23859 11528 23860 11521 23860 11527 23860 11527 23861 11521 23861 11520 23861 11527 23862 11520 23862 11524 23862 11552 23863 11564 23863 11542 23863 11553 23864 11564 23864 11552 23864 11540 23865 11541 23865 11553 23865 11542 23866 11541 23866 11540 23866 11541 23867 11564 23867 11553 23867 11564 23868 11541 23868 11542 23868 11541 23869 11543 23869 11545 23869 11541 23870 11545 23870 11543 23870 11546 23871 11565 23871 11557 23871 11544 23872 11543 23872 11546 23872 11546 23873 11543 23873 11565 23873 11545 23874 11543 23874 11544 23874 11565 23875 11543 23875 11545 23875 11565 23876 11545 23876 11557 23876 11557 23877 11545 23877 11548 23877 11548 23878 11545 23878 11547 23878 11548 23879 11561 23879 11559 23879 11547 23880 11563 23880 11548 23880 11548 23881 11563 23881 11561 23881 11549 23882 11563 23882 11547 23882 11559 23883 11563 23883 11549 23883 11561 23884 11563 23884 11559 23884 11559 23885 11549 23885 11550 23885 11550 23886 11549 23886 11551 23886 11558 23887 11550 23887 11554 23887 11554 23888 11550 23888 11551 23888 11558 23889 11560 23889 11552 23889 11554 23890 11560 23890 11558 23890 11553 23891 11562 23891 11554 23891 11552 23892 11560 23892 11553 23892 11553 23893 11560 23893 11562 23893 11554 23894 11562 23894 11560 23894 11555 23895 11540 23895 11544 23895 11544 23896 11540 23896 11545 23896 11545 23897 11540 23897 11553 23897 11545 23898 11553 23898 11547 23898 11547 23899 11553 23899 11554 23899 11547 23900 11554 23900 11549 23900 11549 23901 11554 23901 11551 23901 11542 23902 11540 23902 11556 23902 11556 23903 11540 23903 11555 23903 11556 23904 11555 23904 11546 23904 11546 23905 11555 23905 11544 23905 11556 23906 11546 23906 11542 23906 11542 23907 11546 23907 11557 23907 11542 23908 11557 23908 11552 23908 11552 23909 11557 23909 11548 23909 11552 23910 11548 23910 11558 23910 11558 23911 11548 23911 11559 23911 11558 23912 11559 23912 11550 23912 11567 23913 11591 23913 11566 23913 11581 23914 11591 23914 11567 23914 11583 23915 11568 23915 11581 23915 11566 23916 11568 23916 11583 23916 11568 23917 11591 23917 11581 23917 11591 23918 11568 23918 11566 23918 11569 23919 11590 23919 11570 23919 11572 23920 11573 23920 11569 23920 11569 23921 11573 23921 11590 23921 11571 23922 11573 23922 11572 23922 11570 23923 11573 23923 11571 23923 11590 23924 11573 23924 11570 23924 11570 23925 11571 23925 11576 23925 11576 23926 11571 23926 11574 23926 11576 23927 11587 23927 11577 23927 11574 23928 11589 23928 11576 23928 11576 23929 11589 23929 11587 23929 11575 23930 11589 23930 11574 23930 11577 23931 11589 23931 11575 23931 11587 23932 11589 23932 11577 23932 11577 23933 11575 23933 11585 23933 11585 23934 11575 23934 11582 23934 11579 23935 11585 23935 11578 23935 11578 23936 11585 23936 11582 23936 11579 23937 11586 23937 11567 23937 11578 23938 11586 23938 11579 23938 11581 23939 11588 23939 11578 23939 11567 23940 11586 23940 11581 23940 11581 23941 11586 23941 11588 23941 11578 23942 11588 23942 11586 23942 11580 23943 11583 23943 11572 23943 11572 23944 11583 23944 11571 23944 11571 23945 11583 23945 11581 23945 11571 23946 11581 23946 11574 23946 11574 23947 11581 23947 11578 23947 11574 23948 11578 23948 11575 23948 11575 23949 11578 23949 11582 23949 11566 23950 11583 23950 11584 23950 11584 23951 11583 23951 11580 23951 11584 23952 11580 23952 11569 23952 11569 23953 11580 23953 11572 23953 11584 23954 11569 23954 11566 23954 11566 23955 11569 23955 11570 23955 11566 23956 11570 23956 11567 23956 11567 23957 11570 23957 11576 23957 11567 23958 11576 23958 11579 23958 11579 23959 11576 23959 11577 23959 11579 23960 11577 23960 11585 23960 11605 23961 11616 23961 11609 23961 11602 23962 11616 23962 11605 23962 11606 23963 11617 23963 11602 23963 11609 23964 11617 23964 11606 23964 11617 23965 11616 23965 11602 23965 11616 23966 11617 23966 11609 23966 11596 23967 11615 23967 11594 23967 11592 23968 11593 23968 11596 23968 11596 23969 11593 23969 11615 23969 11595 23970 11593 23970 11592 23970 11594 23971 11593 23971 11595 23971 11615 23972 11593 23972 11594 23972 11594 23973 11595 23973 11610 23973 11610 23974 11595 23974 11598 23974 11610 23975 11613 23975 11599 23975 11598 23976 11614 23976 11610 23976 11610 23977 11614 23977 11613 23977 11597 23978 11614 23978 11598 23978 11599 23979 11614 23979 11597 23979 11613 23980 11614 23980 11599 23980 11599 23981 11597 23981 11611 23981 11611 23982 11597 23982 11600 23982 11601 23983 11611 23983 11603 23983 11603 23984 11611 23984 11600 23984 11601 23985 11612 23985 11605 23985 11603 23986 11612 23986 11601 23986 11602 23987 11604 23987 11603 23987 11605 23988 11612 23988 11602 23988 11602 23989 11612 23989 11604 23989 11603 23990 11604 23990 11612 23990 11608 23991 11606 23991 11592 23991 11592 23992 11606 23992 11595 23992 11595 23993 11606 23993 11602 23993 11595 23994 11602 23994 11598 23994 11598 23995 11602 23995 11603 23995 11598 23996 11603 23996 11597 23996 11597 23997 11603 23997 11600 23997 11609 23998 11606 23998 11607 23998 11607 23999 11606 23999 11608 23999 11607 24000 11608 24000 11596 24000 11596 24001 11608 24001 11592 24001 11607 24002 11596 24002 11609 24002 11609 24003 11596 24003 11594 24003 11609 24004 11594 24004 11605 24004 11605 24005 11594 24005 11610 24005 11605 24006 11610 24006 11601 24006 11601 24007 11610 24007 11599 24007 11601 24008 11599 24008 11611 24008 11618 24009 11642 24009 11636 24009 11619 24010 11642 24010 11618 24010 11620 24011 11621 24011 11619 24011 11621 24012 11642 24012 11619 24012 11621 24013 11620 24013 11642 24013 11642 24014 11620 24014 11636 24014 11621 24015 11625 24015 11623 24015 11621 24016 11623 24016 11625 24016 11626 24017 11643 24017 11622 24017 11624 24018 11625 24018 11626 24018 11626 24019 11625 24019 11643 24019 11623 24020 11625 24020 11624 24020 11643 24021 11625 24021 11623 24021 11643 24022 11623 24022 11622 24022 11622 24023 11623 24023 11637 24023 11637 24024 11623 24024 11628 24024 11637 24025 11639 24025 11627 24025 11628 24026 11641 24026 11637 24026 11637 24027 11641 24027 11639 24027 11629 24028 11641 24028 11628 24028 11627 24029 11641 24029 11629 24029 11639 24030 11641 24030 11627 24030 11627 24031 11629 24031 11630 24031 11630 24032 11629 24032 11633 24032 11632 24033 11630 24033 11631 24033 11631 24034 11630 24034 11633 24034 11632 24035 11638 24035 11618 24035 11631 24036 11638 24036 11632 24036 11619 24037 11640 24037 11631 24037 11618 24038 11638 24038 11619 24038 11619 24039 11638 24039 11640 24039 11631 24040 11640 24040 11638 24040 11635 24041 11620 24041 11624 24041 11624 24042 11620 24042 11623 24042 11623 24043 11620 24043 11619 24043 11623 24044 11619 24044 11628 24044 11628 24045 11619 24045 11631 24045 11628 24046 11631 24046 11629 24046 11629 24047 11631 24047 11633 24047 11636 24048 11620 24048 11634 24048 11634 24049 11620 24049 11635 24049 11634 24050 11635 24050 11626 24050 11626 24051 11635 24051 11624 24051 11634 24052 11626 24052 11636 24052 11636 24053 11626 24053 11622 24053 11636 24054 11622 24054 11618 24054 11618 24055 11622 24055 11637 24055 11618 24056 11637 24056 11632 24056 11632 24057 11637 24057 11627 24057 11632 24058 11627 24058 11630 24058 11644 24059 11667 24059 11646 24059 11661 24060 11667 24060 11644 24060 11645 24061 11669 24061 11661 24061 11646 24062 11669 24062 11645 24062 11669 24063 11667 24063 11661 24063 11667 24064 11669 24064 11646 24064 11663 24065 11668 24065 11647 24065 11649 24066 11650 24066 11663 24066 11663 24067 11650 24067 11668 24067 11648 24068 11650 24068 11649 24068 11647 24069 11650 24069 11648 24069 11668 24070 11650 24070 11647 24070 11647 24071 11648 24071 11653 24071 11653 24072 11648 24072 11651 24072 11653 24073 11665 24073 11654 24073 11651 24074 11666 24074 11653 24074 11653 24075 11666 24075 11665 24075 11652 24076 11666 24076 11651 24076 11654 24077 11666 24077 11652 24077 11665 24078 11666 24078 11654 24078 11654 24079 11652 24079 11655 24079 11655 24080 11652 24080 11662 24080 11656 24081 11655 24081 11657 24081 11657 24082 11655 24082 11662 24082 11656 24083 11659 24083 11644 24083 11657 24084 11659 24084 11656 24084 11661 24085 11658 24085 11657 24085 11644 24086 11659 24086 11661 24086 11661 24087 11659 24087 11658 24087 11657 24088 11658 24088 11659 24088 11660 24089 11645 24089 11649 24089 11649 24090 11645 24090 11648 24090 11648 24091 11645 24091 11661 24091 11648 24092 11661 24092 11651 24092 11651 24093 11661 24093 11657 24093 11651 24094 11657 24094 11652 24094 11652 24095 11657 24095 11662 24095 11646 24096 11645 24096 11664 24096 11664 24097 11645 24097 11660 24097 11664 24098 11660 24098 11663 24098 11663 24099 11660 24099 11649 24099 11664 24100 11663 24100 11646 24100 11646 24101 11663 24101 11647 24101 11646 24102 11647 24102 11644 24102 11644 24103 11647 24103 11653 24103 11644 24104 11653 24104 11656 24104 11656 24105 11653 24105 11654 24105 11656 24106 11654 24106 11655 24106 11683 24107 11670 24107 11672 24107 11688 24108 11670 24108 11683 24108 11671 24109 11673 24109 11688 24109 11672 24110 11673 24110 11671 24110 11673 24111 11670 24111 11688 24111 11670 24112 11673 24112 11672 24112 11675 24113 11695 24113 11678 24113 11677 24114 11674 24114 11675 24114 11675 24115 11674 24115 11695 24115 11676 24116 11674 24116 11677 24116 11678 24117 11674 24117 11676 24117 11695 24118 11674 24118 11678 24118 11678 24119 11676 24119 11681 24119 11681 24120 11676 24120 11687 24120 11681 24121 11692 24121 11679 24121 11681 24122 11687 24122 11692 24122 11680 24123 11694 24123 11687 24123 11679 24124 11694 24124 11680 24124 11692 24125 11687 24125 11694 24125 11692 24126 11694 24126 11679 24126 11679 24127 11680 24127 11682 24127 11682 24128 11680 24128 11689 24128 11686 24129 11682 24129 11685 24129 11685 24130 11682 24130 11689 24130 11686 24131 11684 24131 11683 24131 11685 24132 11684 24132 11686 24132 11688 24133 11693 24133 11685 24133 11683 24134 11684 24134 11688 24134 11688 24135 11684 24135 11693 24135 11685 24136 11693 24136 11684 24136 11691 24137 11671 24137 11677 24137 11677 24138 11671 24138 11676 24138 11676 24139 11671 24139 11688 24139 11676 24140 11688 24140 11687 24140 11687 24141 11688 24141 11685 24141 11687 24142 11685 24142 11680 24142 11680 24143 11685 24143 11689 24143 11672 24144 11671 24144 11690 24144 11690 24145 11671 24145 11691 24145 11690 24146 11691 24146 11675 24146 11675 24147 11691 24147 11677 24147 11690 24148 11675 24148 11672 24148 11672 24149 11675 24149 11678 24149 11672 24150 11678 24150 11683 24150 11683 24151 11678 24151 11681 24151 11683 24152 11681 24152 11686 24152 11686 24153 11681 24153 11679 24153 11686 24154 11679 24154 11682 24154 11693 24155 11694 24155 11687 24155 11693 24156 11687 24156 11694 24156 11698 24157 11696 24157 11697 24157 11714 24158 11696 24158 11698 24158 11699 24159 11700 24159 11714 24159 11697 24160 11700 24160 11699 24160 11700 24161 11696 24161 11714 24161 11696 24162 11700 24162 11697 24162 11700 24163 11703 24163 11705 24163 11700 24164 11705 24164 11703 24164 11704 24165 11721 24165 11702 24165 11701 24166 11703 24166 11704 24166 11704 24167 11703 24167 11721 24167 11705 24168 11703 24168 11701 24168 11721 24169 11703 24169 11705 24169 11721 24170 11705 24170 11702 24170 11702 24171 11705 24171 11708 24171 11708 24172 11705 24172 11706 24172 11708 24173 11719 24173 11709 24173 11706 24174 11720 24174 11708 24174 11708 24175 11720 24175 11719 24175 11707 24176 11720 24176 11706 24176 11709 24177 11720 24177 11707 24177 11719 24178 11720 24178 11709 24178 11709 24179 11707 24179 11717 24179 11717 24180 11707 24180 11710 24180 11713 24181 11717 24181 11711 24181 11711 24182 11717 24182 11710 24182 11713 24183 11718 24183 11698 24183 11711 24184 11718 24184 11713 24184 11714 24185 11712 24185 11711 24185 11698 24186 11718 24186 11714 24186 11714 24187 11718 24187 11712 24187 11711 24188 11712 24188 11718 24188 11716 24189 11699 24189 11701 24189 11701 24190 11699 24190 11705 24190 11705 24191 11699 24191 11714 24191 11705 24192 11714 24192 11706 24192 11706 24193 11714 24193 11711 24193 11706 24194 11711 24194 11707 24194 11707 24195 11711 24195 11710 24195 11697 24196 11699 24196 11715 24196 11715 24197 11699 24197 11716 24197 11715 24198 11716 24198 11704 24198 11704 24199 11716 24199 11701 24199 11715 24200 11704 24200 11697 24200 11697 24201 11704 24201 11702 24201 11697 24202 11702 24202 11698 24202 11698 24203 11702 24203 11708 24203 11698 24204 11708 24204 11713 24204 11713 24205 11708 24205 11709 24205 11713 24206 11709 24206 11717 24206 11736 24207 11747 24207 11722 24207 11739 24208 11747 24208 11736 24208 11740 24209 11723 24209 11739 24209 11722 24210 11723 24210 11740 24210 11723 24211 11747 24211 11739 24211 11747 24212 11723 24212 11722 24212 11728 24213 11746 24213 11724 24213 11725 24214 11726 24214 11728 24214 11728 24215 11726 24215 11746 24215 11727 24216 11726 24216 11725 24216 11724 24217 11726 24217 11727 24217 11746 24218 11726 24218 11724 24218 11724 24219 11727 24219 11732 24219 11732 24220 11727 24220 11730 24220 11732 24221 11743 24221 11729 24221 11730 24222 11744 24222 11732 24222 11732 24223 11744 24223 11743 24223 11731 24224 11744 24224 11730 24224 11729 24225 11744 24225 11731 24225 11743 24226 11744 24226 11729 24226 11729 24227 11731 24227 11734 24227 11734 24228 11731 24228 11733 24228 11735 24229 11734 24229 11737 24229 11737 24230 11734 24230 11733 24230 11735 24231 11738 24231 11736 24231 11737 24232 11738 24232 11735 24232 11739 24233 11745 24233 11737 24233 11736 24234 11738 24234 11739 24234 11739 24235 11738 24235 11745 24235 11737 24236 11745 24236 11738 24236 11741 24237 11740 24237 11725 24237 11725 24238 11740 24238 11727 24238 11727 24239 11740 24239 11739 24239 11727 24240 11739 24240 11730 24240 11730 24241 11739 24241 11737 24241 11730 24242 11737 24242 11731 24242 11731 24243 11737 24243 11733 24243 11722 24244 11740 24244 11742 24244 11742 24245 11740 24245 11741 24245 11742 24246 11741 24246 11728 24246 11728 24247 11741 24247 11725 24247 11742 24248 11728 24248 11722 24248 11722 24249 11728 24249 11724 24249 11722 24250 11724 24250 11736 24250 11736 24251 11724 24251 11732 24251 11736 24252 11732 24252 11735 24252 11735 24253 11732 24253 11729 24253 11735 24254 11729 24254 11734 24254 11749 24255 11750 24255 11748 24255 11765 24256 11750 24256 11749 24256 11767 24257 11751 24257 11765 24257 11748 24258 11751 24258 11767 24258 11751 24259 11750 24259 11765 24259 11750 24260 11751 24260 11748 24260 11755 24261 11756 24261 11757 24261 11753 24262 11754 24262 11755 24262 11755 24263 11754 24263 11756 24263 11752 24264 11754 24264 11753 24264 11757 24265 11754 24265 11752 24265 11756 24266 11754 24266 11757 24266 11757 24267 11752 24267 11760 24267 11760 24268 11752 24268 11758 24268 11760 24269 11772 24269 11761 24269 11760 24270 11758 24270 11772 24270 11759 24271 11773 24271 11758 24271 11761 24272 11773 24272 11759 24272 11772 24273 11758 24273 11773 24273 11772 24274 11773 24274 11761 24274 11761 24275 11759 24275 11762 24275 11762 24276 11759 24276 11769 24276 11766 24277 11762 24277 11768 24277 11768 24278 11762 24278 11769 24278 11766 24279 11763 24279 11749 24279 11768 24280 11763 24280 11766 24280 11765 24281 11764 24281 11768 24281 11749 24282 11763 24282 11765 24282 11765 24283 11763 24283 11764 24283 11768 24284 11764 24284 11763 24284 11771 24285 11767 24285 11753 24285 11753 24286 11767 24286 11752 24286 11752 24287 11767 24287 11765 24287 11752 24288 11765 24288 11758 24288 11758 24289 11765 24289 11768 24289 11758 24290 11768 24290 11759 24290 11759 24291 11768 24291 11769 24291 11748 24292 11767 24292 11770 24292 11770 24293 11767 24293 11771 24293 11770 24294 11771 24294 11755 24294 11755 24295 11771 24295 11753 24295 11770 24296 11755 24296 11748 24296 11748 24297 11755 24297 11757 24297 11748 24298 11757 24298 11749 24298 11749 24299 11757 24299 11760 24299 11749 24300 11760 24300 11766 24300 11766 24301 11760 24301 11761 24301 11766 24302 11761 24302 11762 24302 11764 24303 11773 24303 11758 24303 11764 24304 11758 24304 11773 24304 11774 24305 11798 24305 11793 24305 11788 24306 11798 24306 11774 24306 11791 24307 11775 24307 11788 24307 11793 24308 11775 24308 11791 24308 11775 24309 11798 24309 11788 24309 11798 24310 11775 24310 11793 24310 11779 24311 11799 24311 11780 24311 11777 24312 11776 24312 11779 24312 11779 24313 11776 24313 11799 24313 11778 24314 11776 24314 11777 24314 11780 24315 11776 24315 11778 24315 11799 24316 11776 24316 11780 24316 11780 24317 11778 24317 11783 24317 11783 24318 11778 24318 11781 24318 11783 24319 11795 24319 11784 24319 11781 24320 11797 24320 11783 24320 11783 24321 11797 24321 11795 24321 11782 24322 11797 24322 11781 24322 11784 24323 11797 24323 11782 24323 11795 24324 11797 24324 11784 24324 11784 24325 11782 24325 11785 24325 11785 24326 11782 24326 11786 24326 11794 24327 11785 24327 11787 24327 11787 24328 11785 24328 11786 24328 11794 24329 11789 24329 11774 24329 11787 24330 11789 24330 11794 24330 11788 24331 11796 24331 11787 24331 11774 24332 11789 24332 11788 24332 11788 24333 11789 24333 11796 24333 11787 24334 11796 24334 11789 24334 11790 24335 11791 24335 11777 24335 11777 24336 11791 24336 11778 24336 11778 24337 11791 24337 11788 24337 11778 24338 11788 24338 11781 24338 11781 24339 11788 24339 11787 24339 11781 24340 11787 24340 11782 24340 11782 24341 11787 24341 11786 24341 11793 24342 11791 24342 11792 24342 11792 24343 11791 24343 11790 24343 11792 24344 11790 24344 11779 24344 11779 24345 11790 24345 11777 24345 11792 24346 11779 24346 11793 24346 11793 24347 11779 24347 11780 24347 11793 24348 11780 24348 11774 24348 11774 24349 11780 24349 11783 24349 11774 24350 11783 24350 11794 24350 11794 24351 11783 24351 11784 24351 11794 24352 11784 24352 11785 24352 11818 24353 11800 24353 11801 24353 11812 24354 11800 24354 11818 24354 11824 24355 11825 24355 11812 24355 11825 24356 11800 24356 11812 24356 11825 24357 11824 24357 11800 24357 11800 24358 11824 24358 11801 24358 11817 24359 11823 24359 11802 24359 11803 24360 11804 24360 11817 24360 11817 24361 11804 24361 11823 24361 11805 24362 11804 24362 11803 24362 11802 24363 11804 24363 11805 24363 11823 24364 11804 24364 11802 24364 11802 24365 11805 24365 11808 24365 11808 24366 11805 24366 11813 24366 11808 24367 11820 24367 11806 24367 11813 24368 11821 24368 11808 24368 11808 24369 11821 24369 11820 24369 11807 24370 11821 24370 11813 24370 11806 24371 11821 24371 11807 24371 11820 24372 11821 24372 11806 24372 11806 24373 11807 24373 11819 24373 11819 24374 11807 24374 11815 24374 11810 24375 11819 24375 11814 24375 11814 24376 11819 24376 11815 24376 11810 24377 11809 24377 11818 24377 11814 24378 11809 24378 11810 24378 11812 24379 11822 24379 11814 24379 11818 24380 11809 24380 11812 24380 11812 24381 11809 24381 11822 24381 11814 24382 11822 24382 11809 24382 11811 24383 11824 24383 11803 24383 11803 24384 11824 24384 11805 24384 11805 24385 11824 24385 11812 24385 11805 24386 11812 24386 11813 24386 11813 24387 11812 24387 11814 24387 11813 24388 11814 24388 11807 24388 11807 24389 11814 24389 11815 24389 11801 24390 11824 24390 11816 24390 11816 24391 11824 24391 11811 24391 11816 24392 11811 24392 11817 24392 11817 24393 11811 24393 11803 24393 11816 24394 11817 24394 11801 24394 11801 24395 11817 24395 11802 24395 11801 24396 11802 24396 11818 24396 11818 24397 11802 24397 11808 24397 11818 24398 11808 24398 11810 24398 11810 24399 11808 24399 11806 24399 11810 24400 11806 24400 11819 24400 11836 24401 11850 24401 11826 24401 11838 24402 11850 24402 11836 24402 11827 24403 11828 24403 11838 24403 11828 24404 11850 24404 11838 24404 11828 24405 11827 24405 11850 24405 11850 24406 11827 24406 11826 24406 11830 24407 11851 24407 11832 24407 11831 24408 11829 24408 11830 24408 11830 24409 11829 24409 11851 24409 11839 24410 11829 24410 11831 24410 11832 24411 11829 24411 11839 24411 11851 24412 11829 24412 11832 24412 11832 24413 11839 24413 11834 24413 11834 24414 11839 24414 11840 24414 11834 24415 11846 24415 11844 24415 11840 24416 11848 24416 11834 24416 11834 24417 11848 24417 11846 24417 11833 24418 11848 24418 11840 24418 11844 24419 11848 24419 11833 24419 11846 24420 11848 24420 11844 24420 11844 24421 11833 24421 11845 24421 11845 24422 11833 24422 11841 24422 11835 24423 11845 24423 11837 24423 11837 24424 11845 24424 11841 24424 11835 24425 11849 24425 11836 24425 11837 24426 11849 24426 11835 24426 11838 24427 11847 24427 11837 24427 11836 24428 11849 24428 11838 24428 11838 24429 11849 24429 11847 24429 11837 24430 11847 24430 11849 24430 11843 24431 11827 24431 11831 24431 11831 24432 11827 24432 11839 24432 11839 24433 11827 24433 11838 24433 11839 24434 11838 24434 11840 24434 11840 24435 11838 24435 11837 24435 11840 24436 11837 24436 11833 24436 11833 24437 11837 24437 11841 24437 11826 24438 11827 24438 11842 24438 11842 24439 11827 24439 11843 24439 11842 24440 11843 24440 11830 24440 11830 24441 11843 24441 11831 24441 11842 24442 11830 24442 11826 24442 11826 24443 11830 24443 11832 24443 11826 24444 11832 24444 11836 24444 11836 24445 11832 24445 11834 24445 11836 24446 11834 24446 11835 24446 11835 24447 11834 24447 11844 24447 11835 24448 11844 24448 11845 24448 11867 24449 11852 24449 11869 24449 11863 24450 11852 24450 11867 24450 11870 24451 11853 24451 11863 24451 11869 24452 11853 24452 11870 24452 11853 24453 11852 24453 11863 24453 11852 24454 11853 24454 11869 24454 11853 24455 11855 24455 11854 24455 11853 24456 11854 24456 11855 24456 11858 24457 11878 24457 11873 24457 11856 24458 11855 24458 11858 24458 11858 24459 11855 24459 11878 24459 11857 24460 11855 24460 11856 24460 11873 24461 11854 24461 11857 24461 11857 24462 11854 24462 11855 24462 11878 24463 11855 24463 11854 24463 11878 24464 11854 24464 11873 24464 11873 24465 11857 24465 11874 24465 11874 24466 11857 24466 11859 24466 11874 24467 11876 24467 11860 24467 11859 24468 11877 24468 11874 24468 11874 24469 11877 24469 11876 24469 11861 24470 11877 24470 11859 24470 11860 24471 11877 24471 11861 24471 11876 24472 11877 24472 11860 24472 11860 24473 11861 24473 11862 24473 11862 24474 11861 24474 11868 24474 11875 24475 11862 24475 11864 24475 11864 24476 11862 24476 11868 24476 11875 24477 11865 24477 11867 24477 11864 24478 11865 24478 11875 24478 11863 24479 11866 24479 11864 24479 11867 24480 11865 24480 11863 24480 11863 24481 11865 24481 11866 24481 11864 24482 11866 24482 11865 24482 11871 24483 11870 24483 11856 24483 11856 24484 11870 24484 11857 24484 11857 24485 11870 24485 11863 24485 11857 24486 11863 24486 11859 24486 11859 24487 11863 24487 11864 24487 11859 24488 11864 24488 11861 24488 11861 24489 11864 24489 11868 24489 11869 24490 11870 24490 11872 24490 11872 24491 11870 24491 11871 24491 11872 24492 11871 24492 11858 24492 11858 24493 11871 24493 11856 24493 11872 24494 11858 24494 11869 24494 11869 24495 11858 24495 11873 24495 11869 24496 11873 24496 11867 24496 11867 24497 11873 24497 11874 24497 11867 24498 11874 24498 11875 24498 11875 24499 11874 24499 11860 24499 11875 24500 11860 24500 11862 24500 11893 24501 11880 24501 11899 24501 11881 24502 11880 24502 11893 24502 11894 24503 11879 24503 11881 24503 11899 24504 11879 24504 11894 24504 11879 24505 11880 24505 11881 24505 11880 24506 11879 24506 11899 24506 11879 24507 11884 24507 11882 24507 11879 24508 11882 24508 11884 24508 11885 24509 11904 24509 11886 24509 11883 24510 11884 24510 11885 24510 11885 24511 11884 24511 11904 24511 11882 24512 11884 24512 11883 24512 11904 24513 11884 24513 11882 24513 11904 24514 11882 24514 11886 24514 11886 24515 11882 24515 11887 24515 11887 24516 11882 24516 11895 24516 11887 24517 11901 24517 11900 24517 11887 24518 11895 24518 11901 24518 11896 24519 11903 24519 11895 24519 11900 24520 11903 24520 11896 24520 11901 24521 11895 24521 11903 24521 11901 24522 11903 24522 11900 24522 11900 24523 11896 24523 11889 24523 11889 24524 11896 24524 11890 24524 11888 24525 11889 24525 11892 24525 11892 24526 11889 24526 11890 24526 11888 24527 11891 24527 11893 24527 11892 24528 11891 24528 11888 24528 11881 24529 11902 24529 11892 24529 11893 24530 11891 24530 11881 24530 11881 24531 11891 24531 11902 24531 11892 24532 11902 24532 11891 24532 11898 24533 11894 24533 11883 24533 11883 24534 11894 24534 11882 24534 11882 24535 11894 24535 11881 24535 11882 24536 11881 24536 11895 24536 11895 24537 11881 24537 11892 24537 11895 24538 11892 24538 11896 24538 11896 24539 11892 24539 11890 24539 11899 24540 11894 24540 11897 24540 11897 24541 11894 24541 11898 24541 11897 24542 11898 24542 11885 24542 11885 24543 11898 24543 11883 24543 11897 24544 11885 24544 11899 24544 11899 24545 11885 24545 11886 24545 11899 24546 11886 24546 11893 24546 11893 24547 11886 24547 11887 24547 11893 24548 11887 24548 11888 24548 11888 24549 11887 24549 11900 24549 11888 24550 11900 24550 11889 24550 11902 24551 11903 24551 11895 24551 11902 24552 11895 24552 11903 24552 11923 24553 11930 24553 11905 24553 11920 24554 11930 24554 11923 24554 11906 24555 11907 24555 11920 24555 11905 24556 11907 24556 11906 24556 11907 24557 11930 24557 11920 24557 11930 24558 11907 24558 11905 24558 11911 24559 11931 24559 11912 24559 11909 24560 11910 24560 11911 24560 11911 24561 11910 24561 11931 24561 11908 24562 11910 24562 11909 24562 11912 24563 11910 24563 11908 24563 11931 24564 11910 24564 11912 24564 11912 24565 11908 24565 11917 24565 11917 24566 11908 24566 11914 24566 11917 24567 11927 24567 11913 24567 11914 24568 11929 24568 11917 24568 11917 24569 11929 24569 11927 24569 11916 24570 11915 24570 11914 24570 11913 24571 11915 24571 11916 24571 11914 24572 11915 24572 11929 24572 11927 24573 11929 24573 11915 24573 11927 24574 11915 24574 11913 24574 11913 24575 11916 24575 11918 24575 11918 24576 11916 24576 11919 24576 11922 24577 11918 24577 11921 24577 11921 24578 11918 24578 11919 24578 11922 24579 11926 24579 11923 24579 11921 24580 11926 24580 11922 24580 11920 24581 11928 24581 11921 24581 11923 24582 11926 24582 11920 24582 11920 24583 11926 24583 11928 24583 11921 24584 11928 24584 11926 24584 11924 24585 11906 24585 11909 24585 11909 24586 11906 24586 11908 24586 11908 24587 11906 24587 11920 24587 11908 24588 11920 24588 11914 24588 11914 24589 11920 24589 11921 24589 11914 24590 11921 24590 11916 24590 11916 24591 11921 24591 11919 24591 11905 24592 11906 24592 11925 24592 11925 24593 11906 24593 11924 24593 11925 24594 11924 24594 11911 24594 11911 24595 11924 24595 11909 24595 11925 24596 11911 24596 11905 24596 11905 24597 11911 24597 11912 24597 11905 24598 11912 24598 11923 24598 11923 24599 11912 24599 11917 24599 11923 24600 11917 24600 11922 24600 11922 24601 11917 24601 11913 24601 11922 24602 11913 24602 11918 24602 11928 24603 11915 24603 11929 24603 11928 24604 11929 24604 11915 24604 11932 24605 11956 24605 11949 24605 11933 24606 11956 24606 11932 24606 11934 24607 11935 24607 11933 24607 11949 24608 11935 24608 11934 24608 11935 24609 11956 24609 11933 24609 11956 24610 11935 24610 11949 24610 11950 24611 11957 24611 11951 24611 11937 24612 11936 24612 11950 24612 11950 24613 11936 24613 11957 24613 11938 24614 11936 24614 11937 24614 11951 24615 11936 24615 11938 24615 11957 24616 11936 24616 11951 24616 11951 24617 11938 24617 11941 24617 11941 24618 11938 24618 11940 24618 11941 24619 11952 24619 11942 24619 11941 24620 11940 24620 11952 24620 11939 24621 11954 24621 11940 24621 11942 24622 11954 24622 11939 24622 11952 24623 11940 24623 11954 24623 11952 24624 11954 24624 11942 24624 11942 24625 11939 24625 11943 24625 11943 24626 11939 24626 11944 24626 11945 24627 11943 24627 11946 24627 11946 24628 11943 24628 11944 24628 11945 24629 11955 24629 11932 24629 11946 24630 11955 24630 11945 24630 11933 24631 11953 24631 11946 24631 11932 24632 11955 24632 11933 24632 11933 24633 11955 24633 11953 24633 11946 24634 11953 24634 11955 24634 11947 24635 11934 24635 11937 24635 11937 24636 11934 24636 11938 24636 11938 24637 11934 24637 11933 24637 11938 24638 11933 24638 11940 24638 11940 24639 11933 24639 11946 24639 11940 24640 11946 24640 11939 24640 11939 24641 11946 24641 11944 24641 11949 24642 11934 24642 11948 24642 11948 24643 11934 24643 11947 24643 11948 24644 11947 24644 11950 24644 11950 24645 11947 24645 11937 24645 11948 24646 11950 24646 11949 24646 11949 24647 11950 24647 11951 24647 11949 24648 11951 24648 11932 24648 11932 24649 11951 24649 11941 24649 11932 24650 11941 24650 11945 24650 11945 24651 11941 24651 11942 24651 11945 24652 11942 24652 11943 24652 11953 24653 11940 24653 11954 24653 11940 24654 11953 24654 11954 24654 11972 24655 11960 24655 11979 24655 11975 24656 11960 24656 11972 24656 11958 24657 11959 24657 11975 24657 11979 24658 11959 24658 11958 24658 11959 24659 11960 24659 11975 24659 11960 24660 11959 24660 11979 24660 11964 24661 11983 24661 11965 24661 11961 24662 11962 24662 11964 24662 11964 24663 11962 24663 11983 24663 11963 24664 11962 24664 11961 24664 11965 24665 11962 24665 11963 24665 11983 24666 11962 24666 11965 24666 11965 24667 11963 24667 11966 24667 11966 24668 11963 24668 11967 24668 11966 24669 11981 24669 11969 24669 11967 24670 11968 24670 11966 24670 11966 24671 11968 24671 11981 24671 11977 24672 11968 24672 11967 24672 11969 24673 11968 24673 11977 24673 11981 24674 11968 24674 11969 24674 11969 24675 11977 24675 11971 24675 11971 24676 11977 24676 11970 24676 11980 24677 11971 24677 11974 24677 11974 24678 11971 24678 11970 24678 11980 24679 11973 24679 11972 24679 11974 24680 11973 24680 11980 24680 11975 24681 11982 24681 11974 24681 11972 24682 11973 24682 11975 24682 11975 24683 11973 24683 11982 24683 11974 24684 11982 24684 11973 24684 11976 24685 11958 24685 11961 24685 11961 24686 11958 24686 11963 24686 11963 24687 11958 24687 11975 24687 11963 24688 11975 24688 11967 24688 11967 24689 11975 24689 11974 24689 11967 24690 11974 24690 11977 24690 11977 24691 11974 24691 11970 24691 11979 24692 11958 24692 11978 24692 11978 24693 11958 24693 11976 24693 11978 24694 11976 24694 11964 24694 11964 24695 11976 24695 11961 24695 11978 24696 11964 24696 11979 24696 11979 24697 11964 24697 11965 24697 11979 24698 11965 24698 11972 24698 11972 24699 11965 24699 11966 24699 11972 24700 11966 24700 11980 24700 11980 24701 11966 24701 11969 24701 11980 24702 11969 24702 11971 24702 12002 24703 12008 24703 12001 24703 11994 24704 12008 24704 12002 24704 11984 24705 11985 24705 11994 24705 12001 24706 11985 24706 11984 24706 11985 24707 12008 24707 11994 24707 12008 24708 11985 24708 12001 24708 12000 24709 12009 24709 11988 24709 11986 24710 11987 24710 12000 24710 12000 24711 11987 24711 12009 24711 11996 24712 11987 24712 11986 24712 11988 24713 11987 24713 11996 24713 12009 24714 11987 24714 11988 24714 11988 24715 11996 24715 12003 24715 12003 24716 11996 24716 11989 24716 12003 24717 12005 24717 11991 24717 12003 24718 11989 24718 12005 24718 11990 24719 12007 24719 11989 24719 11991 24720 12007 24720 11990 24720 12005 24721 11989 24721 12007 24721 12005 24722 12007 24722 11991 24722 11991 24723 11990 24723 11992 24723 11992 24724 11990 24724 11997 24724 11995 24725 11992 24725 11993 24725 11993 24726 11992 24726 11997 24726 11995 24727 12004 24727 12002 24727 11993 24728 12004 24728 11995 24728 11994 24729 12006 24729 11993 24729 12002 24730 12004 24730 11994 24730 11994 24731 12004 24731 12006 24731 11993 24732 12006 24732 12004 24732 11999 24733 11984 24733 11986 24733 11986 24734 11984 24734 11996 24734 11996 24735 11984 24735 11994 24735 11996 24736 11994 24736 11989 24736 11989 24737 11994 24737 11993 24737 11989 24738 11993 24738 11990 24738 11990 24739 11993 24739 11997 24739 12001 24740 11984 24740 11998 24740 11998 24741 11984 24741 11999 24741 11998 24742 11999 24742 12000 24742 12000 24743 11999 24743 11986 24743 11998 24744 12000 24744 12001 24744 12001 24745 12000 24745 11988 24745 12001 24746 11988 24746 12002 24746 12002 24747 11988 24747 12003 24747 12002 24748 12003 24748 11995 24748 11995 24749 12003 24749 11991 24749 11995 24750 11991 24750 11992 24750 12007 24751 12006 24751 11989 24751 11989 24752 12006 24752 12007 24752 12011 24753 12035 24753 12010 24753 12026 24754 12035 24754 12011 24754 12012 24755 12013 24755 12026 24755 12010 24756 12013 24756 12012 24756 12013 24757 12035 24757 12026 24757 12035 24758 12013 24758 12010 24758 12014 24759 12013 24759 12017 24759 12017 24760 12013 24760 12014 24760 12018 24761 12016 24761 12019 24761 12015 24762 12014 24762 12018 24762 12018 24763 12014 24763 12016 24763 12017 24764 12014 24764 12015 24764 12016 24765 12014 24765 12017 24765 12016 24766 12017 24766 12019 24766 12019 24767 12017 24767 12021 24767 12021 24768 12017 24768 12028 24768 12021 24769 12032 24769 12022 24769 12021 24770 12028 24770 12032 24770 12020 24771 12033 24771 12028 24771 12022 24772 12033 24772 12020 24772 12032 24773 12028 24773 12033 24773 12032 24774 12033 24774 12022 24774 12022 24775 12020 24775 12031 24775 12031 24776 12020 24776 12029 24776 12023 24777 12031 24777 12024 24777 12024 24778 12031 24778 12029 24778 12023 24779 12034 24779 12011 24779 12024 24780 12034 24780 12023 24780 12026 24781 12025 24781 12024 24781 12011 24782 12034 24782 12026 24782 12026 24783 12034 24783 12025 24783 12024 24784 12025 24784 12034 24784 12027 24785 12012 24785 12015 24785 12015 24786 12012 24786 12017 24786 12017 24787 12012 24787 12026 24787 12017 24788 12026 24788 12028 24788 12028 24789 12026 24789 12024 24789 12028 24790 12024 24790 12020 24790 12020 24791 12024 24791 12029 24791 12010 24792 12012 24792 12030 24792 12030 24793 12012 24793 12027 24793 12030 24794 12027 24794 12018 24794 12018 24795 12027 24795 12015 24795 12030 24796 12018 24796 12010 24796 12010 24797 12018 24797 12019 24797 12010 24798 12019 24798 12011 24798 12011 24799 12019 24799 12021 24799 12011 24800 12021 24800 12023 24800 12023 24801 12021 24801 12022 24801 12023 24802 12022 24802 12031 24802 12025 24803 12033 24803 12028 24803 12025 24804 12028 24804 12033 24804 12037 24805 12038 24805 12040 24805 12036 24806 12038 24806 12037 24806 12039 24807 12041 24807 12036 24807 12040 24808 12041 24808 12039 24808 12041 24809 12038 24809 12036 24809 12038 24810 12041 24810 12040 24810 12041 24811 12043 24811 12042 24811 12043 24812 12041 24812 12042 24812 12056 24813 12061 24813 12044 24813 12052 24814 12043 24814 12056 24814 12056 24815 12043 24815 12061 24815 12042 24816 12043 24816 12052 24816 12061 24817 12043 24817 12042 24817 12061 24818 12042 24818 12044 24818 12044 24819 12042 24819 12045 24819 12045 24820 12042 24820 12046 24820 12045 24821 12058 24821 12047 24821 12046 24822 12060 24822 12045 24822 12045 24823 12060 24823 12058 24823 12053 24824 12060 24824 12046 24824 12047 24825 12060 24825 12053 24825 12058 24826 12060 24826 12047 24826 12047 24827 12053 24827 12057 24827 12057 24828 12053 24828 12054 24828 12048 24829 12057 24829 12050 24829 12050 24830 12057 24830 12054 24830 12048 24831 12049 24831 12037 24831 12050 24832 12049 24832 12048 24832 12036 24833 12059 24833 12050 24833 12037 24834 12049 24834 12036 24834 12036 24835 12049 24835 12059 24835 12050 24836 12059 24836 12049 24836 12051 24837 12039 24837 12052 24837 12052 24838 12039 24838 12042 24838 12042 24839 12039 24839 12036 24839 12042 24840 12036 24840 12046 24840 12046 24841 12036 24841 12050 24841 12046 24842 12050 24842 12053 24842 12053 24843 12050 24843 12054 24843 12040 24844 12039 24844 12055 24844 12055 24845 12039 24845 12051 24845 12055 24846 12051 24846 12056 24846 12056 24847 12051 24847 12052 24847 12055 24848 12056 24848 12040 24848 12040 24849 12056 24849 12044 24849 12040 24850 12044 24850 12037 24850 12037 24851 12044 24851 12045 24851 12037 24852 12045 24852 12048 24852 12048 24853 12045 24853 12047 24853 12048 24854 12047 24854 12057 24854 12063 24855 12062 24855 12064 24855 12077 24856 12062 24856 12063 24856 12087 24857 12065 24857 12077 24857 12065 24858 12062 24858 12077 24858 12065 24859 12087 24859 12062 24859 12062 24860 12087 24860 12064 24860 12069 24861 12086 24861 12070 24861 12066 24862 12067 24862 12069 24862 12069 24863 12067 24863 12086 24863 12068 24864 12067 24864 12066 24864 12070 24865 12067 24865 12068 24865 12086 24866 12067 24866 12070 24866 12070 24867 12068 24867 12071 24867 12071 24868 12068 24868 12072 24868 12071 24869 12083 24869 12073 24869 12072 24870 12084 24870 12071 24870 12071 24871 12084 24871 12083 24871 12074 24872 12084 24872 12072 24872 12073 24873 12084 24873 12074 24873 12083 24874 12084 24874 12073 24874 12073 24875 12074 24875 12075 24875 12075 24876 12074 24876 12076 24876 12079 24877 12075 24877 12078 24877 12078 24878 12075 24878 12076 24878 12079 24879 12082 24879 12063 24879 12078 24880 12082 24880 12079 24880 12077 24881 12085 24881 12078 24881 12063 24882 12082 24882 12077 24882 12077 24883 12082 24883 12085 24883 12078 24884 12085 24884 12082 24884 12080 24885 12087 24885 12066 24885 12066 24886 12087 24886 12068 24886 12068 24887 12087 24887 12077 24887 12068 24888 12077 24888 12072 24888 12072 24889 12077 24889 12078 24889 12072 24890 12078 24890 12074 24890 12074 24891 12078 24891 12076 24891 12064 24892 12087 24892 12081 24892 12081 24893 12087 24893 12080 24893 12081 24894 12080 24894 12069 24894 12069 24895 12080 24895 12066 24895 12081 24896 12069 24896 12064 24896 12064 24897 12069 24897 12070 24897 12064 24898 12070 24898 12063 24898 12063 24899 12070 24899 12071 24899 12063 24900 12071 24900 12079 24900 12079 24901 12071 24901 12073 24901 12079 24902 12073 24902 12075 24902 12102 24903 12111 24903 12089 24903 12090 24904 12111 24904 12102 24904 12088 24905 12113 24905 12090 24905 12089 24906 12113 24906 12088 24906 12113 24907 12111 24907 12090 24907 12111 24908 12113 24908 12089 24908 12091 24909 12112 24909 12095 24909 12092 24910 12093 24910 12091 24910 12091 24911 12093 24911 12112 24911 12094 24912 12093 24912 12092 24912 12095 24913 12093 24913 12094 24913 12112 24914 12093 24914 12095 24914 12095 24915 12094 24915 12097 24915 12097 24916 12094 24916 12103 24916 12097 24917 12108 24917 12098 24917 12103 24918 12110 24918 12097 24918 12097 24919 12110 24919 12108 24919 12096 24920 12110 24920 12103 24920 12098 24921 12110 24921 12096 24921 12108 24922 12110 24922 12098 24922 12098 24923 12096 24923 12106 24923 12106 24924 12096 24924 12099 24924 12101 24925 12106 24925 12100 24925 12100 24926 12106 24926 12099 24926 12101 24927 12107 24927 12102 24927 12100 24928 12107 24928 12101 24928 12090 24929 12109 24929 12100 24929 12102 24930 12107 24930 12090 24930 12090 24931 12107 24931 12109 24931 12100 24932 12109 24932 12107 24932 12104 24933 12088 24933 12092 24933 12092 24934 12088 24934 12094 24934 12094 24935 12088 24935 12090 24935 12094 24936 12090 24936 12103 24936 12103 24937 12090 24937 12100 24937 12103 24938 12100 24938 12096 24938 12096 24939 12100 24939 12099 24939 12089 24940 12088 24940 12105 24940 12105 24941 12088 24941 12104 24941 12105 24942 12104 24942 12091 24942 12091 24943 12104 24943 12092 24943 12105 24944 12091 24944 12089 24944 12089 24945 12091 24945 12095 24945 12089 24946 12095 24946 12102 24946 12102 24947 12095 24947 12097 24947 12102 24948 12097 24948 12101 24948 12101 24949 12097 24949 12098 24949 12101 24950 12098 24950 12106 24950 12129 24951 12139 24951 12130 24951 12126 24952 12139 24952 12129 24952 12114 24953 12115 24953 12126 24953 12130 24954 12115 24954 12114 24954 12115 24955 12139 24955 12126 24955 12139 24956 12115 24956 12130 24956 12119 24957 12138 24957 12120 24957 12117 24958 12116 24958 12119 24958 12119 24959 12116 24959 12138 24959 12118 24960 12116 24960 12117 24960 12120 24961 12116 24961 12118 24961 12138 24962 12116 24962 12120 24962 12120 24963 12118 24963 12123 24963 12123 24964 12118 24964 12121 24964 12123 24965 12136 24965 12124 24965 12121 24966 12137 24966 12123 24966 12123 24967 12137 24967 12136 24967 12122 24968 12137 24968 12121 24968 12124 24969 12137 24969 12122 24969 12136 24970 12137 24970 12124 24970 12124 24971 12122 24971 12134 24971 12134 24972 12122 24972 12125 24972 12133 24973 12134 24973 12127 24973 12127 24974 12134 24974 12125 24974 12133 24975 12135 24975 12129 24975 12127 24976 12135 24976 12133 24976 12126 24977 12128 24977 12127 24977 12129 24978 12135 24978 12126 24978 12126 24979 12135 24979 12128 24979 12127 24980 12128 24980 12135 24980 12132 24981 12114 24981 12117 24981 12117 24982 12114 24982 12118 24982 12118 24983 12114 24983 12126 24983 12118 24984 12126 24984 12121 24984 12121 24985 12126 24985 12127 24985 12121 24986 12127 24986 12122 24986 12122 24987 12127 24987 12125 24987 12130 24988 12114 24988 12131 24988 12131 24989 12114 24989 12132 24989 12131 24990 12132 24990 12119 24990 12119 24991 12132 24991 12117 24991 12131 24992 12119 24992 12130 24992 12130 24993 12119 24993 12120 24993 12130 24994 12120 24994 12129 24994 12129 24995 12120 24995 12123 24995 12129 24996 12123 24996 12133 24996 12133 24997 12123 24997 12124 24997 12133 24998 12124 24998 12134 24998</p>\n                </triangles>\n            </mesh>\n        </geometry>\n    </library_geometries>\n    <library_visual_scenes>\n        <visual_scene id=\"VisualSceneNode\" name=\"VisualScene\">\n            <node id=\"node\" name=\"node\">\n                <instance_geometry url=\"#shape0-lib\">\n                    <bind_material>\n                        <technique_common/>\n                    </bind_material>\n                </instance_geometry>\n            </node>\n        </visual_scene>\n    </library_visual_scenes>\n    <scene>\n        <instance_visual_scene url=\"#VisualSceneNode\"/>\n    </scene>\n</COLLADA>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/ur3_base/model-bunri.sdf",
    "content": "<?xml version='1.0'?>\n<sdf version='1.6'>\n  <model name='ur3_base'>\n    <link name='base'>\n      <pose frame=''>0 0 0 0 -0 3.14</pose>\n      <self_collide>0</self_collide>\n      <kinematic>0</kinematic>\n      <gravity>1</gravity>\n      <inertial>\n        <mass>1</mass>\n        <pose frame=''>0 0 0 0 -0 0</pose>\n        <inertia>\n          <ixx>1</ixx>\n          <ixy>0</ixy>\n          <ixz>0</ixz>\n          <iyy>1</iyy>\n          <iyz>0</iyz>\n          <izz>1</izz>\n        </inertia>\n      </inertial>\n      <visual name='base_visual'>\n        <geometry>\n          <mesh>\n            <uri>model://ur3_base/meshes/ur3_base.stl</uri>\n            <scale>1 1 1</scale>\n          </mesh>\n        </geometry>\n        <material>\n          <script>\n            <name>Gazebo/DarkGrey</name>\n            <uri>__default__</uri>\n          </script>\n          <shader type='pixel'>\n            <normal_map>__default__</normal_map>\n          </shader>\n          <ambient>0.175 0.175 0.175 1</ambient>\n          <diffuse>0.175 0.175 0.175 1</diffuse>\n          <specular>0.175 0.175 0.175 1</specular>\n          <emissive>0 0 0 1</emissive>\n        </material>\n        <pose frame=''>0 0 0 0 -0 0</pose>\n        <transparency>0</transparency>\n        <cast_shadows>1</cast_shadows>\n      </visual>\n      <collision name='collision_top'>\n        <laser_retro>0</laser_retro>\n        <max_contacts>5</max_contacts>\n        <pose frame=''>0 0 1.62 0 -0 0</pose>\n        <geometry>\n          <box>\n            <size>0.101665 0.433 0.099897</size>\n          </box>\n        </geometry>\n        <surface>\n          <friction>\n            <ode>\n              <mu>1</mu>\n              <mu2>1</mu2>\n              <fdir1>0 0 0</fdir1>\n              <slip1>0</slip1>\n              <slip2>0</slip2>\n            </ode>\n            <torsional>\n              <coefficient>1</coefficient>\n              <patch_radius>0</patch_radius>\n              <surface_radius>0</surface_radius>\n              <use_patch_radius>1</use_patch_radius>\n              <ode>\n                <slip>0</slip>\n              </ode>\n            </torsional>\n          </friction>\n          <bounce>\n            <restitution_coefficient>0</restitution_coefficient>\n            <threshold>1e+06</threshold>\n          </bounce>\n          <contact>\n            <collide_without_contact>0</collide_without_contact>\n            <collide_without_contact_bitmask>1</collide_without_contact_bitmask>\n            <collide_bitmask>1</collide_bitmask>\n            <ode>\n              <soft_cfm>0</soft_cfm>\n              <soft_erp>0.2</soft_erp>\n              <kp>1e+13</kp>\n              <kd>1</kd>\n              <max_vel>0.01</max_vel>\n              <min_depth>0</min_depth>\n            </ode>\n            <bullet>\n              <split_impulse>1</split_impulse>\n              <split_impulse_penetration_threshold>-0.01</split_impulse_penetration_threshold>\n              <soft_cfm>0</soft_cfm>\n              <soft_erp>0.2</soft_erp>\n              <kp>1e+13</kp>\n              <kd>1</kd>\n            </bullet>\n          </contact>\n        </surface>\n      </collision>\n      <collision name='base_collision'>\n        <laser_retro>0</laser_retro>\n        <max_contacts>5</max_contacts>\n        <pose frame=''>0 0 0.845 0 -0 0</pose>\n        <geometry>\n          <box>\n            <size>0.101665 0.100287 1.45</size>\n          </box>\n        </geometry>\n        <surface>\n          <friction>\n            <ode>\n              <mu>1</mu>\n              <mu2>1</mu2>\n              <fdir1>0 0 0</fdir1>\n              <slip1>0</slip1>\n              <slip2>0</slip2>\n            </ode>\n            <torsional>\n              <coefficient>1</coefficient>\n              <patch_radius>0</patch_radius>\n              <surface_radius>0</surface_radius>\n              <use_patch_radius>1</use_patch_radius>\n              <ode>\n                <slip>0</slip>\n              </ode>\n            </torsional>\n          </friction>\n          <bounce>\n            <restitution_coefficient>0</restitution_coefficient>\n            <threshold>1e+06</threshold>\n          </bounce>\n          <contact>\n            <collide_without_contact>0</collide_without_contact>\n            <collide_without_contact_bitmask>1</collide_without_contact_bitmask>\n            <collide_bitmask>1</collide_bitmask>\n            <ode>\n              <soft_cfm>0</soft_cfm>\n              <soft_erp>0.2</soft_erp>\n              <kp>1e+13</kp>\n              <kd>1</kd>\n              <max_vel>0.01</max_vel>\n              <min_depth>0</min_depth>\n            </ode>\n            <bullet>\n              <split_impulse>1</split_impulse>\n              <split_impulse_penetration_threshold>-0.01</split_impulse_penetration_threshold>\n              <soft_cfm>0</soft_cfm>\n              <soft_erp>0.2</soft_erp>\n              <kp>1e+13</kp>\n              <kd>1</kd>\n            </bullet>\n          </contact>\n        </surface>\n      </collision>\n    </link>\n    <static>1</static>\n    <allow_auto_disable>1</allow_auto_disable>\n  </model>\n</sdf>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/ur3_base/model.config",
    "content": "<?xml version=\"1.0\" ?>\n<model>\n    <name>ur3_base</name>\n    <version>1.0</version>\n    <sdf version=\"1.6\">model.sdf</sdf>\n    <author>\n        <name></name>\n        <email></email>\n    </author>\n    <description></description>\n</model>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/ur3_base/model.sdf",
    "content": "<?xml version='1.0'?>\n<sdf version='1.6'>\n  <model name='ur3_base'>\n    <link name='base'>\n      <pose frame=''>0 0 0 0 -0 3.14</pose>\n      <self_collide>0</self_collide>\n      <kinematic>0</kinematic>\n      <gravity>1</gravity>\n      <inertial>\n        <mass>1</mass>\n        <pose frame=''>0 0 0 0 -0 0</pose>\n        <inertia>\n          <ixx>1</ixx>\n          <ixy>0</ixy>\n          <ixz>0</ixz>\n          <iyy>1</iyy>\n          <iyz>0</iyz>\n          <izz>1</izz>\n        </inertia>\n      </inertial>\n      <visual name='base_visual'>\n        <geometry>\n          <mesh>\n            <uri>model://ur3_base/meshes/ur3_base.stl</uri>\n            <scale>1 1 1</scale>\n          </mesh>\n        </geometry>\n        <material>\n          <script>\n            <name>Gazebo/DarkGrey</name>\n            <uri>__default__</uri>\n          </script>\n          <shader type='pixel'>\n            <normal_map>__default__</normal_map>\n          </shader>\n          <ambient>0.175 0.175 0.175 1</ambient>\n          <diffuse>0.175 0.175 0.175 1</diffuse>\n          <specular>0.175 0.175 0.175 1</specular>\n          <emissive>0 0 0 1</emissive>\n        </material>\n        <pose frame=''>0 0 0 0 -0 0</pose>\n        <transparency>0</transparency>\n        <cast_shadows>1</cast_shadows>\n      </visual>\n      <collision name='collision_top'>\n        <laser_retro>0</laser_retro>\n        <max_contacts>5</max_contacts>\n        <pose frame=''>0 0 1.62 0 -0 0</pose>\n        <geometry>\n          <box>\n            <size>0.101665 0.433 0.099897</size>\n          </box>\n        </geometry>\n        <surface>\n          <friction>\n            <ode>\n              <mu>1</mu>\n              <mu2>1</mu2>\n              <fdir1>0 0 0</fdir1>\n              <slip1>0</slip1>\n              <slip2>0</slip2>\n            </ode>\n            <torsional>\n              <coefficient>1</coefficient>\n              <patch_radius>0</patch_radius>\n              <surface_radius>0</surface_radius>\n              <use_patch_radius>1</use_patch_radius>\n              <ode>\n                <slip>0</slip>\n              </ode>\n            </torsional>\n          </friction>\n          <bounce>\n            <restitution_coefficient>0</restitution_coefficient>\n            <threshold>1e+06</threshold>\n          </bounce>\n          <contact>\n            <collide_without_contact>0</collide_without_contact>\n            <collide_without_contact_bitmask>1</collide_without_contact_bitmask>\n            <collide_bitmask>1</collide_bitmask>\n            <ode>\n              <soft_cfm>0</soft_cfm>\n              <soft_erp>0.2</soft_erp>\n              <kp>1e+13</kp>\n              <kd>1</kd>\n              <max_vel>0.01</max_vel>\n              <min_depth>0</min_depth>\n            </ode>\n            <bullet>\n              <split_impulse>1</split_impulse>\n              <split_impulse_penetration_threshold>-0.01</split_impulse_penetration_threshold>\n              <soft_cfm>0</soft_cfm>\n              <soft_erp>0.2</soft_erp>\n              <kp>1e+13</kp>\n              <kd>1</kd>\n            </bullet>\n          </contact>\n        </surface>\n      </collision>\n      <collision name='base_collision'>\n        <laser_retro>0</laser_retro>\n        <max_contacts>5</max_contacts>\n        <pose frame=''>0 0 0.845 0 -0 0</pose>\n        <geometry>\n          <box>\n            <size>0.101665 0.100287 1.45</size>\n          </box>\n        </geometry>\n        <surface>\n          <friction>\n            <ode>\n              <mu>1</mu>\n              <mu2>1</mu2>\n              <fdir1>0 0 0</fdir1>\n              <slip1>0</slip1>\n              <slip2>0</slip2>\n            </ode>\n            <torsional>\n              <coefficient>1</coefficient>\n              <patch_radius>0</patch_radius>\n              <surface_radius>0</surface_radius>\n              <use_patch_radius>1</use_patch_radius>\n              <ode>\n                <slip>0</slip>\n              </ode>\n            </torsional>\n          </friction>\n          <bounce>\n            <restitution_coefficient>0</restitution_coefficient>\n            <threshold>1e+06</threshold>\n          </bounce>\n          <contact>\n            <collide_without_contact>0</collide_without_contact>\n            <collide_without_contact_bitmask>1</collide_without_contact_bitmask>\n            <collide_bitmask>1</collide_bitmask>\n            <ode>\n              <soft_cfm>0</soft_cfm>\n              <soft_erp>0.2</soft_erp>\n              <kp>1e+13</kp>\n              <kd>1</kd>\n              <max_vel>0.01</max_vel>\n              <min_depth>0</min_depth>\n            </ode>\n            <bullet>\n              <split_impulse>1</split_impulse>\n              <split_impulse_penetration_threshold>-0.01</split_impulse_penetration_threshold>\n              <soft_cfm>0</soft_cfm>\n              <soft_erp>0.2</soft_erp>\n              <kp>1e+13</kp>\n              <kd>1</kd>\n            </bullet>\n          </contact>\n        </surface>\n      </collision>\n    </link>\n    <static>1</static>\n    <allow_auto_disable>1</allow_auto_disable>\n  </model>\n</sdf>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/ur3_table/model.config",
    "content": "<?xml version=\"1.0\" ?>\n<model>\n    <name>ur3_table</name>\n    <version>1.0</version>\n    <sdf version=\"1.6\">model.sdf</sdf>\n    <author>\n        <name></name>\n        <email></email>\n    </author>\n    <description></description>\n</model>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/ur3_table/model.sdf",
    "content": "<?xml version='1.0'?>\n<sdf version='1.6'>\n  <model name='ur3_table'>\n    <link name='table'>\n      <pose frame=''>0.06 0 0 0 -0 0</pose>\n      <self_collide>0</self_collide>\n      <kinematic>0</kinematic>\n      <gravity>1</gravity>\n      <inertial>\n        <mass>1</mass>\n        <pose frame=''>0 0 0 0 -0 0</pose>\n        <inertia>\n          <ixx>1</ixx>\n          <ixy>0</ixy>\n          <ixz>0</ixz>\n          <iyy>1</iyy>\n          <iyz>0</iyz>\n          <izz>1</izz>\n        </inertia>\n      </inertial>\n      <visual name='table_visual'>\n        <geometry>\n          <mesh>\n            <uri>model://ur3_table/meshes/ur3_table.stl</uri>\n            <scale>1 1 1</scale>\n          </mesh>\n        </geometry>\n        <material>\n          <script>\n            <name>Gazebo/GreyTransparent</name>\n            <uri>__default__</uri>\n          </script>\n          <shader type='pixel'>\n            <normal_map>__default__</normal_map>\n          </shader>\n          <ambient>0.5 0.5 0.5 1</ambient>\n          <diffuse>0.5 0.5 0.5 1</diffuse>\n          <specular>0 0 0 1</specular>\n          <emissive>0 0 0 1</emissive>\n        </material>\n        <pose frame=''>0 0 0 0 -0 0</pose>\n        <transparency>0</transparency>\n        <cast_shadows>1</cast_shadows>\n      </visual>\n      <collision name='table_collision'>\n        <laser_retro>0</laser_retro>\n        <max_contacts>10</max_contacts>\n        <pose frame=''>0.425 0 0.93 0 -0 0</pose>\n        <geometry>\n          <box>\n            <size>0.857346 1.05768 0.2</size>\n          </box>\n        </geometry>\n        <surface>\n          <friction>\n            <ode>\n              <mu>1</mu>\n              <mu2>1</mu2>\n              <fdir1>0 0 0</fdir1>\n              <slip1>0.1</slip1>\n              <slip2>0.1</slip2>\n            </ode>\n            <torsional>\n              <coefficient>1</coefficient>\n              <patch_radius>0</patch_radius>\n              <surface_radius>0</surface_radius>\n              <use_patch_radius>1</use_patch_radius>\n              <ode>\n                <slip>0</slip>\n              </ode>\n            </torsional>\n          </friction>\n          <bounce>\n            <restitution_coefficient>0</restitution_coefficient>\n            <threshold>1e+06</threshold>\n          </bounce>\n          <contact>\n            <collide_without_contact>0</collide_without_contact>\n            <collide_without_contact_bitmask>1</collide_without_contact_bitmask>\n            <collide_bitmask>1</collide_bitmask>\n            <ode>\n              <soft_cfm>0</soft_cfm>\n              <soft_erp>0.2</soft_erp>\n              <kp>1e+13</kp>\n              <kd>1</kd>\n              <max_vel>0.01</max_vel>\n              <min_depth>0</min_depth>\n            </ode>\n            <bullet>\n              <split_impulse>1</split_impulse>\n              <split_impulse_penetration_threshold>-0.01</split_impulse_penetration_threshold>\n              <soft_cfm>0</soft_cfm>\n              <soft_erp>0.2</soft_erp>\n              <kp>1e+13</kp>\n              <kd>1</kd>\n            </bullet>\n          </contact>\n        </surface>\n      </collision>\n    </link>\n    <static>1</static>\n    <allow_auto_disable>1</allow_auto_disable>\n  </model>\n</sdf>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/ur3e_base/materials/scripts/repeated.material",
    "content": "material RepeatedTexture\n{\n  technique\n  {\n    pass\n    {\n      texture_unit\n      {\n        // Relative to the location of the material script\n        texture ../textures/green_texture.jpg\n        // Repeat the texture over the surface (4 per face)\n        scale 0.5 0.5\n      }\n    }\n  }\n}"
  },
  {
    "path": "ur_gripper_gazebo/models/ur3e_base/meshes/ur3e_base.dae",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<COLLADA xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" version=\"1.4.1\">\n    <asset>\n        <contributor>\n            <author>VCGLab</author>\n            <authoring_tool>VCGLib | MeshLab</authoring_tool>\n        </contributor>\n        <up_axis>Y_UP</up_axis>\n        <created>月 11月 18 09:01:17 2019</created>\n        <modified>月 11月 18 09:01:17 2019</modified>\n    </asset>\n    <library_images/>\n    <library_materials/>\n    <library_effects/>\n    <library_geometries>\n        <geometry id=\"shape0-lib\" name=\"shape0\">\n            <mesh>\n                <source id=\"shape0-lib-positions\" name=\"position\">\n                    <float_array id=\"shape0-lib-positions-array\" count=\"36420\">-1.14742 -0.22052 1.66495 -1.24918 -0.220519 1.64973 -1.12918 -0.220519 1.64973 -1.23107 -0.220521 1.75421 -1.12918 -0.220519 1.76973 -1.24918 -0.220519 1.76973 -1.24918 -0.215519 1.76973 -1.23088 -0.215516 1.66506 -1.24918 -0.215519 1.64973 -1.12918 -0.215519 1.64973 -1.23049 -0.215518 1.75443 -1.14748 -0.215519 1.7541 -1.12918 -0.215519 1.76973 -1.14746 -0.220519 1.7542 -1.14757 -0.215522 1.66557 -1.23123 -0.220518 1.66533 -1.14702 -0.22051 0.975133 -1.24918 -0.220519 1.07973 -1.14742 -0.220523 1.06407 -1.12918 -0.220519 1.07973 -1.24918 -0.220519 0.959733 -1.12918 -0.220519 0.959733 -1.24918 -0.215519 1.07973 -1.24918 -0.215519 0.959733 -1.12918 -0.215519 0.959733 -1.12918 -0.215519 1.07973 -1.14701 -0.215521 1.064 -1.23063 -0.215526 1.06434 -1.23095 -0.220518 1.06397 -1.14703 -0.215516 0.975832 -1.23096 -0.220515 0.975004 -1.23151 -0.215526 0.975527 -1.15918 -0.370519 0.994733 -1.15918 -0.370519 1.04473 -1.15918 -0.390391 1.03516 -1.14521 -0.397492 1.04473 -1.14518 -0.375019 1.04473 -1.14518 -0.388819 1.03665 -1.14518 -0.375019 0.994733 -1.14518 -0.397519 0.994733 -1.09618 -0.446519 1.04473 -1.07368 -0.446519 1.04473 -1.09618 -0.446519 0.994733 -1.07368 -0.446519 0.994733 -1.06918 -0.460519 0.994733 -1.06918 -0.451019 0.994733 -1.15918 -0.460519 1.04473 -1.06918 -0.460519 1.04473 -1.15918 -0.460519 0.994733 -1.06918 -0.451019 1.04473 -1.14968 -0.370519 1.04473 -1.14968 -0.370519 0.994733 -1.08915 -0.46052 1.00466 -1.08929 -0.446514 1.00447 -1.08918 -0.446518 1.03503 -1.08895 -0.460519 1.03478 -1.15918 -0.390303 1.00482 -1.14517 -0.390374 1.00473 -1.15918 -0.460519 1.68473 -1.08869 -0.46052 1.69467 -1.08745 -0.446517 1.69492 -1.07368 -0.446519 1.68473 -1.0959 -0.446802 1.68473 -1.14518 -0.375019 1.73473 -1.14518 -0.388578 1.69302 -1.14518 -0.375019 1.68473 -1.14968 -0.370519 1.73473 -1.15918 -0.370519 1.73473 -1.15918 -0.370519 1.68473 -1.06918 -0.460519 1.68473 -1.14519 -0.397512 1.68473 -1.14968 -0.370519 1.68473 -1.06918 -0.451019 1.73473 -1.07368 -0.446519 1.73473 -1.06918 -0.451019 1.68473 -1.06918 -0.460519 1.73473 -1.15918 -0.460519 1.73473 -1.09618 -0.446519 1.73473 -1.14518 -0.397519 1.73473 -1.15918 -0.390407 1.72503 -1.14517 -0.390605 1.72517 -1.15918 -0.390266 1.69495 -1.08948 -0.460519 1.72487 -1.08959 -0.446514 1.72488 0.0808214 -0.515519 1.58973 0.0808214 -0.465519 1.58973 0.080822 -0.475714 1.60922 0.0808229 -0.505389 1.60953 0.0668214 -0.515519 1.59423 0.0668211 -0.507703 1.60723 0.0668228 -0.502947 1.61259 0.0668214 -0.515519 1.61673 0.0668214 -0.465519 1.59423 0.0668214 -0.465519 1.61673 0.0178214 -0.515519 1.66573 -0.00467862 -0.515519 1.66573 -0.00917862 -0.515519 1.67023 -0.00917862 -0.465519 1.67973 0.0808214 -0.515519 1.67973 0.0106967 -0.475239 1.67973 -0.00917862 -0.515519 1.67973 0.0808214 -0.465519 1.67973 0.0713214 -0.465519 1.58973 0.0713214 -0.515519 1.58973 0.0178214 -0.465519 1.66573 -0.00467862 -0.465519 1.66573 -0.00917862 -0.465519 1.67023 0.0109137 -0.475192 1.66572 0.0105054 -0.505801 1.67973 0.0135557 -0.502298 1.66573 0.00846779 -0.508328 1.66573 0.0668132 -0.475678 1.60936 0.0808214 -0.465519 1.13973 0.0808214 -0.465519 1.04973 0.0808214 -0.515519 1.13973 0.0808221 -0.475744 1.12014 0.066817 -0.47562 1.11988 0.0668214 -0.465519 1.11273 0.0668214 -0.465519 1.13523 0.0178214 -0.465519 1.06373 0.0108206 -0.505907 1.06373 -0.00467862 -0.465519 1.06373 0.0178214 -0.515519 1.06373 -0.00467862 -0.515519 1.06373 -0.00917862 -0.465519 1.05923 -0.00917862 -0.515519 1.04973 0.0106772 -0.475495 1.04973 -0.00917862 -0.465519 1.04973 0.0808214 -0.515519 1.04973 0.0713214 -0.515519 1.13973 0.0713214 -0.465519 1.13973 0.0668214 -0.515519 1.13523 0.0668214 -0.515519 1.11273 -0.00917862 -0.515519 1.05923 0.0109256 -0.475242 1.06373 0.0106396 -0.505751 1.04973 0.080822 -0.505376 1.1202 0.0668135 -0.5053 1.12013 -1.15918 -0.465519 1.67973 -1.15918 -0.515519 1.67973 -1.06918 -0.465519 1.67973 -1.08875 -0.50555 1.67973 -1.09618 -0.465519 1.66573 -1.07368 -0.515519 1.66573 -1.08778 -0.505847 1.66573 -1.09619 -0.515519 1.66572 -1.07368 -0.465519 1.66573 -1.14518 -0.515519 1.59423 -1.14564 -0.515515 1.61627 -1.14518 -0.465519 1.61673 -1.14968 -0.515519 1.58973 -1.15918 -0.465519 1.58973 -1.14968 -0.465519 1.58973 -1.15918 -0.515519 1.58973 -1.15918 -0.475475 1.60953 -1.06918 -0.515519 1.67023 -1.06918 -0.515519 1.67973 -1.06918 -0.465519 1.67023 -1.14518 -0.465519 1.59423 -1.14518 -0.475526 1.60968 -1.15918 -0.50524 1.60953 -1.14518 -0.502071 1.60781 -1.08913 -0.475486 1.67973 -1.08916 -0.475391 1.66572 -1.15918 -0.465519 1.13973 -1.14518 -0.505258 1.11997 -1.14518 -0.515519 1.13523 -1.14518 -0.465519 1.13523 -1.14518 -0.465519 1.11273 -1.14518 -0.515519 1.11273 -1.09618 -0.465519 1.06373 -1.07368 -0.465519 1.06373 -1.06918 -0.515519 1.05923 -1.06918 -0.465519 1.04973 -1.06918 -0.515519 1.04973 -1.15918 -0.515519 1.04973 -1.08929 -0.475502 1.04973 -1.15918 -0.465519 1.04973 -1.14968 -0.515519 1.13973 -1.15918 -0.515519 1.13973 -1.09618 -0.515519 1.06373 -1.07368 -0.515519 1.06373 -1.14968 -0.465519 1.13973 -1.06918 -0.465519 1.05923 -1.08948 -0.475429 1.06374 -1.08872 -0.505716 1.04973 -1.08881 -0.505902 1.06373 -1.14518 -0.47519 1.11998 -1.15918 -0.475476 1.12005 -1.15918 -0.505251 1.12016 -1.21418 -0.460519 1.13973 -1.16418 -0.460519 1.04973 -1.21418 -0.460519 1.04973 -1.17368 -0.46052 1.1202 -1.21418 -0.446519 1.13523 -1.16418 -0.446519 1.11273 -1.16418 -0.446519 1.13523 -1.1738 -0.446515 1.12002 -1.21418 -0.446519 1.11273 -1.21418 -0.397519 1.06373 -1.16418 -0.375019 1.06373 -1.16418 -0.397512 1.06372 -1.21418 -0.375019 1.06373 -1.21418 -0.370519 1.04973 -1.16418 -0.370519 1.04973 -1.16418 -0.370519 1.05923 -1.16418 -0.460519 1.13973 -1.21418 -0.451019 1.13973 -1.16418 -0.451019 1.13973 -1.21418 -0.370519 1.05923 -1.20447 -0.390987 1.06373 -1.17426 -0.390079 1.04973 -1.17307 -0.388018 1.06373 -1.20435 -0.390648 1.04973 -1.20452 -0.460519 1.11993 -1.20453 -0.446519 1.1197 -1.21418 -0.370519 1.67973 -1.16418 -0.370519 1.67973 -1.16418 -0.375019 1.66573 -1.17298 -0.389203 1.66573 -1.21418 -0.375019 1.66573 -1.21418 -0.397519 1.66573 -1.16418 -0.397519 1.66573 -1.16418 -0.446519 1.61673 -1.16418 -0.446519 1.59423 -1.21418 -0.446519 1.61673 -1.16418 -0.451019 1.58973 -1.21418 -0.451019 1.58973 -1.16418 -0.460519 1.58973 -1.21418 -0.460519 1.58973 -1.21418 -0.460519 1.67973 -1.16418 -0.460519 1.67973 -1.16418 -0.370519 1.67023 -1.21418 -0.370519 1.67023 -1.21418 -0.446519 1.59423 -1.20454 -0.44651 1.60947 -1.17445 -0.460519 1.60945 -1.17437 -0.446517 1.60962 -1.20453 -0.460519 1.6094 -1.20428 -0.390528 1.67973 -1.20429 -0.390796 1.66573 -1.17382 -0.390071 1.67973 -0.609179 -0.460519 1.68473 -0.699179 -0.460519 1.73473 -0.699179 -0.460519 1.68473 -0.609179 -0.460519 1.73473 -0.679237 -0.460522 1.72492 -0.694679 -0.446519 1.68473 -0.681056 -0.446517 1.72643 -0.672179 -0.446519 1.68473 -0.67218 -0.44652 1.73473 -0.623179 -0.375019 1.68473 -0.623179 -0.397519 1.73473 -0.623179 -0.397519 1.68473 -0.623179 -0.375019 1.73473 -0.618679 -0.370519 1.73473 -0.609179 -0.370519 1.73473 -0.609179 -0.370519 1.68473 -0.694679 -0.446519 1.73473 -0.699179 -0.451019 1.68473 -0.699179 -0.451019 1.73473 -0.618679 -0.370519 1.68473 -0.623188 -0.390297 1.69443 -0.609179 -0.390776 1.72497 -0.623181 -0.390871 1.72507 -0.609178 -0.390276 1.69458 -0.679195 -0.460519 1.69484 -0.679075 -0.446511 1.69464 -0.699179 -0.460519 1.04473 -0.679452 -0.460519 1.00478 -0.679459 -0.46052 1.03514 -0.699179 -0.460519 0.994733 -0.694679 -0.446519 0.994733 -0.672286 -0.446625 1.04473 -0.694679 -0.446519 1.04473 -0.681317 -0.446518 1.03589 -0.672179 -0.446519 0.994733 -0.623179 -0.397519 1.04473 -0.623179 -0.375019 1.04473 -0.623179 -0.397519 0.994733 -0.623179 -0.375019 0.994733 -0.618679 -0.370519 0.994733 -0.618679 -0.370519 1.04473 -0.609179 -0.460519 1.04473 -0.609179 -0.370519 1.04473 -0.609178 -0.390272 1.00459 -0.609179 -0.460519 0.994733 -0.699179 -0.451019 1.04473 -0.699179 -0.451019 0.994733 -0.609179 -0.370519 0.994733 -0.623189 -0.390296 1.00443 -0.609179 -0.389977 1.03472 -0.623183 -0.390039 1.0348 -0.679424 -0.446511 1.00458 -0.549179 -0.515519 1.58973 -0.54918 -0.505596 1.60949 -0.549181 -0.475446 1.60905 -0.535179 -0.476284 1.6063 -0.535179 -0.465519 1.59423 -0.535179 -0.515519 1.59423 -0.535179 -0.515519 1.61673 -0.463679 -0.515519 1.66573 -0.463679 -0.465519 1.66573 -0.459179 -0.465519 1.67023 -0.549179 -0.465519 1.67973 -0.459179 -0.465519 1.67973 -0.459179 -0.515519 1.67973 -0.549179 -0.465519 1.58973 -0.535436 -0.465522 1.61647 -0.486179 -0.465519 1.66573 -0.539679 -0.515519 1.58973 -0.539679 -0.465519 1.58973 -0.549179 -0.515519 1.67973 -0.486179 -0.515519 1.66573 -0.459179 -0.515519 1.67023 -0.479256 -0.505936 1.66572 -0.479015 -0.475433 1.67973 -0.47912 -0.475279 1.66573 -0.479161 -0.505845 1.67973 -0.535173 -0.50577 1.60967 -0.609179 -0.465519 1.13973 -0.609179 -0.515519 1.13973 -0.609178 -0.505438 1.11982 -0.609177 -0.475792 1.12042 -0.62318 -0.47156 1.11984 -0.623179 -0.465519 1.13523 -0.623179 -0.479723 1.12034 -0.623179 -0.465519 1.11273 -0.623179 -0.515519 1.13523 -0.623179 -0.515519 1.11273 -0.672179 -0.515519 1.06373 -0.672179 -0.465519 1.06373 -0.694679 -0.465519 1.06373 -0.694679 -0.515519 1.06373 -0.699179 -0.515519 1.04973 -0.609179 -0.515519 1.04973 -0.699179 -0.465519 1.04973 -0.679081 -0.475713 1.04973 -0.609179 -0.465519 1.04973 -0.699179 -0.465519 1.05923 -0.618679 -0.515519 1.13973 -0.618679 -0.465519 1.13973 -0.699179 -0.515519 1.05923 -0.679397 -0.505804 1.06373 -0.678899 -0.475404 1.06373 -0.67957 -0.505805 1.04973 -0.623184 -0.50562 1.11964 -1.15718 -0.243769 1.76973 -1.15718 -0.239519 1.76973 -1.15718 -0.243769 1.64973 -1.15918 -0.239519 1.64973 -1.15718 -0.250519 1.64973 -1.14818 -0.250519 1.76973 -1.14818 -0.248519 1.76973 -1.14818 -0.248519 1.64973 -1.15243 -0.248519 1.76973 -1.15243 -0.245183 1.76973 -1.14876 -0.241519 1.64973 -1.14876 -0.241519 1.76973 -1.13959 -0.241519 1.76973 -1.13593 -0.245183 1.76973 -1.13593 -0.248519 1.76973 -1.13593 -0.245183 1.64973 -1.14018 -0.248519 1.76973 -1.14018 -0.248519 1.64973 -1.14018 -0.250519 1.76973 -1.12918 -0.248519 1.64973 -1.13118 -0.250519 1.76973 -1.12918 -0.239519 1.76973 -1.13118 -0.239519 1.64973 -1.13451 -0.243769 1.64973 -1.13845 -0.235725 1.76973 -1.13118 -0.231519 1.64973 -1.13118 -0.231519 1.76973 -1.12918 -0.231519 1.76973 -1.13118 -0.220519 1.76973 -1.14018 -0.222519 1.76973 -1.14018 -0.222519 1.64973 -1.15243 -0.225855 1.64973 -1.15243 -0.222519 1.76973 -1.14818 -0.220519 1.64973 -1.15918 -0.222519 1.64973 -1.15718 -0.220519 1.76973 -1.15918 -0.231519 1.76973 -1.15918 -0.231519 1.64973 -1.15018 -0.230933 1.64973 -1.15018 -0.240105 1.64973 -1.15718 -0.239519 1.64973 -1.15243 -0.245183 1.64973 -1.15243 -0.248519 1.64973 -1.1544 -0.226666 1.64973 -1.15718 -0.231519 1.64973 -1.15718 -0.220519 1.64973 -1.14818 -0.222519 1.64973 -1.14497 -0.229747 1.64973 -1.13959 -0.229519 1.64973 -1.13818 -0.230933 1.64973 -1.13593 -0.225855 1.64973 -1.13593 -0.222519 1.64973 -1.14018 -0.220519 1.64973 -1.13118 -0.227269 1.64973 -1.13878 -0.238212 1.64973 -1.13818 -0.240105 1.64973 -1.14347 -0.241292 1.64971 -1.13118 -0.243769 1.64973 -1.12918 -0.239519 1.64973 -1.14018 -0.250519 1.64973 -1.14818 -0.250519 1.64973 -1.15918 -0.248519 1.64973 -1.15243 -0.222519 1.64973 -1.15707 -0.227059 1.64991 -1.13593 -0.248519 1.64973 -1.12918 -0.231519 1.64973 -1.13118 -0.220519 1.64973 -1.13336 -0.221814 1.64973 -1.1303 -0.223902 1.64977 -1.13593 -0.225855 1.76973 -1.13451 -0.227269 1.64973 -1.15918 -0.239519 1.76973 -1.15918 -0.248519 1.76973 -1.15384 -0.243769 1.76973 -1.14388 -0.241221 1.76973 -1.13818 -0.240105 1.76973 -1.12918 -0.248519 1.76973 -1.13118 -0.239519 1.76973 -1.13118 -0.243769 1.76973 -1.13118 -0.227269 1.76973 -1.12918 -0.222519 1.76973 -1.14018 -0.220519 1.76973 -1.13451 -0.227269 1.76973 -1.14342 -0.23189 1.76971 -1.14452 -0.229764 1.76973 -1.15018 -0.230933 1.76973 -1.14876 -0.229519 1.76973 -1.15243 -0.225855 1.76973 -1.14818 -0.222519 1.76973 -1.14818 -0.220519 1.76973 -1.15718 -0.231519 1.76973 -1.15384 -0.227269 1.76973 -1.15718 -0.227269 1.76973 -1.15002 -0.234833 1.76973 -1.15018 -0.240105 1.76973 -1.13818 -0.230933 1.76973 -1.15718 -0.250519 1.76973 -1.13593 -0.222519 1.76973 -1.13469 -0.245859 1.64973 -1.13451 -0.243769 1.76973 -1.13023 -0.247134 1.76973 -1.13369 -0.24885 1.76952 -1.13118 -0.250519 1.64973 -1.1313 -0.24555 1.64968 -1.15632 -0.225621 1.76972 -1.15489 -0.221535 1.64984 -1.15699 -0.221969 1.76979 -1.15462 -0.249149 1.76969 -1.15786 -0.246026 1.76961 -1.15766 -0.248283 1.64975 -1.15384 -0.243769 1.64973 -1.15437 -0.248553 1.64976 -1.15003 -0.234297 1.64973 -1.14858 -0.233251 1.67975 -1.14779 -0.234435 1.7697 -1.14898 -0.238163 1.76973 -1.1474 -0.236771 1.64982 -1.14958 -0.238212 1.64973 -1.14629 -0.24022 1.76973 -1.14687 -0.240919 1.64973 -1.14557 -0.238742 1.64978 -1.14273 -0.238882 1.76964 -1.14213 -0.240201 1.64973 -1.13959 -0.241519 1.64973 -1.14148 -0.240919 1.76973 -1.13954 -0.237623 1.76973 -1.14114 -0.236807 1.65003 -1.14086 -0.236302 1.76965 -1.13956 -0.233445 1.76973 -1.13878 -0.232826 1.64973 -1.13959 -0.229519 1.76973 -1.14159 -0.230724 1.76973 -1.14148 -0.230119 1.64973 -1.14278 -0.232295 1.64981 -1.14633 -0.230577 1.76973 -1.14622 -0.230835 1.64973 -1.14876 -0.229519 1.64973 -1.24718 -0.239519 1.76973 -1.24918 -0.248519 1.76973 -1.23818 -0.250519 1.64973 -1.23818 -0.248519 1.76973 -1.23448 -0.241221 1.76973 -1.23505 -0.24069 1.64973 -1.22593 -0.248519 1.76973 -1.23018 -0.248519 1.76973 -1.23018 -0.248519 1.64973 -1.23018 -0.250519 1.76973 -1.23018 -0.250519 1.64973 -1.21918 -0.239519 1.76973 -1.22118 -0.239519 1.64973 -1.22451 -0.243769 1.76973 -1.22451 -0.243769 1.64973 -1.22839 -0.23452 1.76973 -1.22818 -0.230933 1.64973 -1.22818 -0.230933 1.76973 -1.22118 -0.227269 1.64973 -1.22118 -0.231519 1.76973 -1.21918 -0.231519 1.76973 -1.22118 -0.220519 1.76973 -1.21918 -0.222519 1.76973 -1.23018 -0.220519 1.64973 -1.23018 -0.220519 1.76973 -1.23018 -0.222519 1.76973 -1.23018 -0.222519 1.64973 -1.23393 -0.229785 1.76973 -1.24243 -0.225855 1.76973 -1.23818 -0.222519 1.64973 -1.23818 -0.220519 1.76973 -1.24918 -0.222519 1.64973 -1.24918 -0.231519 1.76973 -1.24718 -0.231519 1.76973 -1.24384 -0.227269 1.76973 -1.23991 -0.235274 1.76973 -1.24718 -0.239519 1.64973 -1.24918 -0.239519 1.64973 -1.24718 -0.243769 1.64973 -1.24243 -0.248519 1.64973 -1.24018 -0.230933 1.64973 -1.24384 -0.227269 1.64973 -1.24718 -0.231519 1.64973 -1.24918 -0.231519 1.64973 -1.23818 -0.220519 1.64973 -1.24243 -0.222519 1.64973 -1.23876 -0.229519 1.64973 -1.22959 -0.229519 1.64973 -1.22451 -0.227269 1.64973 -1.22593 -0.225855 1.64973 -1.22593 -0.222519 1.64973 -1.22118 -0.220519 1.64973 -1.21918 -0.222519 1.64973 -1.22118 -0.231519 1.64973 -1.21918 -0.231519 1.64973 -1.22818 -0.240105 1.64973 -1.22118 -0.243769 1.64973 -1.21918 -0.239519 1.64973 -1.22118 -0.250519 1.64973 -1.23818 -0.248519 1.64973 -1.24718 -0.250519 1.64973 -1.24384 -0.243769 1.64973 -1.24718 -0.227269 1.64973 -1.24243 -0.225855 1.64973 -1.22593 -0.245183 1.64973 -1.22593 -0.248519 1.64973 -1.22038 -0.2239 1.7696 -1.22376 -0.22178 1.64949 -1.22341 -0.226085 1.64973 -1.24918 -0.239519 1.76973 -1.23818 -0.250519 1.76973 -1.24718 -0.250519 1.76973 -1.24243 -0.245183 1.76973 -1.24432 -0.244454 1.76972 -1.22959 -0.241519 1.76973 -1.22533 -0.246192 1.76975 -1.21918 -0.248519 1.76973 -1.22118 -0.239519 1.76973 -1.22118 -0.243769 1.76973 -1.22515 -0.222764 1.76971 -1.22395 -0.226631 1.7697 -1.24018 -0.230933 1.76973 -1.23876 -0.229519 1.76973 -1.24243 -0.222519 1.76973 -1.23818 -0.222519 1.76973 -1.24718 -0.220519 1.76973 -1.24918 -0.222519 1.76973 -1.24018 -0.240105 1.76973 -1.24718 -0.243769 1.76973 -1.24329 -0.248418 1.76976 -1.24782 -0.248055 1.76957 -1.24718 -0.227269 1.76973 -1.22118 -0.227269 1.76973 -1.22593 -0.225855 1.76973 -1.22034 -0.247828 1.76985 -1.22349 -0.249211 1.64982 -1.22021 -0.246512 1.64979 -1.24718 -0.220519 1.64973 -1.24516 -0.221817 1.76973 -1.24783 -0.224918 1.64971 -1.24634 -0.249197 1.64975 -1.24918 -0.248519 1.64973 -1.24303 -0.245699 1.64974 -1.24018 -0.232776 1.64973 -1.23898 -0.232875 1.64973 -1.23944 -0.234338 1.64973 -1.23775 -0.235164 1.64975 -1.23898 -0.238135 1.70973 -1.23754 -0.234142 1.76971 -1.24018 -0.240105 1.64973 -1.24018 -0.238262 1.76973 -1.23876 -0.241519 1.76973 -1.23876 -0.241519 1.64973 -1.23682 -0.240319 1.64973 -1.23628 -0.240053 1.76973 -1.23278 -0.238745 1.76957 -1.23144 -0.241519 1.76973 -1.22959 -0.241519 1.64973 -1.23153 -0.240319 1.76973 -1.2324 -0.239889 1.64973 -1.22938 -0.238106 1.76973 -1.22818 -0.240105 1.76973 -1.22878 -0.238212 1.64973 -1.2297 -0.237141 1.64973 -1.23096 -0.236909 1.76955 -1.22818 -0.232776 1.64973 -1.22983 -0.233516 1.64974 -1.22938 -0.232875 1.76973 -1.22938 -0.232875 1.64973 -1.22959 -0.229519 1.76973 -1.23299 -0.229652 1.64973 -1.23153 -0.230719 1.64973 -1.23293 -0.232298 1.64985 -1.23159 -0.230724 1.76973 -1.2334 -0.232206 1.76961 -1.23628 -0.23088 1.64973 -1.23687 -0.230119 1.76973 -1.23897 -0.232932 1.76973 -1.15718 -0.243769 0.959733 -1.15718 -0.239519 0.959733 -1.15718 -0.239519 1.07973 -1.15918 -0.239519 1.07973 -1.15918 -0.248519 0.959733 -1.14818 -0.248519 1.07973 -1.14818 -0.248519 0.959733 -1.15243 -0.248519 0.959733 -1.14455 -0.241256 1.07973 -1.14018 -0.248519 1.07973 -1.14018 -0.248519 0.959733 -1.14018 -0.250519 1.07973 -1.13118 -0.250519 0.959733 -1.13118 -0.250519 1.07973 -1.12918 -0.248519 0.959733 -1.12918 -0.239519 0.959733 -1.13118 -0.239519 1.07973 -1.13118 -0.239519 0.959733 -1.13451 -0.243769 0.959733 -1.13451 -0.243769 1.07973 -1.13818 -0.230933 0.959733 -1.13451 -0.227269 1.07973 -1.13118 -0.231519 1.07973 -1.13118 -0.231519 0.959733 -1.13118 -0.220519 0.959733 -1.12918 -0.222519 0.959733 -1.14018 -0.222519 1.07973 -1.14018 -0.222519 0.959733 -1.14493 -0.229751 0.959733 -1.15243 -0.225855 0.959733 -1.14818 -0.222519 1.07973 -1.14818 -0.222519 0.959733 -1.14818 -0.220519 0.959733 -1.15918 -0.222519 1.07973 -1.14818 -0.220519 1.07973 -1.15718 -0.220519 0.959733 -1.15918 -0.231519 1.07973 -1.15918 -0.231519 0.959733 -1.15718 -0.231519 1.07973 -1.15384 -0.227269 1.07973 -1.14995 -0.235068 1.07973 -1.14958 -0.232826 0.959733 -1.15718 -0.243769 1.07973 -1.15918 -0.239519 0.959733 -1.15243 -0.245183 0.959733 -1.14818 -0.250519 0.959733 -1.15718 -0.231519 0.959733 -1.15918 -0.222519 0.959733 -1.13959 -0.229519 0.959733 -1.13593 -0.225855 0.959733 -1.13593 -0.222519 0.959733 -1.14018 -0.220519 0.959733 -1.12918 -0.231519 0.959733 -1.13118 -0.227269 0.959733 -1.14395 -0.241252 0.959733 -1.13818 -0.240105 0.959733 -1.13593 -0.245183 0.959733 -1.13118 -0.243769 0.959733 -1.14018 -0.250519 0.959733 -1.13593 -0.248519 0.959733 -1.14876 -0.241519 0.959733 -1.15718 -0.250519 0.959733 -1.15018 -0.230933 0.959733 -1.15384 -0.243769 0.959733 -1.15243 -0.222519 0.959733 -1.15718 -0.227269 0.959733 -1.15384 -0.227269 0.959733 -1.13423 -0.226971 0.959911 -1.13344 -0.221897 0.959758 -1.13473 -0.224618 1.07973 -1.14818 -0.250519 1.07973 -1.15243 -0.248519 1.07973 -1.14876 -0.241519 1.07973 -1.14148 -0.240919 1.07973 -1.13959 -0.241519 1.07973 -1.1384 -0.235528 1.07973 -1.13593 -0.245183 1.07973 -1.13593 -0.248519 1.07973 -1.12918 -0.239519 1.07973 -1.13118 -0.227269 1.07973 -1.12918 -0.231519 1.07973 -1.14018 -0.220519 1.07973 -1.14876 -0.229519 1.07973 -1.15243 -0.225855 1.07973 -1.15243 -0.222519 1.07973 -1.15718 -0.227269 1.07973 -1.15018 -0.240105 1.07973 -1.14397 -0.229783 1.07973 -1.13818 -0.230933 1.07973 -1.15384 -0.243769 1.07973 -1.15243 -0.245183 1.07973 -1.13118 -0.243769 1.07973 -1.13593 -0.222519 1.07973 -1.13118 -0.220519 1.07973 -1.13074 -0.225118 1.07969 -1.13593 -0.225855 1.07973 -1.13313 -0.244964 1.07971 -1.13445 -0.247713 1.07971 -1.13404 -0.248648 0.959726 -1.12918 -0.248519 1.07973 -1.13002 -0.246807 0.959648 -1.15484 -0.221841 0.959659 -1.15561 -0.22163 1.07994 -1.1578 -0.225185 0.959709 -1.15758 -0.225054 1.07977 -1.15372 -0.2472 1.07975 -1.15918 -0.248519 1.07973 -1.15472 -0.249001 0.959776 -1.15846 -0.246578 0.959674 -1.15605 -0.245365 1.07973 -1.15018 -0.230933 1.07973 -1.14897 -0.232932 1.07973 -1.14757 -0.23475 1.07968 -1.14787 -0.23494 0.959745 -1.14826 -0.2375 1.07971 -1.15018 -0.238262 1.07973 -1.14898 -0.238163 1.07973 -1.14881 -0.237623 0.959733 -1.15018 -0.240105 0.959733 -1.14655 -0.240238 1.01973 -1.14692 -0.241519 0.959733 -1.14293 -0.23874 1.07966 -1.14419 -0.239202 0.974714 -1.13959 -0.241519 0.959733 -1.14159 -0.240313 0.959733 -1.13818 -0.240105 1.07973 -1.13954 -0.237623 1.07973 -1.13894 -0.23719 0.959733 -1.14086 -0.234921 1.07965 -1.14088 -0.234106 0.959759 -1.13878 -0.232826 0.959733 -1.13938 -0.232875 1.07973 -1.14144 -0.229519 0.959733 -1.13959 -0.229519 1.07973 -1.14206 -0.230816 1.07973 -1.14262 -0.231225 0.959734 -1.14355 -0.232201 1.07969 -1.14557 -0.232296 1.01966 -1.14687 -0.230119 1.07973 -1.14876 -0.229519 0.959733 -1.14677 -0.230724 0.959733 -1.24918 -0.239519 1.07973 -1.24918 -0.239519 0.959733 -1.24918 -0.248519 1.07973 -1.24718 -0.250519 0.959733 -1.24718 -0.250519 1.07973 -1.23818 -0.248519 1.07973 -1.24243 -0.248519 0.959733 -1.24243 -0.245183 1.07973 -1.22959 -0.241519 1.07973 -1.23018 -0.248519 1.07973 -1.22118 -0.250519 0.959733 -1.22118 -0.243769 1.07973 -1.22118 -0.239519 0.959733 -1.22118 -0.227269 1.07973 -1.22118 -0.231519 0.959733 -1.22118 -0.231519 1.07973 -1.22118 -0.220519 1.07973 -1.22118 -0.220519 0.959733 -1.23018 -0.220519 1.07973 -1.23018 -0.220519 0.959733 -1.23018 -0.222519 1.07973 -1.22593 -0.222519 0.959733 -1.23876 -0.229519 1.07973 -1.23818 -0.222519 1.07973 -1.23818 -0.220519 1.07973 -1.24918 -0.222519 0.959733 -1.24718 -0.220519 1.07973 -1.24918 -0.231519 1.07973 -1.24718 -0.231519 1.07973 -1.24718 -0.227269 1.07973 -1.24384 -0.227269 0.959733 -1.23988 -0.235819 0.959733 -1.24018 -0.240105 1.07973 -1.24718 -0.239519 0.959733 -1.24243 -0.245183 0.959733 -1.24018 -0.230933 0.959733 -1.24718 -0.231519 0.959733 -1.24918 -0.231519 0.959733 -1.23818 -0.220519 0.959733 -1.23818 -0.222519 0.959733 -1.24243 -0.222519 0.959733 -1.22818 -0.230933 0.959733 -1.22451 -0.227269 0.959733 -1.22593 -0.225855 0.959733 -1.23018 -0.222519 0.959733 -1.21918 -0.231519 0.959733 -1.22118 -0.227269 0.959733 -1.22451 -0.243769 0.959733 -1.22593 -0.245183 0.959733 -1.21918 -0.239519 0.959733 -1.21918 -0.248519 0.959733 -1.23018 -0.248519 0.959733 -1.23018 -0.250519 0.959733 -1.23876 -0.241519 0.959733 -1.23818 -0.248519 0.959733 -1.23818 -0.250519 0.959733 -1.24918 -0.248519 0.959733 -1.23876 -0.229519 0.959733 -1.23497 -0.229752 0.959733 -1.24718 -0.243769 0.959733 -1.24384 -0.243769 0.959733 -1.24718 -0.227269 0.959733 -1.24243 -0.225855 0.959733 -1.22126 -0.244129 0.960025 -1.22593 -0.248519 0.959733 -1.21921 -0.222261 0.959742 -1.2238 -0.222184 0.959698 -1.22342 -0.221549 1.07972 -1.22039 -0.224937 0.959764 -1.22449 -0.225331 0.959758 -1.24718 -0.239519 1.07973 -1.23818 -0.250519 1.07973 -1.23876 -0.241519 1.07973 -1.22848 -0.235819 1.07973 -1.22543 -0.245991 1.07974 -1.22593 -0.248519 1.07973 -1.21918 -0.239519 1.07973 -1.22118 -0.239519 1.07973 -1.22377 -0.226775 1.07977 -1.22818 -0.230933 1.07973 -1.21918 -0.231519 1.07973 -1.21918 -0.222519 1.07973 -1.22593 -0.225855 1.07973 -1.24018 -0.230933 1.07973 -1.23989 -0.235221 1.07973 -1.24243 -0.225855 1.07973 -1.24243 -0.222519 1.07973 -1.24918 -0.222519 1.07973 -1.24384 -0.243769 1.07973 -1.24243 -0.248519 1.07973 -1.24718 -0.243769 1.07973 -1.23018 -0.250519 1.07973 -1.22451 -0.243769 1.07973 -1.22593 -0.222519 1.07973 -1.22138 -0.245622 1.07945 -1.21918 -0.248519 1.07973 -1.22214 -0.249212 0.959756 -1.24767 -0.222888 1.07971 -1.24483 -0.221921 0.959753 -1.24767 -0.225081 0.959666 -1.24384 -0.227269 1.07973 -1.24487 -0.221863 1.07969 -1.24481 -0.249142 0.959773 -1.24805 -0.246412 0.959728 -1.24777 -0.246291 1.07974 -1.24459 -0.249057 1.07974 -1.24388 -0.245576 0.95987 -1.23871 -0.233415 1.07973 -1.23754 -0.234142 0.959765 -1.23755 -0.236969 1.07964 -1.23755 -0.236971 0.959796 -1.24018 -0.240105 0.959733 -1.23958 -0.238212 1.07973 -1.23897 -0.238106 0.959733 -1.23544 -0.241385 0.959734 -1.23682 -0.240319 0.959733 -1.23526 -0.239407 0.959752 -1.23677 -0.240313 1.07973 -1.23557 -0.238744 1.07961 -1.22959 -0.241519 0.959733 -1.23211 -0.240177 1.01973 -1.23144 -0.241519 1.07973 -1.22818 -0.240105 1.07973 -1.22818 -0.240105 0.959733 -1.22938 -0.238163 0.959733 -1.22984 -0.23734 0.959709 -1.22938 -0.238106 1.07973 -1.23063 -0.235318 1.07969 -1.22818 -0.232776 0.959733 -1.22948 -0.233431 0.959733 -1.22938 -0.232875 0.959733 -1.23153 -0.230719 0.959733 -1.23159 -0.230724 1.07973 -1.22938 -0.232875 1.07973 -1.22959 -0.229519 0.959733 -1.22959 -0.229519 1.07973 -1.23213 -0.230832 0.959734 -1.23274 -0.232223 1.07855 -1.23506 -0.232127 0.989742 -1.23628 -0.23088 0.959733 -1.23677 -0.230724 1.07973 -1.23545 -0.229652 1.07973 -1.23682 -0.230719 1.07973 -1.23958 -0.232826 0.959733 -1.2034 -0.220519 1.70103 -1.2034 -0.520519 1.70103 -1.21718 -0.520519 1.70298 -1.21018 -0.520519 1.69015 -1.20418 -0.520519 1.68873 -1.19959 -0.520519 1.68873 -1.18243 -0.520519 1.68507 -1.19593 -0.520519 1.68507 -1.18243 -0.520519 1.68173 -1.17818 -0.520519 1.67973 -1.19593 -0.520519 1.68173 -1.20018 -0.520519 1.67973 -1.17418 -0.520519 1.68873 -1.16959 -0.520519 1.68873 -1.16451 -0.520519 1.68648 -1.16593 -0.520519 1.68507 -1.17018 -0.520519 1.68173 -1.16818 -0.520519 1.69932 -1.16451 -0.520519 1.70298 -1.16918 -0.520519 1.71266 -1.16451 -0.520519 1.71648 -1.16118 -0.520519 1.72073 -1.15918 -0.520519 1.69873 -1.16593 -0.520519 1.73773 -1.17018 -0.520519 1.73773 -1.16959 -0.520519 1.73073 -1.17876 -0.520519 1.73073 -1.18243 -0.520519 1.7344 -1.19959 -0.520519 1.73073 -1.19593 -0.520519 1.7344 -1.19593 -0.520519 1.73773 -1.17818 -0.520519 1.73973 -1.18243 -0.520519 1.73773 -1.20018 -0.520519 1.73773 -1.20418 -0.520519 1.73073 -1.20876 -0.520519 1.73073 -1.21018 -0.520519 1.72473 -1.21018 -0.520519 1.72015 -1.21718 -0.520519 1.72873 -1.20818 -0.520519 1.73973 -1.21243 -0.520519 1.73773 -1.21018 -0.520519 1.69932 -1.16818 -0.520519 1.72932 -1.21384 -0.520519 1.70298 -1.21718 -0.220519 1.72073 -1.21918 -0.520519 1.72073 -1.21718 -0.220519 1.71648 -1.21718 -0.520519 1.72073 -1.21718 -0.520519 1.71648 -1.21018 -0.220519 1.72015 -1.21384 -0.520519 1.71648 -1.21018 -0.220519 1.72473 -1.21018 -0.520519 1.72932 -1.21384 -0.520519 1.73298 -1.21718 -0.520519 1.73298 -1.21718 -0.220519 1.72873 -1.21918 -0.520519 1.72873 -1.21918 -0.220519 1.72873 -1.21918 -0.520519 1.73773 -1.21718 -0.220519 1.73973 -1.21718 -0.520519 1.73973 -1.21863 -0.22056 1.73902 -1.21918 -0.220519 1.73773 -1.20818 -0.520519 1.73773 -1.21243 -0.220519 1.7344 -1.21243 -0.520519 1.7344 -1.20418 -0.220519 1.73073 -1.19959 -0.220519 1.73073 -1.19593 -0.220519 1.7344 -1.17818 -0.220519 1.73973 -1.20018 -0.520519 1.73973 -1.17818 -0.520519 1.73773 -1.17418 -0.520519 1.73073 -1.17418 -0.220519 1.73073 -1.16959 -0.220519 1.73073 -1.16593 -0.520519 1.7344 -1.17018 -0.220519 1.73773 -1.17018 -0.220519 1.73973 -1.17018 -0.520519 1.73973 -1.16118 -0.520519 1.73973 -1.15918 -0.520519 1.73773 -1.15984 -0.220603 1.73928 -1.16118 -0.220519 1.73973 -1.15918 -0.520519 1.72873 -1.16118 -0.520519 1.72873 -1.16118 -0.220519 1.73298 -1.16451 -0.220519 1.73298 -1.16118 -0.520519 1.73298 -1.16451 -0.520519 1.73298 -1.16818 -0.520519 1.72473 -1.16818 -0.220519 1.72473 -1.16818 -0.520519 1.72015 -1.16118 -0.520519 1.71648 -1.16118 -0.220519 1.72073 -1.15918 -0.220519 1.72073 -1.16118 -0.520519 1.69873 -1.16118 -0.520519 1.70298 -1.16451 -0.220519 1.70298 -1.16818 -0.520519 1.69473 -1.16818 -0.220519 1.69473 -1.16818 -0.520519 1.69015 -1.16451 -0.220519 1.68648 -1.16118 -0.220519 1.68648 -1.16118 -0.520519 1.68648 -1.16118 -0.220519 1.69073 -1.16118 -0.520519 1.69073 -1.15983 -0.52048 1.68038 -1.16118 -0.220519 1.67973 -1.17018 -0.220519 1.67973 -1.16593 -0.220519 1.68173 -1.16593 -0.520519 1.68173 -1.17876 -0.520519 1.68873 -1.17818 -0.520519 1.68173 -1.17818 -0.220519 1.67973 -1.20018 -0.220519 1.68173 -1.20018 -0.520519 1.68173 -1.19593 -0.220519 1.68507 -1.19959 -0.220519 1.68873 -1.20418 -0.220519 1.68873 -1.20876 -0.220519 1.68873 -1.20876 -0.520519 1.68873 -1.21243 -0.520519 1.68507 -1.21243 -0.520519 1.68173 -1.20818 -0.520519 1.68173 -1.21918 -0.520519 1.68173 -1.21793 -0.520518 1.67973 -1.21718 -0.220519 1.67973 -1.21918 -0.220519 1.68173 -1.21918 -0.220519 1.69073 -1.21718 -0.220519 1.69073 -1.21918 -0.520519 1.69073 -1.21718 -0.520519 1.69073 -1.21718 -0.520519 1.68648 -1.21384 -0.520519 1.68648 -1.21018 -0.520519 1.69473 -1.21018 -0.220519 1.69473 -1.21018 -0.220519 1.69932 -1.21718 -0.220519 1.70298 -1.21718 -0.220519 1.69873 -1.21718 -0.520519 1.69873 -1.21918 -0.520519 1.69873 -1.21918 -0.220519 1.72073 -1.21918 -0.220519 1.69873 -1.21384 -0.220519 1.71648 -1.21018 -0.220519 1.72932 -1.21718 -0.220519 1.73298 -1.21384 -0.220519 1.73298 -1.21243 -0.220519 1.73773 -1.20818 -0.220519 1.73973 -1.20818 -0.220519 1.73773 -1.20876 -0.220519 1.73073 -1.18243 -0.220519 1.7344 -1.18243 -0.220519 1.73773 -1.19593 -0.220519 1.73773 -1.20018 -0.220519 1.73973 -1.20018 -0.220519 1.73773 -1.17818 -0.220519 1.73773 -1.17876 -0.220519 1.73073 -1.16818 -0.220519 1.72932 -1.16818 -0.220519 1.72015 -1.16593 -0.220519 1.7344 -1.16118 -0.220519 1.72873 -1.16593 -0.220519 1.73773 -1.15918 -0.220519 1.72873 -1.16451 -0.220519 1.71648 -1.16918 -0.220519 1.7068 -1.16118 -0.220519 1.70298 -1.16118 -0.220519 1.71648 -1.15918 -0.220519 1.69873 -1.16118 -0.220519 1.69873 -1.16818 -0.220519 1.69015 -1.16959 -0.220519 1.68873 -1.15918 -0.220519 1.69073 -1.15918 -0.220519 1.68173 -1.16593 -0.220519 1.68507 -1.17018 -0.220519 1.68173 -1.17418 -0.220519 1.68873 -1.17876 -0.220519 1.68873 -1.18243 -0.220519 1.68507 -1.19593 -0.220519 1.68173 -1.20018 -0.220519 1.67973 -1.18243 -0.220519 1.68173 -1.17818 -0.220519 1.68173 -1.21384 -0.220519 1.68648 -1.21018 -0.220519 1.69015 -1.21243 -0.220519 1.68173 -1.21243 -0.220519 1.68507 -1.21718 -0.220519 1.68648 -1.20818 -0.220519 1.68173 -1.20818 -0.220519 1.67973 -1.21384 -0.220519 1.70298 -1.16818 -0.220519 1.69932 -1.20918 -0.520519 1.7068 -1.20907 -0.348258 1.7068 -1.20907 -0.312723 1.7068 -1.20907 -0.332233 1.7068 -1.20918 -0.220519 1.71266 -1.20889 -0.220519 1.70651 -1.20918 -0.520519 1.71225 -1.20889 -0.520519 1.71295 -1.2034 -0.220519 1.71844 -1.2034 -0.520519 1.71844 -1.20194 -0.520519 1.71873 -1.20194 -0.220519 1.71873 -1.19901 -0.220785 1.71948 -1.19896 -0.520406 1.71951 -1.19818 -0.520519 1.72249 -1.19789 -0.220519 1.72395 -1.19515 -0.520519 1.7267 -1.19211 -0.220519 1.72973 -1.19169 -0.520519 1.72973 -1.18625 -0.520519 1.72973 -1.18596 -0.220519 1.72944 -1.18666 -0.220519 1.72973 -1.18047 -0.220519 1.72395 -1.18047 -0.520519 1.72395 -1.17935 -0.220604 1.71945 -1.17731 -0.520492 1.71881 -1.18018 -0.220519 1.72249 -1.1797 -0.520513 1.72016 -1.17642 -0.220519 1.71873 -1.1752 -0.318994 1.71862 -1.1752 -0.330142 1.71862 -1.1752 -0.307846 1.71862 -1.17496 -0.520519 1.71844 -1.17496 -0.220519 1.71844 -1.1693 -0.220519 1.71278 -1.16918 -0.520519 1.70722 -1.17221 -0.520519 1.70377 -1.17566 -0.520519 1.70073 -1.17973 -0.396743 1.69921 -1.17566 -0.220519 1.70073 -1.17946 -0.220655 1.69985 -1.17841 -0.520518 1.70052 -1.18018 -0.520519 1.69773 -1.18047 -0.520519 1.69551 -1.18047 -0.220519 1.69551 -1.18596 -0.520519 1.69003 -1.18626 -0.220519 1.68973 -1.1921 -0.520519 1.68973 -1.1924 -0.220519 1.69003 -1.19169 -0.220519 1.68973 -1.19789 -0.220519 1.69551 -1.19789 -0.520519 1.69551 -1.19818 -0.520519 1.69697 -1.1987 -0.221314 1.69938 -1.19818 -0.220519 1.69697 -1.19889 -0.520261 1.69975 -1.20112 -0.220546 1.70066 -1.20106 -0.520505 1.70065 -1.17248 -0.520511 1.69782 -1.17648 -0.220489 1.69744 -1.17204 -0.220509 1.6975 -1.17765 -0.220687 1.69519 -1.17286 -0.220649 1.69155 -1.17661 -0.220635 1.69228 -1.17057 -0.22053 1.69422 -1.17661 -0.520256 1.69714 -1.17447 -0.33673 1.69805 -1.17081 -0.520475 1.69538 -1.17155 -0.520526 1.69197 -1.17577 -0.519738 1.69163 -1.17746 -0.520516 1.69372 -1.20632 -0.519303 1.72746 -1.20145 -0.220504 1.72711 -1.2008 -0.220708 1.72371 -1.20702 -0.220494 1.72259 -1.20693 -0.220494 1.72729 -1.2032 -0.220437 1.7214 -1.20072 -0.520059 1.72545 -1.203 -0.386384 1.72779 -1.20767 -0.520495 1.72505 -1.20223 -0.52052 1.72168 -1.20239 -0.520398 1.72774 -1.2061 -0.520297 1.72182 -1.17379 -0.220565 1.72827 -1.17773 -0.220556 1.72532 -1.17057 -0.220609 1.72491 -1.17611 -0.220978 1.72185 -1.17295 -0.220589 1.72128 -1.17541 -0.520405 1.72804 -1.17616 -0.520398 1.72188 -1.17306 -0.520432 1.72125 -1.17219 -0.520393 1.72757 -1.17739 -0.520454 1.72588 -1.17742 -0.520514 1.72361 -1.17081 -0.520467 1.72538 -1.20137 -0.220498 1.69674 -1.20701 -0.220521 1.69664 -1.20449 -0.220503 1.69835 -1.2076 -0.22052 1.6944 -1.20198 -0.220485 1.69188 -1.20635 -0.220562 1.69202 -1.20425 -0.520361 1.69115 -1.20755 -0.520506 1.69386 -1.20707 -0.520491 1.6966 -1.20456 -0.52052 1.69814 -1.20108 -0.520184 1.69308 -1.20159 -0.520296 1.69721 -1.2034 -0.520519 1.02844 -1.20336 -0.220519 1.02848 -1.21718 -0.220519 1.02648 -1.21918 -0.220519 1.00873 -1.21718 -0.220519 1.01298 -1.21018 -0.220519 1.03015 -1.21018 -0.220519 1.03473 -1.21918 -0.220519 1.04773 -1.21918 -0.220519 1.03873 -1.21718 -0.220519 1.04973 -1.20418 -0.220519 1.04073 -1.19959 -0.220519 1.04073 -1.17876 -0.220519 1.04073 -1.19593 -0.220519 1.0444 -1.18243 -0.220519 1.04773 -1.20018 -0.220519 1.04773 -1.16959 -0.220519 1.04073 -1.17418 -0.220519 1.04073 -1.16593 -0.220519 1.0444 -1.16451 -0.220519 1.04298 -1.16818 -0.220519 1.03473 -1.16818 -0.220519 1.03015 -1.16593 -0.220519 1.04773 -1.16118 -0.220519 1.04298 -1.15918 -0.220519 1.03873 -1.16118 -0.220519 1.03873 -1.15918 -0.220519 1.04773 -1.16451 -0.220519 1.02648 -1.16451 -0.220519 1.01298 -1.16118 -0.220519 1.01298 -1.16118 -0.220519 1.00873 -1.16118 -0.220519 1.02648 -1.16959 -0.220519 0.998733 -1.16818 -0.220519 1.00015 -1.16118 -0.220519 0.996483 -1.16593 -0.220519 0.995068 -1.17018 -0.220519 0.991733 -1.17418 -0.220519 0.998733 -1.18626 -0.220519 0.999734 -1.19593 -0.220519 0.995068 -1.18243 -0.220519 0.991733 -1.20018 -0.220519 0.989733 -1.17818 -0.220519 0.989733 -1.20018 -0.220519 0.991733 -1.19593 -0.220519 0.991733 -1.20418 -0.220519 0.998733 -1.21018 -0.220519 1.00473 -1.21018 -0.220519 1.00932 -1.21243 -0.220519 0.991733 -1.21718 -0.220519 1.00073 -1.21384 -0.220519 1.01298 -1.16818 -0.220519 1.00932 -1.19837 -0.220715 1.00889 -1.21718 -0.520519 1.00873 -1.21718 -0.220519 1.00873 -1.21018 -0.520519 1.00932 -1.21018 -0.220519 1.00015 -1.21384 -0.220519 0.996483 -1.21718 -0.520519 0.996483 -1.21718 -0.520519 1.00073 -1.21718 -0.220519 0.996483 -1.21918 -0.220519 1.00073 -1.21918 -0.220519 0.991733 -1.2186 -0.520427 0.990269 -1.21718 -0.220519 0.989733 -1.20818 -0.520519 0.989733 -1.20818 -0.220519 0.989733 -1.21243 -0.520519 0.991733 -1.20818 -0.220519 0.991733 -1.21243 -0.220519 0.995068 -1.20876 -0.220519 0.998733 -1.20418 -0.520519 0.998733 -1.19959 -0.220519 0.998733 -1.19593 -0.520519 0.995068 -1.17818 -0.520519 0.991733 -1.17818 -0.220519 0.991733 -1.18243 -0.220519 0.995068 -1.17876 -0.220519 0.998733 -1.16959 -0.520519 0.998733 -1.16593 -0.520519 0.991733 -1.16593 -0.220519 0.991733 -1.17018 -0.520519 0.991733 -1.17018 -0.220519 0.989733 -1.15918 -0.220519 0.991733 -1.17018 -0.520519 0.989733 -1.15984 -0.220528 0.990312 -1.16118 -0.220519 0.989733 -1.15918 -0.220519 1.00073 -1.16118 -0.220519 1.00073 -1.16118 -0.520519 0.996483 -1.16451 -0.220519 0.996483 -1.16818 -0.220519 1.00473 -1.15918 -0.220519 1.00873 -1.16118 -0.520519 1.03073 -1.15918 -0.220519 1.03073 -1.16118 -0.220519 1.03073 -1.16451 -0.520519 1.02648 -1.16818 -0.220519 1.03932 -1.16818 -0.520519 1.03932 -1.16118 -0.520519 1.03873 -1.15918 -0.520519 1.03873 -1.15925 -0.520506 1.04825 -1.1599 -0.256363 1.04924 -1.16056 -0.520519 1.04973 -1.16118 -0.220519 1.04973 -1.17018 -0.520519 1.04973 -1.17018 -0.220519 1.04973 -1.17018 -0.520519 1.04773 -1.17018 -0.220519 1.04773 -1.16959 -0.520519 1.04073 -1.17418 -0.520519 1.04073 -1.18243 -0.220519 1.0444 -1.17818 -0.220519 1.04773 -1.20018 -0.520519 1.04973 -1.17818 -0.220519 1.04973 -1.20018 -0.220519 1.04973 -1.19593 -0.220519 1.04773 -1.19959 -0.520519 1.04073 -1.20876 -0.520519 1.04073 -1.20876 -0.220519 1.04073 -1.21243 -0.220519 1.0444 -1.21243 -0.520519 1.04773 -1.21243 -0.220519 1.04773 -1.20818 -0.520519 1.04773 -1.20818 -0.220519 1.04773 -1.20818 -0.220519 1.04973 -1.21918 -0.520519 1.04773 -1.21863 -0.22053 1.04903 -1.21824 -0.520438 1.04947 -1.21918 -0.520519 1.03873 -1.21718 -0.220519 1.03873 -1.21718 -0.220519 1.04298 -1.21384 -0.220519 1.04298 -1.21018 -0.220519 1.03932 -1.21718 -0.520519 1.02648 -1.21384 -0.220519 1.02648 -1.21718 -0.520519 1.03073 -1.21718 -0.220519 1.03073 -1.21918 -0.220519 1.03073 -1.21918 -0.520519 1.00873 -1.21918 -0.520519 1.03073 -1.21718 -0.520519 1.01298 -1.21018 -0.520519 1.00473 -1.21384 -0.520519 0.996483 -1.21918 -0.520519 1.00073 -1.21918 -0.520519 0.991733 -1.21243 -0.520519 0.995068 -1.20818 -0.520519 0.991733 -1.20876 -0.520519 0.998733 -1.19959 -0.520519 0.998733 -1.18243 -0.520519 0.995068 -1.17876 -0.520519 0.998733 -1.18243 -0.520519 0.991733 -1.19593 -0.520519 0.991733 -1.17818 -0.520519 0.989733 -1.20018 -0.520519 0.989733 -1.20018 -0.520519 0.991733 -1.17418 -0.520519 0.998733 -1.16818 -0.520519 1.00015 -1.17075 -0.520314 1.00398 -1.16818 -0.520519 1.00473 -1.16818 -0.520519 1.00932 -1.16593 -0.520519 0.995068 -1.16451 -0.520519 0.996483 -1.16118 -0.520519 1.00073 -1.1594 -0.520515 0.9907 -1.15918 -0.520519 0.991733 -1.16451 -0.520519 1.01298 -1.16818 -0.520519 1.03015 -1.16118 -0.520519 1.01298 -1.16118 -0.520519 1.02648 -1.16118 -0.520519 1.00873 -1.16818 -0.520519 1.03473 -1.16451 -0.520519 1.04298 -1.16118 -0.520519 1.04298 -1.16593 -0.520519 1.0444 -1.16593 -0.520519 1.04773 -1.17876 -0.520519 1.04073 -1.18243 -0.520519 1.0444 -1.19593 -0.520519 1.0444 -1.19593 -0.520519 1.04773 -1.17818 -0.520519 1.04973 -1.18243 -0.520519 1.04773 -1.17818 -0.520519 1.04773 -1.20018 -0.520519 1.04773 -1.20418 -0.520519 1.04073 -1.21018 -0.520519 1.03932 -1.21018 -0.520519 1.03473 -1.21018 -0.520519 1.03015 -1.21243 -0.520519 1.0444 -1.21384 -0.520519 1.04298 -1.21718 -0.520519 1.04298 -1.21718 -0.520519 1.03873 -1.20818 -0.520519 1.04973 -1.21384 -0.520519 1.02648 -1.20269 -0.520519 1.01073 -1.21018 -0.520519 1.00015 -1.21384 -0.520519 1.01298 -1.20918 -0.220519 1.02266 -1.20918 -0.520519 1.0168 -1.20901 -0.520519 1.02283 -1.20918 -0.220519 1.01722 -1.20894 -0.220519 1.01656 -1.2034 -0.220519 1.01103 -1.2034 -0.520519 1.01103 -1.19891 -0.519914 1.00979 -1.20098 -0.220528 1.01062 -1.19818 -0.220519 1.00622 -1.19818 -0.520519 1.00697 -1.1921 -0.520519 0.999734 -1.19807 -0.411361 1.0058 -1.19807 -0.401605 1.0058 -1.19807 -0.389992 1.0058 -1.19169 -0.220519 0.999733 -1.19515 -0.220519 1.00277 -1.18596 -0.520519 1.00003 -1.18047 -0.220519 1.00551 -1.18047 -0.520519 1.00551 -1.17642 -0.520519 1.01073 -1.18018 -0.520519 1.00697 -1.18018 -0.220519 1.00773 -1.17924 -0.220545 1.01014 -1.1792 -0.519995 1.01003 -1.17642 -0.220519 1.01073 -1.17496 -0.220519 1.01103 -1.1752 -0.389528 1.01085 -1.17496 -0.520519 1.01103 -1.1752 -0.409502 1.01085 -1.1752 -0.37838 1.01085 -1.16933 -0.520519 1.01665 -1.16918 -0.520519 1.02266 -1.16918 -0.220519 1.0168 -1.16934 -0.220519 1.02282 -1.17496 -0.220519 1.02844 -1.17496 -0.520519 1.02844 -1.1792 -0.52048 1.02936 -1.17642 -0.520519 1.02873 -1.17872 -0.220522 1.02912 -1.17993 -0.220523 1.03047 -1.18047 -0.520519 1.03395 -1.18047 -0.220519 1.03395 -1.18018 -0.520519 1.03173 -1.18596 -0.220519 1.03944 -1.19211 -0.220519 1.03973 -1.18625 -0.520519 1.03973 -1.1924 -0.520519 1.03944 -1.19789 -0.520519 1.03395 -1.19789 -0.220519 1.03395 -1.19818 -0.520519 1.03249 -1.20194 -0.220519 1.02873 -1.20286 -0.520517 1.0287 -1.19963 -0.520332 1.02907 -1.19829 -0.22052 1.03145 -1.19999 -0.22054 1.02896 -1.17712 -0.520523 1.037 -1.17106 -0.5205 1.0332 -1.17303 -0.374621 1.03166 -1.17431 -0.520451 1.03122 -1.17202 -0.520294 1.03762 -1.17545 -0.220655 1.03808 -1.17153 -0.220564 1.03729 -1.17709 -0.520094 1.03281 -1.17641 -0.220553 1.03185 -1.17741 -0.220525 1.03584 -1.1709 -0.220638 1.03336 -1.20143 -0.520069 1.00687 -1.20568 -0.220559 1.00811 -1.20093 -0.520372 1.0032 -1.20226 -0.220719 1.00764 -1.20573 -0.520289 1.00799 -1.20733 -0.520459 1.00321 -1.20755 -0.220542 1.0035 -1.20436 -0.52052 1.00129 -1.20418 -0.220566 1.00128 -1.20732 -0.362902 1.00588 -1.20053 -0.220556 1.00469 -1.17583 -0.52009 1.00783 -1.17348 -0.519925 1.00139 -1.17291 -0.52051 1.0081 -1.17746 -0.520484 1.0053 -1.1742 -0.337121 1.00797 -1.17647 -0.52054 1.00204 -1.17597 -0.220503 1.00175 -1.17297 -0.220582 1.00153 -1.17085 -0.220752 1.00334 -1.1776 -0.220545 1.00399 -1.17616 -0.220638 1.00757 -1.17148 -0.220816 1.0069 -1.20492 -0.520392 1.03806 -1.20165 -0.520362 1.03233 -1.20521 -0.520268 1.03121 -1.20759 -0.520413 1.03558 -1.20075 -0.520308 1.03572 -1.20761 -0.220717 1.0337 -1.20501 -0.22056 1.03128 -1.20674 -0.220587 1.03709 -1.2026 -0.359972 1.03766 -1.2036 -0.220601 1.03815 -1.20091 -0.220565 1.03589 -1.20123 -0.220698 1.03282 -1.2034 -0.481812 1.67973 -1.2034 -0.481812 1.04973 -1.20269 -0.481519 1.67973 -1.20269 -0.481519 1.04973 -1.21918 -0.479519 1.04973 -1.21918 -0.501519 1.04973 -1.21718 -0.497269 1.04973 -1.21718 -0.483769 1.04973 -1.21384 -0.483769 1.04973 -1.21384 -0.497269 1.04973 -1.21018 -0.480105 1.04973 -1.20988 -0.475519 1.04973 -1.21018 -0.476039 1.04973 -1.21018 -0.470933 1.04973 -1.21384 -0.467269 1.04973 -1.20876 -0.469519 1.04973 -1.21243 -0.465855 1.04973 -1.21243 -0.462519 1.04973 -1.2047 -0.469519 1.04973 -1.20418 -0.469819 1.04973 -1.19959 -0.469519 1.04973 -1.1924 -0.470812 1.04973 -1.19593 -0.465855 1.04973 -1.18243 -0.465855 1.04973 -1.17876 -0.469519 1.04973 -1.18243 -0.462519 1.04973 -1.17818 -0.460519 1.04973 -1.20018 -0.462519 1.04973 -1.17418 -0.469819 1.04973 -1.16818 -0.474999 1.04973 -1.16848 -0.475519 1.04973 -1.16818 -0.476039 1.04973 -1.16593 -0.465855 1.04973 -1.17018 -0.462519 1.04973 -1.17018 -0.460519 1.04973 -1.16451 -0.483769 1.04973 -1.16118 -0.501519 1.04973 -1.15918 -0.479519 1.04973 -1.16818 -0.504999 1.04973 -1.16848 -0.505519 1.04973 -1.16118 -0.513769 1.04973 -1.16451 -0.513769 1.04973 -1.16593 -0.518519 1.04973 -1.17018 -0.518519 1.04973 -1.16959 -0.511519 1.04973 -1.17366 -0.511519 1.04973 -1.1747 -0.511519 1.04973 -1.17876 -0.511519 1.04973 -1.19593 -0.515183 1.04973 -1.19593 -0.518519 1.04973 -1.19959 -0.511519 1.04973 -1.20418 -0.511219 1.04973 -1.2047 -0.511519 1.04973 -1.21243 -0.515183 1.04973 -1.20876 -0.511519 1.04973 -1.21384 -0.513769 1.04973 -1.21018 -0.510105 1.04973 -1.21018 -0.506039 1.04973 -1.21018 -0.504999 1.04973 -1.21718 -0.513769 1.04973 -1.21718 -0.509519 1.04973 -1.21243 -0.518519 1.04973 -1.21018 -0.500933 1.04973 -1.201 -0.504192 1.04975 -1.21718 -0.501519 1.04973 -1.21018 -0.504999 1.67973 -1.21018 -0.506039 1.67973 -1.20988 -0.505519 1.04973 -1.21718 -0.509519 1.67973 -1.21918 -0.509519 1.67973 -1.21918 -0.509519 1.04973 -1.21759 -0.520519 1.04973 -1.21918 -0.518519 1.04973 -1.21893 -0.519448 1.3527 -1.20818 -0.518519 1.04973 -1.20818 -0.518519 1.67973 -1.21243 -0.518519 1.67973 -1.21243 -0.515183 1.67973 -1.20366 -0.511519 1.04973 -1.19593 -0.515183 1.67973 -1.19593 -0.518519 1.67973 -1.20018 -0.518519 1.67973 -1.20018 -0.518519 1.04973 -1.17818 -0.518519 1.67973 -1.17818 -0.518519 1.04973 -1.18243 -0.518519 1.67973 -1.18243 -0.518519 1.04973 -1.18243 -0.515183 1.04973 -1.1747 -0.511519 1.67973 -1.17418 -0.511219 1.04973 -1.16593 -0.515183 1.04973 -1.16593 -0.518519 1.67973 -1.17018 -0.518519 1.67973 -1.17018 -0.520519 1.67973 -1.16118 -0.520519 1.67973 -1.15998 -0.520052 1.67963 -1.15987 -0.519954 1.04974 -1.15928 -0.519097 1.39673 -1.15918 -0.518519 1.04973 -1.15918 -0.509519 1.67973 -1.16118 -0.509519 1.04973 -1.16118 -0.513769 1.67973 -1.16451 -0.513769 1.67973 -1.16818 -0.510105 1.67973 -1.16818 -0.506039 1.67973 -1.16818 -0.510105 1.04973 -1.16818 -0.506039 1.04973 -1.16848 -0.505519 1.67973 -1.16818 -0.500933 1.04973 -1.16451 -0.497269 1.04973 -1.16118 -0.501519 1.67973 -1.16118 -0.497269 1.04973 -1.15918 -0.479519 1.67973 -1.16118 -0.479519 1.67973 -1.16118 -0.479519 1.04973 -1.16118 -0.483769 1.04973 -1.16818 -0.480105 1.04973 -1.16848 -0.475519 1.67973 -1.16818 -0.470933 1.67973 -1.16818 -0.470933 1.04973 -1.16451 -0.467269 1.04973 -1.16118 -0.467269 1.04973 -1.16118 -0.467269 1.67973 -1.16118 -0.471519 1.04973 -1.16118 -0.471519 1.67973 -1.16118 -0.460519 1.04973 -1.16118 -0.460519 1.67973 -1.15925 -0.462001 1.36002 -1.15979 -0.460983 1.05024 -1.15949 -0.461371 1.67975 -1.15993 -0.461001 1.53009 -1.17018 -0.462519 1.67973 -1.16593 -0.462519 1.04973 -1.16593 -0.465855 1.67973 -1.16959 -0.469519 1.04973 -1.16959 -0.469519 1.67973 -1.17366 -0.469519 1.67973 -1.17366 -0.469519 1.04973 -1.17418 -0.469819 1.67973 -1.1747 -0.469519 1.04973 -1.1747 -0.469519 1.67973 -1.17876 -0.469519 1.67973 -1.18243 -0.462519 1.67973 -1.17818 -0.462519 1.67973 -1.17818 -0.460519 1.67973 -1.17818 -0.462519 1.04973 -1.20018 -0.460519 1.04973 -1.20018 -0.460519 1.67973 -1.20018 -0.462519 1.67973 -1.19593 -0.462519 1.04973 -1.19593 -0.465855 1.67973 -1.20366 -0.469519 1.04973 -1.20418 -0.469819 1.67973 -1.20818 -0.462519 1.67973 -1.20818 -0.462519 1.04973 -1.20818 -0.460519 1.67973 -1.20818 -0.460519 1.04973 -1.21816 -0.46082 1.56449 -1.21718 -0.460519 1.67973 -1.21718 -0.460519 1.04973 -1.21918 -0.462519 1.67973 -1.21918 -0.462519 1.04973 -1.21823 -0.460763 1.04976 -1.21862 -0.461241 1.67964 -1.21718 -0.471519 1.67973 -1.21918 -0.471519 1.04973 -1.21718 -0.471519 1.04973 -1.21718 -0.467269 1.67973 -1.21718 -0.467269 1.04973 -1.21384 -0.467269 1.67973 -1.21018 -0.470933 1.67973 -1.21018 -0.474999 1.04973 -1.20988 -0.475519 1.67973 -1.21718 -0.483769 1.67973 -1.21718 -0.479519 1.67973 -1.21918 -0.479519 1.67973 -1.21718 -0.479519 1.04973 -1.21918 -0.501519 1.67973 -1.21718 -0.497269 1.67973 -1.21718 -0.501519 1.67973 -1.21018 -0.500933 1.67973 -1.20988 -0.505519 1.67973 -1.21018 -0.510105 1.67973 -1.21384 -0.513769 1.67973 -1.21718 -0.513769 1.67973 -1.21918 -0.518519 1.67973 -1.20818 -0.520519 1.67973 -1.20876 -0.511519 1.67973 -1.2047 -0.511519 1.67973 -1.20418 -0.511219 1.67973 -1.20366 -0.511519 1.67973 -1.19959 -0.511519 1.67973 -1.18596 -0.510226 1.67973 -1.18243 -0.515183 1.67973 -1.17876 -0.511519 1.67973 -1.17418 -0.511219 1.67973 -1.17366 -0.511519 1.67973 -1.16959 -0.511519 1.67973 -1.16818 -0.504999 1.67973 -1.16818 -0.500933 1.67973 -1.17496 -0.499226 1.67973 -1.16593 -0.515183 1.67973 -1.16118 -0.509519 1.67973 -1.16451 -0.497269 1.67973 -1.16451 -0.483769 1.67973 -1.16118 -0.483769 1.67973 -1.16118 -0.497269 1.67973 -1.15918 -0.501519 1.67973 -1.16818 -0.476039 1.67973 -1.16818 -0.474999 1.67973 -1.16451 -0.467269 1.67973 -1.16593 -0.462519 1.67973 -1.17018 -0.460519 1.67973 -1.18596 -0.470812 1.67973 -1.18243 -0.465855 1.67973 -1.19593 -0.462519 1.67973 -1.20366 -0.469519 1.67973 -1.2047 -0.469519 1.67973 -1.21243 -0.465855 1.67973 -1.20876 -0.469519 1.67973 -1.21018 -0.474999 1.67973 -1.21018 -0.476039 1.67973 -1.21918 -0.471519 1.67973 -1.21243 -0.462519 1.67973 -1.21018 -0.480105 1.67973 -1.21384 -0.483769 1.67973 -1.19959 -0.469519 1.67973 -1.16818 -0.480105 1.67973 -1.21384 -0.497269 1.67973 -1.20889 -0.487297 1.67973 -1.20918 -0.488004 1.67973 -1.20918 -0.488004 1.04973 -1.20889 -0.487297 1.04973 -1.20907 -0.487586 1.36703 -1.20918 -0.493034 1.67973 -1.20889 -0.493741 1.04973 -1.20918 -0.493034 1.04973 -1.20889 -0.493741 1.67973 -1.2034 -0.499226 1.67973 -1.2034 -0.499226 1.04973 -1.20118 -0.499519 1.67973 -1.20194 -0.499519 1.04973 -1.19897 -0.500547 1.35464 -1.19877 -0.500553 1.6795 -1.20016 -0.499711 1.32992 -1.19901 -0.500287 1.04998 -1.19818 -0.503276 1.67973 -1.1981 -0.504393 1.38103 -1.19789 -0.504741 1.67973 -1.19789 -0.504741 1.04973 -1.19818 -0.502519 1.04973 -1.1924 -0.510226 1.04973 -1.19169 -0.510519 1.04973 -1.1924 -0.510226 1.67973 -1.19169 -0.510519 1.67973 -1.18666 -0.510519 1.67973 -1.18666 -0.510519 1.04973 -1.18596 -0.510226 1.04973 -1.18047 -0.504741 1.67973 -1.18047 -0.504741 1.04973 -1.18018 -0.502519 1.04973 -1.18018 -0.502519 1.67973 -1.17718 -0.499519 1.04973 -1.17718 -0.499519 1.67973 -1.17917 -0.5002 1.6796 -1.17967 -0.500954 1.5194 -1.17821 -0.499711 1.36879 -1.17937 -0.500387 1.05008 -1.17566 -0.499519 1.04973 -1.17566 -0.499519 1.67973 -1.17496 -0.499226 1.04973 -1.16947 -0.493741 1.04973 -1.16947 -0.493741 1.67973 -1.16918 -0.493034 1.67973 -1.16918 -0.493034 1.04973 -1.16918 -0.488004 1.67973 -1.16947 -0.487297 1.67973 -1.16918 -0.488004 1.04973 -1.16922 -0.487705 1.36703 -1.16947 -0.487297 1.04973 -1.17566 -0.481519 1.04973 -1.17496 -0.481812 1.67973 -1.17566 -0.481519 1.67973 -1.17496 -0.481812 1.04973 -1.17718 -0.481519 1.67973 -1.17718 -0.481519 1.04973 -1.17934 -0.480648 1.04992 -1.17845 -0.481266 1.67973 -1.1799 -0.479715 1.33061 -1.17802 -0.481373 1.25218 -1.17902 -0.480796 1.38476 -1.17994 -0.479761 1.67972 -1.18018 -0.478519 1.67973 -1.18018 -0.478519 1.04973 -1.18047 -0.476297 1.67973 -1.18047 -0.476297 1.04973 -1.18666 -0.470519 1.67973 -1.18666 -0.470519 1.04973 -1.18627 -0.470612 1.38103 -1.18596 -0.470812 1.04973 -1.1924 -0.470812 1.67973 -1.19169 -0.470519 1.67973 -1.19169 -0.470519 1.04973 -1.19789 -0.476297 1.67973 -1.19807 -0.476586 1.36703 -1.19789 -0.476297 1.04973 -1.19818 -0.477004 1.67973 -1.19818 -0.477762 1.04973 -1.19899 -0.480683 1.67935 -1.19818 -0.478519 1.67973 -1.19957 -0.480926 1.52738 -1.19832 -0.479351 1.32853 -1.19909 -0.48063 1.32853 -1.20118 -0.481519 1.67973 -1.19904 -0.48085 1.04982 -1.20118 -0.481519 1.04973 -1.17783 -0.475393 1.67966 -1.17523 -0.47214 1.67974 -1.17318 -0.478898 1.6797 -1.17172 -0.473264 1.51583 -1.17622 -0.478298 1.67967 -1.17083 -0.474703 1.67971 -1.17261 -0.472489 1.67968 -1.17462 -0.472183 1.54113 -1.17098 -0.474356 1.27653 -1.171 -0.476808 1.67968 -1.17755 -0.475422 1.3921 -1.17707 -0.473846 1.40273 -1.17085 -0.47581 1.31906 -1.17692 -0.47737 1.29956 -1.17199 -0.478124 1.35213 -1.17547 -0.478626 1.2974 -1.17421 -0.47208 1.04972 -1.17179 -0.473062 1.04974 -1.17289 -0.478757 1.04973 -1.17585 -0.478619 1.0497 -1.17758 -0.476165 1.04977 -1.17663 -0.473044 1.04979 -1.17071 -0.47594 1.04965 -1.20725 -0.503795 1.04964 -1.20745 -0.506669 1.67963 -1.20101 -0.50421 1.67966 -1.20094 -0.506773 1.67974 -1.20213 -0.508219 1.67954 -1.20739 -0.504487 1.67966 -1.2036 -0.508817 1.41946 -1.20517 -0.508857 1.67975 -1.20648 -0.507931 1.38944 -1.20627 -0.50278 1.67972 -1.20248 -0.502538 1.67968 -1.20445 -0.502105 1.67972 -1.2014 -0.503577 1.31788 -1.20588 -0.502575 1.15998 -1.20747 -0.505969 1.29592 -1.20085 -0.505182 1.34268 -1.20118 -0.507036 1.39682 -1.20091 -0.506879 1.04972 -1.20364 -0.508914 1.04977 -1.20696 -0.507668 1.04972 -1.20425 -0.502117 1.04981 -1.20216 -0.502769 1.04974 -1.17385 -0.508982 1.04972 -1.17091 -0.504351 1.04979 -1.17059 -0.504893 1.67981 -1.17663 -0.507982 1.67972 -1.17336 -0.502199 1.67972 -1.17761 -0.505212 1.67965 -1.17295 -0.508822 1.67974 -1.17639 -0.502907 1.67969 -1.17169 -0.503245 1.54113 -1.17218 -0.50824 1.49703 -1.1711 -0.506615 1.47813 -1.17169 -0.503245 1.29543 -1.17447 -0.508842 1.55648 -1.17096 -0.504428 1.44978 -1.17339 -0.502304 1.2972 -1.17682 -0.503486 1.38166 -1.17547 -0.502411 1.31886 -1.17103 -0.506662 1.23243 -1.17724 -0.506793 1.33638 -1.17747 -0.504996 1.37861 -1.17685 -0.50757 1.04975 -1.17605 -0.508326 1.21648 -1.17763 -0.504391 1.0496 -1.17332 -0.502028 1.04973 -1.17155 -0.507711 1.04974 -1.20651 -0.472865 1.0497 -1.20576 -0.478602 1.67961 -1.20492 -0.472202 1.67973 -1.20176 -0.477951 1.67972 -1.20747 -0.476536 1.67974 -1.20748 -0.474643 1.67972 -1.20123 -0.473519 1.67963 -1.20348 -0.478865 1.67968 -1.20331 -0.472248 1.43708 -1.2074 -0.476382 1.5049 -1.20098 -0.476682 1.41513 -1.20182 -0.47316 1.34504 -1.20547 -0.478626 1.3349 -1.20633 -0.472841 1.6797 -1.20695 -0.477372 1.40923 -1.20736 -0.476442 1.19896 -1.20386 -0.478963 1.04983 -1.20461 -0.472183 1.21353 -1.20085 -0.475228 1.33505 -1.20588 -0.472574 1.21353 -1.20248 -0.472248 1.04985 -1.20676 -0.477858 1.04971 -1.20157 -0.477735 1.04975 -1.20754 -0.474991 1.04973 -1.20069 -0.475436 1.04973 -1.15918 -0.481519 1.00622 -1.15918 -0.481812 1.00551 0.140821 -0.481812 1.00551 0.140821 -0.501519 0.991733 0.140821 -0.497269 0.991733 0.140821 -0.480105 0.998733 0.140821 -0.476039 0.998733 0.140821 -0.475519 0.999032 0.140821 -0.474999 0.998733 0.140821 -0.469519 1.00015 0.140821 -0.467269 0.991733 0.140821 -0.467269 0.995068 0.140821 -0.465855 0.996483 0.140821 -0.469519 1.00421 0.140821 -0.469819 1.00473 0.140821 -0.469519 1.00525 0.140821 -0.469519 1.00932 0.140821 -0.465855 1.01298 0.140821 -0.469519 1.03015 0.140821 -0.465855 1.02648 0.140821 -0.462519 1.02648 0.140821 -0.460519 1.03073 0.140821 -0.469519 1.03421 0.140821 -0.469519 1.03525 0.140821 -0.474999 1.04073 0.140821 -0.480105 1.04073 0.140821 -0.462519 1.04298 0.140821 -0.465855 1.04298 0.140821 -0.467269 1.04773 0.140821 -0.471519 1.04773 0.140821 -0.483769 1.0444 0.140821 -0.497269 1.0444 0.140821 -0.500933 1.04073 0.140821 -0.505519 1.04043 0.140821 -0.511519 1.03932 0.140821 -0.513769 1.0444 0.140821 -0.509519 1.04773 0.140821 -0.518519 1.04298 0.140821 -0.520519 1.03873 0.140821 -0.511519 1.03525 0.140821 -0.511519 1.00932 0.140821 -0.515183 1.01298 0.140821 -0.518519 1.01298 0.140821 -0.520519 1.00873 0.140821 -0.520519 1.03073 0.140821 -0.511519 1.00525 0.140821 -0.511219 1.00473 0.140821 -0.511519 1.00421 0.140821 -0.510105 0.998733 0.140821 -0.506039 0.998733 0.140821 -0.505519 0.999032 0.140821 -0.504999 0.998733 0.140821 -0.500933 0.998733 0.140821 -0.515183 0.996483 0.140821 -0.509519 0.991733 0.140821 -0.518519 0.996483 0.140821 -0.518519 0.989733 0.140821 -0.481519 1.00622 0.140821 -0.470933 0.998733 0.14082 -0.499846 1.03027 0.140821 -0.483769 0.995068 0.140821 -0.501519 0.989733 0.140821 -0.497269 0.995068 -1.15918 -0.500933 0.998733 -1.15918 -0.505519 0.999032 -1.15918 -0.510105 0.998733 -1.15918 -0.513769 0.995068 -1.15918 -0.513769 0.991733 0.140821 -0.513769 0.995068 0.140821 -0.513769 0.991733 -1.15918 -0.509519 0.991733 -1.15918 -0.509519 0.989733 0.140821 -0.509519 0.989733 -0.505372 -0.520391 0.991051 0.140389 -0.520028 0.990559 -1.15918 -0.518519 0.989733 -0.804449 -0.519798 0.990257 0.140821 -0.520519 0.991733 -0.370064 -0.51991 0.990317 -0.163755 -0.519342 0.989932 -1.15923 -0.520068 0.990421 -1.15918 -0.520519 1.00073 0.140821 -0.520519 1.00073 0.140821 -0.518519 1.00073 -1.15918 -0.518519 1.00073 -1.15918 -0.515183 0.996483 0.140821 -0.511519 1.00015 -1.15918 -0.511519 1.00525 -1.15918 -0.511519 1.00932 -1.15918 -0.515183 1.01298 -1.15918 -0.518519 1.01298 -1.15918 -0.518519 1.00873 0.140821 -0.518519 1.00873 -1.15918 -0.520519 1.03073 -1.15918 -0.518519 1.03073 -1.15918 -0.518519 1.02648 0.140821 -0.518519 1.03073 0.140821 -0.518519 1.02648 0.140821 -0.515183 1.02648 0.140821 -0.511519 1.03015 -1.15918 -0.511519 1.03421 -1.15918 -0.511219 1.03473 0.140821 -0.511519 1.03421 0.140821 -0.511219 1.03473 -1.15918 -0.511519 1.03525 -1.15918 -0.511519 1.03932 -1.15918 -0.515183 1.04298 -1.15918 -0.518519 1.04298 0.140821 -0.515183 1.04298 -1.15918 -0.518519 1.03873 0.140821 -0.518519 1.03873 0.140786 -0.519572 1.04948 -0.781183 -0.519201 1.04961 -0.796703 -0.519966 1.04906 -0.462347 -0.519201 1.04961 -0.523495 -0.520412 1.04834 -0.344434 -0.519972 1.04905 -1.15918 -0.520519 1.04773 0.140821 -0.520519 1.04773 -1.15918 -0.509519 1.04773 0.140821 -0.513769 1.04773 -1.15918 -0.513769 1.0444 0.140821 -0.510105 1.04073 -1.15918 -0.506039 1.04073 0.140821 -0.506039 1.04073 -1.15918 -0.504999 1.04073 0.140821 -0.504999 1.04073 -1.15918 -0.500933 1.04073 -1.15918 -0.497269 1.04773 0.140821 -0.497269 1.04773 -1.15918 -0.501519 1.04973 0.140821 -0.501519 1.04773 0.140821 -0.479519 1.04973 0.140821 -0.479519 1.04773 -1.15918 -0.479519 1.04773 0.140821 -0.483769 1.04773 -1.15918 -0.480105 1.04073 0.140821 -0.476039 1.04073 0.140821 -0.475519 1.04043 -1.15918 -0.475519 1.04043 0.140821 -0.470933 1.04073 -1.15918 -0.467269 1.04773 0.140821 -0.467269 1.0444 -1.15918 -0.471519 1.04773 -0.45954 -0.460587 1.04825 -1.15918 -0.460519 1.04773 -0.444575 -0.461016 1.049 -0.42961 -0.461838 1.04961 0.140821 -0.460519 1.04773 -0.283696 -0.461128 1.04913 0.140788 -0.461329 1.04937 -0.813306 -0.460904 1.04886 -1.13722 -0.461347 1.04923 -1.15918 -0.462519 1.04973 -0.864545 -0.461538 1.04944 -1.15918 -0.460519 1.03873 0.140821 -0.460519 1.03873 -1.15918 -0.462519 1.03873 0.140821 -0.462519 1.03873 -1.15918 -0.462519 1.04298 -1.15918 -0.465855 1.04298 0.140821 -0.469519 1.03932 -1.15918 -0.469819 1.03473 0.140821 -0.469819 1.03473 -1.15918 -0.469519 1.03421 -1.15918 -0.465855 1.02648 -1.15918 -0.462519 1.02648 -1.15918 -0.462519 1.03073 0.140821 -0.462519 1.03073 -1.15918 -0.460519 1.03073 -1.15918 -0.460519 1.00873 -1.15918 -0.462519 1.00873 0.140821 -0.462519 1.00873 0.140821 -0.462519 1.01298 -1.15918 -0.469819 1.00473 -1.15918 -0.469519 1.00421 -1.15918 -0.465855 0.996483 -1.15918 -0.462519 1.00073 0.140821 -0.462519 0.996483 0.140821 -0.462519 1.00073 -1.15918 -0.460519 1.00073 -1.15918 -0.460519 0.991733 -1.15918 -0.462519 0.989733 0.140821 -0.462519 0.989733 0.140808 -0.461251 0.990252 -0.536239 -0.462092 0.989801 -0.359459 -0.46178 0.98989 -1.15904 -0.461766 0.989866 -0.42961 -0.460647 0.991051 -0.0255407 -0.461182 0.990273 -1.1591 -0.460726 0.990754 -0.62381 -0.461224 0.990234 0.140821 -0.471519 0.989733 -1.15918 -0.471519 0.989733 -1.15918 -0.471519 0.991733 0.140821 -0.471519 0.991733 -1.15918 -0.467269 0.991733 -1.15918 -0.475519 0.999032 -1.15918 -0.476039 0.998733 -1.15918 -0.483769 0.995068 0.140821 -0.483769 0.991733 0.140821 -0.479519 0.991733 -1.15918 -0.479519 0.989733 0.140821 -0.479519 0.989733 -1.15918 -0.501519 0.989733 -1.15918 -0.479519 0.991733 -1.15918 -0.483769 0.991733 -1.15918 -0.501519 0.991733 -1.15918 -0.497269 0.991733 -1.15918 -0.493741 1.00003 -1.15918 -0.504999 0.998733 -1.15918 -0.506039 0.998733 -1.15918 -0.511519 1.00015 -1.15918 -0.518519 0.996483 -1.15918 -0.511519 1.00421 -1.15918 -0.511219 1.00473 -1.15918 -0.515183 1.02648 -1.15918 -0.511519 1.03015 -1.15918 -0.520519 1.00873 -1.15918 -0.510105 1.04073 -1.15918 -0.505519 1.04043 -1.15918 -0.513769 1.04773 -1.15918 -0.509519 1.04973 -1.15765 -0.519708 1.04936 -1.15918 -0.497269 1.0444 -1.15918 -0.483769 1.0444 -1.15918 -0.483769 1.04773 -1.15918 -0.501519 1.04773 -1.15918 -0.476039 1.04073 -1.15918 -0.474999 1.04073 -1.15918 -0.467269 1.0444 -1.15918 -0.470933 1.04073 -1.15918 -0.471519 1.04973 -1.15918 -0.469519 1.03932 -1.15918 -0.469519 1.03525 -1.15918 -0.469519 1.03015 -1.15918 -0.465855 1.01298 -1.15918 -0.469519 1.00932 -1.15918 -0.462519 1.01298 -1.15918 -0.469519 1.00525 -1.15918 -0.467269 0.995068 -1.15918 -0.469519 1.00015 -1.15918 -0.470933 0.998733 -1.15918 -0.474999 0.998733 -1.15918 -0.480105 0.998733 -1.15918 -0.462519 0.996483 -1.15918 -0.497269 0.995068 0.140821 -0.488004 0.999733 -0.586008 -0.487586 0.999836 -1.15918 -0.488004 0.999733 -1.15918 -0.487297 1.00003 0.140821 -0.487297 1.00003 -1.15918 -0.493034 0.999733 -0.507741 -0.493393 0.99981 0.140821 -0.493034 0.999733 0.140821 -0.493741 1.00003 0.140821 -0.499226 1.00551 0.140821 -0.499519 1.00622 -1.15918 -0.499519 1.00622 -1.15918 -0.499226 1.00551 0.140821 -0.499519 1.00773 -1.15903 -0.500166 1.00972 -1.05246 -0.501148 1.01037 -0.98507 -0.499711 1.00875 -0.642472 -0.49953 1.00799 -0.625623 -0.499711 1.00875 -0.485213 -0.501877 1.01063 -0.530144 -0.49953 1.00799 -0.620708 -0.500446 1.00983 -0.389735 -0.499711 1.00875 -1.15918 -0.499519 1.00773 -0.558226 -0.499711 1.00875 -0.600348 -0.499711 1.00875 -0.299873 -0.499711 1.00875 0.140813 -0.499886 1.00918 -0.181665 -0.500224 1.00954 0.140735 -0.500871 1.01028 0.140821 -0.502519 1.01073 -1.15918 -0.502519 1.01073 0.140821 -0.504741 1.01103 -1.15918 -0.504034 1.01073 -0.611784 -0.504452 1.01084 -0.227951 -0.504452 1.01084 0.140821 -0.504034 1.01073 -1.15918 -0.504741 1.01103 -0.509674 -0.510422 1.01681 -1.15918 -0.510519 1.01722 0.140821 -0.510226 1.01651 0.140821 -0.510519 1.01722 -1.15918 -0.510226 1.01651 0.140821 -0.510519 1.02225 0.140821 -0.510226 1.02295 -1.15918 -0.510226 1.02295 -1.15918 -0.510519 1.02225 -0.492627 -0.510437 1.02261 0.140821 -0.504034 1.02873 -1.15918 -0.504034 1.02873 -1.15918 -0.504741 1.02844 0.140821 -0.504741 1.02844 -0.335615 -0.504449 1.02863 0.140801 -0.501272 1.02895 -1.15918 -0.499519 1.03173 -0.9963 -0.499711 1.03071 -1.15918 -0.502519 1.02873 -0.499254 -0.501877 1.02883 -0.423433 -0.501497 1.02892 -0.384118 -0.50033 1.02973 0.140821 -0.502519 1.02873 -0.695827 -0.501497 1.02892 -0.372886 -0.501497 1.02892 -0.232476 -0.501497 1.02892 -0.39816 -0.501497 1.02892 -0.941456 -0.500622 1.02953 -0.667746 -0.500263 1.0298 -0.0330942 -0.50033 1.02973 -1.15903 -0.500203 1.02965 -0.581393 -0.499666 1.0309 0.140821 -0.499519 1.03173 -0.240198 -0.499711 1.03071 -1.15918 -0.499226 1.03395 0.140821 -0.499226 1.03395 -1.15918 -0.499519 1.03325 0.140821 -0.499519 1.03325 -0.465357 -0.499429 1.03363 -1.15918 -0.493034 1.03973 -0.851013 -0.49337 1.03967 -1.15918 -0.493741 1.03944 0.140821 -0.493741 1.03944 0.140821 -0.493034 1.03973 -1.15918 -0.487297 1.03944 -0.50657 -0.487646 1.03966 -1.15918 -0.488004 1.03973 0.140821 -0.488004 1.03973 0.140821 -0.487297 1.03944 -1.15918 -0.481812 1.03395 -1.15918 -0.481519 1.03325 0.140821 -0.481519 1.03325 -0.425565 -0.481627 1.03367 -1.15918 -0.481605 1.0336 0.140821 -0.481812 1.03395 -1.15918 -0.478519 1.02873 0.140821 -0.478519 1.02873 -0.475033 -0.47916 1.02883 -0.787181 -0.480608 1.02962 -0.756554 -0.479541 1.02892 -0.419221 -0.480725 1.02975 -1.15918 -0.481519 1.03173 -0.931713 -0.481328 1.03071 -0.605965 -0.481328 1.03071 -0.454323 -0.481418 1.03109 0.140821 -0.481519 1.03173 -0.0864502 -0.480641 1.02965 0.140743 -0.480701 1.02947 -1.15879 -0.480718 1.02955 -0.103299 -0.479541 1.02892 0.140821 -0.476297 1.02844 -1.15918 -0.476297 1.02844 -1.15918 -0.477004 1.02873 -0.490518 -0.476631 1.02866 0.140821 -0.477004 1.02873 -1.15918 -0.470812 1.02295 0.140821 -0.470812 1.02295 0.140821 -0.470519 1.02225 -0.904931 -0.470612 1.02264 -1.15918 -0.470519 1.02225 0.140821 -0.470812 1.01651 0.140821 -0.470519 1.01722 -1.15918 -0.470519 1.01722 -0.437442 -0.470623 1.0168 -1.15918 -0.470812 1.01651 -0.52142 -0.47668 1.01081 -1.15918 -0.477004 1.01073 -1.15918 -0.476297 1.01103 0.140821 -0.477004 1.01073 0.140821 -0.476297 1.01103 -1.15918 -0.481519 1.00773 -1.15918 -0.478519 1.01073 -0.693151 -0.480524 1.00992 -0.355861 -0.481373 1.00856 -0.14393 -0.480682 1.00976 -0.914689 -0.479541 1.01054 -0.563141 -0.47916 1.01063 0.140821 -0.478519 1.01073 -0.152896 -0.479541 1.01054 -1.15889 -0.480653 1.00985 0.140821 -0.481519 1.00773 -0.999108 -0.481328 1.00875 0.140717 -0.480734 1.00986 0.140795 -0.478446 1.03228 -1.1591 -0.472299 1.03351 -1.15912 -0.474016 1.03775 -1.15918 -0.478896 1.03532 -1.15916 -0.477483 1.03769 -1.15916 -0.477476 1.03172 -1.02137 -0.473275 1.03715 -1.15918 -0.472149 1.0354 -0.946494 -0.476822 1.03781 -0.923792 -0.47812 1.0326 -0.968799 -0.472849 1.03269 -0.7537 -0.478816 1.03414 -1.15909 -0.473977 1.03169 -0.998273 -0.475482 1.03137 -1.02456 -0.475264 1.03808 -0.507187 -0.478609 1.03609 -0.818247 -0.478293 1.03667 -0.960037 -0.477071 1.03175 -0.564541 -0.477565 1.03741 -0.592321 -0.472244 1.03426 -0.518738 -0.476212 1.03802 -0.412196 -0.474362 1.03159 -0.530836 -0.473936 1.03768 -0.480502 -0.472849 1.03269 -0.437886 -0.478051 1.03251 -0.472537 -0.47574 1.03137 -0.514755 -0.472534 1.03628 -0.179399 -0.472196 1.03444 -0.161537 -0.477013 1.0318 -0.228986 -0.475673 1.03802 -0.143554 -0.473364 1.03217 -0.0826162 -0.472489 1.03607 -0.137978 -0.477364 1.03756 -0.0858024 -0.475199 1.03141 -0.0523465 -0.478804 1.03547 -0.0433852 -0.478639 1.03359 -0.0308391 -0.47613 1.03803 -0.0738252 -0.473835 1.03761 0.140767 -0.472143 1.03575 0.140827 -0.478325 1.0368 0.0261155 -0.472411 1.03344 0.140751 -0.473967 1.03175 0.140849 -0.474879 1.0383 -1.15917 -0.508691 1.00342 -1.15916 -0.502842 1.00259 -1.15908 -0.503538 1.00752 -1.15915 -0.50684 1.0016 -1.15914 -0.507626 1.00775 -1.00464 -0.507432 1.002 -1.15918 -0.502133 1.0054 -0.917221 -0.507774 1.0072 -0.78738 -0.504752 1.00802 -0.769756 -0.508803 1.00546 -1.15918 -0.504494 1.00145 -0.860067 -0.506285 1.00802 -0.817252 -0.50316 1.00709 -0.62707 -0.502849 1.00268 -0.630556 -0.502196 1.00444 -0.630656 -0.507191 1.00183 -0.674068 -0.50423 1.00162 -0.588238 -0.508627 1.00344 -0.407218 -0.502324 1.0059 -0.495238 -0.506175 1.00803 -0.503006 -0.504517 1.00797 -0.417971 -0.507462 1.00751 -0.408015 -0.50316 1.00709 0.0490167 -0.508188 1.00268 -0.397161 -0.504656 1.00151 -0.665306 -0.506109 1.00138 -0.141313 -0.503258 1.00714 -0.228786 -0.502324 1.0059 -0.455012 -0.508504 1.00629 0.140683 -0.504508 1.0015 -0.10502 -0.505049 1.00802 -0.0766418 -0.503124 1.00234 -0.0794297 -0.507195 1.00763 0.140857 -0.508416 1.00662 0.0739096 -0.505666 1.00136 0.14081 -0.504912 1.00832 0.140776 -0.506972 1.00168 0.140793 -0.508929 1.00444 0.140817 -0.502219 1.00585 0.140711 -0.502445 1.00321 -1.15919 -0.508197 1.03231 -1.15903 -0.502544 1.03646 -1.15917 -0.508881 1.03546 -0.983634 -0.504188 1.03777 -1.15898 -0.50528 1.03818 -1.15918 -0.502038 1.03485 -1.1591 -0.507431 1.03765 -1.15897 -0.50495 1.03134 -1.15913 -0.502868 1.03256 -0.848119 -0.505657 1.03137 -0.923792 -0.50812 1.0326 -0.914135 -0.507098 1.03179 -0.885159 -0.503606 1.03201 -1.00345 -0.50879 1.03385 -0.727837 -0.503368 1.0373 -0.507436 -0.502234 1.03547 -0.451577 -0.508627 1.03344 -0.714444 -0.505571 1.03803 -0.468479 -0.508803 1.03547 -0.440425 -0.504945 1.03146 -0.556176 -0.503606 1.03201 -0.667696 -0.507878 1.03709 -0.643102 -0.502411 1.03344 -0.426535 -0.507308 1.03197 -0.382524 -0.506472 1.03795 -0.257463 -0.508294 1.03667 -0.151917 -0.505099 1.03806 -0.0523465 -0.502849 1.03269 0.14066 -0.503727 1.03776 -0.139429 -0.506941 1.03776 -0.284546 -0.503493 1.03736 -0.0527448 -0.506966 1.03172 0.140781 -0.508851 1.03405 0.1407 -0.502073 1.03514 -0.0767414 -0.505138 1.03145 0.140765 -0.508304 1.03281 0.140669 -0.506901 1.03792 0.1408 -0.506354 1.03138 0.140772 -0.503477 1.03192 0.140822 -0.50868 1.036 0.140769 -0.476215 1.00126 0.140754 -0.47888 1.00385 -1.15927 -0.475283 1.00844 -1.15922 -0.475791 1.00108 -1.08311 -0.473571 1.00204 -1.15913 -0.472393 1.00329 -1.15918 -0.478681 1.00339 -0.981226 -0.477502 1.00204 -0.962062 -0.472839 1.00672 -1.15918 -0.472149 1.00535 -0.95924 -0.476674 1.00787 -0.847788 -0.475673 1.00803 -1.15912 -0.478771 1.00605 -0.670334 -0.474482 1.00789 -0.635833 -0.478804 1.00546 -0.49962 -0.472534 1.00629 -1.07514 -0.47563 1.00136 -0.613928 -0.477877 1.00709 -0.445055 -0.477379 1.00198 -0.440972 -0.476861 1.00778 -0.354246 -0.475059 1.00804 -0.457053 -0.472849 1.00268 -0.496135 -0.474582 1.00151 -0.179399 -0.472196 1.00444 -0.264233 -0.473576 1.00751 -0.0587191 -0.473979 1.00179 -0.117068 -0.478667 1.00354 -0.102331 -0.475469 1.00802 -0.126427 -0.477669 1.0073 0.140694 -0.471962 1.00494 -0.00574723 -0.478609 1.00609 -0.103427 -0.476145 1.00148 -0.0712651 -0.478867 1.00473 0.0440383 -0.478189 1.00268 0.14074 -0.476096 1.00833 0.140761 -0.473057 1.00233 0.140682 -0.473121 1.0071 0.140821 -0.481812 1.69551 0.140821 -0.481519 1.69622 -1.15918 -0.481812 1.69551 -0.478684 -0.481623 1.6958 -1.15918 -0.481519 1.69622 0.140821 -0.497269 1.68173 0.140821 -0.497269 1.68507 0.140821 -0.467269 1.68173 0.140821 -0.467269 1.68507 0.140821 -0.465855 1.68648 0.140821 -0.469519 1.69015 0.140821 -0.471519 1.67973 0.140821 -0.462519 1.68648 0.140821 -0.462519 1.69073 0.140821 -0.469519 1.69421 0.140821 -0.469819 1.69473 0.140821 -0.469519 1.69525 0.140821 -0.469519 1.69932 0.140821 -0.465855 1.70298 0.140821 -0.465855 1.71648 0.140821 -0.469819 1.72473 0.140821 -0.469519 1.72421 0.140821 -0.469519 1.72932 0.140821 -0.474999 1.73073 0.140821 -0.480105 1.73073 0.140821 -0.467269 1.73773 0.140821 -0.471519 1.73973 0.140821 -0.462519 1.73298 0.140821 -0.497269 1.7344 0.140821 -0.483769 1.73773 0.140821 -0.501519 1.73773 0.140821 -0.504999 1.73073 0.140821 -0.506039 1.73073 0.140821 -0.515183 1.73298 0.140821 -0.513769 1.7344 0.140821 -0.509519 1.73773 0.140821 -0.509519 1.73973 0.140821 -0.518519 1.73298 0.140821 -0.518519 1.72873 0.140821 -0.511519 1.72932 0.140821 -0.511219 1.72473 0.140821 -0.511519 1.72421 0.140821 -0.511519 1.72015 0.140821 -0.515183 1.71648 0.140821 -0.511519 1.69932 0.140821 -0.518519 1.71648 0.140821 -0.520519 1.69873 0.140821 -0.518519 1.69873 0.140821 -0.511519 1.69525 0.140821 -0.511519 1.69421 0.140821 -0.513769 1.68507 0.140821 -0.510105 1.68873 0.140821 -0.505519 1.68903 0.140821 -0.500933 1.68873 0.140821 -0.518519 1.68648 0.140821 -0.513769 1.68173 0.140806 -0.477935 1.69731 0.140821 -0.500933 1.73073 0.140821 -0.511519 1.69015 0.140821 -0.481519 1.72173 -1.15918 -0.501519 1.68173 0.140821 -0.501519 1.68173 -1.15918 -0.500933 1.68873 0.140821 -0.504999 1.68873 -1.15918 -0.505519 1.68903 0.140821 -0.506039 1.68873 -1.15918 -0.510105 1.68873 -1.15918 -0.513769 1.68507 -1.15918 -0.509519 1.68173 0.140821 -0.509519 1.68173 0.140821 -0.509519 1.67973 -0.549334 -0.519201 1.67986 0.14082 -0.519866 1.68041 -1.15913 -0.519835 1.68032 -1.15918 -0.520519 1.68173 -0.499293 -0.520391 1.68105 -0.463692 -0.51985 1.68026 -0.975854 -0.519528 1.68006 -1.15918 -0.520519 1.69073 0.140821 -0.520519 1.68173 0.140821 -0.520519 1.69073 -1.15918 -0.518519 1.69073 0.140821 -0.518519 1.69073 0.140821 -0.515183 1.68648 -1.15918 -0.511219 1.69473 0.140821 -0.511219 1.69473 -1.15918 -0.511519 1.69932 0.140821 -0.518519 1.70298 -1.15918 -0.518519 1.69873 -1.15918 -0.518519 1.72073 0.140821 -0.520519 1.72073 0.140821 -0.518519 1.72073 -1.15918 -0.511519 1.72421 0.140821 -0.511519 1.72525 -1.15918 -0.515183 1.73298 -1.15918 -0.518519 1.73298 -1.15918 -0.518519 1.72873 0.140821 -0.520519 1.72873 -1.15915 -0.520386 1.73852 -0.933761 -0.519799 1.73926 -0.614574 -0.519201 1.7396 0.140821 -0.518519 1.73973 -0.139185 -0.519799 1.73926 -0.250725 -0.520335 1.73852 0.117485 -0.51996 1.73899 -1.15911 -0.519471 1.73955 -1.15918 -0.518519 1.73973 0.140821 -0.520519 1.73773 -0.725179 -0.520451 1.73825 -1.15918 -0.509519 1.73973 -1.15918 -0.509519 1.73773 0.140821 -0.513769 1.73773 -1.15918 -0.513769 1.7344 0.140821 -0.510105 1.73073 -1.15918 -0.506039 1.73073 -1.15918 -0.505519 1.73043 0.140821 -0.505519 1.73043 -1.15918 -0.504999 1.73073 0.140821 -0.497269 1.73773 -1.15918 -0.497269 1.73773 -1.15918 -0.501519 1.73973 0.140821 -0.501519 1.73973 -1.15918 -0.479519 1.73973 0.140821 -0.479519 1.73973 -1.15918 -0.479519 1.73773 0.140821 -0.479519 1.73773 -1.15918 -0.483769 1.73773 -1.15918 -0.483769 1.7344 0.140821 -0.483769 1.7344 -1.15918 -0.476039 1.73073 0.140821 -0.476039 1.73073 0.140821 -0.475519 1.73043 0.140821 -0.470933 1.73073 0.140821 -0.467269 1.7344 -1.15918 -0.471519 1.73773 0.140821 -0.471519 1.73773 -0.0947563 -0.461538 1.73943 0.140821 -0.462519 1.73973 -0.51496 -0.462092 1.73966 -1.15918 -0.460519 1.73773 -1.02542 -0.461389 1.73934 -0.571782 -0.461239 1.73926 -1.15918 -0.462519 1.73973 -0.229037 -0.461003 1.73897 0.139174 -0.460995 1.73896 -0.545125 -0.460624 1.73829 -0.915989 -0.460793 1.73873 0.140821 -0.460519 1.73773 0.140821 -0.462519 1.72873 -1.15918 -0.462519 1.73298 -1.15918 -0.469519 1.72932 0.140821 -0.465855 1.73298 0.140821 -0.469519 1.72525 0.140821 -0.469519 1.72015 -1.15918 -0.465855 1.71648 -1.15918 -0.462519 1.71648 0.140821 -0.462519 1.71648 0.140821 -0.462519 1.72073 -1.15918 -0.462519 1.72073 0.140821 -0.462519 1.69873 0.140821 -0.462519 1.70298 -1.15918 -0.469519 1.69525 -1.15918 -0.469819 1.69473 -1.15918 -0.465855 1.68648 -1.15918 -0.462519 1.69073 -1.15918 -0.460519 1.69073 0.140821 -0.460519 1.69073 -1.15914 -0.461201 1.68033 -0.474506 -0.460647 1.68105 0.140824 -0.460733 1.68071 -0.819005 -0.461215 1.68024 -1.15918 -0.462519 1.67973 -0.554479 -0.462092 1.6798 0.140821 -0.462519 1.67973 -0.530247 -0.461165 1.68029 -0.24433 -0.461468 1.68009 0.140821 -0.460519 1.68173 -0.07792 -0.46082 1.68075 -1.15918 -0.471519 1.67973 -1.15918 -0.467269 1.68173 0.140821 -0.471519 1.68173 0.140821 -0.470933 1.68873 0.140821 -0.474999 1.68873 0.140821 -0.475519 1.68903 -1.15918 -0.480105 1.68873 0.140821 -0.476039 1.68873 0.140821 -0.480105 1.68873 -1.15918 -0.483769 1.68173 0.140821 -0.483769 1.68173 0.140821 -0.479519 1.68173 -1.15918 -0.479519 1.68173 0.140821 -0.479519 1.67973 -1.15918 -0.497269 1.68173 -1.15918 -0.483769 1.68507 -1.15918 -0.497269 1.68507 -1.15918 -0.504999 1.68873 -1.15918 -0.506039 1.68873 -1.15918 -0.511519 1.69015 -1.15918 -0.515183 1.68648 -1.15918 -0.513769 1.68173 -1.15918 -0.518519 1.67973 -1.15918 -0.518519 1.68648 -1.15918 -0.511519 1.69421 -1.15918 -0.511519 1.69525 -1.15918 -0.515183 1.71648 -1.15918 -0.511519 1.72015 -1.15918 -0.515183 1.70298 -1.15918 -0.518519 1.71648 -1.15918 -0.518519 1.70298 -1.15918 -0.520519 1.72073 -1.15918 -0.511519 1.72525 -1.15918 -0.511219 1.72473 -1.15918 -0.510105 1.73073 -1.15918 -0.500933 1.73073 -1.15918 -0.513769 1.73773 -1.15918 -0.497269 1.7344 -1.15918 -0.501519 1.73773 -1.15918 -0.475519 1.73043 -1.15918 -0.474999 1.73073 -1.15918 -0.470933 1.73073 -1.15918 -0.467269 1.73773 -1.15918 -0.467269 1.7344 -1.15918 -0.471519 1.73973 -1.15918 -0.465855 1.73298 -1.15918 -0.461363 1.73927 -1.15918 -0.460519 1.72873 -1.15918 -0.462519 1.72873 -1.15918 -0.469519 1.72525 -1.15918 -0.469819 1.72473 -1.15918 -0.469519 1.72421 -1.15918 -0.469519 1.72015 -1.15918 -0.465855 1.70298 -1.15918 -0.460519 1.69873 -1.15918 -0.460519 1.72073 -1.15918 -0.462519 1.69873 -1.15918 -0.462519 1.70298 -1.15918 -0.469519 1.69932 -1.15918 -0.469519 1.69421 -1.15918 -0.470933 1.68873 -1.15918 -0.474999 1.68873 -1.15918 -0.475519 1.68903 -1.15918 -0.476039 1.68873 -1.15918 -0.462519 1.68648 -1.15918 -0.467269 1.68507 -1.15918 -0.471519 1.68173 -1.15918 -0.460519 1.68173 -1.15918 -0.469519 1.69015 -1.15918 -0.504741 1.71844 -1.15918 -0.511519 1.72932 -1.15918 -0.502519 1.70073 -1.15918 -0.480105 1.73073 -1.15918 -0.488004 1.68973 -1.15918 -0.487297 1.69003 -0.448456 -0.487586 1.68984 0.140821 -0.487297 1.69003 0.140821 -0.488004 1.68973 0.140821 -0.483769 1.68507 -0.191865 -0.493077 1.68973 0.140821 -0.493741 1.69003 -1.15918 -0.493741 1.69003 -0.466704 -0.493452 1.68984 -1.15918 -0.493034 1.68973 0.140821 -0.493034 1.68973 0.140821 -0.499226 1.69551 -1.15918 -0.499226 1.69551 -1.15918 -0.499519 1.69622 0.140821 -0.499519 1.69622 -0.451868 -0.499424 1.69582 -0.815438 -0.500337 1.69975 0.140821 -0.499519 1.69773 -1.15911 -0.499931 1.69927 -0.704252 -0.499711 1.69876 -0.385873 -0.499666 1.69857 -0.258101 -0.500479 1.69989 -0.924343 -0.499711 1.69876 -1.15918 -0.499519 1.69773 0.140813 -0.499915 1.69914 -0.521369 -0.501687 1.70058 -1.15919 -0.501397 1.70052 0.140821 -0.502519 1.70073 0.140819 -0.501409 1.70052 -0.415181 -0.504452 1.70084 0.140821 -0.504034 1.70073 -1.15918 -0.504034 1.70073 -1.15918 -0.504741 1.70103 0.140821 -0.504741 1.70103 0.140821 -0.510519 1.70722 -1.15918 -0.510519 1.70722 -0.499305 -0.510415 1.7068 0.140821 -0.515183 1.70298 -1.15918 -0.510226 1.70651 0.140821 -0.510226 1.70651 0.140821 -0.510519 1.71225 -1.06732 -0.510403 1.71271 -1.04576 -0.510403 1.71271 -0.358707 -0.510403 1.71271 -1.05608 -0.510403 1.71271 -1.15918 -0.510519 1.71225 -1.15918 -0.510226 1.71295 0.140821 -0.510226 1.71295 0.140821 -0.504034 1.71873 -0.646816 -0.504416 1.71863 0.140821 -0.504741 1.71844 -0.401824 -0.504077 1.71873 -1.15918 -0.504034 1.71873 -1.15918 -0.502519 1.71873 -0.86818 -0.501497 1.71892 0.140821 -0.499519 1.72173 -0.52172 -0.501877 1.71883 0.140286 -0.500714 1.7193 0.140821 -0.502519 1.71873 -0.238794 -0.501497 1.71892 -0.4681 -0.500644 1.71951 -1.15909 -0.500185 1.71969 -0.868793 -0.500414 1.71964 -0.19597 -0.500464 1.71958 -1.15918 -0.499519 1.72173 -0.555418 -0.49962 1.72109 -0.784987 -0.499711 1.72071 -0.0527519 -0.499711 1.72071 0.140821 -0.499226 1.72395 0.140821 -0.499519 1.72325 -0.538673 -0.499402 1.72371 -1.15918 -0.499519 1.72325 -1.15918 -0.499226 1.72395 0.140821 -0.493741 1.72944 -1.15918 -0.493741 1.72944 -1.15918 -0.493034 1.72973 -0.507038 -0.493393 1.72966 0.140821 -0.493034 1.72973 -1.15918 -0.488004 1.72973 -0.928598 -0.487586 1.72963 -0.94172 -0.487586 1.72963 -0.954843 -0.487586 1.72963 -1.15918 -0.487297 1.72944 -0.519458 -0.487705 1.72969 0.140821 -0.487297 1.72944 0.140821 -0.488004 1.72973 -1.15918 -0.481519 1.72325 0.140821 -0.481812 1.72395 -1.15918 -0.481812 1.72395 -0.708796 -0.48163 1.72369 0.140821 -0.481519 1.72325 -1.15918 -0.481519 1.72173 -1.15918 -0.478519 1.71873 0.140771 -0.480801 1.71957 -1.1588 -0.480738 1.71957 -0.420625 -0.481418 1.72109 -0.356037 -0.479541 1.71892 0.140821 -0.478519 1.71873 -0.816578 -0.48124 1.72054 -0.280216 -0.480507 1.71951 -0.657917 -0.480574 1.71958 -0.600349 -0.47916 1.71883 -0.0696011 -0.479766 1.71905 -1.15918 -0.476297 1.71844 -1.15918 -0.477004 1.71873 -0.528948 -0.476586 1.71863 0.140821 -0.476297 1.71844 0.140821 -0.477004 1.71873 -1.15918 -0.470519 1.71225 0.140821 -0.470519 1.71225 -1.15918 -0.470812 1.71295 0.140821 -0.470812 1.71295 -0.422211 -0.470589 1.71258 -1.15918 -0.470812 1.70651 -1.15918 -0.470519 1.70722 0.140821 -0.470812 1.70651 0.140821 -0.470519 1.70722 0.140821 -0.477004 1.70073 -1.15918 -0.476297 1.70103 -1.15918 -0.477004 1.70073 -0.422211 -0.476586 1.70084 0.140821 -0.476297 1.70103 -1.15918 -0.481519 1.69773 0.140821 -0.478519 1.70073 0.140799 -0.47977 1.70048 -1.15917 -0.480812 1.69985 -0.942243 -0.480488 1.69995 -0.534005 -0.480488 1.69995 -0.378502 -0.47916 1.70063 -0.0527516 -0.480524 1.69992 0.140716 -0.481107 1.69932 -0.982258 -0.479541 1.70054 -1.15918 -0.478519 1.70073 -0.73795 -0.479541 1.70054 -0.933114 -0.481328 1.69876 0.140821 -0.481519 1.69773 -0.149634 -0.481328 1.69876 -0.555593 -0.481418 1.69837 -1.15919 -0.472091 1.72393 0.140794 -0.478591 1.72627 -1.1589 -0.476492 1.72815 -1.15909 -0.472633 1.72664 -1.15918 -0.476045 1.72137 -1.15909 -0.473593 1.72192 -1.15918 -0.478714 1.72346 -1.15905 -0.477766 1.7222 -0.863453 -0.472411 1.72344 -0.944777 -0.47452 1.72784 -0.895116 -0.477339 1.72752 -1.15913 -0.478718 1.72606 -0.714693 -0.475756 1.72801 -0.487074 -0.474679 1.72151 -0.633443 -0.478714 1.7259 -0.532677 -0.478189 1.72268 -0.681437 -0.472234 1.72546 -0.60168 -0.473394 1.72733 -0.543021 -0.475467 1.72805 -0.669687 -0.478841 1.72444 -0.303067 -0.47704 1.72773 -0.469351 -0.47695 1.72166 -0.5042 -0.477981 1.72699 -0.106115 -0.478893 1.72502 -0.130211 -0.472183 1.72459 -0.128817 -0.473967 1.72175 -0.114081 -0.472534 1.72629 -0.425141 -0.472534 1.72629 -0.128817 -0.478626 1.72344 -0.149827 -0.477281 1.72189 -0.217859 -0.472711 1.72286 -0.157693 -0.475537 1.72136 -0.273394 -0.474817 1.72802 0.140682 -0.474066 1.72788 0.140799 -0.478929 1.72445 0.140664 -0.47686 1.72793 0.140722 -0.475751 1.72125 0.140579 -0.472608 1.72256 0.140816 -0.472215 1.72602 -1.15914 -0.503056 1.6971 -1.15918 -0.504418 1.69795 -1.03969 -0.504088 1.69166 -1.12708 -0.507465 1.69751 -1.15916 -0.502797 1.69263 -1.15917 -0.508788 1.696 -1.15908 -0.508515 1.69298 -1.15901 -0.506031 1.69133 -1.15918 -0.502108 1.69532 -1.15905 -0.506076 1.6981 -0.818646 -0.508188 1.69269 -0.787977 -0.508714 1.6959 -0.664161 -0.502411 1.69344 -0.932357 -0.50695 1.69166 -0.756713 -0.508848 1.69451 -0.463774 -0.503675 1.69756 -0.48329 -0.506901 1.69775 -0.60636 -0.503124 1.69234 -0.735404 -0.504619 1.69151 -0.562947 -0.504681 1.69799 -0.449237 -0.505004 1.69144 -0.147138 -0.508803 1.69546 -0.415781 -0.502534 1.69629 -0.219128 -0.50499 1.69803 -0.182088 -0.507061 1.69768 -0.426335 -0.506712 1.69159 -0.547613 -0.502145 1.69502 -0.122843 -0.50316 1.69709 -0.26065 -0.508294 1.69668 -0.341152 -0.508627 1.69344 -0.39955 -0.507914 1.69234 -0.0232718 -0.50695 1.69166 -0.235358 -0.504753 1.69151 0.140809 -0.508198 1.69258 0.140782 -0.502148 1.69537 0.140821 -0.507853 1.69749 0.140798 -0.50234 1.69344 0.14081 -0.508878 1.69413 0.140742 -0.506174 1.69135 0.140668 -0.503825 1.69176 0.140718 -0.503852 1.69776 -1.15913 -0.506186 1.7281 -1.15916 -0.508139 1.72249 -1.15917 -0.508844 1.72467 -1.1591 -0.503981 1.72783 -1.15913 -0.505455 1.72113 -1.15918 -0.502782 1.72265 -1.15912 -0.507689 1.72731 -1.15914 -0.502532 1.72642 -1.15918 -0.502114 1.72431 -0.974236 -0.50441 1.72784 -0.965412 -0.503606 1.722 -1.07315 -0.508504 1.72629 -0.853297 -0.507613 1.72213 -0.900693 -0.505582 1.72143 -0.58321 -0.508627 1.72344 -0.523616 -0.504273 1.7216 -0.408015 -0.50316 1.7271 -0.741976 -0.508893 1.72502 -0.528396 -0.506162 1.72146 -0.501412 -0.507462 1.72751 -0.407218 -0.504356 1.72793 -0.430319 -0.502234 1.72546 -0.493247 -0.507432 1.722 -0.547115 -0.502411 1.72344 -0.584852 -0.508504 1.72629 -0.416179 -0.505892 1.72805 -0.141164 -0.505537 1.72136 -0.199612 -0.503108 1.72704 -0.061507 -0.508294 1.72668 -0.134393 -0.506511 1.72784 -0.113583 -0.508128 1.72264 -0.184179 -0.503606 1.722 -0.0957596 -0.508803 1.72546 0.140764 -0.507168 1.72174 0.140686 -0.507595 1.72761 0.140828 -0.508895 1.72418 0.140818 -0.502169 1.72549 0.140825 -0.504079 1.72158 0.140821 -0.50246 1.7232 0.140736 -0.503848 1.72786 -1.15902 -0.47365 1.69755 0.140823 -0.477396 1.6918 -1.15915 -0.478825 1.69359 -1.15907 -0.475219 1.69111 -0.968697 -0.476133 1.69803 -0.974774 -0.472849 1.69269 -1.15925 -0.471916 1.69439 -1.15918 -0.478005 1.69722 -0.921502 -0.473808 1.69751 -0.860067 -0.478503 1.69629 -0.937532 -0.477134 1.69181 -0.852102 -0.475496 1.69136 -0.815061 -0.472324 1.6959 -0.894718 -0.472196 1.69444 -0.834776 -0.478626 1.69344 -0.550102 -0.474918 1.69803 -0.480403 -0.478867 1.69473 -0.528097 -0.475583 1.69137 -0.961233 -0.474087 1.69166 -0.683627 -0.477339 1.69758 -0.558566 -0.477914 1.69234 -0.321388 -0.472411 1.69344 -0.53656 -0.476358 1.698 -0.558566 -0.47695 1.69166 -0.464472 -0.473123 1.69234 -0.414337 -0.47303 1.69696 -0.257463 -0.476846 1.69777 -0.251056 -0.474301 1.69782 -0.276581 -0.476438 1.69151 -0.324374 -0.474087 1.69166 -0.179399 -0.472196 1.69444 -0.401443 -0.472234 1.69546 -0.12344 -0.474235 1.69172 -0.419167 -0.478503 1.69629 0.140765 -0.472363 1.69611 0.140593 -0.473922 1.69781 0.140692 -0.473965 1.69163 0.1408 -0.472363 1.69332 0.140739 -0.47902 1.69526 -0.0710661 -0.478189 1.69269 0.0376658 -0.476864 1.69776 -0.5934 -0.481812 1.04973 -0.5934 -0.481812 1.67973 -0.609179 -0.479519 1.04973 -0.603843 -0.483769 1.04973 -0.603843 -0.497269 1.04973 -0.607179 -0.467269 1.04973 -0.602429 -0.465855 1.04973 -0.602429 -0.462519 1.04973 -0.598764 -0.469519 1.04973 -0.594179 -0.469819 1.04973 -0.589593 -0.469519 1.04973 -0.572429 -0.465855 1.04973 -0.568764 -0.469519 1.04973 -0.585929 -0.465855 1.04973 -0.572429 -0.462519 1.04973 -0.590179 -0.460519 1.04973 -0.564179 -0.469819 1.04973 -0.563659 -0.469519 1.04973 -0.558179 -0.470933 1.04973 -0.558179 -0.474999 1.04973 -0.558479 -0.475519 1.04973 -0.558179 -0.476039 1.04973 -0.558179 -0.480105 1.04973 -0.551179 -0.467269 1.04973 -0.555929 -0.462519 1.04973 -0.560179 -0.460519 1.04973 -0.554514 -0.483769 1.04973 -0.551179 -0.483769 1.04973 -0.558179 -0.504999 1.04973 -0.558179 -0.506039 1.04973 -0.555929 -0.515183 1.04973 -0.551179 -0.509519 1.04973 -0.549179 -0.509519 1.04973 -0.555929 -0.518519 1.04973 -0.560179 -0.520519 1.04973 -0.559593 -0.511519 1.04973 -0.563659 -0.511519 1.04973 -0.564698 -0.511519 1.04973 -0.568764 -0.511519 1.04973 -0.575957 -0.510226 1.04973 -0.572429 -0.515183 1.04973 -0.585929 -0.518519 1.04973 -0.568179 -0.518519 1.04973 -0.590179 -0.518519 1.04973 -0.593659 -0.511519 1.04973 -0.598764 -0.511519 1.04973 -0.600179 -0.510105 1.04973 -0.609179 -0.509519 1.04973 -0.607179 -0.513769 1.04973 -0.607179 -0.509519 1.04973 -0.609179 -0.518519 1.04973 -0.558179 -0.500933 1.04973 -0.600179 -0.480105 1.04973 -0.607179 -0.501519 1.67973 -0.607179 -0.501519 1.04973 -0.607179 -0.497269 1.04973 -0.600179 -0.500933 1.04973 -0.600179 -0.504999 1.04973 -0.599879 -0.505519 1.04973 -0.599879 -0.505519 1.67973 -0.600179 -0.506039 1.67973 -0.600179 -0.506039 1.04973 -0.603843 -0.513769 1.67973 -0.603843 -0.513769 1.04973 -0.607179 -0.509519 1.67973 -0.609179 -0.509519 1.67973 -0.608831 -0.519619 1.61839 -0.607179 -0.520519 1.67973 -0.607179 -0.520519 1.04973 -0.608845 -0.519528 1.26893 -0.609024 -0.519383 1.04973 -0.598179 -0.520519 1.67973 -0.598179 -0.520519 1.04973 -0.598179 -0.518519 1.04973 -0.602429 -0.518519 1.04973 -0.602429 -0.515183 1.04973 -0.594698 -0.511519 1.67973 -0.594698 -0.511519 1.04973 -0.594179 -0.511219 1.67973 -0.594179 -0.511219 1.04973 -0.593659 -0.511519 1.67973 -0.589593 -0.511519 1.04973 -0.585929 -0.515183 1.04973 -0.590179 -0.520519 1.67973 -0.590179 -0.520519 1.04973 -0.568179 -0.520519 1.04973 -0.572429 -0.518519 1.04973 -0.568764 -0.511519 1.67973 -0.564698 -0.511519 1.67973 -0.564179 -0.511219 1.04973 -0.564179 -0.511219 1.67973 -0.563659 -0.511519 1.67973 -0.555929 -0.518519 1.67973 -0.560179 -0.520519 1.67973 -0.560179 -0.518519 1.04973 -0.551179 -0.520519 1.67973 -0.54978 -0.519848 1.67972 -0.551179 -0.520519 1.04973 -0.549913 -0.519989 1.20196 -0.549179 -0.518519 1.04973 -0.549179 -0.509519 1.67973 -0.551179 -0.513769 1.67973 -0.551179 -0.513769 1.04973 -0.554514 -0.513769 1.04973 -0.558179 -0.510105 1.67973 -0.558179 -0.510105 1.04973 -0.558179 -0.506039 1.67973 -0.558479 -0.505519 1.67973 -0.558479 -0.505519 1.04973 -0.554514 -0.497269 1.04973 -0.551179 -0.501519 1.67973 -0.551179 -0.497269 1.04973 -0.551179 -0.501519 1.04973 -0.549179 -0.501519 1.04973 -0.549179 -0.479519 1.04973 -0.551179 -0.479519 1.04973 -0.551179 -0.479519 1.67973 -0.558179 -0.476039 1.67973 -0.558479 -0.475519 1.67973 -0.554514 -0.467269 1.67973 -0.554514 -0.467269 1.04973 -0.551179 -0.467269 1.67973 -0.551179 -0.471519 1.04973 -0.551179 -0.471519 1.67973 -0.549179 -0.471519 1.04973 -0.549179 -0.462519 1.67973 -0.549558 -0.461463 1.49943 -0.549657 -0.461182 1.04985 -0.550838 -0.460519 1.67973 -0.551179 -0.460519 1.04973 -0.549179 -0.462519 1.04973 -0.560179 -0.460519 1.67973 -0.560179 -0.462519 1.67973 -0.560179 -0.462519 1.04973 -0.555929 -0.465855 1.67973 -0.555929 -0.465855 1.04973 -0.559593 -0.469519 1.04973 -0.564698 -0.469519 1.04973 -0.568179 -0.462519 1.04973 -0.568179 -0.462519 1.67973 -0.568179 -0.460519 1.04973 -0.590179 -0.462519 1.67973 -0.590179 -0.462519 1.04973 -0.585929 -0.462519 1.04973 -0.585929 -0.462519 1.67973 -0.585929 -0.465855 1.67973 -0.589593 -0.469519 1.67973 -0.593659 -0.469519 1.04973 -0.593659 -0.469519 1.67973 -0.594698 -0.469519 1.04973 -0.598179 -0.462519 1.04973 -0.598179 -0.462519 1.67973 -0.598179 -0.460519 1.04973 -0.608531 -0.46119 1.04973 -0.609179 -0.462519 1.04973 -0.60786 -0.460647 1.36094 -0.608491 -0.460913 1.67948 -0.609179 -0.462519 1.67973 -0.609021 -0.46178 1.33724 -0.609179 -0.471519 1.67973 -0.609179 -0.471519 1.04973 -0.607179 -0.471519 1.04973 -0.603843 -0.467269 1.04973 -0.600179 -0.470933 1.67973 -0.600179 -0.470933 1.04973 -0.600179 -0.474999 1.04973 -0.599879 -0.475519 1.67973 -0.599879 -0.475519 1.04973 -0.600179 -0.476039 1.04973 -0.603843 -0.483769 1.67973 -0.607179 -0.483769 1.67973 -0.607179 -0.483769 1.04973 -0.609179 -0.479519 1.67973 -0.607179 -0.479519 1.04973 -0.609179 -0.501519 1.04973 -0.607179 -0.479519 1.67973 -0.609179 -0.501519 1.67973 -0.607179 -0.497269 1.67973 -0.603843 -0.497269 1.67973 -0.600179 -0.500933 1.67973 -0.600179 -0.504999 1.67973 -0.600179 -0.510105 1.67973 -0.602429 -0.515183 1.67973 -0.607179 -0.513769 1.67973 -0.609179 -0.518519 1.67973 -0.602429 -0.518519 1.67973 -0.598179 -0.518519 1.67973 -0.598764 -0.511519 1.67973 -0.589593 -0.511519 1.67973 -0.585929 -0.515183 1.67973 -0.572429 -0.515183 1.67973 -0.572429 -0.518519 1.67973 -0.568179 -0.520519 1.67973 -0.585929 -0.518519 1.67973 -0.590179 -0.518519 1.67973 -0.568179 -0.518519 1.67973 -0.555929 -0.515183 1.67973 -0.559593 -0.511519 1.67973 -0.558179 -0.504999 1.67973 -0.558179 -0.500933 1.67973 -0.554514 -0.513769 1.67973 -0.551179 -0.509519 1.67973 -0.560179 -0.518519 1.67973 -0.549179 -0.518519 1.67973 -0.554514 -0.497269 1.67973 -0.554514 -0.483769 1.67973 -0.551179 -0.497269 1.67973 -0.551179 -0.483769 1.67973 -0.549179 -0.501519 1.67973 -0.549179 -0.479519 1.67973 -0.558179 -0.480105 1.67973 -0.558179 -0.474999 1.67973 -0.558179 -0.470933 1.67973 -0.549179 -0.471519 1.67973 -0.549983 -0.460825 1.67948 -0.555929 -0.462519 1.67973 -0.559593 -0.469519 1.67973 -0.563659 -0.469519 1.67973 -0.564179 -0.469819 1.67973 -0.564698 -0.469519 1.67973 -0.568764 -0.469519 1.67973 -0.572429 -0.465855 1.67973 -0.572429 -0.462519 1.67973 -0.594179 -0.469819 1.67973 -0.594698 -0.469519 1.67973 -0.598764 -0.469519 1.67973 -0.600179 -0.474999 1.67973 -0.600179 -0.476039 1.67973 -0.602429 -0.462519 1.67973 -0.602429 -0.465855 1.67973 -0.603843 -0.467269 1.67973 -0.607179 -0.467269 1.67973 -0.607179 -0.471519 1.67973 -0.600179 -0.480105 1.67973 -0.592693 -0.481519 1.67973 -0.598886 -0.487297 1.04973 -0.599179 -0.488004 1.67973 -0.598886 -0.487297 1.67973 -0.599075 -0.487586 1.3661 -0.599179 -0.488004 1.04973 -0.599179 -0.493034 1.67973 -0.599179 -0.493034 1.04973 -0.598886 -0.493741 1.67973 -0.598886 -0.493741 1.04973 -0.5934 -0.499226 1.04973 -0.5934 -0.499226 1.67973 -0.593112 -0.499415 1.3661 -0.589086 -0.500269 1.04974 -0.588179 -0.503276 1.67973 -0.588179 -0.503276 1.04973 -0.591936 -0.499519 1.67973 -0.590536 -0.49962 1.2966 -0.588945 -0.500601 1.31907 -0.591936 -0.499519 1.04973 -0.588901 -0.500547 1.67958 -0.58828 -0.501877 1.35559 -0.587886 -0.504741 1.04973 -0.587886 -0.504741 1.67973 -0.588127 -0.504264 1.36377 -0.582401 -0.510226 1.04973 -0.581693 -0.510519 1.04973 -0.582401 -0.510226 1.67973 -0.581693 -0.510519 1.67973 -0.582112 -0.510415 1.3661 -0.576664 -0.510519 1.67973 -0.575957 -0.510226 1.67973 -0.576664 -0.510519 1.04973 -0.570472 -0.504741 1.04973 -0.570179 -0.504034 1.04973 -0.570472 -0.504741 1.67973 -0.570179 -0.502519 1.04973 -0.56782 -0.49962 1.35559 -0.567179 -0.499519 1.04973 -0.569287 -0.500339 1.04996 -0.569489 -0.500474 1.67952 -0.570179 -0.502519 1.67973 -0.569987 -0.501497 1.32714 -0.569099 -0.50023 1.42119 -0.566422 -0.499519 1.67973 -0.564957 -0.499226 1.67973 -0.565664 -0.499519 1.04973 -0.564957 -0.499226 1.04973 -0.559472 -0.493741 1.04973 -0.559179 -0.493034 1.04973 -0.559179 -0.493034 1.67973 -0.559472 -0.493741 1.67973 -0.559282 -0.493452 1.3661 -0.559179 -0.488004 1.04973 -0.559472 -0.487297 1.04973 -0.559179 -0.488004 1.67973 -0.559472 -0.487297 1.67973 -0.564957 -0.481812 1.67973 -0.566422 -0.481519 1.67973 -0.564957 -0.481812 1.04973 -0.566422 -0.481519 1.04973 -0.570179 -0.477762 1.67973 -0.569576 -0.480395 1.67943 -0.569155 -0.480695 1.33686 -0.568201 -0.481328 1.55202 -0.56782 -0.481418 1.2966 -0.569383 -0.480766 1.04987 -0.570077 -0.47916 1.35559 -0.570179 -0.477762 1.04973 -0.570472 -0.476297 1.04973 -0.570472 -0.476297 1.67973 -0.570231 -0.476774 1.36377 -0.575957 -0.470812 1.04973 -0.576664 -0.470519 1.04973 -0.576275 -0.470609 1.42467 -0.576275 -0.470609 1.40904 -0.575957 -0.470812 1.67973 -0.576275 -0.470609 1.43891 -0.57628 -0.470608 1.39084 -0.576664 -0.470519 1.67973 -0.582401 -0.470812 1.04973 -0.581693 -0.470519 1.04973 -0.581693 -0.470519 1.67973 -0.582401 -0.470812 1.67973 -0.588179 -0.477004 1.04973 -0.587886 -0.476297 1.67973 -0.587886 -0.476297 1.04973 -0.588076 -0.476586 1.3661 -0.588179 -0.478519 1.67973 -0.588179 -0.478519 1.04973 -0.588918 -0.480707 1.04984 -0.591936 -0.481519 1.04973 -0.588866 -0.480394 1.14842 -0.590536 -0.481418 1.35559 -0.589121 -0.480828 1.67936 -0.567443 -0.477043 1.67972 -0.561184 -0.473721 1.67973 -0.565059 -0.478837 1.67973 -0.561007 -0.476843 1.67974 -0.566827 -0.473095 1.67975 -0.563601 -0.47213 1.67973 -0.562618 -0.478571 1.67972 -0.560932 -0.475378 1.51593 -0.566129 -0.472859 1.42261 -0.562902 -0.472434 1.32762 -0.566537 -0.477877 1.44741 -0.561887 -0.477908 1.51908 -0.564942 -0.478788 1.36158 -0.563304 -0.478825 1.04973 -0.567446 -0.475787 1.32201 -0.560894 -0.476248 1.35213 -0.564398 -0.472151 1.55924 -0.561905 -0.473038 1.44033 -0.566245 -0.478296 1.05005 -0.560984 -0.476682 1.18833 -0.567068 -0.473807 1.28362 -0.561961 -0.478098 1.04974 -0.561155 -0.474109 1.26314 -0.564745 -0.478935 1.04973 -0.561202 -0.47387 1.04976 -0.567658 -0.474813 1.04975 -0.564796 -0.472015 1.04977 -0.56086 -0.476545 1.04972 -0.596913 -0.50337 1.67971 -0.593871 -0.509142 1.67971 -0.590783 -0.505989 1.67969 -0.591376 -0.507425 1.67972 -0.597245 -0.507094 1.67971 -0.59133 -0.50348 1.67973 -0.591194 -0.503967 1.44663 -0.594544 -0.502068 1.67955 -0.592371 -0.508357 1.54113 -0.594031 -0.50888 1.54113 -0.597485 -0.50602 1.5431 -0.593588 -0.502171 1.54113 -0.595732 -0.508504 1.55885 -0.596122 -0.502744 1.09777 -0.597213 -0.507093 1.04981 -0.594989 -0.502185 1.04974 -0.592182 -0.502798 1.47025 -0.597189 -0.504062 1.42064 -0.591194 -0.503967 1.21353 -0.594031 -0.50888 1.21353 -0.595732 -0.508504 1.17415 -0.592371 -0.508357 1.21353 -0.592979 -0.502427 1.21353 -0.597484 -0.504322 1.04982 -0.590727 -0.505565 1.04976 -0.592368 -0.502546 1.04963 -0.591663 -0.507858 1.04974 -0.593615 -0.508972 1.04975 -0.567563 -0.506335 1.67972 -0.565471 -0.508743 1.04974 -0.561208 -0.507345 1.6797 -0.563494 -0.508906 1.67972 -0.565544 -0.502369 1.67964 -0.561244 -0.503778 1.67973 -0.564248 -0.502203 1.54113 -0.561698 -0.503245 1.51593 -0.563129 -0.502263 1.67972 -0.567163 -0.503967 1.43462 -0.560894 -0.50479 1.53414 -0.566026 -0.508412 1.67972 -0.564031 -0.50888 1.39859 -0.56237 -0.508357 1.37733 -0.565784 -0.502586 1.36699 -0.564031 -0.502158 1.37733 -0.56085 -0.505677 1.04975 -0.56739 -0.504398 1.04974 -0.566658 -0.507793 1.30508 -0.561594 -0.50344 1.21353 -0.567465 -0.50641 1.04974 -0.565815 -0.502487 1.04974 -0.56317 -0.502188 1.04972 -0.562097 -0.508343 1.04973 -0.591551 -0.472907 1.67972 -0.594755 -0.478979 1.67971 -0.594766 -0.472134 1.67963 -0.597255 -0.473648 1.67969 -0.591407 -0.477551 1.67973 -0.592047 -0.472969 1.49743 -0.597259 -0.477078 1.67944 -0.594908 -0.478804 1.54113 -0.593168 -0.478728 1.57578 -0.59374 -0.472183 1.51593 -0.591004 -0.474403 1.45116 -0.597363 -0.474613 1.44328 -0.597204 -0.476887 1.25094 -0.590901 -0.476027 1.35213 -0.593168 -0.478728 1.21353 -0.595515 -0.478548 1.26039 -0.591699 -0.477793 1.25842 -0.592131 -0.472849 1.18715 -0.595589 -0.472496 1.33943 -0.59374 -0.472183 1.27023 -0.590862 -0.475589 1.18833 -0.59575 -0.47857 1.04974 -0.596993 -0.473503 1.04985 -0.592716 -0.478674 1.0497 -0.597762 -0.475857 1.0497 -0.593781 -0.472097 1.04977 -0.591277 -0.473711 1.04973 -0.590886 -0.475917 1.04973 0.0965996 -0.481812 1.67973 0.0965996 -0.481812 1.04973 0.0808214 -0.501519 1.04973 0.0828214 -0.497269 1.04973 0.0861572 -0.483769 1.04973 0.0898214 -0.476039 1.04973 0.0901214 -0.475519 1.04973 0.0898214 -0.474999 1.04973 0.0898214 -0.470933 1.04973 0.0861572 -0.467269 1.04973 0.0912356 -0.469519 1.04973 0.096341 -0.469519 1.04973 0.104071 -0.465855 1.04973 0.117571 -0.465855 1.04973 0.117571 -0.462519 1.04973 0.125302 -0.469519 1.04973 0.125821 -0.469819 1.04973 0.126341 -0.469519 1.04973 0.130407 -0.469519 1.04973 0.131821 -0.470933 1.04973 0.131821 -0.476039 1.04973 0.131821 -0.480105 1.04973 0.134071 -0.462519 1.04973 0.134071 -0.465855 1.04973 0.135486 -0.467269 1.04973 0.138821 -0.467269 1.04973 0.129821 -0.462519 1.04973 0.135486 -0.497269 1.04973 0.131821 -0.500933 1.04973 0.135486 -0.483769 1.04973 0.131521 -0.505519 1.04973 0.131821 -0.506039 1.04973 0.131821 -0.510105 1.04973 0.135486 -0.513769 1.04973 0.134071 -0.515183 1.04973 0.138821 -0.509519 1.04973 0.138821 -0.513769 1.04973 0.129821 -0.520519 1.04973 0.134071 -0.518519 1.04973 0.129821 -0.518519 1.04973 0.130407 -0.511519 1.04973 0.104071 -0.515183 1.04973 0.117571 -0.515183 1.04973 0.104071 -0.518519 1.04973 0.117571 -0.518519 1.04973 0.0998214 -0.520519 1.04973 0.121821 -0.518519 1.04973 0.0998214 -0.518519 1.04973 0.0958214 -0.511219 1.04973 0.0898214 -0.510105 1.04973 0.0901214 -0.505519 1.04973 0.0898214 -0.504999 1.04973 0.0898214 -0.500933 1.04973 0.0875714 -0.515183 1.04973 0.0918214 -0.518519 1.04973 0.0875714 -0.518519 1.04973 0.0918214 -0.520519 1.04973 0.0861572 -0.497269 1.04973 0.0898214 -0.480105 1.04973 0.122821 -0.499519 1.04973 0.0912356 -0.511519 1.04973 0.100407 -0.511519 1.04973 0.121236 -0.469519 1.04973 0.0828214 -0.501519 1.67973 0.0828214 -0.501519 1.04973 0.0861572 -0.497269 1.67973 0.0898214 -0.500933 1.67973 0.0898214 -0.506039 1.04973 0.0861572 -0.513769 1.67973 0.0861572 -0.513769 1.04973 0.0828214 -0.513769 1.04973 0.0828214 -0.509519 1.04973 0.0808214 -0.509519 1.04973 0.0808214 -0.518519 1.67973 0.081441 -0.520044 1.67949 0.0808214 -0.518519 1.04973 0.0816345 -0.52021 1.04971 0.0828214 -0.520519 1.67973 0.0828214 -0.520519 1.04973 0.0821399 -0.520391 1.3258 0.0812667 -0.51966 1.30082 0.0918214 -0.520519 1.67973 0.0875714 -0.515183 1.67973 0.0953018 -0.511519 1.67973 0.0953018 -0.511519 1.04973 0.0958214 -0.511219 1.67973 0.096341 -0.511519 1.04973 0.096341 -0.511519 1.67973 0.121821 -0.518519 1.67973 0.121821 -0.520519 1.04973 0.121236 -0.511519 1.04973 0.125302 -0.511519 1.67973 0.125302 -0.511519 1.04973 0.125821 -0.511219 1.04973 0.126341 -0.511519 1.04973 0.130407 -0.511519 1.67973 0.129821 -0.518519 1.67973 0.138821 -0.520519 1.67973 0.140821 -0.518519 1.67973 0.138821 -0.520519 1.04973 0.14022 -0.519848 1.67972 0.140694 -0.519201 1.43065 0.139503 -0.520391 1.43065 0.140109 -0.51989 1.04974 0.140821 -0.518519 1.04973 0.140821 -0.509519 1.04973 0.138821 -0.509519 1.67973 0.131821 -0.510105 1.67973 0.131521 -0.505519 1.67973 0.131821 -0.504999 1.67973 0.131821 -0.504999 1.04973 0.138821 -0.497269 1.04973 0.140821 -0.501519 1.67973 0.138821 -0.501519 1.04973 0.140821 -0.501519 1.04973 0.138821 -0.479519 1.04973 0.138821 -0.479519 1.67973 0.138821 -0.483769 1.67973 0.138821 -0.483769 1.04973 0.131821 -0.480105 1.67973 0.131821 -0.476039 1.67973 0.131821 -0.474999 1.67973 0.131521 -0.475519 1.04973 0.131821 -0.474999 1.04973 0.131821 -0.470933 1.67973 0.138821 -0.471519 1.04973 0.140821 -0.471519 1.04973 0.14046 -0.461372 1.33399 0.140018 -0.460809 1.04973 0.140694 -0.461838 1.48734 0.140821 -0.462519 1.04973 0.129821 -0.460519 1.04973 0.134071 -0.462519 1.67973 0.130407 -0.469519 1.67973 0.125302 -0.469519 1.67973 0.117571 -0.462519 1.67973 0.121821 -0.462519 1.04973 0.121821 -0.460519 1.04973 0.0998214 -0.460519 1.67973 0.0998214 -0.462519 1.67973 0.0998214 -0.462519 1.04973 0.104071 -0.462519 1.67973 0.104071 -0.462519 1.04973 0.100407 -0.469519 1.04973 0.096341 -0.469519 1.67973 0.0958214 -0.469819 1.04973 0.0953018 -0.469519 1.04973 0.0875714 -0.465855 1.04973 0.0875714 -0.462519 1.67973 0.0875714 -0.462519 1.04973 0.0918214 -0.462519 1.04973 0.0918214 -0.462519 1.67973 0.0813276 -0.461115 1.67971 0.0828214 -0.460519 1.04973 0.0808214 -0.462519 1.04973 0.0813293 -0.461345 1.04975 0.0808214 -0.462519 1.67973 0.0828214 -0.460519 1.67973 0.0818125 -0.460853 1.22664 0.0821399 -0.460647 1.46039 0.0808214 -0.471519 1.04973 0.0828214 -0.471519 1.04973 0.0861572 -0.467269 1.67973 0.0828214 -0.467269 1.04973 0.0901214 -0.475519 1.67973 0.0828214 -0.483769 1.67973 0.0828214 -0.483769 1.04973 0.0828214 -0.479519 1.67973 0.0828214 -0.479519 1.04973 0.0808214 -0.479519 1.67973 0.0808214 -0.479519 1.04973 0.0808214 -0.501519 1.67973 0.0828214 -0.497269 1.67973 0.0901214 -0.505519 1.67973 0.0898214 -0.504999 1.67973 0.0898214 -0.506039 1.67973 0.0912356 -0.511519 1.67973 0.0828214 -0.509519 1.67973 0.0808214 -0.509519 1.67973 0.0828214 -0.513769 1.67973 0.0875714 -0.518519 1.67973 0.0918214 -0.518519 1.67973 0.100407 -0.511519 1.67973 0.104071 -0.515183 1.67973 0.117571 -0.515183 1.67973 0.117571 -0.518519 1.67973 0.0998214 -0.520519 1.67973 0.104071 -0.518519 1.67973 0.0998214 -0.518519 1.67973 0.121821 -0.520519 1.67973 0.125821 -0.511219 1.67973 0.126341 -0.511519 1.67973 0.135486 -0.513769 1.67973 0.131821 -0.506039 1.67973 0.134071 -0.515183 1.67973 0.138821 -0.513769 1.67973 0.129821 -0.520519 1.67973 0.134071 -0.518519 1.67973 0.130528 -0.493741 1.67973 0.131821 -0.500933 1.67973 0.135486 -0.497269 1.67973 0.135486 -0.483769 1.67973 0.138821 -0.497269 1.67973 0.138821 -0.501519 1.67973 0.131521 -0.475519 1.67973 0.135486 -0.467269 1.67973 0.138821 -0.471519 1.67973 0.138821 -0.467269 1.67973 0.134071 -0.465855 1.67973 0.139479 -0.460519 1.67973 0.14017 -0.461 1.67963 0.129821 -0.460519 1.67973 0.129821 -0.462519 1.67973 0.126341 -0.469519 1.67973 0.125821 -0.469819 1.67973 0.121236 -0.469519 1.67973 0.117571 -0.465855 1.67973 0.104071 -0.465855 1.67973 0.121821 -0.462519 1.67973 0.100407 -0.469519 1.67973 0.0958214 -0.469819 1.67973 0.0953018 -0.469519 1.67973 0.0912356 -0.469519 1.67973 0.0898214 -0.470933 1.67973 0.0898214 -0.474999 1.67973 0.0898214 -0.476039 1.67973 0.0875714 -0.465855 1.67973 0.0828214 -0.467269 1.67973 0.0808214 -0.471519 1.67973 0.0828214 -0.471519 1.67973 0.0918214 -0.460519 1.67973 0.0898214 -0.480105 1.67973 0.0861572 -0.483769 1.67973 0.121236 -0.511519 1.67973 0.0898214 -0.510105 1.67973 0.0911143 -0.487297 1.04973 0.0908214 -0.488004 1.04973 0.0908214 -0.488004 1.67973 0.0911143 -0.487297 1.67973 0.0909247 -0.487586 1.3661 0.0911143 -0.493741 1.67973 0.0908214 -0.493034 1.04973 0.0908214 -0.493034 1.67973 0.0911143 -0.493741 1.04973 0.0965996 -0.499226 1.04973 0.0980641 -0.499519 1.67973 0.0965996 -0.499226 1.67973 0.0968882 -0.499415 1.3661 0.0980641 -0.499519 1.04973 0.0994631 -0.49962 1.2966 0.100944 -0.500443 1.33894 0.1011 -0.500548 1.67957 0.100991 -0.500342 1.0498 0.101821 -0.503276 1.04973 0.101821 -0.502519 1.67973 0.102114 -0.504741 1.67973 0.102114 -0.504741 1.04973 0.108307 -0.510519 1.04973 0.108307 -0.510519 1.67973 0.1076 -0.510226 1.67973 0.107888 -0.510415 1.3661 0.1076 -0.510226 1.04973 0.113336 -0.510519 1.67973 0.113336 -0.510519 1.04973 0.114043 -0.510226 1.04973 0.114043 -0.510226 1.67973 0.119821 -0.504034 1.04973 0.119528 -0.504741 1.04973 0.119528 -0.504741 1.67973 0.119718 -0.504452 1.3661 0.119821 -0.502519 1.67973 0.120085 -0.501168 1.04975 0.119821 -0.502519 1.04973 0.120646 -0.500524 1.43524 0.120478 -0.500526 1.6796 0.122821 -0.499519 1.67973 0.121475 -0.499781 1.04975 0.124725 -0.499429 1.33436 0.125043 -0.499226 1.67973 0.125043 -0.499226 1.04973 0.124725 -0.499429 1.3486 0.124336 -0.499519 1.04973 0.124336 -0.499519 1.67973 0.12438 -0.499518 1.3661 0.124725 -0.499429 1.36423 0.130528 -0.493741 1.04973 0.130718 -0.493452 1.3661 0.130821 -0.493034 1.67973 0.130821 -0.493034 1.04973 0.130528 -0.487297 1.04973 0.130821 -0.488004 1.67973 0.130528 -0.487297 1.67973 0.130821 -0.488004 1.04973 0.123579 -0.481519 1.67973 0.125043 -0.481812 1.67973 0.125043 -0.481812 1.04973 0.119821 -0.477762 1.67973 0.119821 -0.478519 1.04973 0.122821 -0.481519 1.04973 0.120487 -0.480454 1.67963 0.120701 -0.48085 1.04982 0.121972 -0.481345 1.45399 0.1207 -0.480582 1.28671 0.119821 -0.477004 1.04973 0.119528 -0.476297 1.67973 0.119769 -0.476774 1.36377 0.119528 -0.476297 1.04973 0.113336 -0.470519 1.04973 0.114043 -0.470812 1.67973 0.113336 -0.470519 1.67973 0.114043 -0.470812 1.04973 0.1076 -0.470812 1.67973 0.108307 -0.470519 1.04973 0.108307 -0.470519 1.67973 0.1076 -0.470812 1.04973 0.101821 -0.477004 1.04973 0.101925 -0.476586 1.3661 0.102114 -0.476297 1.67973 0.102114 -0.476297 1.04973 0.101821 -0.477762 1.67973 0.0988214 -0.481519 1.67973 0.0998434 -0.481328 1.35351 0.101821 -0.478519 1.04973 0.100822 -0.480816 1.05012 0.101131 -0.480641 1.67961 0.100877 -0.480666 1.42067 0.0973067 -0.481519 1.04973 0.128979 -0.473963 1.67947 0.125659 -0.478954 1.67967 0.126181 -0.472008 1.6798 0.128775 -0.477499 1.67976 0.122978 -0.477553 1.67975 0.12689 -0.472379 1.54113 0.124945 -0.47879 1.43127 0.123012 -0.473436 1.67972 0.128844 -0.476928 1.42261 0.123463 -0.477877 1.40519 0.12626 -0.472183 1.35213 0.124412 -0.472496 1.34209 0.122818 -0.474037 1.31551 0.125637 -0.478813 1.28618 0.129021 -0.474912 1.34101 0.127629 -0.478356 1.38363 0.129145 -0.47581 1.17868 0.12689 -0.472379 1.18833 0.122551 -0.475765 1.4112 0.12248 -0.474758 1.04979 0.127869 -0.472849 1.33805 0.124281 -0.472295 1.04989 0.128725 -0.477431 1.04983 0.126589 -0.478876 1.04973 0.123341 -0.477984 1.04985 0.12795 -0.472693 1.04975 0.0928671 -0.503583 1.67972 0.095207 -0.502173 1.67968 0.097835 -0.502747 1.67975 0.099326 -0.505727 1.67971 0.0932363 -0.50344 1.54113 0.0959837 -0.508963 1.67972 0.0984065 -0.50344 1.35213 0.0983682 -0.507807 1.6797 0.0924284 -0.505648 1.04978 0.0991523 -0.506545 1.0498 0.0940463 -0.508455 1.67971 0.092603 -0.506644 1.67971 0.0932363 -0.50344 1.35213 0.0964118 -0.502171 1.35213 0.0986916 -0.50355 1.04988 0.0964118 -0.508867 1.21353 0.094816 -0.508703 1.23046 0.0976298 -0.508357 1.26157 0.0927361 -0.506795 1.21412 0.0936359 -0.508124 1.18833 0.0966355 -0.502202 1.04974 0.0947933 -0.502291 1.04976 0.0940553 -0.508511 1.04972 0.093013 -0.503504 1.04975 0.0970453 -0.508792 1.04975 0.122567 -0.504346 1.67971 0.124972 -0.502063 1.67972 0.123215 -0.507964 1.67967 0.126464 -0.502317 1.50077 0.128959 -0.506985 1.67965 0.128757 -0.503567 1.67973 0.126494 -0.508879 1.67966 0.124146 -0.50262 1.33756 0.128704 -0.504018 1.52518 0.122486 -0.505663 1.5116 0.122837 -0.503967 1.41415 0.122491 -0.505716 1.04999 0.127818 -0.502798 1.27436 0.129151 -0.505736 1.29366 0.123011 -0.507266 1.39987 0.126684 -0.508741 1.30862 0.124412 -0.508542 1.38638 0.128911 -0.504161 1.27023 0.12553 -0.502196 1.21668 0.128302 -0.507793 1.27968 0.129063 -0.507489 1.04977 0.125568 -0.50893 1.05003 0.122755 -0.503752 1.04973 0.12353 -0.507972 1.04985 0.127224 -0.502234 1.04971 0.0923895 -0.475273 1.67972 0.0973481 -0.472443 1.67972 0.0949945 -0.472173 1.67975 0.0957103 -0.478921 1.67968 0.0991443 -0.47581 1.54191 0.0992441 -0.474498 1.6796 0.0930572 -0.473503 1.67971 0.0949714 -0.472346 1.54113 0.0939614 -0.478395 1.67972 0.0984867 -0.473398 1.04976 0.0991379 -0.475883 1.25999 0.092654 -0.476843 1.67962 0.0967889 -0.478809 1.04973 0.0982584 -0.477975 1.6797 0.0925581 -0.475675 1.21628 0.0973708 -0.472482 1.04974 0.0983012 -0.477892 1.04973 0.0932776 -0.477826 1.04971 0.094478 -0.472368 1.04973 0.0958211 -0.472119 1.04974 0.0993054 -0.475682 1.04973 0.0951261 -0.478851 1.04973 0.0923563 -0.474683 1.04973 0.0934263 -0.473123 1.19817 -0.549179 -0.515519 1.04973 -0.549179 -0.465519 1.04973 -0.54918 -0.475476 1.12005 -0.549179 -0.465519 1.13973 -0.549181 -0.50539 1.12053 -0.535178 -0.505535 1.1204 -0.535179 -0.515519 1.13523 -0.535179 -0.465519 1.13523 -0.535179 -0.465519 1.11273 -0.463679 -0.465519 1.06373 -0.486179 -0.465519 1.06373 -0.463679 -0.515519 1.06373 -0.459179 -0.465519 1.05923 -0.459179 -0.515519 1.05923 -0.459179 -0.465519 1.04973 -0.535179 -0.515519 1.11273 -0.486179 -0.515519 1.06373 -0.459179 -0.515519 1.04973 -0.549179 -0.515519 1.13973 -0.539679 -0.465519 1.13973 -0.539679 -0.515519 1.13973 -0.4793 -0.474979 1.06374 -0.478871 -0.505488 1.04973 -0.478922 -0.505549 1.06373 -0.479207 -0.474914 1.04973 -0.535177 -0.475191 1.11998 -0.609179 -0.515519 1.67973 -0.699179 -0.465519 1.67973 -0.699179 -0.515519 1.67973 -0.679373 -0.475226 1.67973 -0.67913 -0.475113 1.66573 -0.694679 -0.465519 1.66573 -0.694679 -0.515519 1.66573 -0.672179 -0.515519 1.66573 -0.672179 -0.465519 1.66573 -0.623179 -0.465519 1.59423 -0.623179 -0.465519 1.61673 -0.623179 -0.515519 1.59423 -0.618679 -0.515519 1.58973 -0.609179 -0.515519 1.58973 -0.609179 -0.465519 1.58973 -0.618679 -0.465519 1.58973 -0.609179 -0.465519 1.67973 -0.699179 -0.465519 1.67023 -0.699179 -0.515519 1.67023 -0.623179 -0.515519 1.61673 -0.609178 -0.505979 1.60963 -0.623182 -0.505929 1.60963 -0.609179 -0.475731 1.60957 -0.623179 -0.47553 1.6096 -0.679677 -0.505444 1.66572 -0.679788 -0.505268 1.67973 0.140821 -0.564034 1.17573 -1.65918 -0.564741 1.17603 0.140821 -0.564741 1.17603 -1.01294 -0.564444 1.17584 -1.65918 -0.564034 1.17573 -0.651275 -0.564452 1.17584 0.140821 -0.578519 1.19148 0.140821 -0.578519 1.19573 0.140821 -0.578519 1.17373 0.140821 -0.575183 1.17798 0.140821 -0.571219 1.16973 0.140821 -0.571519 1.16921 0.140821 -0.575183 1.16148 0.140821 -0.573769 1.15673 0.140821 -0.570105 1.16373 0.140821 -0.566039 1.16373 0.140821 -0.565519 1.16403 0.140821 -0.560933 1.16373 0.140821 -0.543769 1.16007 0.140821 -0.543769 1.15673 0.140821 -0.557269 1.15673 0.140821 -0.536039 1.16373 0.140821 -0.527269 1.16007 0.140821 -0.529819 1.16973 0.140821 -0.529519 1.17025 0.140821 -0.522519 1.16148 0.140821 -0.522519 1.16573 0.140821 -0.531519 1.15473 0.140821 -0.529519 1.17432 0.140821 -0.525855 1.17798 0.140821 -0.529519 1.19515 0.140821 -0.525855 1.19148 0.140821 -0.520519 1.17373 0.140821 -0.529819 1.19973 0.140821 -0.529519 1.19921 0.140821 -0.529519 1.20025 0.140821 -0.529519 1.20432 0.140821 -0.525855 1.20798 0.140821 -0.527269 1.2094 0.140821 -0.534999 1.20573 0.140821 -0.536039 1.20573 0.140821 -0.540105 1.20573 0.140821 -0.543769 1.2094 0.140821 -0.557269 1.2094 0.140821 -0.560933 1.20573 0.140821 -0.557269 1.21273 0.140821 -0.561519 1.21473 0.140821 -0.561519 1.21273 0.140821 -0.564999 1.20573 0.140821 -0.566039 1.20573 0.140821 -0.573769 1.2094 0.140821 -0.571519 1.20432 0.140821 -0.571219 1.19973 0.140821 -0.573769 1.21273 0.140821 -0.580519 1.20373 0.140821 -0.575183 1.19148 0.140821 -0.541519 1.19825 0.140821 -0.570105 1.20573 0.140821 -0.580519 1.19573 -1.65918 -0.578519 1.19148 -1.65918 -0.575183 1.19148 -1.65918 -0.571519 1.19921 0.140821 -0.571519 1.19515 0.140821 -0.571519 1.19921 0.140821 -0.571519 1.20025 0.140821 -0.575183 1.20798 -1.65918 -0.578519 1.20798 0.140821 -0.578519 1.20798 0.140821 -0.578519 1.20373 -1.65918 -0.580519 1.20373 -1.48861 -0.580129 1.21381 -1.65918 -0.578519 1.21473 -0.862158 -0.5804 1.21337 -1.65918 -0.580519 1.21273 -0.544583 -0.580332 1.21353 0.140821 -0.580519 1.21273 -0.6405 -0.579074 1.21464 -0.478485 -0.5798 1.21426 0.140821 -0.578519 1.21473 -1.48627 -0.579201 1.21461 0.136586 -0.580006 1.21395 0.0418795 -0.5795 1.21443 -1.1769 -0.579201 1.21461 -0.961466 -0.579911 1.21413 -1.28404 -0.580126 1.21376 -1.65918 -0.569519 1.21473 0.140821 -0.569519 1.21473 0.140821 -0.569519 1.21273 -1.65918 -0.573769 1.21273 -1.65918 -0.573769 1.2094 -1.65918 -0.566039 1.20573 0.140821 -0.565519 1.20543 -1.65918 -0.564999 1.20573 -1.65918 -0.557269 1.21273 -1.65918 -0.561519 1.21273 0.140821 -0.539519 1.21473 -1.65918 -0.539519 1.21273 0.140821 -0.539519 1.21273 -1.65918 -0.543769 1.21273 0.140821 -0.543769 1.21273 0.140821 -0.535519 1.20543 0.140821 -0.530933 1.20573 -1.65918 -0.530933 1.20573 -1.65918 -0.527269 1.2094 0.140821 -0.527269 1.21273 -1.65918 -0.531519 1.21273 0.140821 -0.531519 1.21273 0.140821 -0.531519 1.21473 -0.751869 -0.521837 1.21461 0.140821 -0.522519 1.21473 0.137784 -0.520983 1.2139 -1.6591 -0.52059 1.21325 -1.65918 -0.520519 1.21273 -1.65918 -0.522519 1.21473 -0.881845 -0.521211 1.21423 -0.761917 -0.520527 1.21291 0.140821 -0.520519 1.21273 -0.617982 -0.521239 1.21426 -0.563772 -0.520587 1.21325 -1.09419 -0.520676 1.21346 -0.785283 -0.520703 1.21352 -0.135703 -0.52069 1.21349 -1.20506 -0.521239 1.21426 -1.65908 -0.521436 1.21448 -0.318895 -0.521837 1.21461 -0.318895 -0.521239 1.21426 0.140821 -0.520519 1.20373 -1.65918 -0.522519 1.20373 0.140821 -0.522519 1.20373 -1.65918 -0.522519 1.20798 0.140821 -0.522519 1.20798 -1.65918 -0.529519 1.20432 -1.65918 -0.529819 1.19973 -1.65918 -0.525855 1.19148 0.140821 -0.522519 1.19148 -1.65918 -0.522519 1.19148 -1.65918 -0.522519 1.19573 0.140821 -0.522519 1.19573 -1.65918 -0.520519 1.17373 0.140821 -0.520519 1.19573 0.140821 -0.522519 1.17373 -1.65918 -0.522519 1.17373 0.140821 -0.522519 1.17798 -1.65918 -0.525855 1.17798 -1.65918 -0.529819 1.16973 0.140821 -0.529519 1.16921 0.140821 -0.529519 1.16515 0.140821 -0.525855 1.16148 -1.65918 -0.522519 1.16573 0.140821 -0.520519 1.16573 -1.2921 -0.521419 1.15514 0.140821 -0.520519 1.15673 0.140807 -0.521132 1.15527 -0.741355 -0.521837 1.15486 -1.5272 -0.52143 1.15512 -1.18105 -0.520867 1.15571 -0.498522 -0.521317 1.1552 0.140821 -0.522519 1.15473 -1.65918 -0.522519 1.15473 -0.294594 -0.520676 1.156 -0.687846 -0.520617 1.15618 -1.65903 -0.52074 1.1558 -1.65918 -0.531519 1.15473 -1.65918 -0.531519 1.15673 0.140821 -0.531519 1.15673 0.140821 -0.527269 1.15673 -1.65918 -0.527269 1.16007 0.140821 -0.530933 1.16373 -1.65918 -0.535519 1.16403 0.140821 -0.534999 1.16373 0.140821 -0.535519 1.16403 -1.65918 -0.536039 1.16373 0.140821 -0.540105 1.16373 0.140821 -0.539519 1.15673 0.140821 -0.539519 1.15473 0.140821 -0.561519 1.15473 -1.65918 -0.561519 1.15673 0.140821 -0.561519 1.15673 0.140821 -0.557269 1.16007 0.140821 -0.564999 1.16373 -1.65918 -0.566039 1.16373 -1.65918 -0.573769 1.16007 0.140821 -0.573769 1.16007 -1.65918 -0.569519 1.15673 0.140821 -0.569519 1.15673 0.140821 -0.569519 1.15473 -0.763786 -0.580406 1.1561 -0.761917 -0.578693 1.15474 -1.65918 -0.580519 1.15673 -1.38135 -0.57956 1.15508 -1.40635 -0.580392 1.15605 -1.1332 -0.579739 1.15522 -0.773133 -0.579467 1.155 -0.21106 -0.579259 1.15489 0.140821 -0.580519 1.15673 -1.65914 -0.57983 1.1553 0.140715 -0.579874 1.15538 -0.612841 -0.579824 1.15524 -0.294316 -0.580093 1.15559 -1.65918 -0.578519 1.15473 0.140821 -0.578519 1.15473 -1.65918 -0.580519 1.16573 -1.65918 -0.578519 1.16573 0.140821 -0.580519 1.16573 0.140821 -0.578519 1.16573 0.140821 -0.578519 1.16148 0.140821 -0.571519 1.16515 -1.65918 -0.571219 1.16973 0.140821 -0.571519 1.17025 0.140821 -0.571519 1.17432 0.140821 -0.578519 1.17798 -1.65918 -0.578519 1.17373 -1.65918 -0.580519 1.17373 0.140821 -0.580519 1.17373 -1.65918 -0.578519 1.17798 -1.65918 -0.580519 1.19573 -1.65918 -0.578519 1.19573 -1.65918 -0.575183 1.17798 -1.65918 -0.570519 1.18725 -1.65918 -0.571519 1.19515 -1.65918 -0.571219 1.19973 -1.65918 -0.571519 1.20025 -1.65918 -0.570105 1.20573 -1.65918 -0.575183 1.20798 -1.65918 -0.578519 1.20373 -1.65908 -0.57964 1.21444 -1.65918 -0.569519 1.21273 -1.65918 -0.565519 1.20543 -1.65918 -0.560933 1.20573 -1.65918 -0.543769 1.2094 -1.65918 -0.557269 1.2094 -1.65918 -0.539519 1.21473 -1.65918 -0.536039 1.20573 -1.65918 -0.535519 1.20543 -1.65918 -0.534999 1.20573 -1.65918 -0.529519 1.20025 -1.65918 -0.529519 1.19921 -1.65918 -0.529519 1.19515 -1.65918 -0.527269 1.21273 -1.65918 -0.525855 1.20798 -1.65918 -0.520519 1.20373 -1.65918 -0.531519 1.21473 -1.65918 -0.520519 1.19573 -1.65918 -0.522519 1.17798 -1.65918 -0.529519 1.17432 -1.65918 -0.529519 1.17025 -1.65918 -0.529519 1.16921 -1.65918 -0.529519 1.16515 -1.65918 -0.522519 1.16148 -1.65918 -0.525855 1.16148 -1.65918 -0.527269 1.15673 -1.65918 -0.530933 1.16373 -1.65918 -0.534999 1.16373 -1.65918 -0.540105 1.16373 -1.65918 -0.541812 1.17051 -1.65918 -0.543769 1.16007 -1.65918 -0.557269 1.16007 -1.65918 -0.561519 1.15473 -1.65918 -0.539519 1.15473 -1.65918 -0.543769 1.15673 -1.65918 -0.539519 1.15673 -1.65918 -0.557269 1.15673 -1.65918 -0.560933 1.16373 -1.65918 -0.564999 1.16373 -1.65918 -0.565519 1.16403 -1.65918 -0.571519 1.16515 -1.65918 -0.571519 1.16921 -1.65918 -0.571519 1.17025 -1.65918 -0.571519 1.17432 -1.65918 -0.575183 1.16148 -1.65918 -0.578519 1.16148 -1.65918 -0.573769 1.15673 -1.65918 -0.569519 1.15473 -1.65918 -0.570105 1.16373 -1.65918 -0.540105 1.20573 -1.65918 -0.571519 1.20432 0.140821 -0.570519 1.18222 0.140821 -0.570226 1.18151 -1.05697 -0.570415 1.1818 -1.65918 -0.570519 1.18222 -1.30015 -0.570442 1.18186 -1.65918 -0.570226 1.18151 -1.65918 -0.570226 1.18795 0.140821 -0.570226 1.18795 -0.26314 -0.570481 1.18743 0.140821 -0.570519 1.18725 -0.768 -0.570437 1.18761 -0.504006 -0.564452 1.19363 -1.65918 -0.564034 1.19373 -0.763955 -0.564452 1.19363 -1.65918 -0.564741 1.19344 -1.3693 -0.564452 1.19363 0.140821 -0.564034 1.19373 0.140811 -0.564407 1.19365 0.140821 -0.564741 1.19344 -1.65918 -0.562519 1.19373 -0.483309 -0.561497 1.19392 -1.06845 -0.561497 1.19392 -0.758379 -0.561973 1.19381 -0.665464 -0.56033 1.19473 0.140821 -0.559519 1.19673 -0.231337 -0.56033 1.19473 -1.65897 -0.560405 1.19447 -0.276132 -0.561497 1.19392 0.140821 -0.562519 1.19373 0.140748 -0.560217 1.19476 -1.09132 -0.560372 1.19469 -0.366422 -0.559711 1.19571 -1.17413 -0.559711 1.19571 -0.705185 -0.55962 1.19609 -1.65918 -0.559519 1.19673 0.140821 -0.559226 1.19895 -1.65918 -0.559519 1.19825 -0.967004 -0.559436 1.19861 -1.65918 -0.559226 1.19895 0.140821 -0.559519 1.19825 -1.65917 -0.559419 1.19859 -1.65918 -0.553034 1.20473 -1.65918 -0.553741 1.20444 -0.862989 -0.553466 1.20462 0.140821 -0.553741 1.20444 -0.425212 -0.553452 1.20463 -1.11806 -0.553264 1.20468 0.140821 -0.553034 1.20473 -1.65918 -0.548004 1.20473 -1.65918 -0.547297 1.20444 0.140821 -0.548004 1.20473 -0.767238 -0.547616 1.20465 0.140821 -0.547297 1.20444 -1.36655 -0.541598 1.1986 -0.944407 -0.541636 1.1987 -1.65918 -0.541519 1.19825 0.140821 -0.541812 1.19895 -1.65918 -0.541812 1.19895 -0.729682 -0.53878 1.19374 0.140821 -0.541519 1.19673 -0.332126 -0.539541 1.19392 -1.529 -0.541018 1.19522 -1.30195 -0.540608 1.19463 -1.29522 -0.539541 1.19392 -1.18498 -0.541327 1.19571 -0.759079 -0.541417 1.19609 -0.609295 -0.539541 1.19392 -0.628893 -0.540641 1.19466 0.140764 -0.541156 1.19523 0.140797 -0.539607 1.19392 -1.65918 -0.541519 1.19673 -0.953657 -0.541327 1.19571 -0.354523 -0.541327 1.19571 -0.333176 -0.540574 1.19459 -0.858118 -0.540641 1.19466 -1.65912 -0.540625 1.19457 -1.26442 -0.539541 1.19392 -0.880865 -0.539541 1.19392 -1.5192 -0.539541 1.19392 -1.23922 -0.539541 1.19392 -1.13844 -0.539541 1.19392 -1.65918 -0.538519 1.19373 0.140821 -0.538519 1.19373 0.140821 -0.537004 1.19373 -1.65918 -0.536297 1.19344 -1.65918 -0.537004 1.19373 0.140821 -0.536297 1.19344 0.140812 -0.536723 1.19367 -0.667866 -0.536635 1.19366 0.140821 -0.530812 1.18795 0.140821 -0.530519 1.18725 -1.65918 -0.530812 1.18795 -1.65918 -0.530519 1.18725 -0.784152 -0.530607 1.18762 0.140815 -0.530611 1.18764 -1.28374 -0.530596 1.18186 -1.65918 -0.530519 1.18222 0.140821 -0.530519 1.18222 0.140816 -0.530604 1.18183 -0.602967 -0.530622 1.1818 0.140821 -0.530812 1.18151 -1.65918 -0.530812 1.18151 0.140821 -0.537004 1.17573 -0.512917 -0.536586 1.17584 -1.65918 -0.536297 1.17603 -1.65918 -0.537004 1.17573 -1.11489 -0.536586 1.17584 -0.340556 -0.536586 1.17584 0.140821 -0.536297 1.17603 -1.65918 -0.541519 1.17273 -0.763278 -0.53878 1.17572 -1.659 -0.540604 1.17506 -1.65918 -0.538519 1.17573 -1.02085 -0.53878 1.17572 -0.920061 -0.540808 1.17465 -0.600896 -0.540808 1.17465 -0.578498 -0.541327 1.17375 0.140821 -0.541519 1.17273 -1.14543 -0.539541 1.17554 -0.978854 -0.539541 1.17554 -0.903262 -0.539541 1.17554 -0.936859 -0.539541 1.17554 0.140821 -0.538519 1.17573 -0.542102 -0.539541 1.17554 -0.129848 -0.539541 1.17554 -0.239386 -0.540719 1.17473 -1.38743 -0.540926 1.17434 -0.20124 -0.541327 1.17375 -0.920061 -0.541327 1.17375 0.140694 -0.540473 1.17513 -1.10764 -0.541327 1.17375 -0.757679 -0.541508 1.17299 -0.409266 -0.541623 1.1708 0.140821 -0.541812 1.17051 -1.65918 -0.541519 1.17122 0.140821 -0.541519 1.17122 0.140821 -0.547297 1.16503 -1.65918 -0.547297 1.16503 -1.65918 -0.548004 1.16473 -1.22652 -0.547773 1.16478 -0.739009 -0.547586 1.16484 0.140821 -0.548004 1.16473 0.140821 -0.553741 1.16503 -1.65918 -0.553034 1.16473 -1.14913 -0.553452 1.16484 -1.65918 -0.553741 1.16503 0.140821 -0.553034 1.16473 -1.65918 -0.559226 1.17051 -1.28139 -0.559442 1.17086 -1.65918 -0.559519 1.17122 -0.755747 -0.559435 1.17085 0.140821 -0.559226 1.17051 0.140821 -0.559519 1.17122 0.140821 -0.559519 1.17273 -1.65918 -0.559519 1.17273 -1.65916 -0.559822 1.17409 -1.65918 -0.561316 1.17551 -1.14263 -0.561497 1.17554 -0.998452 -0.56058 1.17487 -0.658639 -0.560372 1.17478 0.140821 -0.562519 1.17573 0.1408 -0.561191 1.17545 0.140804 -0.559834 1.17416 -1.50879 -0.560112 1.17434 -1.05865 -0.559711 1.17375 -0.74648 -0.55953 1.17299 -0.600896 -0.559711 1.17375 -0.511307 -0.559711 1.17375 -0.264933 -0.559711 1.17375 -0.768878 -0.561497 1.17554 -0.417516 -0.560514 1.17492 -0.1141 -0.560549 1.17495 -1.65918 -0.562519 1.17573 -0.403518 -0.561497 1.17554 -0.763278 -0.562258 1.17572 -1.65918 -0.537996 1.16718 0.14079 -0.533143 1.17222 -1.65913 -0.538774 1.17072 -1.65898 -0.534861 1.16638 -1.65913 -0.537076 1.17287 -1.65911 -0.532431 1.16804 -1.6591 -0.532299 1.17103 -1.37753 -0.538188 1.16769 -1.45053 -0.537151 1.17267 -1.54708 -0.538828 1.16929 -1.41244 -0.533967 1.16675 -1.65902 -0.534401 1.17305 -1.44136 -0.532534 1.17128 -1.43019 -0.532849 1.16769 -1.17028 -0.538708 1.16864 -1.40356 -0.536528 1.16662 -1.43578 -0.532197 1.16944 -1.13877 -0.537878 1.17209 -1.17417 -0.536011 1.17304 -1.21277 -0.534101 1.17275 -1.2381 -0.537552 1.16709 -1.0516 -0.538831 1.17032 -0.892722 -0.532534 1.17128 -0.722078 -0.53278 1.16777 -0.858912 -0.532235 1.169 -0.957351 -0.536428 1.16652 -0.801508 -0.538397 1.16804 -0.861905 -0.533606 1.16701 -0.660242 -0.537267 1.17262 -0.787902 -0.538867 1.16973 -0.975204 -0.5341 1.17275 -0.543953 -0.536031 1.17306 -0.563899 -0.53879 1.16885 -0.851531 -0.534637 1.16649 -0.518221 -0.534935 1.17303 -0.328527 -0.534178 1.16668 -0.347477 -0.535685 1.16637 -0.327729 -0.534142 1.17277 -0.504458 -0.537793 1.16732 -0.565196 -0.53819 1.17169 -0.141227 -0.538407 1.16806 -0.337104 -0.532849 1.16769 -0.298008 -0.532235 1.169 -0.15634 -0.535505 1.17307 -0.427264 -0.532235 1.17046 -0.112902 -0.53695 1.16667 -0.254923 -0.538714 1.1709 -0.384877 -0.532952 1.17188 -0.152733 -0.537465 1.17246 -0.131852 -0.53886 1.16966 -0.0398968 -0.538504 1.17128 0.140784 -0.536645 1.17325 0.140775 -0.532776 1.16765 0.140809 -0.539042 1.16912 0.140741 -0.534366 1.16655 0.140799 -0.532067 1.16997 0.140738 -0.536687 1.16652 -1.65916 -0.564274 1.19657 -1.65911 -0.562688 1.19771 -1.65911 -0.564486 1.20304 -1.65918 -0.566671 1.1965 -1.65915 -0.562135 1.20078 -1.6591 -0.568389 1.19779 -1.57062 -0.566248 1.20301 -1.44136 -0.562534 1.20129 -1.6592 -0.568706 1.20146 -1.33444 -0.564174 1.20276 -1.34661 -0.562727 1.19799 -1.03464 -0.568257 1.19777 -1.30891 -0.565666 1.19636 -1.21516 -0.564088 1.19667 -0.878062 -0.565758 1.19636 -1.24509 -0.567878 1.20209 -1.18604 -0.568804 1.20046 -1.05898 -0.566067 1.20304 -1.17188 -0.566741 1.1966 -1.01968 -0.562196 1.19944 -0.936306 -0.563771 1.20262 -1.11104 -0.56285 1.19769 -0.749853 -0.567032 1.19681 -0.957847 -0.562639 1.20148 -0.797477 -0.567461 1.20251 -0.945083 -0.568842 1.19944 -0.74352 -0.564353 1.19659 -0.883746 -0.568511 1.20125 -0.737337 -0.563209 1.20212 -0.766816 -0.565632 1.20302 -0.550535 -0.568804 1.20046 -0.566492 -0.568627 1.19844 -0.585741 -0.562788 1.19784 -0.414298 -0.565547 1.19636 -0.346329 -0.564744 1.20301 -0.353062 -0.563907 1.1968 -0.216625 -0.563212 1.20214 -0.453195 -0.566929 1.20276 -0.376799 -0.567192 1.19684 -0.559711 -0.568294 1.20167 -0.240561 -0.562493 1.19824 -0.120083 -0.5655 1.19636 -0.0329154 -0.568759 1.20068 -0.286838 -0.562324 1.2009 -0.107317 -0.566158 1.20302 -0.264498 -0.562177 1.19966 -0.0594446 -0.568855 1.19959 -0.0123701 -0.568463 1.19803 0.0259278 -0.567266 1.20262 0.140816 -0.56207 1.20014 -0.00379296 -0.563792 1.1969 0.14039 -0.56653 1.20309 0.140789 -0.568971 1.20056 0.14079 -0.56757 1.19699 0.140571 -0.565013 1.19633 0.14081 -0.562833 1.1976 0.140577 -0.56359 1.20261 -1.65915 -0.535551 1.19629 -1.65919 -0.535857 1.20329 -1.65917 -0.538702 1.19847 -1.5754 -0.533606 1.19701 -1.65907 -0.532362 1.19836 -1.65916 -0.538844 1.20063 -1.65914 -0.532438 1.20152 -1.6055 -0.537431 1.197 -1.36317 -0.533825 1.20263 -1.37753 -0.538188 1.19769 -1.19122 -0.536427 1.20294 -1.39269 -0.53879 1.19885 -1.10137 -0.533685 1.19698 -1.62886 -0.537878 1.20209 -1.14734 -0.538667 1.20081 -0.905588 -0.537878 1.20209 -1.29216 -0.532197 1.19944 -1.39907 -0.532744 1.20167 -1.14994 -0.534447 1.20289 -1.13219 -0.53617 1.19652 -0.810243 -0.538893 1.20003 -0.85632 -0.53221 1.19929 -0.771945 -0.536662 1.20288 -0.97919 -0.533316 1.20225 -0.845349 -0.538626 1.19844 -0.982582 -0.534681 1.20299 -0.84854 -0.536382 1.19651 -0.854724 -0.537794 1.19726 -0.901199 -0.532324 1.2009 -0.877264 -0.534929 1.19638 -0.861705 -0.533727 1.19692 -0.937901 -0.532574 1.19803 -0.637304 -0.53479 1.20301 -0.500169 -0.538819 1.19955 -0.39879 -0.532849 1.19769 -0.691559 -0.538517 1.20126 -0.42128 -0.532324 1.2009 -0.31975 -0.53657 1.20289 -0.593221 -0.536636 1.20278 -0.355455 -0.537311 1.19692 -0.30858 -0.534644 1.20299 -0.267689 -0.538463 1.19803 -0.473142 -0.532197 1.19944 -0.357051 -0.533264 1.20219 -0.44003 -0.534508 1.19653 -0.231087 -0.537774 1.20219 -0.15479 -0.538609 1.20109 -0.212437 -0.536325 1.19649 -0.0434872 -0.533368 1.2023 0.0111671 -0.534635 1.20299 0.140709 -0.5356 1.19634 0.140786 -0.532636 1.19777 -0.0628357 -0.538188 1.19769 -0.195083 -0.538835 1.19937 0.140702 -0.538917 1.19904 0.0522576 -0.534298 1.1966 0.14079 -0.532145 1.20039 0.140761 -0.534231 1.20335 0.14075 -0.538054 1.20221 0.140755 -0.5376 1.197 -1.65907 -0.564213 1.17293 -1.65916 -0.567688 1.17258 -1.6591 -0.562354 1.16817 -1.59256 -0.568868 1.16973 -1.65912 -0.567699 1.16694 -1.65916 -0.564458 1.16648 -1.65907 -0.562269 1.17102 -1.55186 -0.566923 1.17275 -1.61131 -0.568504 1.17128 -1.40945 -0.568189 1.16769 -1.23132 -0.563537 1.16709 -1.36696 -0.566281 1.16652 -1.34003 -0.568842 1.16944 -1.502 -0.56316 1.17209 -1.01569 -0.568052 1.16752 -1.22354 -0.562248 1.16885 -0.972758 -0.56316 1.17209 -1.15891 -0.568504 1.17128 -1.06726 -0.566149 1.1665 -1.24708 -0.567669 1.1723 -1.20489 -0.56478 1.17302 -1.12779 -0.566358 1.173 -0.816576 -0.562392 1.16866 -0.843753 -0.564057 1.16677 -0.799073 -0.568829 1.16929 -0.845748 -0.567433 1.16701 -0.473141 -0.564634 1.173 -0.556519 -0.568463 1.16803 -0.905587 -0.562285 1.17071 -0.821412 -0.565593 1.16637 -0.482937 -0.5633 1.17233 -0.580455 -0.567878 1.17209 -0.860508 -0.568787 1.17054 -0.556518 -0.562534 1.17128 -0.459976 -0.566951 1.16667 -0.481519 -0.56285 1.16769 -0.404126 -0.566139 1.17304 -0.475535 -0.568845 1.16947 -0.573474 -0.564761 1.16649 -0.401732 -0.568714 1.1709 -0.162371 -0.567035 1.17273 -0.512237 -0.562206 1.16969 0.0081751 -0.566564 1.17281 -0.069817 -0.568189 1.16769 0.0496645 -0.565956 1.16641 -0.139631 -0.564548 1.16652 -0.259511 -0.564636 1.17291 -0.135542 -0.562429 1.17109 -0.167756 -0.56285 1.16769 0.140762 -0.563529 1.17255 0.140816 -0.566257 1.1731 0.140799 -0.568264 1.17175 -0.0614395 -0.568823 1.16995 0.140778 -0.568919 1.16944 0.140796 -0.56729 1.16656 0.14075 -0.563166 1.16712 0.140816 -0.562063 1.16972 -0.741912 -0.564452 1.53584 0.140821 -0.564034 1.53573 -1.65918 -0.564034 1.53573 -0.49914 -0.564452 1.53584 -1.65918 -0.564741 1.53603 0.140821 -0.564741 1.53603 0.140821 -0.580519 1.55573 0.140821 -0.580519 1.53373 0.140821 -0.578519 1.53373 0.140821 -0.575183 1.55148 0.140821 -0.571519 1.53025 0.140821 -0.571219 1.52973 0.140821 -0.578519 1.52148 0.140821 -0.573769 1.51673 0.140821 -0.566039 1.52373 0.140821 -0.565519 1.52403 0.140821 -0.564999 1.52373 0.140821 -0.560933 1.52373 0.140821 -0.557269 1.52007 0.140821 -0.543769 1.52007 0.140821 -0.543769 1.51673 0.140821 -0.557269 1.51673 0.140821 -0.561519 1.51473 0.140821 -0.539519 1.51473 0.140821 -0.540105 1.52373 0.140821 -0.536039 1.52373 0.140821 -0.534999 1.52373 0.140821 -0.525855 1.52148 0.140821 -0.530933 1.52373 0.140821 -0.529519 1.52515 0.140821 -0.529519 1.52921 0.140821 -0.529519 1.53025 0.140821 -0.536297 1.53603 0.140821 -0.527269 1.52007 0.140821 -0.522519 1.52573 0.140821 -0.531519 1.51673 0.140821 -0.531519 1.51473 0.140821 -0.529519 1.53432 0.140821 -0.525855 1.53798 0.140821 -0.525855 1.55148 0.140821 -0.522519 1.55148 0.140821 -0.520519 1.53373 0.140821 -0.529519 1.55515 0.140821 -0.529519 1.56432 0.140821 -0.529519 1.56025 0.140821 -0.522519 1.56798 0.140821 -0.527269 1.5694 0.140821 -0.522519 1.56373 0.140821 -0.531519 1.57473 0.140821 -0.531519 1.57273 0.140821 -0.530933 1.56573 0.140821 -0.534999 1.56573 0.140821 -0.540105 1.56573 0.140821 -0.557269 1.5694 0.140821 -0.557269 1.57273 0.140821 -0.539519 1.57473 0.140821 -0.561519 1.57473 0.140821 -0.560933 1.56573 0.140821 -0.565519 1.56543 0.140821 -0.570105 1.56573 0.140821 -0.571519 1.56025 0.140821 -0.571219 1.55973 0.140821 -0.571519 1.55921 0.140821 -0.571519 1.55515 0.140821 -0.573769 1.5694 0.140821 -0.573769 1.57273 0.140817 -0.559403 1.55864 -1.65918 -0.578519 1.55573 0.140821 -0.578519 1.55573 -1.65918 -0.578519 1.55148 0.140821 -0.578519 1.55148 -1.65918 -0.575183 1.55148 -1.65918 -0.571519 1.55921 -1.65918 -0.571519 1.56432 0.140821 -0.571519 1.56432 0.140821 -0.575183 1.56798 0.140821 -0.578519 1.56798 0.140821 -0.578519 1.56373 0.140821 -0.580519 1.56373 -1.65918 -0.580519 1.57273 -0.702392 -0.579201 1.5746 -0.771264 -0.5798 1.57426 -0.761917 -0.580511 1.57291 -0.501589 -0.580328 1.57353 -0.447292 -0.579828 1.57423 0.140674 -0.579648 1.5744 0.124129 -0.580244 1.57373 0.140821 -0.580519 1.57273 -1.60086 -0.579873 1.57405 -1.65918 -0.578519 1.57473 0.140821 -0.578519 1.57473 -1.15821 -0.57965 1.57434 -0.98156 -0.580244 1.57373 -1.15044 -0.580393 1.57339 -0.771264 -0.580244 1.57373 -1.65918 -0.569519 1.57273 0.140821 -0.569519 1.57473 0.140821 -0.569519 1.57273 -1.65918 -0.573769 1.57273 -1.65918 -0.570105 1.56573 0.140821 -0.566039 1.56573 -1.65918 -0.566039 1.56573 -1.65918 -0.564999 1.56573 0.140821 -0.564999 1.56573 -1.65918 -0.560933 1.56573 0.140821 -0.561519 1.57273 -1.65918 -0.561519 1.57273 -1.65918 -0.561519 1.57473 -1.65918 -0.539519 1.57473 -1.65918 -0.539519 1.57273 0.140821 -0.539519 1.57273 0.140821 -0.543769 1.57273 -1.65918 -0.543769 1.5694 0.140821 -0.543769 1.5694 0.140821 -0.536039 1.56573 0.140821 -0.535519 1.56543 -1.65918 -0.535519 1.56543 -1.65918 -0.530933 1.56573 0.140821 -0.527269 1.57273 -1.65918 -0.531519 1.57273 -1.65918 -0.522519 1.57473 -1.65918 -0.520519 1.57273 -0.760048 -0.520557 1.57308 -1.31961 -0.521538 1.57443 -1.16177 -0.520677 1.57346 -0.842764 -0.521127 1.57413 -0.533746 -0.520664 1.57343 0.140821 -0.520519 1.57273 -0.115142 -0.521016 1.57399 0.140821 -0.522519 1.57473 0.140708 -0.521415 1.57444 -0.548818 -0.521239 1.57426 -1.03483 -0.521239 1.57426 -0.548818 -0.521837 1.5746 -0.115142 -0.521837 1.5746 -1.65918 -0.520519 1.56373 0.140821 -0.520519 1.56373 -1.65918 -0.522519 1.56373 -1.65918 -0.529519 1.56432 0.140821 -0.525855 1.56798 -1.65918 -0.529819 1.55973 0.140821 -0.529819 1.55973 -1.65918 -0.529519 1.55921 0.140821 -0.529519 1.55921 -1.65918 -0.522519 1.55148 0.140821 -0.522519 1.55573 -1.65918 -0.522519 1.55573 0.140821 -0.520519 1.55573 -1.65918 -0.520519 1.53373 -1.65918 -0.522519 1.53373 0.140821 -0.522519 1.53373 0.140821 -0.522519 1.53798 -1.65918 -0.529819 1.52973 0.140821 -0.529819 1.52973 -1.65918 -0.529519 1.52515 -1.65918 -0.525855 1.52148 -1.65918 -0.522519 1.52148 0.140821 -0.522519 1.52148 -1.65918 -0.522519 1.52573 0.140821 -0.520519 1.52573 -0.761917 -0.520527 1.51656 -0.676324 -0.522087 1.5148 -1.65917 -0.520646 1.51597 -1.65918 -0.520519 1.51673 -1.65918 -0.522519 1.51473 -1.65918 -0.521654 1.51488 -0.252009 -0.521207 1.51524 0.140821 -0.522519 1.51473 0.140821 -0.520519 1.51673 -0.965202 -0.520721 1.5159 -1.1821 -0.521227 1.51521 0.140784 -0.521146 1.51541 -0.457514 -0.520709 1.51593 -1.65918 -0.531519 1.51473 -1.65918 -0.531519 1.51673 0.140821 -0.527269 1.51673 -1.65918 -0.527269 1.51673 -1.65918 -0.527269 1.52007 0.140821 -0.535519 1.52403 -1.65918 -0.543769 1.51673 0.140821 -0.539519 1.51673 -1.65918 -0.561519 1.51673 0.140821 -0.561519 1.51673 -1.65918 -0.564999 1.52373 -1.65918 -0.565519 1.52403 -1.65918 -0.566039 1.52373 0.140821 -0.570105 1.52373 -1.65918 -0.570105 1.52373 0.140821 -0.573769 1.52007 -1.65918 -0.569519 1.51673 0.140821 -0.569519 1.51673 0.140821 -0.569519 1.51473 -0.285847 -0.579886 1.51529 -0.757945 -0.580441 1.51629 -1.65918 -0.580519 1.51673 -1.03974 -0.579829 1.51523 0.140821 -0.580519 1.51673 0.12214 -0.579965 1.51545 -0.9152 -0.580333 1.51593 -0.399274 -0.580348 1.51597 -0.636091 -0.579881 1.51529 -1.56477 -0.580022 1.51547 0.140821 -0.578519 1.51473 -1.65918 -0.578519 1.51473 -0.89084 -0.579025 1.51482 -0.402838 -0.579302 1.51491 -1.65918 -0.579888 1.51541 -1.65918 -0.580519 1.52573 0.140821 -0.580519 1.52573 0.140821 -0.578519 1.52573 -1.65918 -0.578519 1.52148 -1.65918 -0.575183 1.52148 0.140821 -0.575183 1.52148 0.140821 -0.571519 1.52515 -1.65918 -0.571519 1.52515 0.140821 -0.571519 1.52921 -1.65918 -0.571219 1.52973 -1.65918 -0.571519 1.53025 0.140821 -0.571519 1.53432 0.140821 -0.575183 1.53798 -1.65918 -0.578519 1.53798 0.140821 -0.578519 1.53798 -1.65918 -0.580519 1.53373 -1.65918 -0.578519 1.53373 -1.65918 -0.580519 1.55573 -1.65918 -0.575183 1.53798 -1.65918 -0.571519 1.55515 -1.65918 -0.571219 1.55973 -1.65918 -0.571519 1.56025 -1.65918 -0.578519 1.56798 -1.65918 -0.575183 1.56798 -1.65918 -0.573769 1.5694 -1.65918 -0.578519 1.56373 -1.65918 -0.580519 1.56373 -1.65918 -0.569519 1.57473 -1.65918 -0.565519 1.56543 -1.65918 -0.557269 1.5694 -1.65918 -0.540105 1.56573 -1.65918 -0.543769 1.57273 -1.65918 -0.557269 1.57273 -1.65918 -0.536039 1.56573 -1.65918 -0.534999 1.56573 -1.65918 -0.529519 1.56025 -1.65918 -0.527269 1.5694 -1.65918 -0.525855 1.56798 -1.65918 -0.522519 1.56798 -1.65918 -0.531519 1.57473 -1.65918 -0.527269 1.57273 -1.65913 -0.521228 1.57432 -1.65918 -0.529519 1.55515 -1.65918 -0.525855 1.55148 -1.65918 -0.525855 1.53798 -1.65918 -0.530812 1.54151 -1.65918 -0.522519 1.53798 -1.65918 -0.529519 1.53025 -1.65918 -0.529519 1.53432 -1.65918 -0.529519 1.52921 -1.65918 -0.530933 1.52373 -1.65918 -0.534999 1.52373 -1.65918 -0.535519 1.52403 -1.65918 -0.536039 1.52373 -1.65918 -0.540105 1.52373 -1.65918 -0.543769 1.52007 -1.65918 -0.557269 1.52007 -1.65918 -0.539519 1.51673 -1.65918 -0.557269 1.51673 -1.65918 -0.560933 1.52373 -1.65918 -0.571519 1.52921 -1.65918 -0.571519 1.53432 -1.65918 -0.573769 1.52007 -1.65918 -0.578519 1.52573 -1.65918 -0.573769 1.51673 -1.65918 -0.569519 1.51473 -0.739742 -0.570436 1.54184 0.140821 -0.570519 1.54222 0.140821 -0.570226 1.54151 -1.65918 -0.570226 1.54151 -1.65918 -0.570519 1.54222 0.140821 -0.570226 1.54795 -1.65918 -0.570226 1.54795 -1.65918 -0.570435 1.54763 -1.65918 -0.570519 1.54725 0.140821 -0.570519 1.54725 -0.655321 -0.570392 1.54769 0.140804 -0.570403 1.54761 -1.65918 -0.564741 1.55344 -1.65918 -0.564034 1.55373 -1.31358 -0.564343 1.55366 -0.580455 -0.564452 1.55363 0.140821 -0.564741 1.55344 0.140821 -0.564034 1.55373 -1.27282 -0.561497 1.55392 -1.02645 -0.561497 1.55392 -1.65917 -0.561387 1.55396 -1.65918 -0.559519 1.55673 -1.32881 -0.561497 1.55392 -1.05532 -0.560464 1.55459 -1.09959 -0.559711 1.55571 -0.763278 -0.561877 1.55383 0.140701 -0.560526 1.55434 -1.65918 -0.562519 1.55373 0.140821 -0.562519 1.55373 -0.553652 -0.561497 1.55392 -1.30362 -0.561497 1.55392 -1.65914 -0.559845 1.55539 -0.627843 -0.560341 1.55473 -0.0551315 -0.560464 1.55459 -0.592497 -0.559711 1.55571 -0.131948 -0.559711 1.55571 -0.757679 -0.55953 1.55647 0.140821 -0.559519 1.55673 0.140821 -0.559226 1.55895 -1.65918 -0.559226 1.55895 -1.65918 -0.559519 1.55825 -0.984273 -0.559449 1.55858 -0.640488 -0.559402 1.5587 -1.65917 -0.559414 1.55858 -0.762489 -0.559426 1.55864 0.140821 -0.559519 1.55825 0.140821 -0.553034 1.56473 0.140821 -0.553741 1.56444 -1.65918 -0.553034 1.56473 -0.758268 -0.553452 1.56463 -1.65918 -0.553741 1.56444 -1.65918 -0.547297 1.56444 -1.65918 -0.548004 1.56473 0.140821 -0.547297 1.56444 0.140821 -0.548004 1.56473 -1.03985 -0.547586 1.56463 -0.598423 -0.541622 1.55866 -1.65918 -0.541519 1.55825 -1.65918 -0.541812 1.55895 0.140821 -0.541812 1.55895 0.140821 -0.541519 1.55825 -1.22183 -0.541612 1.55864 -1.31184 -0.540742 1.55476 -1.00563 -0.540663 1.5547 -1.04885 -0.539541 1.55392 -1.65918 -0.538519 1.55373 -0.828721 -0.541463 1.55628 -0.679287 -0.540708 1.55473 -0.388119 -0.541327 1.55571 0.140821 -0.538519 1.55373 -0.284181 -0.539541 1.55392 -0.289081 -0.540675 1.5547 0.140803 -0.540523 1.55463 -1.65908 -0.540892 1.55476 -1.09119 -0.54133 1.55572 -1.65918 -0.541519 1.55673 0.140821 -0.541519 1.55673 -1.36381 -0.539541 1.55392 -0.556101 -0.539541 1.55392 -0.914461 -0.539541 1.55392 -0.766078 -0.53916 1.55383 0.140821 -0.536297 1.55344 -0.822332 -0.536645 1.55365 -1.65918 -0.536297 1.55344 -1.65918 -0.537004 1.55373 0.140821 -0.537004 1.55373 -1.65918 -0.530519 1.54725 -1.41113 -0.530612 1.54764 -1.65918 -0.530812 1.54795 -0.745136 -0.530612 1.54764 0.140821 -0.530812 1.54795 0.140821 -0.530519 1.54725 -1.65918 -0.530519 1.54222 0.140821 -0.530519 1.54222 -1.28374 -0.530596 1.54186 0.140821 -0.530812 1.54151 -0.89176 -0.536586 1.53584 -1.65918 -0.537004 1.53573 -1.11952 -0.536586 1.53584 -0.495564 -0.536586 1.53584 -1.65918 -0.536297 1.53603 0.140821 -0.537004 1.53573 -0.909563 -0.541327 1.53376 -1.65901 -0.54059 1.53492 -1.24535 -0.540666 1.53479 -0.854267 -0.540666 1.53479 -0.768878 -0.53878 1.53572 0.140821 -0.541519 1.53273 -0.375521 -0.541327 1.53376 -1.65918 -0.538519 1.53573 -1.19373 -0.539541 1.53554 -0.597571 -0.539541 1.53554 0.140821 -0.538519 1.53573 -0.0301093 -0.539716 1.53545 -1.466 -0.539716 1.53545 -0.940008 -0.539541 1.53554 -0.518305 -0.540595 1.53485 0.140508 -0.540752 1.53478 -1.36679 -0.541327 1.53376 -1.65918 -0.541519 1.53273 -0.690486 -0.541417 1.53338 0.140821 -0.541519 1.53122 -0.762431 -0.541596 1.53086 -1.65918 -0.541812 1.53051 -0.429199 -0.541623 1.5308 0.140821 -0.541812 1.53051 -1.65918 -0.541519 1.53122 0.140821 -0.547297 1.52503 -1.65918 -0.547297 1.52503 0.140821 -0.548004 1.52473 -1.22534 -0.547586 1.52484 -0.359785 -0.547586 1.52484 -1.65918 -0.548004 1.52473 0.140821 -0.553034 1.52473 -0.902723 -0.553452 1.52484 -1.65918 -0.553741 1.52503 -1.65918 -0.553034 1.52473 -0.444676 -0.553452 1.52484 -1.36382 -0.553423 1.52482 0.140821 -0.553741 1.52503 -1.65918 -0.559226 1.53051 0.140821 -0.559519 1.53122 -0.417239 -0.559415 1.5308 0.140821 -0.559226 1.53051 -0.754692 -0.559415 1.5308 -1.65918 -0.559519 1.53122 -1.65918 -0.559519 1.53273 -1.4968 -0.560514 1.53492 -1.0845 -0.560378 1.53477 -1.65918 -0.562519 1.53573 -0.763278 -0.55953 1.53299 -0.721808 -0.560607 1.535 -0.442714 -0.561497 1.53554 -0.11375 -0.561497 1.53554 -1.33231 -0.559711 1.53376 -1.03205 -0.559711 1.53376 0.140821 -0.559519 1.53273 -0.463011 -0.559711 1.53376 -0.213139 -0.559711 1.53376 0.140744 -0.56035 1.53498 -1.65902 -0.560227 1.53489 -0.260472 -0.560425 1.53484 0.140821 -0.562519 1.53573 -1.20563 -0.561497 1.53554 -1.07124 -0.561497 1.53554 -0.763278 -0.562258 1.53572 0.140799 -0.532184 1.52965 -1.65913 -0.533843 1.52675 -1.65923 -0.532101 1.52933 -1.65926 -0.534851 1.53345 -1.65904 -0.536699 1.52649 -1.65894 -0.538343 1.53173 -1.48026 -0.533247 1.53213 -1.39388 -0.536553 1.5329 -1.39778 -0.53269 1.52799 -1.42062 -0.534794 1.52652 -1.22514 -0.538293 1.53167 -1.32587 -0.537318 1.52697 -1.03724 -0.53316 1.53209 -1.65912 -0.538761 1.52861 -1.42142 -0.534862 1.53304 -1.49402 -0.532235 1.53047 -1.09508 -0.532849 1.52769 -1.14814 -0.538848 1.53025 -0.864597 -0.537311 1.52691 -1.20479 -0.532329 1.52865 -1.1463 -0.535439 1.52639 -0.853727 -0.532203 1.52937 -1.02926 -0.536764 1.5328 -1.06985 -0.538626 1.52845 -1.04322 -0.534752 1.53302 -0.733248 -0.537364 1.53256 -0.64628 -0.53316 1.53209 -0.699738 -0.535228 1.53306 -0.738234 -0.535664 1.52639 -0.737637 -0.538504 1.53129 -0.559711 -0.538463 1.52803 -0.956254 -0.534088 1.52666 -0.973007 -0.532324 1.5309 -0.479924 -0.534242 1.53282 -0.733846 -0.538861 1.52966 -0.345282 -0.533937 1.52677 -0.266492 -0.534071 1.53272 -0.400535 -0.53256 1.53133 -0.433647 -0.532197 1.52944 -0.270881 -0.538714 1.5309 -0.192091 -0.538835 1.52937 -0.0434871 -0.532223 1.52915 -0.322942 -0.537774 1.53219 -0.33491 -0.536248 1.53302 -0.344584 -0.537492 1.52704 -0.305189 -0.532849 1.52769 -0.000501774 -0.53744 1.53235 0.140303 -0.536293 1.53318 -0.0199499 -0.532638 1.53139 0.140791 -0.534527 1.52643 0.140769 -0.533619 1.5327 0.140827 -0.537385 1.52686 -0.151798 -0.535851 1.52638 0.140816 -0.538697 1.53095 0.140776 -0.538725 1.52858 0.140803 -0.532833 1.52759 0.140675 -0.565664 1.56324 -1.65921 -0.562908 1.55729 -1.65914 -0.5621 1.56067 -1.65922 -0.568973 1.55984 -1.65917 -0.566988 1.5566 -1.42176 -0.563219 1.55739 -1.65889 -0.564277 1.56298 -1.44894 -0.562339 1.56065 -1.65879 -0.567333 1.56266 -1.38641 -0.56556 1.55636 -1.33285 -0.568676 1.56077 -1.32886 -0.563576 1.56251 -1.15971 -0.562248 1.55886 -1.00971 -0.567878 1.56209 -1.43896 -0.56581 1.56305 -0.952663 -0.562178 1.56018 -1.3157 -0.566951 1.55666 -1.43019 -0.568627 1.55844 -1.01909 -0.565083 1.55644 -0.933513 -0.568787 1.56054 -1.06427 -0.563168 1.55738 -0.964928 -0.568034 1.55749 -0.769551 -0.568836 1.55937 -0.898407 -0.56581 1.56305 -0.964232 -0.566951 1.55666 -0.810841 -0.563966 1.56272 -0.76237 -0.562534 1.56129 -0.582051 -0.567878 1.56209 -0.701333 -0.562493 1.55824 -0.607982 -0.565718 1.55642 -0.64967 -0.563666 1.55696 -0.383381 -0.564298 1.55659 -0.53747 -0.563368 1.5623 -0.416293 -0.567878 1.56209 -0.530988 -0.56479 1.56301 -0.197477 -0.568842 1.55944 -0.513434 -0.566396 1.563 -0.216227 -0.562586 1.56139 -0.5262 -0.566951 1.55666 -0.602795 -0.562164 1.5598 -0.193088 -0.563124 1.55734 -0.267689 -0.562411 1.55844 -0.272477 -0.564717 1.56301 -0.0961469 -0.567192 1.55683 -0.104126 -0.565227 1.55644 0.140776 -0.563134 1.56219 -0.650269 -0.568189 1.55769 -0.320349 -0.568687 1.56071 -0.0559539 -0.566823 1.56277 0.140701 -0.568398 1.55785 0.140595 -0.565562 1.55613 0.140803 -0.561955 1.55942 0.140757 -0.568707 1.56054 -1.65913 -0.53685 1.56288 -1.65919 -0.532918 1.55733 -1.65892 -0.536194 1.55632 -1.65917 -0.538763 1.56099 -1.65916 -0.532153 1.56082 -1.65894 -0.538675 1.55821 -1.51875 -0.532411 1.55844 -1.65904 -0.534477 1.56302 -1.45652 -0.53879 1.55886 -1.39109 -0.533787 1.55687 -1.44136 -0.532534 1.56129 -1.34601 -0.535372 1.55637 -1.45652 -0.532145 1.56002 -1.03285 -0.537267 1.56262 -1.14136 -0.534109 1.56275 -1.00173 -0.534508 1.55652 -1.04721 -0.538293 1.56168 -1.44136 -0.538188 1.55769 -0.878062 -0.532171 1.55973 -0.902796 -0.538626 1.55844 -0.998143 -0.533843 1.56263 -1.051 -0.535977 1.56307 -1.15293 -0.536817 1.55662 -0.854923 -0.532574 1.55803 -0.67241 -0.536595 1.55656 -1.01948 -0.538795 1.5605 -0.560109 -0.538051 1.55751 -0.60499 -0.534508 1.55652 -0.901199 -0.532324 1.5609 -0.425668 -0.533576 1.56251 -0.276865 -0.536393 1.56299 -0.368221 -0.534642 1.563 -0.373008 -0.537462 1.56251 -0.460176 -0.538477 1.56134 -0.592623 -0.538854 1.55958 -0.411406 -0.532228 1.5598 -0.0962467 -0.533606 1.557 -0.326433 -0.532797 1.55775 -0.186705 -0.532184 1.55958 -0.0564527 -0.534526 1.56297 -0.0228422 -0.537352 1.56241 -0.0633343 -0.533238 1.56217 0.140804 -0.535633 1.55628 0.140686 -0.537526 1.5571 0.140825 -0.534869 1.56321 0.140809 -0.538876 1.55889 0.140793 -0.538387 1.56175 -0.0794912 -0.538771 1.5601 0.0131618 -0.538463 1.55803 0.140743 -0.532817 1.55755 0.140877 -0.532138 1.56048 -1.65912 -0.568713 1.53093 -1.65919 -0.565907 1.52617 -1.65919 -0.562444 1.53151 -1.65916 -0.568776 1.52873 -1.65906 -0.562453 1.52803 -1.65911 -0.566077 1.53328 -1.29495 -0.565256 1.53306 -1.37224 -0.564528 1.52655 -1.30453 -0.568051 1.52751 -1.47327 -0.566607 1.52655 -1.07613 -0.56297 1.52753 -1.28787 -0.56316 1.53209 -1.10825 -0.562381 1.52852 -1.36646 -0.567226 1.53252 -1.02507 -0.566694 1.53282 -1.07633 -0.568893 1.53003 -0.836573 -0.564023 1.52678 -1.0871 -0.568504 1.53129 -0.895215 -0.568257 1.52777 -0.776333 -0.56581 1.53306 -0.76636 -0.567878 1.53209 -1.09907 -0.564499 1.53297 -0.840562 -0.567192 1.52683 -0.81862 -0.562209 1.5293 -0.966725 -0.566172 1.52644 -0.791094 -0.562575 1.52803 -0.653062 -0.567047 1.53267 -0.56769 -0.568714 1.5309 -0.929524 -0.562235 1.53047 -0.455988 -0.564356 1.53293 -0.366725 -0.566617 1.52657 -0.361838 -0.567461 1.53251 -0.421679 -0.566103 1.53303 -0.333115 -0.56436 1.52657 -0.296413 -0.568848 1.52952 -0.343088 -0.562203 1.52937 -0.899604 -0.56316 1.53209 -0.810243 -0.568842 1.52944 -0.250136 -0.568326 1.52786 -0.208447 -0.563264 1.53219 -0.194285 -0.565666 1.52637 -0.183115 -0.565465 1.53301 -0.181918 -0.568609 1.53109 -0.360242 -0.562324 1.5309 0.140703 -0.568265 1.53179 -0.171147 -0.567192 1.52683 -0.347676 -0.56285 1.52769 0.0793853 -0.56876 1.52924 0.0977363 -0.567433 1.527 0.140803 -0.562038 1.52989 0.140566 -0.563673 1.53264 0.140888 -0.568682 1.52759 0.140725 -0.566447 1.53304 0.14066 -0.564659 1.52639 0.140801 -0.562839 1.52758 -1.6434 -0.241812 1.21473 -1.6434 -0.241812 1.51473 -1.65918 -0.261519 1.21473 -1.65718 -0.243769 1.21473 -1.65718 -0.257269 1.21473 -1.65384 -0.257269 1.21473 -1.65384 -0.227269 1.21473 -1.65718 -0.227269 1.21473 -1.65243 -0.222519 1.21473 -1.64818 -0.222519 1.21473 -1.64876 -0.229519 1.21473 -1.64418 -0.229519 1.21473 -1.63959 -0.229519 1.21473 -1.63593 -0.225855 1.21473 -1.61418 -0.229519 1.21473 -1.60818 -0.230933 1.21473 -1.60818 -0.235519 1.21473 -1.60118 -0.227269 1.21473 -1.59918 -0.231519 1.21473 -1.60451 -0.243769 1.21473 -1.60451 -0.257269 1.21473 -1.59918 -0.261519 1.21473 -1.60818 -0.260933 1.21473 -1.60818 -0.265519 1.21473 -1.60451 -0.273769 1.21473 -1.60959 -0.271519 1.21473 -1.59918 -0.269519 1.21473 -1.59918 -0.278519 1.21473 -1.60593 -0.275183 1.21473 -1.61018 -0.280519 1.21473 -1.6168 -0.267814 1.21472 -1.61876 -0.271519 1.21473 -1.62625 -0.270519 1.21473 -1.62243 -0.275183 1.21473 -1.63593 -0.275183 1.21473 -1.63959 -0.271519 1.21473 -1.62243 -0.278519 1.21473 -1.64418 -0.271519 1.21473 -1.64684 -0.267759 1.21473 -1.65384 -0.273769 1.21473 -1.65018 -0.265519 1.21473 -1.65018 -0.260933 1.21473 -1.65243 -0.275183 1.21473 -1.65718 -0.273769 1.21473 -1.65918 -0.278519 1.21473 -1.64889 -0.253741 1.21473 -1.60818 -0.270105 1.21473 -1.61544 -0.23857 1.21476 -1.61876 -0.229519 1.21473 -1.65384 -0.243769 1.21473 -1.65718 -0.261519 1.51473 -1.65718 -0.261519 1.21473 -1.65018 -0.270105 1.21473 -1.65718 -0.269519 1.51473 -1.65718 -0.269519 1.21473 -1.65918 -0.269519 1.21473 -1.65718 -0.280519 1.51473 -1.65718 -0.280519 1.21473 -1.65918 -0.278519 1.51473 -1.64818 -0.280519 1.21473 -1.64818 -0.278519 1.51473 -1.64818 -0.278519 1.21473 -1.65243 -0.278519 1.51473 -1.65243 -0.278519 1.21473 -1.64876 -0.271519 1.21473 -1.64876 -0.271519 1.51473 -1.63959 -0.271519 1.51473 -1.63593 -0.278519 1.21473 -1.64018 -0.278519 1.51473 -1.64018 -0.280519 1.51473 -1.64018 -0.278519 1.21473 -1.64018 -0.280519 1.21473 -1.61818 -0.280519 1.51473 -1.61818 -0.280519 1.21473 -1.61818 -0.278519 1.21473 -1.61418 -0.271519 1.21473 -1.60959 -0.271519 1.51473 -1.60593 -0.275183 1.51473 -1.60593 -0.278519 1.51473 -1.60593 -0.278519 1.21473 -1.61018 -0.278519 1.51473 -1.61018 -0.278519 1.21473 -1.60118 -0.280519 1.51473 -1.60118 -0.280519 1.21473 -1.59918 -0.278519 1.51473 -1.5994 -0.279552 1.21473 -1.60118 -0.269519 1.51473 -1.60118 -0.269519 1.21473 -1.60118 -0.273769 1.51473 -1.60118 -0.273769 1.21473 -1.60451 -0.273769 1.51473 -1.60818 -0.260933 1.51473 -1.60118 -0.257269 1.21473 -1.60118 -0.261519 1.21473 -1.60118 -0.261519 1.51473 -1.59918 -0.261519 1.51473 -1.59918 -0.239519 1.21473 -1.60118 -0.239519 1.21473 -1.60118 -0.243769 1.51473 -1.60118 -0.243769 1.21473 -1.60818 -0.240105 1.51473 -1.60818 -0.240105 1.21473 -1.60818 -0.235519 1.51473 -1.60118 -0.227269 1.51473 -1.60451 -0.227269 1.21473 -1.60118 -0.231519 1.21473 -1.59918 -0.222519 1.21473 -1.60052 -0.220519 1.21473 -1.59918 -0.222519 1.51473 -1.61018 -0.220519 1.51473 -1.61018 -0.222519 1.51473 -1.61018 -0.222519 1.21473 -1.60593 -0.222519 1.21473 -1.60593 -0.225855 1.21473 -1.60959 -0.229519 1.21473 -1.61418 -0.229519 1.51473 -1.61876 -0.229519 1.51473 -1.62243 -0.225855 1.51473 -1.62243 -0.225855 1.21473 -1.62243 -0.222519 1.21473 -1.61818 -0.222519 1.51473 -1.61818 -0.222519 1.21473 -1.61818 -0.220519 1.21473 -1.64018 -0.220519 1.21473 -1.64018 -0.222519 1.51473 -1.64018 -0.222519 1.21473 -1.63593 -0.222519 1.51473 -1.63593 -0.222519 1.21473 -1.63959 -0.229519 1.51473 -1.64418 -0.229519 1.51473 -1.65243 -0.225855 1.51473 -1.65243 -0.225855 1.21473 -1.65918 -0.222519 1.21473 -1.65918 -0.222519 1.51473 -1.65918 -0.231519 1.51473 -1.65918 -0.231519 1.21473 -1.65718 -0.231519 1.21473 -1.65718 -0.231519 1.51473 -1.65718 -0.227269 1.51473 -1.65018 -0.230933 1.51473 -1.65018 -0.230933 1.21473 -1.65018 -0.235519 1.21473 -1.65018 -0.240105 1.21473 -1.65384 -0.243769 1.51473 -1.65718 -0.239519 1.51473 -1.65718 -0.239519 1.21473 -1.65918 -0.239519 1.21473 -1.65918 -0.239519 1.51473 -1.65718 -0.243769 1.51473 -1.65718 -0.257269 1.51473 -1.65918 -0.261519 1.51473 -1.64918 -0.253453 1.51473 -1.65384 -0.257269 1.51473 -1.65018 -0.265519 1.51473 -1.65018 -0.270105 1.51473 -1.65384 -0.273769 1.51473 -1.65718 -0.273769 1.51473 -1.65918 -0.269519 1.51473 -1.65243 -0.275183 1.51473 -1.64818 -0.280519 1.51473 -1.64418 -0.271519 1.51473 -1.63593 -0.275183 1.51473 -1.62243 -0.275183 1.51473 -1.61876 -0.271519 1.51473 -1.62243 -0.278519 1.51473 -1.63593 -0.278519 1.51473 -1.61818 -0.278519 1.51473 -1.61418 -0.271519 1.51473 -1.60818 -0.270105 1.51473 -1.60818 -0.265519 1.51473 -1.59918 -0.269519 1.51473 -1.61018 -0.280519 1.51473 -1.60451 -0.257269 1.51473 -1.60451 -0.243769 1.51473 -1.60118 -0.257269 1.51473 -1.59918 -0.239519 1.51473 -1.60118 -0.239519 1.51473 -1.60818 -0.230933 1.51473 -1.60451 -0.227269 1.51473 -1.60593 -0.225855 1.51473 -1.60118 -0.231519 1.51473 -1.59918 -0.231519 1.51473 -1.60593 -0.222519 1.51473 -1.60959 -0.229519 1.51473 -1.63593 -0.225855 1.51473 -1.62243 -0.222519 1.51473 -1.61818 -0.220519 1.51473 -1.65384 -0.227269 1.51473 -1.64876 -0.229519 1.51473 -1.65018 -0.235519 1.51473 -1.65018 -0.240105 1.51473 -1.64818 -0.222519 1.51473 -1.64818 -0.220519 1.51473 -1.65243 -0.222519 1.51473 -1.6578 -0.22052 1.51473 -1.65018 -0.260933 1.51473 -1.64918 -0.248004 1.51473 -1.64889 -0.247297 1.51473 -1.64909 -0.247627 1.31453 -1.64909 -0.247627 1.29595 -1.64918 -0.247586 1.21473 -1.64909 -0.247627 1.30617 -1.64918 -0.253034 1.21473 -1.6434 -0.259226 1.51473 -1.6434 -0.259226 1.21473 -1.63993 -0.259794 1.51474 -1.63818 -0.262519 1.51473 -1.64109 -0.259592 1.21474 -1.63818 -0.263277 1.21473 -1.63867 -0.260797 1.21477 -1.63789 -0.264741 1.51473 -1.63514 -0.267484 1.21473 -1.63169 -0.270519 1.21473 -1.63211 -0.270519 1.51473 -1.62596 -0.270226 1.51473 -1.62047 -0.264741 1.51473 -1.62047 -0.264741 1.21473 -1.61921 -0.260293 1.21482 -1.61868 -0.259868 1.51473 -1.62018 -0.262519 1.21473 -1.61642 -0.259519 1.21473 -1.61496 -0.259226 1.51473 -1.61496 -0.259226 1.21473 -1.60918 -0.247586 1.51473 -1.60936 -0.253628 1.51473 -1.60944 -0.247331 1.21473 -1.60918 -0.253452 1.21473 -1.61496 -0.241812 1.21473 -1.61496 -0.241812 1.51473 -1.61642 -0.241519 1.51473 -1.62018 -0.238519 1.21473 -1.61933 -0.240626 1.51457 -1.61566 -0.241519 1.21473 -1.61853 -0.241251 1.21473 -1.62047 -0.236297 1.51473 -1.62022 -0.236705 1.41579 -1.62047 -0.236297 1.21473 -1.62018 -0.238519 1.51473 -1.62018 -0.237004 1.21473 -1.62022 -0.236705 1.44227 -1.62022 -0.236705 1.43019 -1.62625 -0.230519 1.51473 -1.62596 -0.230812 1.21473 -1.63169 -0.230519 1.51473 -1.63211 -0.230519 1.21473 -1.63834 -0.239211 1.51471 -1.63514 -0.233554 1.51473 -1.63789 -0.236297 1.21473 -1.64054 -0.241379 1.51471 -1.63921 -0.240907 1.2148 -1.63818 -0.237761 1.21473 -1.61142 -0.237674 1.21482 -1.61103 -0.23375 1.21477 -1.61722 -0.237204 1.51478 -1.61089 -0.234228 1.51474 -1.61152 -0.238107 1.51472 -1.61355 -0.232076 1.5147 -1.61697 -0.233483 1.5147 -1.6178 -0.235031 1.21478 -1.61457 -0.23201 1.21469 -1.64553 -0.26886 1.51453 -1.64744 -0.266599 1.51471 -1.64081 -0.266511 1.51448 -1.64689 -0.263162 1.5147 -1.64215 -0.268342 1.51435 -1.64387 -0.262117 1.5147 -1.64083 -0.266713 1.21527 -1.64135 -0.263468 1.51444 -1.64756 -0.264689 1.21476 -1.64148 -0.263291 1.21484 -1.64386 -0.269019 1.21473 -1.64485 -0.261985 1.21494 -1.61774 -0.265597 1.51459 -1.6147 -0.262045 1.5147 -1.61526 -0.262025 1.21492 -1.61144 -0.263146 1.51446 -1.61154 -0.267501 1.38036 -1.61362 -0.268943 1.51464 -1.61084 -0.266566 1.51472 -1.61613 -0.268367 1.51462 -1.61732 -0.264077 1.21474 -1.61115 -0.263884 1.21489 -1.61093 -0.266858 1.21473 -1.61393 -0.269062 1.21472 -1.64573 -0.232352 1.51477 -1.64479 -0.239057 1.51453 -1.64777 -0.235212 1.51465 -1.64208 -0.232715 1.51471 -1.64099 -0.237075 1.51472 -1.64454 -0.232045 1.2147 -1.64117 -0.233672 1.21522 -1.64326 -0.238983 1.21469 -1.64092 -0.236176 1.21488 -1.64753 -0.23687 1.21484 -1.64655 -0.232961 1.21476 -1.6434 -0.520519 1.53603 -1.65018 -0.520519 1.53432 -1.65384 -0.520519 1.52148 -1.65018 -0.520519 1.52515 -1.65718 -0.520519 1.52148 -1.65243 -0.520519 1.52007 -1.64818 -0.520519 1.51673 -1.64418 -0.520519 1.52373 -1.63959 -0.520519 1.52373 -1.63593 -0.520519 1.52007 -1.62243 -0.520519 1.52007 -1.61818 -0.520519 1.51673 -1.61418 -0.520519 1.52373 -1.60959 -0.520519 1.52373 -1.60818 -0.520519 1.52973 -1.60818 -0.520519 1.53432 -1.60593 -0.520519 1.51673 -1.59918 -0.520519 1.52573 -1.60118 -0.520519 1.52573 -1.59918 -0.520519 1.55573 -1.59918 -0.520519 1.53373 -1.60118 -0.520519 1.53798 -1.60959 -0.520519 1.56573 -1.60451 -0.520519 1.56798 -1.60118 -0.520519 1.56373 -1.59918 -0.520519 1.57273 -1.62243 -0.520519 1.5694 -1.63593 -0.520519 1.5694 -1.63593 -0.520519 1.57273 -1.62243 -0.520519 1.57273 -1.61818 -0.520519 1.57273 -1.65018 -0.520519 1.56432 -1.65243 -0.520519 1.5694 -1.65243 -0.520519 1.57273 -1.65718 -0.520519 1.57473 -1.65384 -0.520519 1.55148 -1.60818 -0.520519 1.55515 -1.64876 -0.520519 1.56573 -1.63959 -0.520519 1.56573 -1.65918 -0.220519 1.55573 -1.65918 -0.520519 1.55573 -1.65718 -0.520519 1.55573 -1.65718 -0.520519 1.55148 -1.65718 -0.220519 1.55148 -1.65384 -0.220519 1.55148 -1.65018 -0.520519 1.55515 -1.65018 -0.520519 1.55973 -1.65384 -0.520519 1.56798 -1.65718 -0.520519 1.56798 -1.65918 -0.220519 1.56373 -1.65718 -0.520519 1.56373 -1.65918 -0.220519 1.57273 -1.6586 -0.520408 1.57424 -1.64818 -0.220519 1.57473 -1.64818 -0.520519 1.57473 -1.64818 -0.520519 1.57273 -1.65243 -0.220519 1.5694 -1.64418 -0.520519 1.56573 -1.63959 -0.220519 1.56573 -1.63593 -0.220519 1.57273 -1.64018 -0.520519 1.57273 -1.64018 -0.220519 1.57273 -1.64018 -0.220519 1.57473 -1.64018 -0.520519 1.57473 -1.61818 -0.520519 1.57473 -1.62243 -0.220519 1.5694 -1.61876 -0.220519 1.56573 -1.61876 -0.520519 1.56573 -1.61418 -0.520519 1.56573 -1.60593 -0.220519 1.57273 -1.60593 -0.520519 1.5694 -1.60593 -0.520519 1.57273 -1.61018 -0.220519 1.57273 -1.61018 -0.220519 1.57473 -1.61018 -0.520519 1.57273 -1.60118 -0.220519 1.57473 -1.61018 -0.520519 1.57473 -1.60118 -0.520519 1.57473 -1.59918 -0.220519 1.57273 -1.60007 -0.520535 1.57443 -1.59918 -0.220519 1.56373 -1.59918 -0.520519 1.56373 -1.60118 -0.520519 1.56798 -1.60818 -0.520519 1.56432 -1.60818 -0.520519 1.55973 -1.60451 -0.520519 1.55148 -1.60118 -0.520519 1.55148 -1.60118 -0.520519 1.55573 -1.60118 -0.220519 1.55573 -1.59918 -0.220519 1.55573 -1.59918 -0.220519 1.53373 -1.60118 -0.220519 1.53373 -1.60118 -0.520519 1.53373 -1.60451 -0.220519 1.53798 -1.60451 -0.520519 1.53798 -1.60818 -0.220519 1.53432 -1.60818 -0.220519 1.52973 -1.60818 -0.220519 1.52515 -1.60818 -0.520519 1.52515 -1.60451 -0.520519 1.52148 -1.60118 -0.520519 1.52148 -1.60118 -0.220519 1.52573 -1.59918 -0.220519 1.52573 -1.59918 -0.220519 1.51673 -1.60027 -0.220523 1.51473 -1.59918 -0.520519 1.51673 -1.61018 -0.520519 1.51473 -1.61018 -0.220519 1.51673 -1.60593 -0.220519 1.51673 -1.61018 -0.520519 1.51673 -1.60593 -0.520519 1.52007 -1.60959 -0.220519 1.52373 -1.61418 -0.220519 1.52373 -1.61876 -0.520519 1.52373 -1.62243 -0.220519 1.51673 -1.62243 -0.520519 1.51673 -1.61818 -0.220519 1.51673 -1.64018 -0.220519 1.51673 -1.64018 -0.520519 1.51673 -1.63593 -0.520519 1.51673 -1.63593 -0.220519 1.52007 -1.64876 -0.220519 1.52373 -1.65243 -0.220519 1.52007 -1.64876 -0.520519 1.52373 -1.65243 -0.220519 1.51673 -1.65243 -0.520519 1.51673 -1.64818 -0.220519 1.51673 -1.64818 -0.520519 1.51473 -1.65918 -0.220519 1.51673 -1.65771 -0.52052 1.51473 -1.65918 -0.220519 1.52573 -1.65718 -0.220519 1.52573 -1.65918 -0.520519 1.52573 -1.65718 -0.220519 1.52148 -1.65718 -0.520519 1.52573 -1.65018 -0.520519 1.52973 -1.65018 -0.220519 1.53432 -1.65384 -0.520519 1.53798 -1.65718 -0.220519 1.53373 -1.65718 -0.520519 1.53798 -1.65718 -0.520519 1.53373 -1.65918 -0.220519 1.53373 -1.65718 -0.220519 1.55573 -1.65718 -0.220519 1.53798 -1.65018 -0.220519 1.55515 -1.65018 -0.220519 1.55973 -1.64876 -0.220519 1.56573 -1.65018 -0.220519 1.56432 -1.65718 -0.220519 1.56798 -1.65384 -0.220519 1.56798 -1.65718 -0.220519 1.56373 -1.65718 -0.220519 1.57473 -1.65243 -0.220519 1.57273 -1.64818 -0.220519 1.57273 -1.64418 -0.220519 1.56573 -1.63593 -0.220519 1.5694 -1.62243 -0.220519 1.57273 -1.61818 -0.220519 1.57473 -1.61818 -0.220519 1.57273 -1.61418 -0.220519 1.56573 -1.60451 -0.220519 1.56798 -1.60959 -0.220519 1.56573 -1.60818 -0.220519 1.56432 -1.60818 -0.220519 1.55973 -1.61496 -0.220519 1.55344 -1.60593 -0.220519 1.5694 -1.60118 -0.220519 1.56798 -1.60118 -0.220519 1.56373 -1.59975 -0.220617 1.57419 -1.60818 -0.220519 1.55515 -1.60451 -0.220519 1.55148 -1.60118 -0.220519 1.55148 -1.60118 -0.220519 1.53798 -1.60451 -0.220519 1.52148 -1.60593 -0.220519 1.52007 -1.60118 -0.220519 1.52148 -1.61876 -0.220519 1.52373 -1.62243 -0.220519 1.52007 -1.6324 -0.220519 1.52503 -1.64018 -0.220519 1.51473 -1.63593 -0.220519 1.51673 -1.64418 -0.220519 1.52373 -1.65384 -0.220519 1.52148 -1.65018 -0.220519 1.52515 -1.65018 -0.220519 1.52973 -1.65384 -0.220519 1.53798 -1.63959 -0.220519 1.52373 -1.61642 -0.220519 1.55373 -1.64918 -0.220519 1.54766 -1.64616 -0.220519 1.53878 -1.64918 -0.520519 1.5418 -1.64903 -0.520519 1.54781 -1.6434 -0.520519 1.55344 -1.64118 -0.220519 1.55373 -1.64332 -0.220519 1.55352 -1.63835 -0.520504 1.55646 -1.63925 -0.220755 1.55438 -1.6397 -0.520496 1.55409 -1.63818 -0.220519 1.55749 -1.63789 -0.520519 1.55895 -1.63789 -0.220519 1.55895 -1.63211 -0.220519 1.56473 -1.6324 -0.520519 1.56444 -1.62625 -0.520519 1.56473 -1.62666 -0.220519 1.56473 -1.62596 -0.220519 1.56444 -1.62047 -0.520519 1.55895 -1.62047 -0.220519 1.55895 -1.62005 -0.220527 1.55647 -1.61865 -0.52052 1.55403 -1.61845 -0.220535 1.554 -1.61496 -0.520519 1.55344 -1.6093 -0.220519 1.54778 -1.60918 -0.220519 1.5418 -1.60918 -0.520519 1.54766 -1.6093 -0.520519 1.54168 -1.61496 -0.520519 1.53603 -1.61496 -0.220519 1.53603 -1.61566 -0.220519 1.53573 -1.61987 -0.220755 1.53422 -1.61566 -0.520519 1.53573 -1.61911 -0.519983 1.53504 -1.62018 -0.220519 1.53198 -1.62013 -0.513602 1.53274 -1.62047 -0.220519 1.53051 -1.62626 -0.220519 1.52473 -1.62047 -0.520519 1.53051 -1.62666 -0.520519 1.52473 -1.6321 -0.520519 1.52473 -1.63789 -0.220519 1.53051 -1.63789 -0.520519 1.53051 -1.64118 -0.520519 1.53573 -1.63818 -0.220519 1.53198 -1.63903 -0.52038 1.53492 -1.63896 -0.220589 1.53487 -1.64118 -0.220519 1.53573 -1.61174 -0.221049 1.53211 -1.6138 -0.220532 1.5332 -1.61746 -0.220594 1.52806 -1.61693 -0.220426 1.53182 -1.61126 -0.370519 1.53137 -1.61088 -0.220533 1.52924 -1.61257 -0.220607 1.5267 -1.61193 -0.52052 1.53258 -1.61107 -0.520506 1.52823 -1.61677 -0.520567 1.53221 -1.61676 -0.520585 1.52731 -1.61373 -0.52051 1.52626 -1.64585 -0.220891 1.56298 -1.64271 -0.220557 1.55661 -1.64728 -0.22061 1.55768 -1.64202 -0.220707 1.56242 -1.64059 -0.220528 1.55924 -1.64768 -0.520473 1.56007 -1.64406 -0.370128 1.55636 -1.64072 -0.520634 1.56075 -1.64525 -0.5204 1.56313 -1.64616 -0.520441 1.5566 -1.64201 -0.520363 1.55707 -1.61667 -0.220512 1.5621 -1.61259 -0.220567 1.56287 -1.61487 -0.220699 1.55631 -1.61071 -0.220744 1.55937 -1.61348 -0.520445 1.56309 -1.61756 -0.220564 1.55863 -1.61582 -0.520406 1.56281 -1.61495 -0.520443 1.55621 -1.61211 -0.220625 1.55693 -1.61773 -0.520518 1.55988 -1.6107 -0.520501 1.55944 -1.6114 -0.520079 1.56173 -1.64664 -0.220506 1.53233 -1.64644 -0.220535 1.52674 -1.64123 -0.220528 1.53173 -1.64311 -0.220777 1.5265 -1.64414 -0.354699 1.53285 -1.64332 -0.520442 1.52638 -1.64192 -0.520499 1.53277 -1.641 -0.221026 1.52809 -1.64729 -0.520452 1.53131 -1.647 -0.520516 1.52751 -1.64116 -0.520502 1.52802 -1.6434 -0.541812 1.51473 -1.6434 -0.541812 1.21473 -1.65918 -0.561519 1.21473 -1.65718 -0.543769 1.21473 -1.65718 -0.557269 1.21473 -1.65718 -0.539519 1.21473 -1.65018 -0.530933 1.21473 -1.65718 -0.531519 1.21473 -1.65243 -0.525855 1.21473 -1.63959 -0.529519 1.21473 -1.63593 -0.525855 1.21473 -1.62243 -0.525855 1.21473 -1.63593 -0.522519 1.21473 -1.62243 -0.522519 1.21473 -1.61418 -0.529519 1.21473 -1.60451 -0.527269 1.21473 -1.60818 -0.530933 1.21473 -1.60818 -0.535519 1.21473 -1.60593 -0.522519 1.21473 -1.59918 -0.531519 1.21473 -1.61018 -0.522519 1.21473 -1.60818 -0.540105 1.21473 -1.60451 -0.543769 1.21473 -1.60451 -0.557269 1.21473 -1.60118 -0.561519 1.21473 -1.60118 -0.543769 1.21473 -1.60818 -0.570105 1.21473 -1.60451 -0.573769 1.21473 -1.60593 -0.575183 1.21473 -1.60118 -0.569519 1.21473 -1.59918 -0.569519 1.21473 -1.60593 -0.578519 1.21473 -1.61018 -0.580519 1.21473 -1.61418 -0.571519 1.21473 -1.62625 -0.570518 1.21473 -1.63593 -0.575183 1.21473 -1.63959 -0.571519 1.21473 -1.62243 -0.578519 1.21473 -1.64018 -0.580519 1.21473 -1.61818 -0.580519 1.21473 -1.64418 -0.571519 1.21473 -1.65018 -0.565519 1.21473 -1.65018 -0.560933 1.21473 -1.65384 -0.573769 1.21473 -1.65384 -0.557269 1.21473 -1.65018 -0.540105 1.21473 -1.61642 -0.559519 1.21473 -1.64876 -0.571519 1.21473 -1.62018 -0.538519 1.21473 -1.61876 -0.529519 1.21473 -1.65718 -0.561519 1.51473 -1.65718 -0.561519 1.21473 -1.65018 -0.560933 1.51473 -1.65018 -0.570105 1.21473 -1.65384 -0.573769 1.51473 -1.65718 -0.569519 1.51473 -1.65718 -0.573769 1.21473 -1.65718 -0.569519 1.21473 -1.65718 -0.580519 1.51473 -1.65883 -0.579618 1.24009 -1.65718 -0.580519 1.21473 -1.64818 -0.580519 1.51473 -1.64818 -0.580519 1.21473 -1.64818 -0.578519 1.21473 -1.65243 -0.578519 1.21473 -1.64876 -0.571519 1.51473 -1.65243 -0.575183 1.21473 -1.63593 -0.578519 1.21473 -1.64018 -0.578519 1.21473 -1.64018 -0.578519 1.51473 -1.61818 -0.578519 1.21473 -1.61818 -0.578519 1.51473 -1.62243 -0.578519 1.51473 -1.62243 -0.575183 1.21473 -1.61876 -0.571519 1.21473 -1.60959 -0.571519 1.51473 -1.60959 -0.571519 1.21473 -1.60593 -0.578519 1.51473 -1.61018 -0.578519 1.21473 -1.61018 -0.578519 1.51473 -1.61018 -0.580519 1.51473 -1.60118 -0.580519 1.51473 -1.60056 -0.580432 1.21472 -1.59918 -0.578519 1.51473 -1.59918 -0.578519 1.21473 -1.59918 -0.569519 1.51473 -1.60118 -0.573769 1.21473 -1.60451 -0.573769 1.51473 -1.60818 -0.565519 1.21473 -1.60818 -0.565519 1.51473 -1.60818 -0.560933 1.21473 -1.60118 -0.557269 1.21473 -1.60118 -0.561519 1.51473 -1.59918 -0.561519 1.21473 -1.59918 -0.561519 1.51473 -1.59918 -0.539519 1.21473 -1.59918 -0.539519 1.51473 -1.60118 -0.539519 1.51473 -1.60118 -0.539519 1.21473 -1.60118 -0.543769 1.51473 -1.60118 -0.527269 1.21473 -1.60118 -0.531519 1.51473 -1.60118 -0.531519 1.21473 -1.59918 -0.531519 1.51473 -1.60059 -0.520519 1.51473 -1.59918 -0.522519 1.51473 -1.59918 -0.522519 1.21473 -1.60026 -0.520521 1.21473 -1.61018 -0.522519 1.51473 -1.60593 -0.522519 1.51473 -1.60593 -0.525855 1.51473 -1.60593 -0.525855 1.21473 -1.60959 -0.529519 1.21473 -1.61418 -0.529519 1.51473 -1.62243 -0.525855 1.51473 -1.61818 -0.522519 1.21473 -1.61818 -0.520519 1.21473 -1.61818 -0.520519 1.51473 -1.64018 -0.520519 1.51473 -1.64018 -0.522519 1.21473 -1.64018 -0.522519 1.51473 -1.63959 -0.529519 1.51473 -1.64418 -0.529519 1.21473 -1.64876 -0.529519 1.21473 -1.65243 -0.525855 1.51473 -1.65243 -0.522519 1.51473 -1.64818 -0.522519 1.51473 -1.65243 -0.522519 1.21473 -1.64818 -0.522519 1.21473 -1.64818 -0.520519 1.21473 -1.6585 -0.521106 1.51471 -1.65718 -0.531519 1.51473 -1.65718 -0.527269 1.51473 -1.65718 -0.527269 1.21473 -1.65384 -0.527269 1.21473 -1.65384 -0.527269 1.51473 -1.65018 -0.530933 1.51473 -1.65018 -0.535519 1.21473 -1.65384 -0.543769 1.21473 -1.65718 -0.539519 1.51473 -1.65918 -0.539519 1.51473 -1.65918 -0.561519 1.51473 -1.65718 -0.557269 1.51473 -1.65718 -0.543769 1.51473 -1.65384 -0.543769 1.51473 -1.65384 -0.557269 1.51473 -1.65018 -0.565519 1.51473 -1.65718 -0.573769 1.51473 -1.65903 -0.579384 1.51473 -1.65243 -0.575183 1.51473 -1.65243 -0.578519 1.51473 -1.64818 -0.578519 1.51473 -1.64418 -0.571519 1.51473 -1.63959 -0.571519 1.51473 -1.63593 -0.575183 1.51473 -1.62243 -0.575183 1.51473 -1.63593 -0.578519 1.51473 -1.61818 -0.580519 1.51473 -1.64018 -0.580519 1.51473 -1.61876 -0.571519 1.51473 -1.61418 -0.571519 1.51473 -1.60818 -0.570105 1.51473 -1.60818 -0.560933 1.51473 -1.60593 -0.575183 1.51473 -1.60118 -0.573769 1.51473 -1.60118 -0.569519 1.51473 -1.59997 -0.58005 1.51463 -1.60451 -0.557269 1.51473 -1.60818 -0.540105 1.51473 -1.60451 -0.543769 1.51473 -1.60118 -0.557269 1.51473 -1.60818 -0.535519 1.51473 -1.60451 -0.527269 1.51473 -1.60118 -0.527269 1.51473 -1.60959 -0.529519 1.51473 -1.61876 -0.529519 1.51473 -1.63593 -0.525855 1.51473 -1.62243 -0.522519 1.51473 -1.61818 -0.522519 1.51473 -1.63593 -0.522519 1.51473 -1.64418 -0.529519 1.51473 -1.64876 -0.529519 1.51473 -1.65018 -0.535519 1.51473 -1.65018 -0.540105 1.51473 -1.65018 -0.570105 1.51473 -1.60818 -0.530933 1.51473 -1.64918 -0.548004 1.51473 -1.64889 -0.547297 1.51473 -1.64918 -0.547586 1.21473 -1.64909 -0.547628 1.31453 -1.64909 -0.547628 1.29595 -1.64909 -0.547628 1.30617 -1.64892 -0.553709 1.21473 -1.64918 -0.553034 1.21473 -1.6434 -0.559226 1.21473 -1.64918 -0.553455 1.51473 -1.64269 -0.559519 1.51473 -1.64269 -0.559519 1.21473 -1.63905 -0.560129 1.51437 -1.6391 -0.56031 1.21499 -1.63818 -0.563277 1.51473 -1.63789 -0.564741 1.51473 -1.63818 -0.562519 1.21473 -1.63169 -0.570519 1.21473 -1.63514 -0.567484 1.21473 -1.63211 -0.570518 1.51473 -1.62666 -0.570519 1.51473 -1.62596 -0.570226 1.51473 -1.62005 -0.561886 1.21475 -1.62047 -0.564741 1.51473 -1.62047 -0.564741 1.21473 -1.61831 -0.559731 1.51473 -1.61996 -0.562117 1.51472 -1.61566 -0.559519 1.51473 -1.61496 -0.559226 1.21473 -1.61496 -0.559226 1.51473 -1.60918 -0.547586 1.51473 -1.60936 -0.553628 1.51473 -1.60918 -0.553452 1.21473 -1.60944 -0.547329 1.21473 -1.61496 -0.541812 1.51473 -1.61496 -0.541812 1.21473 -1.61642 -0.541519 1.21473 -1.61994 -0.53978 1.51472 -1.61742 -0.541384 1.51473 -1.61889 -0.541023 1.21483 -1.62047 -0.536297 1.21473 -1.62047 -0.536297 1.51473 -1.62625 -0.53052 1.51473 -1.62666 -0.530519 1.21473 -1.62596 -0.530812 1.21473 -1.6324 -0.530812 1.51473 -1.63211 -0.530519 1.21473 -1.63789 -0.536297 1.51473 -1.63789 -0.536297 1.21473 -1.63873 -0.540343 1.21493 -1.63889 -0.540704 1.51463 -1.63818 -0.537762 1.51473 -1.64062 -0.54141 1.21473 -1.61394 -0.539031 1.21473 -1.6169 -0.537704 1.51474 -1.61256 -0.532424 1.51473 -1.61527 -0.532201 1.5147 -1.6176 -0.534767 1.51462 -1.61074 -0.535532 1.51473 -1.61394 -0.538966 1.51471 -1.61418 -0.532184 1.2702 -1.61122 -0.533755 1.21486 -1.61154 -0.537778 1.51466 -1.6164 -0.532775 1.21483 -1.6173 -0.537139 1.21478 -1.61115 -0.537393 1.21476 -1.64701 -0.56352 1.51467 -1.64379 -0.562001 1.51473 -1.64655 -0.567968 1.21477 -1.64418 -0.568955 1.5147 -1.64131 -0.567653 1.51466 -1.64753 -0.566764 1.51465 -1.64481 -0.562109 1.21493 -1.64087 -0.564264 1.51464 -1.64771 -0.564735 1.2148 -1.64335 -0.569087 1.21463 -1.64204 -0.562735 1.21515 -1.64046 -0.565654 1.21489 -1.61119 -0.563438 1.51467 -1.61587 -0.562455 1.51458 -1.61107 -0.567135 1.21494 -1.61222 -0.568654 1.51457 -1.61604 -0.568468 1.51463 -1.61767 -0.565895 1.51462 -1.61105 -0.564005 1.21498 -1.61712 -0.563579 1.21475 -1.61628 -0.56849 1.21476 -1.61357 -0.562082 1.21478 -1.64071 -0.536561 1.21474 -1.64554 -0.532254 1.51479 -1.64062 -0.534244 1.51475 -1.64328 -0.538872 1.51464 -1.64625 -0.538313 1.51461 -1.64742 -0.534263 1.5146 -1.64116 -0.53691 1.33895 -1.64191 -0.533396 1.3911 -1.64769 -0.536348 1.21509 -1.64221 -0.532526 1.21488 -1.64587 -0.532424 1.215 -1.64406 -0.538972 1.2148 -1.64918 -0.520519 1.1818 -1.64193 -0.520519 1.17573 -1.6434 -0.220519 1.17603 -1.65718 -0.520519 1.19573 -1.65718 -0.520519 1.17373 -1.65718 -0.520519 1.19148 -1.65018 -0.520519 1.16973 -1.65018 -0.520519 1.16515 -1.65718 -0.520519 1.16148 -1.64818 -0.520519 1.15673 -1.64876 -0.520519 1.16373 -1.63959 -0.520519 1.16373 -1.63593 -0.520519 1.16007 -1.62243 -0.520519 1.16007 -1.61876 -0.520519 1.16373 -1.62243 -0.520519 1.15673 -1.63593 -0.520519 1.15673 -1.61818 -0.520519 1.15473 -1.60818 -0.520519 1.16515 -1.60818 -0.520519 1.16973 -1.60593 -0.520519 1.16007 -1.59918 -0.520519 1.16573 -1.60118 -0.520519 1.16573 -1.61018 -0.520519 1.15673 -1.60593 -0.520519 1.15673 -1.60451 -0.520519 1.17798 -1.60451 -0.520519 1.19148 -1.60118 -0.520519 1.19573 -1.60118 -0.520519 1.17798 -1.60818 -0.520519 1.19973 -1.60959 -0.520519 1.20573 -1.60818 -0.520519 1.20432 -1.60451 -0.520519 1.20798 -1.60593 -0.520519 1.2094 -1.60118 -0.520519 1.20798 -1.61418 -0.520519 1.20573 -1.61876 -0.520519 1.20573 -1.63959 -0.520519 1.20573 -1.63593 -0.520519 1.2094 -1.63593 -0.520519 1.21273 -1.62243 -0.520519 1.21273 -1.64018 -0.520519 1.21273 -1.64876 -0.520519 1.20573 -1.65018 -0.520519 1.20432 -1.65018 -0.520519 1.19973 -1.65018 -0.520519 1.19515 -1.65243 -0.520519 1.21273 -1.63818 -0.520519 1.19749 -1.60959 -0.520519 1.16373 -1.65384 -0.520519 1.17798 -1.65718 -0.220519 1.19573 -1.65384 -0.520519 1.19148 -1.65718 -0.220519 1.20798 -1.65384 -0.520519 1.20798 -1.65718 -0.520519 1.20798 -1.65718 -0.220519 1.20373 -1.65718 -0.520519 1.20373 -1.65918 -0.220519 1.20373 -1.65918 -0.220519 1.21273 -1.65805 -0.22052 1.21473 -1.6583 -0.520521 1.21473 -1.64818 -0.220519 1.21473 -1.64818 -0.220519 1.21273 -1.64818 -0.520519 1.21273 -1.65243 -0.220519 1.21273 -1.65243 -0.520519 1.2094 -1.64876 -0.220519 1.20573 -1.64418 -0.520519 1.20573 -1.64018 -0.220519 1.21273 -1.64018 -0.520519 1.21473 -1.61818 -0.520519 1.21273 -1.62243 -0.220519 1.2094 -1.62243 -0.520519 1.2094 -1.61876 -0.220519 1.20573 -1.61418 -0.220519 1.20573 -1.60593 -0.520519 1.21273 -1.61018 -0.520519 1.21273 -1.61018 -0.220519 1.21473 -1.61018 -0.520519 1.21473 -1.59918 -0.520519 1.20373 -1.60118 -0.520519 1.20373 -1.60118 -0.220519 1.20798 -1.60818 -0.520519 1.19515 -1.60118 -0.520519 1.19148 -1.60118 -0.220519 1.19573 -1.59918 -0.520519 1.19573 -1.59918 -0.220519 1.19573 -1.59918 -0.220519 1.17373 -1.59918 -0.520519 1.17373 -1.60118 -0.220519 1.17373 -1.60118 -0.520519 1.17373 -1.60818 -0.520519 1.17432 -1.60451 -0.220519 1.16148 -1.60451 -0.520519 1.16148 -1.60118 -0.220519 1.16148 -1.60118 -0.520519 1.16148 -1.60118 -0.220519 1.16573 -1.59918 -0.220519 1.15673 -1.60118 -0.220519 1.15473 -1.60118 -0.520519 1.15473 -1.6001 -0.497317 1.15507 -1.59972 -0.225122 1.15546 -1.59918 -0.520519 1.15673 -1.61018 -0.520519 1.15473 -1.61018 -0.220519 1.15673 -1.61418 -0.520519 1.16373 -1.61876 -0.220519 1.16373 -1.61818 -0.220519 1.15473 -1.61818 -0.520519 1.15673 -1.64018 -0.220519 1.15673 -1.64018 -0.520519 1.15473 -1.64018 -0.520519 1.15673 -1.64418 -0.520519 1.16373 -1.65243 -0.220519 1.16007 -1.65243 -0.520519 1.16007 -1.65243 -0.520519 1.15673 -1.64818 -0.220519 1.15473 -1.65718 -0.220519 1.15473 -1.65877 -0.520577 1.15544 -1.65918 -0.520519 1.15673 -1.64818 -0.520519 1.15473 -1.65918 -0.520519 1.16573 -1.65918 -0.220519 1.16573 -1.65718 -0.220519 1.16573 -1.65718 -0.520519 1.16573 -1.65384 -0.520519 1.16148 -1.65018 -0.220519 1.16515 -1.65018 -0.520519 1.17432 -1.65718 -0.220519 1.17798 -1.65718 -0.220519 1.17373 -1.65718 -0.520519 1.17798 -1.65918 -0.220519 1.17373 -1.65918 -0.220519 1.19573 -1.65718 -0.220519 1.19148 -1.65018 -0.220519 1.19515 -1.65018 -0.220519 1.19973 -1.65384 -0.220519 1.20798 -1.65243 -0.220519 1.2094 -1.64418 -0.220519 1.20573 -1.63959 -0.220519 1.20573 -1.63593 -0.220519 1.2094 -1.62243 -0.220519 1.21273 -1.63593 -0.220519 1.21273 -1.61818 -0.220519 1.21273 -1.61305 -0.220536 1.20319 -1.60451 -0.220519 1.20798 -1.60818 -0.220519 1.20432 -1.60818 -0.220519 1.19973 -1.60593 -0.220519 1.2094 -1.59918 -0.220519 1.20373 -1.60118 -0.220519 1.20373 -1.61018 -0.220519 1.21273 -1.60593 -0.220519 1.21273 -1.59946 -0.220519 1.21392 -1.60818 -0.220519 1.19515 -1.60451 -0.220519 1.19148 -1.60451 -0.220519 1.17798 -1.60118 -0.220519 1.19148 -1.60118 -0.220519 1.17798 -1.60818 -0.220519 1.16973 -1.60818 -0.220519 1.16515 -1.60593 -0.220519 1.16007 -1.59918 -0.220519 1.16573 -1.60593 -0.220519 1.15673 -1.61018 -0.220519 1.15473 -1.60959 -0.220519 1.16373 -1.61418 -0.220519 1.16373 -1.62243 -0.220519 1.16007 -1.62626 -0.220519 1.16473 -1.63593 -0.220519 1.16007 -1.6324 -0.220519 1.16503 -1.63789 -0.220519 1.17051 -1.64018 -0.220519 1.15473 -1.62243 -0.220519 1.15673 -1.61818 -0.220519 1.15673 -1.63593 -0.220519 1.15673 -1.63959 -0.220519 1.16373 -1.64418 -0.220519 1.16373 -1.65384 -0.220519 1.16148 -1.64876 -0.220519 1.16373 -1.65018 -0.220519 1.16973 -1.65018 -0.220519 1.17432 -1.65243 -0.220519 1.15673 -1.65718 -0.220519 1.16148 -1.64818 -0.220519 1.15673 -1.65918 -0.220519 1.15673 -1.65384 -0.220519 1.17798 -1.60959 -0.220519 1.20573 -1.65018 -0.220519 1.20432 -1.60818 -0.220519 1.17432 -1.64918 -0.220519 1.18766 -1.64895 -0.220519 1.18157 -1.65384 -0.220519 1.19148 -1.64902 -0.520519 1.18782 -1.64329 -0.220519 1.19355 -1.6434 -0.520519 1.19344 -1.64091 -0.220528 1.19386 -1.64118 -0.520519 1.19373 -1.63818 -0.220519 1.19825 -1.63924 -0.520414 1.19436 -1.63846 -0.220512 1.19539 -1.63789 -0.220519 1.19895 -1.63789 -0.520519 1.19895 -1.63215 -0.423044 1.20462 -1.63215 -0.409108 1.20462 -1.63169 -0.520519 1.20473 -1.6324 -0.520519 1.20444 -1.63215 -0.437908 1.20462 -1.63211 -0.220519 1.20473 -1.62596 -0.220519 1.20444 -1.62625 -0.520519 1.20473 -1.62047 -0.520519 1.19895 -1.62047 -0.220519 1.19895 -1.61566 -0.220519 1.19373 -1.62005 -0.220527 1.19647 -1.62021 -0.520519 1.19844 -1.61935 -0.52047 1.19441 -1.61855 -0.220799 1.19403 -1.61642 -0.520519 1.19373 -1.61496 -0.520519 1.19344 -1.61496 -0.220519 1.19344 -1.60918 -0.220518 1.1818 -1.60947 -0.220519 1.18795 -1.60918 -0.520519 1.18766 -1.60944 -0.520519 1.18154 -1.61496 -0.520519 1.17603 -1.61642 -0.220519 1.17573 -1.61566 -0.520519 1.17573 -1.61952 -0.221035 1.17479 -1.6194 -0.520503 1.17508 -1.62022 -0.300414 1.17092 -1.62022 -0.282995 1.17092 -1.62022 -0.312491 1.17092 -1.62047 -0.220519 1.17051 -1.62018 -0.220519 1.17273 -1.62666 -0.520519 1.16473 -1.62035 -0.520519 1.17063 -1.6321 -0.520519 1.16473 -1.63169 -0.220519 1.16473 -1.63789 -0.520519 1.17051 -1.63818 -0.220519 1.17197 -1.641 -0.220531 1.17563 -1.63921 -0.520191 1.17508 -1.63884 -0.221539 1.17456 -1.61493 -0.22057 1.16632 -1.6152 -0.220739 1.17295 -1.6123 -0.220519 1.16683 -1.61728 -0.220508 1.16818 -1.61068 -0.220512 1.16914 -1.61744 -0.220527 1.17088 -1.61195 -0.220523 1.17241 -1.61633 -0.520366 1.17247 -1.61134 -0.392394 1.17145 -1.61762 -0.520473 1.16963 -1.61662 -0.520508 1.1673 -1.61375 -0.520318 1.1663 -1.6107 -0.520612 1.16859 -1.61296 -0.520139 1.17303 -1.64767 -0.220597 1.20003 -1.64112 -0.220744 1.19796 -1.64445 -0.220618 1.19611 -1.64107 -0.221066 1.20138 -1.64491 -0.220646 1.20326 -1.64718 -0.52032 1.19791 -1.64317 -0.520211 1.19644 -1.64765 -0.520474 1.20066 -1.64335 -0.520469 1.2032 -1.64059 -0.520428 1.19967 -1.61774 -0.220568 1.19896 -1.61315 -0.220663 1.19624 -1.6106 -0.220606 1.19993 -1.61748 -0.520453 1.20073 -1.61325 -0.52013 1.19631 -1.61409 -0.387121 1.20299 -1.61627 -0.220604 1.20239 -1.61698 -0.520402 1.19755 -1.61089 -0.5204 1.19853 -1.6111 -0.52028 1.20129 -1.61506 -0.520506 1.20328 -1.64071 -0.520486 1.17114 -1.64407 -0.520455 1.16623 -1.64583 -0.220719 1.16665 -1.64151 -0.220611 1.16736 -1.64112 -0.220491 1.17138 -1.6476 -0.220543 1.17056 -1.64421 -0.220566 1.17326 -1.64165 -0.52045 1.16734 -1.64692 -0.52045 1.17195 -1.64698 -0.520453 1.16754 -1.64418 -0.520449 1.17314 -0.5934 -0.121812 1.04973 -0.5934 -0.121812 1.67973 -0.592924 -0.121571 1.36377 -0.609179 -0.119519 1.04973 -0.603843 -0.137269 1.04973 -0.603843 -0.123769 1.04973 -0.600179 -0.120105 1.04973 -0.600179 -0.114999 1.04973 -0.598764 -0.109519 1.04973 -0.594698 -0.109519 1.04973 -0.594179 -0.109819 1.04973 -0.585929 -0.105855 1.04973 -0.572429 -0.105855 1.04973 -0.572429 -0.102519 1.04973 -0.585929 -0.102519 1.04973 -0.563659 -0.109519 1.04973 -0.564179 -0.109819 1.04973 -0.554514 -0.107269 1.04973 -0.559593 -0.109519 1.04973 -0.558179 -0.114999 1.04973 -0.558479 -0.115519 1.04973 -0.558179 -0.116039 1.04973 -0.555929 -0.105855 1.04973 -0.555929 -0.102519 1.04973 -0.560179 -0.100519 1.04973 -0.554514 -0.137269 1.04973 -0.554514 -0.123769 1.04973 -0.551179 -0.137269 1.04973 -0.558179 -0.150105 1.04973 -0.558179 -0.146039 1.04973 -0.559593 -0.151519 1.04973 -0.554514 -0.153769 1.04973 -0.555929 -0.155183 1.04973 -0.555929 -0.158519 1.04973 -0.560179 -0.158519 1.04973 -0.564179 -0.151219 1.04973 -0.568764 -0.151519 1.04973 -0.585929 -0.155183 1.04973 -0.585929 -0.158519 1.04973 -0.572429 -0.158519 1.04973 -0.568179 -0.158519 1.04973 -0.590179 -0.158519 1.04973 -0.593659 -0.151519 1.04973 -0.589593 -0.151519 1.04973 -0.594698 -0.151519 1.04973 -0.600179 -0.150105 1.04973 -0.600179 -0.146039 1.04973 -0.599879 -0.145519 1.04973 -0.600179 -0.140933 1.04973 -0.607179 -0.153769 1.04973 -0.598179 -0.158519 1.04973 -0.602429 -0.158519 1.04973 -0.600179 -0.110933 1.04973 -0.566422 -0.139519 1.04973 -0.598764 -0.151519 1.04973 -0.591936 -0.139519 1.04973 -0.566422 -0.121519 1.04973 -0.609179 -0.141519 1.04973 -0.607179 -0.141519 1.67973 -0.607179 -0.137269 1.67973 -0.607179 -0.141519 1.04973 -0.607179 -0.137269 1.04973 -0.603843 -0.137269 1.67973 -0.600179 -0.144999 1.67973 -0.600179 -0.144999 1.04973 -0.599879 -0.145519 1.67973 -0.600179 -0.150105 1.67973 -0.603843 -0.153769 1.67973 -0.603843 -0.153769 1.04973 -0.607179 -0.153769 1.67973 -0.607179 -0.149519 1.04973 -0.609179 -0.149519 1.67973 -0.609179 -0.149519 1.04973 -0.609179 -0.158519 1.67973 -0.608032 -0.160281 1.32609 -0.609179 -0.158519 1.04973 -0.608494 -0.159875 1.67973 -0.607179 -0.160519 1.04973 -0.609007 -0.159288 1.42542 -0.608592 -0.159839 1.04978 -0.598179 -0.160519 1.04973 -0.598179 -0.158519 1.67973 -0.602429 -0.155183 1.04973 -0.594179 -0.151219 1.04973 -0.589593 -0.151519 1.67973 -0.568179 -0.160519 1.04973 -0.568179 -0.158519 1.67973 -0.572429 -0.158519 1.67973 -0.572429 -0.155183 1.04973 -0.572429 -0.155183 1.67973 -0.564698 -0.151519 1.04973 -0.563659 -0.151519 1.04973 -0.559593 -0.151519 1.67973 -0.555929 -0.155183 1.67973 -0.555929 -0.158519 1.67973 -0.560179 -0.158519 1.67973 -0.560179 -0.160519 1.67973 -0.560179 -0.160519 1.04973 -0.550229 -0.160318 1.6797 -0.549734 -0.159763 1.07287 -0.550497 -0.160391 1.43065 -0.551179 -0.160519 1.67973 -0.551179 -0.160519 1.04973 -0.549179 -0.149519 1.04973 -0.551179 -0.149519 1.67973 -0.551179 -0.153769 1.67973 -0.551179 -0.149519 1.04973 -0.551179 -0.153769 1.04973 -0.558179 -0.146039 1.67973 -0.558479 -0.145519 1.67973 -0.558479 -0.145519 1.04973 -0.558179 -0.144999 1.04973 -0.558179 -0.140933 1.04973 -0.551179 -0.141519 1.67973 -0.551179 -0.141519 1.04973 -0.549179 -0.141519 1.67973 -0.549179 -0.119519 1.04973 -0.551179 -0.119519 1.67973 -0.551179 -0.119519 1.04973 -0.551179 -0.123769 1.67973 -0.551179 -0.123769 1.04973 -0.558179 -0.120105 1.04973 -0.558479 -0.115519 1.67973 -0.558179 -0.114999 1.67973 -0.558179 -0.110933 1.04973 -0.554514 -0.107269 1.67973 -0.551179 -0.107269 1.67973 -0.551179 -0.107269 1.04973 -0.551179 -0.111519 1.04973 -0.549179 -0.102519 1.67973 -0.551179 -0.100519 1.04973 -0.549179 -0.102519 1.04973 -0.551179 -0.100519 1.67973 -0.549307 -0.101838 1.34886 -0.549982 -0.100809 1.04973 -0.560179 -0.102519 1.04973 -0.555929 -0.102519 1.67973 -0.564179 -0.109819 1.67973 -0.564698 -0.109519 1.04973 -0.568764 -0.109519 1.04973 -0.568179 -0.102519 1.04973 -0.568179 -0.100519 1.04973 -0.590179 -0.100519 1.67973 -0.590179 -0.102519 1.04973 -0.589593 -0.109519 1.04973 -0.594179 -0.109819 1.67973 -0.593659 -0.109519 1.04973 -0.602429 -0.105855 1.67973 -0.602429 -0.105855 1.04973 -0.602429 -0.102519 1.04973 -0.598179 -0.102519 1.04973 -0.608531 -0.10119 1.04973 -0.609021 -0.10178 1.33724 -0.609179 -0.102519 1.04973 -0.608107 -0.100817 1.40637 -0.609179 -0.111519 1.67973 -0.609179 -0.111519 1.04973 -0.607179 -0.111519 1.04973 -0.607179 -0.107269 1.67973 -0.607179 -0.107269 1.04973 -0.603843 -0.107269 1.04973 -0.600179 -0.110933 1.67973 -0.599879 -0.115519 1.04973 -0.600179 -0.116039 1.04973 -0.600179 -0.116039 1.67973 -0.607179 -0.123769 1.04973 -0.607179 -0.119519 1.67973 -0.607179 -0.119519 1.04973 -0.609179 -0.119519 1.67973 -0.609179 -0.141519 1.67973 -0.607179 -0.123769 1.67973 -0.600179 -0.146039 1.67973 -0.598764 -0.151519 1.67973 -0.602429 -0.155183 1.67973 -0.607179 -0.149519 1.67973 -0.602429 -0.158519 1.67973 -0.594698 -0.151519 1.67973 -0.594179 -0.151219 1.67973 -0.593659 -0.151519 1.67973 -0.585929 -0.155183 1.67973 -0.568764 -0.151519 1.67973 -0.585929 -0.158519 1.67973 -0.590179 -0.158519 1.67973 -0.568179 -0.160519 1.67973 -0.564698 -0.151519 1.67973 -0.564179 -0.151219 1.67973 -0.563659 -0.151519 1.67973 -0.558179 -0.150105 1.67973 -0.558179 -0.144999 1.67973 -0.558179 -0.140933 1.67973 -0.554514 -0.153769 1.67973 -0.554514 -0.137269 1.67973 -0.554514 -0.123769 1.67973 -0.551179 -0.137269 1.67973 -0.558179 -0.116039 1.67973 -0.559593 -0.109519 1.67973 -0.558179 -0.110933 1.67973 -0.555929 -0.105855 1.67973 -0.551179 -0.111519 1.67973 -0.549179 -0.111519 1.67973 -0.549984 -0.100825 1.67948 -0.560179 -0.102519 1.67973 -0.563659 -0.109519 1.67973 -0.564698 -0.109519 1.67973 -0.568764 -0.109519 1.67973 -0.572429 -0.105855 1.67973 -0.576664 -0.110519 1.67973 -0.585929 -0.105855 1.67973 -0.585929 -0.102519 1.67973 -0.572429 -0.102519 1.67973 -0.568179 -0.102519 1.67973 -0.590179 -0.102519 1.67973 -0.593659 -0.109519 1.67973 -0.589593 -0.109519 1.67973 -0.594698 -0.109519 1.67973 -0.603843 -0.107269 1.67973 -0.598764 -0.109519 1.67973 -0.600179 -0.114999 1.67973 -0.599879 -0.115519 1.67973 -0.600179 -0.120105 1.67973 -0.609179 -0.102519 1.67973 -0.607179 -0.111519 1.67973 -0.598179 -0.102519 1.67973 -0.602429 -0.102519 1.67973 -0.607179 -0.100519 1.67973 -0.608491 -0.100913 1.67948 -0.603843 -0.123769 1.67973 -0.587886 -0.116297 1.67973 -0.600179 -0.140933 1.67973 -0.591936 -0.139519 1.67973 -0.558179 -0.120105 1.67973 -0.599179 -0.128004 1.67973 -0.598886 -0.127297 1.67973 -0.599075 -0.127586 1.3661 -0.599179 -0.128004 1.04973 -0.598886 -0.127297 1.04973 -0.598886 -0.133741 1.67973 -0.599179 -0.133034 1.67973 -0.599179 -0.133034 1.04973 -0.598886 -0.133741 1.04973 -0.5934 -0.139226 1.04973 -0.5934 -0.139226 1.67973 -0.593112 -0.139416 1.3661 -0.589088 -0.140345 1.67958 -0.590536 -0.13962 1.33824 -0.589196 -0.140399 1.35542 -0.588326 -0.141687 1.41633 -0.588987 -0.140389 1.05073 -0.588179 -0.143276 1.67973 -0.588179 -0.143276 1.04973 -0.587886 -0.144741 1.04973 -0.587886 -0.144741 1.67973 -0.588127 -0.144265 1.36377 -0.582401 -0.150226 1.04973 -0.582401 -0.150226 1.67973 -0.582112 -0.150416 1.3661 -0.581693 -0.150519 1.67973 -0.581693 -0.150519 1.04973 -0.576664 -0.150519 1.67973 -0.575957 -0.150226 1.67973 -0.575957 -0.150226 1.04973 -0.576664 -0.150519 1.04973 -0.570472 -0.144741 1.67973 -0.570179 -0.144034 1.04973 -0.570472 -0.144741 1.04973 -0.570282 -0.144452 1.3661 -0.570179 -0.143276 1.67973 -0.569339 -0.14035 1.04979 -0.569303 -0.140339 1.67956 -0.570032 -0.141687 1.38405 -0.56782 -0.13962 1.39932 -0.570179 -0.142519 1.04973 -0.568926 -0.140209 1.32818 -0.566422 -0.139519 1.67973 -0.564957 -0.139226 1.04973 -0.564957 -0.139226 1.67973 -0.565303 -0.13944 1.3654 -0.559179 -0.133034 1.67973 -0.559472 -0.133741 1.67973 -0.559179 -0.133034 1.04973 -0.559472 -0.133741 1.04973 -0.559282 -0.133452 1.3661 -0.559472 -0.127297 1.04973 -0.559179 -0.128004 1.67973 -0.559472 -0.127297 1.67973 -0.559179 -0.128004 1.04973 -0.564957 -0.121812 1.04973 -0.565664 -0.121519 1.67973 -0.564957 -0.121812 1.67973 -0.567179 -0.121519 1.67973 -0.570179 -0.117762 1.04973 -0.570179 -0.117762 1.67973 -0.570032 -0.119351 1.29834 -0.569257 -0.120848 1.04982 -0.56782 -0.121418 1.41043 -0.568784 -0.120926 1.22997 -0.56955 -0.120451 1.67904 -0.570231 -0.116774 1.36377 -0.570472 -0.116297 1.67973 -0.570472 -0.116297 1.04973 -0.576275 -0.110609 1.36493 -0.575957 -0.110812 1.04973 -0.575957 -0.110812 1.67973 -0.576664 -0.110519 1.04973 -0.582401 -0.110812 1.04973 -0.581693 -0.110519 1.67973 -0.582401 -0.110812 1.67973 -0.581693 -0.110519 1.04973 -0.587886 -0.116297 1.04973 -0.588179 -0.117004 1.04973 -0.588076 -0.116586 1.3661 -0.588179 -0.117762 1.67973 -0.589125 -0.120792 1.0502 -0.588179 -0.118519 1.04973 -0.588371 -0.119541 1.34379 -0.591936 -0.121519 1.04973 -0.589056 -0.120595 1.3969 -0.58893 -0.120735 1.67963 -0.591936 -0.121519 1.67973 -0.590346 -0.121373 1.42605 -0.562876 -0.118818 1.04963 -0.567213 -0.117208 1.67943 -0.563794 -0.112116 1.67973 -0.56606 -0.112562 1.67973 -0.561057 -0.11718 1.67973 -0.561259 -0.113506 1.67972 -0.567479 -0.114441 1.67971 -0.561342 -0.113711 1.37733 -0.565149 -0.118992 1.67962 -0.561698 -0.117793 1.51593 -0.564617 -0.112183 1.41454 -0.563035 -0.112371 1.43324 -0.565588 -0.112495 1.1773 -0.560823 -0.115048 1.40843 -0.563588 -0.118867 1.51593 -0.566652 -0.117766 1.30626 -0.567502 -0.11581 1.29494 -0.567163 -0.113966 1.35528 -0.561765 -0.113003 1.04977 -0.564908 -0.118796 1.30508 -0.566448 -0.118275 1.04983 -0.564249 -0.112118 1.04973 -0.567656 -0.114163 1.04972 -0.560696 -0.115993 1.0497 -0.561167 -0.116946 1.20015 -0.59551 -0.148712 1.67972 -0.59555 -0.14235 1.04979 -0.592513 -0.142447 1.67967 -0.590745 -0.145596 1.67963 -0.590856 -0.14581 1.40883 -0.596415 -0.142898 1.67973 -0.591341 -0.14371 1.47183 -0.592724 -0.148621 1.67972 -0.594031 -0.14888 1.54113 -0.597739 -0.145767 1.6797 -0.592333 -0.148388 1.04974 -0.594617 -0.142183 1.61673 -0.593474 -0.142308 1.18951 -0.597201 -0.146929 1.35528 -0.596122 -0.148293 1.34327 -0.594248 -0.148835 1.18833 -0.597389 -0.144394 1.04974 -0.591369 -0.143214 1.04982 -0.591191 -0.147179 1.04973 -0.593763 -0.148905 1.04974 -0.597163 -0.147264 1.04974 -0.561328 -0.147593 1.04972 -0.560941 -0.144234 1.67975 -0.567643 -0.146367 1.67973 -0.562376 -0.148546 1.67975 -0.567483 -0.14603 1.46691 -0.566506 -0.142768 1.67973 -0.566537 -0.147877 1.42045 -0.565059 -0.148753 1.67972 -0.561342 -0.14371 1.45923 -0.561278 -0.147177 1.29858 -0.563255 -0.142193 1.67969 -0.565588 -0.142496 1.34071 -0.560868 -0.145745 1.5053 -0.567111 -0.143914 1.37792 -0.563588 -0.148867 1.18833 -0.564398 -0.142151 1.14128 -0.562268 -0.142627 1.04972 -0.565969 -0.142601 1.0499 -0.565732 -0.148504 1.15368 -0.56237 -0.148356 1.28913 -0.567389 -0.144394 1.04974 -0.563936 -0.148978 1.04974 -0.567182 -0.147129 1.04982 -0.560851 -0.144578 1.04974 -0.597514 -0.114713 1.67968 -0.596205 -0.112689 1.67953 -0.592418 -0.112529 1.6798 -0.597391 -0.116704 1.67968 -0.593956 -0.119184 1.67971 -0.596641 -0.117774 1.52105 -0.59087 -0.114662 1.67969 -0.593168 -0.118728 1.51593 -0.594908 -0.118804 1.49388 -0.590888 -0.116162 1.67958 -0.597063 -0.113789 1.30823 -0.592902 -0.112433 1.25034 -0.594179 -0.112119 1.51593 -0.595103 -0.112339 1.2848 -0.596537 -0.117878 1.14876 -0.597472 -0.11551 1.24385 -0.591341 -0.113711 1.17908 -0.592728 -0.11227 1.0497 -0.591993 -0.118124 1.51593 -0.597671 -0.116335 1.04975 -0.59642 -0.112877 1.04973 -0.590752 -0.115844 1.04989 -0.592791 -0.118706 1.04971 -0.594992 -0.118847 1.04973 0.0970756 0.148429 1.36377 0.0965996 0.148188 1.67973 0.0965996 0.148188 1.04973 0.0808214 0.128481 1.04973 0.0828214 0.132731 1.04973 0.0828214 0.150481 1.04973 0.0861572 0.132731 1.04973 0.0898214 0.153961 1.04973 0.0901214 0.154481 1.04973 0.0898214 0.159067 1.04973 0.0861572 0.162731 1.04973 0.0875714 0.164145 1.04973 0.0875714 0.167481 1.04973 0.0912356 0.160481 1.04973 0.100407 0.160481 1.04973 0.117571 0.164145 1.04973 0.104071 0.167481 1.04973 0.0998214 0.167481 1.04973 0.121821 0.167481 1.04973 0.125302 0.160481 1.04973 0.125821 0.160181 1.04973 0.126341 0.160481 1.04973 0.135486 0.162731 1.04973 0.131821 0.159067 1.04973 0.131821 0.155001 1.04973 0.131821 0.153961 1.04973 0.131821 0.149895 1.04973 0.134071 0.164145 1.04973 0.140821 0.158481 1.04973 0.138821 0.158481 1.04973 0.134071 0.167481 1.04973 0.135486 0.146231 1.04973 0.131821 0.129067 1.04973 0.138821 0.132731 1.04973 0.131521 0.124481 1.04973 0.131821 0.119895 1.04973 0.135486 0.116231 1.04973 0.130407 0.118481 1.04973 0.138821 0.116231 1.04973 0.140821 0.120481 1.04973 0.134071 0.111481 1.04973 0.125302 0.118481 1.04973 0.122283 0.124134 1.04973 0.121236 0.118481 1.04973 0.117571 0.114817 1.04973 0.104071 0.114817 1.04973 0.117571 0.111481 1.04973 0.121821 0.109481 1.04973 0.104071 0.111481 1.04973 0.096341 0.118481 1.04973 0.0958214 0.118781 1.04973 0.0953018 0.118481 1.04973 0.0861572 0.116231 1.04973 0.0912356 0.118481 1.04973 0.0898214 0.119895 1.04973 0.0898214 0.123961 1.04973 0.0875714 0.114817 1.04973 0.0918214 0.109481 1.04973 0.0898214 0.149895 1.04973 0.10092 0.149256 1.0498 0.119821 0.125966 1.04973 0.130407 0.160481 1.04973 0.0828214 0.128481 1.67973 0.0828214 0.128481 1.04973 0.0898214 0.129067 1.04973 0.0898214 0.125001 1.04973 0.0901214 0.124481 1.04973 0.0898214 0.123961 1.67973 0.0828214 0.116231 1.67973 0.0828214 0.116231 1.04973 0.0828214 0.120481 1.67973 0.0808214 0.120481 1.67973 0.0828214 0.120481 1.04973 0.0808214 0.120481 1.04973 0.0828214 0.109481 1.67973 0.081441 0.109956 1.67949 0.0808214 0.111481 1.67973 0.0808214 0.111481 1.04973 0.0828214 0.109481 1.04973 0.0816345 0.10979 1.04971 0.0918214 0.109481 1.67973 0.0918214 0.111481 1.67973 0.0875714 0.111481 1.67973 0.0918214 0.111481 1.04973 0.0875714 0.114817 1.67973 0.0875714 0.111481 1.04973 0.0953018 0.118481 1.67973 0.100407 0.118481 1.04973 0.104071 0.111481 1.67973 0.0998214 0.111481 1.04973 0.0998214 0.111481 1.67973 0.0998214 0.109481 1.04973 0.117571 0.111481 1.67973 0.121821 0.111481 1.04973 0.117571 0.114817 1.67973 0.125821 0.118781 1.67973 0.125821 0.118781 1.04973 0.126341 0.118481 1.04973 0.134071 0.114817 1.04973 0.129821 0.111481 1.04973 0.129821 0.109481 1.67973 0.129821 0.109481 1.04973 0.138821 0.109481 1.04973 0.140821 0.111481 1.04973 0.139772 0.109682 1.6797 0.140669 0.110621 1.04973 0.140471 0.110454 1.58336 0.140821 0.111481 1.67973 0.139549 0.109599 1.04975 0.138821 0.109481 1.67973 0.138821 0.120481 1.04973 0.135486 0.116231 1.67973 0.131821 0.123961 1.67973 0.131821 0.123961 1.04973 0.131821 0.125001 1.67973 0.131821 0.125001 1.04973 0.135486 0.132731 1.04973 0.138821 0.128481 1.67973 0.138821 0.128481 1.04973 0.140821 0.128481 1.04973 0.140821 0.150481 1.04973 0.138821 0.150481 1.67973 0.138821 0.150481 1.04973 0.138821 0.146231 1.04973 0.131521 0.154481 1.04973 0.131821 0.159067 1.67973 0.135486 0.162731 1.67973 0.138821 0.162731 1.67973 0.138821 0.162731 1.04973 0.138821 0.158481 1.67973 0.140821 0.167481 1.04973 0.140821 0.167481 1.67973 0.139503 0.169354 1.30425 0.129821 0.169481 1.67973 0.129821 0.167481 1.04973 0.129821 0.167481 1.67973 0.130407 0.160481 1.67973 0.126341 0.160481 1.67973 0.125302 0.160481 1.67973 0.121236 0.160481 1.67973 0.121236 0.160481 1.04973 0.117571 0.167481 1.67973 0.117571 0.167481 1.04973 0.121821 0.167481 1.67973 0.0998214 0.169481 1.67973 0.0998214 0.167481 1.67973 0.104071 0.167481 1.67973 0.104071 0.164145 1.67973 0.104071 0.164145 1.04973 0.096341 0.160481 1.04973 0.0958214 0.160181 1.04973 0.0953018 0.160481 1.67973 0.0953018 0.160481 1.04973 0.0912356 0.160481 1.67973 0.0875714 0.167481 1.67973 0.0918214 0.167481 1.67973 0.0918214 0.167481 1.04973 0.0825676 0.169481 1.04973 0.0814131 0.168792 1.67968 0.0812723 0.16855 1.06026 0.0808214 0.167481 1.67973 0.081228 0.168533 1.38162 0.0808214 0.167481 1.04973 0.0808214 0.158481 1.67973 0.0808214 0.158481 1.04973 0.0828214 0.158481 1.04973 0.0828214 0.158481 1.67973 0.0828214 0.162731 1.67973 0.0828214 0.162731 1.04973 0.0898214 0.159067 1.67973 0.0898214 0.155001 1.67973 0.0898214 0.155001 1.04973 0.0898214 0.153961 1.67973 0.0861572 0.146231 1.04973 0.0828214 0.150481 1.67973 0.0828214 0.146231 1.04973 0.0808214 0.150481 1.67973 0.0808214 0.128481 1.67973 0.0808214 0.150481 1.04973 0.0828214 0.132731 1.67973 0.0828214 0.146231 1.67973 0.0861572 0.132731 1.67973 0.0898214 0.129067 1.67973 0.0898214 0.125001 1.67973 0.0901214 0.124481 1.67973 0.0861572 0.116231 1.67973 0.0912356 0.118481 1.67973 0.0958214 0.118781 1.67973 0.096341 0.118481 1.67973 0.100407 0.118481 1.67973 0.104071 0.114817 1.67973 0.121821 0.109481 1.67973 0.0998214 0.109481 1.67973 0.121821 0.111481 1.67973 0.121236 0.118481 1.67973 0.125302 0.118481 1.67973 0.126341 0.118481 1.67973 0.131821 0.119895 1.67973 0.130407 0.118481 1.67973 0.131521 0.124481 1.67973 0.131821 0.129067 1.67973 0.125043 0.130774 1.67973 0.134071 0.111481 1.67973 0.134071 0.114817 1.67973 0.138821 0.116231 1.67973 0.140821 0.120481 1.67973 0.138821 0.120481 1.67973 0.129821 0.111481 1.67973 0.135486 0.132731 1.67973 0.135486 0.146231 1.67973 0.138821 0.146231 1.67973 0.140821 0.150481 1.67973 0.138821 0.132731 1.67973 0.140821 0.128481 1.67973 0.131821 0.149895 1.67973 0.131521 0.154481 1.67973 0.131821 0.153961 1.67973 0.131821 0.155001 1.67973 0.134071 0.164145 1.67973 0.140821 0.158481 1.67973 0.14017 0.168999 1.67964 0.134071 0.167481 1.67973 0.125821 0.160181 1.67973 0.117571 0.164145 1.67973 0.096341 0.160481 1.67973 0.0958214 0.160181 1.67973 0.0875714 0.164145 1.67973 0.0861572 0.162731 1.67973 0.0901214 0.154481 1.67973 0.0898214 0.149895 1.67973 0.0918214 0.169481 1.67973 0.0828214 0.169481 1.67973 0.0861572 0.146231 1.67973 0.100407 0.160481 1.67973 0.122823 0.122693 1.67973 0.12081 0.129786 1.67963 0.123001 0.126489 1.67942 0.0898214 0.119895 1.67973 0.0911143 0.142703 1.04973 0.0911143 0.142703 1.67973 0.0908214 0.141996 1.67973 0.0909247 0.142414 1.3661 0.0908214 0.141996 1.04973 0.0908214 0.136966 1.67973 0.0911143 0.136259 1.04973 0.0911143 0.136259 1.67973 0.0908214 0.136966 1.04973 0.0965996 0.130774 1.04973 0.0965996 0.130774 1.67973 0.0968882 0.130585 1.3661 0.0996532 0.130334 1.40869 0.100883 0.129547 1.41963 0.0980641 0.130481 1.67973 0.101121 0.129557 1.67961 0.0980641 0.130481 1.04973 0.100994 0.129608 1.04997 0.101674 0.128314 1.41737 0.101821 0.125966 1.04973 0.101821 0.127481 1.67973 0.102114 0.125259 1.04973 0.101821 0.125966 1.67973 0.102114 0.125259 1.67973 0.1076 0.119774 1.04973 0.108307 0.119481 1.04973 0.108307 0.119481 1.67973 0.1076 0.119774 1.67973 0.107888 0.119585 1.3661 0.113336 0.119481 1.04973 0.114043 0.119774 1.67973 0.113336 0.119481 1.67973 0.114043 0.119774 1.04973 0.119528 0.125259 1.67973 0.119528 0.125259 1.04973 0.119718 0.125548 1.3661 0.119821 0.127481 1.04973 0.120607 0.129567 1.05006 0.123579 0.130481 1.67973 0.122821 0.130481 1.04973 0.119821 0.126723 1.67973 0.119968 0.128314 1.38961 0.12068 0.129492 1.38406 0.121989 0.130334 1.31603 0.124725 0.130571 1.33436 0.124725 0.130571 1.36423 0.125012 0.130744 1.3661 0.124336 0.130481 1.04973 0.124725 0.130571 1.3486 0.125043 0.130774 1.04973 0.130528 0.136259 1.04973 0.130821 0.136966 1.67973 0.130821 0.136966 1.04973 0.130718 0.136548 1.3661 0.130528 0.136259 1.67973 0.130821 0.141996 1.04973 0.130821 0.141996 1.67973 0.130528 0.142703 1.67973 0.130528 0.142703 1.04973 0.125043 0.148188 1.67973 0.125043 0.148188 1.04973 0.124336 0.148481 1.04973 0.122821 0.148481 1.04973 0.120661 0.149292 1.04987 0.124336 0.148481 1.67973 0.120564 0.14935 1.67961 0.119821 0.152239 1.67973 0.120013 0.150459 1.3844 0.119821 0.152239 1.04973 0.121006 0.149195 1.35143 0.122105 0.148588 1.4368 0.119528 0.153703 1.67973 0.119528 0.153703 1.04973 0.119769 0.153226 1.36377 0.113336 0.159481 1.04973 0.114043 0.159188 1.67973 0.114043 0.159188 1.04973 0.113336 0.159481 1.67973 0.108307 0.159481 1.04973 0.108307 0.159481 1.67973 0.1076 0.159188 1.04973 0.1076 0.159188 1.67973 0.102114 0.153703 1.67973 0.101821 0.151481 1.67973 0.102114 0.153703 1.04973 0.101821 0.152239 1.04973 0.0980641 0.148481 1.67973 0.101094 0.149323 1.67965 0.100854 0.149337 1.42987 0.0996532 0.148627 1.30077 0.0980641 0.148481 1.04973 0.123432 0.157011 1.67973 0.125688 0.150904 1.04972 0.129177 0.155367 1.04987 0.129263 0.155058 1.67964 0.126858 0.157782 1.67972 0.127904 0.151611 1.67973 0.122325 0.154075 1.67956 0.12626 0.151145 1.33678 0.125462 0.151074 1.67973 0.129005 0.153475 1.44466 0.123713 0.151767 1.67969 0.123833 0.157068 1.36729 0.124533 0.151374 1.37733 0.122498 0.154772 1.40805 0.128095 0.152002 1.42458 0.128875 0.15572 1.32772 0.122599 0.153618 1.25684 0.122537 0.155212 1.24149 0.125383 0.157816 1.33136 0.127347 0.15747 1.43265 0.123227 0.152292 1.04973 0.127703 0.157299 1.07808 0.122502 0.155177 1.05001 0.123609 0.157132 1.05003 0.126303 0.157881 1.04973 0.128854 0.152758 1.05016 0.0924835 0.125423 1.04975 0.0935221 0.121733 1.67972 0.099164 0.125344 1.67974 0.0978167 0.127282 1.6797 0.092392 0.124565 1.67973 0.0985971 0.122449 1.67968 0.0949646 0.127863 1.67974 0.0929684 0.126399 1.67973 0.0969543 0.121177 1.67965 0.0943401 0.121477 1.45293 0.0930469 0.122538 1.45135 0.0991062 0.124332 1.35489 0.0958214 0.127881 1.54113 0.0931101 0.126425 1.34731 0.0964377 0.121232 1.49506 0.0925049 0.124412 1.35213 0.0970001 0.127605 1.28283 0.0975375 0.12156 1.04979 0.0985537 0.126395 1.35804 0.0985959 0.122538 1.08123 0.0955302 0.12106 1.04976 0.0946426 0.127605 1.28283 0.099237 0.124056 1.04973 0.0929926 0.122312 1.04977 0.0946355 0.127779 1.04974 0.0981345 0.127243 1.04968 0.128447 0.122201 1.04988 0.125798 0.127928 1.04973 0.126492 0.127955 1.67972 0.128917 0.122959 1.67967 0.125767 0.12108 1.67972 0.122486 0.1243 1.48837 0.128678 0.122744 1.50609 0.12918 0.125672 1.67967 0.123463 0.12684 1.31118 0.122567 0.125374 1.29996 0.128613 0.126336 1.51455 0.124217 0.121481 1.6797 0.122846 0.122848 1.28598 0.124121 0.121537 1.21353 0.127976 0.127064 1.17888 0.125821 0.121081 1.21353 0.125164 0.127784 1.4488 0.12626 0.127816 1.24838 0.127106 0.121326 1.67971 0.124839 0.121131 1.04971 0.123529 0.127039 1.04972 0.128999 0.125926 1.04977 0.129188 0.124463 1.23302 0.0938076 0.151675 1.04975 0.0983004 0.156878 1.04972 0.093222 0.15213 1.6797 0.0960405 0.157784 1.55531 0.0983554 0.156869 1.67972 0.0989853 0.153111 1.67971 0.0991202 0.154174 1.59547 0.0923865 0.154533 1.67973 0.093746 0.1575 1.67972 0.0991827 0.154923 1.40331 0.0936052 0.15691 1.54231 0.0951772 0.157735 1.35213 0.0975214 0.157426 1.35213 0.0925432 0.153973 1.37733 0.0950924 0.151197 1.36857 0.0935147 0.152071 1.34544 0.0985116 0.156455 1.30389 0.0968686 0.151097 1.67962 0.0941214 0.157426 1.21353 0.0964656 0.157735 1.21353 0.0928366 0.152929 1.15289 0.0929871 0.156383 1.04973 0.0992148 0.154074 1.0498 0.0969671 0.151216 1.04987 0.0985959 0.152539 1.08911 0.0925106 0.15425 1.04974 0.094982 0.157847 1.04973 -0.549179 -0.121519 1.72325 -0.549179 -0.121812 1.72395 0.0808214 -0.121519 1.72173 0.0808214 -0.121812 1.72395 -0.549179 -0.141519 1.73973 -0.549179 -0.123769 1.73773 -0.549179 -0.137269 1.7344 -0.549179 -0.123769 1.7344 -0.549179 -0.116039 1.73073 -0.549179 -0.114999 1.73073 -0.549179 -0.110933 1.73073 -0.549179 -0.107269 1.7344 -0.549179 -0.107269 1.73773 -0.549179 -0.109519 1.72932 -0.549179 -0.109519 1.72525 -0.549179 -0.105855 1.71648 -0.549179 -0.105855 1.70298 -0.549179 -0.116297 1.70103 -0.549179 -0.102519 1.70298 -0.549179 -0.102519 1.72073 -0.549179 -0.109819 1.69473 -0.549179 -0.109519 1.69421 -0.549179 -0.109519 1.69015 -0.549179 -0.107269 1.68507 -0.549179 -0.110933 1.68873 -0.549179 -0.114999 1.68873 -0.549179 -0.120105 1.68873 -0.549179 -0.105855 1.68648 -0.549179 -0.111519 1.68173 -0.549179 -0.102519 1.69073 -0.549179 -0.102519 1.68648 -0.549179 -0.133034 1.68973 -0.549179 -0.137269 1.68507 -0.549179 -0.123769 1.68507 -0.549179 -0.123769 1.68173 -0.549179 -0.137269 1.68173 -0.549179 -0.119519 1.67973 -0.549179 -0.140933 1.68873 -0.549179 -0.145519 1.68903 -0.549179 -0.150105 1.68873 -0.549179 -0.149519 1.68173 -0.549179 -0.153769 1.68173 -0.549179 -0.151519 1.69421 -0.549179 -0.155183 1.70298 -0.549179 -0.155183 1.71648 -0.549179 -0.158519 1.70298 -0.549179 -0.160519 1.72073 -0.549179 -0.158519 1.72073 -0.549179 -0.158519 1.71648 -0.549179 -0.151519 1.72932 -0.549179 -0.151519 1.72525 -0.549179 -0.150105 1.73073 -0.549179 -0.158519 1.73298 -0.549179 -0.155183 1.73298 -0.549179 -0.153769 1.73773 -0.549179 -0.149519 1.73973 -0.549179 -0.120105 1.73073 -0.549179 -0.121519 1.72173 -0.549179 -0.139519 1.72173 -0.549179 -0.109519 1.69932 -0.549179 -0.128004 1.72973 0.0808214 -0.141519 1.73773 -0.549179 -0.141519 1.73773 -0.549179 -0.137269 1.73773 -0.549179 -0.140933 1.73073 -0.549179 -0.144999 1.73073 -0.549179 -0.145519 1.73043 -0.549179 -0.146039 1.73073 0.0808214 -0.153769 1.7344 -0.549179 -0.153769 1.7344 -0.549179 -0.149519 1.73773 0.0808214 -0.149519 1.73973 -0.549179 -0.160519 1.73773 -0.175696 -0.160022 1.73899 0.0808214 -0.160519 1.73773 -0.529426 -0.160153 1.73881 -0.549179 -0.158519 1.73973 0.0808214 -0.160519 1.72873 0.0808214 -0.158519 1.72873 -0.549179 -0.160519 1.72873 -0.549179 -0.158519 1.72873 0.0808214 -0.158519 1.73298 0.0808214 -0.151519 1.72932 -0.549179 -0.151219 1.72473 -0.549179 -0.151519 1.72421 -0.549179 -0.151519 1.72015 0.0808214 -0.158519 1.71648 0.0808214 -0.160519 1.69873 -0.549179 -0.160519 1.69873 -0.549179 -0.158519 1.69873 0.0808214 -0.158519 1.69873 0.0808214 -0.158519 1.70298 0.0808214 -0.155183 1.70298 0.0808214 -0.151519 1.69525 -0.549179 -0.151519 1.69932 -0.549179 -0.151519 1.69525 -0.549179 -0.151219 1.69473 0.0808214 -0.151519 1.69421 0.0808214 -0.155183 1.68648 -0.549179 -0.151519 1.69015 -0.549179 -0.155183 1.68648 0.0808214 -0.158519 1.68648 -0.549179 -0.158519 1.68648 0.0808214 -0.158519 1.69073 -0.549179 -0.158519 1.69073 -0.549179 -0.160519 1.69073 -0.212873 -0.159527 1.68006 0.0808214 -0.160519 1.68173 -0.549179 -0.160519 1.68173 -0.212873 -0.160391 1.68105 0.0807052 -0.160328 1.68084 -0.549164 -0.160261 1.68069 0.0808214 -0.158519 1.67973 -0.549179 -0.158519 1.67973 -0.549179 -0.149519 1.67973 0.0808214 -0.149519 1.68173 0.0808214 -0.153769 1.68173 0.0808214 -0.153769 1.68507 -0.549179 -0.153769 1.68507 0.0808214 -0.146039 1.68873 -0.549179 -0.146039 1.68873 -0.549179 -0.144999 1.68873 0.0808214 -0.137269 1.68173 0.0808214 -0.141519 1.68173 -0.549179 -0.141519 1.68173 0.0808214 -0.141519 1.67973 0.0808214 -0.119519 1.67973 0.0808214 -0.119519 1.68173 -0.549179 -0.119519 1.68173 0.0808214 -0.120105 1.68873 -0.549179 -0.116039 1.68873 -0.549179 -0.115519 1.68903 -0.549179 -0.107269 1.68173 0.0808214 -0.111519 1.68173 0.0808214 -0.111519 1.67973 0.0808214 -0.102519 1.67973 0.0768507 -0.101009 1.68051 0.0808214 -0.100519 1.68173 -0.549164 -0.101221 1.68029 -0.0871699 -0.10082 1.68075 0.0808214 -0.102519 1.69073 0.0808214 -0.102519 1.68648 0.0808214 -0.109519 1.69015 0.0808214 -0.109819 1.69473 0.0808214 -0.109519 1.69525 -0.549179 -0.109519 1.69525 0.0808214 -0.102519 1.69873 0.0808214 -0.100519 1.69873 -0.549179 -0.102519 1.69873 -0.549179 -0.100519 1.72073 -0.549179 -0.102519 1.71648 -0.549179 -0.109519 1.72015 -0.549179 -0.109519 1.72421 -0.549179 -0.109819 1.72473 0.0808214 -0.109819 1.72473 0.0808214 -0.109519 1.72525 0.0808214 -0.109519 1.72932 -0.549179 -0.105855 1.73298 -0.549179 -0.102519 1.73298 -0.549179 -0.102519 1.72873 -0.549179 -0.100519 1.72873 0.0808214 -0.100519 1.73773 -0.0925138 -0.101389 1.73934 0.0808214 -0.102519 1.73973 -0.549179 -0.102519 1.73973 -0.548764 -0.101335 1.73933 0.0808214 -0.111519 1.73973 -0.549179 -0.111519 1.73973 -0.549179 -0.111519 1.73773 0.0808214 -0.114999 1.73073 0.0808214 -0.115519 1.73043 -0.549179 -0.115519 1.73043 0.0808214 -0.120105 1.73073 -0.549179 -0.119519 1.73773 0.0808214 -0.119519 1.73773 -0.549179 -0.119519 1.73973 0.0808214 -0.119519 1.73973 0.0808214 -0.123769 1.73773 0.0808214 -0.137269 1.73773 0.0808214 -0.141519 1.73973 0.0808214 -0.140933 1.73073 0.0808214 -0.145519 1.73043 0.0808214 -0.144999 1.73073 0.0808214 -0.146039 1.73073 0.0808214 -0.150105 1.73073 0.0808214 -0.149519 1.73773 0.0808214 -0.153769 1.73773 0.0808214 -0.158519 1.73973 0.0808214 -0.155183 1.73298 0.0808214 -0.151519 1.72525 0.0808214 -0.151219 1.72473 0.0808214 -0.151519 1.72421 0.0808214 -0.151519 1.72015 0.0808214 -0.155183 1.71648 0.0808214 -0.160519 1.72073 0.0808214 -0.158519 1.72073 0.0808214 -0.151519 1.69932 0.0808214 -0.151219 1.69473 0.0808214 -0.151519 1.69015 0.0808214 -0.150105 1.68873 0.0808214 -0.145519 1.68903 0.0808214 -0.144999 1.68873 0.0808214 -0.149519 1.67973 0.0808214 -0.160519 1.69073 0.0808214 -0.140933 1.68873 0.0808214 -0.133741 1.69003 0.0808214 -0.137269 1.68507 0.0808214 -0.123769 1.68507 0.0808214 -0.123769 1.68173 0.0808214 -0.115519 1.68903 0.0808214 -0.116039 1.68873 0.0808214 -0.110933 1.68873 0.0808214 -0.114999 1.68873 0.0808214 -0.107269 1.68507 0.0808214 -0.107269 1.68173 0.0808214 -0.105855 1.68648 0.0808214 -0.100519 1.69073 0.0808214 -0.109519 1.69421 0.0808214 -0.109519 1.69932 0.0808214 -0.105855 1.70298 0.0808214 -0.105855 1.71648 0.0808214 -0.109519 1.72015 0.0808214 -0.100519 1.72073 0.0808214 -0.102519 1.70298 0.0808214 -0.102519 1.72073 0.0808214 -0.102519 1.71648 0.0808214 -0.109519 1.72421 0.0808214 -0.105855 1.73298 0.0808214 -0.107269 1.7344 0.0808214 -0.110933 1.73073 0.0808214 -0.116039 1.73073 0.0808214 -0.107269 1.73773 0.0808214 -0.111519 1.73773 0.0808214 -0.102519 1.72873 0.0808214 -0.100519 1.72873 0.0808214 -0.102519 1.73298 0.0807758 -0.101403 1.73942 0.0808214 -0.123769 1.7344 0.0808214 -0.118519 1.70073 0.0808214 -0.133741 1.72944 0.0808214 -0.137269 1.7344 0.0808214 -0.127297 1.72944 -0.549179 -0.127297 1.72944 0.0808214 -0.128004 1.72973 0.0808214 -0.133034 1.72973 -0.549179 -0.133034 1.72973 -0.549179 -0.133741 1.72944 -0.549179 -0.139519 1.72325 0.0808214 -0.139226 1.72395 0.0808214 -0.139519 1.72325 -0.549179 -0.139226 1.72395 -0.230126 -0.141877 1.71883 0.0808214 -0.139519 1.72173 -0.198546 -0.139798 1.72054 -0.549158 -0.139831 1.72033 -0.549034 -0.141184 1.71901 0.0806307 -0.140258 1.71959 -0.549179 -0.144741 1.71844 0.0808214 -0.143276 1.71873 0.0808214 -0.144741 1.71844 -0.549179 -0.143276 1.71873 -0.549179 -0.150519 1.71225 0.0808214 -0.150226 1.71295 -0.549179 -0.150226 1.71295 0.0808214 -0.150519 1.71225 0.0808214 -0.150519 1.70722 -0.549179 -0.150519 1.70722 -0.549179 -0.150226 1.70651 -0.232345 -0.150362 1.70673 0.0808214 -0.150226 1.70651 -0.549179 -0.144034 1.70073 -0.406897 -0.144452 1.70084 -0.549179 -0.144741 1.70103 0.0808214 -0.144034 1.70073 -0.365593 -0.144452 1.70084 -0.385661 -0.144452 1.70084 0.0808214 -0.144741 1.70103 -0.549179 -0.142519 1.70073 0.0808214 -0.142519 1.70073 -0.151001 -0.139711 1.69876 0.0804595 -0.140309 1.6999 -0.549037 -0.140195 1.69974 0.0808214 -0.139519 1.69697 -0.549179 -0.139519 1.69773 0.0808214 -0.139226 1.69551 -0.549179 -0.139226 1.69551 -0.549179 -0.139519 1.69622 0.0808214 -0.133034 1.68973 -0.549179 -0.133741 1.69003 0.0808214 -0.128004 1.68973 -0.549179 -0.128004 1.68973 -0.549179 -0.127297 1.69003 0.0808214 -0.127297 1.69003 0.0808214 -0.121812 1.69551 -0.549179 -0.121519 1.69697 -0.549179 -0.121812 1.69551 -0.231937 -0.121616 1.69581 0.0808214 -0.121519 1.69773 0.0806842 -0.120499 1.7001 -0.32695 -0.119541 1.70054 -0.549161 -0.12063 1.70002 -0.213468 -0.121328 1.69876 -0.474442 -0.120524 1.69992 -0.549179 -0.117762 1.70073 0.0808214 -0.117004 1.70073 0.0808214 -0.116297 1.70103 0.0808214 -0.110519 1.70722 0.0808214 -0.110812 1.70651 -0.549179 -0.110812 1.70651 -0.549179 -0.110519 1.70722 -0.549179 -0.110519 1.71225 0.0808214 -0.110519 1.71225 -0.549179 -0.110812 1.71295 0.0808214 -0.110812 1.71295 -0.549179 -0.117004 1.71873 -0.549179 -0.116297 1.71844 0.0808214 -0.116297 1.71844 0.0807987 -0.120777 1.71973 -0.549179 -0.118519 1.71873 -0.263442 -0.120708 1.71973 0.0808214 -0.117004 1.71873 -0.213468 -0.119541 1.71892 -0.548766 -0.120807 1.71987 -0.549146 -0.112201 1.69585 -0.549113 -0.115266 1.69832 0.0808537 -0.11203 1.69429 0.0807309 -0.113553 1.69193 0.0807734 -0.11902 1.6955 0.0808038 -0.117302 1.69162 0.0807715 -0.1163 1.69815 0.0807159 -0.113253 1.69736 -0.202679 -0.112909 1.69264 -0.144994 -0.115087 1.69144 -0.210062 -0.118035 1.69685 -0.207305 -0.112401 1.69567 -0.225516 -0.116248 1.69801 -0.190867 -0.11883 1.69449 -0.230635 -0.117501 1.69209 -0.549129 -0.112295 1.69352 -0.246976 -0.114067 1.6977 -0.549143 -0.117974 1.69711 -0.549136 -0.113839 1.69167 -0.549164 -0.11645 1.69142 -0.549178 -0.118941 1.69377 -0.549133 -0.146125 1.72127 0.0807377 -0.148732 1.72328 0.0808324 -0.142079 1.72419 0.0806048 -0.144194 1.72158 0.0804841 -0.146933 1.72779 0.0807064 -0.144025 1.728 0.0807261 -0.148585 1.7263 -0.215279 -0.142534 1.72629 0.0808056 -0.146586 1.72147 -0.272982 -0.146937 1.72776 -0.194017 -0.142196 1.72444 -0.212523 -0.143485 1.72215 -0.420029 -0.143673 1.72756 -0.273652 -0.145556 1.72136 -0.334979 -0.145161 1.72809 -0.297474 -0.147449 1.72202 -0.242399 -0.148741 1.72401 -0.281035 -0.148504 1.72629 -0.549166 -0.142175 1.72549 -0.548948 -0.142592 1.72275 -0.548959 -0.149007 1.72406 -0.549109 -0.147453 1.72768 -0.549153 -0.143739 1.72784 -0.549026 -0.143804 1.69776 0.0807639 -0.147038 1.69799 0.0807929 -0.14563 1.69111 0.080735 -0.143222 1.69743 0.0808204 -0.148998 1.69484 0.080763 -0.142252 1.69333 0.0807499 -0.148308 1.69267 -0.201006 -0.148804 1.69546 -0.10306 -0.14414 1.69164 -0.165863 -0.146288 1.69151 -0.254654 -0.148189 1.69269 -0.275014 -0.145454 1.69803 -0.300034 -0.142196 1.69444 -0.549053 -0.146817 1.69798 -0.288516 -0.142711 1.69286 -0.549132 -0.146609 1.69132 -0.299443 -0.148033 1.69694 -0.288024 -0.142964 1.69677 -0.549193 -0.148989 1.69464 -0.549232 -0.141954 1.69464 -0.549126 -0.143562 1.69195 0.0807775 -0.113881 1.72779 0.0805304 -0.116224 1.72821 0.0808352 -0.111973 1.72539 0.0808091 -0.112795 1.72264 0.0807347 -0.118195 1.72258 0.0807445 -0.115303 1.72114 0.0806639 -0.118925 1.72561 -0.183779 -0.118627 1.72344 -0.192835 -0.115546 1.72136 -0.234277 -0.118554 1.72604 -0.17236 -0.11707 1.72175 -0.344429 -0.117196 1.72763 -0.306629 -0.114083 1.72775 -0.268928 -0.113666 1.72196 -0.321985 -0.11551 1.72803 -0.262923 -0.112489 1.72607 -0.297179 -0.112411 1.72344 -0.549164 -0.118189 1.72258 -0.549159 -0.112411 1.72642 -0.549153 -0.115939 1.72125 -0.549177 -0.11904 1.72538 -0.549185 -0.115789 1.72818 -0.549164 -0.112504 1.72298 0.0808214 -0.121812 1.03395 -0.549179 -0.121812 1.03395 -0.549179 -0.121519 1.03325 -0.549179 -0.137269 1.04773 -0.549179 -0.141519 1.04973 -0.549179 -0.119519 1.04773 -0.549179 -0.116039 1.04073 -0.549179 -0.120105 1.04073 -0.549179 -0.115519 1.04043 -0.549179 -0.114999 1.04073 -0.549179 -0.109519 1.03932 -0.549179 -0.111519 1.04973 -0.549179 -0.102519 1.04298 -0.549179 -0.100519 1.03873 -0.549179 -0.109519 1.03525 -0.549179 -0.109819 1.03473 -0.549179 -0.109519 1.03421 -0.549179 -0.109519 1.03015 -0.549179 -0.105855 1.02648 -0.549179 -0.105855 1.01298 -0.549179 -0.102519 1.02648 -0.549179 -0.102519 1.01298 -0.549179 -0.109519 1.00932 -0.549179 -0.109519 1.00421 -0.549179 -0.109819 1.00473 -0.549179 -0.110933 0.998733 -0.549179 -0.116039 0.998733 -0.549179 -0.107269 0.995068 -0.549179 -0.107269 0.991733 -0.549179 -0.100519 0.991733 -0.549179 -0.137269 0.995068 -0.549179 -0.137269 0.991733 -0.549179 -0.141519 0.991733 -0.549179 -0.123769 0.991733 -0.549179 -0.140933 0.998733 -0.549179 -0.145519 0.999032 -0.549179 -0.151519 1.00015 -0.549179 -0.160519 1.00073 -0.549179 -0.151519 1.00932 -0.549179 -0.150226 1.01651 -0.549179 -0.155183 1.01298 -0.549179 -0.158519 1.02648 -0.549179 -0.160519 1.03073 -0.549179 -0.151519 1.03421 -0.549179 -0.151519 1.03015 -0.549179 -0.155183 1.04298 -0.549179 -0.145519 1.04043 -0.549179 -0.158519 1.04298 -0.549179 -0.153769 1.04773 -0.549179 -0.151519 1.03932 -0.549179 -0.109519 1.00015 -0.549179 -0.141519 1.04773 0.0808214 -0.141519 1.04773 0.0808214 -0.137269 1.04773 -0.549179 -0.137269 1.0444 -0.549179 -0.140933 1.04073 -0.549179 -0.144999 1.04073 -0.549179 -0.146039 1.04073 -0.549179 -0.150105 1.04073 -0.549179 -0.153769 1.0444 0.0808214 -0.149519 1.04973 -0.549179 -0.149519 1.04773 0.0808214 -0.160519 1.04773 0.0808214 -0.158519 1.04973 -0.172966 -0.1595 1.04944 -0.549179 -0.158519 1.04973 -0.549179 -0.160519 1.04773 0.0807718 -0.15993 1.04904 -0.549018 -0.159861 1.04924 0.0808214 -0.160519 1.03873 -0.549179 -0.160519 1.03873 -0.549179 -0.158519 1.03873 0.0808214 -0.151519 1.03932 -0.549179 -0.151519 1.03525 0.0808214 -0.151219 1.03473 -0.549179 -0.151219 1.03473 0.0808214 -0.151519 1.03015 -0.549179 -0.155183 1.02648 0.0808214 -0.155183 1.02648 0.0808214 -0.158519 1.02648 0.0808214 -0.158519 1.03073 -0.549179 -0.158519 1.03073 0.0808214 -0.160519 1.03073 0.0808214 -0.160519 1.00873 -0.549179 -0.160519 1.00873 0.0808214 -0.158519 1.00873 -0.549179 -0.158519 1.00873 -0.549179 -0.158519 1.01298 0.0808214 -0.155183 1.01298 0.0808214 -0.151519 1.00525 -0.549179 -0.151519 1.00525 0.0808214 -0.151219 1.00473 -0.549179 -0.151219 1.00473 -0.549179 -0.151519 1.00421 0.0808214 -0.151519 1.00015 -0.549179 -0.155183 0.996483 0.0808214 -0.158519 0.996483 0.0808214 -0.158519 1.00073 -0.549179 -0.158519 0.996483 -0.549179 -0.158519 1.00073 0.0808214 -0.160519 1.00073 0.0808214 -0.158519 0.989733 -0.31656 -0.160206 0.99074 0.080817 -0.159646 0.990047 -0.549179 -0.160519 0.991733 -0.549179 -0.158519 0.989733 0.0808214 -0.160519 0.991733 -0.54905 -0.159886 0.990384 0.0808214 -0.149519 0.991733 -0.549179 -0.149519 0.989733 -0.549179 -0.149519 0.991733 0.0808214 -0.153769 0.991733 -0.549179 -0.153769 0.991733 -0.549179 -0.153769 0.995068 -0.549179 -0.150105 0.998733 -0.549179 -0.146039 0.998733 0.0808214 -0.146039 0.998733 -0.549179 -0.144999 0.998733 0.0808214 -0.140933 0.998733 0.0808214 -0.137269 0.995068 0.0808214 -0.137269 0.991733 -0.549179 -0.141519 0.989733 -0.549179 -0.119519 0.989733 0.0808214 -0.123769 0.991733 -0.549179 -0.119519 0.991733 -0.549179 -0.123769 0.995068 -0.549179 -0.120105 0.998733 0.0808214 -0.116039 0.998733 0.0808214 -0.115519 0.999032 -0.549179 -0.115519 0.999032 -0.549179 -0.114999 0.998733 0.0808214 -0.110933 0.998733 -0.549179 -0.111519 0.991733 0.0808214 -0.111519 0.991733 -0.549179 -0.111519 0.989733 0.0808214 -0.100519 0.991733 0.080637 -0.101231 0.990337 0.0808214 -0.102519 0.989733 -0.549179 -0.102519 0.989733 -0.186152 -0.101605 0.989977 -0.548601 -0.100793 0.990702 -0.549131 -0.101694 0.989885 0.0808214 -0.100519 1.00073 0.0808214 -0.102519 1.00073 -0.549179 -0.102519 1.00073 -0.549179 -0.102519 0.996483 -0.549179 -0.105855 0.996483 0.0808214 -0.109519 1.00015 0.0808214 -0.109519 1.00421 0.0808214 -0.109819 1.00473 0.0808214 -0.109519 1.00525 -0.549179 -0.109519 1.00525 0.0808214 -0.105855 1.01298 0.0808214 -0.102519 1.00873 0.0808214 -0.100519 1.00873 -0.549179 -0.102519 1.00873 0.0808214 -0.102519 1.03073 -0.549179 -0.100519 1.03073 -0.549179 -0.102519 1.03073 0.0808214 -0.105855 1.02648 -0.549179 -0.105855 1.04298 0.0808214 -0.102519 1.03873 0.0808214 -0.100519 1.03873 -0.549179 -0.102519 1.03873 0.0808214 -0.100519 1.04773 0.0808214 -0.102519 1.04973 -0.549179 -0.100519 1.04773 0.0807571 -0.101115 1.04918 -0.224955 -0.101389 1.04935 -0.316967 -0.100587 1.04825 -0.549116 -0.101329 1.04938 0.0808214 -0.111519 1.04773 0.0808214 -0.107269 1.04773 -0.549179 -0.111519 1.04773 -0.549179 -0.107269 1.04773 -0.549179 -0.107269 1.0444 0.0808214 -0.110933 1.04073 -0.549179 -0.110933 1.04073 0.0808214 -0.115519 1.04043 0.0808214 -0.123769 1.04773 -0.549179 -0.123769 1.0444 0.0808214 -0.119519 1.04773 -0.549179 -0.123769 1.04773 0.0808214 -0.119519 1.04973 0.0808214 -0.141519 1.04973 0.0808214 -0.140933 1.04073 0.0808214 -0.144999 1.04073 0.0808214 -0.146039 1.04073 0.0808214 -0.145519 1.04043 0.0808214 -0.153769 1.0444 0.0808214 -0.150105 1.04073 0.0808214 -0.155183 1.04298 0.0808214 -0.149519 1.04773 0.0808214 -0.153769 1.04773 0.0808214 -0.158519 1.04298 0.0808214 -0.158519 1.03873 0.0808214 -0.151519 1.03525 0.0808214 -0.151519 1.03421 0.0808214 -0.158519 1.01298 0.0808214 -0.151519 1.00421 0.0808214 -0.150105 0.998733 0.0808214 -0.145519 0.999032 0.0808214 -0.144999 0.998733 0.0808214 -0.155183 0.996483 0.0808214 -0.153769 0.995068 0.0808214 -0.149519 0.989733 0.0808214 -0.123769 0.995068 0.0808214 -0.141519 0.989733 0.0808214 -0.141519 0.991733 0.0808214 -0.119519 0.989733 0.0808214 -0.119519 0.991733 0.0808214 -0.120105 0.998733 0.0808214 -0.114999 0.998733 0.0808214 -0.107269 0.995068 0.0808214 -0.107269 0.991733 0.0808214 -0.105855 0.996483 0.0808214 -0.111519 0.989733 0.0808214 -0.102519 0.996483 0.0808214 -0.109519 1.00932 0.0808214 -0.116297 1.01103 0.0808214 -0.110519 1.01722 0.0808214 -0.109519 1.03015 0.0808214 -0.102519 1.02648 0.0808214 -0.102519 1.01298 0.0808214 -0.100519 1.03073 0.0808214 -0.109519 1.03421 0.0808214 -0.109819 1.03473 0.0808214 -0.109519 1.03525 0.0808214 -0.107269 1.0444 0.0808214 -0.114999 1.04073 0.0808214 -0.116039 1.04073 0.0808214 -0.105855 1.04298 0.0808214 -0.111519 1.04973 0.0808214 -0.102519 1.04298 0.0808214 -0.120105 1.04073 0.0808214 -0.123769 1.0444 0.0808214 -0.109519 1.03932 0.0808214 -0.151519 1.00932 0.0808214 -0.137269 1.0444 -0.549179 -0.127297 1.03944 0.0808214 -0.128004 1.03973 -0.549179 -0.128004 1.03973 0.0808214 -0.127297 1.03944 -0.549179 -0.133034 1.03973 0.0808214 -0.133034 1.03973 0.0808214 -0.133741 1.03944 -0.549179 -0.133741 1.03944 -0.549179 -0.139226 1.03395 0.0808214 -0.139226 1.03395 0.0808214 -0.139519 1.03249 0.0808214 -0.144034 1.02873 -0.549179 -0.143276 1.02873 -0.216244 -0.141497 1.02892 -0.549179 -0.139519 1.03249 -0.549154 -0.139888 1.03037 0.0807931 -0.14066 1.02931 -0.184317 -0.140397 1.02965 -0.241231 -0.139666 1.0309 -0.549171 -0.141384 1.02895 -0.549179 -0.144741 1.02844 0.0808214 -0.144741 1.02844 -0.549179 -0.150519 1.02225 -0.549179 -0.150226 1.02295 0.0808214 -0.150226 1.02295 0.0808214 -0.150519 1.02225 -0.549179 -0.150519 1.01722 0.0808214 -0.150226 1.01651 0.0808214 -0.150519 1.01722 -0.549179 -0.144741 1.01103 0.0808214 -0.143276 1.01073 0.0808214 -0.144741 1.01103 -0.549179 -0.144034 1.01073 0.080835 -0.140091 1.00958 -0.0246787 -0.141006 1.01023 0.0808214 -0.139519 1.00622 -0.549179 -0.139519 1.00697 -0.316366 -0.140229 1.00965 -0.549179 -0.142519 1.01073 -0.380047 -0.139711 1.00875 -0.549182 -0.141279 1.01048 0.0808214 -0.139226 1.00551 -0.549179 -0.139226 1.00551 -0.549179 -0.133034 0.999733 0.0808214 -0.133034 0.999733 -0.549179 -0.133741 1.00003 0.0808214 -0.133741 1.00003 0.0808214 -0.127297 1.00003 0.0808214 -0.128004 0.999733 -0.549179 -0.128004 0.999733 -0.549179 -0.127297 1.00003 0.0808214 -0.121812 1.00551 -0.549179 -0.121812 1.00551 0.0808114 -0.121306 1.00884 -0.548934 -0.12064 1.00994 0.0808214 -0.121519 1.00697 -0.549179 -0.121519 1.00622 -0.34812 -0.121328 1.00875 0.0528597 -0.120579 1.00996 0.0808214 -0.117762 1.01073 -0.549179 -0.118519 1.01073 -0.549179 -0.117004 1.01073 -0.549179 -0.116297 1.01103 -0.549179 -0.110812 1.01651 -0.549179 -0.110519 1.01722 0.0808214 -0.110812 1.01651 0.0808214 -0.110519 1.02225 -0.234679 -0.110737 1.02284 -0.549179 -0.110812 1.02295 0.0808214 -0.110812 1.02295 -0.549179 -0.110519 1.02225 0.0808214 -0.116297 1.02844 -0.549179 -0.116297 1.02844 -0.549179 -0.121519 1.03173 -0.549179 -0.117004 1.02873 -0.548858 -0.120586 1.02947 0.0808214 -0.117762 1.02873 -0.224573 -0.120708 1.02973 0.041953 -0.119541 1.02892 0.0808214 -0.121519 1.03325 0.0806523 -0.121091 1.03011 0.0807958 -0.112406 1.00332 0.0807553 -0.11881 1.00337 0.080841 -0.11826 1.00692 0.0805449 -0.115525 1.00819 0.0808107 -0.113692 1.00185 0.0805492 -0.112454 1.00642 -0.235262 -0.117501 1.00208 -0.31411 -0.115371 1.00136 -0.213015 -0.118559 1.00591 -0.169112 -0.114396 1.00788 -0.149326 -0.1122 1.00466 0.0807312 -0.115964 1.00131 -0.183287 -0.116844 1.00777 -0.214739 -0.112789 1.00667 -0.54917 -0.114052 1.00785 -0.549171 -0.112458 1.00631 -0.549179 -0.113772 1.00176 -0.250717 -0.112849 1.00268 -0.424361 -0.118708 1.00364 -0.549125 -0.11889 1.00538 -0.549236 -0.117185 1.00793 -0.549203 -0.112103 1.00395 -0.549308 -0.117146 1.00149 0.0806609 -0.142531 1.03291 0.0807163 -0.145063 1.0382 0.0807315 -0.148576 1.03673 -0.20642 -0.142349 1.03586 0.0808079 -0.142224 1.03591 -0.113298 -0.142222 1.03414 0.0807694 -0.146207 1.03135 0.0807551 -0.148337 1.03274 0.0807465 -0.144043 1.03158 -0.149523 -0.143374 1.03728 -0.148735 -0.148782 1.03494 -0.549169 -0.142226 1.03371 -0.203467 -0.14278 1.03277 -0.21272 -0.147669 1.0373 -0.254457 -0.147827 1.03243 -0.384198 -0.143599 1.03742 -0.195592 -0.145777 1.03138 -0.170887 -0.145577 1.03802 -0.549185 -0.149115 1.03479 -0.549119 -0.145719 1.03826 -0.549102 -0.143551 1.03194 -0.439913 -0.147826 1.0371 -0.549195 -0.145212 1.03132 -0.549177 -0.147477 1.03195 -0.549129 -0.142439 1.0363 -0.549193 -0.14884 1.00607 -0.549178 -0.146586 1.00142 0.0807748 -0.148566 1.00633 0.0808207 -0.148931 1.00424 0.0808173 -0.146465 1.00811 0.0807805 -0.142168 1.00379 0.0807913 -0.14617 1.00115 0.0807769 -0.142829 1.00694 -0.143616 -0.143666 1.00196 -0.149129 -0.142411 1.00344 -0.149424 -0.144122 1.00771 -0.292159 -0.147877 1.00709 -0.240873 -0.148826 1.00535 -0.259379 -0.144929 1.00138 -0.258592 -0.147432 1.002 -0.327891 -0.146396 1.00801 -0.192441 -0.14233 1.00569 -0.549145 -0.145962 1.00815 -0.549119 -0.143533 1.00757 -0.35191 -0.148709 1.00364 -0.549148 -0.148168 1.00252 -0.549231 -0.142019 1.00434 -0.549184 -0.143851 1.00171 0.0807081 -0.114931 1.03814 -0.549013 -0.114246 1.03804 0.0807842 -0.118827 1.03601 0.0805754 -0.112154 1.03425 0.0807951 -0.114771 1.03127 -0.128654 -0.112411 1.03344 0.0807043 -0.11303 1.03705 0.0808258 -0.118535 1.03292 -0.164288 -0.116078 1.03148 -0.108769 -0.113743 1.03197 -0.252587 -0.118565 1.03599 -0.145585 -0.112268 1.03563 0.0806767 -0.116621 1.03797 -0.128949 -0.11411 1.03775 -0.337489 -0.118257 1.03277 -0.549172 -0.112147 1.03542 -0.54917 -0.112322 1.03346 -0.549182 -0.119004 1.03478 -0.549192 -0.117777 1.03742 -0.549155 -0.113996 1.03161 -0.54886 -0.117078 1.03163 -0.607179 -0.449519 1.67973 -0.609179 -0.449519 1.67973 -0.608494 -0.459876 1.67973 -0.607179 -0.460519 1.04973 -0.608629 -0.459926 1.04977 -0.609179 -0.458519 1.67973 -0.609179 -0.458519 1.04973 -0.602429 -0.458519 1.67973 -0.598179 -0.458519 1.04973 -0.602429 -0.458519 1.04973 -0.602429 -0.455183 1.67973 -0.602429 -0.455183 1.04973 -0.598764 -0.451519 1.67973 -0.594179 -0.451219 1.04973 -0.595379 -0.451269 1.67973 -0.594179 -0.451219 1.67973 -0.591693 -0.451519 1.04973 -0.591693 -0.451519 1.67973 -0.585929 -0.455183 1.04973 -0.585929 -0.458519 1.04973 -0.590179 -0.458519 1.67973 -0.590179 -0.458519 1.04973 -0.581179 -0.460519 1.67973 -0.579179 -0.458519 1.67973 -0.579179 -0.458519 1.04973 -0.579512 -0.459528 1.38488 -0.579922 -0.459983 1.06127 -0.579623 -0.459879 1.67973 -0.581179 -0.449519 1.04973 -0.588179 -0.450105 1.67973 -0.588179 -0.448005 1.67973 -0.588179 -0.448005 1.04973 -0.588429 -0.446719 1.04973 -0.588479 -0.445519 1.67973 -0.588479 -0.445519 1.04973 -0.588179 -0.443033 1.67973 -0.584514 -0.437269 1.67973 -0.581179 -0.437269 1.04973 -0.579179 -0.419519 1.67973 -0.579179 -0.419519 1.04973 -0.581179 -0.419519 1.67973 -0.581179 -0.419519 1.04973 -0.581179 -0.423769 1.67973 -0.584514 -0.423769 1.67973 -0.588179 -0.418005 1.67973 -0.588179 -0.418005 1.04973 -0.588429 -0.416719 1.04973 -0.588429 -0.414319 1.04973 -0.588429 -0.414319 1.67973 -0.588479 -0.415519 1.04973 -0.588179 -0.413033 1.67973 -0.588179 -0.410933 1.67973 -0.588179 -0.413033 1.04973 -0.588179 -0.410933 1.04973 -0.581179 -0.407269 1.04973 -0.581179 -0.411519 1.67973 -0.579179 -0.411519 1.04973 -0.579179 -0.411519 1.67973 -0.579179 -0.389519 1.67973 -0.579179 -0.389519 1.04973 -0.581179 -0.389519 1.67973 -0.584514 -0.393769 1.04973 -0.588179 -0.388005 1.67973 -0.588179 -0.388005 1.04973 -0.588429 -0.386719 1.04973 -0.588479 -0.385519 1.04973 -0.588479 -0.385519 1.67973 -0.588429 -0.384319 1.67973 -0.588179 -0.380933 1.04973 -0.581179 -0.381519 1.67973 -0.579179 -0.359519 1.04973 -0.581179 -0.359519 1.67973 -0.581179 -0.359519 1.04973 -0.588179 -0.360105 1.67973 -0.588429 -0.356719 1.04973 -0.588479 -0.355519 1.04973 -0.588429 -0.354319 1.67973 -0.588179 -0.353033 1.04973 -0.584514 -0.347269 1.04973 -0.579179 -0.351519 1.67973 -0.581179 -0.351519 1.04973 -0.579179 -0.351519 1.04973 -0.579179 -0.329519 1.67973 -0.581179 -0.329519 1.67973 -0.581179 -0.329519 1.04973 -0.588179 -0.330105 1.67973 -0.584514 -0.333769 1.04973 -0.588179 -0.328005 1.67973 -0.588179 -0.328005 1.04973 -0.588429 -0.326719 1.04973 -0.588479 -0.325519 1.67973 -0.588479 -0.325519 1.04973 -0.588179 -0.323033 1.04973 -0.588179 -0.323033 1.67973 -0.588179 -0.320933 1.67973 -0.581179 -0.321519 1.04973 -0.579179 -0.321519 1.04973 -0.579179 -0.299519 1.67973 -0.581179 -0.299519 1.04973 -0.581179 -0.303769 1.67973 -0.584514 -0.303769 1.04973 -0.588179 -0.298005 1.67973 -0.588179 -0.298005 1.04973 -0.588479 -0.295519 1.04973 -0.588179 -0.293033 1.67973 -0.588179 -0.293033 1.04973 -0.588179 -0.290933 1.04973 -0.588179 -0.290933 1.67973 -0.581179 -0.291519 1.04973 -0.579179 -0.291519 1.67973 -0.579179 -0.291519 1.04973 -0.579179 -0.269519 1.67973 -0.579179 -0.269519 1.04973 -0.581179 -0.269519 1.67973 -0.581179 -0.269519 1.04973 -0.584514 -0.273769 1.67973 -0.588179 -0.268005 1.67973 -0.588179 -0.270105 1.04973 -0.588215 -0.266162 1.36448 -0.588429 -0.266719 1.04973 -0.588479 -0.265519 1.04973 -0.588479 -0.265519 1.67973 -0.588429 -0.264319 1.67973 -0.588429 -0.264319 1.04973 -0.588179 -0.263033 1.67973 -0.588179 -0.260933 1.04973 -0.584514 -0.257269 1.67973 -0.581179 -0.257269 1.67973 -0.581179 -0.261519 1.67973 -0.581179 -0.261519 1.04973 -0.579179 -0.261519 1.04973 -0.579179 -0.239519 1.04973 -0.581179 -0.239519 1.67973 -0.581179 -0.239519 1.04973 -0.581179 -0.243769 1.67973 -0.584514 -0.243769 1.67973 -0.588179 -0.240105 1.04973 -0.588179 -0.238005 1.67973 -0.588179 -0.238005 1.04973 -0.588429 -0.236719 1.67973 -0.588479 -0.235519 1.04973 -0.588429 -0.236719 1.04973 -0.588479 -0.235519 1.67973 -0.588429 -0.234319 1.67973 -0.588179 -0.233033 1.67973 -0.588429 -0.234319 1.04973 -0.588179 -0.230933 1.67973 -0.584514 -0.227269 1.04973 -0.584514 -0.227269 1.67973 -0.581179 -0.227269 1.67973 -0.581179 -0.227269 1.04973 -0.581179 -0.231519 1.67973 -0.581179 -0.231519 1.04973 -0.579179 -0.209519 1.04973 -0.581179 -0.209519 1.67973 -0.581179 -0.213769 1.04973 -0.584514 -0.213769 1.04973 -0.588179 -0.210105 1.67973 -0.588429 -0.206719 1.04973 -0.588429 -0.204319 1.04973 -0.588179 -0.203033 1.67973 -0.588179 -0.200933 1.67973 -0.588179 -0.200933 1.04973 -0.581179 -0.201519 1.67973 -0.581179 -0.201519 1.04973 -0.579179 -0.179519 1.04973 -0.581179 -0.179519 1.67973 -0.581179 -0.179519 1.04973 -0.588179 -0.180105 1.67973 -0.588179 -0.178005 1.67973 -0.588179 -0.178005 1.04973 -0.588479 -0.175519 1.67973 -0.588479 -0.175519 1.04973 -0.588429 -0.174319 1.04973 -0.588429 -0.174319 1.67973 -0.588179 -0.173033 1.67973 -0.588179 -0.173033 1.04973 -0.588179 -0.170933 1.04973 -0.584514 -0.167269 1.67973 -0.584514 -0.167269 1.04973 -0.581179 -0.167269 1.04973 -0.581179 -0.171519 1.67973 -0.581179 -0.160519 1.67973 -0.581179 -0.160519 1.04973 -0.579179 -0.162519 1.67973 -0.579707 -0.161132 1.67972 -0.579699 -0.161108 1.04973 -0.579179 -0.162519 1.04973 -0.590179 -0.162519 1.67973 -0.590179 -0.160519 1.04973 -0.590179 -0.162519 1.04973 -0.585929 -0.162519 1.67973 -0.585929 -0.165855 1.04973 -0.585929 -0.165855 1.67973 -0.594179 -0.169819 1.67973 -0.602429 -0.165855 1.67973 -0.602429 -0.165855 1.04973 -0.602429 -0.162519 1.04973 -0.598179 -0.162519 1.67973 -0.598179 -0.162519 1.04973 -0.607179 -0.160519 1.67973 -0.609179 -0.162519 1.04973 -0.609179 -0.162519 1.67973 -0.608616 -0.161075 1.04976 -0.608749 -0.161212 1.67967 -0.60786 -0.160646 1.36094 -0.609179 -0.171519 1.67973 -0.609179 -0.171519 1.04973 -0.607179 -0.171519 1.04973 -0.603843 -0.167269 1.67973 -0.600179 -0.170933 1.67973 -0.600179 -0.173033 1.67973 -0.599929 -0.174319 1.04973 -0.599929 -0.174319 1.67973 -0.599879 -0.175519 1.04973 -0.599929 -0.176719 1.67973 -0.599929 -0.176719 1.04973 -0.600179 -0.178005 1.67973 -0.600179 -0.178005 1.04973 -0.600179 -0.180105 1.67973 -0.607179 -0.179519 1.67973 -0.607179 -0.179519 1.04973 -0.609179 -0.179519 1.67973 -0.609179 -0.201519 1.67973 -0.609179 -0.201519 1.04973 -0.607179 -0.201519 1.04973 -0.607179 -0.197269 1.67973 -0.600179 -0.200933 1.67973 -0.600179 -0.200933 1.04973 -0.600179 -0.203033 1.67973 -0.600179 -0.203033 1.04973 -0.599879 -0.205519 1.67973 -0.599879 -0.205519 1.04973 -0.599929 -0.204319 1.04973 -0.599929 -0.204319 1.67973 -0.599929 -0.206719 1.04973 -0.599929 -0.206719 1.67973 -0.600179 -0.208005 1.04973 -0.600179 -0.210105 1.04973 -0.607179 -0.209519 1.04973 -0.607179 -0.209519 1.67973 -0.609179 -0.209519 1.67973 -0.609179 -0.209519 1.04973 -0.607179 -0.231519 1.67973 -0.609179 -0.231519 1.04973 -0.607179 -0.231519 1.04973 -0.600179 -0.233033 1.67973 -0.600179 -0.233033 1.04973 -0.599879 -0.235519 1.04973 -0.599879 -0.235519 1.67973 -0.599929 -0.236719 1.67973 -0.600179 -0.240105 1.67973 -0.600179 -0.238005 1.04973 -0.600179 -0.240105 1.04973 -0.603843 -0.243769 1.04973 -0.607179 -0.243769 1.04973 -0.607179 -0.239519 1.67973 -0.607179 -0.239519 1.04973 -0.609179 -0.239519 1.04973 -0.609179 -0.261519 1.04973 -0.607179 -0.261519 1.04973 -0.603843 -0.257269 1.04973 -0.600179 -0.260933 1.67973 -0.600179 -0.263033 1.04973 -0.599879 -0.265519 1.67973 -0.599929 -0.264319 1.67973 -0.599929 -0.264319 1.04973 -0.599879 -0.265519 1.04973 -0.600179 -0.268005 1.67973 -0.600179 -0.268005 1.04973 -0.603843 -0.273769 1.04973 -0.607179 -0.269519 1.04973 -0.609179 -0.269519 1.67973 -0.609179 -0.291519 1.67973 -0.607179 -0.291519 1.67973 -0.609179 -0.291519 1.04973 -0.607179 -0.291519 1.04973 -0.600179 -0.290933 1.67973 -0.603843 -0.287269 1.04973 -0.600179 -0.290933 1.04973 -0.600179 -0.293033 1.04973 -0.599879 -0.295519 1.67973 -0.600143 -0.294876 1.36448 -0.599879 -0.295519 1.04973 -0.599929 -0.294319 1.67973 -0.599929 -0.294319 1.04973 -0.600149 -0.296203 1.36445 -0.599929 -0.296719 1.04973 -0.600179 -0.298005 1.04973 -0.603843 -0.303769 1.67973 -0.603843 -0.303769 1.04973 -0.607179 -0.299519 1.67973 -0.609179 -0.299519 1.67973 -0.607179 -0.299519 1.04973 -0.609179 -0.321519 1.04973 -0.607179 -0.321519 1.67973 -0.607179 -0.321519 1.04973 -0.607179 -0.317269 1.67973 -0.607179 -0.317269 1.04973 -0.600179 -0.323033 1.67973 -0.600179 -0.323033 1.04973 -0.599929 -0.324319 1.67973 -0.599879 -0.325519 1.04973 -0.599879 -0.325519 1.67973 -0.600179 -0.328005 1.04973 -0.600179 -0.328005 1.67973 -0.600179 -0.330105 1.67973 -0.607179 -0.333769 1.04973 -0.607179 -0.329519 1.04973 -0.609179 -0.351519 1.04973 -0.607179 -0.351519 1.04973 -0.603843 -0.347269 1.04973 -0.600179 -0.353033 1.67973 -0.599929 -0.354319 1.04973 -0.599929 -0.354319 1.67973 -0.599879 -0.355519 1.67973 -0.599879 -0.355519 1.04973 -0.599929 -0.356719 1.67973 -0.600179 -0.358005 1.67973 -0.600179 -0.358005 1.04973 -0.600179 -0.360105 1.67973 -0.603843 -0.363769 1.67973 -0.600179 -0.360105 1.04973 -0.607179 -0.359519 1.67973 -0.609179 -0.359519 1.04973 -0.607179 -0.381519 1.04973 -0.600179 -0.380933 1.67973 -0.603843 -0.377269 1.04973 -0.599879 -0.385519 1.04973 -0.600179 -0.388005 1.67973 -0.600179 -0.388005 1.04973 -0.607179 -0.393769 1.04973 -0.607179 -0.389519 1.67973 -0.607179 -0.389519 1.04973 -0.609179 -0.389519 1.04973 -0.609179 -0.411519 1.04973 -0.607179 -0.411519 1.67973 -0.607179 -0.411519 1.04973 -0.603843 -0.407269 1.67973 -0.600179 -0.410933 1.67973 -0.600179 -0.413033 1.67973 -0.600179 -0.413033 1.04973 -0.599879 -0.415519 1.04973 -0.599879 -0.415519 1.67973 -0.599929 -0.416719 1.04973 -0.599929 -0.416719 1.67973 -0.600179 -0.418005 1.67973 -0.600179 -0.418005 1.04973 -0.600179 -0.420105 1.67973 -0.603843 -0.423769 1.67973 -0.607179 -0.419519 1.67973 -0.609179 -0.419519 1.04973 -0.609179 -0.441519 1.67973 -0.607179 -0.441519 1.04973 -0.607179 -0.441519 1.67973 -0.600179 -0.440933 1.67973 -0.600179 -0.443033 1.67973 -0.599929 -0.444319 1.67973 -0.599929 -0.444319 1.04973 -0.599879 -0.445519 1.04973 -0.599879 -0.445519 1.67973 -0.599929 -0.446719 1.67973 -0.600179 -0.448005 1.67973 -0.600179 -0.448005 1.04973 -0.600179 -0.450105 1.04973 -0.603843 -0.453769 1.67973 -0.609179 -0.449519 1.04973 -0.607179 -0.449519 1.04973 -0.607179 -0.453769 1.04973 -0.603843 -0.453769 1.04973 -0.598764 -0.451519 1.04973 -0.599929 -0.446719 1.04973 -0.600179 -0.443033 1.04973 -0.609179 -0.441519 1.04973 -0.607179 -0.423769 1.04973 -0.603843 -0.423769 1.04973 -0.600179 -0.420105 1.04973 -0.607179 -0.419519 1.04973 -0.599929 -0.414319 1.04973 -0.603843 -0.407269 1.04973 -0.607179 -0.407269 1.04973 -0.603843 -0.393769 1.04973 -0.599199 -0.391812 1.04973 -0.600179 -0.390105 1.04973 -0.599929 -0.386719 1.04973 -0.599929 -0.384319 1.04973 -0.600179 -0.383033 1.04973 -0.600179 -0.380933 1.04973 -0.607179 -0.363769 1.04973 -0.603843 -0.363769 1.04973 -0.599929 -0.356719 1.04973 -0.609179 -0.381519 1.04973 -0.607179 -0.359519 1.04973 -0.600179 -0.353033 1.04973 -0.603843 -0.333769 1.04973 -0.602763 -0.335376 1.04973 -0.599929 -0.326719 1.04973 -0.609179 -0.329519 1.04973 -0.600179 -0.330105 1.04973 -0.599929 -0.324319 1.04973 -0.600185 -0.324876 1.04973 -0.600179 -0.320933 1.04973 -0.603843 -0.317269 1.04973 -0.607179 -0.303769 1.04973 -0.609179 -0.299519 1.04973 -0.600179 -0.300105 1.04973 -0.607179 -0.287269 1.04973 -0.599929 -0.266719 1.04973 -0.609179 -0.269519 1.04973 -0.607179 -0.273769 1.04973 -0.600179 -0.270105 1.04973 -0.600179 -0.260933 1.04973 -0.607179 -0.257269 1.04973 -0.599929 -0.236719 1.04973 -0.599929 -0.234319 1.04973 -0.600179 -0.230933 1.04973 -0.603843 -0.227269 1.04973 -0.607179 -0.213769 1.04973 -0.603843 -0.213769 1.04973 -0.607179 -0.227269 1.04973 -0.603843 -0.197269 1.04973 -0.607179 -0.197269 1.04973 -0.607179 -0.183769 1.04973 -0.603843 -0.183769 1.04973 -0.609179 -0.179519 1.04973 -0.600179 -0.180105 1.04973 -0.598764 -0.169519 1.04973 -0.596665 -0.169519 1.04973 -0.595379 -0.169769 1.04973 -0.600179 -0.173033 1.04973 -0.600179 -0.170933 1.04973 -0.603843 -0.167269 1.04973 -0.607179 -0.167269 1.04973 -0.594179 -0.169819 1.04973 -0.592979 -0.169769 1.04973 -0.585929 -0.162519 1.04973 -0.581179 -0.171519 1.04973 -0.579179 -0.171519 1.04973 -0.588429 -0.176719 1.04973 -0.588179 -0.180105 1.04973 -0.584514 -0.183769 1.04973 -0.581179 -0.183769 1.04973 -0.581179 -0.197269 1.04973 -0.584514 -0.197269 1.04973 -0.588479 -0.205519 1.04973 -0.579179 -0.201519 1.04973 -0.588179 -0.203033 1.04973 -0.588179 -0.208005 1.04973 -0.588179 -0.210105 1.04973 -0.588179 -0.230933 1.04973 -0.581179 -0.209519 1.04973 -0.579179 -0.231519 1.04973 -0.588179 -0.233033 1.04973 -0.584514 -0.243769 1.04973 -0.581179 -0.243769 1.04973 -0.581179 -0.257269 1.04973 -0.584514 -0.257269 1.04973 -0.588179 -0.263033 1.04973 -0.588179 -0.268005 1.04973 -0.584514 -0.273769 1.04973 -0.581779 -0.276669 1.04973 -0.581179 -0.273769 1.04973 -0.581179 -0.287269 1.04973 -0.584514 -0.287269 1.04973 -0.589159 -0.289226 1.04973 -0.588429 -0.294319 1.04973 -0.588429 -0.296719 1.04973 -0.588179 -0.300105 1.04973 -0.581179 -0.303769 1.04973 -0.581179 -0.317269 1.04973 -0.584514 -0.317269 1.04973 -0.588179 -0.320933 1.04973 -0.589159 -0.319226 1.04973 -0.579179 -0.299519 1.04973 -0.588429 -0.324319 1.04973 -0.579179 -0.329519 1.04973 -0.581179 -0.333769 1.04973 -0.588179 -0.350933 1.04973 -0.588429 -0.354319 1.04973 -0.588179 -0.358005 1.04973 -0.584514 -0.363769 1.04973 -0.579179 -0.381519 1.04973 -0.581179 -0.381519 1.04973 -0.584514 -0.377269 1.04973 -0.581179 -0.377269 1.04973 -0.588179 -0.383033 1.04973 -0.588429 -0.384319 1.04973 -0.589159 -0.391812 1.04973 -0.581179 -0.389519 1.04973 -0.581179 -0.411519 1.04973 -0.584514 -0.407269 1.04973 -0.584514 -0.423769 1.04973 -0.581179 -0.423769 1.04973 -0.579179 -0.441519 1.04973 -0.581179 -0.441519 1.04973 -0.588179 -0.443033 1.04973 -0.588429 -0.444319 1.04973 -0.588179 -0.440933 1.04973 -0.588179 -0.450105 1.04973 -0.584514 -0.453769 1.04973 -0.589593 -0.451519 1.04973 -0.592979 -0.451269 1.04973 -0.581179 -0.460519 1.04973 -0.581179 -0.453769 1.04973 -0.579179 -0.449519 1.04973 -0.595379 -0.451269 1.04973 -0.596665 -0.451519 1.04973 -0.589866 -0.199519 1.04973 -0.594127 -0.300966 1.04974 -0.592747 -0.289519 1.04973 -0.59561 -0.289519 1.04973 -0.588179 -0.330105 1.04973 -0.588179 -0.360105 1.04973 -0.598492 -0.391519 1.04973 -0.588179 -0.390105 1.04973 -0.588179 -0.420105 1.04973 -0.589593 -0.169519 1.04973 -0.591693 -0.169519 1.04973 -0.607179 -0.347269 1.04973 -0.600179 -0.350933 1.04973 -0.581179 -0.347269 1.04973 -0.607179 -0.377269 1.04973 -0.581179 -0.363769 1.04973 -0.600179 -0.410933 1.04973 -0.581179 -0.393769 1.04973 -0.607179 -0.437269 1.04973 -0.603843 -0.437269 1.04973 -0.600179 -0.440933 1.04973 -0.584514 -0.437269 1.04973 -0.583833 -0.435369 1.04973 -0.606579 -0.426669 1.67973 -0.605579 -0.425669 1.67973 -0.606579 -0.426669 1.04973 -0.606391 -0.426071 1.67971 -0.606385 -0.426171 1.35081 -0.605579 -0.425669 1.04973 -0.606151 -0.435204 1.6797 -0.606579 -0.434369 1.67973 -0.605579 -0.435369 1.04973 -0.606579 -0.434369 1.04973 -0.602763 -0.435662 1.04973 -0.602763 -0.435662 1.67973 -0.60347 -0.435369 1.67973 -0.60347 -0.435369 1.04973 -0.599199 -0.439226 1.04973 -0.599199 -0.439226 1.67973 -0.598492 -0.439519 1.04973 -0.59561 -0.439519 1.67973 -0.59891 -0.439415 1.3661 -0.59561 -0.439519 1.04973 -0.592747 -0.439519 1.67973 -0.594207 -0.440032 1.04976 -0.594168 -0.440028 1.6797 -0.594643 -0.439951 1.21513 -0.592747 -0.439519 1.04973 -0.589866 -0.439519 1.04973 -0.589159 -0.439226 1.67973 -0.589159 -0.439226 1.04973 -0.589866 -0.439519 1.67973 -0.585594 -0.435662 1.04973 -0.585594 -0.435662 1.67973 -0.585306 -0.435473 1.3661 -0.581779 -0.434369 1.04973 -0.584887 -0.435369 1.67973 -0.58234 -0.435249 1.38373 -0.581779 -0.434369 1.67973 -0.582779 -0.425669 1.04973 -0.581779 -0.426669 1.04973 -0.581779 -0.426669 1.67973 -0.582095 -0.425878 1.67971 -0.583833 -0.425669 1.67973 -0.581947 -0.426145 1.35528 -0.585594 -0.425376 1.04973 -0.585594 -0.425376 1.67973 -0.584887 -0.425669 1.04973 -0.589866 -0.421519 1.67973 -0.589447 -0.421623 1.3661 -0.589159 -0.421812 1.67973 -0.589159 -0.421812 1.04973 -0.589866 -0.421519 1.04973 -0.592747 -0.421519 1.67973 -0.592747 -0.421519 1.04973 -0.594174 -0.420953 1.67972 -0.594155 -0.420977 1.04973 -0.59561 -0.421519 1.67973 -0.59561 -0.421519 1.04973 -0.599199 -0.421812 1.67973 -0.598492 -0.421519 1.67973 -0.598492 -0.421519 1.04973 -0.598722 -0.421571 1.36377 -0.599199 -0.421812 1.04973 -0.60347 -0.425669 1.67973 -0.602763 -0.425376 1.67973 -0.602763 -0.425376 1.04973 -0.60347 -0.425669 1.04973 -0.607179 -0.453769 1.67973 -0.598179 -0.458519 1.67973 -0.596665 -0.451519 1.67973 -0.592979 -0.451269 1.67973 -0.589593 -0.451519 1.67973 -0.585929 -0.455183 1.67973 -0.584514 -0.453769 1.67973 -0.585929 -0.458519 1.67973 -0.581179 -0.453769 1.67973 -0.581179 -0.449519 1.67973 -0.579179 -0.449519 1.67973 -0.588429 -0.446719 1.67973 -0.588429 -0.444319 1.67973 -0.581179 -0.441519 1.67973 -0.579179 -0.441519 1.67973 -0.588179 -0.420105 1.67973 -0.588429 -0.416719 1.67973 -0.588479 -0.415519 1.67973 -0.584514 -0.407269 1.67973 -0.585594 -0.405662 1.67973 -0.581179 -0.393769 1.67973 -0.584514 -0.393769 1.67973 -0.588179 -0.390105 1.67973 -0.588429 -0.386719 1.67973 -0.588179 -0.383033 1.67973 -0.588179 -0.380933 1.67973 -0.579179 -0.381519 1.67973 -0.581179 -0.363769 1.67973 -0.584514 -0.363769 1.67973 -0.579179 -0.359519 1.67973 -0.588179 -0.358005 1.67973 -0.588429 -0.356719 1.67973 -0.588179 -0.353033 1.67973 -0.581179 -0.347269 1.67973 -0.581179 -0.351519 1.67973 -0.581179 -0.333769 1.67973 -0.584514 -0.333769 1.67973 -0.588429 -0.326719 1.67973 -0.588429 -0.324319 1.67973 -0.581179 -0.321519 1.67973 -0.584514 -0.303769 1.67973 -0.588179 -0.300105 1.67973 -0.588429 -0.296719 1.67973 -0.579179 -0.321519 1.67973 -0.581179 -0.299519 1.67973 -0.588479 -0.295519 1.67973 -0.588429 -0.294319 1.67973 -0.584514 -0.287269 1.67973 -0.582779 -0.285369 1.67973 -0.589159 -0.271812 1.67973 -0.588429 -0.266719 1.67973 -0.581179 -0.291519 1.67973 -0.581179 -0.287269 1.67973 -0.581179 -0.273769 1.67973 -0.588179 -0.270105 1.67973 -0.588179 -0.260933 1.67973 -0.588179 -0.240105 1.67973 -0.579179 -0.261519 1.67973 -0.579179 -0.239519 1.67973 -0.584514 -0.213769 1.67973 -0.579179 -0.231519 1.67973 -0.579179 -0.209519 1.67973 -0.581179 -0.213769 1.67973 -0.588179 -0.208005 1.67973 -0.588429 -0.206719 1.67973 -0.588479 -0.205519 1.67973 -0.588429 -0.204319 1.67973 -0.584514 -0.197269 1.67973 -0.581179 -0.197269 1.67973 -0.581179 -0.183769 1.67973 -0.584514 -0.183769 1.67973 -0.588429 -0.176719 1.67973 -0.579179 -0.201519 1.67973 -0.579179 -0.179519 1.67973 -0.591693 -0.169519 1.67973 -0.592979 -0.169769 1.67973 -0.588179 -0.170933 1.67973 -0.589593 -0.169519 1.67973 -0.581179 -0.167269 1.67973 -0.579179 -0.171519 1.67973 -0.590179 -0.160519 1.67973 -0.602429 -0.162519 1.67973 -0.598179 -0.160519 1.67973 -0.607179 -0.167269 1.67973 -0.607179 -0.171519 1.67973 -0.599879 -0.175519 1.67973 -0.603843 -0.183769 1.67973 -0.607179 -0.183769 1.67973 -0.603843 -0.197269 1.67973 -0.607179 -0.201519 1.67973 -0.600179 -0.208005 1.67973 -0.600179 -0.210105 1.67973 -0.603843 -0.213769 1.67973 -0.607179 -0.213769 1.67973 -0.607179 -0.227269 1.67973 -0.603843 -0.227269 1.67973 -0.600179 -0.230933 1.67973 -0.599929 -0.234319 1.67973 -0.609179 -0.231519 1.67973 -0.600179 -0.238005 1.67973 -0.602763 -0.245376 1.67973 -0.603843 -0.243769 1.67973 -0.607179 -0.257269 1.67973 -0.603843 -0.257269 1.67973 -0.599199 -0.259226 1.67973 -0.609179 -0.239519 1.67973 -0.607179 -0.243769 1.67973 -0.609179 -0.261519 1.67973 -0.607179 -0.261519 1.67973 -0.600179 -0.263033 1.67973 -0.599929 -0.266719 1.67973 -0.600179 -0.270105 1.67973 -0.603843 -0.273769 1.67973 -0.607179 -0.287269 1.67973 -0.603843 -0.287269 1.67973 -0.607179 -0.269519 1.67973 -0.607179 -0.273769 1.67973 -0.600179 -0.293033 1.67973 -0.599929 -0.296719 1.67973 -0.600179 -0.298005 1.67973 -0.600179 -0.300105 1.67973 -0.609179 -0.321519 1.67973 -0.600179 -0.320933 1.67973 -0.603843 -0.317269 1.67973 -0.599929 -0.326719 1.67973 -0.603843 -0.333769 1.67973 -0.607179 -0.329519 1.67973 -0.609179 -0.329519 1.67973 -0.609179 -0.351519 1.67973 -0.607179 -0.351519 1.67973 -0.607179 -0.347269 1.67973 -0.600179 -0.350933 1.67973 -0.609179 -0.359519 1.67973 -0.609179 -0.381519 1.67973 -0.607179 -0.381519 1.67973 -0.603843 -0.377269 1.67973 -0.604524 -0.375369 1.67973 -0.607179 -0.377269 1.67973 -0.600179 -0.383033 1.67973 -0.599929 -0.384319 1.67973 -0.599879 -0.385519 1.67973 -0.599929 -0.386719 1.67973 -0.603843 -0.393769 1.67973 -0.609179 -0.389519 1.67973 -0.609179 -0.411519 1.67973 -0.599929 -0.414319 1.67973 -0.609179 -0.419519 1.67973 -0.607179 -0.437269 1.67973 -0.603843 -0.437269 1.67973 -0.598492 -0.199519 1.67973 -0.59749 -0.234019 1.67958 -0.592747 -0.229519 1.67973 -0.589866 -0.289519 1.67973 -0.592061 -0.329687 1.67973 -0.588179 -0.350933 1.67973 -0.588479 -0.355519 1.67973 -0.597479 -0.359819 1.67973 -0.600179 -0.390105 1.67973 -0.597489 -0.447019 1.67961 -0.600179 -0.450105 1.67973 -0.598764 -0.169519 1.67973 -0.596665 -0.169519 1.67973 -0.595379 -0.169769 1.67973 -0.607179 -0.303769 1.67973 -0.581179 -0.317269 1.67973 -0.584514 -0.317269 1.67973 -0.607179 -0.333769 1.67973 -0.584514 -0.347269 1.67973 -0.603843 -0.347269 1.67973 -0.607179 -0.363769 1.67973 -0.602763 -0.365376 1.67973 -0.581179 -0.377269 1.67973 -0.584514 -0.377269 1.67973 -0.607179 -0.407269 1.67973 -0.607179 -0.393769 1.67973 -0.581179 -0.407269 1.67973 -0.607179 -0.423769 1.67973 -0.581179 -0.437269 1.67973 -0.588179 -0.440933 1.67973 -0.605579 -0.435369 1.67973 -0.605579 -0.405369 1.04973 -0.604524 -0.405369 1.67973 -0.606579 -0.404369 1.67973 -0.60624 -0.405128 1.67968 -0.606579 -0.404369 1.04973 -0.602763 -0.405662 1.04973 -0.60347 -0.405369 1.04973 -0.602763 -0.405662 1.67973 -0.599199 -0.409226 1.04973 -0.599199 -0.409226 1.67973 -0.59891 -0.409415 1.3661 -0.598492 -0.409519 1.67973 -0.59561 -0.409519 1.04973 -0.59561 -0.409519 1.67973 -0.594261 -0.410032 1.67956 -0.594242 -0.410013 1.04979 -0.592747 -0.409519 1.67973 -0.592747 -0.409519 1.04973 -0.589159 -0.409226 1.67973 -0.589159 -0.409226 1.04973 -0.589866 -0.409519 1.04973 -0.589866 -0.409519 1.67973 -0.584887 -0.405369 1.67973 -0.585594 -0.405662 1.04973 -0.585306 -0.405473 1.3661 -0.581779 -0.404369 1.67973 -0.582084 -0.405127 1.0498 -0.583833 -0.405369 1.04973 -0.582779 -0.405369 1.67973 -0.581779 -0.404369 1.04973 -0.583833 -0.395669 1.67973 -0.581779 -0.396669 1.67973 -0.581779 -0.396669 1.04973 -0.582779 -0.395669 1.04973 -0.582095 -0.395878 1.67971 -0.585594 -0.395376 1.67973 -0.584887 -0.395669 1.04973 -0.585594 -0.395376 1.04973 -0.589866 -0.391519 1.04973 -0.589866 -0.391519 1.67973 -0.589447 -0.391623 1.3661 -0.589159 -0.391812 1.67973 -0.592747 -0.391519 1.67973 -0.592747 -0.391519 1.04973 -0.59561 -0.391519 1.04973 -0.594174 -0.390953 1.67972 -0.594033 -0.391008 1.04973 -0.59561 -0.391519 1.67973 -0.599199 -0.391812 1.67973 -0.598722 -0.391571 1.36377 -0.598492 -0.391519 1.67973 -0.60347 -0.395669 1.67973 -0.602763 -0.395376 1.67973 -0.60347 -0.395669 1.04973 -0.602763 -0.395376 1.04973 -0.606579 -0.396669 1.67973 -0.606384 -0.396022 1.67971 -0.606192 -0.395952 1.34292 -0.606579 -0.396669 1.04973 -0.606454 -0.396158 1.04977 -0.605579 -0.395669 1.67973 -0.605579 -0.395669 1.04973 -0.605579 -0.375369 1.04973 -0.606579 -0.374369 1.67973 -0.606579 -0.374369 1.04973 -0.602763 -0.375662 1.67973 -0.60347 -0.375369 1.04973 -0.602763 -0.375662 1.04973 -0.599199 -0.379226 1.67973 -0.598492 -0.379519 1.67973 -0.598492 -0.379519 1.04973 -0.599199 -0.379226 1.04973 -0.59891 -0.379415 1.3661 -0.59561 -0.379519 1.04973 -0.592747 -0.379519 1.04973 -0.594105 -0.380054 1.67969 -0.593584 -0.379877 1.34083 -0.59561 -0.379519 1.67973 -0.594295 -0.380023 1.04977 -0.591306 -0.379519 1.67973 -0.593058 -0.379628 1.67973 -0.589159 -0.379226 1.67973 -0.589866 -0.379519 1.04973 -0.589635 -0.379467 1.36377 -0.589159 -0.379226 1.04973 -0.585594 -0.375662 1.67973 -0.585594 -0.375662 1.04973 -0.585306 -0.375473 1.3661 -0.583833 -0.375369 1.67973 -0.58191 -0.374853 1.3486 -0.582084 -0.375069 1.04976 -0.582027 -0.375071 1.67957 -0.583833 -0.375369 1.04973 -0.581779 -0.374369 1.67973 -0.581779 -0.374369 1.04973 -0.582779 -0.365669 1.67973 -0.581779 -0.366669 1.67973 -0.582077 -0.365903 1.67973 -0.582211 -0.365911 1.36835 -0.581779 -0.366669 1.04973 -0.582779 -0.365669 1.04973 -0.584887 -0.365669 1.67973 -0.585594 -0.365376 1.04973 -0.585594 -0.365376 1.67973 -0.584887 -0.365669 1.04973 -0.589159 -0.361812 1.04973 -0.589159 -0.361812 1.67973 -0.589866 -0.361519 1.67973 -0.589866 -0.361519 1.04973 -0.589447 -0.361623 1.3661 -0.592747 -0.361519 1.67973 -0.594174 -0.360953 1.67972 -0.592747 -0.361519 1.04973 -0.594269 -0.361009 1.04976 -0.59561 -0.361519 1.67973 -0.59561 -0.361519 1.04973 -0.599199 -0.361812 1.04973 -0.598492 -0.361519 1.04973 -0.598722 -0.361571 1.36377 -0.598492 -0.361519 1.67973 -0.599199 -0.361812 1.67973 -0.602763 -0.365376 1.04973 -0.60347 -0.365669 1.04973 -0.606579 -0.366669 1.04973 -0.60347 -0.365669 1.67973 -0.606404 -0.366068 1.67972 -0.606579 -0.366669 1.67973 -0.605579 -0.365669 1.04973 -0.606579 -0.344369 1.67973 -0.605579 -0.345369 1.67973 -0.606579 -0.344369 1.04973 -0.605579 -0.345369 1.04973 -0.60347 -0.345369 1.67973 -0.602763 -0.345662 1.67973 -0.60347 -0.345369 1.04973 -0.602763 -0.345662 1.04973 -0.599199 -0.349226 1.67973 -0.598492 -0.349519 1.04973 -0.598492 -0.349519 1.67973 -0.599199 -0.349226 1.04973 -0.59891 -0.349415 1.3661 -0.59561 -0.349519 1.67973 -0.59561 -0.349519 1.04973 -0.594112 -0.350042 1.6797 -0.592747 -0.349519 1.04973 -0.592747 -0.349519 1.67973 -0.589159 -0.349226 1.04973 -0.589159 -0.349226 1.67973 -0.589866 -0.349519 1.04973 -0.589866 -0.349519 1.67973 -0.585594 -0.345662 1.67973 -0.584887 -0.345369 1.04973 -0.585594 -0.345662 1.04973 -0.585306 -0.345473 1.3661 -0.583833 -0.345369 1.67973 -0.582779 -0.345369 1.04973 -0.582027 -0.345072 1.67957 -0.581779 -0.344369 1.67973 -0.581779 -0.344369 1.04973 -0.581779 -0.336669 1.04973 -0.582779 -0.335669 1.67973 -0.582779 -0.335669 1.04973 -0.581779 -0.336669 1.67973 -0.582114 -0.336023 1.34328 -0.584887 -0.335669 1.67973 -0.585594 -0.335376 1.67973 -0.584887 -0.335669 1.04973 -0.585594 -0.335376 1.04973 -0.589866 -0.331519 1.04973 -0.589159 -0.331812 1.67973 -0.589866 -0.331519 1.67973 -0.589159 -0.331812 1.04973 -0.589447 -0.331623 1.3661 -0.592747 -0.331519 1.67973 -0.59383 -0.33107 1.39387 -0.592747 -0.331519 1.04973 -0.594156 -0.331043 1.67969 -0.594694 -0.331122 1.44007 -0.594144 -0.330973 1.04975 -0.595299 -0.33141 1.67973 -0.59561 -0.331519 1.04973 -0.598492 -0.331519 1.67973 -0.595448 -0.331483 1.36448 -0.599199 -0.331812 1.67973 -0.598722 -0.331571 1.36377 -0.598492 -0.331519 1.04973 -0.599199 -0.331812 1.04973 -0.60347 -0.335669 1.04973 -0.602763 -0.335376 1.67973 -0.60347 -0.335669 1.67973 -0.606579 -0.336669 1.04973 -0.605579 -0.335669 1.67973 -0.605579 -0.335669 1.04973 -0.606579 -0.336669 1.67973 -0.605957 -0.185755 1.35256 -0.605579 -0.185669 1.04973 -0.606383 -0.186039 1.04974 -0.606579 -0.186669 1.04973 -0.604524 -0.185669 1.67973 -0.605666 -0.185673 1.3661 -0.605957 -0.185755 1.33716 -0.605957 -0.185755 1.36703 -0.606363 -0.18597 1.6797 -0.606579 -0.186669 1.67973 -0.606472 -0.186253 1.41866 -0.60347 -0.185669 1.04973 -0.602763 -0.185376 1.04973 -0.602763 -0.185376 1.67973 -0.598492 -0.181519 1.04973 -0.598492 -0.181519 1.67973 -0.599199 -0.181812 1.67973 -0.599199 -0.181812 1.04973 -0.59561 -0.181519 1.67973 -0.594146 -0.181 1.67969 -0.593497 -0.181174 1.35375 -0.594158 -0.181078 1.04975 -0.594411 -0.181053 1.3067 -0.59561 -0.181519 1.04973 -0.592747 -0.181519 1.04973 -0.592747 -0.181519 1.67973 -0.589159 -0.181812 1.04973 -0.589866 -0.181519 1.67973 -0.589159 -0.181812 1.67973 -0.589866 -0.181519 1.04973 -0.589447 -0.181623 1.3661 -0.585594 -0.185376 1.04973 -0.585594 -0.185376 1.67973 -0.584887 -0.185669 1.04973 -0.581779 -0.186669 1.04973 -0.583833 -0.185669 1.67973 -0.581942 -0.186146 1.31907 -0.581779 -0.186669 1.67973 -0.582779 -0.185669 1.04973 -0.582779 -0.195369 1.67973 -0.581779 -0.194369 1.67973 -0.581779 -0.194369 1.04973 -0.583833 -0.195369 1.04973 -0.582021 -0.195013 1.0498 -0.584887 -0.195369 1.67973 -0.585594 -0.195662 1.67973 -0.585594 -0.195662 1.04973 -0.585306 -0.195473 1.3661 -0.589866 -0.199519 1.67973 -0.589159 -0.199226 1.04973 -0.589159 -0.199226 1.67973 -0.592747 -0.199519 1.04973 -0.592747 -0.199519 1.67973 -0.593965 -0.201799 1.68035 -0.59561 -0.199519 1.04973 -0.593867 -0.199973 1.38717 -0.594152 -0.200087 1.04973 -0.59561 -0.199519 1.67973 -0.599199 -0.199226 1.04973 -0.598492 -0.199519 1.04973 -0.599199 -0.199226 1.67973 -0.598791 -0.199469 1.36797 -0.602763 -0.195662 1.67973 -0.602763 -0.195662 1.04973 -0.604524 -0.195369 1.67973 -0.606579 -0.194369 1.67973 -0.604524 -0.195369 1.04973 -0.60633 -0.195093 1.67973 -0.606579 -0.194369 1.04973 -0.606338 -0.195121 1.04978 -0.605579 -0.215669 1.67973 -0.606331 -0.216013 1.6797 -0.605579 -0.215669 1.04973 -0.606579 -0.216669 1.67973 -0.606579 -0.216669 1.04973 -0.602763 -0.215376 1.67973 -0.60347 -0.215669 1.67973 -0.602763 -0.215376 1.04973 -0.60347 -0.215669 1.04973 -0.598492 -0.211519 1.67973 -0.598492 -0.211519 1.04973 -0.598722 -0.211571 1.36377 -0.599199 -0.211812 1.67973 -0.599199 -0.211812 1.04973 -0.59561 -0.211519 1.67973 -0.59561 -0.211519 1.04973 -0.594245 -0.210966 1.67972 -0.593497 -0.211174 1.35375 -0.592747 -0.211519 1.04973 -0.592747 -0.211519 1.67973 -0.589866 -0.211519 1.67973 -0.589159 -0.211812 1.67973 -0.589159 -0.211812 1.04973 -0.589866 -0.211519 1.04973 -0.589447 -0.211623 1.3661 -0.584887 -0.215669 1.04973 -0.585594 -0.215376 1.67973 -0.585594 -0.215376 1.04973 -0.583833 -0.215669 1.67973 -0.582779 -0.215669 1.04973 -0.581779 -0.216669 1.04973 -0.581779 -0.216669 1.67973 -0.581779 -0.224369 1.67973 -0.582779 -0.225369 1.67973 -0.581779 -0.224369 1.04973 -0.583833 -0.225369 1.04973 -0.582014 -0.225005 1.0498 -0.585594 -0.225662 1.67973 -0.585594 -0.225662 1.04973 -0.585306 -0.225473 1.3661 -0.584887 -0.225369 1.67973 -0.589866 -0.229519 1.67973 -0.589866 -0.229519 1.04973 -0.589159 -0.229226 1.04973 -0.589159 -0.229226 1.67973 -0.589635 -0.229467 1.36377 -0.592747 -0.229519 1.04973 -0.594088 -0.230035 1.04983 -0.594643 -0.229951 1.24621 -0.59561 -0.229519 1.04973 -0.598492 -0.229519 1.04973 -0.599199 -0.229226 1.67973 -0.59891 -0.229416 1.3661 -0.599199 -0.229226 1.04973 -0.59561 -0.229519 1.67973 -0.60347 -0.225369 1.67973 -0.602763 -0.225662 1.67973 -0.602763 -0.225662 1.04973 -0.604524 -0.225369 1.04973 -0.605579 -0.225369 1.67973 -0.606296 -0.225105 1.67969 -0.606579 -0.224369 1.67973 -0.606579 -0.224369 1.04973 -0.606579 -0.246669 1.67973 -0.604524 -0.245669 1.67973 -0.606579 -0.246669 1.04973 -0.605579 -0.245669 1.04973 -0.606335 -0.246076 1.33281 -0.606103 -0.245816 1.67965 -0.60347 -0.245669 1.04973 -0.602763 -0.245376 1.04973 -0.598492 -0.241519 1.67973 -0.598492 -0.241519 1.04973 -0.599199 -0.241812 1.04973 -0.599199 -0.241812 1.67973 -0.595448 -0.241484 1.36448 -0.59561 -0.241519 1.67973 -0.59561 -0.241519 1.04973 -0.594146 -0.241 1.67969 -0.593497 -0.241174 1.35375 -0.594233 -0.240993 1.04978 -0.592747 -0.241519 1.04973 -0.592747 -0.241519 1.67973 -0.589866 -0.241519 1.67973 -0.589159 -0.241812 1.67973 -0.589866 -0.241519 1.04973 -0.589159 -0.241812 1.04973 -0.589447 -0.241623 1.3661 -0.585594 -0.245376 1.04973 -0.585594 -0.245376 1.67973 -0.584887 -0.245669 1.67973 -0.581779 -0.246669 1.04973 -0.583833 -0.245669 1.04973 -0.582095 -0.245878 1.67971 -0.582163 -0.24596 1.36046 -0.582779 -0.245669 1.67973 -0.581779 -0.246669 1.67973 -0.58201 -0.246028 1.04975 -0.582779 -0.255369 1.67973 -0.581779 -0.254369 1.67973 -0.582779 -0.255369 1.04973 -0.582233 -0.255204 1.04978 -0.581779 -0.254369 1.04973 -0.584887 -0.255369 1.67973 -0.585594 -0.255662 1.04973 -0.585594 -0.255662 1.67973 -0.585306 -0.255473 1.3661 -0.584887 -0.255369 1.04973 -0.589866 -0.259519 1.04973 -0.589159 -0.259226 1.04973 -0.589866 -0.259519 1.67973 -0.589159 -0.259226 1.67973 -0.592747 -0.259519 1.04973 -0.594164 -0.260074 1.67971 -0.59561 -0.259519 1.67973 -0.592747 -0.259519 1.67973 -0.594228 -0.260056 1.04977 -0.59561 -0.259519 1.04973 -0.599199 -0.259226 1.04973 -0.598492 -0.259519 1.67973 -0.59891 -0.259416 1.3661 -0.598492 -0.259519 1.04973 -0.602763 -0.255662 1.67973 -0.60347 -0.255369 1.67973 -0.605579 -0.255369 1.04973 -0.602763 -0.255662 1.04973 -0.606579 -0.254369 1.67973 -0.606579 -0.254369 1.04973 -0.605579 -0.255369 1.67973 -0.606579 -0.276669 1.04973 -0.606452 -0.276148 1.04975 -0.605579 -0.275669 1.67973 -0.606252 -0.27602 1.35659 -0.606579 -0.276669 1.67973 -0.605579 -0.275669 1.04973 -0.60347 -0.275669 1.67973 -0.602763 -0.275376 1.67973 -0.60347 -0.275669 1.04973 -0.602763 -0.275376 1.04973 -0.598492 -0.271519 1.04973 -0.599199 -0.271812 1.04973 -0.599199 -0.271812 1.67973 -0.595299 -0.27141 1.67973 -0.598492 -0.271519 1.67973 -0.595448 -0.271483 1.36448 -0.59561 -0.271519 1.04973 -0.592747 -0.271519 1.67973 -0.59425 -0.270991 1.04973 -0.594174 -0.270953 1.67972 -0.592747 -0.271519 1.04973 -0.589159 -0.271812 1.04973 -0.589866 -0.271519 1.67973 -0.589866 -0.271519 1.04973 -0.589447 -0.271623 1.3661 -0.584887 -0.275669 1.67973 -0.583833 -0.275669 1.04973 -0.585594 -0.275376 1.67973 -0.585594 -0.275376 1.04973 -0.582095 -0.275878 1.67971 -0.582779 -0.275669 1.67973 -0.581779 -0.276669 1.67973 -0.581939 -0.276154 1.37951 -0.582779 -0.285369 1.04973 -0.581779 -0.284369 1.67973 -0.581779 -0.284369 1.04973 -0.584887 -0.285369 1.67973 -0.585594 -0.285662 1.04973 -0.585306 -0.285473 1.3661 -0.585594 -0.285662 1.67973 -0.584887 -0.285369 1.04973 -0.589159 -0.289226 1.67973 -0.589866 -0.289519 1.04973 -0.589635 -0.289467 1.36377 -0.592747 -0.289519 1.67973 -0.594253 -0.290094 1.04974 -0.594092 -0.290002 1.67969 -0.59561 -0.289519 1.67973 -0.599199 -0.289226 1.04973 -0.59891 -0.289416 1.3661 -0.598492 -0.289519 1.67973 -0.598492 -0.289519 1.04973 -0.599199 -0.289226 1.67973 -0.60347 -0.285369 1.04973 -0.602763 -0.285662 1.67973 -0.602763 -0.285662 1.04973 -0.60347 -0.285369 1.67973 -0.603132 -0.285439 1.3661 -0.605579 -0.285369 1.04973 -0.606579 -0.284369 1.67973 -0.605579 -0.285369 1.67973 -0.606579 -0.284369 1.04973 -0.606319 -0.28499 1.38045 -0.606579 -0.306669 1.04973 -0.605579 -0.305669 1.67973 -0.606579 -0.306669 1.67973 -0.606364 -0.306065 1.17678 -0.605957 -0.305755 1.19201 -0.605579 -0.305669 1.04973 -0.605957 -0.305755 1.17661 -0.605957 -0.305755 1.20648 -0.60347 -0.305669 1.67973 -0.602763 -0.305376 1.67973 -0.602763 -0.305376 1.04973 -0.60347 -0.305669 1.04973 -0.599199 -0.301812 1.04973 -0.598492 -0.301519 1.67973 -0.598492 -0.301519 1.04973 -0.599199 -0.301812 1.67973 -0.59561 -0.301519 1.67973 -0.592747 -0.301519 1.67973 -0.594174 -0.300953 1.67972 -0.59561 -0.301519 1.04973 -0.592747 -0.301519 1.04973 -0.589866 -0.301519 1.67973 -0.589159 -0.301812 1.67973 -0.589159 -0.301812 1.04973 -0.589866 -0.301519 1.04973 -0.585594 -0.305376 1.04973 -0.584887 -0.305669 1.04973 -0.585594 -0.305376 1.67973 -0.581779 -0.306669 1.67973 -0.583833 -0.305669 1.67973 -0.582224 -0.305841 1.67968 -0.581909 -0.306189 1.4539 -0.581779 -0.306669 1.04973 -0.582063 -0.305943 1.04974 -0.582779 -0.305669 1.04973 -0.582565 -0.305704 1.45396 -0.583833 -0.315369 1.67973 -0.582027 -0.315071 1.67957 -0.581779 -0.314369 1.67973 -0.581779 -0.314369 1.04973 -0.582779 -0.315369 1.04973 -0.585594 -0.315662 1.67973 -0.585594 -0.315662 1.04973 -0.585306 -0.315473 1.3661 -0.584887 -0.315369 1.04973 -0.589866 -0.319519 1.04973 -0.589159 -0.319226 1.67973 -0.589866 -0.319519 1.67973 -0.592747 -0.319519 1.67973 -0.592747 -0.319519 1.04973 -0.59414 -0.320012 1.67964 -0.594208 -0.319964 1.35364 -0.594206 -0.319981 1.04977 -0.595448 -0.319554 1.36448 -0.59561 -0.319519 1.67973 -0.59561 -0.319519 1.04973 -0.598492 -0.319519 1.67973 -0.599199 -0.319226 1.67973 -0.599199 -0.319226 1.04973 -0.598492 -0.319519 1.04973 -0.602763 -0.315662 1.67973 -0.60347 -0.315369 1.67973 -0.602763 -0.315662 1.04973 -0.603132 -0.315439 1.3661 -0.605579 -0.315369 1.67973 -0.606579 -0.314369 1.67973 -0.606579 -0.314369 1.04973 -0.604524 -0.315369 1.04973 -0.598422 -0.177891 1.04973 -0.598479 -0.17849 1.67973 -0.597752 -0.177186 1.67973 -0.597386 -0.176774 1.67969 -0.597415 -0.176924 1.36603 -0.597415 -0.176924 1.35102 -0.597415 -0.176924 1.33451 -0.597415 -0.176924 1.29961 -0.597566 -0.175667 1.15401 -0.597603 -0.177116 1.04973 -0.597901 -0.177255 1.04973 -0.597553 -0.175224 1.38837 -0.597489 -0.17402 1.67959 -0.597385 -0.174266 1.04985 -0.597867 -0.173764 1.04973 -0.598294 -0.173379 1.41506 -0.598421 -0.172959 1.67971 -0.598479 -0.172219 1.04973 -0.598221 -0.171563 1.67972 -0.597479 -0.171219 1.04973 -0.597479 -0.171219 1.67973 -0.595999 -0.171714 1.67972 -0.596259 -0.17139 1.04976 -0.594731 -0.172199 1.67972 -0.595582 -0.172277 1.35848 -0.594701 -0.172202 1.04973 -0.594179 -0.172145 1.38679 -0.593074 -0.172303 1.67973 -0.592923 -0.172307 1.04973 -0.59179 -0.171291 1.67972 -0.592512 -0.171945 1.67973 -0.590148 -0.171548 1.04975 -0.591208 -0.171219 1.04973 -0.590108 -0.171592 1.6797 -0.589879 -0.172877 1.67973 -0.589879 -0.172548 1.04973 -0.590973 -0.174269 1.67963 -0.590805 -0.175224 1.31236 -0.590754 -0.173922 1.67973 -0.590756 -0.175519 1.67973 -0.590754 -0.173922 1.04973 -0.590942 -0.176924 1.26097 -0.590971 -0.176773 1.67962 -0.590942 -0.176924 1.29249 -0.590942 -0.176924 1.27598 -0.5905 -0.177269 1.04973 -0.590971 -0.176773 1.0499 -0.590754 -0.177116 1.67973 -0.590021 -0.177615 1.67961 -0.591536 -0.179819 1.67973 -0.590153 -0.17954 1.04979 -0.589879 -0.178819 1.67973 -0.589879 -0.17849 1.04973 -0.591536 -0.179819 1.04973 -0.592582 -0.178944 1.67973 -0.592786 -0.178763 1.46219 -0.592512 -0.179093 1.04973 -0.593074 -0.178735 1.04973 -0.593074 -0.178735 1.67973 -0.594239 -0.178936 1.04973 -0.594326 -0.178906 1.31236 -0.596231 -0.179653 1.04985 -0.595283 -0.178735 1.04973 -0.594731 -0.178839 1.6797 -0.596821 -0.179819 1.67973 -0.596005 -0.179302 1.67971 -0.597479 -0.179819 1.67973 -0.598249 -0.179562 1.04976 -0.598479 -0.178819 1.04973 -0.598144 -0.179585 1.67969 -0.596821 -0.179819 1.04973 -0.598479 -0.448161 1.67973 -0.598479 -0.448161 1.04973 -0.597498 -0.446072 1.67973 -0.597489 -0.447016 1.04978 -0.597573 -0.445592 1.27119 -0.597493 -0.44491 1.04974 -0.597394 -0.444414 1.67973 -0.597564 -0.443985 1.04984 -0.598001 -0.443658 1.67968 -0.598479 -0.442548 1.04973 -0.598479 -0.442548 1.67973 -0.598232 -0.441508 1.67971 -0.598252 -0.441459 1.04973 -0.596281 -0.441412 1.3682 -0.597479 -0.441219 1.04973 -0.595985 -0.441723 1.04974 -0.59715 -0.441219 1.67973 -0.596099 -0.441577 1.67972 -0.595433 -0.442312 1.67973 -0.595283 -0.442303 1.04973 -0.593552 -0.442204 1.6797 -0.593884 -0.442145 1.40737 -0.594118 -0.442102 1.04974 -0.592443 -0.441796 1.67973 -0.592267 -0.441576 1.04974 -0.592925 -0.442312 1.04973 -0.591776 -0.441285 1.67971 -0.591208 -0.441219 1.04973 -0.589879 -0.442877 1.67973 -0.590172 -0.441498 1.67972 -0.59041 -0.443687 1.04974 -0.589879 -0.442219 1.04973 -0.590963 -0.444414 1.67973 -0.590754 -0.443922 1.67973 -0.590779 -0.445519 1.26169 -0.59087 -0.444882 1.04976 -0.59086 -0.446072 1.67973 -0.590972 -0.446773 1.0499 -0.590605 -0.447185 1.04973 -0.590024 -0.447693 1.36452 -0.590345 -0.447395 1.67971 -0.590178 -0.449472 1.37179 -0.589879 -0.44849 1.67973 -0.589879 -0.448161 1.04973 -0.590185 -0.449448 1.04976 -0.590879 -0.449819 1.67973 -0.592287 -0.44939 1.67973 -0.592048 -0.449632 1.24581 -0.591208 -0.449819 1.04973 -0.592361 -0.449305 1.04977 -0.593074 -0.448735 1.67973 -0.592776 -0.448765 1.32992 -0.593074 -0.448735 1.04973 -0.594326 -0.448906 1.31236 -0.594761 -0.448835 1.04973 -0.595776 -0.448944 1.67973 -0.594731 -0.448839 1.67971 -0.595846 -0.449093 1.04973 -0.596246 -0.449654 1.67971 -0.597479 -0.449819 1.67973 -0.598223 -0.449548 1.67967 -0.596821 -0.449819 1.04973 -0.598479 -0.448819 1.04973 -0.597564 -0.417054 1.67961 -0.597498 -0.416072 1.67973 -0.597479 -0.416837 1.04976 -0.59749 -0.414018 1.6797 -0.597582 -0.415683 1.0498 -0.597579 -0.415519 1.38837 -0.597385 -0.414266 1.04975 -0.598479 -0.412219 1.67973 -0.597752 -0.413853 1.04973 -0.59715 -0.411219 1.04973 -0.596821 -0.411219 1.67973 -0.598235 -0.41146 1.04974 -0.598479 -0.412877 1.04973 -0.596103 -0.411533 1.3661 -0.595846 -0.411945 1.67973 -0.596042 -0.411618 1.04973 -0.595431 -0.4123 1.67973 -0.593884 -0.412145 1.40737 -0.594701 -0.412203 1.04973 -0.593626 -0.412199 1.67971 -0.592443 -0.411796 1.67973 -0.592267 -0.411577 1.04974 -0.592929 -0.412308 1.04973 -0.590133 -0.411547 1.67971 -0.590167 -0.411467 1.04982 -0.591208 -0.411219 1.04973 -0.591776 -0.411285 1.67971 -0.590754 -0.413922 1.67973 -0.589879 -0.412877 1.67973 -0.590066 -0.413453 1.04976 -0.589879 -0.412548 1.04973 -0.590963 -0.414414 1.67973 -0.590754 -0.413922 1.04973 -0.590865 -0.415024 1.04974 -0.590805 -0.415814 1.40737 -0.590942 -0.416924 1.43358 -0.590942 -0.416924 1.39456 -0.59086 -0.416072 1.67973 -0.590766 -0.41711 1.41707 -0.590963 -0.416624 1.04973 -0.590864 -0.416971 1.43095 -0.590942 -0.416924 1.41857 -0.590868 -0.417013 1.6797 -0.590071 -0.417661 1.31463 -0.590662 -0.417137 1.04982 -0.589947 -0.418042 1.67972 -0.591343 -0.419791 1.04973 -0.589879 -0.41849 1.04973 -0.590062 -0.419386 1.0498 -0.590879 -0.419819 1.67973 -0.592512 -0.419093 1.04973 -0.592061 -0.419687 1.67973 -0.592924 -0.418726 1.67954 -0.595283 -0.418735 1.04973 -0.594239 -0.418936 1.04974 -0.594326 -0.418906 1.31236 -0.593074 -0.418735 1.04973 -0.594731 -0.418839 1.67971 -0.595776 -0.418944 1.67973 -0.596246 -0.419654 1.67971 -0.595776 -0.418944 1.04973 -0.59715 -0.419819 1.04973 -0.598412 -0.418073 1.04975 -0.598479 -0.41849 1.67973 -0.598214 -0.41952 1.67966 -0.598227 -0.419505 1.04978 -0.59715 -0.419819 1.67973 -0.598479 -0.388161 1.67973 -0.597394 -0.386624 1.04973 -0.597385 -0.386772 1.6797 -0.597415 -0.386924 1.17691 -0.597415 -0.386924 1.14539 -0.597415 -0.386924 1.1619 -0.598123 -0.387456 1.04975 -0.597752 -0.387186 1.67973 -0.597394 -0.384414 1.67973 -0.597582 -0.385683 1.0498 -0.597579 -0.385519 1.38837 -0.597386 -0.384265 1.04983 -0.598045 -0.383628 1.67973 -0.598207 -0.383548 1.3063 -0.598479 -0.382877 1.04973 -0.598232 -0.381508 1.67971 -0.598479 -0.382548 1.67973 -0.598307 -0.381691 1.35332 -0.59715 -0.381219 1.67973 -0.597479 -0.381219 1.04973 -0.59627 -0.38142 1.39585 -0.595945 -0.381786 1.0498 -0.596086 -0.381581 1.67972 -0.595432 -0.38231 1.67973 -0.594119 -0.382102 1.04974 -0.593552 -0.382204 1.67968 -0.594179 -0.382119 1.38837 -0.592267 -0.381577 1.04974 -0.592925 -0.382312 1.04973 -0.592443 -0.381796 1.67973 -0.591536 -0.381219 1.67973 -0.589879 -0.382877 1.67973 -0.591208 -0.381219 1.04973 -0.590231 -0.381437 1.67973 -0.590146 -0.381508 1.04982 -0.589879 -0.382548 1.04973 -0.590972 -0.384266 1.67969 -0.590261 -0.383618 1.04974 -0.590805 -0.385814 1.40737 -0.59087 -0.384882 1.04976 -0.590973 -0.386772 1.04978 -0.590456 -0.387255 1.67973 -0.590942 -0.386924 1.22945 -0.590942 -0.386924 1.24446 -0.590942 -0.386924 1.26097 -0.590971 -0.386773 1.67963 -0.590456 -0.387255 1.04973 -0.589879 -0.388161 1.04973 -0.589879 -0.38849 1.67973 -0.590085 -0.389469 1.67971 -0.590185 -0.389448 1.04976 -0.591208 -0.389819 1.04973 -0.592561 -0.389036 1.04975 -0.592061 -0.389687 1.67972 -0.590879 -0.389819 1.67973 -0.593626 -0.388839 1.67971 -0.593074 -0.388735 1.04973 -0.592644 -0.388905 1.67956 -0.594326 -0.388906 1.31236 -0.594239 -0.388936 1.04974 -0.595431 -0.388725 1.67971 -0.595688 -0.388835 1.04978 -0.59715 -0.389819 1.04973 -0.595776 -0.388944 1.67973 -0.596821 -0.389819 1.67973 -0.598215 -0.389602 1.67972 -0.598479 -0.38849 1.04973 -0.598208 -0.389585 1.04978 -0.598344 -0.357657 1.04978 -0.598413 -0.358069 1.67972 -0.597394 -0.356624 1.04973 -0.597603 -0.357116 1.67973 -0.597564 -0.357053 1.04976 -0.597582 -0.355683 1.0498 -0.597579 -0.355519 1.38837 -0.597394 -0.356624 1.67973 -0.597488 -0.354874 1.67969 -0.597385 -0.354266 1.04981 -0.59749 -0.354019 1.67962 -0.598416 -0.352974 1.67972 -0.598479 -0.352548 1.04973 -0.597981 -0.353676 1.04973 -0.597479 -0.351219 1.67973 -0.598157 -0.35144 1.04977 -0.598238 -0.35154 1.67969 -0.59603 -0.351726 1.67972 -0.596821 -0.351219 1.67973 -0.59715 -0.351219 1.04973 -0.595432 -0.352312 1.67973 -0.596172 -0.351445 1.04974 -0.595283 -0.352303 1.04973 -0.593884 -0.352145 1.40737 -0.594119 -0.352102 1.04974 -0.592561 -0.352002 1.67965 -0.592267 -0.351577 1.04974 -0.592927 -0.352304 1.04973 -0.593626 -0.352199 1.67972 -0.591776 -0.351285 1.67971 -0.590879 -0.351219 1.67973 -0.589879 -0.352877 1.67973 -0.591208 -0.351219 1.04973 -0.590001 -0.351763 1.41997 -0.590146 -0.351508 1.04982 -0.589879 -0.352548 1.04973 -0.590972 -0.354265 1.67961 -0.590972 -0.354266 1.04978 -0.590261 -0.353618 1.04974 -0.590817 -0.355371 1.3852 -0.590766 -0.355635 1.04976 -0.590942 -0.356924 1.43358 -0.590754 -0.357116 1.67973 -0.590942 -0.356924 1.41857 -0.590942 -0.356924 1.40206 -0.590973 -0.356771 1.04978 -0.590245 -0.357423 1.04973 -0.590971 -0.356773 1.67963 -0.589972 -0.357762 1.399 -0.590456 -0.357255 1.67973 -0.589879 -0.358819 1.67973 -0.589879 -0.35849 1.04973 -0.591799 -0.359753 1.67973 -0.590549 -0.359757 1.4165 -0.590261 -0.359605 1.04978 -0.592582 -0.358944 1.67973 -0.591208 -0.359819 1.04973 -0.592361 -0.359305 1.04982 -0.593074 -0.358735 1.67973 -0.592781 -0.358768 1.36481 -0.594239 -0.358936 1.04974 -0.594326 -0.358906 1.31236 -0.593074 -0.358735 1.04973 -0.594731 -0.358839 1.67971 -0.595685 -0.358833 1.67969 -0.595283 -0.358735 1.04973 -0.595798 -0.359036 1.04975 -0.596268 -0.359675 1.67973 -0.59715 -0.359819 1.04973 -0.598125 -0.359522 1.04976 -0.598479 -0.35849 1.04973 -0.598479 -0.328161 1.04973 -0.598479 -0.328161 1.67973 -0.597603 -0.327116 1.67973 -0.597491 -0.32702 1.04979 -0.597582 -0.325683 1.0498 -0.597498 -0.326072 1.67973 -0.597579 -0.325519 1.38837 -0.597864 -0.323756 1.67973 -0.597418 -0.324134 1.36528 -0.597385 -0.324265 1.0499 -0.598114 -0.323606 1.04973 -0.597386 -0.324265 1.67968 -0.598479 -0.322548 1.67973 -0.597479 -0.321219 1.67973 -0.598232 -0.321508 1.67971 -0.598479 -0.322548 1.04973 -0.59715 -0.321219 1.04973 -0.598209 -0.321532 1.04974 -0.595676 -0.322201 1.67973 -0.596284 -0.321358 1.6797 -0.595928 -0.321824 1.04979 -0.594731 -0.322199 1.67971 -0.594701 -0.322203 1.04973 -0.594179 -0.322119 1.38837 -0.592561 -0.322002 1.67969 -0.593074 -0.322303 1.67973 -0.592267 -0.321577 1.04974 -0.592924 -0.322312 1.04973 -0.591776 -0.321285 1.67971 -0.591208 -0.321219 1.04973 -0.590879 -0.321219 1.67973 -0.590146 -0.321508 1.04982 -0.589879 -0.322548 1.67973 -0.590456 -0.323783 1.67973 -0.589879 -0.322548 1.04973 -0.590319 -0.323645 1.04973 -0.590805 -0.325224 1.31236 -0.590972 -0.324265 1.67968 -0.59083 -0.326109 1.36303 -0.590874 -0.326241 1.67967 -0.590942 -0.326924 1.35553 -0.590935 -0.32597 1.04985 -0.590942 -0.326924 1.32401 -0.590456 -0.327255 1.67973 -0.590945 -0.326912 1.3909 -0.590942 -0.326924 1.33902 -0.590754 -0.327116 1.04973 -0.590963 -0.326624 1.04973 -0.590245 -0.327422 1.04973 -0.589879 -0.32849 1.67973 -0.590185 -0.329448 1.04976 -0.589879 -0.32849 1.04973 -0.590085 -0.329469 1.67971 -0.591208 -0.329819 1.04973 -0.590879 -0.329819 1.67973 -0.593626 -0.328839 1.67971 -0.592678 -0.328831 1.0498 -0.594326 -0.328906 1.31236 -0.594761 -0.328835 1.04973 -0.595431 -0.328723 1.67972 -0.596231 -0.32964 1.04973 -0.59715 -0.329819 1.04973 -0.596555 -0.329755 1.67973 -0.598167 -0.329546 1.67969 -0.598282 -0.329508 1.04975 -0.598479 -0.298161 1.04973 -0.597386 -0.296773 1.67959 -0.597752 -0.297186 1.67973 -0.59756 -0.295445 1.27119 -0.597491 -0.29702 1.04979 -0.597394 -0.294414 1.67973 -0.597386 -0.294264 1.04984 -0.598127 -0.293578 1.67973 -0.59813 -0.293607 1.04973 -0.598479 -0.292548 1.67973 -0.597479 -0.291219 1.04973 -0.598479 -0.292548 1.04973 -0.598232 -0.291508 1.67971 -0.598245 -0.291575 1.0499 -0.59604 -0.291669 1.67971 -0.597479 -0.291219 1.67973 -0.596274 -0.291418 1.34708 -0.595921 -0.291829 1.04974 -0.594119 -0.292102 1.04973 -0.595436 -0.292304 1.67973 -0.594179 -0.292119 1.38837 -0.593074 -0.292303 1.67973 -0.592267 -0.291577 1.04974 -0.592926 -0.292309 1.04973 -0.592443 -0.291796 1.67973 -0.591536 -0.291219 1.67973 -0.591208 -0.291219 1.04973 -0.59019 -0.291544 1.67972 -0.589879 -0.292548 1.67973 -0.590147 -0.291508 1.04982 -0.589879 -0.292548 1.04973 -0.590918 -0.294645 1.04976 -0.590227 -0.293572 1.67973 -0.590261 -0.293618 1.04974 -0.590972 -0.294266 1.67956 -0.590805 -0.295814 1.36303 -0.590798 -0.295298 1.20785 -0.590915 -0.296821 1.04981 -0.59086 -0.296071 1.67973 -0.590245 -0.297422 1.04973 -0.590456 -0.297255 1.67973 -0.590245 -0.299466 1.37329 -0.591536 -0.299819 1.67973 -0.589879 -0.29849 1.04973 -0.590116 -0.299497 1.67965 -0.589879 -0.29849 1.67973 -0.592319 -0.29932 1.67971 -0.591208 -0.299819 1.04973 -0.593074 -0.298735 1.67973 -0.593074 -0.298735 1.04973 -0.592644 -0.298905 1.04973 -0.594239 -0.298936 1.04973 -0.594326 -0.298906 1.31236 -0.594731 -0.298839 1.6797 -0.595679 -0.298831 1.67963 -0.595283 -0.298735 1.04973 -0.595717 -0.298915 1.04973 -0.596546 -0.299756 1.67973 -0.596821 -0.299819 1.04973 -0.598222 -0.299516 1.67971 -0.597479 -0.299819 1.67973 -0.598479 -0.298161 1.67973 -0.598273 -0.299401 1.04978 -0.597491 -0.267022 1.67969 -0.59749 -0.267019 1.0498 -0.598348 -0.267649 1.6797 -0.597582 -0.265683 1.0498 -0.597498 -0.266071 1.67973 -0.597553 -0.265224 1.38837 -0.597901 -0.263783 1.04973 -0.597385 -0.264266 1.67971 -0.597386 -0.264265 1.04975 -0.598418 -0.26296 1.67972 -0.598349 -0.26333 1.30916 -0.598479 -0.262877 1.04973 -0.596821 -0.261219 1.67973 -0.597479 -0.261219 1.04973 -0.598193 -0.261484 1.6797 -0.596263 -0.261388 1.04976 -0.595578 -0.262278 1.35426 -0.595283 -0.262303 1.67973 -0.595283 -0.262303 1.04973 -0.595712 -0.262129 1.67973 -0.593884 -0.262145 1.40737 -0.593074 -0.262303 1.67973 -0.593074 -0.262303 1.04973 -0.592267 -0.261577 1.04974 -0.592443 -0.261796 1.67973 -0.590173 -0.261441 1.04979 -0.59019 -0.261544 1.67972 -0.591771 -0.261263 1.67973 -0.589879 -0.262548 1.67973 -0.591208 -0.261219 1.04973 -0.590048 -0.263406 1.2528 -0.589879 -0.262548 1.04973 -0.590754 -0.263922 1.67973 -0.590954 -0.264155 1.38686 -0.590921 -0.264664 1.67967 -0.590921 -0.264574 1.04977 -0.590754 -0.263922 1.04973 -0.590805 -0.265519 1.37174 -0.590971 -0.266773 1.67963 -0.590963 -0.266624 1.04973 -0.589972 -0.267762 1.399 -0.590456 -0.267255 1.04973 -0.589879 -0.26849 1.67973 -0.589879 -0.268161 1.04973 -0.590133 -0.269493 1.04988 -0.590879 -0.269819 1.67973 -0.591807 -0.269758 1.04974 -0.590178 -0.269472 1.37179 -0.592924 -0.268726 1.67973 -0.593074 -0.268735 1.04973 -0.59227 -0.269453 1.67972 -0.592443 -0.269242 1.04973 -0.594326 -0.268906 1.31236 -0.594239 -0.268936 1.04973 -0.594731 -0.268839 1.6797 -0.595432 -0.268726 1.04973 -0.596066 -0.269439 1.04974 -0.59568 -0.268834 1.67973 -0.596527 -0.269733 1.67971 -0.598402 -0.269222 1.04975 -0.598479 -0.26849 1.67973 -0.598479 -0.268161 1.04973 -0.598127 -0.269513 1.6797 -0.596821 -0.269819 1.04973 -0.597491 -0.237019 1.0498 -0.598109 -0.237415 1.67972 -0.597498 -0.236071 1.67973 -0.597394 -0.236624 1.04973 -0.597491 -0.237022 1.67969 -0.597579 -0.235519 1.27119 -0.597427 -0.234637 1.04974 -0.598359 -0.233371 1.67972 -0.597752 -0.233853 1.04973 -0.598479 -0.232877 1.04973 -0.598479 -0.232219 1.67973 -0.597479 -0.231219 1.04973 -0.598241 -0.231573 1.04989 -0.596821 -0.231219 1.67973 -0.598227 -0.231511 1.6797 -0.596821 -0.231219 1.04973 -0.596103 -0.231533 1.42584 -0.595711 -0.232121 1.04973 -0.595713 -0.232132 1.67973 -0.594731 -0.232199 1.67971 -0.595283 -0.232303 1.04973 -0.594179 -0.232119 1.38837 -0.593597 -0.232203 1.04973 -0.592054 -0.231415 1.39003 -0.591208 -0.231219 1.04973 -0.592337 -0.231725 1.04974 -0.592929 -0.232304 1.67973 -0.590879 -0.231219 1.67973 -0.590087 -0.231522 1.04978 -0.589879 -0.232548 1.67973 -0.590375 -0.233642 1.67973 -0.589879 -0.232548 1.04973 -0.590159 -0.233538 1.25297 -0.590868 -0.234021 1.0498 -0.590864 -0.234892 1.67969 -0.590779 -0.235519 1.26169 -0.59087 -0.234882 1.04976 -0.590868 -0.237018 1.04975 -0.590942 -0.236924 1.49662 -0.590942 -0.236924 1.51313 -0.590971 -0.236773 1.67962 -0.590942 -0.236924 1.47336 -0.590963 -0.236624 1.04973 -0.590456 -0.237255 1.04973 -0.590605 -0.237186 1.67973 -0.59011 -0.237568 1.37829 -0.589879 -0.23849 1.67973 -0.589879 -0.23849 1.04973 -0.590133 -0.239493 1.04988 -0.591536 -0.239819 1.67973 -0.591536 -0.239819 1.04973 -0.590085 -0.239469 1.67971 -0.592048 -0.239632 1.24581 -0.592512 -0.239093 1.67973 -0.593074 -0.238735 1.67973 -0.594326 -0.238906 1.31236 -0.592861 -0.238822 1.04973 -0.594239 -0.238936 1.04973 -0.595283 -0.238735 1.04973 -0.595673 -0.238842 1.04973 -0.594731 -0.238839 1.6797 -0.596218 -0.239637 1.04976 -0.596037 -0.23932 1.67971 -0.59715 -0.239819 1.04973 -0.598446 -0.238356 1.04973 -0.598479 -0.23849 1.67973 -0.597479 -0.239819 1.67973 -0.59827 -0.239476 1.04979 -0.598284 -0.239356 1.3773 -0.598413 -0.207905 1.67972 -0.598479 -0.208161 1.04973 -0.597564 -0.207054 1.67968 -0.597565 -0.207054 1.04979 -0.597498 -0.206071 1.67973 -0.597566 -0.205667 1.15401 -0.597394 -0.204414 1.04973 -0.598127 -0.203593 1.04973 -0.597402 -0.204279 1.57846 -0.598479 -0.202877 1.67973 -0.59749 -0.204018 1.67969 -0.598231 -0.20151 1.67971 -0.598245 -0.201576 1.0499 -0.597479 -0.201219 1.67973 -0.59715 -0.201219 1.04973 -0.598479 -0.202219 1.04973 -0.596235 -0.201393 1.67968 -0.595938 -0.201788 1.04974 -0.595675 -0.202204 1.67973 -0.596103 -0.201533 1.3661 -0.594119 -0.202102 1.04973 -0.595283 -0.202303 1.67973 -0.594179 -0.202119 1.38837 -0.593074 -0.202303 1.67973 -0.592926 -0.20231 1.04973 -0.592512 -0.201945 1.67973 -0.592054 -0.201415 1.39003 -0.592302 -0.201651 1.04974 -0.591208 -0.201219 1.67973 -0.590301 -0.201393 1.67971 -0.591208 -0.201219 1.04973 -0.590104 -0.201502 1.0498 -0.589879 -0.202877 1.67973 -0.589879 -0.202548 1.04973 -0.590921 -0.204574 1.0498 -0.590841 -0.204182 1.67965 -0.590261 -0.203618 1.04974 -0.590779 -0.205519 1.26169 -0.590456 -0.207255 1.67973 -0.59086 -0.206071 1.67973 -0.590915 -0.206821 1.04982 -0.589879 -0.208161 1.67973 -0.590085 -0.209469 1.67971 -0.589879 -0.208819 1.04973 -0.591536 -0.209819 1.67973 -0.59226 -0.209496 1.2458 -0.592351 -0.209312 1.04975 -0.591536 -0.209819 1.04973 -0.593074 -0.208735 1.67973 -0.593074 -0.208735 1.04973 -0.592645 -0.208912 1.67973 -0.594239 -0.208936 1.04973 -0.594326 -0.208906 1.31236 -0.595683 -0.208834 1.67972 -0.594731 -0.208839 1.6797 -0.595283 -0.208735 1.04973 -0.596691 -0.209734 1.67971 -0.597479 -0.209819 1.04973 -0.596218 -0.209637 1.04976 -0.598394 -0.209274 1.67969 -0.598387 -0.209293 1.04976 -0.5934 -0.460519 1.01103 -0.5934 -0.100519 1.01103 -0.607179 -0.460519 1.01298 -0.600179 -0.460519 1.00525 -0.598764 -0.460519 0.998733 -0.603843 -0.460519 0.996483 -0.602429 -0.460519 0.995068 -0.609179 -0.460519 1.00073 -0.602429 -0.460519 0.991733 -0.598179 -0.460519 0.989733 -0.594178 -0.460519 0.998733 -0.589593 -0.460519 0.998733 -0.585929 -0.460519 0.995068 -0.585929 -0.460519 0.991733 -0.590179 -0.460519 0.991733 -0.568764 -0.460519 0.998733 -0.564178 -0.460519 0.998733 -0.559593 -0.460519 0.998733 -0.555929 -0.460519 0.995068 -0.558179 -0.460519 1.00473 -0.558179 -0.460519 1.00932 -0.564957 -0.460519 1.01103 -0.549179 -0.460519 0.991733 -0.549179 -0.460519 1.00073 -0.555929 -0.460519 0.991733 -0.554514 -0.460519 1.02648 -0.551179 -0.460519 1.02648 -0.549179 -0.460519 1.03073 -0.558179 -0.460519 1.03932 -0.555929 -0.460519 1.0444 -0.559593 -0.460519 1.04073 -0.560179 -0.460519 1.04773 -0.572429 -0.460519 1.0444 -0.585929 -0.460519 1.0444 -0.568179 -0.460519 1.04773 -0.589593 -0.460519 1.04073 -0.600179 -0.460519 1.03932 -0.600179 -0.460519 1.03015 -0.602429 -0.460519 1.0444 -0.607179 -0.460519 1.04298 -0.602429 -0.460519 1.04773 -0.603843 -0.460519 1.02648 -0.600179 -0.460519 1.00932 -0.570179 -0.460519 1.03249 -0.607179 -0.100519 1.03073 -0.609179 -0.460519 1.03073 -0.607179 -0.460519 1.03073 -0.607179 -0.100519 1.02648 -0.607179 -0.460519 1.02648 -0.600179 -0.100519 1.03015 -0.600179 -0.460519 1.03421 -0.600179 -0.100519 1.03473 -0.600179 -0.460519 1.03525 -0.603843 -0.100519 1.04298 -0.607179 -0.100519 1.04298 -0.603843 -0.460519 1.04298 -0.607179 -0.460519 1.03873 -0.607179 -0.100519 1.03873 -0.609179 -0.460519 1.03873 -0.609179 -0.100519 1.04773 -0.608411 -0.460458 1.04934 -0.607179 -0.100519 1.04973 -0.609179 -0.460519 1.04773 -0.598179 -0.100519 1.04973 -0.598179 -0.460519 1.04773 -0.598764 -0.460519 1.04073 -0.594698 -0.460519 1.04073 -0.593659 -0.460519 1.04073 -0.585929 -0.460519 1.04773 -0.590179 -0.100519 1.04773 -0.590179 -0.460519 1.04773 -0.590179 -0.100519 1.04973 -0.572429 -0.100519 1.04773 -0.572429 -0.460519 1.04773 -0.568764 -0.460519 1.04073 -0.564698 -0.460519 1.04073 -0.563659 -0.460519 1.04073 -0.564178 -0.100519 1.04073 -0.559593 -0.100519 1.04073 -0.555929 -0.100519 1.04773 -0.555929 -0.460519 1.04773 -0.549179 -0.460519 1.04773 -0.549732 -0.100518 1.04916 -0.549673 -0.456846 1.04895 -0.549179 -0.460519 1.03873 -0.551179 -0.100519 1.03873 -0.551179 -0.460519 1.03873 -0.551179 -0.460519 1.04298 -0.554514 -0.460519 1.04298 -0.554514 -0.100519 1.04298 -0.558179 -0.100519 1.03932 -0.558179 -0.460519 1.03473 -0.558179 -0.100519 1.03525 -0.558179 -0.100519 1.03421 -0.558179 -0.460519 1.03015 -0.551179 -0.100519 1.02648 -0.551179 -0.100519 1.03073 -0.551179 -0.460519 1.03073 -0.549179 -0.460519 1.00873 -0.551179 -0.460519 1.00873 -0.551179 -0.100519 1.01298 -0.551179 -0.460519 1.01298 -0.554514 -0.460519 1.01298 -0.554514 -0.100519 0.996483 -0.558179 -0.460519 1.00015 -0.554514 -0.460519 0.996483 -0.551179 -0.460519 0.996483 -0.551179 -0.460519 1.00073 -0.549179 -0.100519 1.00073 -0.551179 -0.100519 0.989733 -0.551179 -0.460519 0.989733 -0.549533 -0.460495 0.990568 -0.560179 -0.460519 0.989733 -0.555929 -0.100519 0.991733 -0.560179 -0.460519 0.991733 -0.568764 -0.100519 0.998733 -0.572429 -0.460519 0.995068 -0.572429 -0.100519 0.995068 -0.568179 -0.100519 0.991733 -0.572429 -0.460519 0.991733 -0.568179 -0.100519 0.989733 -0.568179 -0.460519 0.991733 -0.568179 -0.460519 0.989733 -0.590179 -0.460519 0.989733 -0.590179 -0.100519 0.989733 -0.590179 -0.100519 0.991733 -0.585929 -0.100519 0.991733 -0.594698 -0.100519 0.998733 -0.598764 -0.100519 0.998733 -0.602429 -0.100519 0.991733 -0.598179 -0.460519 0.991733 -0.598179 -0.100519 0.989733 -0.608593 -0.100617 0.990415 -0.607179 -0.100519 0.989733 -0.609179 -0.460519 0.991733 -0.608188 -0.272284 0.990067 -0.607179 -0.460519 0.989733 -0.607179 -0.460519 1.00073 -0.607179 -0.460519 0.996483 -0.600179 -0.100519 1.00015 -0.600179 -0.460519 1.00015 -0.600179 -0.460519 1.00421 -0.600179 -0.100519 1.00932 -0.603843 -0.100519 1.01298 -0.607179 -0.100519 1.00873 -0.607179 -0.460519 1.00873 -0.609179 -0.100519 1.00873 -0.609179 -0.100519 1.03073 -0.609179 -0.460519 1.00873 -0.607179 -0.100519 1.01298 -0.603843 -0.100519 1.02648 -0.598764 -0.100519 1.04073 -0.600179 -0.100519 1.03932 -0.609179 -0.100519 1.03873 -0.608366 -0.10053 1.04942 -0.602429 -0.100519 1.0444 -0.602429 -0.100519 1.04773 -0.598179 -0.100519 1.04773 -0.594178 -0.100519 1.04073 -0.589593 -0.100519 1.04073 -0.585929 -0.100519 1.0444 -0.572429 -0.100519 1.0444 -0.585929 -0.100519 1.04773 -0.568179 -0.100519 1.04773 -0.558179 -0.100519 1.03015 -0.555929 -0.100519 1.0444 -0.551179 -0.100519 1.04298 -0.560179 -0.100519 1.04773 -0.554514 -0.100519 1.02648 -0.554514 -0.100519 1.01298 -0.549179 -0.100519 1.00873 -0.551179 -0.100519 1.00873 -0.558179 -0.100519 1.00525 -0.558179 -0.100519 1.00421 -0.559593 -0.100519 0.998733 -0.558179 -0.100519 1.00015 -0.555929 -0.100519 0.995068 -0.551179 -0.100519 1.00073 -0.551179 -0.100519 0.996483 -0.549634 -0.100682 0.990404 -0.560179 -0.100519 0.989733 -0.560179 -0.100519 0.991733 -0.563659 -0.100519 0.998733 -0.564698 -0.100519 0.998733 -0.585929 -0.100519 0.995068 -0.589593 -0.100519 0.998733 -0.572429 -0.100519 0.991733 -0.593659 -0.100519 0.998733 -0.603843 -0.100519 0.996483 -0.600179 -0.100519 1.00473 -0.602429 -0.100519 0.995068 -0.609179 -0.100519 0.991733 -0.609179 -0.100519 1.00073 -0.607179 -0.100519 0.996483 -0.607179 -0.100519 1.00073 -0.598179 -0.100519 0.991733 -0.568764 -0.100519 1.04073 -0.558179 -0.100519 1.00932 -0.599179 -0.460519 1.01722 -0.598886 -0.100519 1.01651 -0.598886 -0.460519 1.01651 -0.603843 -0.460519 1.01298 -0.599179 -0.100519 1.01974 -0.598886 -0.460519 1.02295 -0.599179 -0.460519 1.02225 -0.598886 -0.100519 1.02295 -0.5934 -0.100519 1.02844 -0.5934 -0.460519 1.02844 -0.588179 -0.460519 1.03173 -0.592693 -0.460519 1.02873 -0.588324 -0.100517 1.03144 -0.59001 -0.100563 1.02895 -0.592693 -0.100519 1.02873 -0.590147 -0.460497 1.02887 -0.587886 -0.100519 1.03395 -0.587886 -0.460519 1.03395 -0.581693 -0.460519 1.03973 -0.582401 -0.460519 1.03944 -0.582401 -0.100519 1.03944 -0.575957 -0.100519 1.03944 -0.575957 -0.460519 1.03944 -0.576664 -0.460519 1.03973 -0.581693 -0.100519 1.03973 -0.570472 -0.460519 1.03395 -0.570179 -0.100519 1.03249 -0.570472 -0.100519 1.03395 -0.569277 -0.460511 1.02943 -0.569632 -0.100507 1.02983 -0.565664 -0.100519 1.02873 -0.566422 -0.460519 1.02873 -0.562214 -0.100519 1.0257 -0.559179 -0.460519 1.02225 -0.562214 -0.460519 1.0257 -0.559179 -0.100519 1.02225 -0.559472 -0.460519 1.01651 -0.559179 -0.460519 1.01722 -0.559472 -0.100519 1.01651 -0.559179 -0.100519 1.01722 -0.564957 -0.100519 1.01103 -0.565664 -0.460519 1.01073 -0.569462 -0.100556 1.00978 -0.567179 -0.100519 1.01073 -0.570179 -0.460519 1.00697 -0.569249 -0.460458 1.01004 -0.570179 -0.100519 1.00773 -0.570472 -0.100519 1.00551 -0.570472 -0.460519 1.00551 -0.576664 -0.100519 0.999733 -0.575957 -0.100519 1.00003 -0.575957 -0.460519 1.00003 -0.581693 -0.100519 0.999733 -0.579178 -0.460519 0.999733 -0.582401 -0.100519 1.00003 -0.582401 -0.460519 1.00003 -0.587886 -0.100519 1.00551 -0.588179 -0.100519 1.00622 -0.587886 -0.460519 1.00551 -0.588179 -0.460519 1.00697 -0.591179 -0.100519 1.01073 -0.588314 -0.100524 1.00837 -0.589019 -0.460057 1.00991 -0.591179 -0.460519 1.01073 -0.5617 -0.460543 1.00209 -0.56649 -0.100589 1.00199 -0.560879 -0.100599 1.00428 -0.567518 -0.100525 1.00552 -0.562725 -0.100518 1.00159 -0.561681 -0.100614 1.00718 -0.563741 -0.172286 1.00805 -0.566074 -0.100594 1.00768 -0.567518 -0.460512 1.00555 -0.56222 -0.460509 1.00765 -0.565735 -0.460424 1.00793 -0.565552 -0.460483 1.00156 -0.560841 -0.46051 1.00552 -0.567385 -0.460502 1.00346 -0.596094 -0.100629 1.0376 -0.590879 -0.100585 1.03429 -0.591536 -0.100613 1.03691 -0.593828 -0.100553 1.03816 -0.592791 -0.100526 1.03156 -0.597523 -0.10066 1.0356 -0.596471 -0.100558 1.03203 -0.597507 -0.460438 1.03575 -0.597081 -0.460497 1.03266 -0.593829 -0.460512 1.03134 -0.591816 -0.460503 1.03724 -0.593302 -0.384484 1.038 -0.59082 -0.460509 1.03544 -0.595455 -0.46038 1.03804 -0.591299 -0.460471 1.03267 -0.567318 -0.100567 1.03324 -0.567194 -0.100591 1.03656 -0.56354 -0.100605 1.03124 -0.561238 -0.100601 1.03662 -0.563828 -0.100553 1.03816 -0.560958 -0.10057 1.03356 -0.565912 -0.218062 1.03188 -0.560989 -0.460504 1.03345 -0.566025 -0.460433 1.03184 -0.56084 -0.460511 1.03552 -0.562835 -0.460497 1.03805 -0.56562 -0.460354 1.03793 -0.567692 -0.460529 1.0344 -0.56314 -0.460497 1.03133 -0.593633 -0.100537 1.00126 -0.597466 -0.10066 1.0033 -0.591164 -0.100529 1.00293 -0.596814 -0.100489 1.00712 -0.593776 -0.100588 1.0081 -0.59123 -0.100741 1.00673 -0.593002 -0.460336 1.00138 -0.590994 -0.460513 1.00343 -0.597742 -0.460517 1.00437 -0.591085 -0.460489 1.00625 -0.595869 -0.460451 1.00783 -0.595765 -0.460306 1.00165 -0.590805 -0.421726 1.00502 -0.592968 -0.460459 1.00802 -0.596143 -0.100519 1.7157 -0.609179 -0.100519 1.72073 -0.607179 -0.100519 1.71648 -0.607179 -0.100519 1.72073 -0.607179 -0.100519 1.70298 -0.600179 -0.100519 1.72015 -0.600179 -0.100519 1.72932 -0.607179 -0.100519 1.73298 -0.609179 -0.100519 1.72873 -0.602429 -0.100519 1.73773 -0.598764 -0.100519 1.73073 -0.594178 -0.100519 1.73073 -0.589593 -0.100519 1.73073 -0.572429 -0.100519 1.7344 -0.572429 -0.100519 1.73773 -0.590179 -0.100519 1.73973 -0.590179 -0.100519 1.73773 -0.568179 -0.100519 1.73973 -0.564178 -0.100519 1.73073 -0.558179 -0.100519 1.72932 -0.558179 -0.100519 1.72525 -0.558179 -0.100519 1.72421 -0.564957 -0.100519 1.71844 -0.555929 -0.100519 1.7344 -0.551179 -0.100519 1.73298 -0.551179 -0.100519 1.72873 -0.558179 -0.100519 1.72015 -0.554514 -0.100519 1.71648 -0.554514 -0.100519 1.70298 -0.558179 -0.100519 1.69932 -0.551179 -0.100519 1.69873 -0.551179 -0.100519 1.71648 -0.554514 -0.100519 1.68648 -0.558179 -0.100519 1.69015 -0.555929 -0.100519 1.68507 -0.549179 -0.100519 1.69073 -0.549805 -0.100551 1.68017 -0.563659 -0.100519 1.68873 -0.568764 -0.100519 1.68873 -0.585929 -0.100519 1.68173 -0.594698 -0.100519 1.68873 -0.598764 -0.100519 1.68873 -0.609179 -0.100519 1.69073 -0.607179 -0.100519 1.69073 -0.598179 -0.100519 1.68173 -0.591179 -0.100519 1.71873 -0.559593 -0.100519 1.73073 -0.568764 -0.100519 1.73073 -0.609179 -0.100519 1.69873 -0.607179 -0.100519 1.69873 -0.607179 -0.460519 1.69873 -0.603843 -0.460519 1.70298 -0.603843 -0.100519 1.70298 -0.600179 -0.100519 1.69932 -0.600179 -0.100519 1.69473 -0.600179 -0.460519 1.69525 -0.600179 -0.460519 1.69421 -0.600179 -0.460519 1.69015 -0.600179 -0.100519 1.69015 -0.603843 -0.100519 1.68648 -0.607179 -0.100519 1.68648 -0.609179 -0.460519 1.69073 -0.608318 -0.460437 1.68004 -0.607179 -0.460519 1.67973 -0.609179 -0.100519 1.68173 -0.609179 -0.460519 1.68173 -0.598179 -0.460519 1.67973 -0.598179 -0.100519 1.67973 -0.598179 -0.460519 1.68173 -0.602429 -0.100519 1.68173 -0.602429 -0.100519 1.68507 -0.594178 -0.460519 1.68873 -0.593659 -0.100519 1.68873 -0.589593 -0.460519 1.68873 -0.589593 -0.100519 1.68873 -0.585929 -0.100519 1.68507 -0.590179 -0.100519 1.68173 -0.590179 -0.460519 1.67973 -0.568179 -0.100519 1.67973 -0.568179 -0.460519 1.68173 -0.568179 -0.100519 1.68173 -0.572429 -0.460519 1.68173 -0.572429 -0.100519 1.68173 -0.572429 -0.460519 1.68507 -0.572429 -0.100519 1.68507 -0.568764 -0.460519 1.68873 -0.564698 -0.100519 1.68873 -0.564178 -0.460519 1.68873 -0.559593 -0.460519 1.68873 -0.555929 -0.460519 1.68507 -0.559593 -0.100519 1.68873 -0.555929 -0.100519 1.68173 -0.560179 -0.100519 1.68173 -0.560179 -0.100519 1.67973 -0.549722 -0.460456 1.68029 -0.549179 -0.100519 1.68173 -0.549179 -0.460519 1.69073 -0.551179 -0.460519 1.69073 -0.551179 -0.100519 1.69073 -0.551179 -0.460519 1.68648 -0.551179 -0.100519 1.68648 -0.558179 -0.100519 1.69421 -0.558179 -0.100519 1.69525 -0.558179 -0.460519 1.69932 -0.554514 -0.460519 1.70298 -0.551179 -0.460519 1.69873 -0.551179 -0.100519 1.70298 -0.549179 -0.100519 1.69873 -0.551179 -0.100519 1.72073 -0.551179 -0.460519 1.72073 -0.551179 -0.460519 1.71648 -0.558179 -0.460519 1.72473 -0.558179 -0.460519 1.72932 -0.554514 -0.100519 1.73298 -0.549179 -0.460519 1.72873 -0.549179 -0.460519 1.73773 -0.550162 -0.145709 1.73945 -0.551179 -0.100519 1.73973 -0.551179 -0.460519 1.73973 -0.549179 -0.10052 1.73817 -0.560179 -0.100519 1.73973 -0.560179 -0.460519 1.73973 -0.560179 -0.460519 1.73773 -0.560179 -0.100519 1.73773 -0.555929 -0.460519 1.73773 -0.555929 -0.100519 1.73773 -0.572429 -0.460519 1.7344 -0.568179 -0.460519 1.73773 -0.568179 -0.100519 1.73773 -0.590179 -0.460519 1.73973 -0.590179 -0.460519 1.73773 -0.585929 -0.460519 1.73773 -0.585929 -0.100519 1.73773 -0.585929 -0.100519 1.7344 -0.594698 -0.460519 1.73073 -0.598764 -0.460519 1.73073 -0.602429 -0.460519 1.7344 -0.602429 -0.100519 1.7344 -0.598179 -0.100519 1.73773 -0.598179 -0.100519 1.73973 -0.607179 -0.100519 1.73973 -0.607179 -0.460519 1.73973 -0.608653 -0.100561 1.73897 -0.608209 -0.460508 1.73951 -0.609179 -0.460519 1.73773 -0.609179 -0.100519 1.73773 -0.607179 -0.460519 1.72873 -0.607179 -0.100519 1.72873 -0.607179 -0.460519 1.73298 -0.603843 -0.100519 1.73298 -0.600179 -0.100519 1.72473 -0.600179 -0.460519 1.72525 -0.600179 -0.460519 1.72015 -0.603843 -0.100519 1.71648 -0.607179 -0.460519 1.72073 -0.609179 -0.460519 1.72073 -0.609179 -0.460519 1.69873 -0.607179 -0.460519 1.70298 -0.607179 -0.460519 1.71648 -0.603843 -0.460519 1.71648 -0.600179 -0.460519 1.69932 -0.603843 -0.460519 1.68648 -0.607179 -0.460519 1.69073 -0.607179 -0.460519 1.68648 -0.602429 -0.460519 1.68507 -0.602429 -0.460519 1.68173 -0.598764 -0.460519 1.68873 -0.585929 -0.460519 1.68507 -0.568179 -0.460519 1.67973 -0.585929 -0.460519 1.68173 -0.590179 -0.460519 1.68173 -0.558179 -0.460519 1.69015 -0.558179 -0.460519 1.69473 -0.555929 -0.460519 1.68173 -0.554514 -0.460519 1.68648 -0.549179 -0.460519 1.68173 -0.560179 -0.460519 1.68173 -0.554514 -0.460519 1.71648 -0.551179 -0.460519 1.70298 -0.549179 -0.460519 1.72073 -0.549179 -0.460519 1.69873 -0.558179 -0.460519 1.72015 -0.554514 -0.460519 1.73298 -0.555929 -0.460519 1.7344 -0.559593 -0.460519 1.73073 -0.551179 -0.460519 1.72873 -0.551179 -0.460519 1.73298 -0.563659 -0.460519 1.73073 -0.564698 -0.460519 1.73073 -0.568764 -0.460519 1.73073 -0.585929 -0.460519 1.7344 -0.589593 -0.460519 1.73073 -0.572429 -0.460519 1.73773 -0.568179 -0.460519 1.73973 -0.593659 -0.460519 1.73073 -0.592974 -0.46047 1.728 -0.603843 -0.460519 1.73298 -0.600179 -0.460519 1.72932 -0.600179 -0.460519 1.72421 -0.5934 -0.460519 1.71844 -0.609179 -0.460519 1.72873 -0.598179 -0.460519 1.73773 -0.602429 -0.460519 1.73773 -0.598179 -0.460519 1.73973 -0.599179 -0.100519 1.71225 -0.598886 -0.460519 1.71295 -0.599179 -0.460519 1.70973 -0.599179 -0.100519 1.70722 -0.598886 -0.460519 1.70651 -0.596143 -0.100519 1.70377 -0.5934 -0.460519 1.70103 -0.591179 -0.100519 1.70073 -0.591936 -0.460519 1.70073 -0.58875 -0.460428 1.69957 -0.588179 -0.460519 1.69622 -0.587886 -0.100519 1.69551 -0.588443 -0.100539 1.69908 -0.587886 -0.460519 1.69551 -0.582401 -0.100519 1.69003 -0.582401 -0.460519 1.69003 -0.579178 -0.460519 1.68973 -0.581693 -0.100519 1.68973 -0.575957 -0.100519 1.69003 -0.576664 -0.100519 1.68973 -0.575957 -0.460519 1.69003 -0.570472 -0.100519 1.69551 -0.570472 -0.460519 1.69551 -0.565664 -0.460519 1.70073 -0.569674 -0.460438 1.6995 -0.570179 -0.460519 1.69697 -0.570179 -0.100519 1.69773 -0.569378 -0.10058 1.6999 -0.564957 -0.460519 1.70103 -0.567179 -0.100519 1.70073 -0.564957 -0.100519 1.70103 -0.559179 -0.460519 1.70722 -0.559472 -0.460519 1.70651 -0.559472 -0.100519 1.70651 -0.559179 -0.100519 1.7071 -0.559179 -0.100519 1.71225 -0.559179 -0.460519 1.71242 -0.559472 -0.100519 1.71295 -0.562214 -0.460519 1.7157 -0.570179 -0.100519 1.72325 -0.569616 -0.460464 1.71979 -0.566422 -0.460519 1.71873 -0.566422 -0.100519 1.71873 -0.569682 -0.100824 1.71982 -0.570179 -0.460519 1.72249 -0.570472 -0.460519 1.72395 -0.573215 -0.100519 1.7267 -0.575957 -0.460519 1.72944 -0.576664 -0.460519 1.72973 -0.582401 -0.100519 1.72944 -0.581693 -0.460519 1.72973 -0.576664 -0.100519 1.72973 -0.582401 -0.460519 1.72944 -0.587886 -0.460519 1.72395 -0.587886 -0.100519 1.72395 -0.588179 -0.460519 1.72325 -0.588179 -0.100519 1.72249 -0.588855 -0.100653 1.71979 -0.591179 -0.460519 1.71873 -0.560833 -0.460452 1.7238 -0.567723 -0.460532 1.72469 -0.565862 -0.46041 1.72785 -0.562183 -0.460562 1.72776 -0.565562 -0.460402 1.72158 -0.562824 -0.460495 1.72151 -0.567369 -0.100518 1.72346 -0.56092 -0.253752 1.72517 -0.567193 -0.100508 1.72676 -0.565361 -0.100971 1.72147 -0.562718 -0.100841 1.72798 -0.561356 -0.100551 1.72253 -0.590884 -0.460419 1.69597 -0.591851 -0.460517 1.69192 -0.592813 -0.46047 1.6979 -0.595925 -0.460491 1.69776 -0.597741 -0.460519 1.69438 -0.595674 -0.460231 1.69159 -0.593018 -0.100532 1.69151 -0.597475 -0.10061 1.69593 -0.59728 -0.100531 1.69331 -0.591089 -0.195174 1.69609 -0.590963 -0.100676 1.69321 -0.595647 -0.100642 1.69163 -0.595038 -0.100635 1.69816 -0.592095 -0.100636 1.69745 -0.564279 -0.100528 1.69127 -0.560991 -0.46046 1.69339 -0.565755 -0.460317 1.69164 -0.562323 -0.460265 1.69769 -0.565334 -0.460479 1.69807 -0.563037 -0.460273 1.6914 -0.560841 -0.46051 1.69552 -0.566092 -0.16026 1.692 -0.567853 -0.460556 1.69479 -0.565469 -0.100453 1.6982 -0.561024 -0.100638 1.69311 -0.561113 -0.100705 1.6965 -0.567661 -0.100486 1.69439 -0.596636 -0.460585 1.72216 -0.595863 -0.460432 1.72785 -0.597527 -0.460515 1.72552 -0.594472 -0.100718 1.72124 -0.590921 -0.460444 1.72593 -0.591884 -0.460494 1.72198 -0.591325 -0.100623 1.72673 -0.597192 -0.10051 1.72677 -0.591063 -0.100637 1.72367 -0.597282 -0.100604 1.72312 -0.593878 -0.100522 1.72817 0.0965996 0.169481 1.01103 0.0973067 -0.460519 1.01073 0.0965996 -0.460519 1.01103 0.0828214 -0.460519 1.03073 0.0861572 -0.460519 1.01298 0.0828214 -0.460519 1.02648 0.0901214 -0.460519 1.00473 0.0898214 -0.460519 1.00015 0.0861572 -0.460519 0.996483 0.0828214 -0.460519 0.996483 0.0875714 -0.460519 0.995068 0.0875714 -0.460519 0.991733 0.0918214 -0.460519 0.989733 0.0918214 -0.460519 0.991733 0.0953018 -0.460519 0.998733 0.0958214 -0.460519 0.999032 0.096341 -0.460519 0.998733 0.100407 -0.460519 0.998733 0.108307 -0.460519 0.999733 0.121236 -0.460519 0.998733 0.125302 -0.460519 0.998733 0.125821 -0.460519 0.999032 0.131821 -0.460519 1.00421 0.131521 -0.460519 1.00473 0.131821 -0.460519 1.00525 0.131821 -0.460519 1.00932 0.134071 -0.460519 0.995068 0.140821 -0.460519 1.00073 0.138821 -0.460519 1.00073 0.135486 -0.460519 1.01298 0.130528 -0.460519 1.01651 0.135486 -0.460519 1.02648 0.138821 -0.460519 1.01298 0.138821 -0.460519 1.02648 0.140821 -0.460519 1.00873 0.131821 -0.460519 1.03421 0.129326 -0.460499 1.0355 0.131821 -0.460519 1.03525 0.134071 -0.460519 1.0444 0.138821 -0.460519 1.03873 0.130407 -0.460519 1.04073 0.126341 -0.460519 1.04073 0.125821 -0.460519 1.04043 0.125302 -0.460519 1.04073 0.119528 -0.460519 1.03395 0.121236 -0.460519 1.04073 0.104071 -0.460519 1.04773 0.0953018 -0.460519 1.04073 0.0898214 -0.460519 1.03525 0.0901214 -0.460519 1.03473 0.0898214 -0.460519 1.03015 0.0918214 -0.460519 1.04973 0.125043 -0.460519 1.02844 0.100407 -0.460519 1.04073 0.119821 -0.460519 1.00773 0.0808214 -0.460519 1.03073 0.0828214 0.169481 1.03073 0.0828214 0.169481 1.02648 0.0861572 -0.460519 1.02648 0.0898214 -0.460519 1.03421 0.0898214 0.169481 1.03525 0.0861572 0.169481 1.04298 0.0898214 -0.460519 1.03932 0.0828214 0.169481 1.04298 0.0861572 -0.460519 1.04298 0.0828214 -0.460519 1.04298 0.0828214 -0.460519 1.03873 0.0808214 0.169481 1.03873 0.0808214 -0.460519 1.03873 0.0817158 0.16947 1.04947 0.0821399 -0.0126837 1.04961 0.0808214 -0.460519 1.04773 0.0811039 -0.0126837 1.04862 0.0808214 0.169481 1.04773 0.0813183 -0.273383 1.049 0.0814364 -0.46047 1.0492 0.0918214 0.169481 1.04973 0.0918214 0.169481 1.04773 0.0918214 -0.460519 1.04773 0.0875714 -0.460519 1.04773 0.0875714 -0.460519 1.0444 0.0912356 -0.460519 1.04073 0.0953018 0.169481 1.04073 0.0958214 -0.460519 1.04043 0.0958214 0.169481 1.04043 0.096341 0.169481 1.04073 0.096341 -0.460519 1.04073 0.104071 0.169481 1.0444 0.104071 -0.460519 1.0444 0.104071 0.169481 1.04773 0.0998214 -0.460519 1.04773 0.0998214 0.169481 1.04773 0.0998214 -0.460519 1.04973 0.121821 -0.460519 1.04773 0.117571 0.169481 1.0444 0.117571 -0.460519 1.04773 0.121236 0.169481 1.04073 0.117571 -0.460519 1.0444 0.125302 0.169481 1.04073 0.125821 0.169481 1.04043 0.130407 0.169481 1.04073 0.134071 0.169481 1.0444 0.134071 0.169481 1.04773 0.134071 -0.460519 1.04773 0.129821 0.169481 1.04773 0.129821 0.169481 1.04973 0.129821 -0.460519 1.04773 0.139338 -0.460519 1.04973 0.140405 0.169381 1.04907 0.138821 0.169481 1.04973 0.140581 -0.195305 1.04859 0.140821 0.169481 1.04773 0.139803 0.00300023 1.04944 0.135486 0.169481 1.04298 0.138821 -0.460519 1.04298 0.135486 -0.460519 1.04298 0.131821 0.169481 1.03525 0.131821 -0.460519 1.03932 0.131521 -0.460519 1.03473 0.131821 0.169481 1.03421 0.131821 0.169481 1.03015 0.131821 -0.460519 1.03015 0.138821 0.169481 1.02648 0.138821 0.169481 1.03073 0.138821 -0.460519 1.03073 0.140821 0.169481 1.00873 0.138821 -0.460519 1.00873 0.138821 0.169481 1.00873 0.138821 0.169481 1.01298 0.131821 0.169481 1.00525 0.131821 0.169481 1.00421 0.131821 0.169481 1.00015 0.131821 -0.460519 1.00015 0.135486 0.169481 0.996483 0.135486 -0.460519 0.996483 0.138821 -0.460519 0.996483 0.138821 0.169481 0.996483 0.138821 0.169481 1.00073 0.138821 -0.460519 0.989733 0.140821 0.169481 0.991733 0.140521 -0.236672 0.990752 0.140119 -0.460488 0.990166 0.139561 -0.225984 0.98989 0.138821 0.169481 0.989733 0.140453 0.16903 0.990493 0.140821 -0.460519 0.991733 0.129821 -0.460519 0.989733 0.129821 -0.460519 0.991733 0.134071 -0.460519 0.991733 0.130407 -0.460519 0.998733 0.126341 0.169481 0.998733 0.126341 -0.460519 0.998733 0.125821 0.169481 0.999032 0.121236 0.169481 0.998733 0.117571 0.169481 0.991733 0.117571 -0.460519 0.995068 0.117571 -0.460519 0.991733 0.121821 -0.460519 0.991733 0.121821 -0.460519 0.989733 0.0998214 0.169481 0.989733 0.0998214 -0.460519 0.989733 0.0998214 0.169481 0.991733 0.0998214 -0.460519 0.991733 0.104071 -0.460519 0.991733 0.104071 -0.460519 0.995068 0.096341 0.169481 0.998733 0.0958214 0.169481 0.999032 0.0953018 0.169481 0.998733 0.0912356 0.169481 0.998733 0.0875714 0.169481 0.995068 0.0912356 -0.460519 0.998733 0.0875714 0.169481 0.991733 0.0918214 0.169481 0.991733 0.0818068 0.169393 0.989972 0.0817733 -0.190201 0.990104 0.0828214 -0.460519 0.989733 0.0808214 0.169481 0.991733 0.0809492 -0.102836 0.991051 0.0810826 -0.460454 0.990776 0.0809508 0.169471 0.991032 0.0828214 0.169481 0.989733 0.0808214 -0.460519 0.991733 0.0808214 0.169481 1.00073 0.0808214 -0.460519 1.00073 0.0828214 0.169481 0.996483 0.0828214 -0.460519 1.00073 0.0898214 0.169481 1.00015 0.0898214 -0.460519 1.00421 0.0898214 -0.460519 1.00525 0.0898214 -0.460519 1.00932 0.0861572 0.169481 1.01298 0.0828214 -0.460519 1.01298 0.0828214 -0.460519 1.00873 0.0828214 0.169481 1.00873 0.0808214 0.169481 1.00873 0.0808214 -0.460519 1.00873 0.0828214 0.169481 1.01298 0.0808214 0.169481 1.03073 0.0898214 0.169481 1.03421 0.0901214 0.169481 1.03473 0.0898214 0.169481 1.03932 0.0875714 0.169481 1.0444 0.0828214 0.169481 1.03873 0.0875714 0.169481 1.04773 0.0912356 0.169481 1.04073 0.100407 0.169481 1.04073 0.102114 0.169481 1.03395 0.114043 0.169481 1.03944 0.117571 0.169481 1.04773 0.121821 0.169481 1.04973 0.0998214 0.169481 1.04973 0.121821 0.169481 1.04773 0.126341 0.169481 1.04073 0.131821 0.169481 1.03932 0.131521 0.169481 1.03473 0.138821 0.169481 1.04298 0.140821 0.169481 1.03873 0.138821 0.169481 1.03873 0.135486 0.169481 1.02648 0.135486 0.169481 1.01298 0.140821 0.169481 1.03073 0.131821 0.169481 1.00932 0.131521 0.169481 1.00473 0.134071 0.169481 0.995068 0.130407 0.169481 0.998733 0.140821 0.169481 1.00073 0.134071 0.169481 0.991733 0.129821 0.169481 0.989733 0.129821 0.169481 0.991733 0.125302 0.169481 0.998733 0.117571 0.169481 0.995068 0.104071 0.169481 0.995068 0.104071 0.169481 0.991733 0.121821 0.169481 0.989733 0.121821 0.169481 0.991733 0.0861572 0.169481 0.996483 0.0898214 0.169481 1.00421 0.0901214 0.169481 1.00473 0.0898214 0.169481 1.00525 0.0898214 0.169481 1.00932 0.0828214 0.169481 1.00073 0.0918214 0.169481 0.989733 0.100407 0.169481 0.998733 0.0898214 0.169481 1.03015 0.122821 0.169481 1.01073 0.0861572 0.169481 1.02648 0.0911143 0.169481 1.01651 0.0908214 0.169481 1.01722 0.0911143 -0.460519 1.01651 0.0908214 -0.460519 1.01722 0.0908214 -0.460519 1.02225 0.0908214 0.169481 1.02225 0.0911143 -0.460519 1.02295 0.0911143 0.169481 1.02295 0.0965996 -0.460519 1.02844 0.0965996 0.169481 1.02844 0.0973067 0.169481 1.02873 0.0968882 -0.106815 1.02863 0.0994212 0.169477 1.02885 0.101821 -0.460519 1.03249 0.101821 0.169481 1.03249 0.101575 -0.460519 1.03051 0.1015 0.16944 1.03033 0.100103 -0.460494 1.02897 0.0980641 -0.460519 1.02873 0.101011 0.0202541 1.02973 0.102114 -0.460519 1.03395 0.101869 -0.144386 1.03347 0.1076 0.169481 1.03944 0.108307 0.169481 1.03973 0.1076 -0.460519 1.03944 0.108307 -0.460519 1.03973 0.113336 -0.460519 1.03973 0.113336 0.169481 1.03973 0.113754 -0.0246728 1.03963 0.114043 -0.460519 1.03944 0.119821 0.169481 1.03325 0.119528 0.169481 1.03395 0.119728 -0.145085 1.03364 0.119821 -0.460519 1.03325 0.119821 -0.460519 1.03173 0.121854 0.169441 1.02889 0.119821 0.169481 1.03173 0.123579 -0.460519 1.02873 0.119968 -0.251131 1.0309 0.120478 0.169052 1.02978 0.120792 -0.460356 1.02945 0.123579 0.169481 1.02873 0.125043 0.169481 1.02844 0.130821 0.169481 1.02225 0.130528 0.169481 1.02295 0.130821 -0.460519 1.02225 0.130528 -0.460519 1.02295 0.130821 0.169481 1.01722 0.130528 0.169481 1.01651 0.130821 -0.460519 1.01722 0.125043 -0.460519 1.01103 0.125043 0.169481 1.01103 0.124336 0.169481 1.01073 0.123579 -0.460519 1.01073 0.120013 -0.141466 1.00875 0.119821 0.169481 1.00697 0.120699 0.169389 1.00991 0.120552 -0.46038 1.00996 0.119821 -0.460519 1.00622 0.119528 0.169481 1.00551 0.119528 -0.460519 1.00551 0.113336 -0.460519 0.999733 0.114043 -0.460519 1.00003 0.114043 0.169481 1.00003 0.113336 0.169481 0.999733 0.1076 -0.460519 1.00003 0.108307 0.169481 0.999733 0.1076 0.169481 1.00003 0.101821 -0.460519 1.00622 0.102114 0.169481 1.00551 0.102114 -0.460519 1.00551 0.0988214 -0.460519 1.01073 0.101821 0.169481 1.00697 0.100827 -0.089237 1.00992 0.101821 -0.460519 1.00773 0.101228 -0.4604 1.00953 0.101629 -0.0470716 1.00875 0.0980641 0.169481 1.01073 0.100979 0.16941 1.01 0.126669 0.169446 1.00142 0.122364 0.169478 1.00493 0.125324 0.169445 1.00811 0.127531 0.169467 1.0077 0.123968 0.169148 1.00762 0.124469 0.169462 1.0016 0.123079 0.169459 1.00266 0.122813 -0.0378284 1.00613 0.128892 0.169462 1.00627 0.12397 -0.215606 1.00751 0.122524 -0.133706 1.00414 0.125201 -0.283135 1.00804 0.122616 -0.292585 1.0056 0.127734 0.125381 1.002 0.128958 0.169407 1.00336 0.128617 -0.460485 1.00268 0.124532 -0.275063 1.00162 0.123205 -0.460512 1.00702 0.126832 -0.330581 1.00152 0.12296 -0.4604 1.00279 0.126603 -0.460451 1.00804 0.124608 -0.460616 1.00144 0.129325 -0.460553 1.00477 0.128788 -0.460444 1.00667 0.0961344 0.169227 1.03108 0.0949326 0.169172 1.03814 0.0927248 0.169367 1.03305 0.0992608 0.169477 1.03386 0.0925313 0.1695 1.03597 0.0961758 0.0241873 1.03805 0.0981129 -0.103781 1.03235 0.0924985 -0.184402 1.03444 0.0956481 -0.0377381 1.03135 0.0985982 -0.284119 1.03649 0.0980827 0.169448 1.03729 0.0991315 -0.189619 1.03429 0.0933925 -0.032119 1.03252 0.0930933 -0.205615 1.03652 0.0944664 -0.460438 1.03789 0.0969872 -0.158513 1.03159 0.0924295 -0.460483 1.03558 0.0930196 -0.46052 1.03272 0.095432 -0.460411 1.03127 0.0987246 -0.460259 1.03283 0.0992915 -0.460221 1.03556 0.097274 -0.460514 1.03784 0.128927 0.169434 1.03331 0.124764 -0.460353 1.03804 0.123724 0.169461 1.03756 0.126961 0.16942 1.03148 0.129164 0.0382638 1.03466 0.122328 0.169483 1.03495 0.123646 0.1695 1.032 0.126918 0.169343 1.03806 0.123411 -0.00810018 1.03704 0.12493 -0.116578 1.03799 0.125969 -0.259313 1.03137 0.128828 0.169468 1.03639 0.127231 -0.292388 1.03776 0.12802 -0.4605 1.03213 0.12884 -0.311583 1.03612 0.123131 -0.291698 1.03274 0.122546 -0.153689 1.03535 0.12427 -0.300656 1.03175 0.128929 -0.290222 1.03344 0.127143 -0.460388 1.03782 0.122723 -0.460488 1.0362 0.122431 -0.460523 1.03403 0.124646 -0.460616 1.03136 0.0943642 0.169482 1.00797 0.0960478 0.169334 1.00127 0.0985849 0.169508 1.00688 0.0924599 0.169472 1.00545 0.0928741 0.169449 1.0028 0.0962497 0.0383623 1.00802 0.0991319 0.169496 1.00349 0.0930143 -0.194935 1.00285 0.0980053 -0.150392 1.00724 0.0944304 -0.245531 1.00776 0.0990163 -0.177019 1.0059 0.0932689 -0.150933 1.00682 0.0924985 -0.223186 1.00444 0.0986285 -0.186272 1.00285 0.0952136 -0.195624 1.00149 0.0991186 -0.251241 1.00414 0.0965928 -0.245236 1.00802 0.0975856 -0.107621 1.00191 0.0924742 -0.460406 1.00565 0.0988726 -0.460482 1.00301 0.0946717 -0.460531 1.008 0.0933337 -0.460381 1.00228 0.0965852 -0.460505 1.00138 0.0991948 -0.460498 1.00539 0.0977909 -0.460553 1.00763 0.0973067 0.169481 1.71873 0.0965996 -0.460519 1.71844 0.0965996 0.169481 1.71844 0.0828214 0.169481 1.70298 0.0828214 0.169481 1.69873 0.0828214 0.169481 1.71648 0.0898214 0.169481 1.72421 0.0912356 0.169481 1.73073 0.0953018 0.169481 1.73073 0.0958214 0.169481 1.73043 0.100407 0.169481 1.73073 0.117571 0.169481 1.7344 0.117571 0.169481 1.73773 0.104071 0.169481 1.73773 0.0998214 0.169481 1.73773 0.121236 0.169481 1.73073 0.125821 0.169481 1.73043 0.131821 0.169481 1.72932 0.131821 0.169481 1.72421 0.138821 0.169481 1.73298 0.140821 0.169481 1.72873 0.129821 0.169481 1.73973 0.130528 0.169481 1.71295 0.135486 0.169481 1.71648 0.131821 0.169481 1.69421 0.130407 0.169481 1.68873 0.138821 0.169481 1.68648 0.134071 0.169481 1.68173 0.129821 0.169481 1.68173 0.126341 0.169481 1.68873 0.125821 0.169481 1.68903 0.125302 0.169481 1.68873 0.121236 0.169481 1.68873 0.117571 0.169481 1.68507 0.104071 0.169481 1.68507 0.104071 0.169481 1.68173 0.121821 0.169481 1.67973 0.117571 0.169481 1.68173 0.121821 0.169481 1.68173 0.100407 0.169481 1.68873 0.096341 0.169481 1.68873 0.0958214 0.169481 1.68903 0.0912356 0.169481 1.68873 0.0898214 0.169481 1.69015 0.0901214 0.169481 1.69473 0.0898214 0.169481 1.69525 0.0875714 0.169481 1.68173 0.0875714 0.169481 1.68507 0.0808214 0.169481 1.69073 0.0898214 0.169481 1.72015 0.131821 0.169481 1.69015 0.0976051 0.169347 1.69181 0.0828214 -0.460519 1.69873 0.0828214 -0.460519 1.70298 0.0861572 0.169481 1.70298 0.0898214 0.169481 1.69932 0.0898214 -0.460519 1.69525 0.0901214 -0.460519 1.69473 0.0898214 -0.460519 1.69421 0.0898214 0.169481 1.69421 0.0898214 -0.460519 1.69015 0.0861572 0.169481 1.68648 0.0828214 0.169481 1.68648 0.0828214 0.169481 1.69073 0.0828214 -0.460519 1.69073 0.0808214 -0.460519 1.69073 0.0813183 -0.107807 1.68047 0.0812875 -0.460414 1.68035 0.0821399 -0.101766 1.67986 0.0814555 0.169434 1.6802 0.0808214 0.169481 1.68173 0.0918214 0.169481 1.68173 0.0953018 0.169481 1.68873 0.104071 -0.460519 1.68173 0.0998214 -0.460519 1.68173 0.0998214 0.169481 1.68173 0.121821 -0.460519 1.67973 0.121821 -0.460519 1.68173 0.130407 -0.460519 1.68873 0.134071 -0.460519 1.68507 0.134071 0.169481 1.68507 0.129821 -0.460519 1.68173 0.140669 -0.460522 1.68087 0.139118 0.169481 1.67973 0.140821 0.169481 1.68173 0.14065 -0.308096 1.68097 0.140634 0.169427 1.68078 0.138821 -0.460519 1.69073 0.140821 0.169481 1.69073 0.138821 -0.460519 1.68648 0.138821 0.169481 1.69073 0.135486 0.169481 1.68648 0.131821 -0.460519 1.69015 0.131821 -0.460519 1.69421 0.131821 -0.460519 1.69525 0.131521 0.169481 1.69473 0.131821 0.169481 1.69525 0.131821 0.169481 1.69932 0.138821 -0.460519 1.70298 0.135486 0.169481 1.70298 0.138821 0.169481 1.70298 0.138821 0.169481 1.69873 0.140821 0.169481 1.69873 0.140821 0.169481 1.72073 0.140821 -0.460519 1.72073 0.138821 -0.460519 1.72073 0.138821 0.169481 1.72073 0.135486 -0.460519 1.71648 0.138821 0.169481 1.71648 0.131821 -0.460519 1.72015 0.131821 0.169481 1.72015 0.131521 0.169481 1.72473 0.131821 0.169481 1.72525 0.135486 0.169481 1.73298 0.138821 0.169481 1.72873 0.140821 -0.460519 1.72873 0.138821 -0.460519 1.73973 0.140821 0.169481 1.73773 0.140337 0.169291 1.739 0.138821 0.169481 1.73973 0.139503 -0.070166 1.7396 0.139774 -0.460449 1.73955 0.14065 -0.228166 1.73849 0.129821 -0.460519 1.73773 0.129821 0.169481 1.73773 0.134071 -0.460519 1.73773 0.134071 -0.460519 1.7344 0.134071 0.169481 1.73773 0.134071 0.169481 1.7344 0.130407 0.169481 1.73073 0.126341 0.169481 1.73073 0.125821 -0.460519 1.73043 0.125302 0.169481 1.73073 0.121236 -0.460519 1.73073 0.121821 -0.460519 1.73773 0.121821 -0.460519 1.73973 0.121821 0.169481 1.73773 0.121821 0.169481 1.73973 0.0998214 0.169481 1.73973 0.0998214 -0.460519 1.73773 0.104071 0.169481 1.7344 0.100407 -0.460519 1.73073 0.096341 -0.460519 1.73073 0.096341 0.169481 1.73073 0.0953018 -0.460519 1.73073 0.0912356 -0.460519 1.73073 0.0875714 -0.460519 1.7344 0.0875714 0.169481 1.7344 0.0875714 -0.460519 1.73773 0.0875714 0.169481 1.73773 0.0918214 0.169481 1.73773 0.0918214 -0.460519 1.73773 0.0918214 0.169481 1.73973 0.0918214 -0.460519 1.73973 0.0828214 -0.460519 1.73973 0.081347 0.169446 1.73899 0.0818639 -0.460448 1.73955 0.0808214 -0.460519 1.73773 0.0808214 0.169481 1.73773 0.0813183 -0.289507 1.73899 0.0814295 -0.0389146 1.73913 0.0828214 0.169481 1.73973 0.0821399 -0.207719 1.7396 0.0808214 0.169481 1.72873 0.0828214 0.169481 1.72873 0.0828214 0.169481 1.73298 0.0861572 0.169481 1.73298 0.0898214 0.169481 1.72932 0.0898214 -0.460519 1.72525 0.0898214 0.169481 1.72525 0.0901214 0.169481 1.72473 0.0861572 0.169481 1.71648 0.0828214 -0.460519 1.72073 0.0828214 0.169481 1.72073 0.0808214 -0.460519 1.72073 0.0808214 0.169481 1.72073 0.0808214 0.169481 1.69873 0.0828214 -0.460519 1.71648 0.0808214 -0.460519 1.69873 0.0861572 -0.460519 1.70298 0.0861572 -0.460519 1.68648 0.0875714 -0.460519 1.68507 0.0912356 -0.460519 1.68873 0.0828214 -0.460519 1.68648 0.0808214 -0.460519 1.68173 0.0875714 -0.460519 1.68173 0.0918214 -0.460519 1.68173 0.0953018 -0.460519 1.68873 0.0958214 -0.460519 1.68903 0.096341 -0.460519 1.68873 0.100407 -0.460519 1.68873 0.104071 -0.460519 1.68507 0.117571 -0.460519 1.68507 0.117571 -0.460519 1.68173 0.125302 -0.460519 1.68873 0.121236 -0.460519 1.68873 0.125821 -0.460519 1.68903 0.126341 -0.460519 1.68873 0.135486 -0.460519 1.68648 0.131521 -0.460519 1.69473 0.131821 -0.460519 1.69932 0.134071 -0.460519 1.68173 0.135486 -0.460519 1.70298 0.138821 -0.460519 1.71648 0.140821 -0.460519 1.69873 0.138821 -0.460519 1.69873 0.131821 -0.460519 1.72421 0.131521 -0.460519 1.72473 0.131821 -0.460519 1.72525 0.131821 -0.460519 1.72932 0.135486 -0.460519 1.73298 0.138821 -0.460519 1.72873 0.138821 -0.460519 1.73298 0.129821 -0.460519 1.73973 0.130407 -0.460519 1.73073 0.126341 -0.460519 1.73073 0.125302 -0.460519 1.73073 0.104071 -0.460519 1.7344 0.117571 -0.460519 1.7344 0.117571 -0.460519 1.73773 0.104071 -0.460519 1.73773 0.0998214 -0.460519 1.73973 0.0958214 -0.460519 1.73043 0.0898214 -0.460519 1.72932 0.0901214 -0.460519 1.72473 0.0898214 -0.460519 1.72421 0.0898214 -0.460519 1.72015 0.0861572 -0.460519 1.73298 0.0808214 -0.460519 1.72873 0.0828214 -0.460519 1.73298 0.0828214 -0.460519 1.72873 0.0861572 -0.460519 1.71648 0.0988214 -0.460519 1.71873 0.0898214 -0.460519 1.69932 0.0988214 -0.460519 1.70073 0.0908214 0.169481 1.71225 0.0911143 0.169481 1.71295 0.0911143 -0.460519 1.71295 0.0908214 -0.460519 1.71225 0.0908214 -0.460519 1.70722 0.0911143 -0.460519 1.70651 0.0908214 0.169481 1.70722 0.0908735 -0.14782 1.70698 0.0911143 0.169481 1.70651 0.0973067 -0.460519 1.70073 0.0965996 0.169481 1.70103 0.0965996 -0.460519 1.70103 0.101041 0.169348 1.69974 0.0980641 0.169481 1.70073 0.101821 -0.460519 1.69697 0.100854 -0.207614 1.69987 0.100353 -0.460453 1.70038 0.0996532 -0.111918 1.70058 0.101654 -0.460495 1.6987 0.101629 0.0593461 1.69876 0.101821 0.169481 1.69773 0.102114 -0.460519 1.69551 0.102114 0.169481 1.69551 0.101821 0.169481 1.69622 0.108307 -0.460519 1.68973 0.1076 0.169481 1.69003 0.1076 -0.460519 1.69003 0.108307 0.169481 1.68973 0.113336 0.169481 1.68973 0.114043 -0.460519 1.69003 0.113336 -0.460519 1.68973 0.114043 0.169481 1.69003 0.119528 -0.460519 1.69551 0.119528 0.169481 1.69551 0.119821 -0.460519 1.69622 0.121989 -0.190002 1.70058 0.123579 -0.460519 1.70073 0.120913 -0.46041 1.70007 0.119821 0.169481 1.69697 0.119821 -0.460519 1.69773 0.120013 -0.139161 1.69876 0.120784 -0.0704464 1.69986 0.120636 0.169306 1.69998 0.123579 0.169481 1.70073 0.125043 0.169481 1.70103 0.125043 -0.460519 1.70103 0.130528 -0.460519 1.70651 0.130771 -0.31397 1.70692 0.130528 0.169481 1.70651 0.130771 -0.325171 1.70692 0.130821 -0.460519 1.70722 0.130771 -0.336372 1.70692 0.130821 0.169481 1.70722 0.130528 -0.460519 1.71295 0.130821 -0.460519 1.71225 0.130821 0.169481 1.71225 0.125043 0.169481 1.71844 0.125043 -0.460519 1.71844 0.124336 -0.460519 1.71873 0.122821 0.169481 1.71873 0.120361 0.169417 1.71977 0.12165 -0.460469 1.71897 0.120666 -0.274506 1.71969 0.119821 0.169481 1.72249 0.119528 -0.460519 1.72395 0.119528 0.169481 1.72395 0.119821 -0.460519 1.72173 0.113695 -0.147819 1.72966 0.114043 0.169481 1.72944 0.114043 -0.460519 1.72944 0.113336 0.169481 1.72973 0.113336 -0.460519 1.72973 0.108307 0.169481 1.72973 0.1076 -0.460519 1.72944 0.108307 -0.460519 1.72973 0.1076 0.169481 1.72944 0.101892 -0.148052 1.72358 0.102114 -0.460519 1.72395 0.102114 0.169481 1.72395 0.101821 0.169481 1.72249 0.101629 -0.0107558 1.72071 0.101011 -0.0440716 1.71973 0.101157 0.16935 1.71961 0.100908 -0.46041 1.71947 0.101821 -0.460519 1.72249 0.0988214 0.169481 1.71873 0.0998434 -0.110703 1.71892 0.128984 0.169414 1.72343 0.127964 -0.460465 1.72212 0.124814 -0.46051 1.72144 0.122441 -0.460437 1.72438 0.123205 -0.460041 1.72694 0.129236 -0.460518 1.72491 0.128929 -0.384131 1.72344 0.126631 -0.460513 1.72821 0.125031 -0.164911 1.72797 0.123151 -0.432169 1.72268 0.126412 -0.369169 1.72138 0.127734 -0.151819 1.722 0.122837 -0.161269 1.72629 0.127275 -0.1152 1.72773 0.129173 0.169454 1.72556 0.128727 -0.185485 1.72644 0.127616 0.169292 1.72774 0.123112 0.169466 1.72262 0.12376 0.169559 1.7277 0.124652 0.169458 1.72146 0.127036 0.169437 1.72152 0.12242 0.169183 1.72457 0.0928345 -0.460508 1.69293 0.0978032 -0.460496 1.69763 0.097429 -0.46029 1.69176 0.0992155 -0.460476 1.69489 0.0939531 -0.460296 1.69781 0.0989294 -0.384131 1.69344 0.0970151 -0.248878 1.69782 0.0946214 -0.460469 1.69154 0.0958906 -0.128785 1.69136 0.0977346 -0.252226 1.692 0.0927393 -0.229782 1.69597 0.0987021 -0.224466 1.69639 0.0982504 0.169359 1.69721 0.0945033 -0.193557 1.69776 0.0925497 -0.151819 1.69386 0.095801 0.169329 1.69816 0.0989983 0.169459 1.69345 0.09246 0.169472 1.69546 0.0927539 0.169462 1.69317 0.094562 0.169438 1.69152 0.0935049 0.169464 1.69726 0.099106 0.108844 1.69546 0.122907 -0.460445 1.6926 0.126112 -0.399094 1.69805 0.122498 -0.3798 1.69444 0.122639 -0.460513 1.69594 0.128338 -0.460358 1.69716 0.125971 -0.460492 1.6913 0.12385 -0.319753 1.69211 0.123567 -0.304889 1.6972 0.124556 -0.460487 1.69789 0.129107 -0.46048 1.69389 0.122714 -0.0896065 1.69344 0.129243 0.169462 1.6958 0.126036 -0.0964971 1.69802 0.128269 -0.460486 1.69229 0.128929 0.0151311 1.69344 0.126401 -0.110721 1.69144 0.122536 -0.0100689 1.69546 0.128271 -0.0697221 1.69697 0.127295 0.169459 1.69159 0.124461 0.169474 1.69161 0.127795 0.0346217 1.69204 0.122379 0.169481 1.69431 0.123723 0.169477 1.69753 0.126993 0.169316 1.69794 0.0996979 -0.460523 1.72501 0.0923266 -0.460544 1.72464 0.0944359 -0.460429 1.728 0.0936363 -0.460427 1.72198 0.0929155 -0.287269 1.72644 0.0975692 -0.404606 1.72761 0.0963315 -0.460448 1.7213 0.0984343 0.169387 1.72251 0.0931516 -0.130163 1.72268 0.0941699 -0.128785 1.72759 0.0925049 -0.238444 1.72437 0.0976142 -0.206353 1.72192 0.0943838 -0.191982 1.72171 0.0988061 -0.132919 1.72629 0.0967991 -0.0992533 1.7279 0.09244 0.169474 1.72541 0.0991443 -0.0703127 1.72444 0.092544 0.169197 1.72357 0.0965214 -0.0488534 1.72149 0.0964792 0.169452 1.72811 0.0952508 0.16942 1.7213 0.0936667 0.169479 1.72752 0.0989586 0.169473 1.72634 -1.52888 -0.565634 1.51473 -1.51368 -0.575519 1.50073 -1.52903 -0.565583 1.50073 -1.53618 -0.575519 1.50073 -1.51368 -0.525519 1.50073 -1.53618 -0.525519 1.50073 -1.58518 -0.525519 1.42923 -1.58518 -0.525519 1.45173 -1.58518 -0.575519 1.45173 -1.58518 -0.575519 1.42923 -1.58968 -0.525519 1.42473 -1.59918 -0.535388 1.44453 -1.59918 -0.575519 1.51473 -1.59918 -0.525519 1.42473 -1.59918 -0.525519 1.51473 -1.59918 -0.575519 1.42473 -1.58968 -0.575519 1.42473 -1.50918 -0.575519 1.51473 -1.50918 -0.575519 1.50523 -1.50918 -0.525519 1.50523 -1.50918 -0.525519 1.51473 -1.58518 -0.535249 1.44474 -1.58518 -0.565586 1.44477 -1.59918 -0.565371 1.4445 -1.52934 -0.535452 1.50072 -1.52921 -0.535591 1.51473 -1.50918 -0.520519 1.15973 -1.52891 -0.52052 1.16964 -1.50918 -0.520519 1.20973 -1.52755 -0.506518 1.16988 -1.51368 -0.506519 1.15973 -1.5359 -0.5068 1.15973 -1.51368 -0.506519 1.20973 -1.58518 -0.457519 1.15973 -1.58518 -0.457519 1.20973 -1.58518 -0.435019 1.15973 -1.58968 -0.430519 1.20973 -1.58968 -0.430519 1.15973 -1.59918 -0.520519 1.20973 -1.59918 -0.520519 1.15973 -1.59918 -0.430519 1.15973 -1.50918 -0.511019 1.15973 -1.50918 -0.511019 1.20973 -1.53618 -0.506519 1.20973 -1.59918 -0.430519 1.20973 -1.58518 -0.435019 1.20973 -1.59918 -0.450014 1.19997 -1.58516 -0.450202 1.19997 -1.59918 -0.450678 1.1691 -1.58518 -0.450784 1.16909 -1.52903 -0.520519 1.19984 -1.52906 -0.506504 1.19982 -1.65418 -0.520519 1.30473 -1.65418 -0.520519 1.21473 -1.61381 -0.520521 1.28535 -1.65418 -0.506519 1.30023 -1.65418 -0.506519 1.27773 -1.60418 -0.506519 1.27773 -1.60418 -0.506519 1.30023 -1.61375 -0.50652 1.28521 -1.60418 -0.457519 1.22873 -1.60418 -0.435019 1.22873 -1.65418 -0.457519 1.22873 -1.65418 -0.435019 1.22873 -1.60418 -0.430519 1.21473 -1.65418 -0.430519 1.21473 -1.60418 -0.511019 1.30473 -1.60418 -0.520519 1.21473 -1.60418 -0.430519 1.22423 -1.60418 -0.520519 1.30473 -1.65418 -0.511019 1.30473 -1.65418 -0.430519 1.22423 -1.64459 -0.450294 1.21473 -1.6447 -0.450535 1.22873 -1.61413 -0.450167 1.21473 -1.61419 -0.450224 1.22873 -1.64441 -0.506517 1.28533 -1.64419 -0.52052 1.28557 -1.60418 -0.435019 1.50073 -1.61401 -0.450413 1.50073 -1.65418 -0.457519 1.50073 -1.60418 -0.457519 1.50073 -1.65418 -0.435019 1.50073 -1.60418 -0.506519 1.42923 -1.60418 -0.506519 1.45173 -1.65418 -0.506519 1.42923 -1.60418 -0.511019 1.42473 -1.65418 -0.520519 1.42473 -1.60418 -0.520519 1.51473 -1.60418 -0.520519 1.42473 -1.61395 -0.520519 1.44423 -1.65418 -0.520519 1.51473 -1.60418 -0.430519 1.51473 -1.65418 -0.430519 1.50523 -1.60418 -0.430519 1.50523 -1.65418 -0.430519 1.51473 -1.65418 -0.506519 1.45173 -1.65418 -0.511019 1.42473 -1.64398 -0.52052 1.44459 -1.64419 -0.506514 1.44478 -1.61381 -0.506517 1.44454 -1.64457 -0.450403 1.50073 -1.64454 -0.450392 1.51473 -1.61408 -0.450277 1.51473 -1.59918 -0.520519 1.56973 -1.59918 -0.520519 1.51973 -1.50918 -0.520521 1.51973 -1.52941 -0.520521 1.52971 -1.53618 -0.506519 1.56973 -1.53619 -0.506512 1.51973 -1.51368 -0.506519 1.51973 -1.52636 -0.506518 1.52795 -1.51368 -0.506519 1.56973 -1.58518 -0.435019 1.56973 -1.58518 -0.457519 1.51973 -1.58518 -0.435019 1.51973 -1.58968 -0.430519 1.56973 -1.59918 -0.430519 1.51973 -1.59918 -0.430519 1.56973 -1.58968 -0.430519 1.51973 -1.50918 -0.511019 1.56973 -1.50918 -0.511019 1.51973 -1.50918 -0.520519 1.56973 -1.58518 -0.457519 1.56973 -1.59918 -0.450283 1.56007 -1.58516 -0.45038 1.56002 -1.59918 -0.450364 1.5295 -1.58518 -0.450395 1.52945 -1.52914 -0.520519 1.56006 -1.52937 -0.506515 1.55996 -1.65418 -0.280519 1.21473 -1.60418 -0.370519 1.21473 -1.65418 -0.370519 1.21473 -1.65418 -0.343519 1.22873 -1.60418 -0.343519 1.22873 -1.60418 -0.366019 1.22873 -1.61362 -0.350362 1.22873 -1.60418 -0.294519 1.27773 -1.60418 -0.294519 1.30023 -1.65418 -0.294519 1.27773 -1.65418 -0.294519 1.30023 -1.65418 -0.290019 1.30473 -1.65418 -0.280519 1.30473 -1.60418 -0.280519 1.30473 -1.61384 -0.280519 1.28502 -1.64437 -0.280518 1.28474 -1.60418 -0.370519 1.22423 -1.60418 -0.280519 1.21473 -1.60418 -0.290019 1.30473 -1.65418 -0.366019 1.22873 -1.65418 -0.370519 1.22423 -1.64439 -0.294523 1.28456 -1.61383 -0.294519 1.28482 -1.64437 -0.350373 1.21473 -1.6443 -0.350283 1.22874 -1.61365 -0.35047 1.21473 -1.59918 -0.535579 1.28485 -1.59918 -0.575519 1.30473 -1.59918 -0.525519 1.30473 -1.59918 -0.565119 1.28516 -1.58518 -0.565345 1.285 -1.58518 -0.525519 1.30023 -1.58518 -0.575519 1.27773 -1.58518 -0.575519 1.30023 -1.58518 -0.525519 1.27773 -1.51368 -0.525519 1.22873 -1.51368 -0.575519 1.22873 -1.53618 -0.525519 1.22873 -1.50918 -0.525519 1.22423 -1.59918 -0.525519 1.21473 -1.52941 -0.535567 1.21473 -1.50918 -0.575519 1.21473 -1.50918 -0.525519 1.21473 -1.53588 -0.575516 1.22843 -1.59918 -0.575519 1.21473 -1.50918 -0.575519 1.22423 -1.58968 -0.525519 1.30473 -1.58968 -0.575519 1.30473 -1.52965 -0.535436 1.22874 -1.52887 -0.565317 1.21473 -1.52638 -0.565118 1.22873 -1.58518 -0.535284 1.28474 -1.61393 -0.350418 1.51473 -1.60418 -0.370519 1.51473 -1.60418 -0.280519 1.51473 -1.65418 -0.370519 1.51473 -1.64439 -0.35079 1.51473 -1.65418 -0.366019 1.50073 -1.60418 -0.343519 1.50073 -1.64515 -0.353554 1.50073 -1.60418 -0.366019 1.50073 -1.65418 -0.343658 1.50087 -1.65418 -0.294519 1.45173 -1.65418 -0.294519 1.42923 -1.60418 -0.294519 1.45173 -1.60418 -0.294519 1.42923 -1.65418 -0.290019 1.42473 -1.65418 -0.280519 1.42473 -1.64416 -0.280519 1.4446 -1.60418 -0.280519 1.42473 -1.65418 -0.280519 1.51473 -1.60418 -0.370519 1.50523 -1.65418 -0.370519 1.50523 -1.60418 -0.290019 1.42473 -1.61403 -0.280518 1.44429 -1.61385 -0.294526 1.44433 -1.64417 -0.294524 1.44471 -1.61387 -0.350222 1.50072 -0.459179 -0.460519 1.73473 -0.479096 -0.460521 1.69414 -0.486179 -0.446519 1.73473 -0.463679 -0.446519 1.68473 -0.479344 -0.446519 1.69413 -0.486179 -0.446519 1.68473 -0.463679 -0.446519 1.73473 -0.535179 -0.375019 1.73473 -0.535179 -0.397519 1.68473 -0.535179 -0.375019 1.68473 -0.535179 -0.397519 1.73473 -0.539679 -0.370519 1.68473 -0.539679 -0.370519 1.73473 -0.549179 -0.370519 1.73473 -0.549179 -0.460519 1.73473 -0.549179 -0.370519 1.68473 -0.549179 -0.3899 1.72474 -0.549179 -0.460519 1.68473 -0.459179 -0.460519 1.68473 -0.459179 -0.451019 1.68473 -0.459179 -0.451019 1.73473 -0.535169 -0.3901 1.7249 -0.535177 -0.390783 1.69461 -0.549179 -0.390543 1.69488 -0.47918 -0.446501 1.72498 -0.479223 -0.460519 1.72496 -0.00917862 -0.100519 1.68473 0.0808214 -0.100519 1.68473 0.0107623 -0.100519 1.69437 0.0111521 -0.100521 1.72495 0.0178214 -0.086519 1.73473 -0.00467862 -0.086519 1.73473 0.0113258 -0.0865159 1.72494 -0.00467862 -0.086519 1.68473 0.0106986 -0.0865088 1.69438 0.0178214 -0.086519 1.68473 0.0669518 -0.0373859 1.73473 0.0668214 -0.0150189 1.73473 0.0668214 -0.0375189 1.68473 0.0668214 -0.0150189 1.68473 0.0713214 -0.0105189 1.68473 0.0808219 -0.030561 1.6945 0.0808218 -0.0301625 1.72494 0.0808214 -0.100519 1.73473 0.0808214 -0.0105189 1.68473 -0.00917862 -0.100519 1.73473 0.0808214 -0.0105189 1.73473 0.0713214 -0.0105189 1.73473 -0.00917862 -0.091019 1.68473 -0.00917862 -0.091019 1.73473 0.0668123 -0.0306595 1.69442 0.066822 -0.0272946 1.72573 0.0808214 -0.100519 0.994733 0.0110277 -0.10052 1.03494 0.0112726 -0.0865152 1.03491 -0.00467862 -0.086519 1.04473 0.0178214 -0.086519 1.04473 -0.00467862 -0.086519 0.994733 0.0178214 -0.086519 0.994733 0.0668214 -0.0375189 1.04473 0.0668214 -0.0150189 1.04473 0.0668214 -0.0375189 0.994733 0.0668214 -0.0150189 0.994733 0.0713214 -0.0105189 0.994733 0.0713214 -0.0105189 1.04473 0.0808214 -0.0105189 1.04473 0.0808214 -0.100519 1.04473 0.0808219 -0.0305882 1.0042 -0.00917862 -0.091019 1.04473 -0.00917862 -0.100519 1.04473 -0.00917862 -0.091019 0.994733 -0.00917862 -0.100519 0.994733 0.0808214 -0.0105189 0.994733 0.0668167 -0.030796 1.00402 0.0808216 -0.0303724 1.03464 0.0668188 -0.0304411 1.03459 0.0108633 -0.100519 1.00439 0.0110515 -0.0865127 1.00414 0.080822 -0.230314 1.00469 0.0808214 -0.250519 0.994733 0.0668214 -0.223519 0.994733 0.0668214 -0.246019 1.04473 0.0668183 -0.23037 1.03514 0.0668214 -0.223519 1.04473 -0.00467862 -0.174519 0.994733 -0.00467862 -0.174519 1.04473 0.0178214 -0.174519 0.994733 0.0108362 -0.160518 1.00436 -0.00917862 -0.160519 0.994733 0.0713214 -0.250519 1.04473 0.0808214 -0.160519 1.04473 0.0178214 -0.174519 1.04473 -0.00917862 -0.160519 1.04473 -0.00917862 -0.170019 1.04473 0.0713214 -0.250519 0.994733 0.0668214 -0.246019 0.994733 0.0808214 -0.160519 0.994733 -0.00917862 -0.170019 0.994733 0.0109777 -0.174525 1.00419 0.0107429 -0.174519 1.03496 0.010589 -0.160519 1.03494 0.0668135 -0.230259 1.0045 0.0808188 -0.250518 1.04473 0.0808223 -0.230463 1.03509 -0.00917862 -0.160519 1.73473 -0.00917839 -0.16052 1.68473 0.0107469 -0.160518 1.69427 0.0109215 -0.17452 1.6942 -0.00467862 -0.174519 1.73473 -0.00467862 -0.174519 1.68473 0.0178214 -0.174519 1.73473 0.0668214 -0.246019 1.68473 0.0668214 -0.223519 1.73473 0.0808214 -0.250519 1.73473 0.0808214 -0.160519 1.73473 0.0808214 -0.250519 1.68473 0.0808214 -0.160519 1.68473 0.0178214 -0.174519 1.68473 0.0668214 -0.223519 1.68473 0.0713214 -0.250519 1.68473 -0.00917862 -0.170019 1.73473 -0.00917862 -0.170019 1.68473 0.0668214 -0.246019 1.73473 0.0713214 -0.250519 1.73473 0.0668142 -0.230384 1.72539 0.0808213 -0.230722 1.69499 0.0668185 -0.230611 1.69481 0.0808221 -0.230678 1.72521 0.0107862 -0.160518 1.72475 0.0106505 -0.174533 1.72496 -0.478716 -0.115145 1.67973 -0.479134 -0.145714 1.67973 -0.481512 -0.142343 1.66573 -0.477437 -0.147794 1.66573 -0.463679 -0.155519 1.66573 -0.486179 -0.155519 1.66573 -0.463679 -0.105519 1.66573 -0.535179 -0.155519 1.61673 -0.535179 -0.105519 1.59423 -0.535179 -0.155519 1.59423 -0.539679 -0.105519 1.58973 -0.549179 -0.155519 1.67973 -0.549179 -0.155519 1.58973 -0.54918 -0.115479 1.60911 -0.549179 -0.145355 1.60978 -0.549179 -0.105519 1.67973 -0.539679 -0.155519 1.58973 -0.459179 -0.105519 1.67973 -0.459179 -0.155519 1.67973 -0.459179 -0.155519 1.67023 -0.459179 -0.105519 1.67023 -0.486179 -0.105519 1.66573 -0.535179 -0.105519 1.61673 -0.549179 -0.105519 1.58973 -0.535172 -0.115396 1.60918 -0.535178 -0.145322 1.60974 -0.478679 -0.115041 1.66572 -0.47868 -0.115472 1.04973 -0.479158 -0.145818 1.04973 -0.549179 -0.105519 1.04973 -0.485975 -0.105522 1.06353 -0.463679 -0.105519 1.06373 -0.476157 -0.114913 1.06373 -0.463679 -0.155519 1.06373 -0.486179 -0.155519 1.06373 -0.535179 -0.155519 1.11273 -0.549179 -0.155519 1.13973 -0.539679 -0.155519 1.13973 -0.539679 -0.105519 1.13973 -0.54918 -0.145756 1.11996 -0.549179 -0.105519 1.13973 -0.549179 -0.155519 1.04973 -0.459179 -0.105519 1.04973 -0.535113 -0.105521 1.11266 -0.535179 -0.105519 1.13523 -0.459179 -0.155519 1.05923 -0.459179 -0.105519 1.05923 -0.459179 -0.155519 1.04973 -0.535179 -0.155519 1.13523 -0.53517 -0.145744 1.11982 -0.549179 -0.115733 1.11994 -0.535178 -0.114188 1.12152 -0.479151 -0.145848 1.06374 -0.00917862 -0.460519 1.68473 -0.00917862 -0.460519 1.73473 0.011056 -0.46052 1.7252 0.0178214 -0.446519 1.73473 -0.00467862 -0.446519 1.73473 0.0113514 -0.446517 1.72531 -0.00467862 -0.446519 1.68473 0.0178214 -0.446519 1.68473 0.0668214 -0.375019 1.68473 0.0668214 -0.397519 1.73473 0.0668189 -0.388648 1.72665 0.0668214 -0.375019 1.73473 0.0668214 -0.397519 1.68473 0.0713214 -0.370519 1.68473 0.0713214 -0.370519 1.73473 0.0808214 -0.460519 1.73473 0.0808214 -0.370519 1.73473 0.0808214 -0.370519 1.68473 0.0808214 -0.460519 1.68473 -0.00917862 -0.451019 1.73473 -0.00917862 -0.451019 1.68473 0.080822 -0.390563 1.69461 0.0668129 -0.390671 1.69447 0.0808211 -0.390563 1.72481 0.0668188 -0.393156 1.72174 0.0109187 -0.460519 1.69432 0.0110962 -0.446513 1.6941 0.0808214 -0.460519 0.994733 0.0808214 -0.460519 1.04473 -0.00917862 -0.460519 1.04473 0.0107097 -0.46052 1.03499 0.0109307 -0.446516 1.03504 -0.00467862 -0.446519 1.04473 0.0178214 -0.446519 1.04473 0.0668214 -0.375019 1.04473 0.0667478 -0.397594 1.04473 0.0668214 -0.397519 0.994733 0.0668214 -0.375019 0.994733 0.0713214 -0.370519 0.994733 0.0713214 -0.370519 1.04473 0.0808214 -0.370519 0.994733 0.0808214 -0.370519 1.04473 -0.00917862 -0.451019 1.04473 -0.00917862 -0.451019 0.994733 -0.00917862 -0.460519 0.994733 -0.00467862 -0.446519 0.994733 0.0178214 -0.446519 0.994733 0.0668141 -0.390265 1.00445 0.0808218 -0.389963 1.03479 0.0668207 -0.388564 1.03603 0.080822 -0.390225 1.00462 0.0108633 -0.460519 1.00439 0.0110515 -0.446513 1.00414 -0.549179 -0.370519 1.04473 -0.549181 -0.390262 1.03513 -0.549179 -0.390219 1.00462 -0.535179 -0.375019 1.04473 -0.535176 -0.390418 1.03517 -0.535179 -0.397519 1.04473 -0.535179 -0.375019 0.994733 -0.535179 -0.397519 0.994733 -0.486179 -0.446519 0.994733 -0.486179 -0.446519 1.04473 -0.478946 -0.446518 1.03512 -0.463679 -0.446519 0.994733 -0.459179 -0.451019 1.04473 -0.459179 -0.451019 0.994733 -0.549179 -0.460519 0.994733 -0.478973 -0.460519 1.00429 -0.459179 -0.460519 1.04473 -0.549179 -0.460519 1.04473 -0.539679 -0.370519 1.04473 -0.463679 -0.446519 1.04473 -0.539679 -0.370519 0.994733 -0.549179 -0.370519 0.994733 -0.459179 -0.460519 0.994733 -0.479013 -0.446511 1.00418 -0.478776 -0.460519 1.03507 -0.535171 -0.390265 1.00444 0.135821 -0.460519 1.13973 0.126054 -0.46052 1.12004 0.135821 -0.446519 1.13523 0.126202 -0.446515 1.11986 0.0858214 -0.446519 1.11273 0.135818 -0.397619 1.06383 0.135821 -0.375019 1.06373 0.0858214 -0.375019 1.06373 0.0858214 -0.370519 1.05923 0.135821 -0.370519 1.04973 0.135821 -0.460519 1.04973 0.0858214 -0.370519 1.04973 0.135821 -0.446519 1.11273 0.135821 -0.370519 1.05923 0.0858214 -0.451019 1.13973 0.135821 -0.451019 1.13973 0.0858214 -0.446519 1.13523 0.0858214 -0.460519 1.13973 0.0858214 -0.460519 1.04973 0.0858214 -0.397519 1.06373 0.0958402 -0.390257 1.04973 0.0959101 -0.390305 1.06374 0.126236 -0.390398 1.04973 0.128047 -0.388851 1.06373 0.0958015 -0.46052 1.12009 0.0955219 -0.446513 1.11982 0.0858214 -0.370519 1.67973 0.0858214 -0.460519 1.67973 0.135821 -0.370519 1.67973 0.125648 -0.389813 1.67973 0.126508 -0.388984 1.66573 0.135821 -0.375019 1.66573 0.0959487 -0.39061 1.66572 0.13582 -0.397562 1.66569 0.0858214 -0.375019 1.66573 0.0858214 -0.397519 1.66573 0.135821 -0.446519 1.59423 0.0858214 -0.446519 1.61673 0.0858214 -0.446519 1.59423 0.0858214 -0.460519 1.58973 0.135821 -0.460519 1.58973 0.12609 -0.460519 1.60956 0.135821 -0.460519 1.67973 0.135821 -0.370519 1.67023 0.135818 -0.446518 1.61673 0.135821 -0.451019 1.58973 0.0858214 -0.370519 1.67023 0.0858214 -0.451019 1.58973 0.0955063 -0.446511 1.60999 0.127728 -0.446519 1.6073 0.0954946 -0.460519 1.60986 0.0958158 -0.390513 1.67973 0.135821 0.109481 1.67973 0.0858214 0.109481 1.67973 0.095643 0.109481 1.60942 0.135821 0.109481 1.58973 0.0858214 0.109481 1.58973 0.125919 0.109482 1.61015 0.135819 0.0955941 1.61662 0.126749 0.095479 1.60854 0.0858214 0.0954811 1.61673 0.0858214 0.0464811 1.66573 0.135821 0.0464811 1.66573 0.0858214 0.0239811 1.66573 0.0858214 0.0194811 1.67973 0.0955393 0.0393756 1.67973 0.135821 0.0194811 1.67973 0.135821 0.0999811 1.58973 0.135821 0.0954811 1.59423 0.135821 0.0239811 1.66573 0.135821 0.0194811 1.67023 0.0858214 0.0999811 1.58973 0.0858214 0.0954811 1.59423 0.0858214 0.0194811 1.67023 0.0954408 0.0395672 1.66573 0.125791 0.0397213 1.67973 0.125822 0.0399294 1.66573 0.095477 0.0954752 1.60955 0.0957425 0.0391541 1.04973 0.0858214 0.109481 1.04973 0.0858214 0.0194811 1.04973 0.126531 0.0393812 1.04973 0.135821 0.0239811 1.06373 0.126408 0.0395758 1.06373 0.135821 0.0464811 1.06373 0.0858214 0.0239811 1.06373 0.0858214 0.0464811 1.06373 0.0858214 0.0954811 1.11273 0.135821 0.0954811 1.11273 0.0858214 0.0954811 1.13523 0.135821 0.0954811 1.13523 0.0858214 0.0999811 1.13973 0.135821 0.0999811 1.13973 0.135821 0.109481 1.04973 0.135821 0.109481 1.13973 0.0858214 0.109481 1.13973 0.135821 0.0194811 1.05923 0.0858214 0.0194811 1.05923 0.0953512 0.109482 1.11981 0.0953198 0.0954764 1.11958 0.126207 0.0954814 1.11976 0.126092 0.109482 1.11979 0.0957674 0.0392974 1.06374 0.13582 0.0194813 1.04973 -0.549179 -0.250519 1.68473 -0.549179 -0.250519 1.73473 -0.549179 -0.160519 1.68473 -0.535179 -0.246019 1.73473 -0.535179 -0.246019 1.68473 -0.535179 -0.230455 1.69388 -0.535179 -0.223519 1.68473 -0.535179 -0.223519 1.73473 -0.463679 -0.174519 1.68473 -0.486179 -0.174519 1.73473 -0.463679 -0.174519 1.73473 -0.459179 -0.170019 1.68473 -0.459179 -0.160519 1.68473 -0.459179 -0.160519 1.73473 -0.549179 -0.160519 1.73473 -0.486179 -0.174519 1.68473 -0.539679 -0.250519 1.68473 -0.539679 -0.250519 1.73473 -0.459179 -0.170019 1.73473 -0.478618 -0.160518 1.72455 -0.478697 -0.17453 1.7245 -0.479227 -0.160519 1.69495 -0.479471 -0.174522 1.69496 -0.549179 -0.230778 1.725 -0.535166 -0.230866 1.72498 -0.549181 -0.230529 1.69405 -0.549179 -0.250519 0.994733 -0.549181 -0.230834 1.00426 -0.535179 -0.230557 1.00414 -0.535179 -0.246019 0.994733 -0.535179 -0.223519 0.994733 -0.535179 -0.246019 1.04473 -0.535179 -0.223519 1.04473 -0.486179 -0.174519 0.994733 -0.463679 -0.174519 0.994733 -0.486179 -0.174519 1.04473 -0.463679 -0.174519 1.04473 -0.459179 -0.170019 0.994733 -0.549179 -0.160519 0.994733 -0.459179 -0.160519 0.994733 -0.478844 -0.160519 1.00467 -0.549179 -0.160519 1.04473 -0.549179 -0.250519 1.04473 -0.539679 -0.250519 1.04473 -0.539679 -0.250519 0.994733 -0.459179 -0.160519 1.04473 -0.459179 -0.170019 1.04473 -0.478856 -0.160518 1.03479 -0.479077 -0.174529 1.03491 -0.479051 -0.174522 1.00462 -0.535158 -0.230834 1.03471 -0.549179 -0.231028 1.0346</float_array>\n                    <technique_common>\n                        <accessor count=\"12140\" source=\"#shape0-lib-positions-array\" stride=\"3\">\n                            <param name=\"X\" type=\"float\"/>\n                            <param name=\"Y\" type=\"float\"/>\n                            <param name=\"Z\" type=\"float\"/>\n                        </accessor>\n                    </technique_common>\n                </source>\n                <source id=\"shape0-lib-normals\" name=\"normal\">\n                    <float_array id=\"shape0-lib-normals-array\" count=\"74997\">-4.4742e-11 -1 -4.50387e-05 -1.43483e-05 -1 5.08982e-05 3.75795e-05 -1 0 8.00692e-11 -1 -2.68668e-05 -0.00011028 -1 -1.09554e-10 2.88921e-05 -1 0.000162387 -3.33161e-05 -1 1.23414e-05 -1.45228e-05 -1 1.2349e-05 2.88654e-05 -1 -2.85521e-05 5.47484e-05 -1 -2.85986e-05 -1 4.73696e-11 -9.93415e-07 -1 7.10543e-11 -9.93414e-07 -9.93412e-07 2.38418e-05 -1 -1.98682e-06 4.76836e-05 -1 1 0 0 1 0 0 -2.98023e-06 -7.15254e-05 1 2.98023e-06 7.15254e-05 1 -0.000155485 1 -1.54461e-10 2.5565e-11 1 8.5782e-06 1.31237e-05 1 9.39456e-05 7.32756e-06 1 0 3.42082e-10 1 0.000172175 6.85311e-05 1 -0.00026751 -4.8459e-05 1 1.87166e-05 6.67848e-05 1 1.82193e-05 1.26156e-05 1 -3.23298e-05 -0.000176006 1 -3.21505e-05 0 -1 0.000590248 6.61641e-05 -1 0.000151339 -0.00050942 -1 0 -6.86451e-10 -1 0.000230335 2.94193e-05 -1 0 -4.94875e-05 -1 -9.13185e-05 0.000318948 -1 -0.000141311 6.66166e-05 -1 -0.000142444 -4.95571e-05 -1 -3.34901e-05 0.000221088 -1 -3.35278e-05 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 -2.98023e-06 -7.15254e-05 1 1.98682e-06 4.76836e-05 1 0.000410779 1 0 -2.50309e-10 1 -0.000125985 -6.51502e-05 1 -0.00054912 -0.000111153 1 0 0 1 -0.000198997 -0.000125981 1 0.000600382 0.000386965 1 -4.03732e-06 -0.000123815 1 1.07034e-06 -6.26679e-05 1 5.8827e-05 0.000232553 1 5.87755e-05 -1 0 -5.90633e-05 -1 -8.48877e-06 0 -1 0 0.000161891 -1 7.79849e-05 0 -1 -2.64006e-05 -3.1517e-05 -1 1.41109e-05 -3.13996e-05 0.15261 -0.673862 -0.722925 -0.15261 0.673862 0.722925 1 0 -0.000846538 1 9.5025e-05 0 1 0.000675695 0.000191174 0.999997 -0.00120454 0.00221882 0.999996 -0.00292952 0.000366867 0.999998 -0.00194349 0.000542348 0.707107 0.707107 -4.21548e-06 0.707109 0.707105 0 0 1 -0.000560065 -7.65853e-05 1 0 -0.00102484 0.999999 0.00016484 0 1 5.5286e-05 3.46194e-05 1 0 0.000448646 1 0.000159218 0.707104 0.707109 0 0.707104 0.707109 0 1 0 0 1 0 0 0 -1 -6.00644e-05 2.98452e-05 -1 0 0 -1 4.49452e-05 -8.51145e-06 -1 0 -5.65957e-06 -1 4.98369e-06 2.01899e-05 -1 4.81185e-06 0 0 1 -5.62452e-05 -0.000174986 1 0.000281536 0 1 -1.45889e-05 6.56502e-05 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0.707104 0.707109 0 0.707104 0.707109 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 5.14055e-05 -7.26912e-06 -1 0 0 -1 -0.000116901 5.95802e-05 -1 0 -1.94779e-05 -1 2.11967e-05 1.42342e-05 -1 2.20836e-05 -0.769425 0.0568161 0.636205 0.769425 -0.0568161 -0.636205 0 1 0.000544649 0.000162281 1 0 0.000384899 1 -7.70115e-05 -0.0127156 0.999767 -0.0174151 -0.0309325 0.999519 -0.00230769 -0.00933543 0.99994 -0.00570348 0.707107 0.707107 3.20299e-05 0.707092 0.707121 3.79746e-06 0.999999 0 0.00154646 0.999997 -0.00232313 -0.000133847 1 -0.00029691 -0.000730116 1 0.000149459 0 1 -0.000572641 -0.000432829 0.999999 0.00114733 -0.000324389 0.707104 0.707109 0 0.707104 0.707109 0 0 1 0 0 1 0 -1 0 4.914e-05 -1 2.39764e-05 0 -1 0 4.6651e-05 -1 -6.80106e-06 0 -1 1.13932e-05 -3.16565e-05 -1 -4.06602e-05 -3.19007e-05 0 0 -1 -4.80986e-05 -1.54604e-05 -1 0 7.82129e-05 -1 4.4544e-06 5.76628e-05 -1 0.000264088 0 -1 -5.28038e-05 -0.000164279 -1 0 0 -1 1 0 0 1 0 0 0.707104 0.707109 0 0.707104 0.707109 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.180112 -0.668999 0.721111 -0.180112 0.668999 -0.721111 1 5.91969e-05 0 1 0 8.55855e-06 1 -0.000151519 0 1 0 -7.75322e-05 1 3.16593e-05 2.64303e-05 1 3.12306e-05 -1.46314e-05 -0.0148198 0.748219 -0.663286 0.0148198 -0.748219 0.663286 -1 0.000805278 0 -1 0 -1.94881e-05 -1 -0.000202491 -0.000676623 -1 -3.24111e-05 0 -1 0 -0.000344099 -1 -0.000285166 0.000565228 -0.999999 -0.000189562 0.00137146 -1 0.000167204 0.000164206 -0.707107 0 -0.707107 -0.707107 0 -0.707107 0 0.000566921 -1 0.000586863 0 -1 0.00083397 -2.86599e-05 -1 0 1.65781e-05 -1 9.06782e-06 0 -1 -0.000210538 -0.000257286 -1 -0.000345276 -0.000143597 -1 -0.000436588 -0.000136858 -1 -0.707109 0 -0.707104 -0.707109 0 -0.707104 -1 0 0 -1 0 0 0 7.35894e-05 1 -3.59871e-05 0 1 0 -3.68008e-05 1 1.01998e-05 0 1 3.46581e-06 -1.17232e-05 1 -1.24299e-05 -1.16237e-05 1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -0.707109 0 -0.707104 -0.707109 0 -0.707104 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.764273 -0.644872 0.00517483 -0.764273 0.644872 -0.00517483 1 -5.80305e-05 0 1 0 -8.35188e-06 1 6.84939e-05 0 1 0 3.57478e-05 1 -3.79498e-06 -1.04981e-05 1 -3.70854e-06 2.82187e-05 -1 -0.000769215 0 -1 0 0.000288367 -1 0.00012066 0.000602056 -1 0.000438155 0 -1 0 -0.00061874 -0.999999 0.000105807 -0.00120896 -0.707107 0 0.707107 -0.707107 0 0.707107 0 -0.000372051 1 5.18618e-05 0 1 0.000651888 0.000102729 1 0 3.67831e-05 1 -2.29186e-05 0 1 -0.000296464 0.000105977 1 -0.707109 0 0.707104 -0.707109 0 0.707104 -1 0 0 -1 0 0 0 -6.10203e-05 -1 -3.00757e-05 0 -1 0 2.38989e-05 -1 8.49289e-06 0 -1 1.71819e-06 1.1818e-05 -1 -6.06494e-06 1.18277e-05 -1 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 -0.707109 0 0.707104 -0.707109 0 0.707104 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 4.78396e-05 1 -6.80685e-06 0 1 0 -0.000263079 1 0.000133992 0 1 -4.72581e-05 7.0785e-05 1 -1.16869e-05 7.12283e-05 1 -0.752814 0.654894 -0.0662204 0.752814 -0.654894 0.0662204 0 0.000857363 -1 0.000194472 0 -1 0.000647575 -0.000158407 -1 0.000529551 0.00048842 -1 0.00124206 -0.00013135 -0.999999 -0.000870725 0.000238628 -1 0.707107 0 -0.707107 0.707155 9.35407e-05 -0.707059 1 0.00044075 0 0.999203 -0.00945206 0.0387886 1 -0.00021378 0.000929545 1 0 -3.51117e-05 1 -0.000122467 -0.000364731 0.999569 -0.0208807 0.0206416 0.707107 0 -0.707107 0.707107 0 -0.707107 0 0 -1 0 0 -1 -1 4.78964e-05 0 -1 0 -2.40885e-05 -1 1.15976e-05 0 -1 0 6.79208e-06 -1 -2.00252e-05 -4.63018e-06 -1 -2.00228e-05 1.64163e-05 0 -1 0 -2.11852e-05 -1 6.80956e-06 0 -1 -3.40307e-05 -5.87132e-06 -1 -6.04241e-05 0.00027723 -1 0 -5.44073e-05 -1 0.000169267 0 -1 0 1 0 0 1 0 0 0.707107 0 -0.707107 0.707107 0 -0.707107 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0167836 0.532823 0.84606 0.0167837 -0.532823 -0.84606 -1 5.98646e-05 0 -1 0 -8.47573e-06 -1 -0.000174154 0 -1 0 9.13615e-05 -1 3.99266e-05 -3.12105e-05 -1 4.00705e-05 1.00163e-05 1 0.000172574 0 1 0 9.37581e-05 1 -7.97093e-06 0.000114519 1 -0.000139417 0 1 0 -0.000197518 1 -7.84142e-06 -0.000240544 0.707107 0 0.707107 0.707107 0 0.707107 0 0.00117885 0.999999 -4.8528e-05 0 1 -0.0023684 -0.000423357 0.999997 0 -3.71865e-05 1 2.36364e-05 0 1 0.00095961 -0.000350685 1 0.707107 0 0.707107 0.707107 0 0.707107 1 0 0 1 0 0 0 4.77662e-05 -1 2.37099e-05 0 -1 0 -1.21601e-05 -1 -6.82281e-06 0 -1 -4.48947e-08 -1.18374e-05 -1 1.63874e-07 -1.18334e-05 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0.707107 0 0.707107 0.707107 0 0.707107 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -4.6254e-05 -1 0 0 -1 -6.36761e-06 0.000141223 -1 0 0 -1 6.8662e-05 -2.87959e-05 -1 -2.29119e-05 -2.90634e-05 -1 8.39298e-06 -6.17368e-06 1 0 0 1 0.000262624 -0.000127236 1 -7.52719e-05 0.000415241 1 0 0 1 -0.000547529 -0.000129816 1 0.000171214 0 0.707107 0.707107 -3.79289e-06 0.707105 0.707109 -0.000135054 0 1 0.000140733 -0.000409924 1 0.000524392 -0.000312748 1 0 4.5855e-05 1 9.07308e-05 -0.000718661 1 1.41964e-05 9.07548e-05 1 0 0.707109 0.707104 0 0.707109 0.707104 0 1 0 0 1 0 -4.84848e-05 0 -1 0 2.36896e-05 -1 4.73087e-05 0 -1 0 -6.8245e-06 -1 1.2767e-07 -6.75111e-06 -1 -4.65563e-07 2.46186e-05 -1 1 0 0 1 0 0 1 0 0 1 3.78141e-05 -8.40311e-06 1 0 0.000161865 1 -0.000100688 -3.2364e-05 1 0 0 0 0 1 0 0 1 0 0.707109 0.707104 0 0.707109 0.707104 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.720542 0.674566 -0.160561 -0.720542 -0.674566 0.160561 -4.81812e-05 0 1 0 -6.8128e-06 1 0.000259702 0 1 0 0.000128038 1 -6.58559e-05 -4.45465e-05 1 -6.63887e-05 -9.00587e-06 1 -0.684409 -0.724013 -0.0859604 0.684409 0.724013 0.0859604 -0.000385751 0 -1 0 0.000176489 -1 2.8665e-05 0.000259753 -1 0.000276025 5.2777e-06 -1 5.35785e-05 -0.000230033 -1 -2.38528e-06 -0.000563915 -1 -4.21482e-07 0.707107 -0.707107 0 0.707107 -0.707107 -0.000958032 1 0 0 1 0.000348014 0.000216117 0.999999 0.0015586 0.000242849 1 0 0 1 -0.000160704 0.000228135 1 -0.000750809 0 0.707109 -0.707104 0 0.707109 -0.707104 0 0 -1 0 0 -1 -4.63306e-05 -1 0 0 -1 -2.27318e-05 2.03172e-05 -1 0 0 -1 6.35585e-06 7.92195e-06 -1 1.81099e-06 7.93727e-06 -1 -6.44562e-06 1 0 0 1 -7.41746e-05 2.38417e-05 1 0 -0.000119208 1 2.78672e-05 6.1927e-06 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 0.707109 -0.707104 0 0.707109 -0.707104 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -1 -5.01362e-05 7.23611e-06 -1 0 0 -1 0.000261277 -0.00012852 -1 0 4.61457e-05 -1 -6.82867e-05 9.20397e-06 -1 -6.83383e-05 0.673469 0.165151 -0.720531 -0.673469 -0.165151 0.720531 0 1 -0.000820727 -0.000144388 1 0 -0.000620123 1 0.000155417 2.65421e-05 1 0.000280531 0.000101431 1 0.000200404 0.00119706 0.999999 1.19362e-05 -0.707107 0.707107 -5.12726e-12 -0.707107 0.707107 0 -1 0 -0.000878767 -1 -0.000304825 0 -0.999999 -0.00142913 0.000185307 -1 0 0.000209724 -1 0.000127845 0 -1 0.000700833 0.000225174 -0.707104 0.707109 0 -0.707104 0.707109 0 0 1 0 0 1 0 1 0 -6.04873e-05 1 3.01692e-05 0 1 0 -1.83278e-05 1 -8.48547e-06 0 1 6.14501e-06 2.55989e-05 1 -2.09412e-05 2.51527e-05 0 0 1 0.000180141 -5.79022e-05 1 0 0.000289521 1 -6.76765e-05 -1.50392e-05 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.707109 0.707104 0 -0.707109 0.707104 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 -4.74766e-05 6.78545e-06 -1 0 0 -1 0.000149118 -7.25422e-05 -1 0 2.46413e-05 -1 -3.14065e-05 -8.17828e-06 -1 -3.14138e-05 0.694043 0.130376 -0.70803 -0.694043 -0.130376 0.70803 0 1 -0.000768365 -7.80612e-05 1 0 -0.000607154 1 0.00017176 0.00474139 0.999962 0.00728873 0.0110149 0.999939 0.000874175 0.00394346 0.99999 0.0021318 -0.707107 0.707107 -1.34896e-05 -0.7071 0.707113 0 -1 0 -0.00098355 -1 -0.000470151 0 -0.999999 -0.00160471 0.000211781 -1 0 0.000354303 -1 0.000234131 0 -1 0.000746018 0.000191873 -0.707104 0.707109 0 -0.707104 0.707109 0 0 1 0 0 1 0 1 0 -6.04983e-05 1 3.01744e-05 0 1 0 -3.57309e-05 1 -8.48506e-06 0 1 9.54651e-06 3.15523e-05 1 -3.48341e-05 3.19877e-05 0 0 1 0.000132886 -4.2713e-05 1 0 0.0002145 1 -4.96544e-05 -1.10343e-05 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.707109 0.707104 0 -0.707109 0.707104 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -1 -5.40615e-05 0 -1 0 7.63674e-06 -1 0.000162115 0 -1 0 -8.32794e-05 -1 -3.51888e-05 2.77132e-05 -1 -3.57163e-05 -9.21461e-06 0.101559 -0.681895 0.724365 -0.101559 0.681895 -0.724365 1 -0.000605271 0 1 0 -9.87469e-06 1 0.000142146 -0.00047185 0.999849 0.0129882 0.0115722 0.999745 0.00275658 0.0223999 0.999955 0.00518909 0.00800455 0.707107 -3.54051e-05 -0.707107 0.707125 0 -0.707089 0 -0.0012315 -0.999999 -0.000675519 0 -1 -0.00203473 0.000238433 -0.999998 0 0.000488541 -1 0.000308809 0 -1 0.000896348 0.000225457 -1 0.707111 0 -0.707102 0.707111 0 -0.707102 1 0 0 1 0 0 0 -6.16139e-05 1 2.98285e-05 0 1 0 -1.20248e-05 1 -8.51281e-06 0 1 5.0186e-06 2.34944e-05 1 -1.78061e-05 2.3604e-05 1 0 1 0 -3.64761e-05 1 0.00011348 0.000184331 1 0 -9.35014e-06 1 -4.20755e-05 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0.707111 0 -0.707102 0.707111 0 -0.707102 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 -5.91237e-05 0 1 0 -8.50456e-06 1 0.00015665 0 1 0 8.33524e-05 1 -3.36139e-05 -2.76501e-05 1 -3.4436e-05 1.24977e-05 -0.0230155 0.0602612 0.997917 0.0230155 -0.0602612 -0.997917 -1 -0.000523825 0 -1 0 1.20065e-05 -1 0.000181306 0.000447787 -1 0.000197327 0 -1 0 -2.35069e-05 -1 -0.000141516 -0.000287748 -1 -0.000116693 0.000123298 -0.999999 0.000222037 -0.00106837 -0.707107 0 0.707106 -0.707107 0 0.707106 0 -0.000392672 1 0.000159665 0 1 0.000635874 7.9769e-05 1 0 0.000108536 1 -6.79882e-05 0 1 -0.000310181 9.5274e-05 1 -0.707111 0 0.707102 -0.707111 0 0.707102 -1 0 0 -1 0 0 0 -4.90894e-05 -1 -2.43179e-05 0 -1 0 1.16936e-05 -1 6.77408e-06 0 -1 -2.78969e-08 1.18849e-05 -1 9.60048e-08 1.18829e-05 -1 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 -0.707107 0 0.707107 -0.707107 0 0.707107 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.707091 -0.707123 0 -0.707091 -0.707123 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.706519 -0.707694 0 0.706519 -0.707694 0 0.302575 -0.953126 0 0.0609334 -0.998134 -0.00403102 -0.108927 -0.99405 0.000207912 0.125079 -0.992146 0.00101053 -0.058544 -0.998277 0.00406698 -0.301865 -0.953351 0 -0.707485 -0.706728 0 -0.707485 -0.706728 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.707091 -0.707123 0 0.707091 -0.707123 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.70653 0.707683 0 0.70653 0.707683 0 0.953243 0.302206 0 0.998132 0.0609654 -0.00402902 0.998437 -0.0557318 -0.00411308 0.953243 -0.302206 0 0.70653 -0.707683 0 0.70653 -0.707683 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 0.707088 0.707125 0 0.98378 0.178878 -0.0134158 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707485 0.706728 0 -0.707485 0.706728 0 -0.301859 0.953353 0 -0.0495915 0.998761 -0.00421065 0.106294 0.994335 -0.000252482 -0.409451 0.912331 0.0016504 0.059933 0.998174 0.00759357 0.400036 0.916499 0 0.706519 0.707694 0 0.706519 0.707694 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.707088 0.707125 0 -0.98378 0.178878 0.0134158 -1 0 0 0 -1 0 0 -1 0 1 0 0 0.999709 -0.0241072 0.000853798 0 -0.999998 -0.00175636 0.145035 -0.98941 -0.00565059 -0.707497 -0.706717 -0.000216863 -0.710553 -0.703644 0 -0.999161 -0.0409525 0 -0.999025 -0.0441417 -0.000103837 -0.999541 0.0303099 0.000228694 -0.993398 -0.114516 -0.00677285 -0.953243 0.302206 0 -0.707497 0.706717 0 -0.707497 0.706717 0 0 1 0 0 1 0 0 0 -1 -0.0094723 -0.00445776 -0.999945 0.0162357 0 -0.999868 0 0 -1 0 0 -1 0 0 -1 -0.0174453 -0.00517808 -0.999834 -0.0168923 -0.0358965 -0.999213 0 0.0173418 -0.99985 0 0 -1 0.965691 -0.256939 -0.0377308 0 0 -1 0 0.0400832 -0.999196 0.0845986 0 -0.996415 0.0317882 -0.0246268 -0.999191 0.0339065 -0.0339083 -0.99885 0 -0.109819 -0.993952 0 0 -1 -0.0246472 0.0523763 -0.998323 0 0 -1 -0.038336 0.0182547 -0.999098 0 0 -1 0.000248794 0.000479064 -1 0.0158038 -0.0174871 -0.999722 -0.390113 -0.920766 0.00103689 -0.0039175 -0.0344062 -0.9994 0 0 -1 -0.125077 0 -0.992147 -0.860194 0.509967 -0.000173687 0 0 -1 0 0 -1 0 0 -1 0.00102807 0.000307317 -0.999999 0.000702906 0.0014937 -0.999999 0 -0.00220925 -0.999998 0 0 -1 0.00555672 -0.0115533 -0.999918 -0.162297 -0.02951 0.986301 0 0 -1 0.0178267 0.00838942 -0.999806 0.999996 0 -0.00277061 0.00035956 0.000113991 -1 0.000371278 -0.00037023 -1 0.00543422 0.00937667 -0.999941 -0.00535953 0.0226512 -0.999729 0 0 -1 0 0 -1 0 0 -1 0 0.0261585 -0.999658 0 0 -1 -0.0649556 0.0305687 -0.99742 0.0219536 0 -0.999759 0.00915384 -0.00915425 -0.999916 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0140559 0.0140566 -0.999802 0.684831 0.726357 -0.0584181 0.0383334 0.00441898 -0.999255 -0.00286673 0.0247032 -0.999691 0 -0.00546599 -0.999985 0.00383931 0.0118624 -0.999922 -0.0138674 0.00119436 -0.999903 0 0 -1 0 0.0130623 -0.999915 -0.624208 0.781082 -0.0165897 -0.563639 -0.825799 0.019141 0.978312 -0.20666 0.014011 0.746922 -0.664882 -0.00637974 -0.746717 0.6647 -0.024237 0 0 1 -0.066234 -0.0311703 0.997317 0.0876097 0 0.996155 0.0303791 0.0303804 0.999077 0 0.0322746 0.999479 0 0 1 -0.0125392 -0.0266461 0.999566 0 0 1 -0.0186335 -0.00553077 0.999811 0 0 1 0 0 1 0 0 1 0.0125346 0.0301399 0.999467 -0.351594 0.936105 0.009424 0 0 1 0 0 1 -0.0382979 0.0219941 0.999024 0 0 1 0 0 1 0 0 1 0.0896264 -0.0267917 0.995615 0.0705694 -0.149961 0.98617 0 0.125353 0.992112 0 0 1 -0.0714575 0.018702 0.997268 0.00185984 -0.00185993 0.999997 0.00430982 0 0.999991 0 0 1 -0.00178848 0.000841675 0.999998 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.000763906 -0.00126786 0.999999 0 0 1 0.972953 -0.230715 0.0115149 -0.176092 0.984267 0.0144868 0 0 1 0 0 1 0.013873 0 0.999904 0.0110424 -0.0234656 0.999664 0 0.0436052 0.999049 0 0 1 -0.138883 0.0252526 0.989987 0 0 1 0.0274307 -0.0129092 0.99954 0 0 1 -0.00214069 0.00719099 0.999972 0 0 1 0 0 1 0 0 1 0.00245326 -0.00971506 0.99995 -0.00291572 -0.0125039 0.999918 -0.0296253 -0.0144556 0.999457 -0.00488035 0.0387117 0.999238 0.0117189 0.00366061 0.999925 0.952995 -0.302852 0.00904148 0 -0.0512724 0.998685 0.00321161 0.0262679 0.99965 0.0370241 -0.0132449 0.999227 0 0.00134601 0.999999 0 0 1 0 0 1 0.987075 0.160204 -0.00427087 0.0909866 -0.995704 0.0172053 -0.618196 -0.786009 -0.00485433 0.798737 0.601622 0.0083289 -0.443499 0.896011 -0.0217632 -0.999661 -0.0245746 0.00859865 -0.146119 0.989206 -0.0109552 0.983395 0.181284 -0.00835286 -0.648441 -0.761134 -0.0141283 0.929878 -0.367562 0.0149821 0.0601889 0.998157 -0.00774064 -0.995415 -0.0941255 0.0170189 0.0818166 0.996634 0.00511912 0.693401 0.720445 -0.0123997 0.763312 -0.64589 0.0134527 -0.99383 0.110903 -0.00145521 -0.989757 0.14276 0 0.489311 -0.872109 0 0.938379 0.345589 -0.00364338 0.551631 -0.834085 -0.00241399 0.953232 -0.302203 -0.00464134 0.607337 0.794219 -0.0189263 0.238792 0.971047 -0.00681017 -0.858606 0.512635 0.00116264 0.390069 0.920749 -0.00816667 0.853271 0.521465 -0.00145187 0.301863 0.953343 0.00408953 -0.510448 0.85967 0.0202419 -0.999889 0.013493 -0.00637768 -0.511676 -0.859178 0.000989165 -0.705694 -0.708502 0.00461502 -0.909503 0.41568 -0.00376401 -0.999949 -0.00765038 -0.00653908 0.516011 -0.85643 0.0161548 -0.953139 0.302173 -0.01476 -0.239148 -0.97097 -0.00510474 0.537861 -0.843025 -0.00377964 0.859426 -0.511222 0.00629711 -0.410236 -0.911978 0.001585 -0.400036 -0.916498 0.00160406 -0.460887 -0.887459 0 0.998841 0.0481419 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.707112 -0.707102 0 -0.707112 -0.707102 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.0197016 0.999806 0 0 1 -0.000839729 0.966058 -0.258227 0.00717871 0.977739 0.209743 -0.00583085 0.70653 -0.707683 -0.000521938 0.699078 -0.715045 0 0.0695745 -0.997577 0 0.218277 -0.975872 -0.00535767 -0.0977177 -0.995206 -0.00393547 -0.150087 -0.98867 -0.0023137 0 -1 0 -0.738742 -0.673988 0 -0.707483 -0.706726 -0.00238524 -0.967941 0.251082 0.00698009 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0.983782 -0.178867 -0.013415 0.178869 -0.983781 0.0134153 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.706519 0.707694 0 0.706519 0.707694 0 0.953243 0.302206 0 0.9993 0.0371368 -0.00441066 0.993965 -0.109696 0.000124547 0.99833 -0.057758 0.000887068 1 0 0 0.713153 -0.701008 0 0.706519 -0.707694 0.000473521 -0.224233 -0.974516 0.00622244 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.707109 0.707104 0 0.707109 0.707104 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.0486089 -0.998818 0 0 -0.999998 -0.00203874 -0.969872 0.243523 0.00676993 -1 0 0 -0.707485 0.706728 0 -0.707485 0.706728 0 -0.0390379 0.999238 0 -0.0610518 0.998134 0.000624591 -0.113145 0.993578 0.000208491 0.0229939 0.999725 0.00463644 0.302585 0.953122 0 0.70653 0.707683 0 0.70653 0.707683 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.707109 0.707104 0 -0.707109 0.707104 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707497 -0.706717 0 -0.707497 -0.706717 0 -1 0 0 -0.998123 -0.0612296 0.000940388 -0.904154 -0.427152 -0.00688621 -0.996046 0.0887829 -0.003224 -0.991905 0.126968 -0.00195002 -1 0 0 -0.724094 0.689701 0 -0.707496 0.706716 0.00118954 0.232957 0.972465 0.00648399 0 1 0 0 0 -1 0 0 -1 0 -0.00518964 -0.999987 0 0 -1 0.00194007 -0.00438022 -0.999989 -0.00529828 0.00241377 -0.999983 -0.00356492 -0.00757531 -0.999965 0 0.014429 -0.999896 0.991784 -0.126952 -0.0157485 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0123418 -0.00580782 -0.999907 -0.016087 0 -0.999871 -0.00578919 0.00578915 -0.999967 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.00901697 0.00313002 -0.999954 0 0 -1 0 0 -1 -0.0379733 -0.038135 -0.998551 -0.108983 0 -0.994044 -0.0629339 -0.133737 -0.989017 0 0.185756 -0.982596 0 0 -1 0.0618676 0.0618671 -0.996165 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0259917 -0.0122312 -0.999587 -0.236758 0.0430463 0.970615 -0.0270644 0.021205 -0.999409 0 0.0689113 -0.997623 0 0 -1 0.0230856 -0.0490573 -0.998529 0 0 -1 0.0288447 -0.0288448 -0.999168 0 0 -1 0.00881792 0.00881779 -0.999922 -0.436987 -0.897881 -0.0534071 0.705109 0.708111 -0.0374161 -0.288977 0.957283 -0.0100546 0.0167408 -0.0449351 -0.99885 0.0020199 -0.000850476 -0.999998 0 0 -1 0.0025378 -0.00852517 -0.99996 0.0546755 -0.0507945 -0.997211 0.0486859 -0.0204991 -0.998604 -0.607798 0.794092 0.000872186 -0.905404 -0.424172 0.0179408 -0.231925 -0.972675 -0.0106582 0.468748 0.88289 -0.0279315 0.996745 0.0804685 0.00486677 0.954848 0.296787 0.0135294 0 0 1 -0.0607457 -0.0285858 0.997744 0.118629 0 0.992939 0.0883216 0.0883203 0.992169 0 -0.0135608 0.999908 -0.0374923 0.0558037 0.997738 0.0055701 0 0.999985 0.000507471 0.00867054 0.999962 -0.00204538 0.00204871 0.999996 0 0 1 0.0289033 0.044684 0.998583 0.0059336 0.0604307 0.998155 0 0 1 0 0 1 0 0 1 0.00011372 6.82636e-05 1 -0.0936718 0.0260251 0.995263 0 0 1 0.00354507 0.00800414 0.999962 -0.00513561 0.0109133 -0.999927 0 0 1 0.0244372 -0.134405 0.990625 0.105079 0 0.994464 0 0 1 -0.0443814 0.0208851 0.998796 -9.44919e-05 -9.4225e-05 1 0.000402082 2.51656e-05 1 0.00295298 0.00294464 0.999991 0 0 1 0.056337 0.0265112 0.99806 -0.111069 0 0.993813 -0.0518966 -0.0518962 0.997303 0 -0.0101434 0.999949 0.0045301 0 0.99999 0.00913308 -0.00912331 0.999917 0 0 1 0 0 1 0 0 1 0 0 1 0.0129905 -0.0052337 0.999902 0 0 1 0 0 1 -0.000262284 0 1 -0.000169527 0.00036024 1 0 -0.000551122 1 0 0 1 0.000215387 -0.000215386 1 0 0 1 0 0 1 0.995856 -0.088766 0.0198109 0.916495 0.399582 0.0192548 0 0 1 -0.000630429 -0.000633113 1 0.00550082 -0.0483052 0.998818 -0.0217494 -0.0543003 0.998288 0.430269 -0.901332 0.0496984 -0.00692293 -0.0367313 0.999301 0 0 1 0 0.0301192 0.999546 -0.0158891 0.0126736 0.999793 0.0147578 -0.0362642 0.999233 0.000100941 0.0398568 0.999205 0.0142041 0.00379872 0.999892 0.920269 -0.390554 0.0239062 0.947422 -0.318905 0.0262909 -0.942327 -0.33367 -0.0261495 0.311825 0.949947 -0.0191386 -0.697139 -0.716885 -0.00859738 -0.635207 0.772303 0.00779478 -0.828728 -0.559651 0 0.664607 0.747156 -0.00746758 -0.746918 -0.664895 0.00540078 0.989104 -0.14655 0.0140424 0.171924 -0.985017 -0.0135515 0.170833 0.985206 0.0136163 -0.708106 0.706106 0 0.417089 -0.908759 0.0139032 -0.726975 0.686522 0.0139822 0.71706 -0.696991 -0.00541565 0.0802709 0.996737 -0.00850634 0.23224 0.972638 -0.00639303 -0.967996 -0.250844 -0.00778126 -0.0822261 -0.996614 -0.000466505 0.904142 0.427146 -0.00856128 0.645928 0.763312 -0.011486 0.438057 0.898908 -0.00841219 0.933996 -0.35728 0.00143297 0.997987 0.0634128 0 -0.509629 0.860394 0 -0.526052 0.850452 0.000460191 0.526052 -0.850452 -0.000460191 -0.218274 0.975859 -0.00741985 -0.349959 0.936726 -0.00856459 0.900471 0.434914 -0.0012961 -0.997175 -0.0747903 0.00696143 -0.420242 0.90739 0.00629822 -0.717246 0.696807 -0.00420452 -0.760582 -0.649233 -0.0032266 -0.603509 -0.797341 -0.00483065 -0.999304 -0.0357889 -0.0104804 -0.680917 0.732221 0.0142862 -0.856276 -0.516484 0.00593494 -0.410278 0.911954 -0.00335026 0.0822261 -0.996614 0 -0.998047 -0.062466 0 -0.707981 -0.705989 0.018505 0.516078 -0.856542 0.000222652 -0.590618 -0.806952 -0.000329378 0.999704 0.0214534 -0.0114556 0.6334 -0.773818 0.00308364 -0.389394 -0.921071 -0.000816972 -0.515322 -0.856992 0.00292234 0.594947 -0.803726 0.00799783 0.801334 -0.598218 -0.000351007 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.707091 -0.707123 0 -0.178869 -0.983781 0.0134154 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.706519 -0.707694 0 0.706519 -0.707694 0 0 -1 0 0.0623062 -0.998057 0.000955383 0.0895333 -0.995984 0.000411981 0.109428 -0.993995 0.000510071 -0.0609892 -0.99813 0.00402774 -0.301865 -0.953351 0 -0.707485 -0.706728 0 -0.707485 -0.706728 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.707091 -0.707123 0 0.707091 -0.707123 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.70653 0.707683 0 0.70653 0.707683 0 0.967706 0.252083 0 0.998797 0.0487753 -0.00513568 0.999326 -0.036494 -0.0039571 0.99881 -0.048584 -0.00422778 0.953243 -0.302206 0 0.70653 -0.707683 0 0.708012 -0.7062 -9.05883e-05 0 -0.999997 -0.00248728 -0.0973106 -0.995254 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 0.707088 0.707125 0 0.98378 0.178878 0.0134162 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707485 0.706728 0 -0.707485 0.706728 0 0 1 0 -0.0602035 0.998186 0.000928164 -0.066333 0.997797 0.000798074 -0.115037 0.99336 0.00118653 0.0604669 0.998162 0.00403849 0.302568 0.953128 0 0.706519 0.707694 0 0.706519 0.707694 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 -0.178868 0.983782 0.0134153 -0.707088 0.707125 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707497 -0.706717 0 -0.707497 -0.706717 0 -0.953243 -0.302206 0 -0.998415 -0.0561348 -0.00410672 -0.997361 0.0725763 -0.00169868 -0.99662 0.0821419 -0.0012616 -1 0 0 -0.707497 0.706717 0 -0.707497 0.706717 0 0 1 0 0 1 0 0 0 -1 0.022545 0.0106099 -0.99969 -0.0814307 0 -0.996679 0 0.0208978 -0.999782 0 0 -1 0 0 -1 0 0 -1 -0.0175906 -0.00522123 -0.999832 -0.012909 -0.0274319 -0.99954 0 0.0281813 -0.999603 0 0 -1 0 0 -1 0 0 -1 0 -0.0114682 -0.999934 0 0 -1 0.0149415 -0.0070316 -0.999864 -0.0172998 0 -0.99985 -0.00590501 0.00590532 -0.999965 0 0.0560655 -0.998427 0 0 -1 0.019231 -0.0408665 -0.99898 0 0 -1 0.0283716 -0.00842122 -0.999562 0 0 -1 -6.91707e-05 -0.000114229 -1 0.000116371 -0.000465099 -1 -0.119895 -0.992505 -0.0236336 0.000100849 -0.000489377 -1 -0.397893 -0.917354 -0.0119713 0 0 -1 -0.0126633 0.000462444 -0.99992 0.0225701 0.0225064 -0.999492 0.0631059 -0.0630384 -0.996014 0.10429 0 -0.994547 0.0181413 -0.0331214 -0.999287 0.00645592 0.0137191 -0.999885 0 -0.0178589 -0.999841 0 0 -1 -0.0353287 0 -0.999376 -0.0187775 -0.0187785 -0.999647 0 0 -1 0.0612307 0.0288158 0.997708 0 0 -1 0 0 -1 3.03982e-05 5.04105e-05 -1 -0.366071 0.921187 -0.131933 0 0 -1 0 0 -1 0 0 -1 -0.033013 0.0155362 -0.999334 0.100953 0 -0.994891 0.0334202 -0.0334217 -0.998882 0 -0.00398178 -0.999992 0 0 -1 -0.00344476 0.0073202 -0.999967 0 0 -1 -0.00386537 0.00115546 -0.999992 -0.0887014 0.986669 -0.136445 0.397825 0.917197 -0.022015 0 0 -1 0 0 -1 -0.0220619 -0.0220628 -0.999513 0.942656 -0.333741 -0.004057 0.0089987 0.001435 -0.999959 -0.846539 -0.532315 -0.00351924 0.022136 -0.00769489 -0.999725 -0.0268348 0.0086787 -0.999602 0 0.028126 -0.999604 -0.0103421 -0.0197933 -0.999751 -0.995415 -0.0956468 0 0.520869 -0.853637 0 0.755903 -0.654649 -0.00671073 -0.903792 0.427518 0.0197203 0.98812 -0.153519 0.00715361 0.124079 0.992091 -0.0189627 0 0 1 0 0 1 0 0 1 -0.00150947 -0.0083021 0.999964 0 0 1 0.0126726 0.0269295 -0.999557 0.0148947 0 0.999889 0 0 1 0.00581603 0.00579912 0.999966 -0.062295 0.997877 0.0190092 -0.391546 0.920158 0.000663414 0 0 1 0.000522867 0.00028599 1 -0.0263527 0.0148308 0.999543 0 0 1 0 0 1 0.00776178 -0.00779417 0.99994 0.00753727 -0.00492199 0.999959 0.0159528 0 0.999873 0.0982831 -0.208854 -0.972996 0 0.00841105 0.999965 0 0 1 0 0 1 0 0 1 0 -0.0167568 0.99986 -0.0331286 -0.0126419 0.999371 0.000455736 -0.000281598 1 0 0 1 0 0 1 0 0.019117 0.999817 0 0 1 0.0282685 0.0133034 0.999512 -0.103718 -0.0188587 0.994428 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.000522725 0.000995472 0.999999 -0.00995242 -0.0164426 0.999815 0 0 1 0 0 1 0 0 1 0.020137 -0.00921765 0.999755 0 0 1 0 0 1 0 0 1 0.0652347 0 0.99787 0.0408123 -0.0867277 0.995396 0 0 1 -0.118252 0.650393 -0.750337 -0.0537022 -0.0175972 0.998402 -0.0258861 0 0.999665 0 0 1 0.0287889 -0.0135483 0.999494 0.012051 -0.000876934 0.999927 0 0 1 0 0 1 0 0 1 0.00235255 -0.0142805 0.999895 -0.530381 -0.847541 0.0192398 -0.00329896 0.0299661 0.999546 -0.840471 0.540572 0.0372898 0.705008 0.70801 0.0410514 0.018436 0.00356551 0.999824 -0.00393737 0.00545389 0.999977 -0.00388415 0.00388432 0.999985 0 0 1 0.0104104 0.000863709 0.999945 -0.560573 -0.828103 -0.00179987 0.901287 -0.432974 -0.01468 0.995407 0.0957017 0.00265244 -0.921628 -0.388072 0.000931328 0.522145 -0.852442 0.0265985 0.151219 0.988474 -0.00718674 -0.416202 0.909133 0.0158829 0.749362 -0.662134 0.00592754 0.866871 -0.498531 -0.00105079 -0.799222 -0.601023 -0.00403296 0.984221 0.176933 -0.00200134 0.465732 0.884831 0.0129632 -0.285308 0.958403 -0.00794128 -0.983292 -0.181519 0.013692 -0.234644 0.971999 -0.0126311 0.709831 -0.704336 -0.00713984 0.543158 0.839462 0.0168245 -0.618379 -0.785576 -0.021834 -0.986139 0.165822 0.00573902 0.519383 -0.85454 -0.00179645 0.776746 0.629805 -0.00338956 0.791272 0.611457 -0.00294866 0.969935 -0.243355 -0.00203947 0.367865 -0.929879 -0.000765042 -0.0822253 0.996604 0.00436962 0.850702 -0.525646 -0.00119388 0.876201 -0.481945 0 0.0367083 0.999326 0 -0.604082 0.796811 -0.01331 0.833511 0.552362 -0.0124727 0.412866 0.910782 0.00423822 -0.239144 0.970971 0.00511283 -0.877321 -0.479864 -0.00610542 -0.762258 0.646947 0.0205399 -0.897491 -0.440992 -0.00606558 -0.809298 0.587384 0.00408439 -0.520804 0.853674 -0.00225184 -0.953232 0.302203 -0.00464146 -0.60912 -0.792852 -0.0189225 0.82128 -0.570522 -0.00192317 0.681934 -0.731413 -0.000719107 0.228659 -0.973487 -0.00616469 -0.831964 -0.554826 0.00210479 0.80122 -0.598167 -0.0156108 -0.517976 -0.855387 0.00388159 0.970583 -0.240712 -0.0051475 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.707112 -0.707102 0 -0.707112 -0.707102 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.70653 -0.707683 0 0.70653 -0.707683 0 0.0403755 -0.999185 0 -0.0229267 -0.999737 -0.000353441 0 -1 0 -0.732316 -0.680965 0 -0.707484 -0.706727 -0.00182064 -0.98107 0.193578 0.00538159 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0.178869 -0.983781 0.0134156 0.707112 -0.707102 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -0.999831 0.018397 0.000651579 0 0.999995 -0.00300909 0.110314 0.993897 0 0.706519 0.707694 0 0.706519 0.707694 0 0.997601 0.0692244 0 0.999997 0 0.00247861 0.998152 -0.060764 0.000933259 1 0 0 0.686198 -0.727415 0 0.706518 -0.707693 -0.00142914 -0.186916 -0.982362 0.00518703 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 0.999996 0.00270408 -0.000202811 0.707109 0.707103 0.00137579 0.661388 0.750044 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707485 0.706728 0 -0.707485 0.706728 0 -0.0227494 0.999741 0 -0.0433816 0.999058 -0.00100791 0.0614524 0.99811 -0.000587621 0.040208 0.999191 0 0.70653 0.707683 0 0.70653 0.707683 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 -0.707109 0.707104 0 -0.17887 0.983781 -0.0134155 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707497 -0.706717 0 -0.707497 -0.706717 0 -0.953243 -0.302206 0 -0.997669 -0.0681264 -0.00391387 -0.994934 0.100527 -0.000540668 -0.99477 -0.102139 0.00046964 -0.997592 0.0692519 0.00389573 -0.953243 0.302206 0 -0.707497 0.706717 0 -0.707497 0.706717 0 0 1 0 0 1 0 0 0 -1 0.00228017 0.00107301 -0.999997 -0.00428658 0 -0.999991 0 -0.0756286 -0.997136 0.0359632 -0.0100633 -0.999303 0 0 -1 0 0 -1 -0.0740843 -0.0738751 -0.994512 -0.0942192 0 -0.995551 -0.0258207 0.0338127 -0.999095 -0.0109016 -0.0231655 -0.999672 0 0.0292872 -0.999571 0.000207603 -0.000125659 -1 0.014824 -0.00133851 -0.999889 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.043765 -0.020595 -0.99883 -0.0442814 0 -0.999019 -0.00427907 0.0235348 -0.999714 0 0 -1 -0.00537115 0.0114136 -0.99992 -0.00821027 0 -0.999966 0 0 -1 -0.000141583 -0.000257471 -1 0.000131237 -0.000980197 -1 0 0 -1 0 0 -1 -0.00370032 0.00662106 -0.999971 -0.995772 0.0915051 -0.00810521 0 0 -1 0 0 -1 0.0124538 0.0125068 -0.999844 0.0170091 0 -0.999855 -0.0138664 -0.0158137 -0.999779 -0.0122564 -0.0260453 -0.999586 0 0.0209359 -0.999781 0 0 -1 0.0159121 -0.00407846 -0.999865 -0.00184954 -0.00726545 -0.999972 -0.0203721 0.000916827 -0.999792 0 0 -1 0.016209 0.00762764 -0.99984 0 0.0131389 -0.999914 0.0145131 0 -0.999895 -0.707373 0.705375 -0.0454845 0.0229175 0.999509 -0.0213897 0.994673 -0.0881459 -0.0534324 0.316112 0.948712 -0.00444243 0 0 -1 0 0 -1 0 -0.0631217 -0.998006 -0.138527 0 -0.990359 -0.0208597 0.0563976 -0.99819 -0.0100142 0.010014 -0.9999 0 0.0173736 -0.999849 0 0 -1 0.00431531 -0.00917012 -0.999949 0.000345746 -0.000558957 -1 0 0 -1 0 0 -1 0 0 -1 0.0107585 0.0107583 -0.999884 0.00827105 -0.00671212 -0.999943 0 0 -1 0.0217288 -0.0109912 -0.999704 0.0336585 0.0132187 -0.999346 -0.354562 -0.932038 -0.0747763 0.322137 -0.946646 -0.00943175 0.649091 -0.758489 -0.0580965 0.0107704 -0.0370375 0.999256 0.00850643 -0.0285754 -0.999555 0.0803115 -0.0806534 -0.993501 0.00599272 0 -0.999982 0.00028593 0.0126334 -0.99992 -0.628217 -0.778014 0.00610466 -0.997363 0.0673302 -0.0271044 0.97664 -0.214875 -0.00194901 0.997683 -0.0676958 -0.00677685 -0.0953829 0.995362 0.0125539 0 0 1 0.00622623 0.00292995 0.999976 -0.00788312 0 0.999969 -0.00305067 -0.00305062 0.999991 -0.00315187 -0.00306483 0.99999 0 -0.00864348 0.999963 0 0 1 0.0038221 0.00812181 0.99996 0.00584334 0 0.999983 0 0 1 0 0 1 0 -0.999999 -0.001118 0 0 1 0.0147247 0.0650773 0.997772 -0.39781 0.917128 0.0249528 0 0 1 0 0 1 -0.0159772 0.00630448 0.999852 0 0 1 0.00172615 0.00389734 0.999991 -0.00210412 0.00447129 -0.999988 0 0 1 -0.127196 0 0.991878 0 0 1 0.378325 -0.178033 0.908391 0 -0.150258 0.988647 -0.0187813 -0.00575824 0.999807 0 0 1 -0.00485015 -0.00483646 0.999977 0 0 1 0 0 1 -0.017571 -0.00826857 -0.999811 0.00903226 0 0.999959 -0.0003985 0.0101758 0.999948 -0.00353809 -0.00353807 0.999987 0 -0.0112292 0.999937 0 0 1 0.00252832 0.00537277 0.999982 0.00460409 0 0.999989 -0.0134812 0.0134668 0.999818 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0272804 -0.0177659 0.99947 0.950191 0.311581 0.00738667 0 0 1 0 0 1 0 0 1 -0.0165707 0.00491892 0.999851 -0.0113905 0.0242046 0.999642 0 -0.0325413 0.99947 0 0 1 0.0127467 -0.0106884 0.999862 0.0101518 -0.0101517 0.999897 0.0126322 0 0.99992 0 0 1 -0.00747404 0.00351715 0.999966 0.0438883 0.0045063 0.999026 0 0 1 0 0 1 0.191104 -0.235802 0.952826 -0.346336 -0.938076 0.00802291 -0.149538 -0.538256 0.829409 0.557421 0.830138 0.0123392 0 0.00439551 0.99999 0.00209706 0.00209114 0.999996 0 0.00435349 0.999991 0.000508714 -0.00279793 0.999996 0.0741174 -0.0261243 0.996907 -0.014479 0.0111291 0.999833 0.089923 -0.995872 -0.0123618 0.220764 -0.975298 -0.00748791 0.728434 0.685114 0.00158796 0.374786 0.926996 -0.0146036 -0.796577 -0.60448 -0.00829527 -0.985411 0.168584 0.0233427 0.75283 0.658105 -0.0120457 0.344317 -0.938853 0.000579703 0.743374 -0.668765 0.0121944 -0.982051 -0.188115 -0.0137561 0.14586 0.989215 0.0133705 -0.853377 -0.521294 -4.46249e-05 0.65613 0.754645 -0.0022897 0.643565 0.765389 -0.00169052 0.195842 -0.980525 0.014718 -0.990027 0.140867 -0.00181023 -0.967711 0.252057 0.00155203 0.539759 -0.84182 -0.000412978 0.542371 0.840139 0.000198696 0.999998 -0.00176981 3.69706e-08 0.622776 -0.782396 0.00247144 0.521413 -0.853304 1.78252e-05 0.598722 0.800957 -0.000289301 0.717227 0.696827 0.0042644 0.611273 0.79142 -0.000294048 -0.995976 0.0888401 -0.0118328 -0.79448 0.607266 -0.00538956 -0.0183789 0.999831 0 -0.850703 -0.525647 0.000249675 -0.857387 -0.514672 0 0.850703 0.525647 -0.000249675 -0.857488 -0.514504 -3.79729e-06 -0.912486 -0.409108 0.000879223 -0.890257 0.455457 -0.00136643 -0.449692 0.893176 -0.00375997 0.0822261 -0.996614 0 -0.998047 -0.062466 0 0.526076 -0.850438 0.000227918 -0.697349 -0.716484 -0.0188176 -0.526076 0.850438 -0.000227918 0.459209 -0.888327 -0.00126703 0.795013 -0.606584 -0.00303184 -0.689455 -0.724326 -0.00184533 -0.629626 0.77689 -0.00355511 0.6137 -0.78953 0.00379556 0.818597 -0.574302 -0.00874691 0.508419 -0.861103 0.0034222 0.706461 9.61157e-07 0.707752 0.706486 0 0.707727 0.161589 -6.87411e-06 0.986858 0.160708 0 0.987002 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -7.67224e-05 -1 0 5.95622e-05 -1 6.56168e-05 -4.21745e-05 -1 -4.21732e-05 0.00895589 -0.99996 0 0.00638806 -0.99997 0.00427748 0.00496931 -0.999988 0 0 -1 0 0.0227355 -0.999483 0.0227355 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.00011264 -1 -0.00022764 -0.000108434 -1 0 -6.11746e-05 -1 -0.000129999 0 -1 0 0 -0.99788 0.0650813 0 -0.99788 0.0650813 0.00746513 -0.996815 0.0794033 -0.129017 -0.991115 0.0323478 -8.23311e-06 -1 2.06425e-06 -7.01961e-06 -1 -7.01961e-06 0 -1 -1.2789e-05 9.38296e-06 -1 6.67792e-06 0 -1 0 0 -1 0 0.00107367 -0.999999 0.000270782 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.965582 0.2601 -0.193007 -0.968871 0.155036 0 -0.999998 -0.00211731 0 -1 0 0 -1 0 0.00132591 -0.999998 -0.00131656 0.00203691 -0.999998 0 -0.0123991 -0.999769 0.0175836 -0.0246 -0.999191 -0.0318275 -0.00177349 -0.999998 0 -0.00134651 -0.999998 -0.00122095 0.00117721 -0.999998 -0.00133407 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.055904 -0.99687 -0.055904 0 -1 0 0 -1 0 -5.96839e-05 -1 -6.57383e-05 7.65697e-05 -1 0 4.21236e-05 -1 4.21236e-05 -1.2463e-05 -1 4.94169e-05 -0.00936436 -0.999267 0.0371304 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0177335 -0.999843 0 -0.0192545 -0.999812 0.00213247 -0.0315121 -0.999503 0 -0.0134836 -0.999585 0.0254666 0 -1 0 -0.0219346 -0.999519 -0.0219346 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.707105 -0.00209837 0.707105 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999201 -0.0399628 -0.00213998 -0.999144 -0.0413079 0 -0.999106 -0.0422865 0.029967 -0.999538 -0.00498038 0.0251493 -0.999664 -0.0063427 8.2352e-06 -1 -2.07693e-06 7.01991e-06 -1 7.01991e-06 0 -1 1.27616e-05 -1.09583e-05 -1 -9.94934e-06 0 -1 0 0 -1 0 -0.0658574 -0.995188 -0.0725487 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999188 -0.0403014 0 -0.937423 -0.348194 -0.251446 -0.94934 -0.188489 0 -1 0 0 -1 0 0.0034681 -0.999988 -0.00349273 0.00940308 -0.999956 0 0.0162831 -0.998445 -0.0533105 0.0543442 -0.998522 0 0.0207095 -0.996408 0.0821145 -0.0568813 -0.998176 0.020218 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.00307187 -0.9999 -0.0137714 -9.83405e-05 -1 0.0003899 0.00573631 -0.999982 -0.00194599 0.0536958 -0.996176 -0.0689244 0.0815802 -0.993982 -0.0731063 -0.0599807 -0.995221 0.0770588 -0.0662828 -0.997715 -0.0131174 -0.0769763 -0.996361 -0.0366063 0.0294673 -0.999415 -0.0173532 -0.00414705 -0.999427 0.0336048 -0.00622451 -0.99944 0.0328801 0.0212431 -0.999521 0.0225153 0.0300575 -0.999539 0.0043872 -0.00596889 -0.997502 -0.0703825 0.00469126 -0.999644 0.0262637 0.549908 -0.828952 0.10217 0.0640792 -0.992906 -0.100156 -0.0975627 -0.992735 0.0704158 -0.0261047 -0.99098 0.13144 0.00836943 -0.999168 -0.0399225 0.0370643 -0.999308 0.00319121 9.03208e-05 -1 -0.000456395 0.0401452 -0.997029 0.0657354 0.0717999 -0.997375 -0.00938079 0.066396 -0.996919 -0.0417564 0.00530857 -0.997218 -0.0743553 -0.0519459 -0.99689 -0.0592555 0.327962 -0.940882 -0.0847528 1.24828e-05 -1 -4.94916e-05 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -0.708072 0 0.70614 -0.708072 0 0.70614 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.707107 0 -0.707107 -0.707107 0 -0.707107 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.707106 -0.00174455 0.707106 -0.438473 0 0.898744 -0.919163 0 0.393878 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0.707107 0 0.707107 0.707107 0 0.707107 0 0 1 0 0 1 0 0 1 0 0 1 -0.708072 0 0.70614 -0.708072 0 0.70614 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0.707107 0 0.707107 0.707107 0 0.707107 0 0 1 0 0 1 0 0 1 0 0 1 -0.708072 0 0.70614 -0.708072 0 0.70614 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 0.318352 0 0.947973 0.998047 0.0018734 0.0624464 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0.70614 0 -0.708072 0.70614 0 -0.708072 1 0 0 1 0 0 1 0 0 1 0 0 0.707107 0 0.707107 0.707107 0 0.707107 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0.706152 0 -0.708061 0.706152 0 -0.708061 1 0 0 1 0 0 1 0 0 1 0 0 0.707107 0 0.707107 0.707107 0 0.707107 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0.707106 0.0016386 -0.707106 0.900394 0 -0.435075 0.436472 0 -0.899718 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.707107 0 -0.707107 -0.707107 0 -0.707107 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.70614 0 -0.708072 0.70614 0 -0.708072 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.707107 0 -0.707107 -0.707107 0 -0.707107 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.70614 0 -0.708072 0.70614 0 -0.708072 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 -0.000171227 -5.13684e-06 -1 -0.707107 0 -0.707107 -0.847198 0.00210614 -0.531273 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -0.708072 0 0.70614 -0.708072 0 0.70614 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.707118 0 -0.707095 -0.707118 0 -0.707095 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -7.35219e-05 1 0 -4.0463e-05 1 4.03526e-05 -0.00788778 0.999969 0 -0.00784662 0.999969 6.05971e-05 -0.00779879 0.99997 0 0 1 0 -0.0047918 0.999977 0.00482583 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0552231 0.996946 0.0552231 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999973 0.00737851 0.00202713 0.999981 0.00575573 0 0.999991 0.00423049 0.00553216 0.999984 0.00138705 -0.0587504 0.995732 -0.0711703 -1.23672e-05 1 -3.10076e-06 -1.05455e-05 1 1.05168e-05 0 1 1.91424e-05 1.64076e-05 1 -1.48617e-05 0 1 0 0 1 0 0 1 0 0.015611 0.99987 -0.00393712 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999829 -0.0184983 0.00633347 0.999964 -0.0057081 0 0.999829 -0.0184983 0 1 0 0 1 0 -0.00683735 0.999953 -0.00683735 -0.00478084 0.99983 -0.0178032 -0.0376311 0.999292 0 -0.0376311 0.999292 0 -0.0115361 0.999847 0.0131204 -0.00754724 0.999524 0.0299254 -0.1043 0.989703 0.0980309 0 1 0 0 1 0 0 1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0.0666065 0.997706 0.0121101 0 1 0 0 1 0 -2.07823e-05 1 2.69578e-05 3.509e-05 1 0 1.92837e-05 1 -1.93359e-05 0.00235736 0.999997 0.000293688 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.00460137 0.999989 0 0.00450892 0.999981 -0.00426259 -0.00460137 0.999989 0 0 1 0 -0.021343 0.999548 0.0211925 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.998947 0.0458825 0.0114393 0.999113 0.0405267 0 0.999465 0.0327108 0.0156362 0.999607 0.0232595 0.0610909 0.998013 0.0154073 -4.31731e-05 1 -1.08883e-05 -3.67972e-05 1 3.68979e-05 0 1 6.71407e-05 5.76422e-05 1 -5.24473e-05 0 1 0 0 1 0 0 1 0 0.0107034 0.999939 -0.00268361 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999942 -0.0108181 -0.017608 0.999844 0.0014587 0 0.999915 0.0130726 0 1 0 0 1 0 0.00754641 0.999943 0.00754641 0.0112321 0.999937 0 -0.00200704 0.999823 -0.0187114 0.000452668 1 0.000513577 0.000762252 1 0 -0.00381721 0.999978 -0.00540965 -0.00172272 0.999975 0.00683025 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 3.84471e-05 1 -5.3915e-05 0.00708149 0.999974 0.00140143 0.00630018 0.999978 0.00198479 -0.0167546 0.950285 0.310929 0.298612 0.954342 -0.00785587 0.00477653 0.999919 0.0118257 0.0120319 0.999927 0.00126741 0.0124115 0.99992 0.00246568 0.100454 0.992193 -0.0739102 0.112669 0.993628 0.00310111 0.0070733 0.989431 0.144831 0.0283406 0.989358 0.142717 -0.00194328 0.999968 -0.00770524 -0.0228478 0.999402 -0.0259744 0.0055252 0.999595 -0.0279191 0.0877574 0.996081 0.0110216 0.0497768 0.996176 -0.0717987 -0.0800849 0.976882 0.198211 -0.0326073 0.999333 -0.0164289 -0.0013733 0.999998 0.00143911 0.00445211 0.999958 0.0079717 -0.0401036 0.999014 0.0190589 -0.0254384 0.998985 0.0371744 0.0465286 0.992644 -0.111769 1.19447e-05 1 4.73617e-05 1 -5.4953e-06 0.000240543 0.9989 -0.00180274 0.0468487 0.999829 0 0.0185056 0.999829 0 0.0185056 0.946362 -0.000599958 0.323107 0.849662 0 0.527328 0.99948 -0.000631067 0.032253 0.923838 0.000519682 -0.382782 0.707143 0 -0.70707 0.707114 -1.10914e-06 -0.707099 0.194135 0 -0.980975 0.194135 0 -0.980975 0.970023 0.000125294 -0.243012 0.252809 0 -0.967516 0.248998 -4.03018e-05 -0.968504 0.967126 0.000302926 -0.254298 0.810859 0.00206446 -0.585238 0.707048 -1.06742e-06 -0.707165 0.659955 0.000921863 -0.751305 0.000109373 2.13624e-06 -1 -0.000109572 -2.14013e-06 -1 -0.382782 -0.000521098 -0.923838 -0.707099 0 -0.707114 -0.707056 1.58724e-06 -0.707158 -0.980832 0 -0.194853 -0.239023 0.000438035 -0.971014 -0.980032 -2.01698e-05 -0.198839 -0.489823 -0.00147432 -0.871821 -0.964667 0.000507484 -0.26347 -0.0898251 0 -0.995958 -0.599809 0 -0.800143 -0.194776 -0.00148524 -0.980847 -0.089825 0 -0.995958 -0.599809 0 -0.800143 -0.00595997 0.000937368 -0.999982 -0.157218 0.000189266 -0.987564 -0.707122 -5.7424e-07 -0.707092 -0.707107 0 -0.707107 -0.999789 -0.000403528 -0.0205493 -1 -4.12753e-06 -0.000109553 -0.75083 0.000924802 0.660495 -0.661649 -0.000878753 0.749813 -0.683625 0 0.729834 -0.0761148 0 0.997099 -0.844425 -0.00331365 0.535664 -0.97277 0.000774586 0.231772 -0.973801 0.000678647 0.227403 -0.226644 0.00139605 0.973977 -0.75972 -0.00119303 0.650249 -0.991573 0 0.129551 -0.706414 -1.70711e-06 0.707799 -0.706461 0 0.707752 -0.0486985 0.000947418 0.998813 -0.000131738 2.16664e-06 1 0.389135 -0.000529319 0.92118 0.706461 0 0.707752 0.706422 1.44042e-06 0.707791 0.980975 0 0.194135 0.980975 0 0.194135 0.380526 4.10864e-05 0.92477 0.467523 0.000811877 0.883981 0.969025 0 0.246964 0.977648 -0.000360751 0.210249 0.0139791 -0.00503507 -0.99989 0.941919 -0.00107327 0.335838 0.191367 -0.00161086 0.981517 -0.912553 -0.000842691 -0.408957 -0.824447 0.000626416 -0.565938 0.33398 0.000801342 -0.94258 0.886725 8.94396e-05 -0.462297 -0.186221 -0.000760869 -0.982508 -0.0797492 0.0010344 0.996814 0.776555 0.000802264 0.630049 -0.977577 0.00160803 0.210572 -0.758648 -0.0024154 0.651496 0.162498 0.00301675 -0.986704 0.969951 0.00179971 -0.243292 -0.0345484 -0.00382997 -0.999396 0.113556 -0.000299647 -0.993532 0.295219 -0.00154021 0.955428 -0.982277 -0.00136867 -0.187431 0.999801 -0.00231796 -0.0198151 -0.635839 0.00270735 -0.771817 -0.693393 -0.00158999 0.720558 -0.928884 0.00189764 0.370366 0.899609 0.00165548 0.436693 0.0361742 0.00102626 0.999345 0.870946 0.00152129 -0.491377 -0.806925 -0.00338195 -0.590644 0.0727783 0.000729311 -0.997348 0.906251 -0.00146634 0.422738 0.599176 -0.00263697 -0.800613 0.737245 -0.000436188 -0.675625 -0.722309 -0.00223768 -0.691567 0.999933 0.00110216 -0.0114838 -0.835692 0.000237212 0.549198 -0.145127 0.00153493 -0.989412 0.178148 -0.000171826 0.984004 -0.878239 0.00145665 0.47822 0.810061 -8.56521e-05 0.586345 0.198515 4.36123e-05 0.980098 -0.845976 -0.000163502 -0.533221 0.634343 0.00219331 0.773049 0.03222 -0.0026884 0.999477 -0.992228 -0.00250839 0.124411 -0.458616 -0.00105598 -0.888634 -0.299721 0.000727372 -0.954027 0.967326 -0.000135612 -0.253535 -0.520555 0.00184194 0.853826 0.559571 1.0737e-05 -0.828783 0.885301 -0.000701039 0.465017 0.523111 0.000460927 -0.852264 -0.992344 0.000518987 -0.123502 0.984531 0.000469463 -0.175209 0.707122 2.98293e-07 -0.707092 0.707114 -1.94535e-09 -0.7071 0.439045 6.17043e-05 -0.898465 0.172666 -0.000442576 -0.98498 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -7.03397e-05 1 0 5.48317e-05 1 -6.02628e-05 -3.87065e-05 1 3.85996e-05 0.0767168 0.997053 0 0.0556581 0.997073 -0.0524195 0.0197594 0.999805 0 0 1 0 0.0119657 0.999856 -0.0120507 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0155181 0.999759 0.0155181 0 1 0 0 1 0 0 1 0 0 0.999825 -0.0187082 0.0142982 0.999484 -0.0287475 0 0.999489 -0.0319712 -0.0175333 0.999835 -0.00469484 -0.0181038 0.999826 -0.00453907 -4.12258e-06 1 -1.03363e-06 -3.51538e-06 1 3.50579e-06 0 1 6.38097e-06 4.68885e-06 1 -3.33709e-06 0 1 0 0 1 0 0.00223453 0.999997 -0.000563553 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.998691 -0.0511446 0.0511535 0.998607 0.0129295 -0.0304351 0.998866 -0.0366063 0 0.999914 -0.0131444 0 1 0 0 1 0 -0.00840831 0.999929 -0.00840831 -0.0135053 0.999909 0 -0.0317935 0.999208 -0.0239167 -0.0438561 0.999038 0 0.00434308 0.999157 0.0408306 -0.00224586 0.999958 0.00890437 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.707021 0.0155827 0.707021 0 1 0 0 1 0 -3.85425e-05 1 5.09193e-05 6.69933e-05 1 0 3.68134e-05 1 -3.69141e-05 -1.09211e-05 1 -4.33031e-05 -0.0229559 0.995584 -0.0910219 0.0315787 0.998476 -0.0452678 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.089625 0.995976 0 -0.0881756 0.996102 0.00221979 -0.0870318 0.996206 0 0 1 0 -0.0102656 0.999895 0.0102151 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0124704 0.999844 -0.01247 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999744 0.0226183 0.0271155 0.999573 0.0108597 0 0.999987 -0.00519869 -0.0144906 0.999861 0.00823131 0.0106693 0.999939 0.00269202 0.0188735 0.999658 0.0181207 8.22643e-06 1 2.07566e-06 7.01213e-06 1 -7.02171e-06 0 1 -1.27748e-05 -1.09746e-05 1 9.97497e-06 0 1 0 0 1 0 -0.00499758 0.999972 0.00550266 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999832 0.0183065 -0.00729181 0.99996 0.00514122 0 0.999988 0.00481262 0.0190952 0.99965 0.0183228 0 1 0 0 1 0 0.0038345 0.999985 0.00384273 0.00873815 0.999962 0 0.00878622 0.999961 0.000102738 0.00886342 0.999961 0 0.00429325 0.999846 -0.0170231 0.00127422 0.999892 -0.014665 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -5.42666e-07 1 2.15171e-06 1.75722e-06 1 1.75722e-06 1.53832e-05 1 -1.69069e-05 0.0115808 0.998816 0.0472493 -0.103095 0.993589 -0.0463974 -0.00235471 0.999912 0.0130745 0.00779874 0.999649 0.0253079 -0.0058697 0.999974 -0.00424106 -0.00862477 0.993763 0.111178 -0.0567324 0.998349 0.00896955 -0.0403605 0.998416 -0.0392082 0.0102755 0.996626 0.081426 0.00760022 0.999287 -0.0369952 -0.00119719 0.999287 -0.0377299 0.0294966 0.999565 -0.00076027 0.0293771 0.999561 -0.00383796 -0.0101285 0.999909 -0.0089099 -0.037493 0.998752 0.0330085 -0.023994 0.997154 0.071465 0.0225359 0.997043 -0.0734729 0.0357476 0.996229 -0.079055 0.0053598 0.99997 -0.00561431 0.00834134 0.999965 0.00014687 0.00597219 0.999963 0.00620905 0.0011122 0.999946 0.01033 2.46307e-05 1 4.70618e-05 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -0.707107 0 -0.707107 -0.707107 0 -0.707107 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.70778 0 0.706433 -0.70778 0 0.706433 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.929709 0 -0.368295 -0.0513871 -0.00154162 -0.998678 -0.707116 0.0020843 -0.707095 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0.706624 0 -0.707589 0.706624 0 -0.707589 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.70759 0 -0.706623 -0.70759 0 -0.706623 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0.706624 0 -0.707589 0.706624 0 -0.707589 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.70759 0 -0.706623 -0.70759 0 -0.706623 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 -1 0.906964 0.000785453 -0.421208 0.978077 0 -0.208245 0.396634 -0.000605625 -0.917977 0.0893476 -0.00268041 -0.995997 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 0.706814 0 0.7074 0.706814 0 0.7074 1 0 0 1 0 0 1 0 0 1 0 0 0.70614 0 -0.708072 0.70614 0 -0.708072 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 0.707118 0 0.707095 0.707118 0 0.707095 1 0 0 1 0 0 1 0 0 1 0 0 0.70614 0 -0.708072 0.70614 0 -0.708072 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0.897765 0.000554095 0.440475 0.991066 0 0.133369 0.748633 -0.000643378 0.662985 0.377309 0.000776335 0.926087 0.000136304 -4.0891e-06 1 0 0 1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.708072 0 0.70614 -0.708072 0 0.70614 0 0 1 0 0 1 0 0 1 0 0 1 0.707107 0 0.707107 0.707107 0 0.707107 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.708072 0 0.70614 -0.708072 0 0.70614 0 0 1 0 0 1 0 0 1 0 0 1 0.707107 0 0.707107 0.707107 0 0.707107 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 -2.53302e-05 0 1 0 -7.94729e-07 1 -0.879817 -0.000424495 0.475312 -0.919176 0 0.393848 -0.37219 0.000510831 0.928157 -0.438418 0.000770378 0.898771 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -0.707107 0 -0.707107 -0.707107 0 -0.707107 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.708084 0 0.706129 -0.708084 0 0.706129 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -7.67205e-05 -1 0 -4.21739e-05 -1 -4.21739e-05 0.0517753 -0.998659 0 0.0340084 -0.999127 0.02428 0.0210275 -0.999779 0 0 -1 0 0.0101341 -0.999897 0.0101558 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0122875 -0.997638 -0.0675804 0 -1 0 0 1 0 0 -1 0 0 -0.99991 0.0133918 -0.021457 -0.999768 -0.00173082 0.0414087 -0.999139 0.00265745 0 -0.999462 0.0327972 -0.00422333 -0.999494 0.0315363 -7.02316e-06 -1 -7.01356e-06 0 -1 -1.27748e-05 9.38177e-06 -1 6.67427e-06 0 -1 0 0 -1 0 -0.00662932 -0.999977 -0.00167268 0.0129984 -0.999695 0.0209974 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.99998 -0.00626417 0.231649 -0.96054 0.153956 0 -0.975828 0.218539 0 -1 0 0 -1 0 -0.0902459 -0.991863 0.0898018 -0.117268 -0.992769 -0.0256513 -0.0793895 -0.996844 0 -0.0567259 -0.995425 -0.0768917 -0.00195347 -0.999998 0 -0.000965467 -0.999992 -0.00382815 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.00073121 -0.999992 -0.00402156 0 -1 0 0 -1 0 -4.44098e-05 -1 -5.83693e-05 7.6556e-05 -1 0 4.2123e-05 -1 4.21217e-05 -1.24651e-05 -1 4.94217e-05 -0.0065853 -0.999637 0.0261094 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.00669628 -0.999978 0 -0.0120454 -0.999915 -0.0050632 -0.0281775 -0.998785 0.0404282 -0.0585186 -0.998286 0 0 -1 0 -0.0405385 -0.998355 -0.0405385 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -6.58513e-05 -1 0.000133483 0.0445851 -0.998526 0.0309516 6.65912e-05 -1 0 3.71846e-05 -1 7.90169e-05 0 -1 0 0 -0.997396 -0.0721207 0.049431 -0.998058 -0.0379071 0 -0.999999 0.00111918 -0.00161901 -0.999999 0.000408318 8.2354e-06 -1 -2.07699e-06 7.0203e-06 -1 7.0203e-06 0 -1 1.27623e-05 -9.37757e-06 -1 -6.67408e-06 0 -1 0 0 -1 0 -0.0869041 -0.995978 -0.0217891 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.998869 -0.0475429 -0.00317334 -0.999145 -0.0412289 0 -0.998869 -0.0475429 0 -1 0 0 -1 0 0.0166311 -0.999721 -0.0167492 0.0408077 -0.999167 0 0.0438333 -0.998996 -0.0092424 0.0503699 -0.998731 0 0.0272177 -0.993788 0.107913 -0.0313101 -0.997058 0.0699703 -2.3092e-05 -1 0 2.11321e-05 -1 4.28353e-05 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1.26658e-05 -1 2.69155e-05 -0.178441 -0.97369 0.141726 -2.14135e-06 -1 -8.49002e-06 7.03705e-06 -1 -7.01762e-06 6.31261e-05 -1 6.73327e-05 0.0223796 -0.99963 -0.0154427 -0.0655216 -0.997766 0.0130112 -0.0464573 -0.998521 0.0282273 -0.0434868 -0.998401 -0.0361146 0.0543437 -0.998221 0.0245397 -0.0445432 -0.997345 0.0576139 0.0113522 -0.999933 -0.00224754 0.0772823 -0.991478 0.10488 0.0684376 -0.9867 0.147443 -0.139658 -0.975013 -0.172756 0.0289053 -0.98963 -0.140701 -0.133006 -0.986437 -0.0961811 0.0235811 -0.99534 -0.0935007 -0.0241236 -0.998077 -0.0571066 0.0225355 -0.993836 -0.108545 0.140778 -0.98763 -0.0690489 -0.140503 -0.974806 0.173239 -0.138933 -0.988313 0.0627349 -0.024821 -0.999475 -0.0208238 0.00466211 -0.999714 0.0234677 -0.0753148 -0.992988 0.0911152 0.00957695 -0.994402 0.105231 0.124256 -0.991633 0.0349885 0.130473 -0.991305 0.0170466 0.090613 -0.99078 -0.10072 1.24823e-05 -1 -4.94933e-05 1 4.92235e-06 -0.000109558 0.999593 0.000560287 -0.0285311 0.939368 -0.000477475 0.342911 0.706486 0 0.707727 0.706467 7.42803e-07 0.707746 0.389135 0 0.921181 0.165651 -0.000593908 0.986184 0.968062 -0.000989454 0.250709 0.997489 0.000178227 0.0708233 0.241755 -0.00103223 0.970337 0.552782 0.00150726 0.833324 0.995653 0 0.0931403 0.991675 0.000324045 0.128768 0.75083 -0.00114984 0.660495 0.765958 0.00614822 0.642861 0.995653 0 0.0931404 0.712883 0 0.701283 0.714706 0.000169699 0.699425 0.660203 -0.000905874 0.751086 -0.000153623 2.99282e-06 1 -0.0481711 0.00093845 0.998839 -0.706453 0 0.70776 -0.706378 -2.77077e-06 0.707835 -0.98096 0 0.194212 -0.991574 -0.00032605 0.129544 -0.245299 0 0.969447 -0.206036 -0.000386378 0.978544 -0.952398 -0.000767297 0.304857 -0.931799 -0.00025467 0.362974 -0.201235 0 0.979543 -0.201235 0.00115328 0.979542 -0.600064 0 0.799952 -0.0978283 0 0.995203 -0.600064 0 0.799952 0.0419524 -0.00120305 0.999119 -0.0978283 0 0.995203 -0.706477 -3.50686e-07 0.707736 -0.706486 0 0.707727 -0.999689 0.000489201 0.0249531 -0.999642 -0.000521482 -0.0267677 -0.707121 0 -0.707092 -0.707107 5.61969e-07 -0.707107 -0.194853 0 -0.980832 -0.220004 -0.000412 -0.975499 -0.17846 -8.27905e-05 -0.983947 -0.988173 0.000179352 -0.153344 -0.743647 0.000663394 -0.668572 -0.923803 -0.000838329 -0.382867 -0.991573 0 -0.129551 -0.707085 8.00669e-07 -0.707129 -0.707107 0 -0.707107 -0.0470113 -0.000918699 -0.998894 0.0470307 0.000918282 -0.998893 0.707107 0 -0.707107 0.707078 -1.06759e-06 -0.707136 0.980848 0 -0.194776 0.987183 -0.000177357 -0.15959 0.920551 -0.00100766 -0.390622 0.114011 -0.000260191 -0.99348 0.826117 0.000780404 -0.563498 0.117407 -0.000233619 -0.993084 -0.264682 -0.00696087 0.964311 -0.977307 0.000656017 -0.211828 0.119324 0.00291254 -0.992851 -0.520137 0.00197657 0.85408 -0.618981 -7.94941e-05 0.785406 0.999969 0.000992852 0.00777621 0.751532 -0.00182678 -0.659695 0.494118 -0.00693507 0.869367 0.179506 0.00274652 0.983753 -0.987416 0.00145676 -0.158136 -0.19825 -0.000735766 -0.980151 0.969753 -0.00143281 0.244083 -0.682191 0.000432448 0.731174 0.948395 0.00531476 -0.317046 -0.250353 0.00179122 -0.968153 -0.99084 0.0019842 -0.135025 -0.135889 0.000436124 -0.990724 -0.863266 -0.00109852 -0.504749 0.998702 0.000789716 -0.0509297 0.541662 -0.000427174 0.840596 0.802382 0.00010165 -0.596811 0.550811 -0.000285736 0.83463 -0.487175 -0.00366747 0.873297 0.926369 -0.0047766 -0.376586 -0.885838 0.00236743 -0.463988 0.0916867 -4.57739e-05 -0.995788 -0.688222 0.00130086 0.725499 -0.268699 -0.00256558 -0.963221 0.956657 0.00174123 0.291211 0.806822 -0.000765042 0.590795 -0.984656 -0.000702865 -0.174503 0.215169 0.000603639 0.976577 0.0732072 -0.000600083 0.997317 -0.650718 0.000750053 0.759319 0.841702 0.000451183 -0.539943 0.161131 -0.000670576 -0.986933 0.927412 -0.00118071 -0.374039 -0.142278 -0.00576812 -0.98981 -0.489134 0.00493165 -0.872195 0.877982 0.00306538 0.478684 0.680056 0.00175938 -0.733158 0.968295 -0.00150153 -0.249804 0.320604 -0.00110521 -0.947213 -0.266964 0.00149031 -0.963705 -0.966241 0.000947746 0.257638 -0.301418 -0.00112079 0.953491 0.680634 -0.00063196 0.732624 -0.723943 6.27444e-06 -0.68986 -0.994796 -0.000605147 0.101889 -0.375462 6.62085e-06 0.926838 -0.643924 -0.00191797 -0.765087 0.706788 -0.707425 0 0.706788 -0.707425 0 0.38145 -0.924389 0 0.38145 -0.924389 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0047345 0 -0.999989 -0.00362375 0.00209101 -0.999991 0 0 -1 -0.0012018 0.00532599 -0.999985 -0.00790117 0 -0.999969 4.14398e-05 -0.0136465 -0.999907 0 0 -1 -0.00516647 0.00518847 -0.999973 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0372208 0.0372202 -0.998614 0 0 -1 0 0 -1 0 0 -1 0 0.00865622 -0.999963 0.00380457 0.00659403 -0.999971 0.0411745 -0.0220462 -0.998909 0.020914 -0.0362479 -0.999124 0 -0.0452943 -0.998974 -0.0527478 0.0105572 -0.998552 0.00165884 0.000416037 -0.999999 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.02114 -0.00533314 -0.999762 0.0143283 0.00271633 -0.999894 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0181212 -0.999836 0.0026552 0.00460196 -0.999986 -0.0301261 -0.00164391 -0.999545 -0.00269918 0.00467818 -0.999985 0 -0.00178308 -0.999998 0.00789696 0.00239344 -0.999966 0 0 -1 0 0 -1 -0.00110275 -0.00109963 -0.999999 -0.00175206 0 -0.999998 0.0175223 0.0358861 -0.999202 0.0393516 -0.022707 -0.998967 0.0316148 0.0182426 -0.999334 0.0309063 0 -0.999522 -0.00736886 -0.0232099 -0.999703 -0.000343355 0.00136378 -0.999999 0.0114456 -0.00660682 -0.999913 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.434569 0.434563 -0.788863 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.000112999 0.000448822 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0236927 0 -0.999719 0.00510962 -0.0230142 -0.999722 -0.0208407 0.0120257 -0.999711 -0.0367969 -0.0212304 -0.999097 -0.00261965 0 -0.999997 -0.0120088 0.0189094 -0.999749 0 0 -1 0.00200098 -0.00199533 -0.999996 0.0043334 0.00978068 -0.999943 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0370894 -0.0249313 -0.999001 0.000241689 0.000489026 -1 -0.000244168 0 -1 -0.000136315 0.000289659 -1 0 0 -1 0 -0.00535581 -0.999986 -0.00323035 -0.00559936 -0.999979 0.00382853 -0.00663622 -0.999971 -0.0105618 -0.00182307 -0.999943 0 0.00392414 -0.999992 0.00533009 0.00134466 -0.999985 -0.0384074 -0.0546302 -0.997768 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.00359917 -0.000902672 -0.999993 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0165187 -0.999864 -0.0145064 -0.00605552 -0.999876 0.00949488 0.016458 -0.999819 -0.0124386 0.0215605 -0.99969 0 -0.00374599 -0.999993 0.0204003 0.00824333 -0.999758 0 0 -1 0 0 -1 -0.00254657 -0.00255742 -0.999994 -0.00448343 0 -0.99999 -0.00346958 0.00200182 -0.999992 -0.0199543 -0.0203734 -0.999593 -0.0241682 -0.0139458 -0.999611 -0.0298963 0 -0.999553 0.0255469 0.0566964 -0.998065 0.00795388 -0.0315922 -0.999469 4.6184e-05 0 -1 -4.23163e-05 8.56216e-05 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 2.53309e-05 5.38279e-05 -1 0 0 -1 0 0 -1 0 0 -1 0.0238847 -0.0436048 -0.998763 0.00931674 0.0370054 -0.999272 -0.0137286 0.0332693 -0.999352 0 0.0395596 -0.999217 0.0223738 0.0629781 -0.997764 -0.0163246 -0.0359134 -0.999222 -0.00600943 -0.0275363 -0.999603 -0.00586294 -0.00818163 -0.999949 0.00144332 -0.00028572 -0.999999 -0.000128771 0.000307657 -1 0.0194272 0.0185141 -0.99964 0 0.0263678 -0.999652 -0.174374 0.0420345 -0.983782 0.0541813 0.141676 -0.988429 -0.0459312 0.00599536 -0.998927 -0.00333401 0.00888984 -0.999955 -0.00501796 -0.000654722 -0.999987 -0.0575377 0.0880058 -0.994457 0.0475388 0.0346322 -0.998269 0.0814428 -0.00856651 -0.996641 -0.000571535 -0.00285773 -0.999996 -0.0414077 -0.0171277 -0.998996 0.0143669 0.0018753 -0.999895 -0.00662658 0.0250233 -0.999665 -0.00929404 -0.0919878 -0.995717 -0.0770782 0.0247378 -0.996718 0 -0.0107687 -0.999942 -0.00463114 -0.0110646 -0.999928 0 0 -1 0 0 -1 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707495 -0.706718 0 -0.707495 -0.706718 0 -1 0 0 -1 0 0 -0.866146 -0.499791 0 -0.866146 -0.499791 0 -0.866171 0.499748 0 -0.866171 0.499748 0 -1 0 0 -1 0 0 -0.707492 0.706721 0 -0.707492 0.706721 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.847335 -0.531058 0.000860103 -0.965617 -0.259969 0 -0.783213 -0.621752 -0.00125927 -0.67314 -0.739515 -0.000356846 -6.11522e-05 -1 7.24413e-07 -1.26651e-05 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.706526 -0.707687 0 0.706526 -0.707687 0 0 -1 0 0 -1 0 0.499717 -0.866189 0 0.499717 -0.866189 0 -0.499717 -0.866189 0 -0.499717 -0.866189 0 0 -1 0 0 -1 0 -0.707492 -0.706721 0 -0.707492 -0.706721 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.706526 -0.707687 0 0.706526 -0.707687 0 0 -1 0 0 -1 0 0.499717 -0.866189 0 0.499717 -0.866189 0 -0.499717 -0.866189 0 -0.499717 -0.866189 0 0 -1 0 0 -1 0 -0.707492 -0.706721 0 -0.707492 -0.706721 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 3.71737e-05 -1 -5.3105e-07 0.887712 -0.460398 0.000641876 0.986747 -0.162269 0 0.811988 -0.583674 3.82293e-05 0.900029 -0.43583 -0.000479221 0.636305 -0.771437 -1.89276e-05 0.3614 -0.932411 0.000355411 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.706526 0.707687 0 0.706526 0.707687 0 1 0 0 1 0 0 0.866171 0.499748 0 0.866171 0.499748 0 0.866146 -0.499791 0 0.866146 -0.499791 0 1 0 0 1 0 0 0.706529 -0.707684 0 0.706529 -0.707684 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.706529 0.707684 0 0.706529 0.707684 0 1 0 0 1 0 0 0.866146 0.499791 0 0.866146 0.499791 0 0.866146 -0.499791 0 0.866146 -0.499791 0 1 0 0 1 0 0 0.706529 -0.707684 0 0.706529 -0.707684 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.767673 0.640841 -0.000686534 0.450163 0.892946 0.000875173 0.990998 0.133874 0 0.316655 0.948541 0 0.846824 0.531873 0.000271614 0.37584 0.926684 0.000146799 0.965433 0.260653 0.000211002 0.929345 0.369212 -0.000406777 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707495 0.706718 0 -0.707495 0.706718 0 0 1 0 0 1 0 -0.499754 0.866167 0 -0.499754 0.866167 0 0.499754 0.866167 0 0.499754 0.866167 0 0 1 0 0 1 0 0.706529 0.707684 0 0.706529 0.707684 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707495 0.706718 0 -0.707495 0.706718 0 0 1 0 0 1 0 -0.499754 0.866167 0 -0.499754 0.866167 0 0.499754 0.866167 0 0.499754 0.866167 0 0 1 0 0 1 0 0.706529 0.707684 0 0.706529 0.707684 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.852091 0.523393 0.000173977 -0.293636 0.955917 0 -0.449764 0.893146 0.00149153 -0.226366 0.974042 0.000138655 -0.879539 0.475827 0 -0.91462 0.404309 -0.00213519 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707495 -0.706718 0 -0.707495 -0.706718 0 -1 0 0 -1 0 0 -0.866146 -0.499791 0 -0.866146 -0.499791 0 -0.866146 0.499791 0 -0.866146 0.499791 0 -1 0 0 -1 0 0 -0.707495 0.706718 0 -0.707495 0.706718 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0250519 0 0.999686 -0.0106662 -0.0280595 0.999549 0.022655 0.0130726 0.999658 0.0321363 -0.0185414 0.999312 0.0340557 -0.0144884 0.999315 0.0364173 0 0.999337 0 0 1 -0.00300531 -0.00301811 0.999991 -0.0136429 0.0397397 0.999117 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.000314968 0.000637297 1 0.000303615 0 1 0.000171249 0.000363902 1 0 0 1 0 -0.00707582 0.999975 0.00370767 -0.00642673 0.999972 -0.00605988 -0.010504 0.999927 0.0635445 0.0288926 0.997561 0 0.0584208 0.998292 -0.123445 -0.0369369 0.991664 0.00342576 -0.000859183 0.999994 0.0025207 0.000498991 0.999997 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0275581 0.0069523 0.999596 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.00424689 0.999991 -0.0183865 0.0153327 0.999713 0.00391118 -0.00677948 0.999969 -0.00711346 0.000370306 0.999975 -0.00212546 -0.00368419 0.999991 0 -0.00424306 0.999991 0 0 1 0 0 1 0.00189147 -0.00188612 0.999996 -0.00182652 -0.0157093 0.999875 0.0321648 0 0.999483 0.0443038 0.0255616 0.998691 0.0313651 -0.0180985 0.999344 0.0321648 0 0.999483 -0.00742505 0.0240744 0.999683 -0.000782278 -0.00310715 0.999995 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.139515 -0.139511 0.980343 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.00350637 0.013927 0.999897 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0165623 0 0.999863 -0.00434526 0.0104547 0.999936 -0.014311 -0.00825788 0.999864 -0.00566244 0.00326739 0.999979 -0.0115453 -0.013666 0.99984 -0.0113715 0 0.999935 -0.00471104 0.011767 0.99992 0 0 1 -0.00842333 -0.00839954 0.999929 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0237424 -0.0237421 0.999436 0 0 1 0 0 1 0 0 1 0 -0.0169743 0.999856 0.00813997 -0.0141081 0.999867 0.0214076 -0.00632528 0.999751 0.00154977 0.00268604 0.999995 0 0.00300135 0.999996 -0.0119032 -0.0130129 0.999844 0.0270291 -0.00681885 0.999611 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0377174 -0.00945952 0.999244 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0249081 0.99969 0.0106388 -0.018439 0.999773 0 0 1 0.0242878 -0.0075427 0.999677 0 -0.00864736 0.999963 -0.0212059 0.0017393 0.999774 0 0 1 0 0 1 0.00497948 -0.00500068 0.999975 0.0104055 0.00595628 0.999928 0.00221033 0 0.999998 0.002054 0.00118522 0.999997 0.00023103 0.00617424 0.999981 -0.00191106 0.00110274 0.999998 -0.00211342 0 0.999998 0.0372246 -0.0298388 0.998861 -0.0147543 0.122487 0.99236 0.00459133 0.0182364 0.999823 -0.00739733 0.0179264 0.999812 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.124342 0.12434 0.984418 0 0 1 0 0 1 0 0 1 -0.0222574 0.00912703 0.999711 -0.00755122 0.0219853 0.99973 -0.00173235 0 0.999999 -0.0277616 -0.164174 0.986041 0.161657 0.0279154 0.986452 0 0.00173741 0.999999 -0.0329646 0.010345 0.999403 0.0258598 -0.00337545 0.99966 0.00762833 -0.020779 0.999755 0.0148484 0.0497923 0.998649 -0.0572742 -0.0241831 0.998066 0 -0.010907 0.999941 -0.00737816 -0.00930949 0.999929 0.000917757 -0.00219268 0.999997 -0.000363175 -0.00625372 0.99998 0.000504933 -0.00200556 0.999998 0.0224346 -0.00997383 0.999699 -0.00222399 -0.0168517 0.999856 0.0734427 -0.049285 0.996081 0.0364711 0.020104 0.999132 -0.050138 0.0730062 0.99607 -0.0363976 0.0312129 0.99885 0.00392582 0.00937948 0.999948 -0.00508773 0.0179178 0.999826 0 0.0187955 0.999823 0.0012288 0.0184278 0.999829 0.008561 0.0129174 0.99988 0.0106683 0.00755495 0.999915 0.0303766 -0.0019867 0.999537 0.0236445 0.0030863 0.999716 0 0 1 0 0 1 1 0 0 1 0 0 0.848809 -0.5287 0 0.925176 -0.379539 -0.000181813 0.925176 -0.379539 0.000179177 0.967058 -0.254554 0 0.925176 0.379539 0 0.925176 0.379539 0 0.706788 0.707425 0 0.706788 0.707425 0 0.130839 0.991404 -0.000156814 0.196112 0.980581 0 0.580682 0.81413 -0.000352993 0.97757 0.210612 0.000253221 0.132246 0.991217 -0.0001585 0.894794 0.44648 -0.000560099 0.566945 0.823755 0.000631973 0.937182 0.348842 0.000181707 0.393974 0.919122 0.000644204 0.254161 0.967161 -0.000947327 0.998534 0.054127 6.50774e-05 0.991595 0.129379 0.000492409 0.856287 0.5165 0 0.980964 0.194189 -0.000463166 0.70678 0.707433 0 0.70678 0.707433 0 0.381483 0.924376 0 0.381483 0.924376 0 0 1 0 0 1 0 -0.386132 0.922444 0 -0.386132 0.922444 0 -0.70678 0.707433 0 -0.70678 0.707433 0 -0.991588 0.129431 0 -0.991588 0.129431 0 -0.323909 0.946088 0.000488684 -0.183272 0.983062 0 -0.710426 0.703771 -0.00108547 -0.951039 0.30907 0 -0.614213 0.78914 0.000552428 -0.934112 0.356981 -0.000178 -0.369274 0.92932 -0.000632784 -0.916705 0.399564 0.000992386 0 1 0 0 1 0 -0.386098 0.922458 0 -0.386098 0.922458 0 -0.70678 0.707433 0 -0.70678 0.707433 0 -0.92523 0.379406 0 -0.92523 0.379406 0 -1 0 0 -1 0 0 -0.991199 -0.132384 0 -0.92523 -0.379406 0.000241083 -0.852675 -0.522442 0 -0.92523 -0.379406 -0.00024463 -0.70678 -0.707433 0 -0.70678 -0.707433 0 -0.386098 -0.922458 0 -0.386098 -0.922458 0 0 -1 0 0 -1 0 -0.783825 -0.620982 0.000490545 -0.930498 -0.366295 -0.000649299 -0.373889 -0.927473 -0.00087773 -0.974587 -0.224008 0 -0.981761 -0.190121 -0.000121789 -0.171751 -0.98514 0 -0.710277 -0.703922 0.000244726 -0.19554 -0.980696 4.8113e-05 -0.532658 -0.846331 -0.000324265 -0.767979 -0.640475 -0.000158825 -0.491326 -0.870976 9.40079e-05 -0.991588 -0.129431 0 -0.991588 -0.129431 0 -0.70678 -0.707433 0 -0.70678 -0.707433 0 -0.542202 -0.840248 0 -0.386098 -0.922458 0.000195671 -0.231888 -0.972742 0 -0.386098 -0.922458 -0.000217026 0 -1 0 0 -1 0 0.38145 -0.924389 0 0.38145 -0.924389 0 0.70678 -0.707433 0 0.70678 -0.707433 0 0.848833 -0.528661 0 0.990554 -0.137125 0.000164879 0.92523 -0.379406 -0.000181932 0.980963 -0.194192 0.000379619 1 0 0 0.346569 -0.938025 0 0.993385 -0.11483 -0.000138067 0.838055 -0.545585 0.000946209 0.857955 -0.513722 0.00132371 0.298283 -0.954477 0.000807132 0.937115 -0.349007 -0.00306663 0.963409 -0.268036 -0.00102697 0.857956 -0.513723 0.000564773 0.425992 -0.904727 -0.000308223 0.356274 -0.934382 0.000116426 0 -1 0 0 -1 0 -0.778517 -0.627622 -0.00130426 0.87462 0.484809 -0.000446257 0.963763 0.26676 0.000899711 -0.132032 -0.991245 -0.00027605 0.781981 -0.623301 -0.001354 0.467185 -0.884157 0.00234215 -0.844149 -0.536109 -0.00014652 0.955361 -0.295438 0.000948905 -0.996773 -0.0802698 0.00030206 -0.996711 0.0810365 -0.000193057 0.193875 0.981026 -0.000465749 -0.692762 0.721166 -0.000805622 0.654365 0.756179 0.000626062 -0.892055 0.451926 0.000877744 -0.169299 0.985563 0.00171589 0.601292 -0.799029 -0.00105676 -0.129312 -0.991604 -0.000316231 0.370838 -0.928697 0.00011209 -0.556757 -0.830675 0.000872699 -0.994671 -0.103102 -0.000484786 -0.116182 0.993226 -0.00173186 -0.375309 -0.9269 -0.000343846 -0.900984 0.433853 -0.000694707 0.956138 -0.292915 0.000540005 -0.840228 -0.542233 -0.000106537 0.653007 0.757351 -0.000966302 -0.936133 -0.351644 0.00132148 0.939899 0.341452 -0.000834181 0.95614 -0.292908 0.00054006 0.046792 0.998905 -4.01459e-05 0.816092 0.577921 0.000634165 -0.789552 0.613683 0.001077 0.487609 -0.873055 0.00359975 -0.999669 -0.0257247 -0.000381326 -0.981308 0.192443 0.000653541 -0.205704 0.978614 -0.00108264 0.691563 0.722315 -0.000831165 0.347379 -0.937725 -0.000109934 -0.772376 0.635166 6.49952e-05 -0.751 -0.660302 -0.00033809 -0.948666 -0.316279 0.000479628 0.876245 0.481866 0.000831324 0.999568 -0.0293832 -0.000107615 -0.214772 -0.976664 -4.94532e-05 -0.711276 -0.702913 -9.74945e-05 -0.583101 0.812399 0.00144161 0.99611 -0.0881219 0.000119992 0.836569 -0.547862 -0.000419527 -0.298657 -0.954361 0.00020114 0.656254 -0.75454 0.0001941 0.276688 -0.96096 0.000106128 -0.068205 0.997671 -0.000255067 0.426892 0.904302 0.000949848 -0.592787 0.805359 -0.00014972 0.91055 0.413398 -0.000968116 -0.94337 -0.331741 -0.000637921 -0.988042 0.154184 -0.000697552 0.351371 0.936236 0.000226163 -0.999414 -0.0342269 0.000396364 -0.597159 0.802123 -0.000101173 -0.775274 -0.631624 0.000299073 0.997248 0.0741258 0.00155305 0.222667 0.97489 -0.00289933 0.426109 0.90467 0.00206599 -0.982551 0.185988 0.00174135 0.227282 -0.973829 -0.000756831 -0.85691 0.515461 -0.00224088 0.357728 0.933826 -0.000248463 0.0542178 -0.998529 0.000269249 -0.696777 -0.717282 -0.00295931 -0.841711 0.539925 -0.00183328 0.91788 -0.396858 0.000129881 0.884412 -0.466707 -0.000363324 0.942501 0.334203 -0.000528673 -0.840093 -0.542442 0.000262313 0.99328 0.115734 0.000531848 -0.996362 0.0852015 0.00178435 -0.197976 0.980204 0.00228397 0.81134 0.584574 0.000573524 -0.515571 -0.856847 0.000272211 -0.849304 -0.527904 0 -0.485909 -0.874009 0 0.63869 -0.769464 0.000577015 -0.998299 0.0583008 -0.000300278 -0.83386 0.551976 -0.000346779 -0.836978 -0.547236 -0.000206808 -0.999192 0.0401827 -0.000113787 -0.268264 0.963345 -0.000593836 0.291966 0.956429 9.19128e-05 0.0399892 -0.9992 -0.00110159 -0.851042 0.525097 -0.000582119 0.991087 0.133217 -0.000224095 0.918826 -0.394662 -0.00116029 0.637862 -0.77015 0.000547469 -0.482883 0.875685 0.000353361 0.7625 0.646988 -0.000709031 0.971143 0.238497 0.000684566 -0.486788 -0.873519 -0.0011 -0.693619 -0.720341 0.00102984 0.480983 -0.876726 0.00258936 -0.992898 0.118945 -0.00235014 0.964563 0.26385 0.00139404 0.77003 0.638007 0.000881025 -0.999738 0.0228536 -0.00120736 -0.335908 -0.941893 -0.00205031 -0.0382956 -0.999266 -6.47276e-05 0.114291 0.993447 2.74266e-05 0.852862 0.522134 -0.00136863 0.999983 0.0057346 0.000420276 0.413636 -0.910442 0.000234519 0.660903 0.750471 0.000513097 -0.904129 -0.427258 0.00113053 -0.520799 -0.853679 -3.53313e-07 0.998182 0.0602719 -0.00012298 -0.469572 0.882894 0.000162634 0.294951 -0.955512 -0.000264928 0.900556 -0.43474 0.000158976 0.841613 -0.540081 -0.000229011 -0.85989 0.51048 -8.08818e-05 -0.472112 0.881539 0.000152524 0.162031 0.986786 -0.000252573 0.697232 0.716843 0.00180539 0.911006 0.412392 4.15923e-05 0.990873 0.134801 0.000107036 0.437918 -0.899015 -9.5482e-05 -0.575073 -0.818101 -0.00123449 -0.906587 -0.422018 -0.000191696 -0.872461 -0.488683 0.000451778 0.817987 0.575233 -0.00215192 -0.0361366 -0.999347 -7.73541e-05 0.356628 0.934246 0.000903474 -0.99839 0.0567109 -0.000590637 0.294951 -0.955512 0.000558117 0.151122 -0.988512 0.00236253 -0.93421 0.356723 0.000482659 0 -0.70678 0.707433 0 -0.70678 0.707433 0 -0.924389 0.38145 0 -0.924389 0.38145 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.99979 0 0.020503 0.999914 0.00563189 0.0118296 0.999741 -0.0113353 0.0197109 0.999465 0.0163028 0.0283487 0.999862 0 0.0165857 0.999819 -0.00383722 0.0186553 1 0 0 0.999891 -0.0104432 0.0104212 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999676 0.0180118 -0.0180115 1 0 0 1 0 0 1 0 0 0.999858 -0.016868 0 0.998345 -0.0391876 0.0420928 0.997397 -0.0624559 -0.0360353 0.997921 -0.0558276 0.0322109 0.998581 -0.0491594 -0.0204541 0.999252 -0.0386703 0 0.998381 -0.00367747 -0.0567691 0.999509 -0.00766473 -0.0303821 0.999507 0.0122598 -0.0288991 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999645 -0.00651339 0.0258165 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999875 -0.0158254 0 0.999355 -0.031102 -0.017945 0.999827 -0.0181115 0.0041408 0.999772 -0.0184959 0.0106716 0.999789 -0.0205481 0 1 0 0 1 0 0 0.999924 -0.00869795 -0.00872258 0.999761 0.0161184 -0.0147553 0.999935 0 0.0114242 0.999918 -0.00640967 0.0111081 0.999834 0.00909684 0.015765 0.999932 -0.00943958 0.00691869 0.999999 0 0.00142614 0.999998 -0.00202331 0.000509402 0.999965 0.00425101 -0.00716358 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.998424 0.039682 0.0396826 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.998808 -0.0473278 -0.0119156 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.998535 0 -0.0541167 0.998744 0.0250457 -0.0434046 0.998585 -0.0265751 -0.0460604 0.998171 -0.000420134 -0.0604545 0.998529 0 -0.0542195 1 0 0 0.999357 0.0253097 -0.0253814 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.998107 -0.0434866 0.0434878 1 0 0 1 0 0 1 0 0 1 0 0 0.998252 0.0446633 0.0386952 1 -0.000524813 0 0.999751 0.00523553 -0.0216809 0.999727 0.0202373 0.0116752 0.99986 0.0144871 -0.00835784 0.999874 0.0146118 -0.00628274 0.99985 0.0173447 0 0.999743 -0.00139363 0.0226377 0.999965 0.00206169 0.00817175 0.999906 0.00776839 0.011299 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999992 0.00100048 -0.00396581 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999932 -0.0116689 0 0.999884 0.013189 0.00760891 0.999556 0.00150225 -0.0297472 0.999914 0.0113932 -0.00657288 0.99995 0.00996202 0 0.999942 0.0106932 0.00131424 1 0 0 1 0 0 0.999945 0.00745788 0.00744219 0.999882 0 0.01537 0.999888 -0.00747688 0.013003 0.998405 0.0405245 0.0393187 0.998636 0.0260282 0.0452601 0.998755 0 0.0498755 0.999524 -0.0267077 0.0154403 0.988208 -0.150776 -0.0266871 0.999999 -0.00129241 0.000325532 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.745336 -0.471421 -0.471421 1 0 0 1 0 0 1 0 0 0.999618 0.0268072 0.00675219 0.999797 0.0186268 -0.00768639 0.999674 0.025532 0 0.999856 0.0155967 -0.00675785 0.998917 0.0098071 0.0454779 0.998028 -0.0242025 -0.0579172 0.999438 0 -0.0335342 0.998942 -0.0442402 -0.0125482 0.999236 -0.0360528 0.0150901 0.999205 -0.0232602 0.0323701 0.999923 -0.0124316 0 0.999922 -0.0123262 0.00214014 0.999911 -0.0133307 -6.22441e-05 0.999736 0.012648 0.0191874 0.999881 0 0.0153987 0.999839 -0.00680343 0.0165849 0.999819 0.00440274 0.0184914 0.999991 -0.00161233 -0.00380076 0.99999 0 -0.00438809 0.998211 0.0401895 -0.0442737 0.99982 0.0114251 0.0151373 0.998528 -0.0438437 0.031936 0.99998 -0.00457518 0.00445416 0.999999 -0.00147367 0 0.999999 -0.00139481 -0.00057557 0.999865 0.0112402 0.0119863 0.999841 0.00676233 0.0164841 0.999973 0 0.00741651 0.999425 -0.0329175 0.00809051 0.99947 0.0137953 -0.0294955 0.999963 0.00855809 0 0.999943 0.00986657 0.00412969 1 0 0 1 0 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.707202 -0.707012 0 -0.707202 -0.707012 0 0 -1 0 0 -1 0 -0.498523 -0.866876 0 -0.498523 -0.866876 0 0.49848 -0.866901 0 0.49848 -0.866901 0 0 -1 0 0 -1 0 0.707205 -0.707009 0 0.707205 -0.707009 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 -0.000112741 -0.405923 -0.913907 6.17508e-05 -0.841589 -0.540118 0.000224731 -0.922455 -0.386105 0 -0.982831 -0.184506 0.000570516 -0.945675 -0.325114 -0.000361054 -0.861446 -0.507849 -0.000135375 -0.824775 -0.565461 -2.82084e-05 -0.554399 -0.832251 -0.000164023 -0.417926 -0.908481 0 -0.23484 -0.972034 0.000229781 -0.617194 -0.786811 0.000724785 -0.480216 -0.87715 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.707394 0.706819 0 -0.707394 0.706819 0 -1 0 0 -1 0 0 -0.866189 0.499717 0 -0.866189 0.499717 0 -0.866189 -0.499717 0 -0.866189 -0.499717 0 -1 0 0 -1 0 0 -0.706721 -0.707492 0 -0.706721 -0.707492 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.707698 0.706515 0 -0.707698 0.706515 0 -1 0 0 -1 0 0 -0.866189 0.499717 0 -0.866189 0.499717 0 -0.866189 -0.499717 0 -0.866189 -0.499717 0 -1 0 0 -1 0 0 -0.706721 -0.707492 0 -0.706721 -0.707492 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 -0.000233555 -0.297339 0.954772 0.000293163 -0.880794 0.473499 6.77129e-05 -0.230975 0.97296 0.000301248 -0.879482 0.475933 0 -0.985013 0.172478 0 -0.173186 0.984889 0.000248701 -0.584677 0.811266 -0.000273151 -0.895201 0.445664 0 -0.173186 0.984889 0 -0.58134 0.813661 6.45338e-06 -0.849941 0.526877 2.04245e-05 -0.587237 0.809415 -0.000203958 -0.609444 0.792829 -0.00027849 -0.894601 0.446866 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.707687 0.706526 0 0.707687 0.706526 0 0 1 0 0 1 0 0.499748 0.866171 0 0.499748 0.866171 0 -0.499791 0.866146 0 -0.499791 0.866146 0 0 1 0 0 1 0 -0.707684 0.706529 0 -0.707684 0.706529 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.707684 0.706529 0 0.707684 0.706529 0 0 1 0 0 1 0 0.499791 0.866146 0 0.499791 0.866146 0 -0.499791 0.866146 0 -0.499791 0.866146 0 0 1 0 0 1 0 -0.707684 0.706529 0 -0.707684 0.706529 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 -7.20166e-05 0.673424 0.739257 -0.000248289 0.596159 0.802866 0.000314488 0.878372 0.477977 0.000417095 0.501719 0.86503 0.000172647 0.896605 0.442832 0 0.173436 0.984845 0 0.991555 0.129684 -0.000629822 0.872154 0.489231 -0.000399239 0.396151 0.918185 -0.00018699 0.927853 0.372945 -0.000107391 0.597807 0.80164 0.000193129 0.868279 0.496076 -0.00040935 0.289477 0.957185 8.33805e-05 0.86733 0.497734 0.000155635 0.663267 0.748383 -0.000152698 0.329842 0.944036 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.706718 -0.707495 0 0.706718 -0.707495 0 1 0 0 1 0 0 0.866167 -0.499754 0 0.866167 -0.499754 0 0.866167 0.499754 0 0.866167 0.499754 0 1 0 0 1 0 0 0.707696 0.706518 0 0.707696 0.706518 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.706718 -0.707495 0 0.706718 -0.707495 0 1 0 0 1 0 0 0.866167 -0.499754 0 0.866167 -0.499754 0 0.866167 0.499754 0 0.866167 0.499754 0 1 0 0 1 0 0 0.707391 0.706822 0 0.707391 0.706822 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 -0.000287694 0.423467 -0.905911 0.000665896 0.735503 -0.677522 0.000316317 0.4081 -0.912937 0 0.982839 -0.184465 0 0.15604 -0.987751 5.82383e-05 0.245385 -0.969426 -0.00013499 0.649332 -0.760505 -0.000338172 0.853029 -0.521864 -0.000441009 0.702239 -0.711941 4.16066e-05 0.378957 -0.925414 0.000318571 0.896351 -0.443345 0.000500721 0.173895 -0.984764 -0.000197803 0.430808 -0.902444 0.000330351 0.895809 -0.44444 0.000709048 0.97838 -0.206816 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.707202 -0.707012 0 -0.707202 -0.707012 0 0 -1 0 0 -1 0 -0.498523 -0.866876 0 -0.498523 -0.866876 0 0.498523 -0.866876 0 0.498523 -0.866876 0 0 -1 0 0 -1 0 0.707202 -0.707012 0 0.707202 -0.707012 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.000964045 -0.99995 0.00654151 0.00759983 -1 -0.00050097 -0.000871131 -0.999932 -0.00582526 0.0101306 -0.999871 -0.0151615 0.00533224 -0.999931 0 0.0117563 -1 0 0 -0.999998 0.00156694 0.00156364 -0.999931 0.0116264 -0.00147364 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.996651 0.0578189 0.0578189 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999994 0.00337259 0 -0.999994 0.00290209 -0.00167426 -0.999981 0.00539008 0.00310961 -0.999958 0.00709549 0.00573827 -0.999942 0.0107789 0 -0.999856 0.00414553 -0.0164324 -0.999949 -0.00395103 -0.00931381 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999989 -0.00113331 -0.00449199 -0.992712 0.0915921 0.0783162 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999992 -0.00405443 0 -0.999994 -0.00304889 0.00175895 -0.999991 0.0036291 0.00209368 -0.999968 0.00183031 0.00785425 -0.999791 0.0204366 0 -0.999462 0.00118362 0.0327819 -1 0 0 -1 0 0 -0.999789 0.0144979 -0.014539 -0.998615 0.0500206 0.016336 -0.996952 0 -0.0780163 -0.994107 -0.054176 -0.0938985 -0.99538 0.0479884 -0.0831646 -0.995423 -0.0641301 -0.0708522 -0.999417 0 -0.0341493 -0.982824 -0.181246 0.0347355 -0.999999 0.00161311 0.000406127 -0.999999 0.00130916 -0.000547954 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.354014 -0.661305 0.661325 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.000370709 9.33324e-05 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999987 0 -0.00513799 -0.999989 -0.00232676 -0.0040323 -0.999825 0.00934122 -0.0161885 -0.999819 0.0123073 -0.0145253 -0.999814 0 -0.0192695 -1 0 0 -0.99991 -0.00946148 -0.00948828 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.0217658 0.706934 0.706945 -1 0 0 -1 0 0 -1 0 0 -0.999802 -0.0166167 0.010992 -1 -0.000226624 0 -1 -0.000219484 0.000126636 -0.999108 -0.0118768 -0.0405194 -0.99959 -0.0248073 -0.0143131 -0.999596 -0.0284224 0 -0.999797 -0.0182959 0.00838739 -0.999333 -0.00893057 0.0353973 -0.999684 0.0207087 0.0142765 -0.999963 0.00328775 0.00801432 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999269 0.00935064 0.0370649 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.000634554 0 -0.999806 0.0166007 -0.0105892 -1 0.000620342 -0.00035792 -0.999857 -0.0146618 -0.00845943 -0.999688 -0.00579134 -0.0242828 -0.999849 -0.0173768 0 -1 0 0 -1 0 0 -0.999931 -0.00831727 0.00829977 -0.999757 0.0152832 0.0158632 -0.999875 0 -0.0158157 -0.999744 -0.0112876 -0.0196278 -0.999811 0.00968396 -0.0168393 -0.999875 0 -0.0158157 -0.999936 -0.0106713 0.00382464 -0.999999 0.00100967 0.000254315 -0.999618 0.0160582 0.0224996 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.996318 0.0145797 -0.0844867 -0.952556 0.21522 -0.215216 -1 0 0 -1 0 0 -1 0 0 -0.999516 -0.0121506 0.0286415 -0.999286 0 0.0377807 -0.991129 -0.0933182 -0.0946312 -0.997697 -0.061624 0.0283256 -0.991564 0.0829939 0.0995633 -0.999754 0.0221601 0 -0.999727 0.0215948 -0.00891112 -0.997139 -0.0286885 0.0699348 -0.996795 0 0.079999 -0.996861 -0.0789232 0.006348 -0.99818 0.057306 0.0187697 -0.997611 -0.0307802 -0.061839 -0.99988 -0.0155197 0 -0.999727 -0.0112948 -0.0204428 -0.999909 -0.0133173 -0.00223658 -1 -0.000372508 9.38274e-05 -1 -0.000363412 -0.000149962 -1 -0.000410359 0 -0.999264 -0.0257406 0.0284416 -0.997479 -0.0276417 0.0653561 -0.998043 0.0441337 -0.0443103 -0.999539 0 -0.0303475 -0.999522 0.0119756 -0.0284992 -0.999963 0.00831372 0.00203335 -1 -8.28054e-06 -0.000680521 -0.999981 0.00294434 -0.00533588 -0.999977 0.00640775 0.00228323 -0.999985 0.00554376 0 -0.984381 0.00502653 -0.17598 -0.986184 -0.153982 0.0610794 -0.999972 0 0.00749491 -1 0 0 0 0 1 0 0 1 0 -0.557384 0.830255 0.000116747 -0.387376 0.921922 0 -0.239374 0.970927 -9.20657e-05 -0.387376 0.921922 0 0.208763 0.977966 0 0.534765 0.845001 0.000104885 0.387376 0.921922 -0.00010535 0.387376 0.921922 0 0.70678 0.707433 0 0.70678 0.707433 0 0.924389 0.38145 0 0.924389 0.38145 0 1 0 0 1 0 0 0.826716 0.562619 0 0.982737 0.18501 -0.000741702 0.969451 0.245283 0 0.154044 0.988064 0 0.999107 0.0422593 6.9109e-05 0.975587 0.219613 0.0021649 0.700637 0.713514 -0.000416479 0.755768 0.654839 0.000247606 0.505614 0.86276 0 0.982737 0.18501 -9.69224e-05 0.972298 0.233746 0.0185896 -0.87832 0.477712 -7.76324e-05 0.973427 0.228998 -0.00101453 0.914224 0.405208 -5.80919e-05 0.832451 0.554098 0 0.982737 0.18501 0 0.839471 0.543404 -3.15241e-05 0.743639 0.668581 -0.000759617 0.951149 0.308732 9.69224e-05 -0.972298 -0.233746 0.00069813 0.883722 0.468012 0 0.826716 0.562619 0 0.826716 0.562619 0.000304853 0.509691 0.860358 0.000117232 0.264743 0.964319 -0.000551147 0.618071 0.786122 -0.00190494 0.392963 0.919552 -0.000109272 0.265124 0.964214 0 0 1 0 0 1 0 0.254554 0.967058 0 0.549119 0.835744 0.000113172 0.390526 0.920592 0 0.549119 0.835744 -0.00016799 0.390526 0.920592 0 0.254554 0.967058 0 0.706788 0.707426 0 0.706788 0.707426 -0.00010253 0.924376 0.381483 0 0.973112 0.230332 0 0.837233 0.546846 0.000102686 0.924376 0.381483 0 1 0 0 1 0 0 0.975282 -0.220965 0 0.849217 -0.528044 -0.000100641 0.922444 -0.386132 9.56425e-05 0.922444 -0.386132 0 0.707425 -0.706788 0 0.707425 -0.706788 0 0.228977 -0.973432 8.14933e-05 0.379526 -0.925181 -0.000140869 0.379526 -0.925181 0 0.54982 -0.835283 0 0 -1 0 0 -1 -2.0957e-05 0.982127 -0.18822 8.79717e-05 0.876363 -0.481651 -0.0021637 0.617234 -0.786777 0 0.568963 -0.822363 -2.5734e-05 0.173696 -0.984799 0 0.984729 -0.174092 0 0.154044 -0.988064 0.000190445 0.3683 -0.929707 -0.000617685 0.446403 -0.894832 4.97631e-05 0.578768 -0.815492 -6.41192e-05 0.580489 -0.814268 -5.10653e-05 0.205119 -0.978737 0.000511943 0.472879 -0.881127 2.26168e-05 0.981171 -0.193141 0 0.182789 -0.983152 0 0.568963 -0.822363 -5.58786e-06 0.568472 -0.822703 -3.61775e-06 0.84634 -0.532643 -0.000298713 0.601904 -0.798568 0.000407421 0.679136 -0.734013 6.5739e-05 0.217754 -0.976004 0 0.182789 -0.983152 0 0.568963 -0.822363 0.00125822 0.819901 -0.572505 -0.000410463 0.783293 -0.621652 0.000126162 0.875093 -0.483954 -0.000172934 0.857331 -0.514765 9.36731e-05 0.975799 -0.218671 -0.000396715 0.806986 -0.59057 -0.000835108 0.950024 -0.312176 0 1 0 0 1 0 0 0.973084 -0.230451 -0.000105099 0.922458 -0.386098 9.18225e-05 0.922458 -0.386098 0 0.844409 -0.535699 0 0.707433 -0.70678 0 0.707433 -0.70678 0 0.524967 -0.851122 -7.15245e-05 0.379406 -0.92523 0 0.179008 -0.983848 0.000230201 0.379406 -0.92523 0 0 -1 0 0 -1 -0.000109791 -0.379406 -0.92523 0 -0.533145 -0.846024 0.000108913 -0.379406 -0.92523 0 -0.191841 -0.981426 0 -0.707433 -0.70678 0 -0.707433 -0.70678 0 -0.968559 -0.248786 -4.30203e-06 -0.970338 -0.241751 2.54905e-05 -0.86307 -0.505085 -0.000110943 -0.922458 -0.386098 0 -0.833474 -0.552559 0 -1 0 0 -1 0 -0.000757182 -0.938743 -0.344619 0 -0.982918 -0.184046 4.08445e-05 -0.192216 -0.981353 -0.000317928 -0.513547 -0.858061 0.000613113 -0.322446 -0.946588 -0.000521206 -0.940165 -0.340718 0 -0.154051 -0.988063 0 -0.987777 -0.155875 0.000327481 -0.555591 -0.831455 -0.000443054 -0.348794 -0.937199 0.000356037 -0.855155 -0.518373 0 -0.834067 -0.551663 0.000490224 -0.558835 -0.829279 -5.14853e-05 -0.977496 -0.210953 0.000586967 -0.894954 -0.446158 9.9722e-05 -0.889852 -0.456249 -8.61803e-05 -0.556444 -0.830885 0.000293989 -0.908993 -0.416812 -8.3784e-05 -0.840424 -0.54193 0.00013392 -0.501558 -0.865124 -0.000809533 -0.564075 -0.825723 -4.37339e-05 -0.199422 -0.979914 0 0 -1 0 0 -1 0 -0.184383 -0.982854 -0.000121694 -0.379539 -0.925176 0 -0.550187 -0.835041 0.000114902 -0.379539 -0.925176 0 -0.707425 -0.706788 0 -0.707425 -0.706788 -6.19455e-05 -0.922458 -0.386098 0.000254788 -0.922458 -0.386098 0 -0.972726 -0.231956 0 -0.840343 -0.542055 0 -1 0 0 -1 0 0 -0.970691 0.240331 0 -0.837806 0.545968 8.87871e-05 -0.924389 0.38145 -0.000110816 -0.924389 0.38145 0 -0.706788 0.707426 0 -0.706788 0.707426 0 -0.49395 0.86949 -7.65439e-05 -0.39054 0.920586 0 -0.246558 0.969128 7.94822e-05 -0.39054 0.920586 0 0 1 0 0 1 -0.00130697 -0.925619 0.378454 -0.000217056 -0.445496 0.895284 -0.00029178 -0.938116 0.346321 0 -0.984876 0.173259 0 -0.154051 0.988063 3.63908e-05 -0.192917 0.981215 1.681e-05 -0.530767 0.847518 0.00015078 -0.84214 0.539259 0.000103311 -0.836577 0.547849 -0.000389347 -0.56803 0.823008 -0.000878279 -0.381938 0.924187 -4.26909e-05 -0.192657 0.981266 0.000676209 -0.367212 0.930137 0.000300116 -0.484219 0.874947 8.21522e-05 -0.565513 0.824739 -9.5105e-05 -0.858711 0.51246 0.000465421 -0.899565 0.436786 -1.37469e-05 -0.982521 0.186151 0 -1 0 0 -1 0 0.000876995 0.930176 0.367113 0.000511036 0.859504 -0.511128 -0.00168597 -0.422429 -0.906395 0.00261651 0.0167076 -0.999857 0.0014935 -0.783095 -0.621901 0.000269073 -0.830993 -0.556283 1.94813e-05 0.171608 -0.985165 -0.00122063 0.543888 -0.839157 -0.000621716 0.221342 0.975196 0.00208461 0.00738296 0.999971 0.000816064 -0.733972 0.679179 0.0017309 0.969286 0.245932 -0.00135973 0.598266 0.801297 0.000415715 -0.425193 -0.905103 0.0001162 0.902437 -0.430821 -5.38734e-05 0.909576 0.415539 -0.000175284 -0.705134 -0.709074 0.000116873 0.238158 0.971226 -0.000108763 -0.221632 0.97513 0 -0.659809 0.751434 -8.38193e-06 -0.996886 0.0788509 -0.000418476 -0.991971 -0.126461 5.12066e-05 0.628246 0.778015 -0.000536669 -0.884346 0.466832 -0.000395652 -0.14848 -0.988915 0.000223834 0.181537 -0.983384 0.000416243 0.634955 -0.772549 -0.000368265 0.998229 -0.05949 4.89006e-05 -0.162367 0.98673 -0.000196054 -0.590646 0.806931 -0.00015003 0.418009 -0.908443 -0.000388708 0.774342 -0.632767 0 -0.933799 0.357799 -0.000483426 0.437302 0.899315 -4.49146e-05 -0.934858 0.355023 0.000367623 -0.57387 0.818947 0.000598555 0.450333 0.892861 0.00017639 -0.988861 -0.148843 0.000125845 0.896042 0.443969 -0.00173942 -0.0856158 0.996327 0.000282134 -0.144955 -0.989438 -0.000799374 0.436106 -0.899895 0.000225802 0.274442 -0.961604 -0.000136545 0.779771 -0.626065 -0.00028412 -0.704507 -0.709697 0.00100582 0.173056 0.984912 0.000237536 0.990794 -0.135381 5.4696e-05 -0.752458 -0.65864 -0.000117777 -0.212053 -0.977258 -0.000497699 -0.398026 0.917374 -0.000860724 0.709951 0.704251 -0.000448432 0.815838 -0.57828 -0.000179795 0.996269 0.0863075 1.24923e-05 -0.984074 -0.17776 -0.000409699 -0.1885 -0.982073 0.000712587 0.298671 -0.954356 0.00150906 0.852152 -0.523293 0.000587637 -0.368913 0.929464 -0.000251206 -0.782818 0.622251 0.000398903 -0.957809 0.287405 -0.00148212 -0.99585 -0.0909953 0.000242036 -0.751927 -0.659246 -0.000439995 0.996374 0.0850748 -0.000638936 -0.756304 0.65422 -0.0022916 0.999641 -0.0267063 -0.000993349 0.42775 -0.903896 0.00160061 -0.999333 0.0364713 -0.00145614 0.398883 -0.917001 -0.00094518 -0.681157 -0.732137 0.00254799 -0.134712 -0.990882 -0.000428959 0.23039 0.973098 -0.00214755 0.115837 0.993266 -0.00624541 -0.909899 0.414782 0.00307646 0.83201 0.554752 -0.00447882 0.815729 0.578416 0.00117056 -0.0563252 -0.998412 0.000842913 0.699621 0.714514 0.000332181 -0.969681 0.244374 -0.00232513 0.0633701 0.997987 -7.58929e-05 -0.936868 0.349683 0.00153292 0.971099 -0.238672 -0.00161093 0.529072 -0.848575 -0.000761918 0.830626 -0.55683 0.000236406 -0.833181 -0.553001 -0.000157371 -0.566203 0.824266 0.0011212 -0.0499083 -0.998753 0.000890114 0.227991 0.973663 5.72796e-05 -0.61113 0.79153 -0.000500332 -0.510536 -0.859856 0.000168408 0.388612 0.921401 0.000437418 0.876161 -0.482019 -0.000191202 0.757366 0.652991 -0.000116452 0.997041 0.0768787 -0.000275085 -0.129245 0.991613 -5.3375e-06 -0.855534 -0.517747 1.9887e-05 0.00232347 -0.999997 -0.000128142 0.48611 -0.873897 0.000259713 -0.4999 -0.866083 -0.000149256 -0.0323991 -0.999475 -9.62668e-06 -0.544573 -0.838713 0.000225342 -0.12695 0.991909 -0.000113229 0.744894 0.667183 -0.000217042 -0.998531 -0.0541782 0.000173772 -0.8183 -0.574792 0.000333655 0.388785 -0.921328 -7.01254e-05 0.761444 -0.648231 0.000188536 -0.613929 0.789361 0.000268315 0.749879 0.661575 -0.00028262 -0.432321 0.90172 0.000260806 0.993876 0.1105 -0.000162124 0.918273 0.395947 -3.14501e-05 0.638344 0.769751 6.99271e-05 0.385928 0.922529 -0.00018141 -0.818188 -0.574951 -7.93017e-06 -0.788602 0.614904 0.000252546 -0.936654 0.350257 -2.63631e-05 -0.543749 -0.839248 0 -0.996203 -0.0870634 0 -0.799972 -0.600037 -0.000483615 -0.448342 -0.893862 8.69443e-05 -0.0312934 -0.99951 -0.000113077 0.232405 0.972619 8.78065e-05 -0.101818 0.994803 4.77885e-05 0.374055 -0.927407 -0.000366021 0.765854 -0.643014 -0.000179543 0.960449 -0.278455 -0.00050092 0.172441 -0.98502 -1.56732e-05 0.973502 -0.228679 0.000315766 0.671193 -0.741282 -0.000321229 -1 0.000702569 0.000140702 -0.501092 0.865394 3.79415e-05 -0.124699 0.992195 0.00107313 0.190601 -0.981667 0.00132369 -0.418716 -0.908116 -0.00110104 -0.638244 0.769833 -0.00171956 0.435587 -0.900145 0.000295129 -0.996353 0.0853306 0.000144343 -0.795078 -0.606508 -0.00089489 -0.675712 -0.737165 -0.00337455 0.0714972 0.997435 0.00134011 -0.532052 -0.84671 0.00162464 0.977195 0.212338 -0.00247741 0.823062 0.567946 -0.0001124 0.998961 0.0455636 0.000756501 0.287683 0.957726 0.000249305 -0.940095 0.340912 0.00012952 0.833793 -0.552077 -0.00374034 0.237376 -0.971411 0.00799575 0.575167 0.817997 0.000493666 0.259403 0.965769 0.000376874 -0.506304 0.862355 -0.000545248 -0.721284 0.692639 -2.78184e-06 -0.954038 -0.299686 -9.32793e-05 0.864002 -0.503489 0.000914023 -0.0134333 -0.999909 9.41759e-05 0.878774 0.477238 -0.000800783 -0.310426 0.950597 -0.000231936 0.996369 0.0851372 0.000436677 -0.594476 -0.804113 -0.000707588 -0.319129 -0.947711 -0.00072875 0.36513 -0.930956 -0.000469284 -0.824475 -0.565898 -2.26273e-05 0.622675 0.78248 -0.000231578 0.290087 0.957 -0.000377852 0.747993 0.663707 0 -0.297273 0.954792 -0.000407608 -0.993489 0.113924 0 -0.768436 0.639927 0.000380659 -0.346259 0.938139 -0.000593344 0.205607 0.978635 -0.00111999 -0.321384 -0.946948 0.000825361 0.392114 -0.919916 7.81488e-05 -0.195123 -0.980779 0.000439041 0.891156 -0.453696 -0.000163165 -0.841778 -0.539824 0.000265452 -0.76047 0.649374 -0.000279702 0.560503 -0.828152 -0.000597032 -0.418651 0.908147 0.000523403 0.597332 -0.801994 0.00201831 -0.256147 -0.966636 -6.58488e-05 -0.836592 -0.547826 0.00016214 0.209854 0.977733 -0.000206615 -0.474651 0.880174 -0.000290826 -0.946665 0.322219 0.000282619 -0.997682 0.0680482 0.000515249 0.155383 0.987854 -0.000460226 0.161585 -0.986859 0.000285343 0.995994 0.0894219 -6.94219e-05 0.914745 0.404031 0.000307118 0.742201 0.670177 -5.65644e-05 0.627017 0.779006 3.55509e-05 -0.845445 -0.534062 0.000682401 -0.352942 -0.935645 0.000184049 0.90908 -0.416621 -0.00174501 0.1531 -0.988209 0.0018321 -0.491379 0.870944 0.000604851 -0.0516744 -0.998664 0.00119681 0.164121 0.98644 -0.000755413 -0.184962 0.982745 0.000391786 0.604494 -0.79661 -0.000426147 0.733323 -0.67988 -0.00140192 -0.9165 0.400033 -0.00012512 0.996181 -0.0873166 -0.000463365 0.590846 0.806784 0.00177993 0.625211 0.780454 -0.00652259 0.849473 -0.527593 -0.00365199 0.175317 0.984505 0.00527617 -0.545429 0.838141 -0.00256452 -0.323635 0.946179 0.00158667 0.56663 -0.823971 0.00248856 -0.702099 -0.712075 -0.00175476 -0.477068 -0.878865 -0.000945541 0.260694 -0.965421 0.000100349 0.999428 0.0338126 -2.24017e-05 0.997899 0.064784 0.000317254 -0.313604 0.949554 0.000145938 -0.884385 -0.466759 -0.00116806 0.284376 -0.958712 0.00045571 0.631859 -0.775083 0.00166972 -0.363357 -0.931648 -0.000491741 0.872829 -0.488025 -0.000103825 0.760046 0.64987 -0.000209551 -0.557042 0.830484 0.000124427 -0.722654 0.69121 6.19185e-05 -0.993107 0.117209 -0.00025499 -0.97517 -0.221459 -0.000102493 0.76044 0.649409 -0.000331711 -0.616532 -0.78733 2.52788e-05 0.343237 0.939249 -0.000267134 -0.922476 0.386055 -0.000678152 -0.0217511 -0.999763 0.000807659 0.46314 -0.886285 0.000824289 -0.676271 -0.736652 -0.000150618 -0.326303 -0.945265 0.000664018 0.107432 -0.994212 -0.000542617 0.156008 0.987756 0.000310373 0.988054 0.15411 0.000808291 0.179986 0.983669 0.000118415 0.547092 -0.837072 -0.000165111 0.870965 -0.491345 0.000161491 0.131222 -0.991353 0.000563821 0.826098 0.563526 0.00029042 -0.564773 0.825247 -0.000447252 -0.135522 0.990774 0.000199916 -0.536859 0.843672 -0.000448229 0.483395 0.875402 -0.00063919 0.318583 -0.947895 -0.000110015 -0.931244 0.364395 -0.00054614 -0.304832 -0.952406 0.000800786 -0.999051 -0.0435404 -0.000521586 -0.807862 -0.589371 0.000348647 0.805183 -0.593026 -0.000122466 0.983623 -0.180237 0.00051388 -0.881368 -0.472429 6.57974e-05 -0.921935 0.387345 0.00196128 0.292818 -0.956166 -0.001479 0.71132 -0.702867 -0.000610314 -0.309879 -0.950776 -0.00167013 0.973642 0.228074 0.00171777 0.916616 0.399764 -0.000599328 0.987428 -0.158067 0.000901136 0.555074 0.8318 0.000182017 -0.38152 -0.924361 -0.00223059 -0.0993431 0.995051 0.000752763 -0.321884 0.946779 -0.00368146 0.697 0.717062 0 -0.706788 0.707426 0 -0.706788 0.707426 0 -0.970707 0.240267 9.4235e-05 -0.924389 0.38145 0 -0.837703 0.546126 -0.000103513 -0.924389 0.38145 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.000736977 1 0.000338892 -0.000587304 0.999091 0.021302 0.0369167 0.998878 0.0395952 0.0259876 0.999009 0 0.0444983 1 0 0 0.999988 -0.00344882 0.0034342 0.998433 -0.054542 -0.0124868 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999986 -0.00373412 0.00373417 1 0 0 1 0 0 1 0 0 0.999974 -0.0072777 0 0.999975 -0.00616548 -0.0035573 0.999802 -0.0152235 0.0127971 0.99981 -0.0168857 0.00974257 0.999803 -0.0198458 0 0.997029 -0.0654976 0.0405423 0.996022 -0.0217992 -0.0864037 0.998296 0.0227954 -0.0537124 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.99927 -0.00934441 0.0370402 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.996941 -0.0781541 0 0.994681 0.00241325 0.102977 0.997614 -0.0597967 -0.034501 0.999998 -0.00165558 0.00095522 0.997266 -0.0367444 -0.0641137 0.999998 -0.00192918 0 1 0 0 1 0 0 0.999999 -0.000866321 -0.000868774 0.998229 -0.0576717 0.0145981 0.998808 0 -0.0488136 0.998876 0.0236931 -0.0410606 0.998246 -0.00739202 -0.0587373 0.99847 -0.027635 -0.0478919 0.998431 0 -0.0559938 0.998032 0.0609705 0.0146873 0.999945 0.0101803 -0.00256306 0.999972 0.00740434 0.00129385 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.307715 0.672792 0.672802 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999999 -0.00130613 -0.000328839 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999565 0 -0.0294881 0.999618 0.01382 -0.0239502 0.99925 -0.0193575 -0.0335507 0.999146 -0.0107323 -0.0398902 0.999067 0 -0.0431887 1 0 0 0.999426 0.0239106 -0.0239783 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.0210783 -0.706939 0.70696 1 0 0 1 0 0 1 0 0 1 0 0 0.999409 0.0343704 0 0.999247 0.0122509 0.036802 0.999992 -0.00352258 -0.00203223 0.999995 -0.00268207 0.00154733 0.999589 -0.00297601 -0.0285205 0.999913 0.013193 0 0.999758 0.00538021 0.0213266 0.999801 -0.0197619 0.00286062 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.99998 0.00551268 0.00318034 0.999989 0.00245582 -0.00402742 0.999989 0.00409228 -0.0023609 0.999994 0.00348224 0 0.99999 0.0042089 0.00148369 1 0 0 1 0 0 0.999996 0.00201311 0.00200458 0.999583 0.0269711 -0.0103448 0.999546 0 0.030123 0.99943 -0.0168774 0.0292522 0.998863 0.0244945 0.0409077 0.998862 0.0238395 0.0413142 0.998722 0 0.0505454 0.997454 -0.0695149 -0.0159088 0.999958 -0.00886628 0.00223224 0.999858 -0.0138176 0.00966621 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999998 -0.00148563 -0.00148567 1 0 0 1 0 0 1 0 0 0.999706 -0.0185417 0.0156049 0.999523 0.029954 0.00754144 0.999534 0.0282089 -0.0116404 0.999004 0.0167264 -0.0413579 0.999991 0.00413299 0 0.997945 0.0114828 0.0630405 0.998838 -0.0426694 -0.0223847 0.999841 -0.0163261 -0.00712031 0.999991 0 -0.004333 0.998279 0.0553433 -0.0194029 0.999282 -0.0370011 0.00809054 0.999999 -0.000433997 0.0013387 1 -0.000137737 5.76503e-05 1 -0.000136798 0 0.981052 -0.086827 -0.1732 0.991052 0.0959523 -0.0927819 0.961013 0.243053 0.13183 0.999999 0 -0.00144502 0.999999 0.000588714 -0.00143572 1 0 0 0.999061 0.0280549 -0.0330225 0.999396 0 -0.0347567 0.999451 -0.00421326 -0.0328685 0.999621 -0.0163397 -0.0221456 0.999716 -0.0238426 -0.000684719 0.999716 -0.023838 0 0.999729 -0.0191277 0.0132584 0.999378 0.0133823 0.0326345 0.999229 0 0.0392713 0.998974 -0.0052131 0.0449775 0.999716 0.0157189 -0.017905 0.999852 0.0171977 0 0.999851 0.0134753 -0.0107588 0.99997 0.00711245 0.00297694 1 0 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.706718 -0.707495 0 -0.706718 -0.707495 0 0 -1 0 0 -1 0 -0.499791 -0.866146 0 -0.499791 -0.866146 0 0.499748 -0.866171 0 0.499748 -0.866171 0 0 -1 0 0 -1 0 0.706721 -0.707492 0 0.706721 -0.707492 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0.000108805 -0.825675 -0.564146 0 -0.187159 -0.98233 0 -0.982737 -0.185006 -0.000567417 -0.406318 -0.913732 -0.000274149 -0.900201 -0.435474 0.000201544 -0.70182 -0.712354 -0.000288583 -0.817219 -0.576327 -1.83131e-06 -0.52924 -0.848472 -0.000186154 -0.345269 -0.938504 0.000195847 -0.447989 -0.894039 0.000290275 -0.896979 -0.442074 0.000328289 -0.497492 -0.867469 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.707687 0.706526 0 -0.707687 0.706526 0 -1 0 0 -1 0 0 -0.866189 0.499717 0 -0.866189 0.499717 0 -0.866189 -0.499717 0 -0.866189 -0.499717 0 -1 0 0 -1 0 0 -0.706733 -0.707481 0 -0.706733 -0.707481 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.707687 0.706526 0 -0.707687 0.706526 0 -1 0 0 -1 0 0 -0.866189 0.499717 0 -0.866189 0.499717 0 -0.866189 -0.499717 0 -0.866189 -0.499717 0 -1 0 0 -1 0 0 -0.706721 -0.707492 0 -0.706721 -0.707492 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 -0.00023336 -0.747598 0.664151 -4.44421e-05 -0.986115 0.166065 0.00099434 -0.185718 0.982603 0 -0.84013 0.542385 0.000104959 -0.817436 0.576019 0 -0.991555 0.129684 0.000653826 -0.467621 0.883929 0 -0.187325 0.982298 0.000236142 -0.817201 0.576353 8.44488e-05 -0.963781 0.266694 0.000183699 -0.379875 0.925038 0.000405313 -0.910589 0.413314 -0.000261728 -0.385003 0.922915 0 -0.494234 0.869329 -0.000145973 -0.799406 0.600791 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.707687 0.706526 0 0.707687 0.706526 0 0 1 0 0 1 0 0.499748 0.866171 0 0.499748 0.866171 0 -0.499791 0.866146 0 -0.499791 0.866146 0 0 1 0 0 1 0 -0.707684 0.706529 0 -0.707684 0.706529 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.707684 0.706529 0 0.707684 0.706529 0 0 1 0 0 1 0 0.499791 0.866146 0 0.499791 0.866146 0 -0.499791 0.866146 0 -0.499791 0.866146 0 0 1 0 0 1 0 -0.707684 0.706529 0 -0.707684 0.706529 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 -0.000982451 0.877586 0.479419 0.000261596 0.842329 0.538964 -0.000176669 0.415159 0.909749 0 0.161542 0.986866 0 0.982729 0.185053 -0.000211698 0.736805 0.676105 -0.000416201 0.366263 0.930511 -0.000111941 0.728123 0.685446 7.39849e-05 0.314625 0.949216 -0.000125754 0.847122 0.531399 -3.30369e-06 0.655207 0.75545 -9.517e-05 0.958306 0.285744 0.000197853 0.909467 0.415775 -1.44092e-05 0.932478 0.361228 0.000459016 0.449744 0.893158 -0.000357019 0.603129 0.797643 0.000743706 0.451705 0.892167 0.00010439 0.315472 0.948935 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.706718 -0.707495 0 0.706718 -0.707495 0 1 0 0 1 0 0 0.866167 -0.499754 0 0.866167 -0.499754 0 0.866167 0.499754 0 0.866167 0.499754 0 1 0 0 1 0 0 0.707684 0.706529 0 0.707684 0.706529 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.70673 -0.707484 0 0.70673 -0.707484 0 1 0 0 1 0 0 0.866167 -0.499754 0 0.866167 -0.499754 0 0.866167 0.499754 0 0.866167 0.499754 0 1 0 0 1 0 0 0.707684 0.706529 0 0.707684 0.706529 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 6.46601e-05 0.463103 -0.886304 -0.000189151 0.737567 -0.675274 -0.000421846 0.765184 -0.643811 0 0.982745 -0.184965 0 0.161542 -0.986866 -0.000103473 0.839276 -0.543706 -0.00021436 0.411452 -0.911431 -0.000426706 0.978693 -0.20533 0.000496665 0.481015 -0.876712 -0.000179529 0.403713 -0.914886 0.000130981 0.365412 -0.930846 -0.000115924 0.466804 -0.884361 -5.33258e-05 0.82966 -0.558269 0.000459058 0.811981 -0.583684 0.000164839 0.945022 -0.327007 -0.000265593 0.899607 -0.436701 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.706718 -0.707495 0 -0.706718 -0.707495 0 0 -1 0 0 -1 0 -0.499791 -0.866146 0 -0.499791 -0.866146 0 0.499791 -0.866146 0 0.499791 -0.866146 0 0 -1 0 0 -1 0 0.706718 -0.707495 0 0.706718 -0.707495 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.997985 0 0.0634557 -0.999112 -0.039652 -0.0142713 -0.995495 0.0473886 0.0821252 -0.997307 -0.0366488 0.0635202 -0.997985 0 0.0634557 -1 0 0 -0.999705 0.0172173 0.0171443 -0.999378 0.0334874 0.0110472 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.995358 -0.0680533 -0.0680554 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999444 0.0333525 0 -0.999515 0.0269773 -0.0155636 -0.999412 0.0182675 -0.0290086 -0.999996 0.00241201 0.00139152 -0.999996 0.00279322 0 -0.999358 0.0287702 0.0213623 -0.998651 0.0127037 -0.0503525 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999768 0.00527313 0.0209021 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999976 0.00691183 0 -0.999952 0.00920848 -0.00331972 -0.999974 0.00624193 -0.00360106 -0.999981 0.00594579 -0.00189725 -0.999973 0.00641123 0.00369873 -0.999872 0.0160291 0 -0.999868 0.0085873 0.013822 -1 0 0 -1 0 0 -0.999889 0.010505 -0.0105348 -0.999839 0 -0.0179576 -0.999813 0.0025195 -0.0191736 -0.999773 -0.0106378 -0.0184376 -0.99966 0.00965046 -0.0242431 -0.999668 0.0128844 -0.0223288 -0.999639 0 -0.0268539 -0.999702 -0.0243739 -0.00121679 -0.999856 -0.0164811 -0.00414941 -0.999733 0.00369876 0.0228127 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.997916 -0.0456298 0.0456311 -0.987639 -0.096128 0.123805 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.99978 0.0203621 -0.00512651 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.994322 0 -0.106416 -0.993763 -0.0557328 -0.0965858 -0.983246 0.091103 -0.157883 -0.999743 0 -0.0226804 -0.995269 -0.0726116 -0.0645529 -1 0 0 -0.999743 -0.0159938 -0.0160391 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999951 -0.00697222 -0.00697233 -1 0 0 -1 0 0 -1 0 0 -0.999556 -0.0298103 0 -0.999228 -0.0133429 0.0369565 -0.999957 0.00803926 -0.00463843 -0.999981 0.00531925 0.00306906 -0.999984 0.00565545 0 -0.999147 -0.0322555 -0.0257991 -0.999503 -0.00771321 0.0305743 -0.999361 0.0356265 -0.00306394 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.998234 -0.0145343 -0.0576081 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999607 0.0280375 0 -0.997529 -0.0568533 0.041265 -0.999168 0.0353188 -0.020378 -0.999427 0.029317 0.0169151 -0.999607 0.0280375 0 -1 0 0 -1 0 0 -0.999747 -0.0159392 0.0158716 -0.999007 0 0.0445561 -0.998524 0.0271456 0.0470437 -0.99794 -0.0320605 0.0555614 -0.999007 0 0.0445561 -0.999766 0.0216414 0.00013831 -0.999932 0.0113319 0.00285299 -0.999967 0.0075088 -0.00309851 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.997658 0.0483619 -0.0483627 -1 0 0 -1 0 0 -1 0 0 -0.9993 -0.0234985 -0.0291165 -0.999135 0.0374468 -0.0180998 -0.999998 0.000688882 -0.0016232 -0.999999 0 -0.00142677 -0.99999 -0.00405444 -0.00202111 -0.999988 0.00208309 0.00454519 -0.999999 0.00142463 0 -0.999968 0.00348192 -0.00722487 -0.999819 -0.00721412 0.0175933 -0.999761 0 0.0218557 -0.999832 -0.0183097 -0.000498705 -0.999265 0.0382006 0.00329154 -0.999071 -0.0125179 -0.0412357 -1 -0.000876792 0 -0.999995 -0.000305402 -0.00311373 -1 0.000824148 -0.000344951 -0.999859 -0.0164635 -0.00319017 -1 0.000589092 -0.000148314 -1 0.000563477 0.000232519 -1 0.000644656 0 -0.999791 -0.0135786 0.015255 -0.998947 -0.0183599 0.0420381 -0.999021 0.0320945 -0.0304547 -0.999879 -0.0128957 -0.00865902 -0.999944 0 -0.0105661 -0.999657 0.0259314 -0.00358224 -1 0 0 -0.996816 -0.079303 -0.00831643 -0.996133 0.0866403 0.0145833 -0.999798 0.00337058 0.0198331 -1 0.000247266 0.000103494 -1 0.000254999 0 -0.986272 0.0868515 -0.140441 -0.995001 0.0067409 -0.0996348 -0.98751 -0.141793 0.0686911 -0.999263 0 0.0383804 -0.997552 -0.0657306 0.0238765 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 0 -0.254296 0.967126 0 -0.5494 0.83556 -0.000105326 -0.39054 0.920586 8.73279e-05 -0.39054 0.920586 0 0.254296 0.967126 -5.04832e-05 0.39054 0.920586 0 0.5494 0.83556 8.96292e-05 0.39054 0.920586 -0.000119865 0.36116 0.932504 3.98169e-05 -0.308025 -0.951378 0 0.706788 0.707426 0 0.706788 0.707426 0.9999 -0.0130957 -0.00540396 9.07186e-05 0.924389 0.38145 0 0.972633 0.232346 0 0.843732 0.536766 -0.000108263 0.924389 0.38145 0 1 0 0 1 0 -0.000341624 0.96615 0.257981 -1.77196e-05 0.184995 0.98274 0 0.983066 0.183251 1.80025e-05 0.185715 0.982604 0 0.171824 0.985128 0 0.984996 0.172578 -0.000297257 0.647595 0.761985 0.000306025 0.86052 0.509416 0 0.845688 0.533678 -2.28197e-05 0.981202 0.192982 9.24089e-05 0.855268 0.518186 0.000420835 0.680007 0.733205 0.000163714 0.962418 0.271572 0.000214368 0.83466 0.550765 -0.000178933 0.843457 0.537197 0.000163779 0.550787 0.834646 -7.71575e-05 0.512989 0.858395 -0.000136252 0.522524 0.852624 0 0 1 0 0 1 0 0.254554 0.967058 8.33481e-05 0.390657 0.920536 0 0.54936 0.835586 -0.00011153 0.390657 0.920536 0 0.70678 0.707433 0 0.70678 0.707433 0 0.837806 0.545968 -0.000100088 0.924376 0.381483 0 0.970675 0.240396 9.70924e-05 0.924376 0.381483 1 0 0 0 1 0 0 1 0 0 0.969623 -0.244604 -0.000622306 -0.922443 0.386132 8.81753e-05 0.922444 -0.386132 0 0.80482 -0.59352 0 -0.80482 0.593519 -0.000141297 0.922444 -0.386132 0 0.969623 -0.244604 0.000684596 0.922443 -0.386132 0 0.80482 -0.593519 0 0.707433 -0.70678 0 0.707433 -0.70678 2.29037e-05 -0.288805 0.957388 -9.31229e-05 0.335253 -0.942128 0 0.244637 -0.969615 0.000108751 0.379392 -0.925236 -3.00878e-05 0.379392 -0.925236 0 0.511459 -0.859308 0 0 -1 0 0 -1 -4.15349e-05 0.194208 -0.98096 0.000132135 0.823208 -0.56774 -0.000297535 0.549952 -0.835196 0.00143721 0.897179 -0.441665 0 0.987652 -0.156666 0.000291515 0.473729 -0.880671 0 0.154044 -0.988064 -0.000360188 0.950389 -0.311063 0.000270535 0.552008 -0.833839 -0.000737407 0.381796 -0.924247 5.56683e-05 0.551924 -0.833895 -0.000396905 0.82895 -0.559323 -0.000133663 0.545172 -0.838324 -0.000251387 0.84556 -0.53388 3.23851e-05 0.981601 -0.190942 4.44838e-05 0.198736 -0.980053 -0.000391558 0.496457 -0.868061 0.000334315 0.301447 -0.953483 0.000529609 0.817137 -0.576443 0.000643895 0.812807 -0.582533 0.000320132 0.8471 -0.531433 -5.03245e-05 0.979218 -0.20281 0 1 0 0 1 0 0 0.969129 -0.246553 -0.000102487 0.922458 -0.386098 0.000112229 0.922458 -0.386098 0 0.806536 -0.591186 0 0.707425 -0.706788 0 0.707425 -0.706788 0 0.534461 -0.845193 -0.000110385 0.379539 -0.925176 0 0.191319 -0.981528 0.00010966 0.379539 -0.925176 0 0 -1 0 0 -1 0 -0.132772 -0.991147 0 -0.232702 -0.972548 0 -0.522442 -0.852675 0.00032357 -0.379539 -0.925176 6.39349e-05 -0.265923 -0.963994 -4.75841e-05 -0.57563 -0.81771 0 -0.232702 -0.972548 -0.00011575 -0.379539 -0.925176 0 -0.5494 -0.83556 0 -0.707425 -0.706788 0 -0.707425 -0.706788 0 -0.81673 -0.577021 0 -0.969942 -0.243335 0.000151929 -0.922458 -0.386098 -8.05381e-05 -0.922458 -0.386098 0 -1 0 0 -1 0 0.000188176 -0.477062 -0.87887 0.000295111 -0.841354 -0.540484 -0.000387236 -0.458793 -0.888543 4.39137e-05 -0.20339 -0.979098 0 -0.154051 -0.988063 0 -0.987772 -0.155904 -0.000237596 -0.352862 -0.935675 -8.44424e-05 -0.968176 -0.250269 0.00036564 -0.846533 -0.532336 -2.41568e-05 -0.523431 -0.852068 0.000213721 -0.282269 -0.959335 -0.000208799 -0.484955 -0.874539 -0.00041868 -0.940553 -0.339648 0.000189372 -0.948792 -0.315901 5.7288e-05 -0.868348 -0.495956 -0.000511584 -0.845783 -0.533527 -7.25321e-05 -0.526188 -0.850368 0.000628841 -0.346836 -0.937925 0 0 -1 0 0 -1 0 -0.232717 -0.972544 -9.86081e-05 -0.379406 -0.92523 0 -0.549119 -0.835744 0.000104794 -0.379406 -0.92523 0 -0.707433 -0.70678 0 -0.707433 -0.70678 0 -0.978227 -0.207538 -0.000111582 -0.922458 -0.386098 0 -0.856505 -0.516138 8.52466e-05 -0.922458 -0.386098 0 -1 0 0 -1 0 0 -0.924389 0.38145 0 -0.924389 0.38145 0 -0.70678 0.707433 0 -0.70678 0.707433 -0.000110128 -0.390671 0.92053 8.41362e-05 -0.390671 0.92053 0 -0.254571 0.967054 0 -0.54936 0.835586 0 0 1 0 0 1 0.000340849 -0.515658 0.856795 -0.000553473 -0.799624 0.600501 0.000251543 -0.968131 0.250443 0 -0.987962 0.154694 0 -0.154051 0.988063 0 -0.526108 0.850418 2.48323e-07 -0.526147 0.850394 1.6798e-07 -0.817975 0.575254 -3.9532e-05 -0.981649 0.190697 0.000308421 -0.863559 0.504247 -3.65617e-05 -0.19734 0.980335 0.000289023 -0.480461 0.877016 -0.00029341 -0.859961 0.510359 3.54888e-05 -0.981399 0.191982 -2.05905e-05 -0.821056 0.570848 2.86778e-05 -0.456457 0.889745 0.000366669 -0.654254 0.756275 -0.00107725 -0.359949 0.932971 0 -0.182794 0.983151 5.4691e-05 -0.197128 0.980378 -0.000376034 -0.53106 0.847334 0.000925744 -0.81463 0.57998 -0.000642552 -0.948464 0.316884 0 -1 0 0 -1 0 0.00202897 -0.36438 -0.931248 0.000257255 0.999999 0.00150984 0.000465665 0.684553 -0.728963 0.000113548 -0.800111 0.599851 -0.00212475 0.0764009 -0.997075 -0.000808876 -0.987194 0.159523 0.000333996 -0.980539 -0.196324 0.000239613 -0.220472 0.975393 0.00145882 0.138751 -0.990326 0.000378905 -0.507387 -0.861718 0.000191098 0.434347 0.900746 -3.32451e-05 0.99628 -0.0861773 -0.000203719 0.745918 -0.666038 -0.000539827 -0.860017 -0.510264 -0.000633042 -0.247647 -0.96885 -0.000338798 0.0616283 0.998099 -0.000341612 -0.531733 0.846912 0.000165623 -0.804882 0.593436 0.000509302 0.80148 -0.598022 7.31243e-05 0.799043 0.601274 -0.000160327 0.642411 0.76636 -0.000662229 0.362525 -0.931974 0.000729424 -0.307841 -0.951438 -0.000397131 0.946975 0.321308 0.00081218 -0.833984 -0.551788 -0.000435118 0.380692 -0.924702 0.00144739 0.405347 -0.914162 -0.000170644 -0.953916 0.300075 0.000202014 -0.997608 0.0691264 9.29836e-05 0.634733 0.772732 0.000648068 -0.309911 -0.950765 -0.000428239 0.134722 -0.990883 0.000139714 0.822672 -0.568516 -0.000118577 0.996459 -0.0840746 -0.000669084 0.0590612 0.998254 0.000406418 0.95058 -0.310481 0.00121701 0.297099 0.954846 -0.000311867 -0.967505 -0.252851 0.000311383 0.929052 0.369949 -0.000422705 0.752663 0.658406 -0.000161316 -0.234577 0.972098 0.000757376 -0.632633 0.774451 -8.27472e-05 0.985788 0.167996 0 -0.770638 -0.637273 -0.00015927 -0.732687 -0.680565 0.00035616 -0.367275 -0.930112 0 -0.979515 -0.201372 -0.000242809 0.647651 -0.761937 0.000498993 -0.963161 0.268926 0.000552764 0.294362 0.955694 0.000175351 -0.240417 0.97067 0.000512526 0.987173 0.159651 0.000822254 -0.62996 0.776627 0.000401351 0.123834 -0.992303 -0.00165437 0.744304 0.667839 -0.000862041 -0.384088 0.923296 -0.00030052 -0.0180839 -0.999836 -0.000278822 0.983139 -0.182857 0.000145457 -0.708304 -0.705907 -0.00218278 0.709027 0.705178 4.73181e-05 0.692533 -0.721387 -0.000713687 -0.993592 0.113026 0.00100343 -0.9776 -0.210471 0.0119235 0.612594 -0.790307 0.00350363 -0.373366 0.927677 0.000345982 -0.968644 0.248453 0.00102508 0.553491 0.832855 0.000482061 0.99594 0.0900221 -0.000586912 0.934083 0.357056 4.9653e-05 0.640279 0.768143 -0.000224108 0.994865 -0.101211 2.00844e-05 -0.986278 0.165096 9.50093e-05 -0.530661 -0.847584 0.000173776 -0.178517 0.983937 -0.000886512 0.138667 0.990339 -0.000191428 -0.96154 -0.274666 0.000109541 -0.882708 -0.469922 -0.000105404 -0.382929 -0.923778 2.84092e-05 -0.0912048 -0.995832 8.80521e-05 0.751191 -0.660084 -0.000273544 0.945904 -0.324447 6.88246e-05 -0.59688 0.80233 -0.000219614 -0.84545 0.534055 -0.000209408 -0.740728 -0.671805 4.67099e-06 0.393496 -0.919326 -0.000208863 0.588774 -0.808298 -0.000401799 0.0926569 -0.995698 -0.000182592 0.627574 0.778557 0.000343389 0.536435 0.843942 0.00011869 0.0542626 0.998527 0.000342217 0.944247 0.329237 -0.000366858 -0.461027 0.887386 0.000376407 0.0922141 0.995739 -0.000245139 0.993833 0.110886 7.40607e-05 0.99552 -0.0945559 -0.000393594 -0.459235 0.888315 0.000151824 0.625064 -0.780574 -0.000144275 0.917917 -0.396771 -9.96732e-05 0.838013 0.54565 8.92926e-05 -0.987099 0.160113 -0.000235997 -0.371968 -0.928246 0.000207733 0.114294 -0.993447 -0.000143285 0.161877 -0.986811 0.000167042 -0.421317 0.906913 8.04407e-05 -0.838333 0.545158 0.000355351 -0.386265 0.922388 -0.000186693 -0.748578 0.663047 0.00021998 -0.748776 -0.662823 -0.000591476 -0.429215 -0.903202 -0.00045653 0.0811283 0.996704 0.000161544 0.533533 0.845779 -0.000150729 0.0513933 0.998679 -5.44536e-05 -0.995124 0.0986287 0.000152113 -0.951617 -0.307286 -0.000311315 -0.840912 -0.541171 -0.00359485 0.758763 -0.651357 0.000459444 0.999053 0.0435038 0.00020392 0.845295 0.5343 -5.33817e-05 0.590236 0.807231 0.000906558 -0.491554 -0.870847 0.00159223 0.799 -0.601329 -0.00110204 0.956367 -0.292166 -0.000654672 0.00283554 0.999996 -9.41917e-05 0.915477 0.40237 0.00267248 -0.171263 0.985222 -0.00067145 -0.814227 -0.580547 -0.000959265 0.06825 -0.997668 -0.000207476 0.16076 -0.986994 -0.000848876 0.520279 0.853996 0.000296003 0.95163 0.307248 0.00390932 0.915943 -0.401291 0.00082535 -0.493405 0.869799 0.000296535 0.97519 -0.221369 -0.000790333 0.450485 0.892783 -0.000484161 0.742113 0.670274 0.000532901 0.336952 0.941522 -0.00122912 -0.315256 0.949006 -0.000232416 -0.12049 -0.992714 -0.000516541 -0.692046 0.721853 7.7071e-05 -0.927387 0.374104 -0.00158404 -0.696904 -0.717162 -2.15413e-05 0.986342 0.164707 0.0001438 -0.980994 -0.194041 0 0.956153 -0.292868 0.000106284 0.464282 -0.885687 -8.01856e-05 0.778641 -0.62747 0 0.760394 -0.649463 -0.000333126 -0.994321 0.106423 0.000451495 0.335261 0.942125 -0.000430893 -0.705788 0.708423 0.000237298 -0.587219 -0.809428 -0.000166188 0.775784 0.630998 0.000465866 -0.264217 0.964463 0.000125504 0.397019 0.917811 -0.000196497 -0.077713 0.996976 0.000183338 -0.570017 -0.821633 -1.1499e-05 -0.143057 -0.989715 -0.000197149 0.334154 -0.942518 0.000163637 -0.0781012 -0.996945 -0.000290015 -0.872563 -0.488502 0.000541466 -0.69958 0.714554 -0.000234976 0.989614 0.143747 7.29091e-05 0.953591 -0.301104 8.26526e-05 -0.870398 -0.492348 -8.05984e-05 -0.570136 -0.82155 0.000376926 -0.0791552 0.996862 -0.000390477 0.384936 0.922943 -3.94128e-05 -0.995983 0.0895448 0.000124759 -0.867741 -0.497016 0.000107115 -0.992003 0.126211 0.000186895 0.754045 -0.656823 -0.000466305 -0.324424 0.945912 0.000181023 -0.747815 0.663908 1.87727e-05 0.323684 -0.946165 -0.000600956 0.528874 -0.8487 0.000299776 0.761482 0.648186 -0.000888688 -0.0719968 -0.997404 -8.49895e-05 0.923608 -0.383338 -0.000718387 0.437795 0.899075 0.00142188 0.456057 0.889949 0.00164748 0.592624 -0.805478 0.000484844 -0.631454 -0.775414 -0.000149491 0.0216636 -0.999765 -0.000586887 0.0668366 -0.997764 0.000373099 0.999997 -0.00243229 -0.000111123 -0.708651 0.705559 -0.000145987 0.885625 0.464402 -0.00166081 0.938488 -0.345309 -0.00155358 0.934842 -0.355061 -0.000388677 -0.81593 -0.57815 -0.00104187 0.816231 0.577724 0.000809859 -0.298793 0.954318 -0.00104989 0.054209 0.998529 0.00349478 0.0754293 -0.997145 -0.000143036 0.733508 0.679681 0.00228434 0.566969 0.823736 0.00300039 -0.704919 0.709281 0.00142677 -0.628263 0.778 -0.000312368 -0.212551 -0.97715 -0.00104688 -0.920868 0.389874 0.00106919 -0.876599 -0.48122 0.000940533 0.975369 -0.220578 -0.000523961 0.290953 0.956737 -0.00104476 -0.284287 0.958739 -0.000598804 -0.715081 -0.699042 0.000317745 0.988212 -0.153088 -0.000448153 0.953256 0.302164 -0.00105428 -0.999556 -0.0297863 0.000159331 0.383074 -0.923718 -0.00062804 0.783277 -0.621673 0.000653015 0.758138 0.652093 0.000179134 -0.636405 0.771355 0.0006615 -0.231364 -0.972867 -0.000634685 0.215238 -0.976561 0.00255298 0.0436119 -0.999045 4.90961e-05 0.576394 0.817172 0.000266659 0.252695 0.967546 0.000116241 -0.995637 -0.0933091 0 0.742018 -0.67038 0.00023599 -0.940864 0.338784 -0.000237819 -0.996963 0.0778736 0.000437548 -0.749386 -0.662133 -0.000209718 -0.47879 -0.87793 -7.86166e-05 -0.83592 0.548852 0 0.973877 -0.227078 4.14645e-05 0.20935 0.977841 -7.26273e-05 -0.21288 0.977078 -0.000308534 -0.882845 -0.469665 -0.00080017 0.91957 0.392926 0 -0.19268 0.981262 0 -0.576405 0.817164 -0.000253728 0.576394 0.817172 -0.000489905 0.516034 0.856568 0.000134715 0.207362 0.978264 -5.63156e-05 0.399475 -0.916744 -0.000479634 0.691078 -0.72278 0.00048396 -0.516503 -0.856285 -0.000802742 0.0120699 -0.999927 0.000267906 0.931833 0.362887 -0.000727489 0.0234633 -0.999725 -0.000698353 -0.642192 0.766544 -0.00127887 -0.756996 0.653418 0.000696852 -0.9934 0.114696 -0.000393548 -0.140828 0.990034 -0.000727419 -0.042978 0.999076 -0.000151221 -0.997541 -0.0700837 0.000352037 -0.885185 -0.465239 0.000465194 -0.518215 -0.85525 0.000897577 0.626972 0.779041 -6.30668e-05 0.0217917 -0.999763 0.000445192 0.969871 -0.24362 0.000898593 -0.63411 0.773242 -0.000153332 -0.735342 -0.677697 -0.000785522 -0.0389529 0.999241 -2.44634e-05 0.0165378 -0.999863 2.03562e-05 0.664302 -0.747464 -0.000539564 0.746601 -0.665272 -2.82065e-05 0.950769 0.309901 0.000260302 -0.72518 0.688559 0.000153077 -0.981824 0.189795 0.000272156 0.0494582 0.998776 -0.00304534 0.122128 -0.99251 0.00715866 0.884255 -0.466949 -0.000519414 -1 8.93734e-05 -0.00161235 0.904922 0.425575 0.707041 -0.707172 0 0.707041 -0.707172 0 0.196235 -0.980557 0.000235787 0.382823 -0.923822 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0129715 0 -0.999916 -0.0135586 0.00782217 -0.999878 -0.0163131 -0.00941127 -0.999823 0.0377633 0 -0.999287 0.00886855 0.0614206 -0.998073 0 0 -1 0.0209031 -0.0209181 -0.999563 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0302108 -0.999544 -0.014164 -0.0220542 -0.999656 -0.0123818 -0.0214205 -0.999694 0.0100924 -0.017492 -0.999796 0 -0.0170166 -0.999855 -0.0137759 0.00536314 -0.999891 -0.00026106 -6.57472e-05 -1 -0.00195942 -0.00229301 -0.999995 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.00688948 -0.00173612 -0.999975 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0157566 -0.999876 0.00911347 -0.0012717 -0.999958 -0.00890656 -0.0154067 -0.999842 0.0123292 -0.0213687 -0.999696 0 -0.0157566 -0.999876 0 0 -1 0 0 -1 -0.0047007 -0.0047007 -0.999978 -0.00926744 0 -0.999957 -0.00762419 0.0043985 -0.999961 -0.00252217 0.0128204 -0.999915 0.00240618 0.00138816 -0.999996 0.00266832 0 -0.999996 -0.00618556 -0.00666687 -0.999959 0.000728138 0.0063613 -0.99998 -0.000432094 0.00171573 -0.999998 0.0030787 -0.000226878 -0.999995 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.137096 0.137094 -0.981025 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.000585535 0.00232501 -0.999997 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.00117029 0 -0.999999 -0.00758216 0.00437426 -0.999962 -0.00409851 -0.00935647 -0.999948 -0.00702231 -0.00405081 -0.999967 -0.0064725 0 -0.999979 0 0 -1 0.000230879 -0.000230879 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.000412913 -1 -0.000185558 -0.000321639 -1 -0.00334163 0.00196343 -0.999992 -0.00164635 0.00284816 -0.999995 0 0.00330669 -0.999995 0.00104457 0.00206761 -0.999997 0.00460887 0.00116142 -0.999989 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.00968662 0.00243954 -0.99995 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.00795557 -0.999968 -0.00505302 -2.3579e-05 -0.999987 0.00454479 0.00787775 -0.999959 -0.00609514 0.0105457 -0.999926 0 0.0185522 -0.999828 -0.0106705 0.0124898 -0.999865 0 0 -1 0 0 -1 0.0137314 0.0137412 -0.999811 0.0276834 0 -0.999617 0.0229763 -0.0132538 -0.999648 0.0334298 0.00446714 -0.999431 0.0276853 0.015972 -0.999489 0.0316943 0 -0.999498 -0.00598894 -0.029968 -0.999533 0.00063353 -0.00251596 -0.999997 -0.000393138 -0.00196445 -0.999998 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.00573257 -0.0106423 -0.999927 0.000860926 0.00341902 -0.999994 -0.0142415 -0.00752939 -0.99987 0.00222541 -0.0111201 -0.999936 0.0373838 -0.00147713 -0.9993 0.00918942 -0.0540848 -0.998494 0.00704157 0.00924937 -0.999932 -0.00184924 0 -0.999998 -0.00158533 0.000657041 -0.999999 0.0028673 0.00563219 -0.99998 -0.00713029 -0.0023288 -0.999972 0.00195556 -0.00471873 -0.999987 0 -0.00461945 -0.999989 -0.0895645 -0.0457725 -0.994929 0.00236208 0.102811 -0.994698 0.00314116 0 -0.999995 0.00346953 -0.000926187 -0.999994 0.00340617 -0.00141163 -0.999993 0.00336856 -0.00107367 -0.999994 0.00387369 0.00502255 -0.99998 -0.00848642 -0.00169791 -0.999963 0.0179954 -0.0311729 -0.999352 0.025433 0.0114295 -0.999611 0.012048 0.0307159 -0.999456 -0.0347318 0.0373702 -0.998698 0.005404 0.00108122 -0.999985 0.0721637 -0.0560204 -0.995818 0.076423 -0.0252306 -0.996756 -0.0210363 0.098456 -0.994919 -0.161586 0.104837 -0.981274 -0.00543584 -0.00442885 -0.999975 0 0 -1 0 0 -1 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.70711 -0.707104 0 -0.70711 -0.707104 0 -1 0 0 -1 0 0 -0.866189 -0.499717 0 -0.866189 -0.499717 0 -0.866214 0.499674 0 -0.866214 0.499674 0 -1 0 0 -1 0 0 -0.707107 0.707107 0 -0.707107 0.707107 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.478417 -0.878133 0 -0.524305 -0.851531 -0.000134078 -0.949203 -0.314663 0 -0.530647 -0.847593 -0.000200067 -0.984281 -0.176608 0.000689022 -0.954074 -0.299572 -4.10332e-05 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.707009 -0.707205 0 0.707009 -0.707205 0 0 -1 0 0 -1 0 0.500405 -0.865791 0 0.500405 -0.865791 0 -0.499717 -0.866189 0 -0.499717 -0.866189 0 0 -1 0 0 -1 0 -0.707101 -0.707113 0 -0.707101 -0.707113 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.707003 -0.70721 0 0.707003 -0.70721 0 0 -1 0 0 -1 0 0.500448 -0.865767 0 0.500448 -0.865767 0 -0.499717 -0.866189 0 -0.499717 -0.866189 0 0 -1 0 0 -1 0 -0.707101 -0.707113 0 -0.707101 -0.707113 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.889783 -0.456384 -0.000114288 0.368782 -0.929516 0.000170432 0.911221 -0.411918 0 0.707113 -0.707092 -0.0034167 0.432229 -0.901764 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707003 0.70721 0 0.707003 0.70721 0 1 0 0 1 0 0 0.866214 0.499674 0 0.866214 0.499674 0 0.866189 -0.499717 0 0.866189 -0.499717 0 1 0 0 1 0 0 0.707006 -0.707207 0 0.707006 -0.707207 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707006 0.707207 0 0.707006 0.707207 0 1 0 0 1 0 0 0.866189 0.499717 0 0.866189 0.499717 0 0.866189 -0.499717 0 0.866189 -0.499717 0 1 0 0 1 0 0 0.707006 -0.707207 0 0.707006 -0.707207 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.336287 0.941756 -0.00254325 0.941225 0.337781 0 0.903375 0.428852 0.00061294 0.625097 0.780547 0.00035022 0.399384 0.916784 -0.000216172 0.941637 0.336631 3.04799e-06 2.23322e-05 1 3.19032e-07 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707104 0.70711 0 -0.707104 0.70711 0 0 1 0 0 1 0 -0.499754 0.866167 0 -0.499754 0.866167 0 0.500485 0.865745 0 0.500485 0.865745 0 0 1 0 0 1 0 0.707006 0.707207 0 0.707006 0.707207 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707104 0.70711 0 -0.707104 0.70711 0 0 1 0 0 1 0 -0.499754 0.866167 0 -0.499754 0.866167 0 0.500442 0.86577 0 0.500442 0.86577 0 0 1 0 0 1 0 0.707012 0.707202 0 0.707012 0.707202 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.184714 0.982792 0 -0.978024 0.208495 0 -0.287664 0.957732 0.000229996 -0.690271 0.72355 -0.000763069 -0.701104 0.713059 0.000269606 -0.919176 0.393848 0.000427004 -0.89903 0.437887 -0.000632871 -0.444179 0.895938 -0.000603527 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.70711 -0.707104 0 -0.70711 -0.707104 0 -1 0 0 -1 0 0 -0.866189 -0.499717 0 -0.866189 -0.499717 0 -0.866189 0.499717 0 -0.866189 0.499717 0 -1 0 0 -1 0 0 -0.70711 0.707104 0 -0.70711 0.707104 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.00759102 0 0.999971 0.0058953 0.00340108 0.999977 0.00481213 -0.00277587 0.999985 0.00732477 0.00142749 0.999972 0.00580984 0 0.999983 0 0 1 0.00286613 0.00286819 0.999992 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.70708 -0.70708 0.00866816 0 0 1 0 0 1 0 0 1 0 0 1 0.00348451 0.00265591 0.99999 0 0.00982803 0.999952 -0.00711033 0.0123021 0.999899 0.00597679 0.0103599 0.999928 0 0.00982803 0.999952 -0.00496479 0.000894776 0.999987 -0.00444754 0.0011201 0.99999 -0.0268455 0.0302487 0.999182 -0.0127279 -0.0025465 0.999916 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.00385176 0.000970629 0.999992 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.00184169 0.999998 -3.24556e-05 0.00187029 0.999998 -0.00409757 0.00708872 0.999967 0.00378117 0.00345784 0.999987 0.00289453 0.00501726 0.999983 0 0.00520042 0.999986 0 0 1 0 0 1 -0.00584793 0.00584793 0.999966 -0.0111778 0 0.999938 -0.00895192 -0.0051639 0.999947 -0.0202014 0.0116545 0.999728 -0.00310262 -0.0104268 0.999941 0.00105019 0 0.999999 -0.00317297 0.00454888 0.999985 -0.000943899 -0.00374798 0.999993 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0206109 -0.0206103 0.999575 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.000792443 0.00314658 0.999995 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.00295027 0 0.999996 -0.00394679 -0.00598101 0.999974 0.00253443 0.00146215 0.999996 -0.00117875 0.000680038 0.999999 0.00112682 0.00414937 0.999991 -0.00146787 0 0.999999 0 0 1 -0.000761348 -0.000761348 0.999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 2.08962e-05 -4.22808e-05 1 0.366245 0.303687 0.879567 -2.34134e-05 0 1 -1.27619e-05 -2.71189e-05 1 0 0 1 0.00102572 -0.00143784 0.999998 0 0.000136988 1 -7.80419e-05 0.000135261 1 0.00480515 0.00135625 0.999988 0.00206456 0.0035713 0.999992 0 0.0048003 0.999988 -0.00604781 0.00152402 0.999981 0.00241085 -0.00810548 0.999964 0.00463617 0.000927592 0.999989 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.00407105 -0.00102528 0.999991 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.00337744 0.999994 0.00143392 -0.00248525 0.999996 -0.0219714 -0.0380107 0.999036 -0.0360935 -0.0344174 0.998756 0 -0.0385897 0.999255 0 0 1 0 0 1 0.00663467 -0.00663942 0.999956 0.0127999 0 0.999918 0.0472679 -0.0747364 0.996082 0.167964 0.0969008 0.981019 0.0833073 -0.0480612 0.995364 0.10037 0 0.99495 -0.0193958 0.115362 0.993134 0.00251698 0.00999577 0.999947 -0.00304115 0.00733884 0.999968 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.254225 0.254229 0.933133 0 0 1 0 0 1 0 0 1 0.025388 0.000216532 0.999678 -0.00278327 0.000367031 0.999996 0.00115164 0.0027313 0.999996 -0.0424429 -0.142589 0.988872 0.110824 -0.0361768 0.993181 -0.00887441 0.00260506 0.999957 0.00309594 -0.000408263 0.999995 0.0196026 0.0109056 0.999748 0.0167496 0.0963753 0.995204 -0.0530342 -0.0486913 0.997405 0.0061136 -0.0305587 0.999514 -0.0332445 -0.0231935 0.999178 0.0026309 0.00912735 0.999955 0.0405803 0.0442264 0.998197 0.0175848 -0.069835 0.997404 -0.0116332 -0.0581291 0.998241 -0.0590315 -0.0096345 0.99821 0.0517482 0.00731815 0.998633 -0.00422991 0.0536533 0.998551 0.000212686 -0.0149688 0.999888 0.00340573 0.000116749 0.999994 0 0 1 -0.00405176 0.00205836 0.99999 -0.100953 -0.0200704 0.994689 0.0323768 -0.104848 0.993961 0 0 1 0 0 1 1 0 0 1 0 0 0.836904 -0.547349 0 0.970411 -0.241461 0 0.923802 -0.38287 -0.000203927 0.923802 -0.38287 0.000202161 0.923802 0.38287 0 0.923802 0.38287 0 0.707041 0.707172 0 0.707041 0.707172 0 0.548656 0.836048 0 0.088075 0.996114 0 0.196235 0.980557 -0.000410719 0.196235 0.980557 0.000407162 0.957452 0.288593 -0.000142304 0.997378 0.0723674 0 0.0723398 0.99738 0 0.88895 0.458004 -0.000177976 0.254318 0.96712 -0.00104408 0.516664 0.856188 0.00078898 0.320824 0.947138 0.000920988 0.526735 0.850029 -0.000193091 0.966723 0.255826 0.000801414 0.905356 0.42465 -0.00164183 0.998618 0.0525588 0 0.980567 0.196185 0.000454635 0.892523 0.451001 0 0.980567 0.196185 -0.000451872 0.707107 0.707107 0 0.707107 0.707107 0 0.547389 0.836878 0 0.382416 0.92399 0.000202724 0.240911 0.970547 0 0.382416 0.92399 -0.000204495 0 1 0 0 1 0 -0.382884 0.923797 0 -0.382884 0.923797 0 -0.707107 0.707107 0 -0.707107 0.707107 0 -0.991417 0.130739 -0.000314389 -0.923808 0.382856 0 -1 0 0 -0.297233 0.954805 0.000452354 -0.3626 0.931945 -0.000451169 -0.100073 0.99498 0.000120328 -0.98281 0.184617 0 -0.432259 0.901749 -4.60394e-05 -0.796299 0.604904 -0.0006303 -0.374157 0.927365 0.00132446 -0.827645 0.561251 0.000253686 -0.947465 0.319858 0.000411261 -0.925447 0.378876 -0.000755397 0 1 0 -0.38285 0.92381 -0.000460341 -0.196174 0.980569 0 -0.707107 0.707107 0 -0.707107 0.707107 0 -0.83556 0.5494 0 -0.923802 0.38287 -0.000206912 -0.923802 0.38287 0.00020512 -0.970959 0.239244 0 -1 0 0 -1 0 0 -0.923802 -0.38287 0 -0.923802 -0.38287 0 -0.707107 -0.707107 0 -0.707107 -0.707107 0 -0.196174 -0.980569 0 -0.196174 -0.980569 0 -0.974718 -0.223439 0.000657695 -0.966653 -0.25609 -0.000849008 -0.997353 -0.0727055 0 -0.0720081 -0.997404 0 -0.852799 -0.522238 0.000807482 -0.559107 -0.829096 4.09734e-05 -0.462431 -0.886655 0.000587068 -0.246332 -0.969185 -0.000999414 -0.336023 -0.941848 0.00327348 -0.118963 -0.992899 0.000172643 -0.485858 -0.874038 -0.000415828 -0.860449 -0.509536 -0.00060969 -0.998615 -0.0526205 0 -0.980566 -0.196189 0.000454442 -0.892568 -0.450913 0 -0.980566 -0.196189 -0.000451681 -0.707107 -0.707107 0 -0.707107 -0.707107 0 -0.53399 -0.845491 0 -0.225776 -0.974179 0 -0.38285 -0.92381 -0.000273131 -0.223052 -0.974807 3.81389e-06 -0.225426 -0.97426 0 -0.38285 -0.92381 0.000189952 -0.538056 -0.842909 0 -0.610909 -0.791701 0.000123983 -0.19836 -0.980129 0 0 -1 0 0 -1 0 0.382383 -0.924004 0 0.382383 -0.924004 0 0.707107 -0.707107 0 0.707107 -0.707107 0 0.835586 -0.54936 0 0.991417 -0.130739 -0.00048019 0.923802 -0.38287 0.000205084 0.996204 -0.0870447 -0.000209322 1 0 0 0.190098 -0.981765 0.000958819 0.477758 -0.878492 -0.00048678 0.925843 -0.377908 0.00013767 0.384832 -0.922985 -0.00145606 0.947403 -0.320043 0.00050849 0.0570649 -0.99837 6.85666e-05 0.939063 -0.343746 0 0.259806 -0.965656 0.00292023 0.286714 -0.958015 -0.00172426 -0.998406 -0.0564267 -0.000966163 -0.549966 -0.835187 -0.000726012 -0.731446 0.681899 -0.000516028 0.368505 -0.929626 0.000146529 -0.626011 0.779814 0.000367505 -0.108347 0.994113 -0.000282834 0.988042 -0.154185 -0.000549806 0.884932 -0.465716 0.00197339 -0.943551 -0.331223 0.0018974 -0.934414 0.356179 0.00275453 -0.0794157 -0.996841 0.000703941 -0.498409 -0.866942 -0.000240162 0.60127 0.799046 -0.000523467 0.876043 0.482231 0.00168522 0.50864 0.860979 0.000321783 -0.936405 0.350914 -0.00207956 -0.907649 -0.419727 -0.00130365 -0.994222 -0.107346 0.000341155 -0.475981 0.879456 -0.000280096 0.0564178 0.998407 0.000176177 0.961905 -0.273346 -0.0046339 -0.888718 0.458454 -0.000726332 -0.818351 0.574718 -0.000103089 0.471801 0.881705 -0.000582815 0.391895 0.92001 -0.000188168 -0.0761255 0.997098 -0.000519556 0.416504 -0.909134 -0.000567765 -0.201267 -0.979536 -0.00010411 -0.996017 -0.0891624 0.000783512 0.976379 -0.216058 -0.00153499 0.660174 -0.751113 0.000661127 -0.65727 -0.753654 0.00177294 0.9117 0.410857 0.000237544 0.699003 -0.715117 0.00131409 -0.997514 -0.07047 0.000137198 -0.991921 -0.126852 -0.00101586 0.926537 0.376202 0.000622755 -0.458503 -0.888691 0.00178596 -0.704405 -0.709798 -0.000643259 -0.815649 0.578548 -0.000161267 0.650864 -0.759167 0.00650875 0.996039 -0.0888856 -0.00244903 -0.402317 -0.915499 -0.00134666 0.231392 0.97286 0.00156967 0.518871 0.854845 -0.00348056 0.983006 -0.183571 -0.000557938 -0.530737 -0.847531 -0.003033 -0.566905 0.823782 -0.00146901 -0.300687 0.953721 0.00214915 -0.754386 -0.656431 0.000929443 -0.977062 -0.212957 -0.000124866 0.839554 -0.543277 0.000555899 0.48179 -0.876287 -0.000288628 -0.0732737 -0.997312 0.000237038 0.683412 0.730033 3.56469e-05 0.97454 0.224214 4.94409e-05 -0.300687 0.953723 0 0.437836 -0.899055 -0.000142922 -0.68365 0.72981 0 0.215829 0.976431 0 -0.157629 -0.987498 0.000477336 -0.409263 -0.912416 -4.88112e-05 0.215829 0.976431 0 -0.979967 -0.199159 0 -0.300687 0.953723 0 0.68986 0.723943 0 -0.749879 -0.661574 0.00137225 0.759423 -0.650598 -0.000147114 -0.653189 -0.757195 0 -0.966692 -0.255944 -0.000258075 0.995271 0.097141 0.000337166 0.981972 -0.189025 -0.000647622 0.215814 0.976435 6.98523e-07 -0.924237 0.381819 0.000157608 -0.615523 0.788119 -0.000261777 -0.300687 0.953722 -0.00129711 -0.136387 -0.990656 0.000211994 -0.925894 0.377784 0.000171891 -0.653187 -0.757194 -0.0018848 -0.495412 0.868658 0.000502544 0.46303 0.886331 0.00454547 -0.878653 -0.477457 0.00215531 0.891153 -0.453693 -0.00293096 -0.999946 -0.0101204 -0.0023323 -0.626646 -0.779304 -0.000795774 0.191381 0.981516 -0.000275692 0.0440493 -0.999029 -0.000788466 -0.8917 -0.452627 0.00100263 0.803725 0.595001 -0.000373784 0.706046 -0.708166 -4.88725e-05 0.184004 -0.982925 0.000540837 -0.56399 0.825781 -0.000595668 -0.0169945 -0.999856 -0.000295756 0.857944 0.513743 7.33229e-05 -0.538323 -0.842738 0.000355988 -0.293046 0.956098 0.000647893 0.236991 -0.971512 4.84986e-05 0.353244 0.935531 0.000949448 0.999306 -0.0372469 0.000160399 0.979465 -0.201612 -0.000350535 -0.994382 0.105849 -0.000284996 -0.905813 0.423678 0.000606928 -0.586489 0.809957 -0.000456218 -0.886856 -0.462047 -1.0207e-05 -0.93589 -0.352293 0.000558828 0.42431 0.905516 -0.00139623 0.239084 -0.970999 -0.000327605 -0.078017 -0.996952 -0.000112642 0.700045 -0.714099 -0.00029244 0.112106 -0.993696 0.00038655 -0.618505 -0.785781 -5.1893e-05 -0.303092 0.952961 -0.000214184 -0.117669 0.993052 0.000875494 0.760248 0.649632 0.0011181 0.771672 -0.636021 0.000258786 -0.832572 -0.553904 0.00378089 0.803165 0.595756 0.000820114 -0.999521 -0.0309006 -0.00168878 -0.392327 0.919818 -0.00376789 -0.990824 0.135121 -0.00325244 0.604439 0.796651 0.000336849 0.812609 -0.582806 0.00200555 0.519919 -0.854215 -0.000347144 -0.919289 0.393583 0.000409781 -0.0702026 0.997532 0.00133745 0.999999 -0.0011826 -0.000452531 -0.233963 -0.972245 -0.00116893 -0.551696 0.834045 -9.72559e-05 -0.771661 -0.636029 0.00231678 -0.408012 -0.912975 0.00141995 0.572633 0.819812 -0.000492737 0.998388 0.0567627 0.000153128 -0.0436348 0.999048 0 0.0872265 -0.996188 0.000850363 0.700077 0.714067 0.00040863 -0.420824 -0.907142 0 0.736136 -0.676832 -0.00121761 0.166719 -0.986004 0 -0.536829 0.843691 0 -0.392987 -0.919544 -0.000250343 -0.80884 -0.588029 -8.64494e-06 0.0902491 0.995919 0.00071037 -0.926372 0.376608 0.000789912 -0.999097 -0.0424789 -0.000348518 0.703679 0.710518 -0.000859399 0.999969 -0.00785162 0.000918318 -0.757403 -0.652948 -0.00061043 -0.98139 -0.192023 0.000335722 0.95064 -0.310268 -0.00422305 -0.512017 0.858975 -0.00113063 0.0874496 0.996169 0.00056919 0.151514 -0.988455 -0.000417124 0.40097 -0.91609 0.0012396 -0.394733 -0.918796 -0.000290132 -0.984679 -0.174374 0.000584611 -0.941476 0.337079 -0.000633356 0.0339744 0.999423 -0.000143219 -0.541949 -0.840409 0.00190617 -0.833278 0.552852 0.00172742 0.707087 -0.707126 0 0.707087 -0.707126 0 0.382792 -0.923835 0 0.130737 -0.991417 -0.00031433 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.00451827 0 -0.99999 -0.00142843 0.000824123 -0.999999 -0.00278305 0.00335636 -0.999991 -0.000921286 -0.00053153 -0.999999 -0.000987564 0 -1 0 0 -1 -0.000398288 0.000398345 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0300385 0.0300384 -0.999097 0 0 -1 0 0 -1 0 0 -1 0.00243424 0.00101308 -0.999997 0 -0.0017575 -0.999998 -0.000869594 -0.00150605 -0.999999 0.00453437 -0.00435426 -0.99998 -0.00109748 -0.00435355 -0.99999 0.00160572 -0.00278091 -0.999995 0 -0.00333895 -0.999994 0.00768128 -0.0112088 -0.999908 -0.0231015 0.0040323 -0.999725 -0.000224604 -5.65654e-05 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.043884 -0.0110583 -0.998975 -0.00282553 0.0444206 -0.999009 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0591599 -0.998249 -0.0282091 -0.0487978 -0.99841 0.00254863 -0.00441738 -0.999987 -0.0440554 -0.0389344 -0.99827 0 -0.00570947 -0.999984 0 0 -1 0 0 -1 -0.00321804 -0.00321804 -0.99999 0.00274214 -0.016329 -0.999863 -0.0315172 0 -0.999503 -0.0575419 0.0331984 -0.997791 -0.0250271 -0.0144392 -0.999583 -0.0315172 0 -0.999503 0.0125766 0.0510274 -0.998618 0.000306532 -0.00121716 -0.999999 -4.52701e-05 0 -1 4.31167e-05 -8.7241e-05 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -2.50545e-05 -5.32407e-05 -1 0.00043798 0.00020567 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.00214925 0.0085341 -0.999961 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.00456365 0 -0.99999 -0.0329077 0.0189859 -0.999278 -0.0035688 -0.013519 -0.999902 -0.0121038 -0.00698242 -0.999902 -0.0157747 0 -0.999876 0 0 -1 -0.00809639 0.00809639 -0.999934 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0151915 -0.0151912 -0.999769 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0687178 -0.0121463 -0.997562 0 0.115788 -0.993274 0.0801973 0.139015 -0.987038 0.15419 0.145908 -0.977208 -0.0155778 0.02695 -0.999515 0 0.0347301 -0.999397 0.0386412 0.00973723 -0.999206 0.122697 0.11435 -0.985834 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0289401 0.00728841 -0.999555 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0055511 -0.999985 0.00922289 0.0169183 -0.999814 -0.00297561 -0.00515388 -0.999982 0.00829358 0.00340905 -0.99996 0.00134776 -0.00233442 -0.999996 0 -0.00289291 -0.999996 0 0 -1 0 0 -1 -0.00149312 -0.00149333 -0.999998 -0.00764513 0.0148467 -0.999861 0.0177389 0 -0.999843 0.0194191 -0.0112025 -0.999749 0.0207092 0.011948 -0.999714 0.0136698 -0.01635 -0.999773 0.00601338 0 -0.999982 0.00660081 0.000729209 -0.999978 0.00307087 -0.012194 -0.999921 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0226647 0.0226643 -0.999486 0 0 -1 0 0 -1 0 0 -1 0.0039596 -0.0128558 -0.99991 0.00047531 0.00188739 -0.999998 -0.00280241 0.000256055 -0.999996 -3.37821e-05 8.153e-05 -1 -0.00181377 -0.000258615 -0.999998 0.117571 -0.0329853 -0.992517 -0.0272154 -0.157057 -0.987215 0.000778964 0 -1 0.000449446 0.00130636 -0.999999 -0.000194574 8.06371e-05 -1 -0.00222293 0.00536416 -0.999983 -0.00508364 0.00232103 -0.999984 0 0.00042247 -1 -0.0141213 0.000641721 -0.9999 -0.00625437 0.00317818 -0.999975 0.00608236 0.0159304 -0.999855 -0.000609397 0 -1 -0.000634711 0.000263025 -1 0.0409291 -0.135288 -0.989961 -0.0218447 -0.00437032 -0.999752 -0.0499335 0.0185919 -0.99858 -0.0490491 0.00836092 -0.998761 0.0122842 -0.0356213 -0.99929 0.0490774 -0.0298573 -0.998349 -0.000674809 -0.00337293 -0.999994 -0.0116717 -0.00350535 -0.999926 0.0321732 -0.0113545 -0.999418 0.0167341 0.0069349 -0.999836 0.035334 0 -0.999376 0.0391336 -0.0251224 -0.998918 -0.0313081 0.0397706 -0.998718 0.00455153 0.0345186 -0.999394 -0.0345371 0.0171334 -0.999257 0 0 -1 0 0 -1 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707087 -0.707127 0 -0.707087 -0.707127 0 -1 0 0 -1 0 0 -0.866178 -0.499735 0 -0.866178 -0.499735 0 -0.866203 0.499692 0 -0.866203 0.499692 0 -1 0 0 -1 0 0 -0.707084 0.70713 0 -0.707084 0.70713 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.184637 -0.982807 0 -0.633336 -0.773876 -0.000492347 -0.325416 -0.945571 0.000284545 -0.251934 -0.967744 -0.000173111 -0.65336 -0.757047 0.00069982 -0.937354 -0.348379 7.85833e-05 -0.901234 -0.433332 -0.000371674 -0.926456 -0.376402 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.707083 -0.70713 0 0.707083 -0.70713 0 0 -1 0 0 -1 0 0.499996 -0.866028 0 0.499996 -0.866028 0 -0.500002 -0.866024 0 -0.500002 -0.866024 0 0 -1 0 0 -1 0 -0.707102 -0.707111 0 -0.707102 -0.707111 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.707006 -0.707207 0 0.707006 -0.707207 0 0 -1 0 0 -1 0 0.500437 -0.865773 0 0.500437 -0.865773 0 -0.499706 -0.866195 0 -0.499706 -0.866195 0 0 -1 0 0 -1 0 -0.707102 -0.707111 0 -0.707102 -0.707111 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.432108 -0.901822 0.000719588 0.184506 -0.982831 0 0.983103 -0.183054 0 0.911344 -0.411645 0.00066248 0.70681 -0.707403 -0.000495246 0.43883 -0.89857 -0.000483661 0.70681 -0.707403 0.0001941 0.887464 -0.460876 -0.000529294 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707006 0.707207 0 0.707006 0.707207 0 1 0 0 1 0 0 0.866203 0.499692 0 0.866203 0.499692 0 0.866178 -0.499735 0 0.866178 -0.499735 0 1 0 0 1 0 0 0.707009 -0.707205 0 0.707009 -0.707205 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707009 0.707205 0 0.707009 0.707205 0 1 0 0 1 0 0 0.866178 0.499735 0 0.866178 0.499735 0 0.866178 -0.499735 0 0.866178 -0.499735 0 1 0 0 1 0 0 0.707009 -0.707205 0 0.707009 -0.707205 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.983054 0.183317 0 0.919125 0.393965 0.000787806 0.571022 0.820935 -0.000128062 0.64826 0.761419 -0.000275554 0.391782 0.920057 0.00121305 0.867016 0.49828 0.000191192 0.905167 0.425055 -0.000565602 0.929995 0.367572 -0.000302124 2.16008e-05 1 -9.94519e-08 2.81846e-05 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707105 0.707108 0 -0.707105 0.707108 0 0 1 0 0 1 0 -0.499743 0.866174 0 -0.499743 0.866174 0 0.500475 0.865751 0 0.500475 0.865751 0 0 1 0 0 1 0 0.707009 0.707205 0 0.707009 0.707205 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707105 0.707108 0 -0.707105 0.707108 0 0 1 0 0 1 0 -0.500039 0.866003 0 -0.500039 0.866003 0 0.500033 0.866006 0 0.500033 0.866006 0 0 1 0 0 1 0 0.707086 0.707128 0 0.707086 0.707128 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.940724 0.339173 0 -0.370592 0.928795 0.000609423 -0.831688 0.555243 -0.000569152 -0.484338 0.874881 -0.0011098 -0.184595 0.982815 0 -0.917811 0.397016 0.00140327 -0.508666 0.860964 -4.67093e-05 -0.363346 0.931654 -0.000312586 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707087 -0.707127 0 -0.707087 -0.707127 0 -1 0 0 -1 0 0 -0.866178 -0.499735 0 -0.866178 -0.499735 0 -0.866178 0.499735 0 -0.866178 0.499735 0 -1 0 0 -1 0 0 -0.707087 0.707127 0 -0.707087 0.707127 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.00176129 0 0.999998 0.00138888 0.000801302 0.999999 0.00689183 -0.00397574 0.999968 0.00605588 -0.0058193 0.999965 0.00775681 0 0.99997 0 0 1 0.00346977 0.00347027 0.999988 0.00348372 0.00343454 0.999988 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.248284 -0.248279 0.936329 0 0 1 0 0 1 0 0 1 0 0 1 0 0.00665342 0.999978 -0.00328541 0.00530712 0.999981 -0.00302373 0.00523731 0.999982 0.00278256 0.00481951 0.999985 0.00491732 0.00511784 0.999975 0 0.00780311 0.99997 -0.0122687 0.00106473 0.999924 -0.00765078 0.00192681 0.999969 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0193598 0.00487848 0.999801 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0156558 0.999877 -0.00675716 0.0116901 0.999909 0.0148152 0.0256808 0.99956 0.0118088 0.026546 0.999578 0 0.0172177 0.999852 -0.0179552 0.0275773 0.999458 0 0 1 0 0 1 -0.0130496 0.0130496 0.99983 -0.0272707 0 0.999628 -0.0229054 -0.0132136 0.99965 -0.0454264 0.0262085 0.998624 -0.0106747 -0.023922 0.999657 0.000505743 0 1 -0.00104628 0.00180562 0.999998 -0.000452246 -0.00179575 0.999998 0.000756673 -0.00182593 0.999998 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0205967 -0.0205963 0.999576 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.00599669 0.0238113 0.999699 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.00833688 0 0.999965 0.00653088 0.00376795 0.999972 -0.0766435 0.0442189 0.996078 -0.0518124 0.0846155 0.995066 -0.0927245 0 0.995692 0 0 1 -0.0449773 -0.0449773 0.997975 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 2.21228e-05 -4.47625e-05 1 0.258193 0.173235 0.950435 -2.2044e-05 0 1 -1.23439e-05 -2.62308e-05 1 0 0 1 0.0620665 -0.0791857 0.994926 0 0.0263347 0.999653 -0.0157779 0.0273469 0.999502 0.0191201 0.0330752 0.99927 -0.0300257 0.0157278 0.999425 0 -0.00182591 0.999998 0.00258855 -0.000652291 0.999996 0.00176329 0.000352768 0.999998 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0556469 -0.0140144 0.998352 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.00232406 0.999997 0.00111931 -0.00193849 0.999997 0.00311158 0.00538894 0.999981 0.00972108 0.00306699 0.999948 0 0.00574923 0.999983 0 0 1 0 0 1 0.00349027 -0.00349077 0.999988 0.00728859 0.00129157 0.999973 0.0051061 0 0.999987 0.00544054 0.00313888 0.99998 0.00616795 -0.00355855 0.999975 0.0218143 -0.0560217 0.998191 0.0377653 0 0.999287 -0.0188664 0.0491606 0.998613 0.000545346 0.00216549 0.999997 0.0358088 0.029391 0.998926 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0222963 0.0222962 0.999503 0 0 1 0 0 1 0 0 1 -0.0112969 -0.0102513 0.999884 0.0304028 -0.0341297 0.998955 -0.0416687 0.00833653 0.999097 -0.0797292 -0.0218174 0.996578 0.0486834 0.017626 0.998659 0.0456791 0.0143815 0.998853 -0.0128369 0.00509141 0.999905 -0.00233061 0.0176737 0.999841 0.00741719 -0.00878796 0.999934 0.00638573 -0.000842025 0.999979 0.0418326 0.0524435 0.997747 -0.0223333 0.0174173 0.999599 -0.0407279 -0.0364556 0.998505 0 -0.00201518 0.999998 0.011343 0.011011 0.999875 0.00460202 -0.018274 0.999822 -0.0258749 -0.00386713 0.999658 0.00112199 0.0056081 0.999984 0.0518058 0.0020043 0.998655 9.82889e-05 0.0786783 0.9969 0.00518142 -0.0100861 0.999936 -0.00665873 -0.000878045 0.999977 -0.0156806 -0.0280619 0.999483 0.00431935 0.0215904 0.999758 0.031525 -0.00048115 0.999503 -0.0356578 -0.0106576 0.999307 -0.00410589 -0.037736 0.999279 -0.00706295 0.00686438 0.999952 0 0 1 1 0 0 1 0 0 0.836123 -0.548542 0 0.923857 -0.382737 -0.000205817 0.923857 -0.382737 0.000204034 0.970794 -0.239913 0 0.923857 0.382737 0 0.923857 0.382737 0 0.707087 0.707126 0 0.707087 0.707126 0 0.547874 0.836561 0 0.196178 0.980568 0.000406855 0.196178 0.980568 -0.00041041 0.0880861 0.996113 0 0.0723639 0.997378 0 0.939189 0.343399 -0.000325014 0.477131 0.878832 0.00038365 0.321138 0.947032 0.000921769 0.484477 0.874804 4.84186e-05 0.27079 0.962638 -0.00113879 0.94303 0.332709 -0.000400019 0.962241 0.272198 0.000251086 0.980569 0.196176 -0.000235864 0.991418 0.130732 0 0.707042 0.707172 0 0.707042 0.707172 0 0.548676 0.836035 0 0.240923 0.970544 0 0.382873 0.923801 -0.000205142 0.382873 0.923801 0.000203365 0 1 0 0 1 0 -0.38287 0.923802 0 -0.38287 0.923802 0 -0.707106 0.707107 0 -0.707106 0.707107 0 -0.835615 0.549315 0 -0.991418 0.130729 -0.00048013 -0.923818 0.382831 0.000205063 -0.996204 0.0870436 -0.000209315 -1 0 0 -0.949777 0.312926 -0.000650054 -0.191408 0.981511 0 -0.981491 0.191511 0 -0.897571 0.44087 0.000569822 -0.479578 0.877499 0.000658837 -0.706065 0.708147 -0.000155158 -0.394685 0.918817 -0.000266478 0 1 0 0 1 0 -0.0223446 0.99975 0 -0.249684 0.968327 3.17178e-05 -0.382833 0.923817 -0.000208484 -0.538038 0.842921 0 -0.225414 0.974263 0 -0.250008 0.968244 -3.20406e-05 -0.225414 0.974263 0 -0.382833 0.923817 0.000231095 -0.538038 0.842921 0 -0.707107 0.707107 0 -0.707107 0.707107 0 -0.835599 0.54934 0 -0.923809 0.382853 -0.000206843 -0.923809 0.382853 0.000205052 -0.970951 0.239277 0 -1 0 0 -1 0 0 -0.923809 -0.382853 0 -0.923809 -0.382853 0 -0.707107 -0.707107 0 -0.707107 -0.707107 0 -0.130726 -0.991419 0.000157182 -0.196172 -0.98057 0 -0.935506 -0.353311 0.000392282 -0.129126 -0.991628 0.000155259 -0.514537 -0.857468 1.2348e-06 -0.598841 -0.800867 0.000900596 -0.325756 -0.945453 0.00159046 -0.301105 -0.953591 -0.000222443 -0.904925 -0.425572 -0.000350136 -0.970716 -0.240232 0.000288845 -1 0 0 -0.996358 -0.0852687 -0.000102528 -0.923813 -0.382845 0.000127412 -0.892557 -0.450935 0 -0.980569 -0.196175 -0.000451751 -0.707106 -0.707107 0 -0.707106 -0.707107 0 -0.382837 -0.923816 0 -0.382837 -0.923816 0 0 -1 0 0 -1 0 0.38284 -0.923815 0 0.38284 -0.923815 0 0.707042 -0.707172 0 0.707042 -0.707172 0 0.83694 -0.547295 0 0.980568 -0.196179 -0.00041012 0.923809 -0.382853 0.000202122 0.991622 -0.129175 -0.000155321 1 0 0 0.355532 -0.934664 -0.000256562 0.491112 -0.871096 0.00102855 0.196136 -0.980576 -0.00102128 0.105155 -0.994456 -0.000252823 0.972436 -0.23317 0.000280354 0.857949 -0.513735 -0.000790113 0.52703 -0.849846 0.000266268 0.917015 -0.398854 2.51363e-05 -0.986894 -0.161286 0.00524441 0.999964 -0.00836957 -0.00164608 -0.423101 0.906082 -0.000985574 -0.572827 -0.819676 -0.00073851 -0.141219 0.989978 0.00106065 0.410983 -0.911643 -0.000834698 -0.117903 -0.993023 0.00205296 -0.998344 0.0575325 -0.000140496 -0.997263 0.0739345 -0.000330386 0.463329 0.886186 -0.000744809 0.525477 0.850808 -7.65546e-05 -0.568549 -0.822649 -0.00083717 -0.873874 -0.486151 0.00125438 0.17522 -0.984528 -0.00160176 -0.379544 -0.925174 0.000310931 0.919181 0.393834 0.00115952 0.986064 -0.166364 -0.00025202 0.687869 -0.725834 0.000830857 -0.176846 0.984238 -0.000999081 -0.777388 0.62902 0.00118745 0.701958 -0.712218 -0.00080397 0.981413 -0.191907 -0.000726175 0.49579 0.86844 0.00222719 -0.384714 -0.923036 -0.000381223 0.376445 0.926439 -0.000409025 0.917534 0.397658 -0.000435059 -0.998926 0.0463257 -0.00101614 0.157341 -0.987543 0.00178293 0.80716 -0.590333 0.000575471 -0.355934 -0.934511 -0.000605365 -0.872801 -0.488076 -0.000509056 -0.75284 0.658204 -0.000646755 -0.299905 0.953968 0.00165888 0.966182 0.257862 0.000529998 0.00448171 -0.99999 -0.000690249 -0.947493 -0.319776 0.0010479 -0.96751 0.252832 -3.0624e-05 -0.560289 0.828293 -0.00247764 0.264803 0.964302 0.00080837 -0.107723 -0.99418 0.0014278 0.996297 -0.0859765 -0.000412079 -0.894351 -0.447366 -0.000612857 0.516367 -0.856367 0.000490729 0.78865 -0.614841 0.00146547 -0.213381 -0.976969 -0.000789677 -0.956306 -0.292368 0.00064312 0.540998 -0.841024 0 0.782034 0.623236 -0.000232999 0.959042 0.283265 0.000182406 -0.436307 0.899798 -0.000412526 0.939085 -0.343684 0 -0.381184 0.924499 -0.0001597 0.253496 0.967336 -9.90692e-05 0.433387 0.901208 0.000245606 -0.536855 -0.843674 0.000849763 0.828526 0.559951 5.53195e-05 -0.908303 0.418312 -0.000292483 0.566271 -0.824219 -0.00021709 -0.536855 -0.843675 -0.000310669 0.105417 0.994428 0.000301495 0.0444168 -0.999013 0.000158469 0.563159 -0.826348 -0.000241209 -0.98838 -0.151999 -0.000877379 0.964763 -0.263121 -0.00065676 0.0482186 -0.998837 0.000138049 -0.548187 -0.836356 -0.000214329 -0.74061 0.671935 0.000424416 0.108547 0.994091 0.000599726 0.470173 0.882574 -0.00104093 -0.354709 0.934976 -0.000942326 0.0935119 0.995618 0.000819336 0.836974 0.547241 0.00100488 0.869474 0.493976 0.00182152 -0.729489 0.683993 0.00060753 -0.94387 -0.330289 0.00433482 0.984315 0.176412 -0.0018574 0.688544 -0.725194 -0.000482899 -0.369344 -0.929291 -0.00176115 -0.998256 -0.0590365 0.000514679 0.268909 0.963165 -0.000802236 0.951686 0.307072 7.24813e-05 0.987164 -0.159706 0.000773823 0.708813 -0.705396 -0.000289467 -0.60936 0.792893 -0.000600872 -0.622022 -0.782996 0.00249756 0.019448 -0.99981 0.00158077 0.680403 0.732837 0.00133137 -0.991068 -0.133358 -0.000924739 0.101587 0.994827 0.000421981 -0.986955 -0.160997 -0.000711636 0.979664 -0.200644 3.40772e-05 -0.504815 0.863228 6.25345e-05 -0.592187 -0.805799 -0.00182796 -0.780694 -0.624914 -0.000282806 0.949688 0.313196 -2.47857e-05 -0.926076 0.377337 0.000759439 -0.0133074 -0.999909 0.00204635 -0.134352 -0.990921 -0.00501339 0.700491 -0.713661 -0.000577053 -0.991292 -0.131676 0.00130394 -0.513158 0.858294 -0.000565415 0.0544776 0.998515 -0.000963866 0.425275 0.905064 0.000417823 0.670777 0.741659 -0.000502692 0.908384 0.418137 0.000501634 -0.380979 0.924583 0.000970036 0.991058 -0.133429 -0.000299597 -0.209343 -0.97784 -0.00190256 0.415406 -0.909635 0.00157051 0.321678 -0.946843 0.00347521 -0.77955 -0.62634 0.000489614 -0.91811 0.396318 -0.00251738 0.565982 -0.824417 0.000937434 -0.113837 -0.993499 0.00126235 -0.962111 0.27265 -0.00190039 -0.999103 -0.0423281 0.00112758 0.501206 -0.865328 -0.000298757 0.288182 0.957576 -0.000160625 0.986117 0.16605 0.000214755 -0.734976 -0.678093 -0.000300228 -0.0122573 -0.999925 -0.000484094 -0.348079 0.937465 -0.000429001 -0.228233 -0.973607 5.29377e-05 -0.927249 0.374446 -7.61411e-05 -0.969095 -0.24669 8.60719e-05 0.93561 -0.353034 0.000647018 -0.0252806 0.99968 0.000134777 -0.634317 -0.773073 2.57013e-05 -0.51867 0.854975 7.81116e-05 0.94774 -0.319043 0.000474654 0.535642 -0.844445 -0.000501185 0.939623 -0.342197 -0.00317684 0.764752 0.644325 -0.000247754 0.959587 0.281413 0.00051116 -0.922715 0.385483 -1.16106e-05 -0.941369 -0.337378 -0.00107172 0.959618 0.281305 0.000512695 -0.910383 0.413766 -0.000330927 0.485124 0.874445 0.000263661 0.737229 -0.675641 0.00178596 0.182141 -0.983272 -0.000140238 -1 5.98641e-05 0 -1 0 -8.47594e-06 -1 -0.000158883 0 -1 0 8.38036e-05 -1 3.34363e-05 -2.75155e-05 -1 3.40795e-05 1.30465e-05 1 0.000178714 0 1 0 4.82435e-05 1 -3.15375e-05 0.000133366 1 -7.16422e-05 0 1 0 -9.32053e-05 1 -3.74025e-05 -0.000288242 0.707107 0 0.707107 0.707107 0 0.707107 0 0.000919951 1 -0.000443552 0 1 -0.0015377 -0.000198345 0.999999 0 -0.000322826 1 0.000211149 0 1 0.000660795 -0.000171227 1 0.707111 0 0.707102 0.707111 0 0.707102 1 0 0 1 0 0 0 3.80677e-05 -1 1.78568e-05 0 -1 0 -1.18838e-05 -1 -5.11098e-06 0 -1 -5.82026e-07 -7.80442e-06 -1 2.09298e-06 -7.77507e-06 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0.707111 0 0.707102 0.707111 0 0.707102 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -5.81439e-05 1 8.44146e-06 0 1 0 0.000221051 1 -0.000108339 0 1 3.77752e-05 -5.21081e-05 1 -3.4927e-06 -5.15374e-05 1 0 -0.000615301 -1 -5.36666e-05 0 -1 -0.000538516 0.00018658 -1 0 8.69776e-05 -1 0.00012005 0 -1 0.00103911 0.000158104 -0.999999 -0.707107 0 -0.707106 -0.707107 0 -0.707106 -1 -0.000354264 0 -1 0 6.6855e-05 -1 9.67183e-05 0.000609127 -1 4.76332e-05 0 -1 0 -3.10289e-05 -1 9.57801e-05 -0.000280269 -0.707107 0 -0.707107 -0.707107 0 -0.707107 0 0 -1 0 0 -1 1 -5.62331e-05 0 1 0 -2.69635e-05 1 5.83664e-06 0 1 0 7.65198e-06 1 1.57614e-05 -1.44453e-06 1 1.57739e-05 5.11575e-06 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.707111 0 -0.707102 -0.707111 0 -0.707102 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.70678 0.707433 0 0.70678 0.707433 0 0.254554 0.967058 -7.82872e-05 0.390657 0.920536 0 0.54936 0.835586 -0.999992 -0.00152782 -0.00360011 9.85486e-05 0.390657 0.920536 -1.48997e-07 0.549723 0.835347 -8.5719e-06 0.235174 0.971953 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999977 0.00673768 0 0.999729 0.020151 0.0116228 0.999841 0.0125847 -0.0126695 0.999988 0.00429023 -0.00247509 0.999614 0.0209778 0.0181992 0.999983 0.00584221 0 1 0 0 0.999981 0.00438737 0.00436877 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.978105 -0.147159 -0.147154 1 0 0 1 0 0 1 0 0 0.999962 0 0.00873518 0.999968 -0.00401383 0.00695959 0.999821 0.00945653 0.0163948 0.999962 0 0.00873518 0.999635 0.00764709 0.0259211 0.99906 -0.0427412 -0.00729377 0.999998 -0.00176239 0.00044372 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999988 0.00484766 0.0012205 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.99956 0 0.0296577 0.999544 -0.0150829 0.0261493 0.999584 0.0144041 0.0249725 0.999474 -0.00182081 0.0323777 0.999602 0 0.0281998 1 0 0 1 0 0 0.999838 -0.0127551 0.012701 0.999829 -0.0178301 -0.00481733 0.9999 -0.0141294 0 0.999917 -0.0107442 -0.00708321 0.999928 -0.0104256 -0.00601466 0.999943 -0.00921566 0.00531543 0.999963 -0.0086247 -6.33304e-05 0.999963 -0.00859031 0 0.999962 -0.00409129 -0.00775558 0.999909 -0.0032926 -0.0130506 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999727 0.0165149 -0.0165139 1 0 0 1 0 0 0.999914 0.00759173 0.0106607 0.999896 -0.00971235 -0.0106835 1 0 0 1 0 0 0.999877 -0.0105422 0.0116237 0.999888 0.00867809 -0.0121862 1 0 0 1 0 0 0.999945 -0.00256239 0.0101563 0.997421 -0.0506891 0.0508143 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999938 -0.0111061 0 0.999949 -0.00877103 -0.00506013 0.999913 -0.0114498 0.00660556 0.999915 -0.0130239 0.00105758 0.999918 -0.0127772 0 0.99993 -0.011716 0.00161481 1 0 0 0.999888 -0.0105857 -0.0106157 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.163419 0.697601 0.697601 1 0 0 1 0 0 1 0 0 1 0 0 0.999681 0 -0.0252646 0.999698 0.0122891 -0.0213057 0.998657 -0.0258849 -0.0448768 0.999742 0.00377019 -0.0224058 0.999795 0 -0.0202485 0.999687 0.0242637 -0.00610901 0.998765 0.0419823 -0.0265538 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999998 -0.00194493 -0.000489686 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.996963 0 -0.0778723 0.997449 0.0356646 -0.0618319 0.985836 -0.0837876 -0.14528 0.985779 -0.0863767 -0.144152 0.986951 0 -0.16102 1 0 0 1 0 0 0.995222 0.0689412 -0.0691364 0.993128 0.100628 0.0597517 0.999923 0.0124441 0 0.99991 0.0116379 0.00671405 0.999912 0.0122373 0.00508249 0.999977 0.00588045 -0.00339252 0.99997 0.00778514 0 0.999938 0.00273143 0.0108263 0.989323 0.109719 0.0959302 0.996195 -0.0230343 0.0840511 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.116412 -0.702289 0.70231 1 0 0 1 0 0 1 0 0 0.999945 -0.00146195 -0.0103972 0.999998 0.000494364 -0.00195947 0.999784 0.0177175 -0.0108702 0.999764 -0.00848614 -0.0199965 0.999826 0 -0.0186498 0.999696 0.0109171 -0.0221138 0.999943 -0.00859752 -0.00636658 0.999847 -0.0151839 0.00872487 0.999891 -0.0147924 0 0.99985 -0.0101287 0.0140611 0.999999 -0.00146914 -0.000606405 0.99925 -0.000197239 0.0387246 0.999052 0.0369257 0.0230723 0.999076 0 0.0429746 0.999552 0.0271929 0.0125291 0.999529 -0.0176532 0.0251212 0.99982 -0.00646831 0.0178427 0.999252 0.0191647 -0.0335813 0.999268 0.0143703 0.0354569 0.99895 0.045813 0 0.999028 0.0406583 0.0170195 0.992686 -0.118468 0.0232203 0.999999 -0.00148 0.000619522 0.999994 -0.00302996 -0.00147012 0.999995 -0.00331833 0 0.999388 -0.011949 -0.0328841 0.994843 -0.0627729 -0.0796666 0.996074 -0.00797773 0.0881695 0.995405 0 0.0957546 0.995888 -0.0437121 0.0793519 0.999993 0.00350493 -0.0014467 0.999989 0.00473395 0 0.99997 0.00749258 0.00189068 0.998661 0.00221484 0.0516953 0.997473 -0.0486754 -0.0517579 0.999886 0 -0.015088 0.999639 0.0266946 -0.00309346 1 0 0 1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.707687 0.706526 0 -0.707687 0.706526 0 -1 0 0 -1 0 0 -0.866189 0.499717 0 -0.866189 0.499717 0 -0.866189 -0.499717 0 -0.866189 -0.499717 0 -1 0 0 -1 0 0 -0.706733 -0.707481 0 -0.706733 -0.707481 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 -0.000315956 -0.250512 0.968114 0 -0.983011 0.183548 0.000201496 -0.920991 0.389584 9.78381e-05 -0.296908 0.954906 0 -0.164416 0.986391 0.000921699 -0.655329 0.755343 -0.000856039 -0.889341 0.457245 0.000205911 -0.654298 0.756236 0 -0.173353 0.98486 0 -0.678948 0.734186 -0.000444175 -0.650718 0.759319 -5.84923e-05 -0.843854 0.536573 -0.000128809 -0.483821 0.875167 0.000146327 -0.681701 0.731631 -8.13827e-06 -0.178933 0.983861 0.00204638 -0.471393 0.881921 8.57635e-05 -0.544084 0.839031 -2.9006e-05 -0.466433 0.884556 -0.000203293 -0.906409 0.422401 4.28094e-05 -0.837812 0.545958 2.84748e-05 -0.810511 0.585724 0.000100942 -0.945368 0.326006 -0.000122999 -0.803982 0.594654 6.54333e-05 -0.959503 0.281697 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.707698 0.706515 0 0.707698 0.706515 0 0 1 0 0 1 0 0.499599 0.866257 0 0.499599 0.866257 0 -0.499642 0.866232 0 -0.499642 0.866232 0 0 1 0 0 1 0 -0.707693 0.70652 0 -0.707693 0.70652 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.707693 0.70652 0 0.707693 0.70652 0 0 1 0 0 1 0 0.499642 0.866232 0 0.499642 0.866232 0 -0.499642 0.866232 0 -0.499642 0.866232 0 0 1 0 0 1 0 -0.707693 0.70652 0 -0.707693 0.70652 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 -8.28252e-05 0.823934 0.566686 0.00010122 0.990812 0.13525 5.13936e-05 0.984998 0.172565 0 0.173353 0.98486 -0.000417879 -0.747712 -0.664024 -0.00116132 -0.869697 -0.493585 9.20224e-05 0.967914 0.251283 -7.38988e-06 0.815075 0.579356 0.000418553 0.473722 0.880674 4.71168e-05 0.960319 0.278903 0 0.999017 0.0443272 -4.673e-05 0.961277 0.275584 -8.49313e-05 0.823482 0.567342 -4.01402e-05 0.22491 0.97438 0.000141135 0.582626 0.81274 -1.05642e-05 0.81867 0.574264 -4.26017e-05 0.814467 0.580209 1.07575e-05 0.811017 0.585023 -5.53909e-05 0.514325 0.857595 0.000236345 0.465176 0.885218 0.000235013 0.834357 0.551224 0 0.840152 0.54235 0 0.505117 0.863051 -0.000116079 0.827093 0.562065 0.000523984 0.505117 0.863051 0.000436151 0.929851 0.367936 4.29915e-05 0.529184 0.848507 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.706727 -0.707487 0 0.706727 -0.707487 0 1 0 0 1 0 0 0.866189 -0.499717 0 0.866189 -0.499717 0 0.866189 0.499717 0 0.866189 0.499717 0 1 0 0 1 0 0 0.707681 0.706532 0 0.707681 0.706532 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.706715 -0.707498 0 0.706715 -0.707498 0 1 0 0 1 0 0 0.866238 -0.499631 0 0.866238 -0.499631 0 0.866189 0.499717 0 0.866189 0.499717 0 1 0 0 1 0 0 0.707693 0.70652 0 0.707693 0.70652 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 -0.000161347 0.392534 -0.919738 0 0.984636 -0.174621 0.000231248 0.467684 -0.883896 0.000321015 0.922039 -0.387097 0 0.187325 -0.982298 5.23648e-05 0.70842 -0.705791 5.54408e-05 0.329218 -0.944254 0.000178016 0.702667 -0.711519 -0.00011758 0.928487 -0.371364 -0.0001924 0.607232 -0.794524 -0.000159483 0.798613 -0.601845 -1.12608e-06 0.362813 -0.931862 -0.00173894 0.515527 -0.856872 1.92633e-05 0.718274 -0.69576 0.000120825 0.824377 -0.566042 -0.000164054 0.799162 -0.601116 0.000214789 0.97293 -0.231102 3.88647e-05 0.972991 -0.230844 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.706727 -0.707487 0 -0.706727 -0.707487 0 0 -1 0 0 -1 0 -0.499642 -0.866232 0 -0.499642 -0.866232 0 0.499642 -0.866232 0 0.499642 -0.866232 0 0 -1 0 0 -1 0 0.706727 -0.707487 0 0.706727 -0.707487 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.706727 -0.707487 0 -0.706727 -0.707487 0 0 -1 0 0 -1 0 -0.499642 -0.866232 0 -0.499642 -0.866232 0 0.499599 -0.866257 0 0.499599 -0.866257 0 0 -1 0 0 -1 0 0.706733 -0.707481 0 0.706733 -0.707481 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0.000353614 -0.235872 -0.971784 -7.62735e-06 -0.982487 -0.186331 -5.10328e-05 -0.317752 -0.948174 0 -0.0574589 -0.998348 5.09842e-05 -0.319081 -0.947728 0.00023293 -0.47517 -0.879894 -6.61799e-05 -0.823952 -0.56666 0.000168822 -0.914023 -0.405662 0 -0.98442 -0.175836 -0.000714986 -0.900887 -0.434054 0.000234763 -0.760679 -0.649128 -0.000192757 -0.755213 -0.65548 2.97656e-05 -0.79162 -0.611014 -0.000203995 -0.445633 -0.895216 0.000181381 -0.759663 -0.650317 -0.000752347 -0.763572 -0.645722 -0.00146371 0.513245 -0.858241 0.000247821 -0.902167 -0.431387 -0.000326185 -0.398753 -0.917058 0.000278139 -0.660085 -0.75119 0.000506182 -0.432699 -0.901538 -4.61335e-05 -0.64129 -0.767299 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.707698 0.706515 0 -0.707698 0.706515 0 -1 0 0 -1 0 0 -0.866189 0.499717 0 -0.866189 0.499717 0 -0.866238 -0.499631 0 -0.866238 -0.499631 0 -1 0 0 -1 0 0 -0.706721 -0.707492 0 -0.706721 -0.707492 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999685 0.0250897 0 -0.998927 -0.012556 0.044576 -0.999736 0.0198925 -0.0114763 -0.999969 -0.0068522 -0.00395313 -0.99959 0.00915844 -0.0271468 -0.999963 -0.00855883 0 -1 0 0 -0.999982 -0.00424181 0.00425382 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.985819 -0.118659 0.118662 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999984 0 0.00564552 -0.999584 0.0266427 -0.0110133 -0.998958 -0.0227994 -0.0395319 -0.999623 0.013714 -0.023776 -0.999652 0 -0.0263917 -0.99982 -0.0189113 -0.00142947 -0.999921 -0.0121758 -0.00306556 -0.999526 -0.0230662 -0.0203677 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999969 0.00758848 -0.0019106 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999993 0 0.00380968 -0.999974 -0.00508592 -0.00504293 -0.999989 0.00229633 0.00398116 -0.999985 -0.00275606 0.00477819 -0.999946 0 -0.0103849 -0.99989 0.0147945 -0.00138983 -1 0 0 -1 0 0 -0.999942 -0.00763551 -0.00765714 -0.999888 -0.0149868 0 -0.999904 -0.011985 0.00691431 -0.999196 -0.0326056 -0.023318 -0.999209 -0.0344568 -0.0198786 -0.999184 -0.040388 0 -0.999299 0.0018443 0.0373894 -0.999926 -0.00298403 0.0118275 -0.999942 0.00409256 0.00997572 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.985889 0.118369 0.118369 -0.954522 0.238166 0.179347 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.997824 -0.0161309 -0.0639364 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999606 -0.0280764 0 -0.999405 -0.0341235 0.00510987 -0.99961 -0.0241786 0.0139458 -0.999765 -0.0187874 -0.0108387 -0.99957 -0.028921 0.00487634 -0.999733 -0.0231235 0 -1 0 0 -0.999866 -0.0116221 0.0115729 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.958002 0.202777 -0.202765 -1 0 0 -1 0 0 -1 0 0 -0.998616 -0.0525218 -0.00264596 -0.997175 0 0.0751112 -0.996456 0.0420276 0.0728634 -0.994907 0.0792281 0.0623086 -1 1.5023e-05 -2.60454e-05 -1 0 -3.45734e-05 -1 -4.00461e-05 -1.00825e-05 -0.999685 0.0164994 0.0189303 -0.999803 0.0183323 -0.00756689 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999435 -0.0325822 0.00820328 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.99996 0 0.00891354 -0.999709 0.0101461 0.0218943 -0.999957 0.00461839 0.00800692 -0.999884 -0.00762251 0.0132167 -0.999883 -0.00755591 0.0132666 -0.999853 0 0.0171601 -1 0 0 -1 0 0 -0.999904 0.00983201 0.00979032 -0.999896 0.0144173 0 -0.999923 0.0107354 -0.00619343 -0.999924 0.0102674 -0.00678368 -0.999993 0.00327168 0.00188705 -0.99999 0.00441881 0 -0.999979 0.00157726 -0.00625166 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.997108 -0.0537361 -0.0537345 -1 0 0 -1 0 0 -1 0 0 -0.999376 -0.0338832 0.00994138 -0.999226 -0.0393348 0 -0.999416 -0.0246053 -0.0237096 -0.999668 -0.02309 0.0114037 -0.999569 -0.0131629 -0.0262526 -0.99928 -0.00286352 -0.0378361 -0.999217 0 -0.0395683 -0.998649 0.0311999 -0.0415454 -0.999974 0.00275562 0.00663052 -0.999998 0.00190464 0 -0.99969 0.0144133 -0.0202863 -0.999917 -0.000615533 -0.0128757 -0.999443 -0.0150707 0.0297715 -0.999924 0 0.0122987 -1 -4.66636e-05 -0.000184956 -0.999954 0.00817168 0.00498959 -0.999977 0 0.00684398 -0.999649 0.0189326 0.0185443 -0.995757 0.0894878 0.0214673 -0.996312 -0.0449077 -0.0731137 -0.999751 -0.0223019 0 -0.998619 -0.0296274 0.0433848 -0.999829 -0.0151738 -0.0105872 -0.998689 0.044417 -0.0254509 -0.999845 0.00688183 -0.0162148 -0.999871 0 -0.0160416 -0.996303 -0.0692086 -0.0508915 -0.997263 0.00799645 0.0735042 -0.999947 0.0103298 0 -0.999718 0.0166212 -0.0169532 -1 0 0 0 1 0 0 1 0 0 0.837806 0.545968 -5.35095e-05 0.924403 0.381417 2.83641e-05 0.863724 0.503965 -7.66378e-05 0.990798 0.135346 0 0.970707 0.240266 0.000184336 0.924403 0.381417 5.97909e-05 0.997104 -0.0760524 -8.91832e-05 0.922472 -0.386065 0 0.849668 -0.527318 7.11255e-05 0.922472 -0.386065 0 0.975054 -0.22197 -6.11532e-05 0.914674 -0.404193 0 0.707425 -0.706788 0 0.707425 -0.706788 0 0.54936 -0.835586 1.57349e-05 0.209678 -0.97777 -0.999974 -0.00271345 0.00661467 0 0.232702 -0.972548 0 0.232702 -0.972548 0 0.54936 -0.835586 -1.0859e-05 0.532332 -0.846536 0 0.54936 -0.835586 0.000228063 0.379526 -0.925181 0 0.232702 -0.972548 0 0 -1 0 0 -1 -2.65703e-05 0.839138 -0.543919 3.51748e-05 0.979421 -0.201826 -0.000290535 0.88308 -0.469223 0 0.987656 -0.156638 -2.85962e-05 0.980186 -0.198077 0 0.14062 -0.990064 0.000154075 0.845752 -0.533576 -0.000267515 0.330121 -0.943939 0.000281656 0.566824 -0.823839 -4.01231e-05 0.205158 -0.978729 0.000578145 0.570922 -0.821004 -0.000535279 0.5125 -0.858687 0 0.570231 -0.821485 0 0.570231 -0.821485 -0.000100927 0.572842 -0.819666 -0.000204031 0.832483 -0.55405 4.14849e-05 0.20722 -0.978294 0 0.182789 -0.983152 0.000588093 0.409534 -0.912295 4.17444e-05 0.487855 -0.872925 0.00019963 0.888964 -0.457977 0 0.845423 -0.534097 0.000315617 0.942459 -0.334323 -0.000399265 0.93098 -0.36507 0 1 0 0 1 0 0 0.974087 -0.226174 3.04402e-05 0.959523 -0.28163 0 0.852244 -0.523144 3.36349e-05 0.881168 -0.472803 -5.55827e-05 0.922444 -0.386132 0 0.707425 -0.706788 0 0.707425 -0.706788 -3.48469e-06 0.544665 -0.838654 -0.000116819 0.379553 -0.92517 7.60686e-05 0.379553 -0.92517 8.47592e-05 0.371356 -0.928491 0 0.241339 -0.970441 -5.84271e-05 -0.341344 0.939938 0 0.553532 -0.832828 9.49709e-06 0.22052 -0.975383 0 0 -1 0 0 -1 0 -0.549937 -0.835206 8.21242e-05 -0.379553 -0.92517 0 -0.201929 -0.9794 -8.06666e-05 -0.379553 -0.92517 0 -0.707425 -0.706788 0 -0.707425 -0.706788 0 -0.817783 -0.575527 -6.06229e-05 -0.922444 -0.386132 0.000216586 -0.922444 -0.386132 3.75519e-05 -0.865138 -0.501533 0 -0.967806 -0.251696 -4.72839e-05 -0.983544 -0.180667 -0.999998 0.0018452 0.000772396 0 -1 0 0 -1 0 -0.0014397 -0.369937 -0.929056 0 -0.1828 -0.98315 0 -0.551447 -0.83421 5.52977e-05 -0.221885 -0.975073 0 -0.0383455 -0.999265 -5.13949e-05 -0.220497 -0.975388 0 -0.987656 -0.156638 -0.000872279 -0.924125 -0.382089 -0.00035695 -0.939429 -0.342743 4.41087e-05 -0.831196 -0.555979 0 -0.551447 -0.83421 0 -0.551447 -0.83421 0 -0.1828 -0.98315 -1.95939e-05 -0.834365 -0.551212 0 -0.982746 -0.184961 0 -0.837169 -0.546945 0 -0.55814 -0.829747 0 -0.1828 -0.98315 2.48161e-07 -0.878804 -0.477184 4.31489e-07 -0.558207 -0.829702 -0.000271964 -0.868202 -0.49621 -7.02038e-05 -0.557341 -0.830284 5.62548e-05 -0.830345 -0.557249 0 -0.5442 -0.838955 0 -0.1828 -0.98315 0.000840333 -0.544801 -0.838565 -0.000258116 -0.827564 -0.561372 0.000237975 -0.645732 -0.763564 -4.04931e-05 -0.977283 -0.21194 3.15249e-05 -0.979852 -0.199725 0.000107899 -0.971918 -0.235319 0.00059294 -0.861018 -0.508574 0.00171787 -0.667204 -0.744873 -0.000785559 -0.657869 -0.753132 0 -0.551447 -0.83421 2.37072e-05 -0.553974 -0.832534 0 -0.55814 -0.829747 0 -0.1828 -0.98315 0 -0.230178 -0.973149 -0.00104168 -0.172029 -0.985091 0 0 -1 0 0 -1 0 -0.186078 -0.982535 0 -0.546205 -0.837652 7.61627e-05 -0.379553 -0.92517 -1.07339e-05 -0.208708 -0.977978 -4.11181e-05 -0.475207 -0.879874 0 -0.707425 -0.706788 0 -0.707425 -0.706788 0 -0.849375 -0.527791 5.22209e-07 -0.973173 -0.230074 0 -0.97288 -0.23131 7.0541e-05 -0.922444 -0.386132 8.11442e-06 -0.839019 -0.544102 0 -1 0 0 -1 0 0 -0.971219 0.238187 -1.717e-06 -0.838479 0.544933 1.50443e-05 -0.977058 0.212975 1.2674e-05 -0.857 0.515316 0 -0.836467 0.548018 0.000176202 -0.924376 0.381483 -2.09075e-05 -0.982116 0.188278 0 -0.70678 0.707433 0 -0.70678 0.707433 0 -0.254554 0.967058 0.999881 0.00603396 -0.0142171 0.000113954 -0.390685 0.920524 0 -0.254554 0.967058 0 -0.254554 0.967058 0 -0.549439 0.835534 0 -0.549439 0.835534 0 -0.549439 0.835534 -0.000128847 -0.390685 0.920524 0 0 1 0 0 1 0.000908958 -0.742177 0.670204 -0.000445387 -0.911056 0.412283 0 -0.982746 0.184961 0 -0.86627 0.499577 0 -0.1828 0.98315 0 -0.86627 0.499577 0.000677054 -0.916703 0.399568 0 -0.999112 0.042145 -5.19213e-05 -0.975236 0.221168 0 -0.0383455 0.999265 5.15217e-05 -0.215973 0.976399 -0.000374046 -0.618506 0.78578 -7.40871e-05 -0.218676 0.975798 8.05667e-05 0.234386 -0.972144 -0.0159862 -0.953414 0.301241 0.00123927 -0.417773 0.908551 0 -0.574808 0.818289 -5.34288e-05 -0.22086 0.975305 0.00219573 -0.594136 0.804362 -0.000716968 -0.422726 0.906257 0 -0.574808 0.818289 -5.05694e-05 -0.573235 0.819391 0 -0.86627 0.499577 0 -0.982746 0.184961 -0.000256861 -0.306129 0.95199 0 -0.1828 0.98315 0 -0.564414 0.825492 0.000438233 -0.293792 0.955869 0 -0.574808 0.818289 -0.000538558 -0.529814 0.848113 -0.000136328 -0.853709 0.52075 0 -0.86627 0.499577 8.53206e-05 -0.849405 0.527742 4.58778e-06 -0.850807 0.525479 -0.00012712 -0.930742 0.365677 0 -0.972792 0.231679 5.17855e-05 -0.975475 0.22011 0 -1 0 0 -1 0 -0.000116516 -0.924353 0.381538 5.12789e-05 -0.924353 0.381538 0 -0.837703 0.546126 0 -0.970675 0.240396 0 -0.706788 0.707426 0 -0.706788 0.707426 0 -0.54936 0.835586 -7.04689e-05 -0.390685 0.920524 -7.61932e-05 -0.094339 0.99554 5.71741e-05 -0.415877 0.909421 0 -0.254588 0.96705 9.12061e-05 -0.390685 0.920524 0 0 1 0 0 1 -4.80824e-05 0.390685 0.920524 0 0.549439 0.835534 0.000121604 0.390685 0.920524 0 0.254554 0.967058 0 0.706788 0.707426 0 0.706788 0.707426 0 0.851869 0.523756 0.000175042 0.924353 0.381538 0 0.975182 0.221404 -0.999146 -0.0381904 -0.0157636 -7.08296e-05 0.924353 0.381538 -1.25816e-06 0.850373 0.52618 -9.1888e-06 0.979794 0.200009 0 1 0 0 1 0 0.00152884 0.976027 0.217644 -0.000134479 0.566348 0.824166 -0.00031854 0.782342 0.622849 0 0.182789 0.983152 5.2933e-05 0.975047 0.222001 0 0.824478 0.565894 -0.000370298 0.798165 0.602439 0.000147718 0.688031 0.725681 0 0.0383367 0.999265 -5.60673e-05 0.229787 0.973241 0 0.999102 0.0423736 6.22512e-07 0.182485 0.983209 -0.000265932 0.615565 0.788086 8.4696e-05 0.792878 0.60938 -0.0014204 0.876821 0.480814 0.000187725 0.837964 0.545725 -0.000161202 0.531836 0.846847 0 0.982746 0.184961 0 0.824478 0.565894 3.30489e-05 0.822462 0.56882 -3.16441e-05 0.533157 0.846016 0.000324459 0.687489 0.726195 -0.000340049 0.92715 0.37469 -4.87599e-05 0.977137 0.212611 0 0.982746 0.184961 7.791e-05 0.976657 0.214805 0.000459252 0.913796 0.406172 0.000193098 0.685077 0.728471 0 0.588572 0.808445 0 0.182789 0.983152 0 0.557296 0.830314 -0.000176432 0.564604 0.825362 5.01266e-05 0.208532 0.978016 5.5786e-05 0.230566 0.973057 0 0 1 0 0 1 0.00321304 0.976754 0.214339 -0.000301572 0.78476 -0.6198 -0.0011716 0.526264 0.85032 0.000692853 0.2468 0.969066 -0.000329697 0.78619 -0.617984 7.35468e-05 0.999471 -0.0325215 -2.78047e-05 0.929869 0.367891 0.000773602 -0.999021 0.0442238 0.000791581 -0.565355 0.824847 -0.00116924 -0.938204 0.346082 0.000104428 -0.693591 -0.720369 4.21501e-05 -0.638978 0.769225 -0.000916797 0.0679376 -0.997689 -0.000845885 -0.983309 -0.181942 -2.56122e-05 -0.685617 -0.727963 0.00131752 0.905747 -0.423817 -0.000172025 0.996355 0.0853054 0.000405302 0.913394 0.407076 -0.00131561 -0.0567249 0.998389 0.000560544 0.178056 -0.98402 0.0010488 0.550952 0.834536 -0.000644984 0.44247 -0.896783 0.000109013 0.43039 0.902643 0.000237941 -0.0513527 0.998681 -0.000554975 -0.15784 -0.987465 0.000466294 -0.00924396 0.999957 0 -0.683629 -0.72983 -0.000202626 -0.983655 -0.180063 -0.000916993 0.783029 0.621984 4.83344e-05 -0.936938 0.349496 -0.00040169 -0.643135 0.765752 0 -0.991579 -0.129503 0.000266129 -0.902438 0.430821 0.000467874 -0.447707 0.89418 -2.41482e-05 -0.676291 0.736635 4.7904e-07 -0.14687 -0.989156 2.23055e-06 -0.683872 -0.729602 0.000390722 0.458119 -0.888891 0.000258563 0.998486 0.0549998 0.00028059 0.808412 0.588617 -0.000659575 0.578313 0.815815 0.000152693 0.883159 -0.469073 -0.000490972 0.961076 -0.276285 -0.000115936 0.702688 -0.711498 -0.000369293 0.962577 0.271008 4.03821e-05 -0.150933 -0.988544 0.000419734 -0.992357 -0.1234 0.000701508 0.964796 0.262997 -0.00205767 -0.467873 0.883793 0.00055988 0.638896 0.769293 -7.41637e-05 -0.916843 0.399249 0.000249782 0.00354448 0.999994 -0.000423724 0.844672 0.535284 5.33831e-05 0.33761 -0.941286 0.000507369 -0.0483061 -0.998832 0.000202981 -0.578438 0.815727 0.000277298 -0.691546 -0.722332 -0.000357947 -0.481871 -0.876242 -0.00270066 0.556525 -0.830826 0.000580151 0.922932 -0.384963 -0.000214252 -0.895121 -0.445824 -0.000297884 0.432264 0.901747 0 -0.905852 0.423595 0 -1 0.000489077 0.00122709 -0.560633 -0.828063 -0.00131198 -0.00563375 -0.999983 -0.000725383 0.542841 -0.839835 0.000765506 0.366182 0.930543 -0.000186617 -0.203884 0.978995 7.15423e-05 -0.602018 0.798483 -2.30178e-05 0.992852 -0.119349 -2.4098e-07 0.996198 0.0871161 0.00126724 0.298472 -0.954417 0.000261924 -0.183186 -0.983078 0.000279997 0.832167 0.554525 -0.000357421 0.961393 0.275178 -0.000231274 0.788366 -0.615207 -0.000291031 0.693759 0.720208 0.000319611 -0.999587 0.0287368 0.000165949 -0.90774 0.419534 0.000305458 -0.589626 -0.807676 -0.000537911 -0.278791 -0.960352 -0.00012271 -0.894031 -0.448006 0.000393799 0.768316 -0.64007 0.000183365 -0.208339 0.978057 -2.41242e-05 -0.602411 0.798186 0.000287634 0.284377 0.958712 0.000141368 -0.568532 0.822661 -0.0002822 -0.956183 0.292771 0.00171127 0.299217 -0.954184 -0.000641484 0.983751 -0.179536 -0.000514429 -0.281463 -0.959572 -0.000257136 0.737532 -0.675312 -0.000281796 0.693665 0.720298 -0.000342892 -0.0165899 0.999862 -4.96153e-05 -0.902061 -0.431609 0.00117118 0.963735 0.266859 -0.000839736 0.741121 0.671371 0.000200348 0.97435 -0.225039 -0.00344919 0.864931 -0.501879 0.00670457 0.349375 -0.936959 0.000495515 -0.0267514 0.999642 0.000227685 0.527651 -0.849461 -0.000281273 -0.984124 0.177482 5.17569e-05 -0.69255 -0.72137 -0.00184648 -0.999983 0.00544512 0.000570251 -0.648607 -0.761123 -0.000824009 -0.0278564 -0.999612 0.000387772 0.9963 0.0859384 -0.000798059 -0.585015 0.811022 0.00120363 -0.995669 0.0929663 -0.000922262 0.854056 -0.520181 -6.63828e-05 0.599607 0.800295 -0.000157952 0.198286 0.980144 -0.000145803 -0.18548 0.982648 0.000124713 -0.690636 0.723202 -0.000101324 0.60628 0.795251 0.000100136 -0.132059 -0.991242 -0.000200908 0.982181 0.187939 -0.00012101 0.475244 -0.879854 0.000628865 -0.664956 0.746882 -0.000128443 -0.978073 -0.208262 0.000383347 -0.655473 -0.755218 -0.000189504 -0.173266 -0.984875 0.000131824 -0.706784 -0.70743 -4.49252e-05 -0.191253 0.981541 -3.06216e-05 -0.936699 0.350136 0.000411041 0.87519 -0.48378 4.35476e-05 0.222817 0.97486 0.000448256 0.429057 -0.903277 -0.000122131 0.772066 -0.635543 0.00129442 0.963371 0.268168 -0.000532896 0.986743 -0.162289 3.22358e-05 0.613853 0.78942 -0.000259812 0.307907 0.951417 0.00022635 -0.194739 -0.980855 6.64994e-05 -0.169508 0.985529 -0.000221908 -0.622631 0.782516 -0.000475027 0.277799 -0.960639 7.55948e-06 -0.937349 0.348391 0.000219432 -0.70595 -0.708261 -0.00141332 -0.335525 -0.94203 0.000405955 0.981185 -0.193071 -0.00015967 -0.612948 0.790123 0.000297266 0.94859 0.316506 -0.000495195 0.687051 0.726609 -0.00262078 0.0860428 0.996288 0.000723377 -0.358354 -0.933585 8.80608e-05 -0.976717 -0.21453 0.000370376 -0.993793 -0.111244 -0.000181814 -0.77544 -0.631422 0.00028862 0.265937 -0.96399 -0.000786208 0.793807 -0.60817 0.00064466 0.592639 -0.805468 -0.000112104 0.920739 -0.39018 -0.000329388 0.995993 0.0894358 -7.2118e-05 -0.944214 0.329334 4.06566e-05 -0.494699 -0.869064 2.42139e-05 -0.81292 -0.582376 -0.00030543 0.127862 -0.991792 0.000993002 0.0775551 0.996988 0.000256229 0.729646 0.683825 4.21733e-05 0.281033 0.959698 -0.000219424 -0.251223 0.967929 0.000334439 -0.643264 0.765645 0.000573382 -0.974217 0.225614 -0.000212392 -0.704695 0.70951 0.00020208 0.614162 -0.78918 8.37019e-05 0.921274 -0.388915 0.000573143 0.0853938 -0.996347 -3.56205e-05 0.339494 -0.940608 -4.99827e-05 0.996285 -0.0861157 0.000255496 0.996393 0.0848614 0.00029253 0.727453 0.686158 -4.38966e-05 0.279225 0.960226 4.0922e-05 -0.260303 0.965527 2.75906e-05 -0.71413 0.700014 -0.00132886 0.454545 0.890723 -0.000109003 0.970575 0.240798 -0.000188009 -0.291325 0.956624 -0.000424586 0.798359 -0.602182 0.000544115 -0.526601 -0.850112 0.00238664 0.556014 0.83117 0.000677263 -0.653857 0.756618 0.000394519 -0.993841 -0.110814 -0.000505152 -0.826852 -0.56242 -0.000525099 -0.97812 0.208043 0.000875608 0.434484 -0.900679 -0.000220455 -0.85092 -0.525294 -0.000434594 -0.161422 -0.986885 0.000308669 0.040645 -0.999174 -0.00621552 0.997986 0.0631361 -0.000369593 0.250687 0.968068 0.000749564 -0.348951 0.937141 -0.00179787 0.719555 -0.694433 0.000507389 0.784658 -0.619929 -8.76052e-05 -0.957754 0.287587 0.0013009 0.99268 0.120766 -0.000842388 -0.503179 0.864182 -0.00294686 0.930666 0.365857 0.0089585 0.568539 0.822608 0.00544044 -0.545042 0.838391 0.0147902 0.664973 -0.746721 0.00118195 -0.46017 -0.88783 0.000233461 0.997853 0.0654861 -0.000948986 -0.180807 -0.983518 -0.000671097 0.766939 0.641719 0.00150704 0.880421 0.47419 -0.000353865 -0.670731 -0.741701 -1.62794e-05 0.510083 -0.860125 -0.000782539 -0.317858 0.948138 0.00052161 -0.999711 -0.0240256 -0.000963776 -0.959485 -0.281756 -9.76932e-05 0.834934 -0.550349 9.75529e-05 -0.732784 0.680461 -0.000188626 -0.976809 0.214112 0.00108489 -0.0482495 -0.998835 1.40575e-05 0.355826 0.934552 -0.000338698 0.999797 -0.0201468 3.43104e-05 -0.183379 0.983042 -6.51611e-05 -0.682295 0.731077 -0.000630352 0.557363 0.830269 -0.000833676 0.681297 -0.732007 0.000489109 -0.97634 -0.216239 0.0014627 0.704761 -0.709443 -5.43032e-05 -0.997364 -0.0725556 -0.00110305 -0.684421 -0.729087 6.39583e-05 -0.961852 0.273569 0.000404503 0.993602 -0.112942 -0.000755805 0.892526 0.450995 0.000183183 0.533125 -0.846036 0.000418006 -0.541815 -0.840498 0.00037025 0.467 0.884257 0.000597139 0.988308 0.152471 -0.000145681 0.817 0.576638 -0.000114208 -0.181598 0.983373 -0.000152836 -0.477382 -0.878696 0.000535663 -0.0368071 -0.999322 -0.000114248 0.0408939 -0.999164 -0.000258618 -0.798141 -0.602471 0.000287902 0.826446 -0.563016 -2.76611e-05 0.95707 -0.289857 0.00351497 0.157875 0.987453 0.000141878 -0.41278 0.910831 4.91685e-05 -0.691178 0.722684 9.17396e-05 0.0627418 -0.99803 0.000368069 0.4667 0.884416 -0.00112121 0.630737 -0.775996 -8.67071e-05 -0.477509 -0.878627 0.000176565 0.818203 0.57493 -0.000408746 0.081135 0.996703 9.42012e-05 -0.412267 0.911063 6.05451e-05 -0.997591 -0.0693654 2.10221e-05 0.986317 0.164859 -0.000127823 0.977752 0.209763 0.000112316 -0.688999 0.724762 -0.000532825 0.645516 -0.763747 -0.000298531 -0.955452 0.295146 -0.000603192 0.9711 -0.238671 -0.00027817 -0.568242 0.822862 -0.000100939 -0.938704 0.344725 -0.000586384 0.111222 -0.993795 -0.00017452 0.686245 0.727371 0.000141786 0.467475 0.884007 0 -0.996209 -0.0869964 0 -0.805345 -0.592807 -8.93628e-06 0.40163 0.915802 3.09319e-05 -0.0147611 0.999891 1.78524e-05 -0.808859 -0.588003 -3.56694e-05 -0.468256 -0.883593 0.000626242 0.608822 -0.793307 -0.000983142 0.960236 -0.279187 0.000215541 0.512024 -0.858971 0.000380841 0.0497185 -0.998763 0.000203632 0.966191 0.257829 0.00015335 -0.495053 -0.868863 -0.000129238 0.121981 -0.992532 0.00181166 0.85349 -0.521106 -2.51068e-05 0.991608 -0.12928 0.000254927 0.703213 0.710979 -0.000785325 0.493932 0.8695 -0.000760064 0.951957 0.306232 0.000126764 -0.495756 -0.868462 0.000121364 -0.57492 0.81821 -0.00197736 0.386908 -0.922116 5.89884e-06 0.0518872 -0.998653 0.000230698 -0.995465 -0.0951266 2.08282e-05 -0.478854 -0.877894 0.000380378 0.0290302 0.999578 -6.21389e-05 -0.202957 0.979188 -0.000265431 -0.815493 -0.578767 -9.49815e-05 -0.837983 -0.545696 0.000311039 -0.932939 0.360035 -0.000202543 -0.982893 0.184178 0.000213605 0.23074 -0.973015 0.000613979 0.916257 0.400591 9.81666e-05 -0.579641 0.814872 -0.000552375 -0.817121 -0.576466 0.000640201 0.817964 -0.57527 0.000981492 0.59407 0.804412 -0.000231378 0.316011 0.948756 0.00366202 -0.353268 -0.935515 0.000112418 0.991192 -0.132435 0.00173677 0.285141 -0.958484 -0.000818581 0.964945 -0.262452 -0.000605776 0.839821 0.542864 -0.00372693 -0.435927 0.899974 0.0176225 0.999843 -0.00185682 0.0159005 0.999001 -0.0417714 0.000874048 -0.701203 -0.712961 -0.00440469 0.764346 -0.644791 0.000887071 0.101472 -0.994838 0.000349141 0.925399 0.378994 0.000751118 0.138745 0.990328 -0.000369066 0.972748 -0.231866 0.000907272 0.948082 0.318025 -0.00143837 0.544743 0.838602 0.000287232 0.0778859 -0.996962 -0.000559171 -0.572878 -0.81964 0.000535963 0.669524 -0.74279 0 0.983713 -0.179747 0 0.772427 -0.635103 0.000236181 -0.624159 0.781297 0.000196108 -0.999555 0.0298205 -0.000736081 -0.804924 0.593377 -0.0010704 -0.153311 0.988177 0 -0.497719 -0.867339 0.000531682 0.0385933 -0.999255 -0.000127833 0.479885 -0.877332 0.000149798 -0.211389 0.977402 0.000188677 0.518558 0.855042 0 -0.768102 -0.640328 7.10392e-05 0.937741 0.347334 -2.77096e-05 -0.999886 -0.0150852 -0.000243969 -0.839549 -0.543285 -0.000137261 0.909664 0.415345 -0.000154179 0.466986 0.884265 0.000571212 -0.186075 0.982535 -0.00058479 -0.805244 0.592943 0.000387023 0.976329 -0.21629 -3.30935e-05 0.999369 -0.0355315 -0.000336279 -0.999287 0.0377446 4.2081e-05 -0.751081 0.66021 7.47145e-05 -0.505749 -0.862681 -3.28278e-05 0.0110139 -0.999939 0.00105279 -0.236156 0.971715 -0.000126563 0.479795 -0.877381 4.24559e-05 0.774233 -0.632901 0.000842199 0.487926 0.872884 -0.000240201 0.329155 0.944276 -0.000314103 0.885998 -0.463688 0.000438233 0.934491 0.355987 -0.000227635 0.672356 0.740228 -0.000203527 0.675903 0.736991 6.64029e-05 0.99953 -0.0306568 -9.94974e-05 0.96523 0.261401 0.000310949 -0.44569 -0.895187 6.29927e-05 -0.0253724 -0.999678 0.0003739 -0.245436 0.969413 0.000262506 -0.850662 -0.525713 6.05156e-05 -0.804363 -0.594138 -0.000746582 -0.999801 0.0199336 0.000421469 0.321331 0.946967 -0.000453808 -0.517666 0.855583 0.000857835 -0.756858 0.653579 -0.000635746 0.0513659 0.99868 -9.88097e-05 0.487307 -0.873231 0.000292088 0.838228 -0.545321 -9.02581e-05 0.996225 -0.0868087 -0.00043481 -0.95391 0.300094 0.00117971 -0.98542 -0.170136 -0.00506047 -0.942283 -0.334779 6.33335e-06 -0.951957 0.306233 0.000911991 -0.920015 -0.391883 0.000192833 -0.540004 0.841662 1.40273e-05 -0.56474 0.825269 -0.0014141 -0.586503 -0.809946 -0.000381432 -0.449757 -0.893151 -0.00042137 -0.0475549 -0.998869 -0.000124229 0.0777308 0.996974 0.000537461 -0.0102854 0.999947 0.000484705 0.441297 -0.897361 5.43436e-05 0.995551 -0.0942196 0.000156495 0.663209 0.748434 -0.00118597 0.0259429 -0.999663 -3.79066e-05 0.616927 -0.78702 0.000184542 0.830946 -0.556353 -0.000368439 0.96131 0.275467 -0.000350664 0.962548 0.27111 -0.000573203 0.519924 0.854213 -0.000894196 0.478158 -0.878273 0.00112651 0.963962 0.266037 0.000192791 -0.942184 0.335096 0.00120722 -0.674662 -0.738126 0.000253792 0.0840043 -0.996465 -0.000403087 0.9671 -0.254398 0.000958736 -0.554037 0.832491 -0.000742322 -0.05425 -0.998527 0.00353128 0.347973 0.937498 -0.00108093 0.870566 0.49205 0.000221494 -0.976592 -0.2151 -0.00101067 -0.216436 0.976296 -0.00362587 -0.134772 0.99087 0.00257679 -0.197668 -0.980266 0.000506187 0.557437 -0.830219 -0.000226265 0.96211 -0.272662 -0.000228096 -0.92055 0.390624 -0.00111168 -0.888141 -0.459569 0 0.70678 0.707433 0 0.70678 0.707433 0 0.254554 0.967058 0 0.254554 0.967058 0 0.54936 0.835586 -9.6898e-05 0.390657 0.920536 -0.999736 -0.00898386 -0.0211694 6.7604e-05 0.390657 0.920536 0 0.54936 0.835586 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999343 0.0362524 0 0.998225 -0.0515828 -0.0297588 0.998965 0.0160973 0.0425516 0.999787 -0.017883 0.010317 0.999718 -0.0237578 0 1 0 0 0.999837 -0.0127878 -0.0127346 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.0275764 -0.706827 -0.706848 1 0 0 1 0 0 1 0 0 0.999848 0 -0.017443 0.999896 0.00721429 -0.0125089 0.996698 0.069167 0.042536 0.997906 0.0323157 0.0560258 0.998188 0 0.0601668 0.99783 -0.0608933 -0.0250499 0.999973 -0.00711503 0.00157545 0.999977 -0.0066143 0.00166532 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999839 0.0173833 0.0043767 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999998 0 -0.00192695 0.999998 0.000890643 -0.00154411 0.999934 0.00575547 0.00997829 0.999886 0.013515 0.0067755 0.99994 0 0.0109825 1 0 0 1 0 0 0.99999 -0.00314517 0.0031321 0.999985 -0.00545494 0 0.999962 -0.00754523 0.00428496 0.999945 -0.00912137 -0.00526225 0.99994 -0.00948437 0.00547167 0.999942 -0.00943839 0.00526738 0.999921 -0.0125837 0 0.999799 -0.004901 -0.0194257 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.997121 0.0536223 -0.0536223 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999693 -0.00605849 0.0240135 0.999777 0.0210707 0.001059 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999722 -0.0235596 0 0.999414 0.0296559 0.017105 0.998964 -0.000676746 -0.0455087 0.999724 0.0203548 -0.011743 0.999771 0.0213798 0 1 0 0 1 0.000677664 0.000679583 0.999863 -0.00257733 0.0163364 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.000574058 0.885766 0.464131 0.98127 0.136219 0.136211 1 0 0 1 0 0 1 0 0 1 0 0 0.999999 0 0.00173701 0.999998 -0.000972877 0.00168668 0.999996 0.00136812 0.00237192 0.999964 -0.00826396 -0.00209817 0.999976 0 -0.00697297 0.999945 0.0102058 -0.00256953 0.99998 0.00418357 0.00479939 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999975 -0.0068332 -0.0017204 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.99992 0 -0.0126161 0.996821 0.0398084 -0.069016 0.997409 -0.0576738 -0.0429894 0.997271 -0.0368853 -0.0639555 0.99829 0 -0.0584596 1 0 0 1 0 0 0.999558 0.0209991 -0.0210586 0.999681 0.025206 0.00176529 0.999739 0.0228331 0 0.99969 0.0215586 0.0124375 0.999367 0.0311028 -0.017265 0.999369 0.0307783 -0.0177524 0.999259 0.0385013 0 0.999288 0.0377057 0.000920547 0.995641 0.0228156 0.0904322 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.967776 -0.178062 0.178057 0.0131584 -0.886099 0.46331 1 0 0 1 0 0 0.999043 -0.0253696 -0.0356248 0.998873 0.0318895 0.0351612 0.999402 0.0106754 -0.0329035 0.999248 0.00948811 -0.0376072 0.997027 0.0485504 -0.0598391 0.995562 -0.0367642 -0.0866303 0.996598 0 -0.0824179 0.996393 0.00599686 -0.0846434 0.998038 -0.061563 0.0113884 0.998118 -0.0613306 0 0.997255 -0.0399038 0.0623752 0.999981 -0.00572512 -0.00236272 0.999983 0.00224103 0.00546256 0.999978 0 0.00666738 0.997859 -0.0399053 0.0518165 0.999255 0.00806963 0.0377285 0.999424 0.0331752 0.00719621 0.998479 0.0375321 -0.0403804 0.99999 0.00453854 0 0.99999 0.00412082 0.00172496 0.999773 -0.021282 0.000621631 0.999934 -0.00797669 -0.00832784 0.999939 -0.00209444 0.0108606 0.999973 -0.00732144 0 0.998565 -0.0428292 -0.0321384 0.999095 -0.0312244 -0.0288887 0.992272 0.0226929 0.121988 0.995614 0 0.093555 0.996772 -0.0304722 0.0742829 0.999921 0.011633 -0.00480086 0.999857 0.0001486 -0.0169321 0.999998 0.00176893 0 0.987177 0.0864105 0.134223 0.989115 0.0879994 0.117929 0.972206 -0.0383702 -0.23096 0.979986 0 -0.199065 0.981083 0.0756325 -0.178204 0.963984 -0.199813 -0.175528 0.999971 -0.00752017 0.000981033 0.999705 -0.0192738 0.0148113 1 0 0 1 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.707687 0.706526 0 -0.707687 0.706526 0 -1 0 0 -1 0 0 -0.866238 0.499631 0 -0.866238 0.499631 0 -0.866189 -0.499717 0 -0.866189 -0.499717 0 -1 0 0 -1 0 0 -0.706733 -0.707481 0 -0.706733 -0.707481 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0.00064233 0.763916 -0.645315 -0.000543313 -0.792874 0.609386 -5.34642e-05 -0.951058 0.309013 0 -0.999002 0.0446574 -8.48345e-05 -0.537362 0.843352 0 -0.187325 0.982298 -1.48159e-05 -0.790809 0.612063 -0.000144258 -0.378867 0.925451 3.6398e-08 -0.493605 0.869686 -0.000137936 -0.738949 0.673762 0 -0.964205 0.265159 0 -0.766565 0.642166 4.76437e-05 -0.49774 0.867327 0.000224835 -0.766565 0.642166 -7.39306e-05 -0.951126 0.308802 -8.30599e-06 -0.809684 0.586867 4.39714e-05 -0.964622 0.263639 7.64497e-05 -0.812836 0.582492 7.89317e-05 -0.280628 0.959817 4.69733e-05 -0.964004 0.265888 -0.000107163 -0.745833 0.666133 -0.00036484 -0.463206 0.886251 -0.000363791 -0.8913 0.453413 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.707687 0.706526 0 0.707687 0.706526 0 0 1 0 0 1 0 0.499599 0.866257 0 0.499599 0.866257 0 -0.499642 0.866232 0 -0.499642 0.866232 0 0 1 0 0 1 0 -0.707681 0.706532 0 -0.707681 0.706532 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.707681 0.706532 0 0.707681 0.706532 0 0 1 0 0 1 0 0.499642 0.866232 0 0.499642 0.866232 0 -0.499642 0.866232 0 -0.499642 0.866232 0 0 1 0 0 1 0 -0.707681 0.706532 0 -0.707681 0.706532 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 -0.000141542 0.404822 0.914396 0 0.187325 0.982298 5.9348e-05 0.966238 0.257652 0 0.187325 0.982298 0.000222747 0.914594 0.404374 0 0.994153 0.107979 -3.24413e-05 0.302745 0.953072 0.000423498 0.712769 0.701399 -0.000451474 0.783316 0.621624 -7.03807e-05 0.813126 0.582088 -0.000291489 0.887695 0.460433 5.46905e-05 0.821663 0.569973 -7.57306e-05 0.822772 0.568372 -0.00030716 0.913312 0.407261 -5.55357e-05 0.968799 0.247846 0.000203213 0.871377 0.490615 0.000194078 0.608768 0.793348 -0.000204533 0.494234 0.869329 0 0.494234 0.869329 0.000186909 0.593227 0.805035 -0.000475097 0.593227 0.805035 0.000185628 0.25411 0.967175 0.00042805 0.154046 0.988064 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.706727 -0.707487 0 0.706727 -0.707487 0 1 0 0 1 0 0 0.866189 -0.499717 0 0.866189 -0.499717 0 0.866238 0.499631 0 0.866238 0.499631 0 1 0 0 1 0 0 0.707681 0.706532 0 0.707681 0.706532 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.706715 -0.707498 0 0.706715 -0.707498 0 1 0 0 1 0 0 0.866189 -0.499717 0 0.866189 -0.499717 0 0.866189 0.499717 0 0.866189 0.499717 0 1 0 0 1 0 0 0.707681 0.706532 0 0.707681 0.706532 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 8.97604e-05 0.986331 -0.164774 0 0.998898 -0.0469328 0.000127063 0.39362 -0.919273 0.000335065 0.446428 -0.894819 0 0.164266 -0.986416 0.000154066 0.504977 -0.863133 -4.25617e-05 0.962891 -0.269892 -7.58833e-06 0.960044 -0.27985 4.01473e-05 0.965988 -0.258587 1.22774e-05 0.802847 -0.596185 1.23251e-05 0.438695 -0.898636 -3.39388e-06 0.810465 -0.585787 0.000401375 0.863859 -0.503734 -2.96212e-06 0.170825 -0.985301 -0.000180414 0.734188 -0.678946 2.6813e-05 0.800638 -0.599148 5.4781e-05 0.902649 -0.430378 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.706727 -0.707487 0 -0.706727 -0.707487 0 0 -1 0 0 -1 0 -0.499642 -0.866232 0 -0.499642 -0.866232 0 0.499642 -0.866232 0 0.499642 -0.866232 0 0 -1 0 0 -1 0 0.706727 -0.707487 0 0.706727 -0.707487 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.706727 -0.707487 0 -0.706727 -0.707487 0 0 -1 0 0 -1 0 -0.499642 -0.866232 0 -0.499642 -0.866232 0 0.499599 -0.866257 0 0.499599 -0.866257 0 0 -1 0 0 -1 0 0.706733 -0.707481 0 0.706733 -0.707481 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 -1 0 0 -1 -0.00102721 -0.901565 -0.432642 -0.000191203 -0.451382 -0.892331 0 -0.1776 -0.984103 0 -0.984698 -0.174271 -2.21842e-05 -0.81146 -0.584407 0.000415394 -0.892657 -0.450737 -0.00014025 -0.513176 -0.858283 3.51301e-05 -0.969969 -0.243229 -0.000231596 -0.859497 -0.511141 -2.40199e-05 -0.827473 -0.561506 -2.41213e-05 -0.546299 -0.83759 0.000411045 -0.483523 -0.875332 -0.000175292 -0.925676 -0.378317 3.2073e-05 -0.806836 -0.590775 -4.81197e-05 -0.963207 -0.268763 0.000441263 -0.861657 -0.507491 -1.95418e-05 -0.918179 -0.396165 -0.00011337 -0.447463 -0.894302 -0.000251818 -0.420226 -0.907419 6.36544e-05 -0.46679 -0.884368 3.32347e-05 -0.24283 -0.970069 0.000269657 -0.447169 -0.894449 0 -1 0 0 -1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.707687 0.706526 0 -0.707687 0.706526 0 -1 0 0 -1 0 0 -0.866189 0.499717 0 -0.866189 0.499717 0 -0.866189 -0.499717 0 -0.866189 -0.499717 0 -1 0 0 -1 0 0 -0.706721 -0.707492 0 -0.706721 -0.707492 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999857 -0.0168991 0 -0.999901 0.00632726 -0.0126053 -0.999741 -0.0197194 0.0113738 -0.999769 -0.0186202 -0.0107423 -0.999857 -0.0168991 0 -1 0 0 -0.995523 0.0667426 -0.0669316 -0.98894 0.124648 0.0803748 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.00812901 -0.707094 0.707073 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.991944 0 -0.126677 -0.993039 -0.0588467 -0.102034 -0.991735 -0.0210718 -0.126563 -0.994597 0.0518695 -0.0899263 -0.994625 0 -0.103542 -0.995266 -0.0962461 0.0134647 -0.999825 -0.0181582 -0.00457172 -0.999517 -0.0257827 -0.0173447 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999989 0.00460805 -0.00116017 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999869 0 -0.0162127 -0.99987 0.01597 0.00205833 -0.999871 -0.00803129 -0.0139239 -0.998488 0.0274699 -0.0476247 -0.99823 0.0433228 -0.0407461 -0.998598 0 -0.052926 -1 0 0 -1 0 0 -0.999474 -0.0229045 -0.0229694 -0.999232 -0.0339894 0.0194736 -0.999967 -0.0081013 0 -0.999965 -0.00720536 0.00415687 -0.999949 -0.00507297 0.00873217 -0.999999 0.00116981 0.000674724 -0.999999 0.00154318 0 -0.999998 0.000435801 -0.00172735 -0.989987 -0.107214 0.0918182 -0.99555 0.0357654 0.0871791 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.996785 0.0566531 0.0566498 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999358 0.0087663 0.0347462 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.99979 0.0204957 0 -0.999897 0.0139049 0.003412 -0.999557 0.0257859 -0.0148763 -0.999704 0.0210635 0.0121518 -0.99979 0.0204957 0 -1 0 0 -0.999917 -0.00914936 0.00911134 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.99975 0.0158153 -0.0158153 -0.999938 -0.00189666 0.0109397 -1 0 0 -1 0 0 -1 0 0 -0.999839 0 0.0179347 -0.999856 0.00847272 0.0146892 -0.998596 -0.0338432 0.040762 -0.998671 -0.0257514 0.0446452 -0.998709 0 0.0508001 -0.999212 0.0396553 0.00189735 -0.999685 0.0243264 0.00612481 -0.997463 0.0512509 0.0494007 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.998905 -0.0453596 0.0114204 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999996 0 -0.002787 -0.999266 0.01795 0.0338325 -0.999992 -0.00204709 -0.00354904 -0.999995 0.00165934 -0.00287714 -0.999996 0 -0.002787 -1 0 0 -1 0 0 -0.999999 -0.00102544 -0.00102118 -0.999965 -0.00264867 0.00792679 -0.99997 0.00769325 0 -0.999968 0.00698522 -0.00402987 -0.999741 0.0154777 0.0166807 -0.999775 0.0183812 0.0106044 -0.999781 0.0209403 0 -0.999904 0.0113941 -0.00789675 -0.99955 0.00734194 -0.0291006 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999946 -0.00731945 -0.00731967 -1 0 0 -1 0 0 -1 0 0 -0.999289 -0.00825182 -0.0368019 -0.999992 0.00369876 0.00152645 -0.999994 0.00354579 0 -0.997583 -0.0236475 0.0653414 -0.997534 0.0700948 0.00370174 -0.999997 0 0.00245943 -0.999644 -0.0256891 -0.00722806 -0.995015 0.0580856 -0.0810646 -0.995668 0.0857706 0.0359033 -0.996355 0.0853088 0 -0.995267 0.0952435 -0.0192902 -0.99935 0.0248623 0.0261025 -0.99524 0.000991082 0.097448 -0.995154 0 0.0983292 -0.999992 0.00100842 0.00399698 -0.999944 -0.00986261 -0.00372955 -0.999936 0.00429962 -0.0104813 -0.999958 0 -0.00911949 -0.999871 0.0141748 -0.00756909 -0.999783 0.0202674 -0.00478009 -0.99954 0.00465205 -0.0299707 -0.999954 0.0095681 0 -0.999438 2.5643e-05 0.0335086 -0.999756 0.00444214 0.0216389 -0.999404 -0.0222595 -0.0263976 -0.999657 -0.0102362 0.0241182 -0.99943 0 0.0337631 -0.996636 -0.0573835 -0.0585217 -0.996242 -0.0586974 -0.0636908 -0.995457 0.0869913 0.0387062 -0.997191 0.0749072 0 -0.996236 0.0801249 -0.033067 -1 0 0 -1 0 0 0 1 0 0 1 0 0 0.843655 0.536885 0 0.976988 0.213295 -7.75141e-05 0.924403 0.381417 7.42367e-05 0.924403 0.381417 0 0.960645 -0.27778 -3.39054e-06 0.837337 -0.546686 0 0.843319 -0.537413 -2.91398e-05 0.976428 -0.215844 -1.56853e-05 0.952712 -0.303875 -3.21611e-05 0.885021 -0.465551 0 0.707425 -0.706788 0 0.707425 -0.706788 0 0.54936 -0.835586 0.000159022 0.379526 -0.925181 0 0.232702 -0.972548 -1.41455e-05 0.198027 -0.980197 -9.16584e-05 0.379526 -0.925181 3.02071e-05 0.4682 -0.883623 0 0 -1 0 0 -1 7.21008e-05 0.530647 -0.847593 0 0.544154 -0.838985 0 0.182789 -0.983152 -3.77878e-05 0.205353 -0.978688 0 0.999102 -0.0423736 -4.88289e-05 0.977536 -0.210767 0 0.154044 -0.988064 -9.62976e-05 0.971818 -0.235731 -0.000272881 0.679062 -0.734081 0.000120968 0.832063 -0.55468 0 0.182789 -0.983152 0 0.544154 -0.838985 0.000393938 0.47996 -0.877291 -8.01553e-05 0.571097 -0.820882 0.000362178 0.415234 -0.909714 -0.00114151 0.291464 -0.956581 -5.48333e-05 0.199894 -0.979818 4.02211e-05 0.20914 -0.977886 -0.000633471 0.546987 -0.837141 0 0.544154 -0.838985 0.000119918 0.546512 -0.837452 0 0.829856 -0.557978 -6.31338e-05 0.841742 -0.53988 4.6052e-05 0.839948 -0.542667 0 0.829856 -0.557978 -0.00049003 0.81397 -0.580907 0 0.972809 -0.231607 0 0.982746 -0.184961 5.19539e-05 0.975295 -0.220908 0.000802688 0.921619 -0.388096 0 1 0 0 1 0 0 0.972742 -0.231888 4.7336e-05 0.954231 -0.299071 3.50691e-05 0.883378 -0.468661 0 0.840211 -0.542259 -0.000103807 1 0.00025446 0.000274498 -0.98658 -0.163281 -3.69368e-05 0.868346 -0.495959 -3.54625e-05 0.951108 -0.308858 -2.06323e-05 0.958517 -0.285036 4.30331e-05 0.889152 -0.457612 0 0.707433 -0.70678 0 0.707433 -0.70678 0 0.549439 -0.835534 7.33963e-05 0.379553 -0.92517 0 0.232702 -0.972548 -7.35451e-05 0.379553 -0.92517 0 0 -1 0 0 -1 0 -0.232733 -0.972541 0.00010673 -0.379553 -0.92517 0 -0.54936 -0.835586 -5.59859e-05 -0.379553 -0.92517 0 -0.707433 -0.70678 0 -0.707433 -0.70678 0 -0.835733 -0.549137 0.000148131 -0.922444 -0.386132 4.45621e-06 -0.843138 -0.537698 0 -0.970143 -0.242536 -8.62719e-05 -0.922444 -0.386132 -7.62212e-06 -0.974604 -0.223935 0 -1 0 0 -1 0 -0.000591314 -0.527277 -0.849693 2.40457e-05 -0.842235 -0.539111 0 -0.154058 -0.988062 0 -0.99229 -0.123938 3.78853e-05 -0.978992 -0.203899 0.000264317 -0.56789 -0.823105 0.000364449 -0.810879 -0.585214 -0.000222426 -0.953027 -0.302886 0.000104547 -0.839814 -0.542875 -2.04666e-05 -0.572565 -0.81986 0 -0.575567 -0.817755 0 -0.1828 -0.98315 -0.000274561 -0.904001 -0.427529 -7.44145e-05 -0.85531 -0.518117 4.01029e-05 -0.209167 -0.97788 0 -0.564399 -0.825502 8.40541e-05 -0.564647 -0.825333 0.000582291 -0.411604 -0.911363 0.000227193 -0.851107 -0.524992 -4.71978e-05 -0.977865 -0.209235 0.000656576 -0.860297 -0.509793 0.000500422 -0.903089 -0.429453 0 -0.572034 -0.82023 -9.86293e-06 -0.571495 -0.820606 -2.48541e-05 -0.568382 -0.822765 -0.000784353 -0.397318 -0.917681 0 -0.1828 -0.98315 0.0006811 -0.473881 -0.880589 -4.41835e-05 -0.213829 -0.976871 0 -0.1828 -0.98315 0 0 -1 0 0 -1 0 -0.204994 -0.978763 7.96067e-05 -0.379553 -0.92517 0 -0.525056 -0.851068 -6.91673e-05 -0.379553 -0.92517 0 -0.707425 -0.706788 0 -0.707425 -0.706788 0 -0.840306 -0.542112 0.000261213 -0.922444 -0.386132 0 -0.840306 -0.542112 0 -0.972726 -0.231956 -7.31345e-05 -0.922444 -0.386132 0 -0.972726 -0.231956 0 -1 0 0 -1 0 0.000176202 -0.924376 0.381483 0 -0.850981 0.525197 0 -0.977878 0.209175 -4.64376e-05 -0.924376 0.381483 0 -0.70678 0.707433 0 -0.70678 0.707433 0 -0.549439 0.835534 0.000114932 -0.390685 0.920524 0 -0.549439 0.835534 0 -0.254554 0.967058 0 -0.549439 0.835534 0 -0.254554 0.967058 0 -0.254554 0.967058 -9.74629e-05 -0.390685 0.920524 0 0 1 0 0 1 0.000181367 -0.544827 0.838549 0 -0.1828 0.98315 8.9469e-05 -0.878134 0.478414 -4.81427e-05 -0.559763 0.828653 8.04212e-05 -0.238665 0.971102 0 -0.987844 0.155452 -3.66881e-05 -0.977919 0.208986 0 -0.0383455 0.999265 5.20968e-05 -0.219057 0.975712 -0.000769504 -0.920778 0.390086 2.60203e-05 -0.84182 0.539759 8.60248e-05 -0.559954 0.828524 0 -0.557236 0.830354 0 -0.557236 0.830354 0 -0.840419 0.541938 0 -0.230178 0.973149 0 -0.546321 0.837576 -3.64263e-05 -0.548242 0.83632 -4.1661e-05 -0.546229 0.837636 -0.000142289 -0.839272 0.543712 -0.000896938 -0.36276 0.931882 -0.000158002 -0.251897 0.967754 -5.31676e-05 -0.21884 0.975761 0.00122714 -0.390594 0.920562 0 -0.983067 0.183244 0 -0.840419 0.541938 0.000561618 -0.853944 0.520364 -0.000391272 -0.853668 0.520818 0.000350153 -0.936698 0.350139 3.6123e-05 -0.979649 0.200716 0 -1 0 0 -1 0 0 -0.977878 0.209175 -2.81655e-05 -0.961086 0.276249 0 -0.850981 0.525197 4.45928e-05 -0.795456 0.606011 -0.000112398 -0.924376 0.381483 7.377e-05 -0.924376 0.381483 0 -0.70678 0.707433 0 -0.70678 0.707433 0 -0.54936 0.835586 0 -0.254588 0.96705 0.000142911 -0.390685 0.920524 0 -0.254588 0.96705 0 -0.54936 0.835586 -0.000123851 -0.390685 0.920524 0 0 1 0 0 1 0 0.254554 0.967058 0 0.549439 0.835534 -1.45767e-06 0.5521 0.833778 -2.96793e-05 0.203981 0.978975 0 0.549439 0.835534 -0.000105934 0.390685 0.920524 0.000234015 0.390685 0.920524 0 0.254554 0.967058 0 0.70678 0.707433 0 0.70678 0.707433 0 0.837806 0.545968 0 0.837806 0.545968 7.08344e-05 0.924376 0.381483 0 0.970675 0.240396 0 0.970675 0.240396 -0.000114806 0.924376 0.381483 0 1 0 0 1 0 -5.04835e-05 0.210786 0.977532 -0.000124089 0.822318 0.569028 0 0.0383367 0.999265 0 0.999102 0.0423736 0.00116269 0.737483 0.675365 -0.000547611 0.412391 0.911007 -6.50586e-05 0.826519 0.562909 0 0.983067 0.183244 0 0.833958 0.551828 0 0.568038 0.823002 0 0.182789 0.983152 -0.000165916 0.566706 0.82392 -0.000462018 0.410314 0.911944 4.98663e-05 0.210238 0.97765 0 0.983067 0.183244 0 0.833234 0.552921 0 0.182789 0.983152 -0.00040049 0.509963 0.860196 0.000499862 0.938003 0.346627 0.000609215 0.327418 0.944879 -0.00042484 0.950107 0.311925 -4.95972e-05 0.977194 0.212348 4.86854e-05 0.977539 0.210756 -0.00071366 0.875085 0.48397 0.000169533 0.829874 0.557951 0.000722953 0.887439 0.460925 -0.000349934 0.840255 0.542191 0.000121927 0.559068 0.829122 0.000429664 0.391516 0.920171 8.32856e-05 0.538916 0.842359 0 0.54885 0.835921 0.000412488 0.345684 0.938351 0 0 1 0 0 1 0.000613142 -0.0894207 0.995994 0.00100033 -0.829094 0.559108 0.00314081 -0.831476 -0.555551 0.000966323 0.441683 -0.897171 -0.0040416 -0.323472 -0.946229 0.000594345 0.991137 -0.132842 0.000338109 0.716373 0.697717 0.00358385 -0.841684 -0.539958 -0.00116341 0.133063 0.991107 -0.00162392 -0.992822 0.119588 0.0272496 0.514551 -0.857027 -0.000175925 0.564141 -0.825678 -0.000157618 0.92864 -0.370983 -0.000195913 0.993514 0.113708 -0.00144188 -0.563311 0.826244 0.000956203 0.210248 0.977648 0.000287708 -0.854015 -0.520248 0.00106393 -0.975305 0.220859 8.6653e-06 -0.487057 -0.87337 0.000128858 0.583927 -0.811806 -0.000942615 -0.566973 0.823736 0.00150249 -0.397932 0.917414 0.000483396 -0.604747 0.796417 1.50799e-05 -0.880283 0.474449 1.20206e-05 0.750147 0.661271 0.000111846 -0.504743 -0.86327 0.000103815 -0.820891 -0.571085 -0.000211051 0.0790656 -0.996869 -7.06602e-05 0.10768 -0.994186 0.000100126 0.286065 0.95821 6.10235e-05 0.754331 0.656494 0.000190058 -0.996588 0.0825326 -9.88026e-05 -0.996247 -0.0865605 -0.000543233 -0.905377 0.424609 0 -0.50443 -0.863453 0.000458551 0.556021 -0.831168 0.000313317 0.737231 0.675641 -0.000202712 0.746728 -0.665129 0.000120625 0.933753 -0.357919 0.000214903 0.991345 0.131286 -0.000130696 0.974734 0.22337 0.000159945 0.294352 0.955697 0 -0.637457 0.770486 -0.000274488 0.976442 -0.215782 0 -0.818264 -0.574842 -0.000104306 -0.185145 0.982711 0.000253726 0.109905 -0.993942 -0.000478988 -0.412703 -0.910866 -0.000319063 0.22941 -0.97333 0.000512935 0.217015 -0.976168 2.88652e-05 -0.997057 -0.0766633 0.000113223 0.297611 0.954687 0 -0.933818 0.357749 -3.74166e-05 -0.176176 0.984359 0.00102587 -0.44455 -0.895753 7.12417e-05 0.705326 0.708883 -0.000316231 0.473707 -0.880682 0.000148042 0.74613 -0.665801 0.000263387 0.976706 -0.214583 -4.59309e-05 -0.938718 0.344685 -0.000117889 -0.211763 0.977321 2.62499e-05 -0.645609 0.763668 -0.000265684 -0.982814 -0.184598 0.000121138 -0.802316 -0.5969 -0.000469757 -0.133975 -0.990985 -0.000802755 -0.639989 -0.768384 -9.21578e-05 0.385943 0.922523 -0.000123508 0.80686 -0.590743 8.63372e-05 0.969467 0.24522 0.000183361 -0.666414 -0.745581 -0.00036648 -0.126606 -0.991953 0.000210867 -0.932516 0.361129 -9.25269e-05 0.996496 -0.0836399 -0.000205755 -0.982623 -0.185612 -2.93574e-05 -0.676729 -0.736232 -0.000174167 -0.983558 -0.180591 0.000196985 0.976223 0.216766 -0.000247187 0.739522 0.673132 -7.93975e-05 0.475146 -0.879907 -0.000545056 0.798682 -0.601753 0.000180211 -0.648913 0.760863 -0.00225292 -0.0681201 -0.997675 0.000271697 0.349126 0.937076 5.55848e-05 0.787711 0.616045 0.00287722 0.330975 -0.943635 5.00718e-05 0.745673 -0.666312 -3.13603e-05 0.996754 -0.0805078 0.000111545 -0.926498 0.376299 -0.000357583 0.999928 -0.0119929 0.000493725 -0.152172 0.988354 -0.000119618 -0.565061 0.825049 -0.00175152 -0.500396 -0.865795 -0.000616645 -0.953705 0.300744 0.000719709 -0.981848 -0.189667 0.00692784 -0.177673 -0.984065 -0.00205628 -0.904718 -0.426006 -0.000866385 0.148537 0.988907 -0.00120339 0.679545 -0.733633 0.00174305 -0.165255 0.986249 -0.00092973 -0.413647 0.910437 -0.00137559 -0.972621 0.232393 0.000638395 0.864078 -0.503358 0.00104819 0.105325 -0.994437 0.00189811 0.852722 0.522362 -0.00109702 0.997742 0.0671487 -0.000188437 0.20255 0.979272 -0.000194762 0.735199 0.677851 0.001166 -0.917588 0.397531 -0.000867715 -0.728305 -0.685253 -0.00112168 -0.973112 -0.230332 -0.000548301 0.323303 -0.946295 0.00086629 -0.8053 -0.592866 0.000219294 0.832898 -0.553426 -0.00100043 -0.188106 -0.982148 0.000291828 -0.823266 -0.567656 0.000325852 -0.999999 0.00153371 0.000533069 0.711705 0.702478 6.16117e-05 -0.401127 0.916023 1.61281e-05 -0.951145 -0.308744 0.00020892 -0.244678 -0.969604 0.000376388 -0.436505 0.899702 0.000282212 0.999956 0.0093279 -0.000455208 0.189548 0.981871 0 -0.176152 -0.984363 0.000124667 -0.844961 0.534828 0 0.608799 0.793325 0 0.118602 0.992942 0.000286939 -0.840162 0.542336 -0.000380182 -0.993761 0.111532 -4.37619e-05 0.861967 -0.506964 0 0.419364 -0.907818 0.000312895 0.999998 0.00206561 -0.00024041 -0.70252 -0.711664 -0.000298236 0.908012 0.418945 0 0.419364 -0.907818 0.000225678 0.927882 0.372873 0.000248416 -0.981648 0.190701 -0.00025218 -0.963803 -0.266614 0.000403483 -0.43599 0.899951 -0.000199572 -0.741261 0.671216 0.000231472 0.1253 0.992119 0 0.862905 -0.505366 -0.00157704 0.609436 0.792834 -0.000365 -0.259724 0.965683 -0.000321097 0.459821 0.888012 -2.08433e-06 0.863111 -0.505014 -0.000145062 0.998091 -0.0617569 0.000489338 -0.71485 -0.699277 -0.000122602 0.00489503 -0.999988 0.000647384 0.4993 -0.866429 0.000437941 -0.196267 -0.98055 0.00347741 0.407644 0.913134 -0.000393346 -0.448138 -0.893964 2.60772e-05 0.99296 -0.118452 -3.47936e-05 0.934171 0.356825 -4.9234e-05 -0.969222 -0.246189 4.09475e-05 -0.766582 -0.642146 0 0.521306 -0.85337 0.000296942 -0.731264 0.682094 0.000775331 -0.238017 0.971261 -8.3299e-05 -0.528699 0.848809 0 0.863283 -0.504721 8.87925e-05 -0.979725 0.200347 -9.80438e-05 -0.843422 0.537251 -1.14208e-05 0.00611021 -0.999981 0.000118205 -0.446272 -0.894897 5.13491e-05 0.523755 -0.851869 -0.00133639 0.820182 -0.572101 -0.000853638 -0.590967 -0.806696 -0.000448199 0.0687649 -0.997633 -0.000215811 0.176375 0.984323 8.37253e-05 -0.131051 0.991376 -0.000941169 -0.425514 0.904952 0.000123559 -0.958394 -0.285447 0.00106009 0.221221 -0.975223 0.000411641 -0.960977 0.276626 5.03329e-05 0.634852 0.772634 -0.000280445 0.191836 0.981427 -0.000311534 -0.849869 0.526994 -0.000212734 0.75412 -0.656737 0.000820347 -0.618981 -0.785405 -0.00035564 -0.383223 -0.923656 0.000187702 0.952012 0.30606 -2.74321e-06 0.992628 -0.121199 -0.000767522 0.993448 0.114278 1.11441e-05 0.647544 0.762028 0.00152074 0.198874 0.980024 -0.00104802 0.518396 0.85514 -0.000528209 -0.920147 -0.391573 0.00068272 -0.367505 0.930021 -0.00210225 0.664193 -0.747558 -0.00224825 -0.67394 0.738783 0.000673585 -0.294266 0.955723 0.00061169 -0.287828 0.957682 0.00182434 -0.976788 0.214202 -0.00165666 -0.815374 0.578932 0.000259636 0.703463 -0.710732 0.000467956 0.999496 0.0317456 0.000602602 -0.989678 0.143308 0.000562123 0.605669 0.795716 0.000368193 -0.688436 -0.725297 -0.000925239 0.894916 0.446234 -0.00106957 -0.959664 -0.281149 0.000129202 0.672598 -0.740008 9.26487e-05 -0.671549 -0.74096 0.00021562 0.0586294 -0.99828 -0.000257999 0.917841 -0.396949 -0.000381035 -0.182896 -0.983132 4.37291e-05 0.999963 -0.00859367 -0.000134612 -0.985154 0.171674 0.000231128 0.58168 0.813418 -0.000451681 0.114883 0.993379 0.000158785 -0.955628 -0.294576 -0.00018803 0.328533 -0.944492 0.000235908 -0.743014 0.669276 7.94297e-05 0.889708 0.456531 -0.000238051 -0.705002 -0.709205 -0.000447458 -0.996826 0.0796114 -0.000660485 0.0874879 0.996165 0.000317579 -0.295453 0.955357 0.000892674 -0.775818 -0.630956 -0.000243676 0.99769 0.0679293 -0.00038056 -0.597215 0.802081 0.0411247 -0.689454 0.723161 -0.0005062 -0.188766 -0.982022 0 0.0443606 0.999016 -3.22434e-05 0.856329 0.516431 6.18535e-05 0.604348 0.79672 0 -0.61532 0.788277 0.000356482 0.99481 0.101751 -0.000143966 0.538555 0.842591 -0.000216691 0.675242 -0.737596 6.20071e-05 0.920568 -0.390583 0.00011701 0.751287 -0.659976 -5.26308e-05 0.330231 -0.9439 0.000310327 -0.208182 -0.97809 0.000215876 -0.757516 -0.652817 3.96873e-06 -0.417451 -0.9087 0.000117086 0.0166104 0.999862 0.000168813 -0.601677 0.79874 -0.000272467 0.981703 -0.190418 -0.000610214 0.935642 0.352951 -0.000156422 -0.973512 0.228637 -0.000272847 -0.966576 0.256379 -0.000100813 -0.991298 -0.131638 0.000123703 0.400384 -0.916347 -0.00083039 -0.893326 -0.449408 -9.98189e-05 0.000510763 -1 -0.000505138 0.935098 0.354389 0.000552625 0.985156 0.171662 0.000336125 0.00953459 0.999955 0.000469267 -0.958572 0.28485 0.000422183 -0.895968 -0.444119 5.59525e-05 0.976797 -0.214165 -0.000177617 -0.929018 -0.370034 6.59671e-05 -0.41469 -0.909963 -9.66073e-05 0.000678295 -1 0.000364933 -0.622193 0.782864 -0.000242267 -0.359769 0.933042 -0.000429494 0.771213 -0.636577 -0.00098377 0.862552 -0.505967 -0.000330073 0.528386 0.849004 -0.000299339 -0.527398 -0.849618 -0.000401534 0.439504 -0.89824 -0.000120425 0.713246 0.700914 0.000244983 0.396821 0.917896 -0.00158884 0.177033 -0.984204 0.000300409 -0.632705 0.774393 9.21529e-05 -0.950458 0.310852 0.00129729 -0.902954 -0.429736 0.00167143 0.97542 0.220349 0.00287431 0.818987 -0.573805 0.00154767 0.212927 -0.977067 -0.000480979 -0.974158 0.225866 -0.00205995 -0.706985 -0.707225 0.000114223 -0.525801 -0.850608 -0.00075448 -0.411919 0.91122 -0.00129367 0.38302 -0.923739 -0.000454858 0.985705 -0.168479 -0.00147107 0.79859 0.601873 0.0011053 -0.473742 0.880663 0.00119668 0.665683 0.746234 0.000600013 0.600488 0.799634 0.000553058 -0.437566 -0.899186 0.00068103 0.666127 -0.745838 -0.00174392 0.0872298 0.996187 -0.00126804 0.305826 -0.952087 0.000201392 -0.561071 0.827768 0.000290739 -0.999997 0.00262573 -0.000695353 0.79193 -0.610612 -0.000341491 -0.864319 0.502944 -0.000624589 -0.803465 -0.595351 0.000264299 0.999585 -0.0288064 6.83037e-05 -0.997621 0.0689392 0.000399363 -0.421187 -0.906974 0.00320377 0.962605 -0.270891 0.000234485 -0.00886896 0.999961 -0.000353498 0.65465 -0.755932 -0.000637388 0.929591 0.368593 -0.000264575 0.531071 0.847328 0.00121916 -0.423466 -0.905911 0.000469615 0.247355 -0.968925 -0.00063403 0.0451476 -0.99898 0 -0.549211 -0.835684 -0.000289316 -0.13744 0.99051 0.000174214 -0.557449 0.830211 -0.000270274 0.531825 0.846854 0.000295115 0.956131 0.292941 0 -0.868946 -0.494906 0.00231178 0.593508 0.804825 0.000616662 0.0871341 -0.996196 -0.000649971 0.420401 -0.907338 0.000704307 0.633524 -0.773723 -0.00250439 -0.893085 0.449881 -0.000848376 0.953079 -0.30272 0.000493881 0.951519 0.307589 0.000518639 -0.999618 0.0276306 -0.000107837 0.809531 -0.587077 0.000299044 0.990575 -0.136969 0.000749619 -0.667948 0.744208 -0.000162066 -0.961737 0.273976 7.21972e-05 -0.5567 -0.830714 -4.50591e-05 -0.0758328 -0.997121 0.000284024 -0.17134 0.985212 0.00150171 0.428915 -0.903344 0.000178735 -0.657799 0.753194 -0.00138738 0.69429 -0.719694 -2.81479e-05 0.66346 0.748212 -7.14831e-05 -0.593531 0.804811 5.71678e-05 0.944868 0.327452 -0.000386587 -0.963009 0.269467 -4.29668e-05 -0.933657 0.358167 -0.000131023 -0.999419 -0.0340826 0.000244502 -0.867004 -0.498302 0.000685879 0.744777 -0.667313 -0.000270221 0.59063 0.806943 7.27142e-05 0.364859 0.931063 2.53299e-05 0.995778 -0.0917996 2.55617e-05 -0.996899 -0.0786939 0.000184074 0.31208 -0.950056 -1.647e-05 0.355447 -0.934696 -0.000125592 -0.058191 -0.998305 -0.000211698 0.000934363 1 4.04302e-05 -0.564685 -0.825307 -3.04774e-05 0.954088 0.299525 9.71573e-05 0.783114 -0.621878 -0.000201897 0.990723 -0.135896 -3.31843e-05 -0.811108 -0.584897 7.19869e-05 -0.0543228 -0.998523 0.00126024 -0.0209884 0.999779 -0.0011862 -0.359275 -0.933231 -0.000926199 0.320184 -0.947355 0.000845831 0.638555 0.769576 -0.000457306 0.282209 0.959353 -0.000856651 0.314439 -0.949277 0.000431637 0.803209 -0.595698 0.000811363 -0.33907 -0.940761 -0.000326931 0.991904 -0.126986 -6.59488e-05 -0.933636 0.358222 -0.000331991 -0.142536 -0.98979 0.000298224 -0.122118 0.992516 -7.04796e-05 -0.593525 0.804816 0.00180343 0.567279 -0.823523 -0.000351942 0.283677 0.95892 0.000418555 -0.997235 -0.0743107 -0.00067162 0.984567 -0.175008 9.13065e-05 -0.944852 0.327498 -0.000609008 -0.841848 -0.539714 -0.000352169 -0.859925 -0.510421 -2.49534e-06 0.953865 0.300235 0.000126452 0.666696 0.745329 -0.000742843 0.22461 0.974449 -0.000975013 0.863842 0.503762 0.000191538 -0.54624 0.837629 -0.00492344 0.285767 0.958286 -0.00391097 0.995064 -0.0991591 0.0149788 0.801645 0.597613 0.70678 -0.707433 2.4357e-07 0.706787 -0.707427 0 0.149613 -0.988745 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -7.67381e-05 0 -1 5.96676e-05 -6.5654e-05 -1 -4.22052e-05 4.21587e-05 -1 0.0424727 0 -0.999098 0.00912814 0 -0.999958 0.0284693 -0.0274577 -0.999218 0 0 -1 -0.00492337 0.00494433 -0.999976 -0.0140903 -0.0415521 -0.999037 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.000552524 -0.00111797 -0.999999 0.000509424 0 -1 0.000290057 -0.000616381 -1 0 0 -1 0 0.0131643 -0.999913 0.150787 -0.00857346 -0.988529 0 -0.1183 -0.992978 -0.468099 0.073517 -0.880612 -0.0503997 -0.0126411 -0.998649 -1.64829e-05 -4.1342e-06 -1 -1.40534e-05 1.40383e-05 -1 0 2.5557e-05 -1 1.8758e-05 -1.33581e-05 -1 0 0 -1 0 0 -1 0.0198134 -0.00499883 -0.999791 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0149802 -0.999888 -0.0155014 -0.0111186 -0.999818 0 -0.00859389 -0.999963 0.026174 0.0109079 -0.999598 0 0 -1 0 0 -1 -0.00642704 -0.00640889 -0.999959 -0.0127642 0 -0.999919 -0.0202978 -0.0121314 -0.99972 -0.0283655 0 -0.999598 -0.00712458 0.0282976 -0.999574 0.0115597 0.0123158 -0.999857 0.00472825 0.011296 -0.999925 -0.000110132 0 -1 0.000110705 -0.000223999 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -6.16924e-05 -0.000131099 -1 0 0 -1 0 0 -1 -4.10167e-05 5.67205e-05 -1 7.65638e-05 0 -1 4.21013e-05 -4.21712e-05 -1 -1.24554e-05 -4.94702e-05 -1 -0.0170267 -0.0676266 -0.997565 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0542121 0 -0.998529 -0.0225919 -0.0318198 -0.999238 -0.0253576 0.0523411 -0.998307 0.000130067 0 -1 0 0 -1 0.00142182 -0.0014178 -0.999998 0.00196017 0.0015497 -0.999997 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.00392943 -0.999992 -0.00295063 -0.0036304 -0.999989 0 -0.00154423 -0.999999 -0.00197651 -0.000498663 -0.999998 0.00213786 0.00441599 -0.999988 1.64634e-05 4.15364e-06 -1 1.40323e-05 -1.40553e-05 -1 0 -2.55571e-05 -1 -2.1928e-05 1.99341e-05 -1 0 0 -1 0 0 -1 -0.0816523 0.0899394 -0.992594 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.00143034 -0.999999 0.0753497 0.130095 -0.988634 0 0.00101446 -1 0.000497672 0.00136663 -0.999999 0 0 -1 0 0 -1 0.000669802 0.000672654 -1 0.00114249 0 -0.999999 0.00831437 0.0106922 -0.999908 0.0117039 0 -0.999932 0.042965 0.0217923 -0.998839 0.0216104 -0.0858336 -0.996075 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.01374 0.0459827 -0.998848 -0.00382495 -0.0151923 -0.999877 0.0211578 -0.0164067 -0.999642 0.0154102 -0.0285102 -0.999475 -0.0101318 0.0776623 -0.996928 -0.0495041 0.00980402 -0.998726 0.0142489 -0.0710009 -0.997374 -0.00891695 -0.0816383 -0.996622 0.0461622 0.0437104 -0.997977 0.0202006 0.0308248 -0.999321 0.00315675 -0.000412048 -0.999995 -0.11244 -0.143768 -0.983203 -0.0336112 -0.0242483 -0.999141 -0.0337609 0.00874101 -0.999392 -0.000503146 -0.0286808 -0.999588 -0.0376811 -0.0247228 -0.998984 -0.00888759 -0.069889 -0.997515 0.0145977 0.00598847 -0.999876 0.0195697 0 -0.999808 0.00733916 0.00833139 -0.999938 0.00729689 0.0044069 -0.999964 0.00107972 0.0115631 -0.999933 1.24544e-05 4.94677e-05 -1 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707498 -0.706715 0 -0.707498 -0.706715 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.707495 0.706718 0 -0.707495 0.706718 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.707091 -0.707123 0 -0.707091 -0.707123 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.706518 -0.707696 0 0.706518 -0.707696 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.707484 -0.70673 0 -0.707484 -0.70673 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.706529 -0.707684 0 0.706529 -0.707684 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.707484 -0.70673 0 -0.707484 -0.70673 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.978054 -0.208353 0 0.707111 -0.7071 0.00191611 0.47738 -0.878697 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.706518 0.707696 0 0.706518 0.707696 0 1 0 0 1 0 0 1 0 0 1 0 0 0.70652 -0.707693 0 0.70652 -0.707693 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.706519 0.707694 0 0.706519 0.707694 0 1 0 0 1 0 0 1 0 0 1 0 0 0.706519 -0.707694 0 0.706519 -0.707694 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.83114 0.556063 -0.000683759 0.87792 0.478808 0 0.000398408 1 1.19375e-05 2.776e-05 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707485 0.706728 0 -0.707485 0.706728 0 0 1 0 0 1 0 0 1 0 0 1 0 0.70653 0.707683 0 0.70653 0.707683 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707485 0.706728 0 -0.707485 0.706728 0 0 1 0 0 1 0 0 1 0 0 1 0 0.706519 0.707694 0 0.706519 0.707694 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 -8.36607e-05 1 0 -0.000122335 1 -1.23993e-06 -0.822611 0.568604 0.00067946 -0.869806 0.493393 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707497 -0.706717 0 -0.707497 -0.706717 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.707497 0.706717 0 -0.707497 0.706717 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -5.11417e-05 0 1 3.97805e-05 4.37717e-05 1 -2.81354e-05 -2.81043e-05 1 0.0095189 0 0.999955 0.00826839 0.00174769 0.999964 0.00757851 0 0.999971 0 0 1 0.034281 0.0344269 0.998819 0.052945 -0.0354315 0.997969 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0759495 0.997112 0.0389665 0.0955332 0.994663 0 0.120236 0.992745 -0.126451 0.0183581 0.991803 -0.0997099 0.025009 0.994702 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0556307 0.0140353 0.998353 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0349625 0.999389 0.0171693 0.0206609 0.999639 -0.00232415 0.0335241 0.999435 0 0.0330226 0.999455 0 0 1 0 0 1 -0.01289 0.0128536 0.999834 -0.0179421 -0.010815 0.999781 -0.00357875 0 0.999994 -0.0316919 0.0716024 0.99693 -0.0838457 0 0.996479 0.022273 -0.155036 0.987658 -0.00250655 -0.00995547 0.999947 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -4.3511e-05 -5.7924e-05 1 7.6556e-05 0 1 4.21005e-05 4.21705e-05 1 -1.24561e-05 4.94732e-05 1 -0.000634641 0.00252068 0.999997 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.00214385 0 0.999998 0.00220749 -0.00560845 0.999982 0.00487563 0 0.999988 0 0 1 -0.0044851 -0.00447244 0.99998 -0.00762663 0.0102975 0.999918 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.000255746 -0.000517471 1 -0.000231623 0 1 -0.000132414 -0.000281385 1 0 0 1 0 -0.0114224 0.999935 0.00348374 -0.0105671 0.999938 0 -0.00811878 0.999967 0.0115194 -0.00290628 0.999929 -0.0081102 0.0215357 0.999735 1.64632e-05 -4.15358e-06 1 1.40321e-05 1.4055e-05 1 0 2.5557e-05 1 -2.19286e-05 -1.99347e-05 1 0 0 1 0 0 1 -0.00111605 -0.00122932 0.999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.00537143 0.999986 0.0147717 0.004338 0.999882 0 0.0124136 0.999923 0 0 1 0 0 1 -0.00598446 0.00600994 0.999964 -0.0166518 -0.0274724 0.999484 0.032152 0 0.999483 0.032152 0 0.999483 0.0372591 -0.00251699 0.999303 0.0206912 0.0821834 0.996402 6.66208e-05 0 1 -6.58981e-05 -0.000133337 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 3.71892e-05 -7.90283e-05 1 0 0 1 0 0 1 0 0 1 -0.00662386 -0.000211282 0.999978 -0.000253903 -0.00265971 0.999996 0.000137578 -0.0021741 0.999998 0.00729135 -0.00142473 0.999972 -0.0686769 0.0372743 0.996942 0.0325204 -0.0594171 0.997703 0.00540867 -0.00140068 0.999984 0.000894924 -0.00964494 0.999953 0.00258072 -0.0102503 0.999944 0.00329787 -0.0108854 0.999935 0.088806 -0.0247446 0.995742 -0.0147513 -0.0749526 0.997078 -0.0752572 -0.0515801 0.995829 -0.0873192 -0.0113977 0.996115 -0.0837354 -0.00158345 0.996487 0.000326541 0.00162721 0.999999 0.00784536 -0.00918031 0.999927 -0.0604252 -0.0218136 0.997934 0.0148759 -0.0682814 0.997555 -0.0146532 -0.00191267 0.999891 8.30475e-06 -3.29853e-05 1 1 0.000371933 -6.23607e-06 1 -8.75316e-05 1.46761e-06 0.41306 0.910704 0 -0.41306 -0.910704 0 0.998768 -0.0496239 -0.000916138 0.925176 -0.379539 -0.000298789 0.738798 -0.673926 -0.000936941 -0.413061 -0.910704 0 0.925175 0.379539 0.000523489 0.706813 0.7074 0 0.70678 0.707433 -1.25926e-06 0.156132 0.987736 0 0.161707 0.986839 4.40647e-05 0.446952 0.894557 -0.0011148 0.840854 0.541259 0.00172112 0.980694 0.19555 -0.000493774 0.991588 0.129431 -0.000326821 0.81098 0.58507 0.00207204 0.706757 0.707457 -4.30931e-07 0.660033 0.751236 0.000915677 -0.047549 0.998869 -0.000927648 -7.67426e-05 1 -1.39801e-06 -0.706788 0.707425 0 -0.706762 0.707451 9.42859e-07 -0.991588 0.129431 0 -0.267617 0.963525 -0.000895283 -0.170031 0.985439 -0.000134974 -0.91629 0.400514 0.00104479 -0.938618 0.344955 0.00164752 -0.196763 0.980451 0 -0.706806 0.707408 7.24875e-08 -0.706808 0.707406 0 -0.999577 0.0290695 -0.000569995 -0.999133 -0.041624 0.000812301 -0.706818 -0.707396 0 -0.706794 -0.70742 -9.17505e-07 -0.386115 -0.922451 0 -0.196753 -0.980453 -0.000498493 -0.293016 -0.956107 0.00120677 -0.0929717 -0.995669 -0.000235553 -0.927885 -0.372868 0 -0.856 -0.516975 -0.00121587 -1 0 0 -0.991585 -0.129431 -0.00269373 -0.852572 -0.52261 0 -0.852572 -0.52261 0 -0.999539 -0.03037 -0.000153369 -0.925176 -0.379539 0 -0.999758 -0.0220097 0 -0.749462 -0.662047 0.000835655 -0.706754 -0.707459 -1.24283e-06 -0.706788 -0.707425 0 -8.22261e-05 -1 1.60434e-06 -0.0475409 -0.998869 0.000927588 0.660035 -0.751234 -0.000915792 0.706761 -0.707452 3.47865e-07 0.980948 -0.194271 -0.000422062 0.870826 -0.491579 -0.00347431 0.95067 -0.310201 -0.000998085 0.210893 -0.977509 -0.000601294 0.702207 -0.71197 0.00199411 0.156486 0.987674 -0.00357288 0.38116 -0.924508 -0.00149354 -0.987375 0.158399 0.000694761 0.997677 -0.0680804 -0.00243789 -0.629227 -0.777221 -0.000957392 0.682347 -0.731026 0.00186562 0.831903 0.554916 0.00239617 -0.217381 0.976086 0.00134062 -0.995082 0.0990552 -0.000179944 -0.441291 -0.897363 0.00129453 -0.807308 0.59013 -0.000332342 -0.4719 -0.881651 0.00115732 -0.151519 0.988453 -0.00136696 -0.984705 -0.174227 0.000197035 -0.606193 0.795316 0.00166902 0.98714 -0.159853 -0.00141109 -0.361083 -0.932533 -0.000391388 0.327425 -0.944876 -0.00148919 0.706257 -0.707952 0.00201247 0.763153 0.646217 -0.000965632 0.973471 0.228807 0.00106944 -0.982613 -0.185663 0.000324671 0.389331 0.921097 0.00168001 0.759602 -0.650386 -0.00146362 -0.650068 0.759873 -0.00193573 -0.98539 -0.17031 -0.000531838 -0.558094 0.829777 0.000243732 0.223682 0.974662 -0.000615317 -0.99735 -0.07275 0.00035265 -0.775428 0.631436 -0.000395976 0.864322 0.502938 -0.000994102 -0.319382 -0.947626 0.000534059 0.705668 -0.708538 -0.00260351 -0.411665 -0.911333 0.00184907 0.398936 0.916978 0.000805045 -0.591852 0.806046 0.000955213 0.99028 0.139073 0.00209202 -0.0990328 -0.995083 -0.00140787 0.414923 -0.909856 0.000711989 -0.969996 -0.24311 -0.00216004 0.789783 0.61338 -0.00276299 0.813814 -0.581124 -0.00104712 -0.434927 -0.900464 0.00155987 -0.994957 -0.100298 -0.000521362 0.443606 0.896218 0.00247435 0.969795 -0.243911 0.00211967 -0.462309 0.886716 -0.0021316 -0.767985 0.640465 0.00175217 0.706493 5.34307e-07 0.70772 0.133945 0 0.990989 0.522841 -0.00301631 0.852425 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -6.39321e-05 -1 0 -3.5144e-05 -1 -3.5144e-05 0.0233057 -0.999728 0 0.0135584 -0.999749 0.0178387 0.00110744 -0.999999 0 0 -1 0 0.000634864 -1 0.000634917 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.000108149 -1 0.000218564 0.000112882 -1 0 6.25439e-05 -1 0.000132909 0 -1 0 0 -1 0.000929485 0.0262062 -0.999447 0.0204923 0 -0.999579 0.0290313 -0.0241611 -0.999696 -0.00498635 -0.00629933 -0.999979 0.00157954 -8.23293e-06 -1 2.06438e-06 -7.01971e-06 -1 -7.01971e-06 0 -1 -1.27894e-05 1.09588e-05 -1 9.94763e-06 0 -1 0 0 -1 0 -0.0226874 -0.999726 -0.0057223 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999831 -0.0183718 0.024171 -0.999707 -0.000931387 0 -0.999994 0.00339125 0 -1 0 0 -1 0 -0.00129055 -0.999998 0.00128156 -0.000868667 -0.999994 0.003388 -0.00448065 -0.99999 0 -0.00260051 -0.99999 -0.00361216 0.000143221 -1 0 5.03043e-05 -1 0.000199443 -4.8351e-05 -1 0.0001128 -8.93455e-05 -1 0 8.74348e-05 -1 0.000176701 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -4.97442e-05 -1 0.000105709 0 -1 0 0 -1 0 -4.54285e-05 -1 -5.88609e-05 7.65658e-05 -1 0 4.21218e-05 -1 4.21232e-05 -1.24642e-05 -1 4.94172e-05 -0.00697324 -0.999593 0.027647 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.00715482 -0.999974 0 -0.0117138 -0.999928 -0.00268031 -0.135244 -0.990812 0 -0.026687 -0.984533 0.173153 0 -1 0 -0.0112872 -0.999873 -0.0112872 0.0352155 -0.977061 -0.210027 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0197152 -0.999611 -0.019714 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.99961 -0.0279123 -0.0131078 -0.999422 -0.0313584 0 -0.99925 -0.038712 0.0462842 -0.998897 0.00790525 0.000547681 -1 -0.000138136 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0483418 -0.998757 0.0121214 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999732 0.0231444 -0.0621125 -0.997868 -0.0200207 0 -0.998954 -0.0457218 0 -1 0 0 -1 0 0.0194044 -0.999621 -0.0195422 0.0250427 -0.999679 0.00386336 0.0184712 -0.999829 0 0.0186133 -0.999826 -0.00106072 0.0194374 -0.999811 0 0.00798699 -0.999467 0.0316668 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.117741 -0.98604 0.117741 -2.13387e-06 -1 -8.46034e-06 7.03689e-06 -1 -7.01769e-06 5.65679e-05 -1 5.80192e-05 0.00453652 -0.999828 -0.0179864 -0.00644945 -0.999939 -0.00893118 -0.000864245 -0.999979 -0.00639411 0.0564702 -0.998189 -0.0207292 0.014946 -0.999267 0.035256 -0.00495497 -0.999988 -0.000185171 0.00467194 -0.999608 0.0276053 0.0170882 -0.999833 0.00651533 0.00593072 -0.999855 -0.0159428 0.0329614 -0.999383 -0.012118 -0.0478237 -0.997243 -0.0567336 -0.0356362 -0.99922 0.0170427 -0.00145281 -0.999054 0.0434525 0.0144909 -0.999198 0.0373291 -0.0145944 -0.999887 0.00365846 -0.405122 -0.262731 0.875699 -0.760794 -0.323904 -0.562387 -0.165637 -0.984007 0.0655263 0.00894148 -0.999902 0.0107534 1.04026e-05 -1 -4.1244e-05 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -0.708072 0 0.70614 -0.708072 0 0.70614 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.707118 0 -0.707095 -0.707118 0 -0.707095 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.707105 0.00219272 0.707105 -0.933492 0 0.358599 -0.326233 0 0.945289 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0.707095 0 0.707118 0.707095 0 0.707118 0 0 1 0 0 1 0 0 1 0 0 1 -0.708061 0 0.706152 -0.708061 0 0.706152 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0.707107 0 0.707107 0.707107 0 0.707107 0 0 1 0 0 1 0 0 1 0 0 1 -0.708061 0 0.706152 -0.708061 0 0.706152 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 0.260959 0 0.96535 0.885935 0 0.46381 0.931534 -0.000702814 0.363653 0.353324 0.000371574 0.935501 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0.70614 0 -0.708072 0.70614 0 -0.708072 1 0 0 1 0 0 1 0 0 1 0 0 0.707095 0 0.707118 0.707095 0 0.707118 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0.706129 0 -0.708084 0.706129 0 -0.708084 1 0 0 1 0 0 1 0 0 1 0 0 0.707095 0 0.707118 0.707095 0 0.707118 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0.878184 0 -0.478324 0.816648 -0.000881617 -0.577136 0.000132303 2.24116e-06 -1 6.2172e-05 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.707107 0 -0.707107 -0.707107 0 -0.707107 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.706152 0 -0.708061 0.706152 0 -0.708061 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.707107 0 -0.707107 -0.707107 0 -0.707107 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.70614 0 -0.708072 0.70614 0 -0.708072 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 -3.71826e-05 0 -1 -1.25085e-05 7.91066e-07 -1 -0.805795 0 -0.592194 -0.822669 -0.000240473 -0.568521 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -0.708072 0 0.70614 -0.708072 0 0.70614 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.707107 0 -0.707107 -0.707107 0 -0.707107 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -6.39402e-05 1 0 -3.51867e-05 1 3.50907e-05 0.0315042 0.999504 0 0.0855826 0.996331 0 0.0577577 0.997636 0.037236 0 1 0 0.0652273 0.995706 -0.0656905 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.990959 -0.134162 -0.0620226 0.993362 -0.0968768 0 0.998389 -0.0567312 -0.0950153 0.995388 0.0132187 -0.00341337 0.999994 -0.000855877 -1.0306e-05 1 -2.58415e-06 -8.78804e-06 1 8.76435e-06 0 1 1.59524e-05 1.36727e-05 1 -1.23848e-05 0 1 0 0 1 0 0 1 0 -0.00237073 0.999997 0.000597944 0.0133405 0.999742 -0.0183694 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999998 0.00195991 0.0149906 0.999853 -0.00832031 0 0.999862 -0.0166303 0 1 0 0 1 0 -0.00811021 0.999934 -0.00811021 0.00499006 0.998836 -0.0479675 -0.0886614 0.996062 0 -0.0886614 0.996062 0 -0.00411631 0.998704 0.0507289 -0.00969097 0.999215 0.0384221 -0.0410238 0.997109 0.0639559 0.0123705 0.997982 0.0622747 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.108799 0.988093 0.108792 5.30585e-07 1 -2.10362e-06 -1.75505e-06 1 -1.75511e-06 -4.84351e-05 1 5.87701e-05 7.33737e-05 1 0 4.03188e-05 1 -4.04304e-05 -1.19623e-05 1 -4.74271e-05 -0.00126652 0.999987 -0.00502142 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.147517 0.98906 0 -0.0350748 0.985267 0.167388 -0.00500259 0.999988 0 0 1 0 -0.0147854 0.999783 0.0146824 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.000770074 0.999999 -0.00155628 0.0006975 1 0 0.000398522 1 -0.00084688 0 1 0 0 0.999565 0.0294874 0.00932894 0.999658 0.0244287 0 0.999849 0.0173497 0.0314368 0.999474 0.00792912 -0.0103176 0.999013 -0.043206 1.23352e-05 1 3.11124e-06 1.05135e-05 1 -1.05419e-05 0 1 -1.91826e-05 -1.40744e-05 1 1.00163e-05 0 1 0 0 1 0 -0.198063 0.97893 0.0496638 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.995684 0.092805 0.0243553 0.992058 0.123404 0.077127 0.995026 0.0630401 0 0.999987 0.00519012 0 1 0 0 1 0 0.00293164 0.999991 0.00293189 0.00417951 0.999991 0 8.59918e-05 0.999987 -0.00512329 -0.00367459 0.999993 0 -0.00243644 0.999995 0.00219516 -0.000149897 1 0 0.00014838 1 -0.000299868 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -8.36674e-05 1 -0.000177798 0 1 0 3.39132e-06 1 -3.24176e-05 -0.0533865 0.988942 -0.138364 -0.00289988 0.999996 -0.000574076 -0.00476182 0.999728 0.0228448 0.0304417 0.999533 -0.00258904 -0.00136696 0.999997 -0.00222865 0.00423883 0.99999 0.0016934 0.0152957 0.999883 -0.00065073 0.0112101 0.999929 0.00406819 -0.00683344 0.999948 0.00755477 0.0725989 0.997023 0.0259567 0.00673706 0.999575 0.0283642 -0.00844662 0.999868 0.0138841 -0.00127074 0.999921 0.0124908 0.0992061 0.992885 0.0658609 0.00674527 0.996916 -0.0781916 -0.00739946 0.99996 -0.00505572 -0.00325131 0.999995 0.000645909 -0.0245313 0.999616 -0.012874 0.0631421 0.942779 -0.327386 0.00164345 0.999991 -0.00383407 0.0272889 0.999516 0.014964 -0.0728789 0.996218 0.0473032 -0.0232254 0.993889 0.107914 -0.0283433 0.999583 0.00561101 3.21448e-05 1 4.40902e-05 0.946681 -0.00629255 0.322112 0.999679 0.000497133 -0.0253387 0.707107 -2.80991e-07 -0.707107 0.707122 2.96273e-07 -0.707092 0.095706 0.000254152 -0.99541 0.173167 -0.000329209 -0.984892 0.945652 0.000580733 -0.325181 0.320569 0.000441202 -0.947225 0.868282 -0.000834685 -0.49607 0.980832 0.000113278 -0.194853 0.983359 0 -0.181673 0.707063 -1.88232e-06 -0.707151 0.707114 0 -0.707099 0.0470113 0.000918246 -0.998894 0.000109371 2.13628e-06 -1 -0.382782 -0.00052125 -0.923838 -0.707114 0 -0.707099 -0.707078 1.34854e-06 -0.707136 -0.986154 0 -0.165835 -0.93788 -0.00156601 -0.346955 -0.838565 0.000505855 -0.544801 -0.157877 0.000186287 -0.987459 -0.13261 -5.23897e-06 -0.991168 -0.194838 0 -0.980835 -0.707122 -2.93153e-07 -0.707092 -0.707114 0 -0.707099 -0.999791 -0.000400057 -0.0204539 -0.999796 0.000394324 0.0202011 -0.706479 0 0.707734 -0.706473 -2.28942e-07 0.70774 -0.393976 0 0.919121 -0.393976 0 0.919121 -0.338611 0.00174626 0.940925 -0.195127 0 0.980778 -0.990508 0.000191136 0.137456 -0.915925 -0.00120285 0.401347 -0.980963 0 0.194197 -0.988705 0.000223954 0.149871 -0.706414 0 0.707799 -0.682488 0.000906746 0.730896 0.0486782 -0.000948609 0.998814 8.76636e-05 -2.89828e-06 1 0.706461 0 0.707752 0.706429 1.17319e-06 0.707784 0.980963 0 0.194197 0.965983 -0.000329035 0.258607 0.968386 -0.000187339 0.249456 0.359155 6.2242e-05 0.933278 0.351572 0 0.936161 0.999997 0.00233323 0.00118439 0.404558 -0.000977535 -0.914512 -0.957871 -0.00160917 -0.287193 -0.832908 -0.00135332 0.55341 0.266532 -0.00177148 0.963825 -0.466992 -0.00108725 -0.884261 -0.863329 -0.00024298 -0.504641 0.0756075 0.00254591 -0.997134 0.989913 0.000332845 -0.141678 -0.594359 0.00111591 0.804199 0.326962 -0.00265494 0.945034 -0.958802 0.00649958 0.284 -0.981038 0.00127156 -0.19381 0.227592 -0.00371121 0.973749 -0.776937 -0.000887462 0.629578 -0.2714 0.000811942 0.962466 0.965234 -0.00336027 -0.261365 0.915398 0.00198309 0.402546 -0.911354 -0.00165612 -0.41162 0.784267 0.00124142 -0.620422 -0.145302 -0.000791735 -0.989387 0.28313 -0.00238692 0.959079 -0.111078 0.0031574 0.993807 -0.944356 0.00208411 0.328918 -0.465438 0.00290807 -0.885076 0.186588 -0.00180885 -0.982437 -0.880014 -0.00170314 -0.474944 -0.218059 -0.000276281 0.975936 0.117976 -0.00106875 -0.993016 0.968974 -0.00159886 -0.247159 0.652761 -0.000442982 0.757563 0.837203 0.00107762 -0.546891 -0.545072 0.00100975 -0.838388 0.797332 0.00205736 0.603537 -0.95661 -7.76119e-05 -0.29137 -0.867267 0.000108732 0.497844 -0.606175 0.0038312 0.795322 0.999331 -0.00228767 0.0364946 -0.108761 -0.0059461 -0.99405 0.997111 -0.00168082 0.0759434 0.3323 0.00248209 -0.94317 -0.24441 -0.00279503 -0.969668 0.0715687 -0.000466534 0.997436 -0.600696 7.76322e-05 0.799478 0.294455 0.00190458 0.955664 -0.998148 0.00210067 -0.0607888 0.26311 0.0039996 -0.964758 -0.605399 0.000134271 0.795922 -0.987634 0.000566606 -0.156774 0.70678 -0.707433 3.48996e-07 0.706789 -0.707424 0 0.142881 -0.98974 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -7.67381e-05 0 -1 5.96675e-05 -6.56543e-05 -1 -4.2205e-05 4.21583e-05 -1 0.143585 0 -0.989638 0.143585 0 -0.989638 0 0 -1 0.0456251 -0.0458193 -0.997907 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.000436336 -0.000882869 -1 0.000365297 0 -1 0.000212055 -0.000450629 -1 0 0 -1 0 -0.0910111 -0.99585 -0.0335064 -0.0716038 -0.99687 0 -0.0497767 -0.99876 -0.0683068 0.00987064 -0.997616 -0.00243654 -0.000611128 -0.999997 -1.64828e-05 -4.13417e-06 -1 -1.40536e-05 1.40385e-05 -1 0 2.55578e-05 -1 2.18872e-05 -1.98506e-05 -1 0 0 -1 0 0 -1 0 0 -1 0.0299382 -0.00755327 -0.999523 0.0183645 0.00583878 -0.999814 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0292732 -0.999571 0.000722173 -0.0297646 -0.999557 0 -0.0302691 -0.999542 0 0 -1 0 0 -1 -0.0219084 -0.0218465 -0.999521 -0.04218 0 -0.99911 -0.0273524 0.0255484 -0.999299 -0.0112131 0 -0.999937 0.00362397 0.0162282 -0.999862 0.000344689 -0.00136903 -0.999999 -0.000232418 -0.00115812 -0.999999 -0.000315351 0 -1 0.000349067 -0.000706291 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.000180321 -0.000383191 -1 0 0 -1 0 0 -1 -4.09488e-05 5.66877e-05 -1 7.65658e-05 0 -1 4.21016e-05 -4.21715e-05 -1 -1.24552e-05 -4.94696e-05 -1 -0.00464642 -0.0184546 -0.999819 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.086976 0 -0.99621 0.0109623 -0.0914732 -0.995747 -0.0800342 0.0132385 -0.996704 -0.0726866 0 -0.997355 0 0 -1 -0.0359716 0.03587 -0.998709 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.00109538 0.00602453 -0.999981 0 0 -1 0 0 1 0 0 -1 0 0.0480504 -0.998845 0.0279461 0.0282649 -0.99921 0 0.00885444 -0.999961 0.00827912 0.00208878 -0.999964 0.00637871 -3.30351e-05 -0.99998 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.021596 0.023788 -0.999484 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0418241 -0.999125 0.0491987 0.0342132 -0.998203 0 0.0099374 -0.999951 -0.0511704 -0.024261 -0.998395 0 0 -1 0 0 -1 0.0061112 0.00613722 -0.999963 0.00338905 0.010759 -0.999936 0.0267464 0 -0.999642 0.0267464 0 -0.999642 0.0395523 0.00833682 -0.999183 0.0201233 -0.0799268 -0.996598 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.70694 -0.706961 -0.0210071 0 0 -1 0 0 -1 0 0 -1 -0.00779847 0.100755 -0.994881 0.00628732 0.0249723 -0.999668 -0.00386201 0.0226002 -0.999737 -0.0188326 0.00142902 -0.999822 0.104783 0.00381718 -0.994488 0.0022106 -0.0502149 -0.998736 0.0457332 -0.0455083 -0.997917 0.00296004 -0.0147496 -0.999887 0.00995469 -0.00696843 -0.999926 -0.00080075 -0.00511762 -0.999987 0.00478758 0.0045565 -0.999978 -0.0377173 -0.0230585 -0.999022 -0.110281 0.0299147 -0.99345 -0.112309 0.0705392 -0.991166 0.0455953 -0.120791 -0.99163 0.0513208 -0.119613 -0.991493 0.0174175 0.00227349 -0.999846 0.0301041 -0.0242174 -0.999253 -0.0394167 0.00422641 -0.999214 -0.0113281 0.00988588 -0.999887 1.24545e-05 4.94673e-05 -1 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707498 -0.706715 0 -0.707498 -0.706715 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.707492 0.706721 0 -0.707492 0.706721 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.473481 -0.880804 0.000412537 -0.98528 -0.170946 0 -0.95126 -0.30839 -0.000413336 -0.522936 -0.852372 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.706515 -0.707698 0 0.706515 -0.707698 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.707481 -0.706733 0 -0.707481 -0.706733 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.706526 -0.707687 0 0.706526 -0.707687 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.707481 -0.706733 0 -0.707481 -0.706733 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0.00904531 -0.999959 -0.000271361 0.811012 -0.58503 0 0.361145 -0.932509 0.000475862 0.888756 -0.45838 -0.00116519 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.706515 0.707698 0 0.706515 0.707698 0 1 0 0 1 0 0 1 0 0 1 0 0 0.70652 -0.707693 0 0.70652 -0.707693 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.70652 0.707693 0 0.70652 0.707693 0 1 0 0 1 0 0 1 0 0 1 0 0 0.70652 -0.707693 0 0.70652 -0.707693 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.816664 0.577113 0.000904694 0.879778 0.475384 0 4.97379e-05 1 -4.51439e-06 0.000186258 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707487 0.706727 0 -0.707487 0.706727 0 0 1 0 0 1 0 0 1 0 0 1 0 0.706532 0.707681 0 0.706532 0.707681 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707487 0.706727 0 -0.707487 0.706727 0 0 1 0 0 1 0 0 1 0 0 1 0 0.70652 0.707693 0 0.70652 0.707693 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 -6.25422e-05 1 0 -0.000241383 1 -5.68134e-06 -0.901118 0.433573 0 -0.595894 0.803062 0.00117448 -0.915815 0.4016 0.00018397 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707498 -0.706715 0 -0.707498 -0.706715 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.707498 0.706715 0 -0.707498 0.706715 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -5.11313e-05 0 1 3.97701e-05 4.37605e-05 1 -2.81396e-05 -2.81085e-05 1 0.0189425 0 0.999821 0.0263944 -0.0118276 0.999582 0.0319527 0 0.999489 0 0 1 0.0140967 0.0141567 0.9998 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0177964 0.999842 -0.00861177 0.011726 0.999894 0.00768874 0.0117064 0.999902 0 0.0174206 0.999848 -0.0250654 0.00628685 0.999666 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0429343 0.0108321 0.999019 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.033545 0.999437 0.0206649 0.015156 0.999672 0.0180133 0.0445303 0.998846 0 0.0568262 0.998384 0 0 1 0 0 1 -0.0296945 0.0296106 0.99912 -0.040333 0 0.999186 -0.0291741 -0.0143956 0.999471 -0.0192211 0 0.999815 -0.00446112 -0.0177186 0.999833 -0.0269754 -0.0378695 0.998919 0.0215996 -0.0516 0.998434 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.132354 -0.13235 0.982327 0 0 1 0 0 1 -4.35128e-05 -5.79254e-05 1 7.6556e-05 0 1 4.21002e-05 4.217e-05 1 -1.2456e-05 4.94726e-05 1 -0.00194707 0.00773337 0.999968 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0205652 0 0.999789 0.001513 -0.0328442 0.999459 -0.00100645 0 1 0.00133585 0.003317 0.999994 0 0 1 -0.000751457 -0.000749334 0.999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.000109192 -0.000220935 1 -0.000111682 0 1 -6.21786e-05 -0.000132133 1 0 0 1 0 -0.00151816 0.999999 -0.0111805 -0.00774236 0.999908 0 -0.0122668 0.999925 -0.00717781 -0.0216176 0.999741 0.0422616 -0.0106624 0.99905 -9.87819e-05 2.49222e-05 1 -8.41903e-05 -8.43272e-05 1 0 -0.000153329 1 0.000112553 8.0149e-05 1 0 0 1 0 0 1 0.00957191 0.00240081 0.999951 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.00449094 0.99999 0.0130263 0.0143005 0.999813 0 0.0207893 0.999784 0 0 1 0 0 1 -0.00953376 0.00957435 0.999909 -0.0303523 -0.063638 0.997511 0.0464144 0 0.998922 0.0397727 0.0146342 0.999102 0.0293893 0 0.999568 0.00228545 0.0594029 0.998232 0.00755271 0.0299983 0.999521 2.25764e-05 0 1 -2.16146e-05 -4.37344e-05 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1.25101e-05 -2.65846e-05 1 -0.042024 0.030832 0.998641 0 0 1 0 0 1 0 0 1 0.00676123 -0.00133904 0.999976 -0.0285255 -0.0258278 0.999259 -0.00673477 -0.0199829 0.999778 0.014002 0.0297244 0.99946 0.0366047 -0.00454149 0.999319 0.0338148 -0.00623538 0.999409 0.0322434 -0.0251254 0.999164 0.00402682 -0.0503324 0.998724 -0.00481111 -0.0291143 0.999565 4.95166e-05 -3.85233e-05 1 -6.9258e-05 -0.000113407 1 0.0923525 -0.0410243 0.994881 0.0614511 0.037592 0.997402 -0.0697253 0.0950361 0.993029 -0.0327366 -0.00648336 0.999443 -0.0298074 0.0118543 0.999485 0.00334868 0.0345298 0.999398 0.00233892 0.00620221 0.999978 0.00783084 -0.00169923 0.999968 -0.00511282 0.000145664 0.999987 -0.00276503 -0.00329571 0.999991 0.0146996 0.0410703 0.999048 1 0.000546734 -9.16698e-06 1 -8.7532e-05 1.46763e-06 0.420934 0.907091 0 -0.420934 -0.907091 0 0.998785 -0.0492814 -0.000916477 0.92517 -0.379553 -0.000296896 0.735484 -0.677542 -0.000941812 -0.420934 -0.907091 0 0.933909 0.35751 0.000492342 0.706786 0.707427 1.98346e-06 0.682884 0.730527 -0.000902661 0.381483 0.924376 0 -0.0241032 -0.0584047 -0.998002 0.963504 0.267692 0.000675935 0.923172 0.384388 -0.000372631 0.165421 0.986223 0 0.215191 0.976572 -0.000623525 0.980947 0.194273 0.00049055 0.853187 0.521596 0.00303844 0.706724 0.707489 -1.10225e-06 0.660026 0.751242 0.000914362 0.000186032 1 3.43099e-06 -0.000175419 1 -3.62129e-06 -0.386065 0.922471 -0.00052019 -0.706788 0.707425 0 -0.706713 0.7075 2.74378e-06 -0.981785 0.189994 0.000433326 -0.989347 0.145575 0 -0.0797497 0.996815 0.000202053 -0.546222 0.837636 -0.00284913 -0.822106 0.569334 0.000678469 -0.386132 0.922444 0 -0.196763 0.980451 0.000498517 -0.70681 0.707404 -2.12772e-07 -0.706804 0.70741 0 -0.999577 0.0290702 -0.000570391 -0.999117 -0.0419979 0.000819194 -0.706822 -0.707391 0 -0.706797 -0.707416 -9.51036e-07 -0.196763 -0.980451 0 -0.171483 -0.985187 -0.000127658 -0.98862 -0.150438 0.000158458 -0.196934 -0.980417 -0.000214731 -0.537023 -0.843566 0.00161589 -0.888954 -0.457995 -0.00121407 -0.991588 -0.129431 0 -0.706738 -0.707475 -1.81027e-06 -0.706788 -0.707425 0 -0.386132 -0.922444 0.000520956 0.0474803 -0.998872 -0.000928214 5.47154e-05 -1 -2.85574e-06 0.706788 -0.707425 0 0.706771 -0.707442 6.09265e-07 0.980947 -0.194273 0 0.979308 -0.202376 -4.11389e-05 0.491639 -0.870799 -0.000784443 0.972377 -0.233415 0.000238771 0.238508 -0.97114 0.000912223 -0.185858 -0.982413 0.0179364 0.739901 -0.672714 -0.00150527 0.393175 0.919463 0.00119977 -0.862172 -0.506613 -0.00161721 0.972599 0.232486 -0.0008748 0.234893 -0.972021 0.000975118 -0.0823497 -0.996603 -0.000434779 -0.4435 0.896274 0.000564032 -0.438821 -0.898572 0.00201947 -0.9998 -0.0199209 0.00148766 -0.941411 0.337261 -0.000808976 0.979218 -0.202794 0.00257524 0.490861 0.871238 -0.000187694 -0.50514 0.863037 -0.000185139 0.426525 -0.904475 -0.00112682 -0.413065 0.9107 -0.0015431 -0.613255 -0.789883 -0.00164858 -0.220461 -0.975395 0.00110138 0.546798 0.837263 -0.00157527 -0.991956 0.126567 -0.00196885 0.98722 -0.159355 -0.00165363 -0.879182 -0.476486 0.000984725 0.941703 0.33644 0.00172762 0.671429 -0.741067 0.00143913 0.329542 0.944141 0.000496681 -0.765061 0.643954 0.00212503 -0.205271 -0.978701 -0.00279585 -0.980945 0.194265 -0.00276875 -0.606868 -0.794802 0.00122395 -0.999972 0.00750711 -0.000472409 0.886352 -0.463008 -0.0019435 0.388489 -0.921452 0.00184206 0.84512 0.534577 -0.000717203 0.0485272 0.998822 -0.000111612 0.98587 0.167482 0.0031098 -0.251713 0.967794 0.00394181 0.960729 0.277475 -0.00281433 -0.37497 -0.927034 -0.00244904 0.731314 -0.682041 -0.000413444 -0.947964 -0.318285 0.00770298 -0.867408 0.497573 -0.00491449 0.184914 0.982754 -0.000814609 -0.273669 -0.961824 0.00084604 -0.616242 0.787556 0.00135637 -0.02796 -0.999597 -0.00488682 0.907077 -0.420959 0.00209654 -0.988103 -0.15374 -0.00396895 -0.937141 -0.348951 -0.000118093 -0.583775 0.811916 0.000190977 0.586214 0.810153 0.00248694 0.706461 9.80035e-07 0.707752 0.163302 -0.000189301 0.986576 0.642191 0.00236928 0.766541 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -6.39321e-05 -1 0 -3.51444e-05 -1 -3.51444e-05 0.0210809 -0.999778 0 0.020879 -0.999782 0.00029707 0.0206761 -0.999786 0 0 -1 0 0.0118361 -0.99986 0.0118361 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.00866517 -0.998826 0.0476564 0 1 0 0 -1 0 0 -0.999849 0.0173692 0.0106724 -0.999626 0.0251985 -0.00991015 -0.999611 0.0260779 0 -0.999817 0.0191275 -0.0347901 -0.999394 -0.000728105 -0.0112579 -0.999933 0.00282283 -8.23306e-06 -1 2.06438e-06 -7.01932e-06 -1 -7.01932e-06 0 -1 -1.27881e-05 1.09597e-05 -1 9.94842e-06 2.0423e-05 -1 1.85386e-05 -2.802e-05 -1 2.80958e-05 0.00380335 -0.999992 0.000908029 0.0264389 -0.999307 0.0262036 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999995 0.00318959 0.0876446 -0.994154 0.0630594 0 -0.996964 0.077864 0 -1 0 0 -1 0 -0.0298595 -0.999114 0.0296489 -0.0488182 -0.996837 -0.0627095 0.0368161 -0.999322 0 -0.00899947 -0.994812 0.10133 -0.0791763 -0.996861 0 -0.0379729 -0.987873 -0.150552 0.0420166 -0.994297 -0.0980221 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.706943 -0.0228476 -0.706901 2.178e-06 -1 8.63517e-06 -7.01236e-06 -1 7.03177e-06 -5.95069e-05 -1 -6.56549e-05 7.6556e-05 -1 0 4.21206e-05 -1 4.2122e-05 -1.24651e-05 -1 4.94207e-05 -0.0396614 -0.986763 0.157246 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0438087 -0.99904 0 -0.0838281 -0.99596 -0.0321854 -0.0609733 -0.997387 0.0387557 -0.0816677 -0.99666 0 0 -1 0 -0.040164 -0.998386 -0.040164 0 1 0 0 -1 0 0 -1 0 0 -1 0 -0.000153808 -1 -0.000183103 -0.000325863 -1 0 -0.000186329 -1 -0.000395959 0 -1 0 0.0256121 -0.997716 -0.0625004 0 -0.999986 -0.00534596 0 -0.999986 -0.00534596 -0.00631649 -0.99987 -0.0148609 0.0260012 -0.99964 -0.00655814 0.0174116 -0.999817 0.00786873 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0359702 -0.999312 -0.00901942 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999807 -0.0196466 -0.00354733 -0.99989 -0.0143766 0 -0.99996 -0.00895069 0.010554 -0.999813 -0.0161812 0 -1 0 0 -1 0 0.00730261 -0.999946 -0.00735447 0.0179427 -0.999839 0 0.0179427 -0.999839 0 0.101326 -0.994116 -0.0382804 0.0142552 -0.9983 0.056519 0.0626395 -0.993292 0.0971952 0.000416032 -1 0 -0.00049614 -0.999999 -0.00100569 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.000241493 -1 -0.000513184 -2.13449e-06 -1 -8.46282e-06 7.03699e-06 -1 -7.01779e-06 5.65066e-05 -1 5.7989e-05 0.019181 -0.999813 -0.0026088 0.00321033 -0.999975 -0.00626948 -0.0131084 -0.999791 -0.0156957 -0.0174255 -0.999777 -0.0119565 0.125675 -0.991721 0.0263738 0.0044425 -0.997328 0.0729212 0.0238722 -0.992466 0.120175 0.0869848 -0.995277 0.0431083 -0.00989662 -0.999527 0.0291072 0.034732 -0.999386 -0.00462927 0.033062 -0.999395 -0.0107578 -0.0318742 -0.999472 0.00633165 -0.0519104 -0.998526 -0.0158397 -0.0611197 -0.997965 -0.0181768 0.0135556 -0.992353 0.12269 -0.0134652 -0.994584 0.103062 0.0262876 -0.999322 0.0257923 0.0404317 -0.99917 -0.00505726 0.00403965 -0.998846 -0.0478533 0.07727 -0.995028 -0.0628452 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -0.708072 0 0.70614 -0.708072 0 0.70614 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.707118 0 -0.707095 -0.707118 0 -0.707095 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.915837 0 0.40155 -0.869629 0.000748619 0.493705 -0.000289981 2.63341e-06 1 -0.000211947 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0.707107 0 0.707107 0.707107 0 0.707107 0 0 1 0 0 1 0 0 1 0 0 1 -0.708072 0 0.70614 -0.708072 0 0.70614 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0.707118 0 0.707095 0.707118 0 0.707095 0 0 1 0 0 1 0 0 1 0 0 1 -0.708072 0 0.70614 -0.708072 0 0.70614 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 6.16888e-05 0 1 0.000180249 -3.81848e-06 1 0.607676 0.000519863 0.794185 0.999623 0 0.0274697 0.995213 -0.00238954 0.0976979 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0.70614 0 -0.708072 0.70614 0 -0.708072 1 0 0 1 0 0 1 0 0 1 0 0 0.707095 0 0.707118 0.707095 0 0.707118 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0.706129 0 -0.708084 0.706129 0 -0.708084 1 0 0 1 0 0 1 0 0 1 0 0 0.707107 0 0.707107 0.707107 0 0.707107 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0.448468 0 -0.893799 0.873458 -0.000492515 -0.486899 0.275038 0.00102488 -0.961433 0.919989 0 -0.391945 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.707107 0 -0.707107 -0.707107 0 -0.707107 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.706152 0 -0.708061 0.706152 0 -0.708061 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.707107 0 -0.707107 -0.707107 0 -0.707107 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.70614 0 -0.708072 0.70614 0 -0.708072 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 -0.0668844 -0.00200652 -0.997759 -0.953011 0 -0.302935 -0.707105 0.00207378 -0.707105 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -0.708084 0 0.706129 -0.708084 0 0.706129 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.707107 0 -0.707107 -0.707107 0 -0.707107 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -2.55715e-05 1 0 -1.40743e-05 1 1.40359e-05 0.0172673 0.999851 0 0.0288873 0.999413 0.0184097 0.0311015 0.999516 0 0 1 0 0.0199933 0.999597 -0.0201353 0.0231086 0.999722 -0.00468828 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.00023292 1 0.000472136 -0.000214913 1 0 -0.000122411 1 0.00026013 0 1 0 0 0.998686 -0.0512394 0 0.998686 -0.0512394 0.040645 0.989569 -0.138208 -0.207823 0.976777 -0.0521109 -0.129465 0.990132 0.0536424 -8.24505e-06 1 -2.06742e-06 -7.03066e-06 1 7.01148e-06 0 1 1.27616e-05 9.3777e-06 1 -6.67401e-06 0 1 0 0 1 0 0.0180274 0.999827 -0.00454694 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999678 -0.0253829 0.0304231 0.999534 -0.00267324 -0.0175482 0.999742 -0.0144045 0 0.999978 -0.00663122 0 1 0 0 1 0 -0.00280824 0.999992 -0.00280824 0.00134633 0.999786 -0.0206629 -0.0360405 0.99935 0 -0.0360405 0.99935 0 -0.0282012 0.999594 0.0039747 -0.0154913 0.997992 0.0614188 0.016811 0.999035 0.0405729 4.95595e-05 1 0 2.28147e-05 1 2.716e-05 0 1 0 0 -1 0 0 1 0 0 1 0 2.77636e-05 1 5.89991e-05 -0.000258995 1 -7.11722e-06 0 1 0 0 1 0 -6.00487e-05 1 8.43748e-05 0.000114799 1 0 6.31104e-05 1 -6.32851e-05 -0.00100172 1 -0.000206105 -0.0632898 0.99783 0.0181814 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.00295532 0.999996 0 -0.0024182 0.999994 0.00259587 0.00295532 0.999996 0 0 1 0 6.70064e-05 1 -6.65339e-05 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.702754 0.111052 -0.702712 0 1 0 0 1 0 0 1 0 0 1 -0.000125101 -0.022116 0.999667 0.0133221 0 0.999806 0.0197154 0.0192532 0.999776 -0.00882231 -0.00411383 0.999991 -0.00103759 0.00186148 0.999973 0.00714504 1.23352e-05 1 3.11118e-06 1.05135e-05 1 -1.05419e-05 0 1 -1.91826e-05 -1.64692e-05 1 1.49845e-05 0 1 0 0 1 0 0 1 0 -0.0325706 0.999436 0.00816684 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999678 0.0253731 -0.0328984 0.998227 0.0496027 0 0.997674 0.0681656 0 1 0 0 1 0 0.0340968 0.998837 0.0340968 0.0458891 0.998947 0 0.0207075 0.999152 -0.0355908 0.00925031 0.999957 0 0.00768482 0.99997 -0.00107484 0.00461551 0.999822 -0.0182996 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -5.41492e-07 1 2.1469e-06 1.75722e-06 1 1.75722e-06 1.87069e-05 1 -2.13209e-05 0.000626406 0.999553 -0.0298925 0.0092318 0.999956 0.00182788 -0.0619938 0.933609 0.352889 0.421211 0.906958 -0.0030073 -0.0182033 0.999784 0.00999624 0.00215249 0.999843 -0.0175759 0.0180089 0.999838 -0.000279843 0.0823877 0.994789 -0.0600635 -0.0994442 0.994586 -0.0301464 0.0343498 0.999144 0.0230403 0.0100093 0.999015 0.043227 -0.00113761 0.999271 0.038163 0.00825168 0.998565 0.0529114 -0.0383305 0.997992 0.0504335 -0.077069 0.996974 0.0101858 -0.0849906 0.991836 0.0950685 -0.000885823 0.999997 -0.00240576 0.0481661 0.99718 -0.0575486 -0.123777 0.983462 -0.132218 -0.017062 0.99267 0.119645 0.137236 0.970357 0.198932 0.0027689 0.999996 -0.000361762 8.26291e-06 1 1.70242e-05 0.999304 -0.000729746 0.0372989 0.999672 0.000499295 -0.0255885 0.707121 -2.91893e-07 -0.707092 0.707114 -5.5427e-07 -0.707099 0.129551 0.0003122 -0.991573 0.127536 0.00032931 -0.991834 0.995179 0.000248484 -0.0980758 0.531315 0.00152978 -0.847173 0.310569 0.000129978 -0.950551 0.946896 -0.0013579 -0.321538 0.980835 0.00049364 -0.194838 0.923838 0 -0.382783 0.70707 -1.33446e-06 -0.707143 0.707107 0 -0.707107 0.378161 0.000527553 -0.92574 -0.584346 0 0.811505 -0.378161 -0.000739732 0.92574 0.23262 0 -0.972568 0.584346 0 -0.811505 0.378161 0.00087283 -0.92574 -8.76559e-05 -2.10953e-06 -1 -0.0470113 -0.000918662 -0.998894 -0.707107 0 -0.707107 -0.70707 1.33443e-06 -0.707143 -0.892602 0 -0.450846 -0.986251 -0.000571447 -0.165256 -0.102779 0.000260399 -0.994704 -0.22611 -0.000636404 -0.974102 -0.9781 -0.000857283 -0.208136 -0.850848 0.00161247 -0.525409 -0.382783 0 -0.923838 -0.194838 0.00049364 -0.980835 -0.707107 8.42942e-07 -0.707107 -0.707129 0 -0.707085 -0.998912 -0.000916068 -0.0466182 -0.99911 0.000819532 0.0421672 -0.706465 3.0682e-07 0.707748 -0.642402 -0.00236003 0.766364 -0.393976 -0.000998175 0.91912 -0.170301 -0.000431473 0.985392 -0.289122 0.000810801 0.957292 -0.952791 -0.0015945 0.303623 -0.978291 -0.00018571 0.207236 0.991571 0.00211893 -0.129551 -0.991568 -0.00311931 0.12955 -0.999757 0 0.0220588 -0.85368 0 0.520797 -0.991573 -0.000357215 0.129551 -0.85368 0 0.520797 -0.706422 8.49347e-07 0.707791 -0.683012 0.000907445 0.730407 -0.000153691 3.38863e-06 1 0.000175327 -3.01501e-06 1 0.389267 -0.000528245 0.921125 0.706469 0 0.707744 0.706407 2.25445e-06 0.707806 0.980957 0 0.194227 0.969296 -0.000263574 0.245899 0.233214 -0.000412236 0.972425 0.960681 -0.000720775 0.277653 0.445254 0.000996299 0.895404 0.679104 -0.00141751 -0.734041 -0.163308 -0.00149546 -0.986574 -0.931973 -0.00130112 -0.362525 -0.820108 -0.000986111 0.572208 -0.971101 0.00051198 -0.238667 0.621125 -0.000933825 0.783711 -0.741389 0.00110564 -0.671075 -0.190716 -0.000803228 0.981645 0.163619 0.000943143 -0.986523 0.329446 0.00123738 0.944173 -0.60119 0.00151119 0.799104 0.911232 0.00115117 -0.411893 0.998298 -0.000856953 0.0583074 0.918833 0.000860812 0.394646 -0.891142 0.00570147 -0.453689 0.773045 -0.00323149 0.634343 0.759997 -0.00133019 -0.649925 -0.999883 -0.00169355 0.0152018 0.345018 0.00250066 0.938593 -0.486416 -0.00110925 0.873726 -0.440492 -0.00211771 -0.897754 0.985623 0.000402716 0.168958 -0.780874 0.002173 0.624684 -0.787717 0.00224171 -0.616034 0.507992 0.00280646 -0.861357 -0.79873 -0.00140643 -0.601688 0.919183 -0.00152461 -0.393828 0.509166 -0.00275008 0.860664 0.23984 -0.000343333 -0.970812 0.315802 0.00010743 0.948825 -0.823419 -0.0018862 0.56743 -0.683712 0.000402422 0.729752 -0.997051 0.00130273 -0.0767364 0.987903 0.00177701 0.155065 0.0702538 -0.0026625 -0.997526 -0.374565 0.00341417 -0.927194 0.72572 0.000882164 -0.687989 -0.447458 0.00136019 -0.894304 0.623091 -0.00219985 -0.782147 0.399531 0.000405967 -0.91672 -0.995345 -0.00143213 0.0963636 0.911175 -0.00225937 0.412013 -0.160416 -0.00233757 0.987047 -0.415864 0.000142166 0.909427 0.411898 0.00112906 0.911229 -0.970713 0.000448607 0.24024 -0.517127 -4.59773e-06 -0.855909 -0.499668 0.000272367 -0.866217 0.999913 0.00220312 -0.0129945 0.707041 -0.707172 0 0.707041 -0.707172 0 0.0525561 -0.998618 0 0.196245 -0.980555 0.000455052 0.45171 -0.892165 0 0.196245 -0.980555 -0.000452287 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.00784141 0 -0.999969 0.00734101 -0.00423507 -0.999964 0.0113203 0.00653075 -0.999915 0.000856313 0 -1 0.00444992 -0.00636588 -0.99997 0 0 -1 0.000564253 -0.000564657 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.00095846 -1 -0.0102278 0.00428707 -0.999939 0.0114501 0.0198098 -0.999738 -0.0056048 0.00971465 -0.999937 0 0.0116118 -0.999933 0.0391952 -0.0330625 -0.998684 -0.0594415 -0.0149701 -0.99812 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.00570249 0.00143701 -0.999983 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.00279792 -0.999996 0 0 -1 0.00345577 0.000597017 -0.999994 0.00533484 -0.00924674 -0.999943 0.0168527 -0.000512955 -0.999858 0 -0.0121467 -0.999926 0 0 -1 0 0 -1 -0.00748196 -0.00748196 -0.999944 -0.021598 0.0169826 -0.999623 0.0125517 0 -0.999921 0.0162544 -0.00937727 -0.999824 0.012685 0.00731804 -0.999893 0.0125517 0 -0.999921 0.0230482 0.00642574 -0.999714 0.0101882 -0.0404545 -0.999129 -0.00586456 -0.0293124 -0.999553 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.00120144 0.00477057 -0.999988 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.00330186 0 -0.999995 0.00600278 -0.00681947 -0.999959 -0.00302685 0.00174618 -0.999994 0.00141451 0.000816053 -0.999999 -0.00169923 0.00509302 -0.999986 0.00181725 0 -0.999998 0 0 -1 0.00101082 -0.00101082 -0.999999 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.706955 -0.706945 -0.0210473 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.00322244 -0.00288128 -0.999991 0 0.00262737 -0.999997 0.00161776 0.00280403 -0.999995 -0.00183708 0.00317795 -0.999993 -0.0200216 0.0086274 -0.999762 0 0.0199564 -0.999801 0.0325719 0.008208 -0.999436 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.000354384 -8.92505e-05 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.00201777 -0.999998 -0.00441468 -0.0018453 -0.999989 0.00226202 0.00392071 -0.99999 -0.00391333 0.00367498 -0.999986 -0.00279123 0.00482909 -0.999984 0 0.00162503 -0.999999 0.00235362 0.00298883 -0.999993 0 0 -1 0 0 -1 0.00118021 0.00118106 -0.999999 0.0022928 0 -0.999997 0.00185742 -0.00107157 -0.999998 0.00341239 0.00134799 -0.999993 0.00318997 0.00184029 -0.999993 -0.00210753 0.0262647 -0.999653 0.0129267 0 -0.999916 0.00583335 -0.023166 -0.999715 -0.00336928 -0.0168349 -0.999853 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0745023 -0.0745034 -0.994434 0 0 -1 0 0 -1 0 0 -1 -0.000878931 0.00580262 -0.999983 0.000269256 0.00106929 -0.999999 -0.00914198 -0.00943093 -0.999914 -0.000167103 0.000834943 -1 0.155529 0.0406899 -0.986993 0.0124374 -0.208664 -0.977908 0.00150901 0.0626185 -0.998036 -0.0635684 0 -0.997977 -0.0535834 0.0222076 -0.998316 -0.0505692 -0.036171 -0.998065 0.010929 -0.0546255 -0.998447 -0.00314212 -0.0566895 -0.998387 0.041381 0.00994832 -0.999094 0.0411899 0 -0.999151 0.0138886 0.0799125 -0.996705 0.00340691 -0.001412 -0.999993 0.00638417 -0.0278754 -0.999591 0.000251439 5.03077e-05 -1 -0.0264105 0.0206285 -0.999438 -0.0191175 0.322008 -0.946544 0.328123 0.0284358 -0.944207 0.00141437 -0.0229395 -0.999736 0.0241596 -0.0205505 -0.999497 -0.00400636 -0.000801589 -0.999992 0.0238065 -0.0231084 -0.999449 -0.0256075 0.0308133 -0.999197 -0.0514511 0.0305703 -0.998208 0 0 -1 0 0 -1 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707111 -0.707102 0 -0.707111 -0.707102 0 -1 0 0 -1 0 0 -0.866195 -0.499706 0 -0.866195 -0.499706 0 -0.866189 0.499717 0 -0.866189 0.499717 0 -1 0 0 -1 0 0 -0.707111 0.707102 0 -0.707111 0.707102 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.439553 -0.898217 0.000455378 -0.975828 -0.218541 0 -0.268947 -0.963155 0 -0.892632 -0.450785 0.000758247 -0.721044 -0.692889 -0.000147475 -0.91378 -0.40621 -0.00041239 -0.699731 -0.714407 0.000276795 -0.433394 -0.901204 -0.000561127 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.707013 -0.7072 0 0.707013 -0.7072 0 0 -1 0 0 -1 0 0.500424 -0.865781 0 0.500424 -0.865781 0 -0.499735 -0.866178 0 -0.499735 -0.866178 0 0 -1 0 0 -1 0 -0.707105 -0.707108 0 -0.707105 -0.707108 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.707008 -0.707206 0 0.707008 -0.707206 0 0 -1 0 0 -1 0 0.500467 -0.865756 0 0.500467 -0.865756 0 -0.499735 -0.866178 0 -0.499735 -0.866178 0 0 -1 0 0 -1 0 -0.707105 -0.707108 0 -0.707105 -0.707108 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.91324 -0.407421 0 0.184465 -0.982839 0 0.863664 -0.504068 -0.000781567 0.780572 -0.625065 0.000567474 0.470426 -0.882439 -0.000545719 0.207005 -0.97834 6.40272e-05 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707008 0.707206 0 0.707008 0.707206 0 1 0 0 1 0 0 0.866189 0.499717 0 0.866189 0.499717 0 0.866195 -0.499706 0 0.866195 -0.499706 0 1 0 0 1 0 0 0.707008 -0.707206 0 0.707008 -0.707206 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707008 0.707206 0 0.707008 0.707206 0 1 0 0 1 0 0 0.866192 0.499711 0 0.866192 0.499711 0 0.866192 -0.499711 0 0.866192 -0.499711 0 1 0 0 1 0 0 0.707008 -0.707206 0 0.707008 -0.707206 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.982798 0.184685 0 0.235463 0.971883 0 0.905167 0.425055 -0.000580438 0.248062 0.968744 2.5382e-05 0.833921 0.551884 1.66232e-05 0.903183 0.429256 0.000534171 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707105 0.707109 0 -0.707105 0.707109 0 0 1 0 0 1 0 -0.499735 0.866178 0 -0.499735 0.866178 0 0.500467 0.865756 0 0.500467 0.865756 0 0 1 0 0 1 0 0.707007 0.707207 0 0.707007 0.707207 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707105 0.707109 0 -0.707105 0.707109 0 0 1 0 0 1 0 -0.499735 0.866178 0 -0.499735 0.866178 0 0.500424 0.865781 0 0.500424 0.865781 0 0 1 0 0 1 0 0.707013 0.707201 0 0.707013 0.707201 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.444167 0.895944 -0.000408238 -0.899032 0.437883 -0.000633643 -0.305396 0.952226 0 -0.978053 0.208356 0 -0.287602 0.95775 -6.64501e-05 -0.698535 0.715576 -0.000728997 -0.730743 0.682653 0.00015546 -0.919176 0.393846 0.000427592 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707111 -0.707102 0 -0.707111 -0.707102 0 -1 0 0 -1 0 0 -0.866192 -0.499711 0 -0.866192 -0.499711 0 -0.866192 0.499711 0 -0.866192 0.499711 0 -1 0 0 -1 0 0 -0.707111 0.707102 0 -0.707111 0.707102 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0124074 0 0.999923 -0.00400845 -0.00828647 0.999958 0.0151602 0.00874589 0.999847 0.0132585 -0.00764904 0.999883 0.0124074 0 0.999923 0 0 1 0.0044652 0.0044684 0.99998 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.00745592 -0.00745603 0.999944 0 0 1 0 0 1 0 0 1 0 0 1 1.01397e-06 0.00526415 0.999986 0 0.00526532 0.999986 -0.00260738 0.00451101 0.999986 -0.000902566 0.00541611 0.999985 0.00214112 0.00371115 0.999991 0 0.00440212 0.99999 0.013428 0.0189105 0.999731 -0.0365017 0.00919284 0.999291 -0.0318509 -0.00637271 0.999472 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.000936408 0.000235971 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.00241386 0.999997 0.00175934 5.69554e-05 0.999998 -0.00129745 0.00224446 0.999997 -0.00285271 -0.00494453 0.999984 -0.00928423 -0.000606463 0.999957 0 -0.00617541 0.999981 0 0 1 0 0 1 0.00318936 -0.00318936 0.99999 0.00437378 0 0.99999 0.00591233 -0.0025757 0.999979 0.0121882 0.00703156 0.999901 0.00654912 -0.00377817 0.999971 0.00759499 0 0.999971 -0.011329 0.0158337 0.99981 -0.00372479 -0.01479 0.999884 0.00227095 -0.0113507 0.999933 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0400445 -0.0400439 0.998395 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.00990483 0.0393291 0.999177 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.000621362 0 1 -0.000505719 -0.000291752 1 -0.00154258 0.000889923 0.999998 -0.00139672 0.00109131 0.999998 -0.00197406 0 0.999998 0 0 1 -0.00107557 -0.00107557 0.999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.261394 0.261391 0.929165 0 0 1 0 0 1 0 0 1 0.00130964 -0.00207216 0.999997 0 4.58967e-05 1 -2.72962e-05 4.73117e-05 1 0.00116133 0.000246687 0.999999 0.000431775 0.000746927 1 0 0.000940162 1 -0.00817612 -0.00632511 0.999947 0.00816617 -0.00205784 0.999965 0.0657255 -0.0949363 0.993311 0.0978978 0.0195873 0.995004 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0139925 -0.00352397 0.999896 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0246694 0.999696 -0.0114974 0.0199282 0.999735 -0.0280731 -0.0485691 0.998425 -0.0705349 -0.0185138 0.997338 0 -0.0618964 0.998083 0 0 1 0 0 1 0.0342612 -0.0342857 0.998825 0.0634185 0.031855 0.997478 0.0182889 0 0.999833 0.0181947 0.000878183 0.999834 0.0272753 0.0157353 0.999504 0.0155217 -0.00895458 0.999839 0.0176578 0 0.999844 0.000765642 0.0138471 0.999904 0.00177334 0.00704245 0.999974 -0.0012801 0.00639615 0.999979 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.254222 0.254227 0.933134 0 0 1 0 0 1 0 0 1 0.045841 -0.0183774 0.99878 -0.0108707 0.00217501 0.999939 -0.101221 -0.0763703 0.991928 -0.0655339 -0.0153756 0.997732 0.0223027 0.0222659 0.999503 0.0242046 0.0284386 0.999302 0.000661498 -0.000242133 1 0.000600849 -0.000120217 1 -0.0076323 0.0593462 0.998208 -0.0584358 0.000860826 0.998291 0.0110558 -0.000947993 0.999938 0.000103062 -0.00040929 1 0.0163751 -0.0137699 0.999771 -0.00387115 -0.0193425 0.999805 0.0437943 -0.028718 0.998628 -0.00412729 0.0493638 0.998772 -0.0177783 -0.0219432 0.999601 -0.0190917 -0.0181703 0.999653 0.0170581 0.0411587 0.999007 0 0.0446349 0.999003 -0.0313705 0.0697517 0.997071 -0.249683 0.0658318 0.966087 0.138638 -0.213997 0.966946 0 0 1 1 0 0 1 0 0 0.836917 -0.54733 0 0.923802 -0.38287 0.000202143 0.923802 -0.38287 -0.000203909 0.970409 -0.241469 0 0.923802 0.38287 0 0.923802 0.38287 0 0.707041 0.707172 0 0.707041 0.707172 0 0.550647 0.834738 0 0.196245 0.980555 0.0004102 0.0872609 0.996185 0 0.196245 0.980555 -0.000413784 0.962901 0.269854 -0.000784582 0.995765 0.091932 0 0.0723292 0.997381 0 0.815948 0.578125 0.000575455 0.498377 0.86696 0.000366839 0.278503 0.960435 0.000855946 0.504877 0.863191 -0.000311168 0.283425 0.958994 -0.00103748 0.836785 0.547531 -0.000369382 0.955142 0.296145 0.00125496 0.998621 0.0525075 0 0.980566 0.196191 0.000455258 0.892137 0.451766 0 0.980566 0.196191 -0.000452492 0.707107 0.707107 0 0.707107 0.707107 0 0.549409 0.835553 0 0.238698 0.971094 0 0.382399 0.923997 -0.000207456 0.382399 0.923997 0.000205659 0 1 0 0 1 0 -0.382867 0.923803 0 -0.382867 0.923803 0 -0.707107 0.707107 0 -0.707107 0.707107 0 -0.83556 0.5494 0 -0.923802 0.38287 0.00020512 -0.980566 0.196191 -0.000413318 -0.991782 0.127943 -0.000153836 -1 0 0 -0.274044 0.961717 -8.04763e-05 -0.0723568 0.997379 0 -0.99298 0.118279 0.000142216 -0.273648 0.961829 0.00101714 -0.81242 0.583072 -0.000656383 -0.461587 0.887095 -0.000168645 -0.784992 0.619506 0.000849775 -0.932487 0.361203 -0.000488914 -0.958293 0.285785 0.00105994 -0.401503 0.915857 -0.00134082 -0.0704613 0.997515 0 -0.526003 0.850483 0 -0.196183 0.980567 -0.000451616 -0.196183 0.980567 0.000449699 -0.707107 0.707107 0 -0.707107 0.707107 0 -0.835573 0.54938 0 -0.923802 0.38287 -0.000206894 -0.923802 0.38287 0.000205102 -0.970958 0.239252 0 -1 0 0 -1 0 0 -0.923802 -0.38287 0 -0.923802 -0.38287 0 -0.707107 -0.707107 0 -0.707107 -0.707107 0 -0.382867 -0.923803 0 -0.196183 -0.980567 0.000235892 0 -1 0 -0.973663 -0.227993 0.000574795 -0.958134 -0.286319 -0.00126384 -0.99575 -0.0920943 0 -0.104066 -0.99457 -0.000125129 -0.31001 -0.950733 -0.000936165 -0.473178 -0.880967 0.000125524 -0.798996 -0.601336 -0.000725479 -0.410915 -0.911673 0.000636868 -0.230187 -0.973146 0.000184043 -0.747299 -0.664486 0.00167288 -0.998615 -0.0526205 0 -0.980566 -0.196191 0.000454448 -0.892563 -0.450924 0 -0.980566 -0.196191 -0.000451687 -0.707107 -0.707107 0 -0.707107 -0.707107 0 -0.538084 -0.842891 0 -0.225426 -0.97426 0 -0.382867 -0.923803 -0.000208966 -0.382867 -0.923803 0.000208701 0 -1 0 0 -1 0 0.382399 -0.923997 0 0.382399 -0.923997 0 0.707107 -0.707107 0 0.707107 -0.707107 0 0.835566 -0.54939 0 0.923802 -0.38287 0.000205111 0.991781 -0.127944 -0.000153838 0.980566 -0.196191 -0.000413313 1 0 0 0.252367 -0.967631 0.00102463 0.823211 -0.567735 -0.000649066 0.25062 -0.968085 -0.000683166 0.923127 -0.384495 -0.000733594 0.091453 -0.995809 0 0.9904 -0.138228 0.000166203 0.522657 -0.852543 0.000379309 0.841639 -0.540041 0.000138362 0.969575 -0.244792 0.000742586 0.505521 -0.862814 -0.000653213 0.514681 -0.857377 0.00286517 -0.404915 0.914349 -0.00316164 -0.480656 -0.876909 -0.00057247 0.797931 -0.602748 0.000669509 -0.998491 -0.0549007 -0.00129194 0.27686 -0.96091 0.000132626 0.193005 -0.981198 -0.00035261 -0.936216 -0.351425 0.000494076 -0.9246 0.380932 0.0021959 -0.49415 0.869375 -0.00131937 -0.0272796 0.999628 0.000505064 0.653293 -0.757105 -0.00047244 -0.605852 -0.795577 0.000704415 0.99543 0.0954922 -0.000399845 0.979518 -0.201358 0.000657616 0.65394 0.756547 -0.000147416 0.915514 0.402285 0.000775559 -0.125489 -0.992095 0.000639005 0.509198 0.860649 0.000777323 -0.637198 -0.7707 -0.0008412 0.281287 -0.959624 0.000112814 -0.114626 -0.993409 -0.000292645 -0.962263 0.272119 -0.000889269 -0.935872 -0.352339 0.000449007 -0.494151 0.869376 -0.000662633 -0.955184 0.296012 -0.0011186 0.917291 0.398218 -6.02438e-05 0.508151 0.861267 -0.00130483 0.959466 0.281821 0.00129152 0.991178 -0.132527 -0.00151116 -0.757379 0.652975 0.000477703 0.64823 -0.761444 -0.0005531 -0.941586 -0.336774 0.000552789 0.0293626 0.999569 0.000150383 -0.335556 -0.94202 0.000440306 0.150376 0.988628 0.00111399 -0.791609 0.611026 0.0013882 0.11455 -0.993385 -0.00800123 -0.871901 -0.489678 -0.00194163 -0.836835 0.547456 -8.86507e-05 -0.0323376 0.999476 -0.00155954 0.797344 0.603525 -0.000840464 -0.21718 0.976132 0.000227326 0.193157 0.981168 0.000869549 0.781388 0.624045 -0.000644534 0.908012 -0.418945 -0.000409082 -0.847227 0.531231 -0.0003287 -0.123492 -0.992346 -4.1203e-05 0.982222 0.187722 0.000954668 -0.970274 -0.242007 0.000589036 0.35981 -0.933026 -0.00031749 0.274373 0.961623 -4.67668e-05 -0.641865 -0.766817 0.00103904 -0.210112 0.977677 0.000253295 -0.72693 0.686709 -0.0019396 0.000678429 -1 0.000293232 0.743419 -0.668826 0.000438917 -0.975556 -0.219752 -0.000193493 -0.451925 -0.892055 -0.00101785 0.781636 0.623735 -0.000587084 0.329166 0.944272 0.000676682 -0.202509 -0.979275 0.00330592 -0.340124 0.940379 -0.00166357 0.434566 0.900638 0.00161472 -0.998988 -0.0449749 0.00110367 0.996927 0.0783385 3.81227e-05 -0.948836 0.315754 -0.0031348 -0.00678003 -0.999964 0.0050402 0.678351 0.734737 -0.00138459 0.903616 0.428342 0.00136101 -0.980074 -0.198629 0.00130604 -0.661596 -0.74986 -0.000582435 -0.90759 0.419856 -0.0011064 0.953533 -0.301288 -0.000768918 0.988332 -0.152315 0.000503449 0.698462 -0.715646 0.00131609 0.174029 -0.98474 -0.000320354 0.548836 0.83593 -0.000304448 -0.735137 0.677919 0.000317449 -0.0769899 0.997032 -0.000460894 -0.656621 -0.754221 -0.000509266 -0.416939 0.908934 0.000434825 0.980793 -0.195052 -0.000544106 0.163097 0.98661 0.000260244 0.884012 0.467463 -0.000593944 0.673366 -0.739309 -0.000613554 0.199678 -0.979861 -0.000501267 -0.203499 -0.979075 0.000355085 0.675978 0.736922 0.000311793 0.997138 0.0756062 0.00052085 0.276078 -0.961135 -1.30729e-05 -0.809101 -0.58767 0.000276174 -0.970582 -0.240769 -0.000652911 -0.729874 0.683581 -0.000997303 0.783866 -0.62093 0.00024531 0.186922 0.982374 -0.001258 -0.406875 0.913484 0.000290173 -0.978015 0.208533 0.000497442 0.495093 0.868828 0.00458248 -0.987709 0.156304 -6.4665e-05 -0.46898 0.883209 0.000775177 -0.875314 -0.483538 0.00399537 0.162217 -0.986754 0.00135 0.0424697 -0.999093 -0.00295365 0.501409 0.86521 -0.000797714 0.58534 0.810784 -0.00270159 -0.701817 0.712348 -0.00380431 -0.456866 0.889535 0.000278481 -0.074226 0.997239 0.00242021 0.839811 -0.542879 -0.000331352 -0.230383 -0.9731 4.39322e-05 0.887925 0.459987 0.00109534 0.998119 0.0613101 -1.70365e-05 0.968071 -0.250676 0.000550942 0.602256 -0.798303 0.00097424 -0.0437651 0.999042 1.0302e-05 0.261281 -0.965263 -0.000125807 -0.80951 -0.587106 -0.000354002 -0.618881 -0.785485 0.000523948 -0.456866 0.889535 -0.000329074 -0.958168 -0.286207 0.000357761 -0.999928 0.0119779 -0.00020996 -0.873423 0.486962 5.66608e-05 0.509543 0.860445 -9.83603e-05 0.932331 0.361607 0.00015885 -0.0262743 -0.999654 0.00105655 -0.0637784 0.997964 -8.53371e-05 0.973031 -0.230675 -1.53234e-05 -0.056232 -0.998417 -0.000860498 -0.665183 -0.746679 -0.00118553 0.885206 0.46519 -0.00288348 0.583786 -0.811907 -0.00141269 0.522846 0.852427 -0.000182677 -0.81452 0.580136 0.00066921 0.940417 -0.340022 0.00113856 0.684051 0.729426 0.00353589 0.707087 -0.707126 0 0.707087 -0.707126 0 0.0525249 -0.99862 0 0.196188 -0.980566 0.000455175 0.451727 -0.892156 0 0.196188 -0.980566 -0.000452409 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.00496422 0 -0.999988 0.00396934 -0.00229008 -0.99999 0.00391914 -0.00182208 -0.999991 0.00443938 0.0025612 -0.999987 0.0014686 0 -0.999999 0.00284349 -0.00314961 -0.999991 0 0 -1 0.000794705 -0.000794818 -0.999999 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.752826 0.657314 -0.0345054 0 0 -1 0 0 -1 0 0 -1 -0.00250465 -0.00220495 -0.999994 0 0.00135789 -0.999999 0.000732648 0.00126893 -0.999999 -0.00109026 0.00192461 -0.999998 -0.00110489 0.00191363 -0.999998 0 0.0025145 -0.999997 0.00300595 0.000757033 -0.999995 -0.0296433 -0.038456 -0.998821 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.106364 -0.0268028 -0.993966 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0904754 -0.995899 0.0812996 -0.0328976 -0.996147 -0.0405026 -0.0700674 -0.99672 -0.000320109 0.000554853 -1 -0.106701 -0.0217605 -0.994053 0 0.000550219 -1 0 0 -1 0 0 -1 -0.0224058 -0.0224058 -0.999498 -0.0537135 0 -0.998556 -0.0497333 0.0286925 -0.99835 -0.0969329 -0.0974675 -0.990507 -0.116529 -0.0672305 -0.990909 -0.143595 0 -0.989637 0.0314839 0.180405 -0.983088 0.00111715 -0.00443585 -0.99999 -0.00157334 -0.00379643 -0.999992 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.000429599 -0.00170581 -0.999999 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0152036 0 -0.999884 -0.0127854 0.00737634 -0.999891 -0.0349219 -0.0201477 -0.999187 -0.0313241 -0.0249985 -0.999197 -0.0454237 0 -0.998968 0 0 -1 -0.0269925 0.0269927 -0.999271 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0213146 0.003767 -0.999766 0.0327964 -0.0327961 -0.998924 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0412117 -0.99915 0.0179255 0.0310715 -0.999356 0.0464236 0.00916659 -0.99888 0.00476983 -0.00825175 -0.999955 0 -0.00908545 -0.999959 -0.00847401 0.00243394 -0.999961 0.00197747 0.000498305 -0.999998 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.000926247 -0.00023327 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0199361 -0.999801 0.00876918 0.0151882 -0.999846 0.0106762 0.0157874 -0.999818 -0.00756432 0.0131016 -0.999886 0 0.0103312 -0.999947 0.0030394 0.0121632 -0.999921 0 0 -1 0 0 -1 0.00708195 0.007083 -0.99995 0.0124793 0 -0.999922 0.00959916 -0.00553809 -0.999939 0.00981586 -0.00525127 -0.999938 0.00627677 0.00362128 -0.999974 0.00685121 0 -0.999977 0.00172147 -0.00374784 -0.999992 0.00132095 -0.00524527 -0.999985 -0.000774482 -0.00387093 -0.999992 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0226651 0.022665 -0.999486 0 0 -1 0 0 -1 0 0 -1 0.00179034 0.00710912 -0.999973 0.0449968 0.041697 -0.998117 -0.00967661 0.0483646 -0.998783 0.00800916 0.0554404 -0.99843 -0.0264896 -0.0140875 -0.99955 -0.0290132 -0.0021149 -0.999577 -0.0241277 0.0048272 -0.999697 0.00220534 -0.0156444 -0.999875 0.000594401 -0.00143428 -0.999999 0.00400076 0.00051613 -0.999992 0 0.00145457 -0.999999 -0.137752 -0.026878 -0.990102 0.0167187 0.151401 -0.988331 -0.00135041 0 -0.999999 -0.000416299 -0.00322797 -0.999995 0.00151736 -0.000628824 -0.999999 -0.0281935 -0.00634437 -0.999582 0.000706305 0.000292713 -1 0.00865991 -0.0104675 -0.999908 0.0380937 0.0746002 -0.996486 0.0866677 0.0158234 -0.996112 -0.0145961 0.013671 -0.9998 -0.00214065 0.0962955 -0.995351 0.0848815 0.0169817 -0.996246 0.000120932 -0.0477259 -0.99886 -0.0627927 0.00613031 -0.998008 0 -0.000563039 -1 -0.00484183 -0.00197176 -0.999986 0.0211795 -0.0328797 -0.999235 0 0 -1 0 0 -1 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707088 -0.707125 0 -0.707088 -0.707125 0 -1 0 0 -1 0 0 -0.866181 -0.49973 0 -0.866181 -0.49973 0 -0.866181 0.49973 0 -0.866181 0.49973 0 -1 0 0 -1 0 0 -0.707087 0.707126 0 -0.707087 0.707126 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.251945 -0.967741 0.00017767 -0.926463 -0.376385 -0.000185446 -0.325377 -0.945584 0 -0.901229 -0.433343 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.707087 -0.707126 0 0.707087 -0.707126 0 0 -1 0 0 -1 0 0.500006 -0.866022 0 0.500006 -0.866022 0 -0.500011 -0.866019 0 -0.500011 -0.866019 0 0 -1 0 0 -1 0 -0.707107 -0.707107 0 -0.707107 -0.707107 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.70701 -0.707203 0 0.70701 -0.707203 0 0 -1 0 0 -1 0 0.500447 -0.865767 0 0.500447 -0.865767 0 -0.499715 -0.86619 0 -0.499715 -0.86619 0 0 -1 0 0 -1 0 -0.707107 -0.707107 0 -0.707107 -0.707107 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.863849 -0.503747 0.00222993 0.160002 -0.987117 7.34193e-05 0.206792 -0.978385 0 0.984739 -0.174036 0 0.674047 -0.738688 -0.00014128 0.939387 -0.342859 0.000241399 0.745616 -0.666375 6.84119e-05 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.70701 0.707204 0 0.70701 0.707204 0 1 0 0 1 0 0 0.866181 0.49973 0 0.866181 0.49973 0 0.866181 -0.49973 0 0.866181 -0.49973 0 1 0 0 1 0 0 0.70701 -0.707203 0 0.70701 -0.707203 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.70701 0.707203 0 0.70701 0.707203 0 1 0 0 1 0 0 0.866178 0.499735 0 0.866178 0.499735 0 0.866184 -0.499725 0 0.866184 -0.499725 0 1 0 0 1 0 0 0.70701 -0.707203 0 0.70701 -0.707203 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.707106 0.707106 -0.00154192 0.220289 0.975435 -0.000103599 0.91905 0.39414 0 0.416384 0.909189 0.000119988 0.766648 0.642067 -0.000754975 1.12199e-05 1 1.60284e-07 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707105 0.707108 0 -0.707105 0.707108 0 0 1 0 0 1 0 -0.499725 0.866184 0 -0.499725 0.866184 0 0.500456 0.865762 0 0.500456 0.865762 0 0 1 0 0 1 0 0.707009 0.707205 0 0.707009 0.707205 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707105 0.707108 0 -0.707105 0.707108 0 0 1 0 0 1 0 -0.50002 0.866014 0 -0.50002 0.866014 0 0.500015 0.866017 0 0.500015 0.866017 0 0 1 0 0 1 0 0.707086 0.707128 0 0.707086 0.707128 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 -9.66162e-06 1 -1.38023e-07 -0.911391 0.411541 0.00020904 -0.439737 0.898127 0.000177042 -0.921014 0.389529 -0.000106211 -0.93274 0.36055 0 -0.624517 0.781011 -0.000289744 -0.583807 0.811892 -3.72239e-05 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707088 -0.707125 0 -0.707088 -0.707125 0 -1 0 0 -1 0 0 -0.866184 -0.499725 0 -0.866184 -0.499725 0 -0.866178 0.499735 0 -0.866178 0.499735 0 -1 0 0 -1 0 0 -0.707088 0.707125 0 -0.707088 0.707125 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.000871232 0 1 0 0 1 -0.000240747 -0.00141941 0.999999 0 0 1 0.00170728 0 0.999999 0.00047931 -0.00203994 0.999998 0 0 1 0.0011406 0.00114077 0.999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.248287 -0.248286 0.936327 0 0 1 0 0 1 0 0 1 0 0 1 0 0.00194263 0.999998 0.0254881 0.0158893 0.999549 -0.0281261 0.0487152 0.998417 0.0160806 0.0278515 0.999483 0 0.0315102 0.999503 -0.0227803 0.00234436 0.999738 -0.0179898 0.00453063 0.999828 0.00238503 -0.0209674 0.999777 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -4.50202e-05 -1.13447e-05 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.00921968 0.999958 0.0149872 -0.00567348 0.999872 -0.00248396 0.00429722 0.999988 -0.00992477 0.00562826 0.999935 0.00376677 0.00652919 0.999972 0.00771159 0.00453658 0.99996 0 0.00754259 0.999972 0 0 1 0 0 1 -0.00349159 0.00349161 0.999988 0.00133556 0.019395 0.999811 -0.0191232 0 0.999817 -0.0206805 0.00451481 0.999776 -0.0376692 -0.0217327 0.999054 -0.0205869 0.0118773 0.999718 -0.0236044 0 0.999721 0.00139773 -0.0194469 0.99981 -0.00145555 -0.00577955 0.999982 0.000912805 -0.00456245 0.999989 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0399906 -0.0399904 0.998399 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.000244362 -0.000970289 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.000669525 0 1 -0.044945 -0.0259307 0.998653 -0.0194625 0.0335621 0.999247 -0.0334224 0.0192823 0.999255 -0.0338556 0 0.999427 0 0 1 -0.0131934 -0.0131934 0.999826 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 4.14659e-05 -8.39008e-05 1 0.138178 0.117565 0.983405 -4.72421e-05 0 1 -2.5646e-05 -5.44981e-05 1 0 0 1 0.0126275 -0.0186406 0.999747 0 -0.00203203 0.999998 0.00105575 -0.00182995 0.999998 0.00300616 -0.000987082 0.999995 0.000514854 0.000890669 0.999999 0 0.00116816 0.999999 -0.06058 -0.0371762 0.997471 0.0637064 -0.0160534 0.99784 0.0599978 0.0120034 0.998126 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.00221415 -0.000557622 0.999997 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.00181526 0.999998 0.00297155 -0.0051466 0.999982 -0.000521113 -0.0021059 0.999998 -0.0011356 -0.00196684 0.999997 0 -0.00255958 0.999997 0 0 1 0 0 1 0.00138931 -0.0013895 0.999998 0.001944 0 0.999998 0.000432917 0.00237281 0.999997 0 0 1 0 0 1 0.00250454 -0.0112315 0.999934 0.00855325 0 0.999963 0.00236966 0.00940949 0.999953 0.0310413 0.0339705 0.998941 -0.00751247 0.0375481 0.999267 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0624483 0.0624486 0.996093 0 0 1 0 0 1 0 0 1 -0.00657424 -0.00573362 0.999962 -0.00785411 0.00103567 0.999969 -0.0244612 -0.0278562 0.999313 -0.0168614 -0.0236308 0.999579 0.0127076 0.0467694 0.998825 0.0608589 0.0781837 0.99508 0.0953257 -0.0190713 0.995263 0.0968298 0.00131445 0.9953 -0.017345 -0.0747045 0.997055 -0.0551279 -0.0691671 0.996081 -0.00165276 -0.000921814 0.999998 -0.00074483 0.00295759 0.999995 0.0124487 -0.0119164 0.999852 0.000456711 0.00228269 0.999997 0.0362887 -0.0137531 0.999247 -0.0115043 0.0556345 0.998385 -0.00954626 0.0159969 0.999826 0.0033201 0 0.999995 0.00302651 0.00125427 0.999995 -0.00110945 0.00016107 0.999999 0 0 1 -0.0217425 0.00944153 0.999719 -0.0292674 0.00801189 0.99954 0.00673215 -0.0388931 0.999221 0.0195625 0.0671031 0.997554 0 0 1 1 0 0 1 0 0 0.836123 -0.548542 0 0.923857 -0.382737 -0.000205817 0.923857 -0.382737 0.000204034 0.970794 -0.239913 0 0.923857 0.382737 0 0.923857 0.382737 0 0.707087 0.707126 0 0.707087 0.707126 0 0.547874 0.836561 0 0.0880987 0.996112 0 0.196188 0.980566 -0.0004104 0.196188 0.980566 0.000406845 0.975151 0.221539 -0.00102549 0.995011 0.099765 -0.000239911 0.0919491 0.995764 0 0.542384 0.840131 -0.000527781 0.289423 0.957201 0.00117875 0.841137 0.540822 -0.000789356 0.947577 0.319528 0.000484174 0.842076 0.539358 0.000340675 0.285594 0.95835 -0.000872589 0.537167 0.843476 0.000300081 1 0 0 0.923809 0.382853 0 0.923809 0.382853 0 0.707042 0.707172 0 0.707042 0.707172 0 0.548661 0.836045 0 0.240907 0.970548 0 0.382857 0.923808 -0.000205139 0.382857 0.923808 0.000203363 0 1 0 0 1 0 -0.382853 0.923809 0 -0.382853 0.923809 0 -0.707106 0.707107 0 -0.707106 0.707107 0 -0.835602 0.549335 0 -0.980569 0.196177 -0.000413253 -0.923813 0.382845 0.000205066 -0.991781 0.127945 -0.000153839 -1 0 0 -0.935727 0.352724 -0.000459517 -0.381734 0.924272 -0.000682958 -0.126368 0.991983 0.000151943 -0.993062 0.117592 0.00014139 -0.243586 0.969879 0.00067307 -0.855983 0.517003 -0.0001391 -0.562332 0.826912 -0.000576452 -0.529981 0.848009 0.000307452 -0.951595 0.307352 0.00120254 -0.855058 0.518533 0.000304269 0 1 0 -0.116503 0.99319 -0.00014008 -0.538094 0.842885 0 -0.695444 0.71858 0 -0.516112 0.856521 -3.09304e-05 -0.225379 0.974271 0 -0.225378 0.974271 0 -0.38285 0.923811 0.000231168 -0.196181 0.980568 -0.000433222 -0.516407 0.856344 3.06169e-05 -0.707107 0.707107 0 -0.707107 0.707107 0 -0.835599 0.54934 0 -0.923809 0.382853 -0.000206843 -0.923809 0.382853 0.000205052 -0.970951 0.239277 0 -1 0 0 -1 0 0 -0.923809 -0.382853 0 -0.923809 -0.382853 0 -0.707107 -0.707107 0 -0.707107 -0.707107 0 -0.38285 -0.923811 0 -0.38285 -0.923811 0 0 -1 0 -0.968471 -0.249124 0.000871455 -0.470499 -0.882401 -0.00021753 -0.777423 -0.628977 0.000689875 -0.99423 -0.107274 0 -0.0650078 -0.997885 0.000156327 -0.224628 -0.974443 0.00163236 -0.448515 -0.893775 -0.000581555 -0.961713 -0.274056 -0.000905465 -0.351296 -0.936265 0.000103919 -0.796121 -0.605137 -0.000787104 -0.998617 -0.052583 0 -0.980569 -0.196177 0.000454519 -0.892551 -0.450946 0 -0.980569 -0.196177 -0.000451757 -0.707106 -0.707107 0 -0.707106 -0.707107 0 -0.382853 -0.923809 0 -0.382853 -0.923809 0 0 -1 0 0 -1 0 0.382857 -0.923808 0 0.382857 -0.923808 0 0.707042 -0.707172 0 0.707042 -0.707172 0 0.991418 -0.130732 -0.00015719 0.980568 -0.196181 0 0.267737 -0.963492 0.000751561 0.947647 -0.319319 -0.000926561 0.0914862 -0.995806 0 0.957263 -0.289218 -0.00034775 0.900445 -0.43497 0.00024843 0.487152 -0.873317 0.000270952 0.554249 -0.832351 -0.000578543 0.261822 -0.965116 -0.00109617 -0.658866 -0.752067 0.0170849 -0.749721 -0.661754 -0.000647177 0.2196 -0.97559 0.000105269 -0.930319 0.366749 -0.0014514 0.401063 -0.916049 -0.00178722 -0.214449 -0.976735 0.000812163 -0.214929 0.97663 -0.000296243 -0.851768 0.523919 0.000163041 -0.46194 0.886911 0.00100999 -0.764193 -0.644987 -0.000371206 0.935774 -0.352601 -0.000309757 0.143381 0.989667 0.000539692 0.368203 0.929745 -0.000210326 0.872303 -0.488965 0.00103233 0.856982 0.515342 0.00186969 -0.999999 -0.000833192 0.00109988 0.522441 0.852676 0.000308294 0.940368 0.340159 -0.000441283 -0.463808 0.885908 -0.007075 0.9991 0.0424218 0.000345148 0.855301 -0.51813 -0.00116759 0.491356 0.870959 0.000483458 -0.846842 0.531844 -0.00064208 0.841724 -0.539907 -0.00070631 0.425818 -0.904809 -0.000485337 -0.766809 -0.641875 -0.000461194 0.106646 0.994296 -0.00105024 -0.139683 -0.990196 -0.000683648 -0.999392 -0.0348544 0.000446352 -0.505606 0.862764 0.000718975 -0.425998 0.904724 8.49881e-05 -0.795724 -0.605659 -9.63057e-05 -0.992443 0.122703 -0.00123499 -0.385004 -0.922915 5.7288e-05 0.999306 0.0372539 -0.000192091 0.870286 -0.492547 -7.13204e-05 0.969821 0.243813 0.00137877 0.26779 -0.963477 0.000654096 -0.826431 0.562943 0.0103074 -0.199754 -0.979845 -0.00135996 0.92877 0.370657 0.000146426 0.95398 -0.29987 0.000469289 0.159966 0.987122 -0.000538692 0.976604 0.215044 -0.00127428 0.633256 0.773941 0.00140938 -0.981363 0.192163 -0.000423862 0.591495 -0.806301 0.00355307 -0.612172 0.790723 0.00194958 0.465924 -0.884825 0.000128668 0.957937 -0.286979 0.000385491 0.116473 0.993194 -2.91484e-05 -0.27348 -0.961878 -0.000220654 -0.459328 0.888266 -0.00048096 -0.821051 -0.570854 -0.000307301 -0.965567 -0.260154 0.000981826 -0.634678 -0.772776 0.000676532 -0.963519 0.267639 4.1832e-05 -0.680482 0.732765 0.000110534 0.564363 -0.825525 -0.00169378 0 -0.999999 0.00106806 0.128676 0.991686 -0.000645506 -0.241572 0.970383 0.000117318 0.634667 0.772786 -0.000521391 0.964462 0.264223 -0.000279351 -0.965714 -0.259609 0.000598703 0.956994 -0.290106 -0.00103844 -0.926608 0.376029 -0.000737767 0.442323 0.896856 0.000378353 -0.945063 -0.326887 -0.000108709 0 -1 -0.000747849 -0.568607 -0.822608 -0.00149017 0.593567 -0.804784 -0.000620033 0.738374 -0.674391 0.000715768 -0.15143 -0.988468 0.000797006 0.986878 0.161469 0.000470412 0.99888 -0.0472611 -0.00215603 -0.530294 -0.847807 0.00327328 0.387176 -0.922004 -0.00154614 -0.647258 -0.76227 -0.000839682 -0.669791 0.742549 2.1754e-06 0.656224 0.754566 0.000336164 -0.438225 -0.89886 0.00318331 0.975089 0.221814 0.000145471 -0.995305 0.0967854 0.00125027 -0.353246 -0.935528 -0.00208139 0.497785 -0.8673 -0.000201841 -0.979494 0.201475 -0.000561552 0.983734 -0.179631 -0.000598215 -0.699615 0.71452 -0.000496625 0.715161 0.69896 -6.21276e-05 -0.889605 -0.45673 0.00122206 0.851351 -0.524596 0.000567581 -0.913166 -0.407587 0.000846957 0.994556 0.104195 0.00102399 -0.438953 -0.89851 -0.00111772 -0.95321 0.302309 0.000122272 0.250174 0.968201 3.10527e-05 -0.180497 0.983576 -1.88017e-05 0.259077 0.965857 6.37034e-05 -0.882576 -0.470161 -0.00284483 0.259077 0.965856 -0.00125666 0.992872 0.119178 -0.00171709 0.847562 -0.530694 0.00166674 0.51726 -0.855828 -0.00052128 0.919056 -0.394127 -6.92277e-05 0.763361 0.64597 0.00174496 0.364977 -0.931017 0.000243209 -0.0515665 -0.99867 -0.000442546 -0.364782 0.931093 0.000516873 -0.284235 0.958753 0.00199859 -0.388263 -0.921549 0.000383863 0.761549 0.648105 0.00171417 -0.989201 0.14655 0.0021916 -0.986236 -0.165302 -0.00366405 -0.785864 0.618287 0.0117704 -0.13566 -0.990744 -0.00476306 0.272431 0.962175 -0.00124819 0.320127 -0.947367 0.00374174 0.909128 -0.416516 0.000857912 -0.986421 0.164236 0.000491226 -0.689382 0.724398 -0.000247623 0.944551 0.328365 -0.000118212 -0.971529 -0.236917 -0.00123958 0.895325 0.445414 0.00070593 0.916636 -0.39972 0.00121502 -0.332147 -0.943227 -0.000757739 -0.917316 -0.398159 5.79362e-05 0.343696 -0.93908 -0.00123275 -0.999309 0.0371671 -0.000179898 -0.929469 0.368901 -0.000228505 0.481801 0.876281 0.000268071 -0.130688 -0.991423 0.000795612 -0.687349 -0.726327 0.000515306 0.955229 -0.295868 -0.000882037 -0.130688 -0.991423 -0.00121478 0.883511 0.468409 -0.00102544 0.975947 -0.218006 -0.00028124 0.968779 0.247925 0.000112389 -0.622121 -0.782916 0.00299377 0.382097 -0.924122 -0.000850436 0.130689 -0.991423 0.00121479 0.022374 0.99975 0.000191777 -0.933492 -0.358597 0.000776652 0.130688 -0.991422 -0.00186339 0.682724 -0.730677 -7.48406e-05 0.492409 0.870364 -0.000679037 0.788973 0.614428 -4.21878e-05 -0.497314 -0.86757 -0.00103141 0.143711 0.989619 0.000904937 0.59175 -0.806121 0.00103559 -0.950736 -0.310003 0.000273609 -0.631253 0.775577 4.73745e-05 0.893079 0.44989 0.00293805 -0.280394 -0.959883 0.00188137 0 -0.707425 -0.706788 0 -0.707425 -0.706788 -0.000315699 -0.991403 -0.130846 0 -0.922451 -0.386115 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999997 0 0.00226381 -0.999998 -0.00171313 -0.000631328 -0.999996 0.00138449 0.00239938 -0.999995 -0.00159003 0.00275559 -0.999989 0 -0.00462907 -0.999971 0.00758019 -8.07328e-05 -1 0 0 -0.999988 -0.00344055 -0.00345029 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 8.60031e-05 -4.25048e-05 -0.706626 0.435957 0.557335 -1 0 4.59707e-05 -1 5.36979e-05 2.52693e-05 -1 0 0 -0.999976 -0.00690461 0 -0.999979 -0.00560104 0.00323148 -0.999977 -0.00658225 0.00172358 -0.99999 -0.00396989 -0.0022904 -0.999988 -0.00491178 0 -0.999992 -0.00383418 0.00113574 -0.999952 -0.00239797 0.0095053 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999612 -0.00681589 -0.0270155 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999923 -0.0124022 0 -0.999935 -0.0113967 -0.000778152 -0.99992 -0.0109745 0.00633165 -0.999834 -0.0157857 -0.00910742 -0.999833 -0.0170463 -0.00652874 -0.999837 -0.0180513 0 -1 0 0 -1 0 0 -0.999946 -0.00733546 0.00730437 -0.999894 0 0.0145553 -0.999906 0.00684161 0.0118568 -0.999902 0.00978279 0.00998537 -0.999983 -0.00291137 0.00504552 -0.999985 0 0.00549004 -0.999988 0.00477938 -0.000997761 -1 0.000220524 5.55211e-05 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999586 0.0203424 -0.0203427 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.99976 0.021228 -0.00534457 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999834 0 0.0182374 -0.999877 -0.00118769 0.0156336 -0.999461 0.0164074 0.0284351 -0.999825 -0.00933755 0.0161821 -0.999834 0 0.0182374 -1 0 0 -0.999996 -0.00196786 -0.00195952 -0.999827 0.0177014 -0.00567702 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999631 -0.0192006 -0.0192009 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999985 -0.00544152 0 -0.999976 -0.00602607 0.0034767 -0.999973 -0.00632817 -0.00365099 -0.999223 0.00408248 0.0391974 -0.99964 0.0268387 0 -0.998676 0.0125835 -0.0498762 -0.999393 -0.0136158 -0.0320825 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999815 0.00469957 0.0186286 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.996171 0.087422 0 -0.998271 -0.00359206 0.0586639 -0.995247 0.0843505 -0.0486654 -0.990395 0.119763 0.0690967 -0.999852 0.0172061 0 -0.996265 0.0563105 -0.0654606 -1 0 0 -1 0 0 -0.999849 0.0122573 -0.012292 -0.999736 0 -0.0229586 -0.999781 -0.0104506 -0.0181111 -0.999783 -0.0110859 -0.017664 -0.999965 0.00415294 -0.00719732 -0.999959 0 -0.00900734 -0.999961 -0.00880908 -0.000460294 -0.999986 -0.00521518 -0.00131302 -0.996448 -0.0425734 -0.0726538 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.0256168 -0.706869 0.70688 -1 0 0 -1 0 0 -1 0 0 -1 0.000642694 -0.000161811 -1 0.000459479 0.000192327 -0.999985 0.003891 -0.00379402 -0.999989 0.00465395 0 -0.978866 0.0548698 -0.197003 -0.994035 -0.0520308 -0.0958467 -0.98525 -0.114466 0.127204 -0.999947 0 0.0102581 -0.999955 0.00358575 0.00874431 -0.999084 -0.0397424 -0.0158665 -0.999826 0.0172647 0.00712466 -0.999761 0.0218786 0 -0.998352 -0.0354112 0.0451607 -0.997654 -0.0352817 0.0586642 -0.997295 0.032787 -0.065791 -0.998665 0 -0.0516627 -0.998672 0.00536464 -0.0512469 -0.999885 -0.00294642 0.0148837 -0.99818 0.0302591 0.0521621 -0.996925 0.063072 0.0465048 -0.996498 -0.0831846 -0.00845995 -0.997223 -0.0744642 0.0015502 -0.997185 -0.0749779 0 -0.9962 -0.0803363 0.0336268 -0.999732 0.00464318 -0.0226627 -0.999632 0.000343489 -0.0271077 -0.999946 0.00993418 0.00308163 -0.999946 0.00993978 0.00308673 -0.999923 0.00976892 0.0076868 -1 0.000166627 -3.33265e-05 -0.999934 -0.00657854 0.00945557 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707683 0.70653 0 -0.707683 0.70653 0 0 1 0 0 1 0 -0.49978 0.866152 0 -0.49978 0.866152 0 0.499791 0.866146 0 0.499791 0.866146 0 0 1 0 0 1 0 0.707683 0.70653 0 0.707683 0.70653 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.947299 0.320352 0.00211684 -0.7071 0.70711 0.000139469 -0.920783 0.390075 0 -0.43933 0.898326 -0.000268443 -0.492372 0.870385 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.706717 -0.707497 0 -0.706717 -0.707497 0 -1 0 0 -1 0 0 -0.866178 -0.499735 0 -0.866178 -0.499735 0 -0.866178 0.499735 0 -0.866178 0.499735 0 -1 0 0 -1 0 0 -0.707683 0.70653 0 -0.707683 0.70653 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.706728 -0.707485 0 -0.706728 -0.707485 0 -1 0 0 -1 0 0 -0.866178 -0.499735 0 -0.866178 -0.499735 0 -0.866178 0.499735 0 -0.866178 0.499735 0 -1 0 0 -1 0 0 -0.707683 0.70653 0 -0.707683 0.70653 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0.000824163 -0.523016 -0.852322 -0.000117508 -0.970579 -0.240783 0 -0.982745 -0.184965 0 -0.315121 -0.949051 -0.000575305 -0.482652 -0.875812 5.97765e-05 -0.977737 -0.209836 -0.000309998 -0.751968 -0.6592 0.000414782 -0.751967 -0.6592 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.706717 -0.707497 0 0.706717 -0.707497 0 0 -1 0 0 -1 0 0.499791 -0.866146 0 0.499791 -0.866146 0 -0.49978 -0.866152 0 -0.49978 -0.866152 0 0 -1 0 0 -1 0 -0.706717 -0.707497 0 -0.706717 -0.707497 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.706717 -0.707497 0 0.706717 -0.707497 0 0 -1 0 0 -1 0 0.499786 -0.866149 0 0.499786 -0.866149 0 -0.499786 -0.866149 0 -0.499786 -0.866149 0 0 -1 0 0 -1 0 -0.706717 -0.707497 0 -0.706717 -0.707497 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 -0.000775075 0.457209 -0.889359 0 0.955937 -0.293571 0.000519256 0.927495 -0.373835 0.000367482 0.54112 -0.840945 0 0.396093 -0.91821 -0.000343977 0.898882 -0.43819 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707683 0.70653 0 0.707683 0.70653 0 1 0 0 1 0 0 0.866178 0.499735 0 0.866178 0.499735 0 0.866178 -0.499735 0 0.866178 -0.499735 0 1 0 0 1 0 0 0.706729 -0.707484 0 0.706729 -0.707484 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707683 0.70653 0 0.707683 0.70653 0 1 0 0 1 0 0 0.866178 0.499735 0 0.866178 0.499735 0 0.866178 -0.499735 0 0.866178 -0.499735 0 1 0 0 1 0 0 0.706718 -0.707496 0 0.706718 -0.707496 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 -8.91081e-07 1 6.23753e-05 -0.000128027 0.886104 0.463487 6.76335e-06 0.320026 0.947409 7.77521e-05 0.81898 0.573822 -0.000395588 0.267584 0.963534 0 0.322475 0.946578 0.000347422 0.864389 0.502823 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707683 0.70653 0 -0.707683 0.70653 0 0 1 0 0 1 0 -0.499786 0.866149 0 -0.499786 0.866149 0 0.499786 0.866149 0 0.499786 0.866149 0 0 1 0 0 1 0 0.707683 0.70653 0 0.707683 0.70653 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999111 0 -0.042155 0.999186 0.0201673 -0.0349513 0.993697 -0.0560269 -0.0970955 0.993529 -0.0694401 -0.0898796 0.993466 0 -0.114128 1 0 0 0.996964 0.0549795 -0.0551352 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.993982 0.0925892 0.0585327 0.999472 0.0324781 0 0.999496 0.0316516 0.00231645 0.998293 0.0505965 0.0291913 0.999577 0.0251794 -0.0145271 0.999549 0.0300171 0 0.999496 -0.00517861 0.0313148 0.99998 0.00155744 0.00617351 0.99523 0.0809316 0.0544672 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.99971 0.0058912 -0.0233504 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.000381294 0 0.999847 0.0153367 0.00842127 1 0.000420422 0.000242559 1 0.000445939 -0.000257281 0.999752 0.0222764 0 0.99952 0.00790947 -0.029962 1 0 0 1 0 0 0.999844 0.0125028 0.0124498 0.999788 -0.00436104 0.0201369 0.999929 0 0.0119462 0.999883 -0.00765136 0.0132599 0.999868 0.0081357 0.0140997 0.999929 0 0.0119462 0.999918 0.000447957 0.0128292 0.999704 -0.0235774 0.00593606 0.999852 -0.0168729 -0.00337467 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.973462 -0.161819 -0.161821 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999842 0.0172237 0.0043364 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999981 0 0.00610639 0.999984 -0.00281314 0.00487529 0.999915 0.00652942 0.0113158 0.9996 0 0.0282929 0.999637 0.0177533 0.0202695 1 0 0 0.999976 0.00486221 -0.0048416 0.998362 -0.0547507 -0.0166004 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.129002 0.701195 -0.701202 1 0 0 1 0 0 1 0 0 0.999918 0.0128414 0 0.999886 0.0130795 0.00754613 0.999819 0.0164758 -0.00950558 0.999056 -0.00372592 0.0432867 0.999601 -0.0282388 0 0.998237 0.00285884 -0.0592781 0.99984 -0.00437261 -0.0173313 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999474 -0.0079312 0.0314384 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999993 -0.00376668 0 0.99974 -0.0160635 -0.016203 0.99996 0.00776077 0.00447752 0.999952 0.000929587 -0.00977337 0.99998 0.00544043 -0.00313882 0.999984 0.00561461 0 1 0 0 1 0 0 0.999995 0.00215297 0.00215907 0.999742 -0.021662 0.00679127 0.999889 0 -0.0149181 0.9999 0.00706072 -0.0122365 0.988452 -0.120901 -0.0913503 0.991895 -0.0635025 -0.110052 0.993379 0 -0.114883 0.99779 0.0645345 -0.015837 0.997841 0.0636863 -0.0160342 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.996814 0.056398 0.0563986 1 0 0 1 0 0 1 0 0 0.999642 0.0101583 0.0247724 0.999635 0.00932099 0.0253641 0.999748 -7.6604e-05 0.0224615 0.999649 0.0264661 -0.0015497 0.999431 0.0188892 0.0279285 0.998694 0.050645 0.00668416 0.999675 0.00387103 -0.0252105 0.999879 -0.00607553 -0.0143156 0.999658 0 -0.0261625 0.988456 0.140839 -0.0558568 0.992661 -0.00836549 0.120642 0.999731 -0.0231599 0.00134165 0.99891 -0.0456706 0.00967248 0.999992 0.00392631 0.000988524 0.999992 0.00371512 -0.00155506 0.999991 0.00428424 0 0.995859 -0.0606908 -0.06768 0.997669 -0.035986 -0.0579809 0.995422 0.0379699 0.087715 0.997368 -0.0140805 0.071127 0.999973 -0.00122492 0.00729557 0.99985 0.0171906 -0.00226894 0.999897 0.0103617 -0.00990869 0.998434 0.00503094 0.0557107 0.996873 -0.0493113 -0.0617479 0.999813 0 -0.0193543 0.999822 0.00736112 -0.0173448 1 0 0 1 0 0 0 0 -1 0 0 -1 0 -0.379539 -0.925176 0 -0.379539 -0.925176 0 0.379539 -0.925176 0 0.379539 -0.925176 0 0.707425 -0.706788 0 0.707425 -0.706788 0 0.922451 -0.386115 0 0.922451 -0.386115 0 1 0 0 1 0 0.000449626 0.945297 -0.326212 0 0.071284 -0.997456 0 0.973721 -0.227742 0.000343575 0.70041 -0.71374 -0.000651948 0.81073 -0.58542 3.35671e-05 0.975861 -0.218393 0.000302291 0.375587 -0.926787 -0.00026474 0.131202 -0.991356 0.000920686 0.273307 -0.961927 0 0.194194 -0.980963 0 0.194194 -0.980963 0 0.707433 -0.70678 0 0.707433 -0.70678 0 0.922451 -0.386115 0 0.922451 -0.386115 0 1 0 0 1 0 0 0.95258 0.304287 0.00013328 0.924383 0.381467 0 0.849804 0.527099 -0.000134841 0.924383 0.381467 0 0.70678 0.707433 0 0.70678 0.707433 0 0.254554 0.967058 0 0.5494 0.83556 0.000435877 0.390671 0.92053 0 0.390671 0.92053 0 0.390671 0.92053 -0.000337811 -0.390671 -0.92053 0 0.254554 0.967058 0 0 1 0 0 1 0.000151416 0.991985 0.126355 0 0.352126 0.935953 -0.000165374 0.393049 0.919517 4.23839e-05 0.888928 0.458048 -0.00036931 0.947629 0.319374 0.00120937 0.965368 0.260889 0 1 0 -0.000457126 0.924382 0.381467 0 0.98058 0.196122 0 0.706788 0.707426 0 0.706788 0.707426 0 0.39054 0.920586 0 0.39054 0.920586 0 0 1 0 0 1 0 -0.39054 0.920586 0 -0.39054 0.920586 0 -0.706788 0.707426 0 -0.706788 0.707426 0 -0.837105 0.547042 -7.50774e-05 -0.998035 0.0626514 -0.000495815 -0.991402 0.130853 0.000420414 -0.980579 0.196122 0.00174136 -0.959959 0.280136 -0.000149901 -0.12467 0.992198 -0.000163967 -0.990595 0.136829 -0.000136918 -0.836048 0.548657 0.000319899 -0.304725 0.95244 -0.000251427 -0.506143 0.862449 -0.00132912 -0.936678 0.35019 0.000789416 -0.918334 0.395806 0.00195995 -0.727045 0.686587 -0.00109113 -0.239928 0.97079 0 0 1 0.000469736 -0.390671 0.92053 0 -0.200713 0.97965 0 -0.70678 0.707433 0 -0.70678 0.707433 0 -0.924383 0.381467 0 -0.924383 0.381467 0 -1 0 0 -1 0 0 -0.922451 -0.386115 0 -0.922451 -0.386115 0 -0.707433 -0.70678 0 -0.707433 -0.70678 0 -0.379406 -0.92523 0 -0.379406 -0.92523 0 0 -1 -0.000237983 -0.560898 -0.827885 -0.000855668 -0.447362 -0.894353 0.000248459 -0.10332 -0.994648 -0.000183272 -0.937579 -0.347773 -0.000102311 -0.564851 -0.825193 0.000113882 -0.920085 -0.391719 0 -0.933613 -0.358282 0.00158364 -0.256103 -0.966648 0 -1 0 -0.000574905 -0.929176 -0.369637 -0.000544074 -0.840353 0.542039 -0.000853459 0.914368 0.404883 -0.00160914 -0.0828342 0.996562 -0.000957202 0.69879 -0.715326 0.00207465 -0.985657 0.168751 0.0011916 -0.460116 0.887858 -0.000382816 -0.250791 -0.968041 0.000422201 -0.137193 -0.990544 0.00130979 -0.786161 -0.618021 0.00179629 0.951674 -0.307104 0.000469865 0.549801 -0.835295 0.00133828 0.215982 0.976397 0.000169102 0.876544 0.481321 -0.00133338 -0.986512 0.163684 -0.00128033 0.866263 0.499587 -0.00102488 0.29426 0.955725 -0.00106335 -0.505858 0.862616 0.000897383 0.552384 -0.833589 -0.000624056 0.408197 -0.912894 -0.000563497 -0.999174 0.040624 0.000284142 -0.0943726 0.995537 0.000262048 -0.767673 0.640842 0.000351704 0.948187 -0.317712 -0.0013928 -0.154681 -0.987963 -0.000798646 -0.76611 -0.642709 0.000741527 0.68561 0.727969 0.000902303 -0.626308 -0.779575 -3.9937e-05 0.960521 -0.278207 -0.00185668 -0.890894 -0.454208 -0.000137156 0.998807 -0.0488404 -0.000659887 -0.775876 0.630885 -0.000359654 0.644832 0.764324 0.000256409 -0.984231 -0.176887 -0.000451773 -0.0474823 0.998872 -0.000405231 0.0724027 -0.997375 0.000629354 -0.302804 -0.953053 0.00016709 0.671271 -0.741212 5.83596e-05 -0.749601 -0.66189 0.000868858 -0.378954 0.925415 0.000819828 -0.874178 0.485605 0.00115951 0.853564 0.520987 0.000640352 0.322607 0.946533 7.30596e-05 0.682779 -0.730625 0.000105671 0.189594 -0.981863 0.000225948 0.99499 -0.0999747 -0.00140643 -0.866456 0.499252 -0.00109196 0.685968 -0.727631 -0.000612036 -0.982447 -0.186543 -0.000876618 0.992955 -0.118488 -0.00102814 0.341303 0.939953 0.000387992 -0.988646 0.150261 -0.00064673 0.831003 0.556268 -8.55178e-05 0.183149 -0.983085 0.000440865 -0.368003 0.929825 0.00155732 0.91922 -0.393741 0.000620939 -0.388197 0.921576 -0.00134765 -0.627398 -0.778698 0.000427278 -0.831831 -0.555029 0.00150219 0.695699 0.718332 0.00145737 0.0418351 -0.999123 -0.001726 -0.421098 -0.907014 -0.0020375 -0.548867 0.835908 0.00191606 -0.116994 0.993131 -0.000570521 0.848667 -0.528927 -0.000753306 -0.144949 -0.989439 -0.000272743 -0.973148 -0.230179 5.48049e-05 0.502983 0.864296 0.00132097 0.95309 0.302685 -0.000858911 0.862339 -0.506331 0.00127993 -0.443993 -0.89603 -0.000143459 -0.658687 0.752417 -0.00103718 -0.951528 -0.30756 0.000777549 -0.949145 0.314837 0.00157368 0.375999 -0.926619 0.000232991 0.519193 0.854657 0.000359668 0.977715 0.209939 -0.00184528 0.403474 -0.914989 -0.00107671 0.971652 0.236413 -0.00189702 -0.457229 -0.889347 -0.000883876 0.556555 0.83081 -0.000365499 -0.675056 0.737766 -0.000462001 -0.047808 0.998856 0.000530886 -0.0713153 -0.997454 -0.00117393 -0.951733 -0.306924 0.000411569 -0.203057 0.979167 0.000837252 -0.860174 -0.509999 -0.000676597 -0.952266 0.30527 0.00164445 0.812499 0.58296 0.000546047 0.901336 -0.43312 0.00181659 0.838538 -0.54484 0.00101703 -0.858492 0.512827 0.00247054 0.651527 -0.758621 0.000559768 0.252711 0.967542 -0.000975484 0.447328 0.894369 -6.13064e-05 -0.782834 -0.62223 -0.000386704 -0.513109 0.858323 -0.000360723 -0.958114 0.286388 0.000624668 -0.75824 0.651975 -0.00082278 0.972225 0.234047 0.00116904 0.999987 -0.00504071 -0.000166032 0.693578 -0.720381 -0.000754384 0.734313 -0.67881 0.00140517 -0.998832 -0.0483014 9.09957e-05 -0.198027 -0.980197 0.000200091 -0.17909 -0.983833 0.000828569 0.219092 -0.975704 0.00101902 -0.26573 0.964047 0.00101362 0.734241 0.678889 0.000454422 -0.73045 -0.682967 -0.00142274 0.998464 -0.0553843 -0.000705616 0.739997 0.672609 0.000458734 0.956949 0.290256 0.00016245 0.766201 -0.642601 -0.00104631 -0.710786 -0.703407 -0.000878957 -0.772286 0.635275 -0.000555313 0.238635 0.971109 0.000437045 -0.999363 -0.0356839 -0.000909619 0.241013 -0.970521 -0.000383165 -0.19312 -0.981175 -0.000240938 -0.999631 0.0271703 0.000399156 0.508572 0.861019 4.60662e-05 -0.301716 0.953398 0.00167484 -0.461968 -0.886895 0.00140051 -0.449949 0.893053 0 -0.707433 -0.70678 0 -0.707433 -0.70678 0 -0.922451 -0.386115 0 -0.922451 -0.386115 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999992 0 0.00387203 -0.993346 -0.0575588 -0.0997517 -0.998168 0.0550697 -0.0250473 -0.998116 0.0306637 -0.0531415 -0.998094 0 -0.0617152 -1 0 0 -0.999232 -0.0276644 -0.0277428 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.994422 0.0745844 0.0745852 -1 0 0 -1 0 0 -1 0 0 -0.998737 -0.0424619 0.0268696 -0.999997 -0.0025404 0 -0.999996 -0.00245135 0.00141429 -0.999995 -0.00311783 -0.000849114 -0.999995 -0.00274558 -0.00158404 -0.999995 -0.00316822 0 -0.999978 -0.00612791 -0.00250504 -0.999955 -0.00231745 0.00918546 -0.999981 0.00237192 0.00578185 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999993 -0.000903165 -0.00358004 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999996 -0.00275815 0 -0.999998 -0.00174375 -0.000989056 -0.999891 0.012794 -0.00738143 -0.999903 0.00218358 0.0137565 -0.999951 0.00859619 0.00495951 -0.999959 0.00908941 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.998856 0.040269 -0.0258013 -0.999039 0.0218532 -0.0380009 -0.998906 0 -0.0467701 -0.997911 -0.0616237 0.0194007 -0.999813 0.0187527 0.00472348 -0.999806 0.018202 -0.00751146 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.501285 0.72423 -0.473503 -0.994943 0.0710222 -0.0710209 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999766 0.0209916 -0.00528741 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999999 0 -0.00166156 -0.999999 -0.000782115 -0.00136005 -1 -0.000194135 0.000337579 -0.999998 -0.00212376 -0.00052461 -1 0 0.000377099 -1 0 0 -0.999971 0.00538999 0.00537865 -0.999867 -0.00971946 0.0131059 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.96906 -0.174534 -0.174531 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999958 0.00919473 0 -0.999923 0.00314706 -0.0119969 -0.999951 -0.00859756 0.0049603 -0.999987 -0.00439119 -0.00253346 -0.999987 -0.00516226 0 -0.999902 0.00840316 0.011164 -0.999909 0.00330739 -0.0131101 -0.999942 -0.00420855 -0.00992046 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.000218994 0.000868009 -0.999921 -0.0102159 -0.00727627 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999997 -0.00260366 0 -0.999996 0.00156501 -0.00216178 -0.999994 -0.00302077 0.00174281 -0.999994 -0.0029305 -0.00169073 -0.999946 0.0103894 0 -0.999834 0.000919153 0.0182209 -1 0 0 -1 0 0 -0.999923 0.00878515 -0.00881003 -0.999702 0 -0.0244295 -0.999535 -0.0152344 -0.0264015 -0.999425 0.0169481 -0.0293722 -0.999686 -0.0151015 -0.020019 -0.999936 0 -0.0113033 -0.999806 -0.019112 -0.00481182 -0.999875 -0.00454837 0.0151384 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.966066 -0.182642 0.182644 -1 0 0 -1 0 0 -1 0 0 -0.999978 -0.00665454 -0.0008097 -1 -0.000963074 0.000242472 -1 -0.00079381 -0.000332269 -0.996226 0.0443195 -0.0746234 -0.997429 0.0716633 0 -0.991317 0.068644 -0.112156 -0.991967 -0.06666 0.107512 -0.989832 -0.0942037 0.106572 -0.999889 -0.00978841 -0.011255 -0.999844 0.0173203 0.00346417 -0.999498 -0.0105508 0.0298821 -0.999827 -0.0163049 -0.00894224 -0.999836 -0.00558379 -0.0172334 -0.999819 0 -0.0190242 -0.999817 0.00656865 -0.0179828 -0.999985 0.00107547 -0.00543043 -0.998576 0.0455312 0.0277869 -0.999709 0.00166761 0.0240627 -0.999813 -0.00627785 0.0183131 -0.999802 -0.0178615 -0.00873625 -0.999538 -0.0154849 -0.0261549 -0.999994 -0.00339231 0.000680809 -0.999587 0.0216364 0.0189301 -0.999997 0.00096054 -0.0022642 -0.999793 0 0.0203366 -0.994149 -0.103962 -0.0293225 -0.996196 -0.0430161 0.0757823 -0.998873 0.0054977 -0.0471389 -0.999961 -0.00314145 -0.00830881 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707683 0.70653 0 -0.707683 0.70653 0 0 1 0 0 1 0 -0.49978 0.866152 0 -0.49978 0.866152 0 0.499791 0.866146 0 0.499791 0.866146 0 0 1 0 0 1 0 0.707683 0.70653 0 0.707683 0.70653 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0.000673541 -0.916816 0.399309 0 -0.287906 0.957659 0.000653929 -0.439252 0.898363 0 -0.912061 0.410054 -0.000461057 -0.81031 0.586001 -0.000155456 -0.342112 0.939659 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.706717 -0.707497 0 -0.706717 -0.707497 0 -1 0 0 -1 0 0 -0.866178 -0.499735 0 -0.866178 -0.499735 0 -0.866178 0.499735 0 -0.866178 0.499735 0 -1 0 0 -1 0 0 -0.707694 0.706519 0 -0.707694 0.706519 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.706717 -0.707497 0 -0.706717 -0.707497 0 -1 0 0 -1 0 0 -0.866178 -0.499735 0 -0.866178 -0.499735 0 -0.866178 0.499735 0 -0.866178 0.499735 0 -1 0 0 -1 0 0 -0.70739 0.706824 0 -0.70739 0.706824 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 -0.00130272 -0.268385 -0.963311 0 -0.429703 -0.90297 0.000436086 -0.586404 -0.810019 -0.000594567 -0.905329 -0.424711 0.000449327 -0.888021 -0.459803 0 -0.95374 -0.300632 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.7072 -0.707013 0 0.7072 -0.707013 0 0 -1 0 0 -1 0 0.498523 -0.866876 0 0.498523 -0.866876 0 -0.498513 -0.866882 0 -0.498513 -0.866882 0 0 -1 0 0 -1 0 -0.7072 -0.707013 0 -0.7072 -0.707013 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.7072 -0.707013 0 0.7072 -0.707013 0 0 -1 0 0 -1 0 0.498518 -0.866879 0 0.498518 -0.866879 0 -0.498518 -0.866879 0 -0.498518 -0.866879 0 0 -1 0 0 -1 0 -0.7072 -0.707013 0 -0.7072 -0.707013 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.258484 -0.966016 0.000623834 0.424536 -0.905411 -0.000639676 0.890988 -0.454026 0.000206338 0.181173 -0.983451 2.45552e-05 0.671721 -0.740804 0 0.966456 -0.256832 0.00062026 0.805429 -0.592691 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707391 0.706823 0 0.707391 0.706823 0 1 0 0 1 0 0 0.866178 0.499735 0 0.866178 0.499735 0 0.866178 -0.499735 0 0.866178 -0.499735 0 1 0 0 1 0 0 0.706718 -0.707496 0 0.706718 -0.707496 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707695 0.706518 0 0.707695 0.706518 0 1 0 0 1 0 0 0.866178 0.499735 0 0.866178 0.499735 0 0.866178 -0.499735 0 0.866178 -0.499735 0 1 0 0 1 0 0 0.706718 -0.707496 0 0.706718 -0.707496 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0.00033885 0.924916 0.380172 0.000183553 0.364707 0.931122 0 0.991557 0.12967 -0.00037513 0.792261 0.610182 0.00015953 0.358963 0.933352 0 0.282165 0.959366 0.000208226 0.815735 0.578425 -0.000723984 0.897654 0.440699 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707683 0.70653 0 -0.707683 0.70653 0 0 1 0 0 1 0 -0.499786 0.866149 0 -0.499786 0.866149 0 0.499786 0.866149 0 0.499786 0.866149 0 0 1 0 0 1 0 0.707683 0.70653 0 0.707683 0.70653 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999138 0 -0.0415169 0.999587 -0.0283496 0.00477949 0.998817 0.024305 -0.0421221 0.998101 -0.0307873 -0.0533549 0.999748 0 -0.0224525 0.999236 0.0187093 -0.0343009 1 0 0 0.999736 0.0162108 -0.0162567 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.995303 -0.0684571 0.0684581 1 0 0 1 0 0 1 0 0 1 0 0 0.999534 0.0305185 0 0.999614 0.0267449 0.00751752 0.999028 0.0381888 0.0220328 0.99982 0.0164318 -0.00948022 0.999783 0.0208153 0 0.999808 0.00555162 0.0187692 0.999777 0.00516598 0.0204759 0.999872 -0.00607696 0.0148134 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999999 0.000416732 -0.00165188 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999876 0.015772 0 0.999805 -0.00382527 -0.0193662 1 0.000349247 0.000201496 0.999756 0.00826701 0.0204912 1 0.00027244 -0.000157182 0.999984 0.0056354 0 0.999958 0.00037732 -0.00919352 1 0 0 1 0 0 0.999978 0.00474879 0.0047388 0.999922 0 0.0124673 0.999903 -0.00695313 0.0120907 0.999801 0.00993559 0.0172774 0.999937 -0.0042014 0.0104328 0.999967 0 0.00808136 0.999859 -0.016289 0.00410292 0.999927 -0.0111928 -0.00461895 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999971 -0.00541587 -0.00541579 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999618 0.0268036 0.00675136 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.99939 0 0.0349362 0.999829 0.0156281 0.00987375 0.99916 -0.0204292 0.0355246 0.998683 0.0255736 0.0444702 0.999994 0 0.00344357 0.99901 -0.0396801 0.0200916 1 0 0 0.999982 -0.00422831 0.00421941 0.99997 0.00378499 0.00679475 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.934474 0.251754 -0.251749 1 0 0 1 0 0 1 0 0 0.999961 -0.00885615 0 0.999962 -0.00751482 -0.00433562 0.995527 -0.0526808 0.0784297 0.996226 -0.075179 0.043374 0.995726 -0.0923575 0 0.997696 -0.0350354 -0.0580969 0.994223 -0.0262556 -0.104074 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999938 -0.00271797 0.010773 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.995673 -0.0929257 0 0.997806 0.00896514 0.0655986 0.99414 -0.0936354 -0.0540223 0.990627 -0.118313 0.0682601 0.999444 -0.0333441 0 0.99547 -0.0675657 -0.0668937 1 0 0 1 0 0 0.999589 -0.0202416 -0.0202989 0.999616 -0.0121628 -0.0249067 0.999048 0 -0.0436206 0.998769 0.0247877 -0.0429581 0.99852 -0.0133385 -0.0527158 0.998549 -0.0269115 -0.0466387 0.99863 0 -0.0523183 0.998984 0.0448747 0.00427584 0.999879 0.0150759 -0.00379565 0.999945 0.00967151 0.00404826 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.994379 0.0748698 0.0748706 1 0 0 1 0 0 1 0 0 0.999963 0.00166524 0.00840841 0.999965 0.00837874 0.000498944 0.998401 -0.0553949 -0.0112693 0.998468 -0.00753547 -0.0548129 0.999909 2.07687e-05 0.0134713 0.999999 -0.000256859 -0.00125419 0.999913 0.00760821 -0.0108251 0.999879 -0.0089017 -0.0127705 0.999868 -0.0148596 -0.00658844 0.999903 -0.0138158 -0.00175842 0.999984 -0.0054071 -0.00136134 0.998378 -0.0342192 -0.0455081 0.998607 -0.0517379 0.0103834 0.998609 -0.0518337 0.00970426 0.998843 0.0165293 0.0451528 0.999646 0.00389147 0.0263355 0.999622 0.00783426 0.0263478 0.999807 0.0192615 -0.00385242 0.999711 -0.00643347 -0.0231796 0.999964 -0.00590033 0.00604954 0.999965 -0.00598389 0.00591732 0.993661 0.112016 -0.00955016 0.995587 0.0188286 -0.0919361 1 0 0 1 0 0 0 0 -1 0 0 -1 0 -0.379406 -0.92523 0 -0.379406 -0.92523 0 0.379406 -0.92523 0 0.379406 -0.92523 0 0.707433 -0.70678 0 0.707433 -0.70678 0 0.98045 -0.196768 0 0.98045 -0.196768 0.00123716 0.941338 -0.337462 0.000117 0.553099 -0.833116 0.000104419 0.0868432 -0.996222 0 0.995768 -0.0919021 0.000204248 0.866394 -0.499361 0.000806628 0.168282 -0.985739 -0.000416401 0.985172 -0.171571 0.000229226 0.866885 -0.498507 -0.00046252 0.689376 -0.724404 -0.000522681 0.565892 -0.824479 -4.48672e-05 0.114475 -0.993426 0.000233588 0.194271 -0.980948 0 0.379539 -0.925176 0 0.707425 -0.706788 0 0.707425 -0.706788 0 0.922451 -0.386115 0 0.922451 -0.386115 0 1 0 0 1 0 0 0.924383 0.381467 0 0.924383 0.381467 0 0.706788 0.707426 0 0.706788 0.707426 0 0.39054 0.920586 -0.000241241 0.200636 0.979666 0 0 1 0.00288073 0.340797 0.940132 0.000115785 0.995321 0.0966213 0.000234125 0.194718 0.980859 0.00161011 0.911718 0.410813 -0.00158381 0.144272 0.989537 0.00110953 0.459397 0.88823 -0.000838574 0.644256 0.76481 -0.00369052 0.893861 0.448328 -0.00158994 0.813935 0.580954 0.00051139 0.985793 0.167963 0.00023502 0.980579 0.196122 0 0.924383 0.381467 0 0.70678 0.707433 0 0.70678 0.707433 0 0.387376 0.921922 0 0.387376 0.921922 0 0 1 0 0 1 0 -0.387376 0.921922 0 -0.387376 0.921922 0 -0.70678 0.707433 0 -0.70678 0.707433 0 -0.924383 0.381467 -0.00023502 -0.980579 0.196122 0.000320524 -0.266575 0.963814 -0.00196974 -0.973187 0.230006 0.0231069 -0.470397 0.882152 -9.96419e-05 -0.996537 0.0831502 5.3464e-06 -0.348745 0.937218 2.65326e-05 -0.993559 0.11332 -7.16279e-05 -0.839501 0.543358 7.10788e-05 -0.860666 0.50917 0 0 1 -0.000241241 -0.200636 0.979666 0 -0.39054 0.920586 0 -0.706788 0.707426 0 -0.706788 0.707426 0 -0.924383 0.381467 0 -0.924383 0.381467 0 -1 0 0 -1 0 0 -0.938009 -0.346612 8.48878e-05 -0.922451 -0.386115 -8.46186e-05 -0.922451 -0.386115 0 -0.826308 -0.563219 0 -0.707425 -0.706788 0 -0.707425 -0.706788 0 -0.379539 -0.925176 -0.000233588 -0.194271 -0.980948 0.0130439 -0.383518 -0.923442 0.000245921 -0.605271 -0.796019 -0.000124436 -0.103491 -0.99463 -4.45505e-05 -0.924506 -0.381167 0.000384797 -0.625882 -0.779918 -0.000550469 -0.201623 -0.979463 -0.000550754 -0.892866 -0.450323 0.000326247 -0.990814 -0.135228 0 -1 0 0.00435315 0.912489 0.409077 -0.000985347 -0.999882 -0.0153644 -0.00118293 -0.501106 -0.865385 -0.000656898 0.423405 -0.90594 -0.000250413 -0.752392 0.658715 -0.000874625 0.586245 0.810133 -0.000482405 0.988191 -0.153229 0.00162665 0.720956 -0.692979 0.00142236 0.0376416 -0.99929 0.000633619 0.341314 0.939949 -2.42363e-07 -0.602423 -0.798177 0.000981821 -0.482907 0.875671 -0.000217508 -0.2291 0.973403 0.000879021 -0.966832 -0.255412 0.000757402 -0.961103 0.276188 0.00299049 0.968198 0.250166 -0.00375393 0.958061 0.286541 -0.000487512 -0.611202 -0.791475 -0.00145154 -0.434768 0.900542 -0.00103351 0.999533 0.0305318 -0.000489838 0.048689 -0.998814 0.000253694 -0.961644 -0.274302 5.94071e-05 -0.0261631 -0.999658 -0.00081632 -0.988781 -0.149368 6.69502e-05 0.831636 -0.555321 -0.000989961 0.741958 -0.670446 9.07582e-05 -0.695834 -0.718202 -0.000220095 0.803516 0.595284 -0.00151931 0.269394 0.963029 -0.000852495 -0.936533 0.350577 0.000582046 -0.795887 0.605445 0.00112879 -0.0791513 0.996862 -0.0013635 0.998209 0.0598041 0.000442201 -0.99875 -0.0499747 -0.000939667 -0.994757 0.102267 0.00136108 -0.331369 -0.9435 -0.00148582 -0.628534 -0.777781 -0.00012009 0.386845 -0.922145 -0.000785681 0.339019 -0.940779 0.000443495 -0.801256 -0.598321 0.00115961 0.949801 0.312854 0.00211934 0.925406 -0.378971 6.94838e-05 0.546216 0.837645 0.000654307 -0.940468 0.339882 0.000206525 -0.662868 0.748736 -6.96906e-05 -0.104124 0.994564 0.000769545 0.441327 0.897346 7.96832e-05 -0.997578 -0.0695577 -0.000918197 0.921026 0.389501 -0.000388614 -0.917015 0.398853 0.000625098 0.31381 -0.949486 -0.00013843 -0.70399 0.71021 -0.000256512 -0.317308 -0.948322 0.000415379 -0.801804 -0.597588 -0.000747677 0.454051 -0.890975 0.000342678 -0.80034 0.599546 0.000427721 -0.182101 0.98328 -0.000554368 0.884431 -0.46667 -0.000239109 0.901933 -0.431875 0.000575741 0.445759 0.895153 -0.000481315 -0.339224 -0.940705 -0.000655541 -0.741161 -0.671327 0.000158452 -0.996628 -0.0820534 -0.00128084 0.2658 0.964027 -0.000701313 -0.349617 0.936893 0.00220146 -0.514554 -0.857455 0.000200809 0.866192 0.499711 0.00634914 0.715478 -0.698606 -0.00314378 -0.550653 0.834728 0.0016335 0.982463 0.18645 -0.0014799 -0.307318 -0.951606 -0.000849197 -0.978602 -0.20576 -0.000533931 0.745596 0.666398 0.000970114 -0.998517 0.0544276 -0.000179916 -0.763486 0.645824 -0.000370464 0.646171 -0.763193 0.00179025 -0.729277 -0.684216 -0.000694043 -0.362449 0.932003 -0.000272499 0.985069 -0.172157 0.000459483 0.999253 0.0386479 0.000690802 0.886973 -0.46182 0.000216643 -0.146995 -0.989137 0.00153277 0.240894 0.97055 -0.00172875 0.835045 0.550179 0.000296577 0.530663 -0.847583 0.000143069 -0.14133 -0.989963 -0.0012385 0.240072 0.970754 -0.000937508 -0.999842 0.0177331 9.78024e-05 0.998069 0.0621203 2.47267e-05 0.571186 0.820821 -0.00103828 0.817591 0.575799 -0.00121114 0.863229 -0.504812 0.000708765 -0.761855 0.647748 -0.000885153 -0.757752 -0.652542 2.65825e-05 -0.820304 0.571927 0.00411478 -0.702448 0.711723 0.000817715 -0.905595 -0.424143 -0.000557364 -0.105591 0.99441 0.00129851 0.547978 -0.836492 -0.0010889 -0.233801 -0.972284 0.000627421 0.58721 -0.809435 -0.00133495 -0.954503 -0.298198 -0.00134738 0.401796 0.915728 -0.00163737 -0.751853 0.659328 -0.000358994 -0.494666 -0.869083 0.00077472 0.995553 0.0942024 0.000633588 0.996884 0.0788747 0.00164669 -0.749529 -0.66197 0.000566133 0.664598 -0.747201 -0.00164979 -0.752391 0.658715 3.14711e-05 0.50767 0.861552 -0.000901936 0.78547 -0.618899 0.00219341 -0.253565 0.967316 0.00219089 0.0979322 -0.995191 0.000940309 -0.997386 0.0722508 -0.000195519 -0.756696 -0.653767 -0.000623919 -0.136617 -0.990624 0.000541577 0.172199 -0.985062 -0.00119121 0.577944 0.816075 -0.000120765 -0.74222 0.670157 -0.000118631 -0.741914 0.670495 -0.00207357 0.988748 0.149573 -0.000332511 -0.998049 0.0624423 -0.000204531 -0.995995 0.089412 -0.000690498 -0.188091 0.982151 0.000365591 0.00603073 0.999982 9.39851e-05 -0.78065 -0.624968 0.00193371 0.85296 0.521973 0.000376416 0.906946 -0.421247 0 1 0 0 1 0 -1 0 0 -1 0 0 -0.931251 -0.364379 0 -0.378792 -0.925482 0.000154193 -0.892573 -0.450904 0.000226993 -0.439392 -0.898295 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0.707012 -0.707202 0 0.707012 -0.707202 0 0 -1 0 0 -1 0 0.190833 -0.981623 0 0.190833 -0.981623 0 0.0416367 -0.999133 0 0.0416367 -0.999133 0 -0.0416388 -0.999133 0 -0.0416388 -0.999133 0 -0.190833 -0.981623 0 -0.190833 -0.981623 0 0 -1 0 0 -1 0 -0.707104 -0.70711 0 -0.707104 -0.70711 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0.3923 -0.919837 0 0.890109 -0.455748 -0.000486365 0.949482 -0.313821 0 0.380532 -0.924767 -0.00095728 0.950644 -0.310283 -1.34208e-05 0.567381 -0.823455 0.000439313 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707012 0.707202 0 0.707012 0.707202 0 1 0 0 1 0 0 0.981626 0.190815 0 0.981626 0.190815 0 0.999133 0.0416378 0 0.999133 0.0416378 0 0.999133 -0.0416378 0 0.999133 -0.0416378 0 0.981626 -0.190815 0 0.981626 -0.190815 0 1 0 0 1 0 0 0.707012 -0.707202 0 0.707012 -0.707202 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707012 0.707202 0 0.707012 0.707202 0 1 0 0 1 0 0 0.981626 0.190815 0 0.981626 0.190815 0 0.999133 0.0416378 0 0.999133 0.0416378 0 0.999133 -0.0416378 0 0.999133 -0.0416378 0 0.981626 -0.190815 0 0.981626 -0.190815 0 1 0 0 1 0 0 0.707012 -0.707202 0 0.707012 -0.707202 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707012 0.707202 0 0.707012 0.707202 0 1 0 0 1 0 0 0.981626 0.190815 0 0.981626 0.190815 0 0.999133 0.0416378 0 0.999133 0.0416378 0 0.999133 -0.0416378 0 0.999133 -0.0416378 0 0.981626 -0.190815 0 0.981626 -0.190815 0 1 0 0 1 0 0 0.707012 -0.707202 0 0.707012 -0.707202 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707012 0.707202 0 0.707012 0.707202 0 1 0 0 1 0 0 0.981626 0.190815 0 0.981626 0.190815 0 0.999133 0.0416378 0 0.999133 0.0416378 0 0.999133 -0.0416378 0 0.999133 -0.0416378 0 0.981626 -0.190815 0 0.981626 -0.190815 0 1 0 0 1 0 0 0.707012 -0.707202 0 0.707012 -0.707202 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707012 0.707202 0 0.707012 0.707202 0 1 0 0 1 0 0 0.981626 0.190815 0 0.981626 0.190815 0 0.999133 0.0416378 0 0.999133 0.0416378 0 0.999133 -0.0416378 0 0.999133 -0.0416378 0 0.981626 -0.190815 0 0.981626 -0.190815 0 1 0 0 1 0 0 0.707015 -0.707199 0 0.707015 -0.707199 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707012 0.707202 0 0.707012 0.707202 0 1 0 0 1 0 0 0.981626 0.190815 0 0.981626 0.190815 0 0.999133 0.0416367 0 0.999133 0.0416367 0 0.999133 -0.0416378 0 0.999133 -0.0416378 0 0.981626 -0.190815 0 0.981626 -0.190815 0 1 0 0 1 0 0 0.707015 -0.707199 0 0.707015 -0.707199 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707012 0.707202 0 0.707012 0.707202 0 1 0 0 1 0 0 0.981626 0.190815 0 0.981626 0.190815 0 0.999133 0.0416367 0.000751743 0.933487 -0.358611 0 0.999133 0.0416367 -0.000752937 0.925074 0.379788 0 0.999133 -0.0416378 0 0.999133 -0.0416378 0 0.981626 -0.190815 0 0.981626 -0.190815 0 1 0 0 1 0 0 0.707015 -0.707199 0 0.707015 -0.707199 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707013 0.7072 0 0.707013 0.7072 0 1 0 0 1 0 0 0.981626 0.190815 0 0.981626 0.190815 0 0.999133 0.0416378 0 0.999133 0.0416378 0 0.999133 -0.0416373 0 0.999133 -0.0416373 0 0.981626 -0.190815 0 0.981626 -0.190815 0 1 0 0 1 0 0 0.707013 -0.7072 0 0.707013 -0.7072 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707013 0.7072 0 0.707013 0.7072 0 1 0 0 1 0 0 0.981626 0.190815 0 0.981626 0.190815 0 0.999133 0.0416378 0 0.999133 0.0416378 0 0.999133 -0.0416373 0 0.999133 -0.0416373 0 0.981626 -0.190815 0 0.981626 -0.190815 0 1 0 0 1 0 0 0.707013 -0.7072 0 0.707013 -0.7072 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0.707013 0.7072 0 0.707013 0.7072 0 1 0 0 1 0 0 0.981626 0.190815 0 0.981626 0.190815 0 0.999133 0.0416378 0 0.999133 0.0416378 0 0.999133 -0.0416373 0 0.999133 -0.0416373 0 0.981626 -0.190815 0 0.981626 -0.190815 0 1 0 0 1 0 0 0.707012 -0.707202 0 0.707012 -0.707202 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.938379 0.345607 0 0.36966 0.929167 4.10318e-05 0.384674 0.923053 0 0.934504 0.355954 2.63713e-05 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -0.707105 0.707108 0 -0.707105 0.707108 0 0 1 0 0 1 0 -0.190822 0.981625 0 -0.190822 0.981625 0 -0.0416264 0.999133 0 -0.0416264 0.999133 0 0.0416244 0.999133 0 0.0416244 0.999133 0 0.190822 0.981625 0 0.190822 0.981625 0 0 1 0 0 1 0 0.707013 0.7072 0 0.707013 0.7072 0 1 0 0 1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 1 0 0 1 0 -0.183322 0.983053 0 -0.403854 0.914823 0.000498313 -0.517449 0.855714 7.66783e-05 -0.931631 0.363405 -0.000117517 -0.949831 0.312763 0 -0.360972 0.932576 -0.000409364 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.70711 -0.707104 0 -0.70711 -0.707104 0 -1 0 0 -1 0 0 -0.981617 -0.190859 0 -0.981617 -0.190859 0 -0.999135 -0.0415877 0 -0.999135 -0.0415877 0 -0.999135 0.0415882 0 -0.999135 0.0415882 0 -0.981617 0.190859 0 -0.981617 0.190859 0 -1 0 0 -1 0 0 -0.707111 0.707102 0 -0.707111 0.707102 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707111 -0.707102 0 -0.707111 -0.707102 0 -1 0 0 -1 0 0 -0.981617 -0.190859 0 -0.981617 -0.190859 0 -0.999135 -0.0415877 0 -0.999135 -0.0415877 0 -0.999135 0.0415882 0 -0.999135 0.0415882 0 -0.981617 0.190859 0 -0.981617 0.190859 0 -1 0 0 -1 0 0 -0.707111 0.707102 0 -0.707111 0.707102 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707111 -0.707102 0 -0.707111 -0.707102 0 -1 0 0 -1 0 0 -0.981617 -0.190859 0 -0.981617 -0.190859 0 -0.999135 -0.0415877 0 -0.999135 -0.0415877 0 -0.999135 0.0415882 0 -0.999135 0.0415882 0 -0.981617 0.190859 0 -0.981617 0.190859 0 -1 0 0 -1 0 0 -0.707111 0.707102 0 -0.707111 0.707102 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707113 -0.707101 0 -0.707113 -0.707101 0 -1 0 0 -1 0 0 -0.981617 -0.190859 0 -0.981617 -0.190859 0 -0.999135 -0.0415882 0 -0.999135 -0.0415882 0 -0.999135 0.0415872 0 -0.999135 0.0415872 0 -0.981617 0.190859 0 -0.981617 0.190859 0 -1 0 0 -1 0 0 -0.70711 0.707104 0 -0.70711 0.707104 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707113 -0.707101 0 -0.707113 -0.707101 0 -1 0 0 -1 0 0 -0.981617 -0.190859 0 -0.981617 -0.190859 0 -0.999135 -0.0415882 0.000751843 -0.933447 0.358715 0 -0.925074 -0.379788 0 -0.999135 -0.0415882 -0.000753038 -0.999135 0.0415872 0.000765374 -0.930243 0.366945 0 -0.919711 -0.392597 0 -0.999135 0.0415872 -0.000766748 -0.981617 0.190859 0 -0.981617 0.190859 0 -1 0 0 -1 0 0 -0.70711 0.707104 0 -0.70711 0.707104 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.707113 -0.707101 0 -0.707113 -0.707101 0 -1 0 0 -1 0 0 -0.981617 -0.190859 0 -0.981617 -0.190859 0 -0.908627 0.417609 0 -0.902987 -0.429667 0 -0.999135 -0.0415882 0.00044277 -0.999135 0.0415882 0 -0.999135 0.0415882 0 -0.981617 0.190859 0 -0.981617 0.190859 0 -1 0 0 -1 0 0 -0.70711 0.707104 0 -0.70711 0.707104 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.70711 -0.707104 0 -0.70711 -0.707104 0 -1 0 0 -1 0 0 -0.981617 -0.190859 0 -0.981617 -0.190859 0 -0.999135 -0.0415882 0 -0.999135 -0.0415882 0 -0.999135 0.0415882 0 -0.999135 0.0415882 0 -0.981617 0.190859 0 -0.981617 0.190859 0 -1 0 0 -1 0 0 -0.70711 0.707104 0 -0.70711 0.707104 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.70711 -0.707104 0 -0.70711 -0.707104 0 -1 0 0 -1 0 0 -0.981617 -0.190859 0 -0.981617 -0.190859 0 -0.999135 -0.0415882 0 -0.999135 -0.0415882 0 -0.999135 0.0415882 0 -0.999135 0.0415882 0 -0.981617 0.190859 0 -0.981617 0.190859 0 -1 0 0 -1 0 0 -0.70711 0.707104 0 -0.70711 0.707104 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.70711 -0.707104 0 -0.70711 -0.707104 0 -1 0 0 -1 0 0 -0.981617 -0.190859 0 -0.981617 -0.190859 0 -0.999135 -0.0415882 0 -0.999135 -0.0415882 0 -0.999135 0.0415882 0 -0.999135 0.0415882 0 -0.981617 0.190859 0 -0.981617 0.190859 0 -1 0 0 -1 0 0 -0.70711 0.707104 0 -0.70711 0.707104 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -0.70711 -0.707104 0 -0.70711 -0.707104 0 -1 0 0 -1 0 0 -0.981617 -0.190859 0 -0.981617 -0.190859 0 -0.999135 -0.0415882 0 -0.999135 -0.0415882 0 -0.999135 0.0415882 0 -0.999135 0.0415882 0 -0.981617 0.190859 0 -0.981617 0.190859 0 -1 0 0 -1 0 0 -0.70711 0.707104 0 -0.70711 0.707104 0 0 1 0 0 1 0 1 0 0 1 0 0 0.0712931 0 -0.997455 0 -0.00378016 -0.999993 -0.0271271 0 -0.999632 -0.0271271 0 -0.999632 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.170948 0.0353673 -0.984645 -0.031102 -0.0261904 -0.999173 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.08497 0.0175794 -0.996228 -0.0156881 -0.0132107 -0.99979 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0231611 0.0323586 -0.999208 0.125218 -0.0259064 -0.991791 0 0 -1 0 0 -1 0.0306712 0.00634554 -0.999509 -0.00897554 -0.00755818 -0.999931 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0230677 -0.0110448 -0.999673 -0.0032582 -0.0167608 -0.999854 -0.0225531 -0.0062836 -0.999726 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0201569 0 -0.999797 -0.0201569 0 -0.999797 0 0.00277367 -0.999996 0.0513661 0 -0.99868 0 0 -1 0 0 -1 0.0027041 -0.00191346 -0.999995 0 0 -1 -0.00164471 -0.00200939 -0.999997 0 -0.00998834 -0.99995 0.0209794 0.00599121 -0.999762 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.00136898 0 -0.999999 0.00136898 0 -0.999999 0 0.000194654 -1 -0.0038995 0 -0.999992 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.183496 -0.0379635 -0.982287 0.0303128 0.0423417 -0.998643 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.187658 -0.0388247 -0.981467 0.030077 0.0420124 -0.998664 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.00861488 -0.0120334 -0.999891 -0.0549959 0.0113781 -0.998422 0 0 -1 0 0 -1 -0.079619 -0.0164723 -0.996689 0.072767 0.0612767 -0.995465 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0105763 -0.0089061 -0.999904 -0.023055 0.00476983 -0.999723 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.314673 0.00134989 -0.949199 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0138522 0.0193491 -0.999717 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.314674 0.00134989 -0.949199 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.03353 0.0468357 -0.99834 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.29396 0.00126102 -0.955817 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.706408 -0.706429 -0.0441108 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.99791 -0.0646134 0.000869757 0.070724 -0.00436292 -0.997486 -0.0300956 -0.0207463 -0.999332 0.0142046 0 -0.999899 0 0 -1 0 0 -1 0 0 -1 0.297598 -0.00115684 -0.954691 -0.0245838 0.0146497 -0.99959 0 0 -1 0.0205509 0.0225935 -0.999534 -0.0362108 0.00425387 -0.999335 0 0 -1 0 0 -1 0 0 -1 0.0267302 0.00314013 -0.999638 -0.0149029 0.0106161 -0.999833 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0841364 0 -0.996454 0.0561067 -0.0340382 -0.997844 -0.0664552 -0.00900206 -0.997749 -0.153259 0.0332154 -0.987628 0.0154034 -0.0371681 -0.99919 0.0527096 -0.0415944 -0.997743 0 0 -1 -0.0101109 -0.00915605 -0.999907 0.0192424 -0.00302527 -0.99981 0.000744615 -0.00184187 -0.999998 0.0042071 6.88195e-05 -0.999991 0 0 -1 -0.0061124 -0.0035283 -0.999975 0.00579712 -0.00525128 -0.999969 0 0 -1 -0.119138 -0.0940524 -0.988413 0.574417 0.00277708 -0.818558 0 0 -1 -0.56923 -0.00648886 -0.822153 0.0724356 0.000435749 -0.997373 -0.0333124 -0.0248262 -0.999137 -0.0377823 -0.0251914 -0.998968 0 0 -1 0 0 -1 0.141543 -0.0308412 -0.989452 -0.0127559 0.0307783 -0.999445 -0.0431334 0.0340515 -0.998489 0 0 -1 0.0273696 0.0247928 -0.999318 -0.0469983 0.000762003 -0.998895 -0.0132604 0.00155776 -0.999911 0.0379529 -0.00445852 -0.99927 -0.00467681 -0.0242907 -0.999694 0.00563576 -0.024261 -0.99969 -0.0334356 0.000439625 -0.999441 -0.00246006 0.00175241 -0.999995 0 0 -1 0.086453 0.0849275 -0.992629 -0.50234 -0.00215494 -0.864668 0 0 -1 0 0 -1 0 0 -1 -0.0923401 0.01132 -0.995663 0.176401 0.045263 -0.983277 -0.0445961 0.00698256 -0.998981 0.233083 0.00705931 -0.972431 -0.229414 0.00098414 -0.973328 0.0367846 -0.0290279 -0.998902 0 0 -1 -0.00945964 -0.00856637 -0.999919 0.013543 -0.00428746 -0.999899 -0.0842174 0.0266616 -0.996091 -0.0026969 0.0452586 -0.998972 0.0679297 0.00798005 -0.997658 -0.0123171 -0.00144695 -0.999923 0.00285586 -0.00203436 -0.999994 0 0 -1 0 0 -1 -0.156799 -0.0934376 -0.983201 -0.0328481 -0.0792578 -0.996313 0.298184 0.0588057 -0.952695 0 0 -1 0.0705805 0 -0.997506 -0.0422693 -0.0269652 -0.998742 0.34965 0.0241532 -0.936569 0.0167146 -0.0340595 -0.99928 0 0 -1 0 0 -1 0.0698009 -0.0137657 -0.997466 -0.00367276 0.00886229 -0.999954 -0.00923757 0.00908 -0.999916 0 0 -1 0.0146535 0.0104383 -0.999838 -0.0191686 0.00301416 -0.999812 -0.000713625 0.0018381 -0.999998 -0.00419286 2.24984e-05 -0.999991 0 0 -1 0 0 -1 0 0 -1 0.0141939 -0.0018949 -0.999898 0 0.00568779 -0.999984 0.0700571 0.0828757 -0.994094 -0.501104 -0.00193902 -0.865385 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.18552 -0.0165852 -0.9825 0.0251856 0.020236 -0.999478 -0.111785 0.0242267 -0.993437 0.0138659 -0.0334546 -0.999344 0.0495679 -0.0391159 -0.998004 0 0 -1 -0.0108573 -0.00983215 -0.999893 0.0208096 -0.00244462 -0.99978 -0.0269748 0.00316889 -0.999631 0 0.0170292 -0.999855 0.0290043 0.00340731 -0.999573 -0.0344088 -0.0040422 -0.9994 0.0214192 -0.0235483 -0.999493 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0664068 -0.00508893 -0.99778 0.156546 0.0119803 -0.987598 0 0 -1 0 0 -1 0 0 -1 0.110424 -0.021777 -0.993646 -0.0102316 0.0246887 -0.999643 -0.026858 0.0263999 -0.999291 0 0 -1 0.00286475 0.00204068 -0.999994 -0.0121182 0.00142358 -0.999926 0.0070613 -0.000829522 -0.999975 -0.000959999 -0.00498573 -0.999987 0.000843126 -0.00488626 -0.999988 -0.00761431 -0.000894487 -0.999971 0.0122157 0.00143503 -0.999924 -0.0022111 0.00200229 -0.999996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0136773 0 -0.999906 -0.0461003 0.00243568 -0.998934 -0.0230071 0.00253475 -0.999732 -0.137283 -0.0252295 -0.990211 -0.313619 0.00134537 -0.949548 0.0695739 -0.0549034 -0.996065 0 0 -1 -0.0108573 -0.00983215 -0.999893 0.0185073 -0.00298199 -0.999824 -0.00611353 -0.00140218 -0.99998 0.00512118 0.00532838 -0.999973 -0.00485021 0.00466303 -0.999977 0.00524311 -0.00504077 -0.999974 0.00449312 -0.00493974 -0.999978 0 0 -1 -0.168201 -0.100233 -0.980644 -0.035431 -0.0854857 -0.995709 0.35152 0.0761899 -0.933075 0 0 -1 0.0653192 -0.00414311 -0.997856 0.203204 0.0213231 -0.978904 0.241575 0.0314238 -0.969873 0.0136996 0 -0.999906 0 0 -1 0 0 -1 0 0 -1 0.0985498 -0.000383088 -0.995132 -0.0145361 0.0114754 -0.999829 0 0 -1 0.00808718 0.00732571 -0.99994 0 -0.0137366 -0.999906 -0.00838136 0.00758985 -0.999936 0 0 -1 0 0 -1 0 0.0119832 -0.999928 -0.000282006 0.0040718 -0.999992 -0.48004 0.877246 -0.000666458 0.0330461 0.124447 -0.991676 0.00606094 0.0641776 -0.99792 -0.0228417 -0.0240438 -0.99945 0 0 -1 -0.0136773 0 -0.999906 -0.0108631 -0.000211358 -0.999941 -0.167654 -0.00326196 -0.985841 0.0783649 0.113957 -0.99039 -0.314673 0.00134989 -0.949199 0.0695197 -0.0548606 -0.996071 0 0 -1 -0.0108573 -0.00983215 -0.999893 0.0185527 -0.00297139 -0.999823 -0.0274274 -4.88594e-05 -0.999624 0.000958866 0.0155574 -0.999879 -0.0355005 0.0236674 -0.999089 0.0289722 -0.0365632 -0.998911 -0.0603847 0.175319 -0.982658 0.0189655 -0.0290403 -0.999398 0 -0.004559 -0.99999 -0.00200634 -0.00484076 -0.999986 0.0187357 0.00406084 -0.999816 0 0 -1 -0.235581 0.0253043 -0.971525 -0.0171461 -0.0110119 -0.999792 0.326398 0.0319025 -0.944694 0.133321 -0.00810996 -0.99104 -0.0236134 -0.0104204 -0.999667 0.347854 0 -0.937549 0 0 -1 0 0 -1 0 0 -1 0.0973141 -0.00041937 -0.995254 -0.0289575 0.0228602 -0.999319 0 0 -1 0.0172539 0.0156293 -0.999729 0 -0.0261368 -0.999658 -0.0156781 0.0141975 -0.999776 0 0 -1 0 0 -1 0 0.177138 -0.984186 0.0279041 -0.0806937 -0.996348 -0.00703575 0.0345287 -0.999379 -0.00120804 -0.0560104 -0.998429 0.0157988 -0.140872 -0.989902 0.0153764 0.162817 -0.986537 -0.0321486 -0.03384 -0.99891 0 0 -1 -0.0136773 0 -0.999906 -0.0461003 0.00243568 -0.998934 -0.0395583 0.00246389 -0.999214 -0.0638376 0.00855282 -0.997924 -0.0757045 -0.00810125 -0.997097 0.0695197 -0.0548606 -0.996071 0 0 -1 -0.0108573 -0.00983215 -0.999893 0.018468 -0.00299115 -0.999825 0 -0.00179779 -0.999998 -0.00538338 -0.00698409 -0.999961 0.00843168 0.000990519 -0.999964 -0.0127032 -0.00149232 -0.999918 0.0084661 -0.00766909 -0.999935 -0.0507284 0.0459527 -0.997655 0.0111939 -0.0361712 -0.999283 0.0275265 0.0289757 -0.999201 -0.0965958 0.0547311 -0.993818 0.0983868 0.00220901 -0.995146 0.00465077 0.0239886 -0.999701 0.0701432 0 -0.997537 0 0 -1 0 0 -1 0 0 -1 0.178692 -0.000770072 -0.983905 -0.0402342 0.0317624 -0.998685 0 0 -1 -0.000818317 -0.000741267 -0.999999 0 0.00140305 -0.999999 0.000954583 -0.000864435 -0.999999 0 0 -1 0 0 -1 0 0.0113399 -0.999936 -0.0217159 0.0828908 -0.996322 -0.00662611 -0.0114094 -0.999913 0.498944 0.859122 0.113862 0.00606094 0.0641776 -0.99792 -0.0209786 -0.0183453 -0.999612 0 0 -1 -0.0392893 0 -0.999228 0.00598056 0.00380906 -0.999975 -0.0466343 0.00662593 -0.99889 -0.0985465 -0.00247607 -0.995129 0.0695199 -0.0548598 -0.996071 0 0 -1 -0.0108574 -0.00983202 -0.999893 0.0185406 -0.00297416 -0.999824 -0.0268316 -8.16001e-05 -0.99964 -0.00154388 0.015062 -0.999885 -0.03342 0.012349 -0.999365 0.0310667 -0.047964 -0.998366 0.00287326 0.0271243 -0.999628 0 0 -1 0.00891297 -0.00470233 -0.999949 -0.0141089 -0.0105145 -0.999845 0.994724 0.0905297 -0.0482497 0.0128072 -0.0370743 -0.99923 0.00887458 -0.00470282 -0.99995 0.0285477 0.00659926 -0.999571 0 0 -1 0.160287 0.00344773 -0.987064 -0.0377452 0.0297975 -0.998843 0 0 -1 -0.000244972 -0.000221907 -1 -1.99507e-06 0.000406627 -1 0.000258053 -0.000209596 -1 0 0 -1 0 0 -1 -5.65526e-05 0.0115263 -0.999934 0.00656802 -0.0103133 -0.999925 0.00659482 -0.0155575 -0.999857 -0.00669915 -0.0109863 -0.999917 0 0 1 0.0129871 0.130656 -0.991343 -0.0619882 -0.0652494 -0.995942 0 0 -1 -0.15858 0 -0.987346 -0.107798 0.0019264 -0.994171 0.0608958 -0.0254124 -0.997821 0.104793 -0.0240549 -0.994203 0.267283 -0.00740538 -0.96359 0.0724945 -0.0572072 -0.995727 0 0 -1 -0.0108574 -0.00983202 -0.999893 0.0184375 -0.00299823 -0.999826 -0.0418839 0.00094006 -0.999122 0.00153599 0.0257985 -0.999666 0.0104364 0.0239347 -0.999659 0.0123566 0.021784 -0.999686 -0.0405124 0.1486 -0.988067 0.00820805 0.0146574 -0.999859 0.00554845 0.00485215 -0.999973 0.033535 0.0189797 -0.999257 -0.850996 -0.0113772 -0.525049 0.119393 0 -0.992847 0 0.0774612 -0.996995 0 0 -1 0.0110269 -0.0180067 -0.999777 0.00677892 -0.00910832 -0.999936 0.0011194 -0.0684965 -0.997651 0.00606094 0.0641776 -0.99792 -0.0209786 -0.0183453 -0.999612 0 0 -1 -0.0282747 0 -0.9996 0.00536726 0.00399466 -0.999978 -0.0638854 0.00784696 -0.997926 -0.466509 -0.040128 -0.883606 0 0 -1 0 0 -1 -0.0108576 -0.00983221 -0.999893 0.0185408 -0.00297417 -0.999824 -0.0237289 -0.00027952 -0.999718 -0.00210402 0.0118865 -0.999927 0.00647974 0.0122572 -0.999904 -0.00250006 0.0165091 -0.999861 0.00905345 0.00437115 -0.999949 -0.0697195 0.220674 -0.972853 0.00393009 0.0125825 -0.999913 0.00069453 0.000731108 -1 -0.00972331 9.32931e-05 -0.999953 0.248558 -0.00238486 -0.968614 -0.00228803 -0.000905702 -0.999997 0.00203249 -0.000862298 -0.999998 0.00416981 0.000450594 -0.999991 -0.0300987 0.00724082 -0.999521 0.0732944 -0.0176324 -0.997154 -0.00670607 0.0161808 -0.999847 -0.0178691 0.0175645 -0.999686 0 0 -1 0.165933 0.118202 -0.979027 -0.141424 0.0166139 -0.98981 0.0143014 -0.00168006 -0.999896 -0.00181285 -0.00941567 -0.999954 0.0016023 -0.00928667 -0.999956 -0.0147315 -0.00173058 -0.99989 0 0 -1 0 0 -1 0 0 -1 0.0362104 0.0355715 -0.998711 -0.210876 -0.000904615 -0.977512 0 0 -1 0 0 -1 -0.00403416 0 -0.999992 0.00104918 -0.000668139 -0.999999 -0.360678 -0.0281154 -0.932267 0 0 -1 -0.0556934 0.00525832 -0.998434 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.01412 -0.0456254 -0.998859 -0.0666293 -0.0137849 -0.997683 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0209524 -0.0677024 -0.997486 -0.14999 -0.0310313 -0.9882 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.0113669 -0.0367294 -0.999261 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.707107 -0.707107 0.000715616 0.953974 -0.29989 0.000107291 0.594849 -0.803837 0.000253806 0.932099 -0.362204 0 0.443658 -0.896196 0 1 0 0 1 0 0 0.2772 0.960812 0 0.707117 0.707096 0.000456792 0.889897 0.456161 0 0 1 0 0 1 0 0.382823 0.923822 0 0.382823 0.923822 0 0.707107 0.707107 0 0.707107 0.707107 0 0.54731 0.83693 0 0.0813645 0.996684 -0.000525662 0.38285 0.92381 0.000202148 0.0556606 0.99845 -0.000254626 0 1 0 0.407892 0.91303 0 -0.331406 0.943487 -0.00133466 -0.337474 0.941335 0 -0.192203 0.981355 0.000359965 0.332961 0.94294 -0.000183774 0.34347 0.939164 0.000444911 0 1 0 0 1 0 -0.38285 0.92381 0 -0.38285 0.92381 0 -0.707006 0.707207 0 -0.707006 0.707207 0 -0.164117 0.986441 -0.000439916 -0.109522 0.993984 -0.00018324 -0.548656 0.836048 0 -0.38285 0.92381 0.00020515 -0.0585114 0.998287 -9.7895e-05 -0.306288 0.951936 -0.00224872 -0.843111 0.53774 0 -0.437743 0.899099 0.00163283 -1 0 0 -1 0 0 -0.952437 -0.304736 0 -0.707107 -0.707107 0.000825015 -0.333824 -0.942635 -0.000558487 -0.119373 -0.992849 0.000761881 -0.92863 -0.371007 -0.000119381 0 -1 0 -0.382884 -0.923797 0 -0.164134 -0.986438 0.000274611 -0.707006 -0.707207 0 -0.707006 -0.707207 0 -0.548656 -0.836048 0 -0.240878 -0.970555 0 -0.38285 -0.92381 -0.00020515 -0.38285 -0.92381 0.000203374 0 -1 0 0 -1 0 -0.368685 -0.929555 0 0.348999 -0.937123 0 0.366699 -0.93034 4.67295e-05 -0.359368 -0.933196 2.4375e-05 0 -1 0 0 -1 0 0.220463 -0.975395 0 0.38285 -0.92381 0.000127446 0.450957 -0.892546 0 0.38285 -0.92381 -0.000126671 0.707107 -0.707107 0 0.707107 -0.707107 0 0.382856 -0.923808 0 0.382856 -0.923808 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.00745553 -0.00745575 0.999944 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.000689391 0 1 0.000689391 0 1 0 -0.000103564 1 -0.00241772 0 0.999997 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0417135 0.00863009 0.999092 0.00986492 -0.0137794 0.999856 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0417135 0.00863009 0.999092 0.00986492 -0.0137794 0.999856 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0809598 0.0167497 0.996577 0.0270461 -0.0377782 0.99892 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0417141 0.0086302 0.999092 0.0232777 -0.0196017 0.999537 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0417137 0.00863017 0.999092 0.023278 -0.0196021 0.999537 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0829165 0.00706158 0.996531 0 -0.0135733 0.999908 0.00966031 -0.006184 0.999934 0.0011107 -0.00571366 0.999983 0.0116116 0.00248949 0.999929 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.00769395 0 0.99997 0.00769395 0 0.99997 0 0.00109034 0.999999 -0.0214373 0 0.99977 0 0 1 -0.00932494 -0.00414797 0.999948 -0.0002604 -0.00625053 0.99998 -0.00106589 -0.00548313 0.999984 0 -0.00489897 0.999988 -0.0173419 0.00830333 0.999815 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.03878 0 0.999248 -0.03878 0 0.999248 0 0.00590999 0.999983 0.140135 0 0.990132 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0132947 -0.018574 0.999739 0.0830019 0.0171722 0.996401 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0288192 -0.0242683 0.99929 0.0780364 0.016145 0.99682 0 0 1 0 0 1 0.0916173 -0.0189548 0.995614 -0.0425766 0.0358535 0.99845 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0447738 -0.0625535 0.997037 0.121822 0.0252039 0.992232 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.382856 -0.923808 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0423531 0.00917977 0.999061 -0.00441212 -0.0106453 0.999934 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.00843174 -0.000911144 0.999964 0.0706997 0.0120966 0.997424 -0.00866368 -0.0209031 0.999744 0.0095562 -0.00039777 0.999954 0 0 1 0.00929878 -0.000686671 0.999957 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0423535 0.00917994 0.999061 -0.00441158 -0.0106451 0.999934 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.382856 -0.923808 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0243758 0.0340557 0.999123 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.0421915 0.0355292 0.998478 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.0423535 0.00917994 0.999061 -0.000742086 -0.00909027 0.999958 0 0 1 0 0 1 0 0 1 0.00550101 -0.0029151 0.999981 0.0164228 0.00379641 0.999858 0.0493485 -0.0023361 0.998779 0.0338608 -0.00573507 0.99941 -0.763721 0.0155585 0.645359 0.999992 -0.00387237 0.000874993 0.0788285 0.000306426 0.996888 -0.021634 -0.0128917 0.999683 0 0 1 0.0348368 -0.0382989 0.998659 -0.0800949 7.93247e-05 0.996787 -0.0131611 -0.0015461 0.999912 -0.410432 -0.0482153 0.910616 0.545787 -0.0641161 0.835467 0 0 1 0 0 1 0 0 1 0.0191806 -0.0151359 0.999701 -0.0467693 0.000180974 0.998906 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.10076 0.0132805 0.994822 0.119692 0.0408097 0.991972 -0.0944399 -0.000365436 0.99553 0.0111572 0.0109603 0.999878 0 0 1 -0.0028525 0.00203197 0.999994 0.0122545 0.00143959 0.999924 -0.00698728 -0.000820832 0.999975 -0.0184531 0.00519796 0.999816 0.00322291 0.0101515 0.999943 0.0210523 0.00430141 0.999769 -0.0177931 0.00324597 0.999836 0 0.0140193 0.999902 -0.00395867 0.0180114 0.99983 0.531575 -0.00810502 0.846972 0.0270215 0 0.999635 0 0 1 0 0 1 0.201642 0.0124884 0.97938 0.166624 0.0103196 0.985967 -0.175588 0.0724752 0.981792 0.0856978 -0.0463617 0.995242 0.0709511 0.0170687 0.997334 -0.00111181 -0.0136186 0.999907 -0.0250637 0.0178541 0.999526 0.00284757 -0.00202845 0.999994 0.0151243 -0.00251112 0.999883 0 -0.0074726 0.999972 -0.00840617 -0.00124948 0.999964 -0.00154423 -0.00169679 0.999997 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.103861 0.00672779 0.994569 -0.304783 -0.0167477 0.952275 -0.0948235 -0.000406773 0.995494 0.0111572 0.0109603 0.999878 0 0 1 0 0 1 0 0 1 -0.0322447 -0.00378795 0.999473 -0.0174489 -0.0107929 0.99979 0.0288359 0.00174628 0.999583 0.0040249 0.0098884 0.999943 0.0100599 0.0110598 0.999888 0 0 1 0 0 1 0.228188 -0.000753072 0.973617 0.00375472 0.00176936 0.999991 0 0 1 0.0202732 -0.00396766 0.999787 0.00515955 -0.00741954 0.999959 -0.655153 0.0305412 -0.754878 0.0943055 -0.000868239 0.995543 -0.0183959 -0.0180825 0.999667 0 0 1 0.00284939 -0.00202977 0.999994 -0.0122617 -0.00144045 0.999924 0.0145024 0.00170368 0.999893 0 0.00898444 0.99996 -0.014813 0.00174017 0.999889 0 0 1 0.00673779 0.000899512 0.999977 0 -0.00287007 0.999996 0.0022249 -0.00529969 0.999983 -0.0317347 0.000136136 0.999496 0 0 1 -0.0956907 0 0.995411 0 0 1 0 0 1 0 0 1 0.0655205 -0.0417248 0.996979 -0.323301 -0.0101931 0.946241 0 0 1 0 0 1 -0.00837343 0.0092006 0.999923 0.0186194 0.00296978 0.999822 -0.00646788 0.00138398 0.999978 -0.0142054 0.00572997 0.999883 0.00456398 0.0106754 0.999933 0.0263998 0.00584749 0.999634 -6.60265e-05 0.00193387 0.999998 -0.215886 0.224327 -0.9503 -0.00103524 0.0151586 0.999885 0.0838867 -0.000361509 0.996475 0 0 1 0.0142431 0 0.999899 -0.00163403 0.00121779 0.999998 -0.00594987 0.000768526 0.999982 0.395945 -0.051143 0.916849 0.0423531 0.00917977 0.999061 -0.00441212 -0.0106453 0.999934 -0.0216394 -0.0128952 0.999683 0 0 1 0.0129452 -0.0142319 0.999815 -0.0374429 -0.00414291 0.99929 0.0263385 -0.000146642 0.999653 -0.00212676 0.0164636 0.999862 -0.0310641 0.00364928 0.999511 0 0 1 0 0 1 0 0 1 0.00601145 -0.00590543 0.999965 -0.0317347 0.000136136 0.999496 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.277718 0.0702932 0.958087 -0.314998 -0.00135127 0.949091 0.0460424 0.0452296 0.997915 0 0 1 -0.0175942 0.0125331 0.999767 0.0291489 0.00342426 0.999569 -0.00735968 -0.000864575 0.999973 -0.0184169 0.00461985 0.99982 -0.0789395 -0.0113537 0.996815 0.0383132 0.0717821 0.996684 0 0.00284071 0.999996 0.00558937 -0.00333072 0.999979 0 0 1 -0.00555009 0.0523942 0.998611 0.013887 -0.0121443 0.99983 0 0 1 0.00407092 0 0.999992 -0.000813452 0.000681867 0.999999 -0.0041803 0.00042032 0.999991 0.119687 0.0199933 0.99261 -0.0216394 -0.0128952 0.999683 0 0 1 0.022276 -0.0244903 0.999452 -0.0422834 -0.000824888 0.999105 0.0158968 -0.00225766 0.999871 0.0638201 0.0134765 0.99787 -0.00997756 0.0334835 0.999389 0.0434325 0.058252 0.997357 -0.0236215 0.00509888 0.999708 -0.0277275 -0.00253657 0.999612 -0.00595425 0.0562154 0.998401 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.148175 0 0.988961 -0.0978525 -0.0087097 0.995163 -0.0948235 -0.000406776 0.995494 0.0199707 0.0119005 0.99973 0 0 1 -0.0199865 0.0219609 0.999559 -0.00120339 -0.0283167 0.999598 0.0263725 0.0230384 0.999387 -0.00010065 0.00294795 0.999996 0.00123878 0.00147793 0.999998 -0.000981888 -0.00879243 0.999961 -0.0015148 0.0267142 0.999642 0.00576818 0.00342094 0.999978 -0.00846874 0.10176 0.994773 0.0262808 -0.0229827 0.99939 0.0085473 -0.000977559 0.999963 -0.0173629 -0.000992601 0.999849 0.140682 0.0300201 0.9896 -0.72085 0.0508535 0.691223 -0.0535841 0.0227657 0.998304 -0.0420988 -0.0250872 0.998798 0 0 1 0 0 1 0.0130349 -0.00928543 0.999872 -0.0197301 -0.00304997 0.999801 0.0208469 -0.000463355 0.999783 0.00499824 0.00875214 0.999949 0.0549366 0.0199874 0.99829 -0.0263366 -0.0443582 0.998668 -0.0248536 -0.0415684 0.998827 -0.00219351 0.0207073 0.999783 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.130751 0.0172333 0.991265 0.0203449 0.0436124 0.998841 -0.428009 0.00532096 0.903759 -0.00260154 -1.252e-05 0.999997 0 0.0028351 0.999996 -0.00485804 0.00544274 0.999973 0.000951818 -0.00605611 0.999981 0.00486496 0.00534845 0.999974 0 0 1 0 0 1 0.000976883 -0.00821495 0.999966 0.00159145 0.0270075 0.999634 -0.0137167 -0.0220959 0.999662 -0.00446363 -0.0105083 0.999935 -0.0153812 0.0581687 0.998188 -0.000860721 0.00812542 0.999967 0 0 1 0.0115361 0 0.999933 -0.0017004 0.00126725 0.999998 -0.00665292 0.000859327 0.999978 0.111087 -0.0143487 0.993707 -0.0152833 -0.0120653 0.99981 0 0 1 0.00719392 -0.00651657 0.999953 -0.0104032 -0.00245741 0.999943 0.0242955 -0.000243553 0.999705 0.0225883 0.000761515 0.999745 -0.0374627 -0.0146735 0.99919 -0.00834384 0.0131159 0.999879 0.0119642 0.0578398 0.998254 -0.00441045 0.0120353 0.999918 -0.0018498 0.0016176 0.999997 0 0 1 0 0 1 0 0 1 0 0 1 -0.0439745 0.00579593 0.999016 -0.222248 -0.025306 0.974662 -0.0948235 -0.000406776 0.995494 0.0199707 0.0119005 0.99973 0 0 1 -0.00488699 0.00536975 0.999974 0 -0.00882991 0.999961 0.00544446 0.0038783 0.999978 0 0 1 0 0 1 0 0.0756463 0.997135 0.00153365 0.0205404 0.999788 0.159191 0.310488 0.937153 0.0123655 -0.0147678 0.999815 0.00654465 0.103168 0.994642 -0.00253934 0.0298138 0.999552 0.00656968 -0.00574522 0.999962 0 0 1 0.135341 0 0.990799 -0.0177029 -0.0292018 0.999417 -0.916958 0.0103737 0.398848 0 0 1 0 0 1 0 0 1 0.0111488 -0.00108224 0.999937 0.130872 0.00664003 0.991377 0.00423044 0.0724019 0.997367 -0.037387 0.0602234 0.997485 -0.0213674 0.0766695 0.996828 0.0197479 0.157136 0.98738 -0.0221266 0.0442349 0.998776 -0.011355 0.0099297 0.999886 -0.0053553 -0.00283777 0.999982 -0.0169853 0.00392642 0.999848 0 0 1 -0.0192539 -0.00265556 0.999811 0.0121431 -0.0101675 0.999875 0.627002 -0.0307916 0.778409 0 0 1 0.0075433 0.00449506 0.999961 0 0 1 -0.00488699 0.00536975 0.999974 0 -0.00882991 0.999961 0.00513845 0.00465463 0.999976 0 0 1 0 0 1 0 0.120503 0.992713 -0.00514337 -0.0460569 0.998926 -0.00466804 0.0148195 0.999879 0.0741511 0.261869 0.962251 0.0286549 -0.0471317 0.998478 -0.0163168 0.172805 0.984821 0.0518049 -0.0545322 0.997167 0 0 1 0.114224 0 0.993455 0.126866 -0.00136073 0.991919 -0.610298 -0.10935 0.784589 -0.0836798 0.00525096 0.996479 -0.0244036 0.0221058 0.999458 0.0109245 -0.00989587 0.999891 -0.018265 -0.00295309 0.999829 0.020569 -0.000485024 0.999788 0.0158477 0.0021309 0.999872 -0.0278333 -0.0102363 0.99956 0.0140306 0.0306063 0.999433 -0.0109611 -0.0169827 0.999796 -0.00519276 -0.00130055 0.999986 -0.00739436 0.00646618 0.999952 -0.053597 0 0.998563 0.0075481 -0.00632004 0.999952 0.0431857 -0.00212081 0.999065 0 0 1 -0.00414976 -0.0136165 0.999899 0 0.120503 0.992713 0 0 1 -0.00624052 0.0177428 0.999823 -0.0140451 -0.0168825 0.999759 0.0286535 -0.0471307 0.998478 -0.0179288 0.169252 0.98541 0.040841 -0.0357157 0.998527 0.00751489 0.00354132 0.999965 0 0 1 -0.00662261 0.0036908 0.999971 0.161646 0.0302422 0.986385 0.0801863 0.037426 0.996077 0.0203737 -0.00378619 0.999785 -0.00556572 -0.00637742 0.999964 0.00659539 -0.00315788 0.999973 0.000611964 -0.0060179 0.999982 -0.645497 0 0.763763 0 0 1 0 0 1 0 0 1 0.142081 -0.0293277 0.989421 0 0 1 0 0 1 -0.43304 0.000549517 0.901375 -0.452135 -0.000573749 0.891949 0 0 1 0 0 1 0 0 1 0 0 1 -0.0322447 -0.00378796 0.999473 -0.0174489 -0.010793 0.99979 0.0288359 0.00174629 0.999583 0.00207201 0.0105289 0.999942 0.0190158 0.0135458 0.999727 0 0 1 0 0 1 -0.0497072 0.0296208 0.998325 0.117101 -0.000504642 0.99312 0 0 1 0 0 1 0 0 1 0.00484029 0.00541105 0.999974 -0.375923 -0.0777744 0.923381 0.0714978 0.0998702 0.992428 0 0 1 0 0 1 -0.0291147 -0.094056 0.995141 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.011516 -0.00266212 0.99993 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.375752 -0.0777391 0.923454 0.0715427 0.0999328 0.992419 0 0 1 0 0 1 -0.0102954 -0.0332604 0.999394 0 0 1 0 0 1 0 0 1 0 0 1 0.0334329 0.00691691 0.999417 -0.00269697 -0.00526466 0.999983 -0.375923 -0.0777744 0.923381 0.0714978 0.0998702 0.992428 0 0 1 -0.00921954 -0.0203916 0.99975 0.00630025 -0.101224 0.994844 0 0 1 0 0 1 0.100399 -0.0207715 0.99473 0.0607766 0.012574 0.998072 -0.0181651 -0.0152965 0.999718 0 0 1 0 0 1 0 0 1 0 0 1 -0.0541338 -0.174881 0.9831 0 0 1 0 0 1 0.0499383 -0.0103317 0.998699 0.0641103 0.0132638 0.997855 -0.017403 -0.0146547 0.999741 0 0 1 0 0 1 0 0 1 0 0 1 -0.00975365 -0.0315095 0.999456 0 0 1 0 0 1 0.707117 0.707096 0.000471395 0.139132 0.990274 -0.000232887 0.913053 0.407841 0 0 1 0 0.382823 0.923822 0 0.164074 0.986448 0.00027462 0.707107 0.707107 0 0.707107 0.707107 0 0.54731 0.83693 0 0.0813645 0.996684 0.000521109 0.056036 0.998429 0.000256343 0.38285 0.92381 -0.000203914 0 1 0 -0.320944 0.947098 0 0.355501 0.934676 0 0 1 0.000814633 0 -0.125082 -0.992146 0 1 0 0 1 0 -0.38285 0.92381 0 -0.38285 0.92381 0 -0.707006 0.707207 0 -0.707006 0.707207 0 -0.164117 0.986441 -0.000439916 -0.109522 0.993984 -0.00018324 -0.548656 0.836048 0 -0.38285 0.92381 0.00020515 0 1 0 -0.137083 0.99056 0.00022934 -0.707117 0.707096 -0.000508477 -0.927715 0.373289 0 -1 0 0 -1 0 0 -0.707107 -0.707107 0.000533141 -0.119384 -0.992848 -0.000199729 -0.928631 -0.371005 0 0 -1 0 -0.164134 -0.986438 0.000274611 -0.382884 -0.923797 0 -0.707006 -0.707207 0 -0.707006 -0.707207 0 -0.548656 -0.836048 0 -0.240878 -0.970555 0 -0.38285 -0.92381 -0.00020515 -0.38285 -0.92381 0.000203374 0 -1 0 0 -1 0 0.366699 -0.93034 0 0 -1 0.000898436 0 -0.0032691 -0.999995 -0.368685 -0.929555 0 0 -1 0 0 -1 0 0.220463 -0.975395 0 0.38285 -0.92381 0.000127446 0.450957 -0.892546 0 0.38285 -0.92381 -0.000126671 0.707107 -0.707107 0 0.707107 -0.707107 0 0.382856 -0.923808 0 0 -1 0 0 -1 0 0.957453 -0.288588 0.000487164 0.40159 -0.91582 3.91306e-05 0.87975 -0.475436 0 0.419403 -0.9078 0 0.487849 -0.872928 0.000176646 0.971376 -0.237548 -0.000702863 1 0 0 1 0 0 0.707117 0.707096 0 0.437651 0.899145 -0.000732562 0 1 0 0.164074 0.986448 0.00027462 0.382823 0.923822 0 0.707107 0.707107 0 0.707107 0.707107 0 0.54731 0.83693 0 0.38285 0.92381 -0.000203914 0.38285 0.92381 0.000202148 0.241428 0.970419 0 0 1 0 0 1 0 0.0659349 0.997824 -0.0006607 0.357976 0.933731 0 -0.405943 0.913898 -4.22615e-05 -0.376992 0.926216 -9.6246e-05 -0.309487 0.950904 0.000280591 0.33489 0.942257 0.00100602 -0.0621203 0.998069 0.000142041 0 1 0 -0.0546862 0.998504 -0.000125037 -0.38285 0.92381 0.000128681 -0.451721 0.892159 0 -0.135183 0.99082 -0.000552131 -0.707006 0.707207 0 -0.707006 0.707207 0 -0.164117 0.986441 -0.000439916 -0.0704152 0.997518 0 -0.548656 0.836048 0 -0.164117 0.986441 0.000443759 -0.259099 0.965851 0 -0.965118 0.261816 0 -0.942876 0.333145 -0.000113139 -0.16906 0.985606 -0.000613302 -0.916754 0.399451 0.000244268 -0.162769 0.986664 0.000591735 -1 0 0 -1 0 0 -0.707107 -0.707107 0.000722372 -0.392439 -0.919778 0 -0.931951 -0.362584 0.000411361 -0.868613 -0.495491 0 -0.316216 -0.948687 0.000161467 0 -1 0 0 -1 0 -0.382884 -0.923797 0 -0.382884 -0.923797 0 -0.707006 -0.707207 0 -0.707006 -0.707207 0 -0.548656 -0.836048 0 -0.240878 -0.970555 0 -0.38285 -0.92381 -0.00020515 -0.38285 -0.92381 0.000203374 0 -1 0 0 -1 0 0.366699 -0.93034 2.72909e-05 0.355523 -0.934668 0 -0.368685 -0.929555 0 -0.317679 -0.948198 0.00013229 0 -1 0 0 -1 0 0.220583 -0.975368 0 0.38285 -0.92381 0.000127358 0.450913 -0.892568 0 0.38285 -0.92381 -0.000126584 0.707107 -0.707107 0 0.707107 -0.707107 0 0.382856 -0.923808 0 0.382856 -0.923808 0 0 -1 0 0.134752 -0.990879 -0.000451096 0.707107 -0.707107 0.00047814 0.960125 -0.279572 0 1 0 0 1 0 0 0.707117 0.707096 0 0.707117 0.707096 0 0 1 0 0 1 0 0.382823 0.923822 0 0.382823 0.923822 0 0.707107 0.707107 0 0.707107 0.707107 0 0.54731 0.83693 0 0.382884 0.923797 -0.000203875 0.382884 0.923797 0.000202109 0.241493 0.970402 0 0 1 0 0 1 0 0 1 0.000830201 0.329683 0.944092 0 -0.357704 0.933835 0 0 1 0 0 1 0 -0.382884 0.923797 0 -0.382884 0.923797 0 -0.707006 0.707207 0 -0.707006 0.707207 0 -0.38285 0.92381 -0.000203374 -0.108998 0.994042 0.000182365 -0.548656 0.836048 0 -0.164117 0.986441 0.000443759 0 1 0 -0.943103 0.332498 0.000969186 -0.162304 0.986741 -0.000271535 -0.707117 0.707096 0 -1 0 0 -1 0 0 -0.887503 -0.460802 0 -0.470056 -0.882637 0 -0.707107 -0.707107 0.000748254 -0.707107 -0.707107 -0.000652836 0 -1 0 0 -1 0 -0.382884 -0.923797 0 -0.382884 -0.923797 0 -0.707006 -0.707207 0 -0.707006 -0.707207 0 -0.548656 -0.836048 0 -0.240878 -0.970555 0 -0.38285 -0.92381 -0.00020515 -0.38285 -0.92381 0.000203374 0 -1 0 0 -1 0 -0.38294 -0.923773 0 0.414789 -0.909918 -4.73176e-05 0.305503 -0.952191 -0.000374046 0.0689537 -0.99762 0.000172188 0.0426985 -0.999088 -0.000320346 0.349004 -0.937121 0.000134743 -0.363931 -0.931426 6.98121e-05 -0.319982 -0.947424 -0.000275695 0.0221714 -0.999754 0.000101426 0.943998 0.329952 -0.000523126 0.0341224 -0.999418 0.00021686 0 -1 0 0.220583 -0.975368 0 0.38285 -0.92381 0.000127358 0.450913 -0.892568 0 0.38285 -0.92381 -0.000126584 0.707107 -0.707107 0 0.707107 -0.707107 0 0.382856 -0.923808 0 0.382856 -0.923808 0 0 -1 0 0 -1 0 0.707107 -0.707107 0 0.707107 -0.707107 0 1 0 0 1 0 0 1 0 0 1 0 0 0.00647738 -0.999979 -1.08422e-05 0.271421 -0.962461 6.24588e-05 0.954866 -0.297037 5.80297e-05 0.968484 -0.249076 0 0.69511 -0.718904 0 0.16157 -0.986861 -0.00046876 0.718277 -0.695757 0.000454333 0.69511 -0.718904 0 0.672976 -0.739664 -0.000266713 0.268379 -0.963313 -0.000964527 0.221857 -0.975079 0 0.418051 -0.908424 0.000277925 0.955422 -0.295245 -7.89238e-05 0 -1 0 0.38284 -0.923815 0 0.164082 -0.986447 0.000274634 0.707107 -0.707107 0 0.707107 -0.707107 0 0.382867 -0.923803 0 0.382867 -0.923803 0 0 -1 0 0 -1 0 -0.418621 -0.908161 0 -0.166468 -0.986047 0.000710166 0.333934 -0.942596 -0.000104186 0.36226 -0.932077 0 -0.142862 -0.989743 0.000241857 -0.297997 -0.954567 -0.000198656 0.290315 -0.956931 0.000380761 -0.347806 -0.937567 -0.000193992 0 -1 0 0 -1 0 -0.548656 -0.836048 0 -0.240911 -0.970547 0 -0.382867 -0.923803 -0.000205131 -0.382867 -0.923803 0.000203355 -0.707006 -0.707207 0 -0.707006 -0.707207 0 -0.382867 -0.923803 0 -0.164126 -0.986439 0.000274597 0 -1 0 -0.954452 -0.298363 0 -0.707112 -0.707101 0.000943828 -0.347494 -0.937682 -0.000581357 -0.437738 -0.899102 -0.00110542 -1 0 0 -1 0 0 -0.936092 0.351755 0 -0.707112 0.707101 -0.000451248 -0.192798 0.981238 0.000322551 0 1 0 -0.109537 0.993983 -0.000183266 -0.548656 0.836048 0 -0.382867 0.923803 0.000205131 -0.164126 0.986439 -0.000439907 -0.707006 0.707207 0 -0.707006 0.707207 0 -0.38285 0.92381 0 -0.38285 0.92381 0 0 1 0 0 1 0 0 0.999999 0.00134616 0.810446 0.5858 0.00391943 -0.881728 0.47175 0.00264258 -0.375885 0.926666 0 0 0 -1 0.252162 0.967685 0 0 1 0 0 1 0 0.511701 0.859163 0 0.38285 0.92381 -0.000219011 0.164925 0.986306 0 0.38285 0.92381 0.000214552 0.707107 0.707107 0 0.707107 0.707107 0 0.164082 0.986447 0 0.164082 0.986447 0 0.151112 0.988517 -4.58666e-05 0.945625 0.325258 -2.65355e-05 0.135489 0.990779 0 0.952299 0.305167 0 1 0 0 1 0 0 0.415994 -0.909367 0 0.707107 -0.707107 0.000457934 0.93538 -0.353644 0 0 -1 0 0 -1 0 0.38284 -0.923815 0 0.38284 -0.923815 0 0.707107 -0.707107 0 0.707107 -0.707107 0 0.220523 -0.975382 0 0.382867 -0.923803 0.000127415 0.450957 -0.892546 0 0.382867 -0.923803 -0.000126641 0 -1 0 0 -1 0 -0.418621 -0.908161 0 0.375481 -0.92683 0 -0.346303 -0.938123 -0.000198036 0.0539724 -0.998542 0.000759565 0 -0.999999 0.00113643 0 -1 0 0 -1 0 -0.548656 -0.836048 0 -0.240911 -0.970547 0 -0.382867 -0.923803 -0.000205131 -0.382867 -0.923803 0.000203355 -0.707006 -0.707207 0 -0.707006 -0.707207 0 -0.382867 -0.923803 0 -0.164126 -0.986439 0.000274597 0 -1 0 -0.437733 -0.899105 -0.000732326 -0.707107 -0.707107 0 -1 0 0 -1 0 0 -0.707112 0.707101 -0.000450094 -0.19624 0.980556 0.000328308 -0.938005 0.346623 0 0 1 0 -0.164117 0.986441 -0.000439869 -0.109537 0.993983 -0.000183266 -0.548626 0.836068 0 -0.38285 0.92381 0.000205107 -0.707006 0.707207 0 -0.707006 0.707207 0 -0.219602 0.97559 0 -0.382867 0.923803 0.00012865 -0.451721 0.892159 0 -0.382867 0.923803 -0.000127869 0 1 0 0 1 0 0.40788 0.913035 0 0.320772 0.947156 0.000503747 0 1 -0.000996492 -0.35911 0.933294 -0.00141337 -0.222152 0.975012 0 0 1 0 0.54933 0.835606 0 0.0813686 0.996684 -0.000528831 0.382867 0.923803 0.000205044 0.0551358 0.998479 -0.000252225 0.707107 0.707107 0 0.707107 0.707107 0 0.164074 0.986448 0 0.382823 0.923822 -0.000640752 0 1 0 0.707112 0.707102 0 0.437646 0.899147 0.000732553 -0.0877399 -0.0877386 0.992272 1 0 0 1 0 0 0.707107 -0.707107 0.000873063 0.873225 -0.487317 -0.000219859 0.924982 -0.380011 0 0.0927324 -0.995691 -0.00015522 0.547436 -0.836848 0.000260083 0 -1 0 0.38284 -0.923815 0 0.164082 -0.986447 0.000274634 0.707107 -0.707107 0 0.707107 -0.707107 0 0.382867 -0.923803 0 0.382867 -0.923803 0 0 -1 0 0 -1 0 0.214018 -0.97683 0 -0.214018 0.97683 0 -0.418621 -0.908161 0 0.333927 -0.942599 -5.74769e-05 0.356979 -0.934112 0 -0.247201 -0.968964 2.29925e-05 -0.347797 -0.93757 -0.000194016 -0.333766 -0.942656 0.000248401 0 -1 0 0 -1 0 -0.548656 -0.836048 0 -0.240911 -0.970547 0 -0.382867 -0.923803 -0.000205131 -0.382867 -0.923803 0.000203355 -0.707006 -0.707207 0 -0.707006 -0.707207 0 -0.164126 -0.986439 -0.000274597 -0.382867 -0.923803 0 0 -1 0 -0.879413 -0.47606 0 -0.193217 -0.981156 0.000119337 -0.29221 -0.956354 0.000308018 -0.928631 -0.371004 0.000292402 -0.24533 -0.96944 0.000410436 -0.940792 -0.338984 -0.000388514 -1 0 0 -1 0 0 -0.289313 0.957235 0 -0.878535 0.477679 0 -0.707117 0.707096 -0.000427636 0 1 0 0 1 0 -0.38285 0.92381 -0.000203374 -0.240878 0.970555 0 -0.548656 0.836048 0 -0.38285 0.92381 0.00020515 -0.707006 0.707207 0 -0.707006 0.707207 0 -0.382884 0.923797 0 -0.382884 0.923797 0 0 1 0 0 1 0 0.362341 0.932045 0 -0.340962 0.940077 0 0 -0.0360629 0.99935 0 1 -0.000852776 0 1 0 0 1 0 0.54936 0.835586 0 0.382884 0.923797 -0.000206859 0.382884 0.923797 0.000205068 0.239276 0.970952 0 0.707107 0.707107 0 0.707107 0.707107 0 0.382823 0.923822 0 0.103484 0.994631 -0.000346424 0 1 0 0.707117 0.707096 0 0.707117 0.707096 0 1 0 0 1 0 0 0.971549 -0.236837 -0.000535129 0.892922 -0.450213 0 0.462543 -0.886597 0 0.481032 -0.876703 5.18518e-05 0.707107 -0.707107 -0.000704127 0 -1 0 0 -1 0 0.382856 -0.923808 0 0.382856 -0.923808 0 0.707107 -0.707107 0 0.707107 -0.707107 0 0.38285 -0.92381 0 0.38285 -0.92381 0 0 -1 0 0.0221714 -0.999754 0.000101426 0.943998 0.329952 -0.000523126 0.0341224 -0.999418 0.00021686 0.376353 -0.926476 1.04809e-05 0.361922 -0.932208 -1.73609e-05 -0.331435 -0.943478 0 -0.368685 -0.929554 0.000100541 0 -1 0 0 -1 0 -0.548656 -0.836048 0 -0.240878 -0.970555 0 -0.38285 -0.92381 -0.00020515 -0.38285 -0.92381 0.000203374 -0.707006 -0.707207 0 -0.707006 -0.707207 0 -0.382884 -0.923797 0 -0.164134 -0.986438 -0.000274611 0 -1 0 -0.95494 -0.2968 0 -0.292218 -0.956351 0.000725989 -0.928625 -0.37102 -0.000141483 -0.339567 -0.940582 0.000568094 -0.437733 -0.899104 0.00119274 -1 0 0 -1 0 0 -0.707117 0.707096 0 -0.707117 0.707096 0 0 1 0 0 1 0 -0.38285 0.92381 -0.000203374 -0.240878 0.970555 0 -0.548656 0.836048 0 -0.38285 0.92381 0.00020515 -0.707006 0.707207 0 -0.707006 0.707207 0 -0.219662 0.975576 0 -0.382884 0.923797 0.00012862 -0.451721 0.892159 0 -0.382884 0.923797 -0.000127838 0 1 0 0 1 0 -0.356673 0.934229 0 -0.337845 0.941202 -5.13707e-05 0.30327 0.952905 -0.00021644 0.390131 0.920759 0 0 1 0 0 1 0 0.5493 0.835625 0 0.382884 0.923797 -0.000206771 0.382884 0.923797 0.000204981 0.239341 0.970935 0 0.707107 0.707107 0 0.707107 0.707107 0 0.382823 0.923822 0.000206384 0.382823 0.923822 -0.000204597 0.517177 0.855879 0 0.202803 0.97922 0 0 1 0 0 1 0 0.707117 0.707096 -0.000852961 0.455853 0.890055 0 0.922423 0.38618 0 0.707117 0.707096 0.000771874 1 0 0 1 0 0 0.942098 -0.335338 0 0.450384 -0.892835 0 0.605892 -0.795547 0 0.605892 -0.795547 0 -0.563267 0.826275 -0.000904915 0.22182 -0.975088 0 0.606227 -0.795291 0.00126692 0.707107 -0.707107 -0.000546916 0.707105 -0.707105 0.00216506 0 -1 0 0 -1 0 0.382856 -0.923808 0 0.707107 -0.707107 0 0.707107 -0.707107 0 0.38285 -0.92381 0 0.38285 -0.92381 0 0 -1 0 0 -1 0 0.366699 -0.93034 0 -0.368694 -0.929549 0.00167554 -0.371971 -0.928244 0 0.349403 -0.936971 -0.00158787 0 -1 0 0 -1 0 -0.38285 -0.92381 0 -0.38285 -0.92381 0 -0.707006 -0.707207 0 -0.707006 -0.707207 0 -0.382884 -0.923797 0 -0.164134 -0.986438 0.000274611 0 -1 0 -0.0392706 -0.999229 -6.56997e-05 -0.357422 -0.933943 0.000108366 -0.594507 -0.80409 -0.000262846 -0.106302 -0.994334 -0.000442921 -0.594467 -0.80412 0.000410007 -0.88083 -0.473433 -0.000499226 -0.965227 -0.261413 0 -0.93127 -0.364329 0.000133146 -1 0 0 -1 0 0 -0.942953 0.332925 0.000968269 -0.162843 0.986652 -0.000272437 -0.707117 0.707096 0 0 1 0 -0.38285 0.92381 -0.000203374 -0.108998 0.994042 0.000182365 -0.548656 0.836048 0 -0.164117 0.986441 0.000443759 -0.707006 0.707207 0 -0.707006 0.707207 0 -0.382884 0.923797 0 -0.382884 0.923797 0 0 1 0 0 1 0 0.302272 0.953222 0 0.318139 0.948044 7.53054e-05 -0.291296 0.956633 0 0.312252 0.949999 -5.07698e-05 -0.333993 0.942575 0.000210415 -0.301579 0.953441 -5.40901e-05 -0.211101 -0.977464 0 0.211101 0.977464 0 0 1 0 0 1 0 0.382884 0.923797 0 0.382884 0.923797 0 0.707107 0.707107 0 0.707107 0.707107 0 0.164074 0.986448 -0.000503977 0.517227 0.855848 0 0.0808231 0.996728 -0.000135278 0.382823 0.923822 0.000206472 0 1 0 0.707117 0.707096 0 0.437651 0.899145 0.000732562 0.99812 -0.0612878 3.20061e-05 0.873508 -0.486809 -0.000152905 0.773571 -0.633709 -0.00053256 0.422756 -0.906243 -1.99986e-08 0.613043 -0.79005 0 0.992858 0.119299 0 0.995352 0.0962997 -0.000138134 0.6558 -0.754935 7.17705e-05 0.714415 -0.699722 0 0.992858 0.119299 0 0.99587 -0.0907721 -0.00181673 0.74765 -0.664093 0.000249603 0.714415 -0.699722 0 -0.422756 0.906243 -0.00037818 0.99478 -0.102042 0.000204839 0.99743 0.0716485 -0.000190734 0.999295 0.0375394 -0.000373229 0.985433 -0.170065 -0.000575711 0.99324 -0.116075 0.00016434 0.720819 0.693123 -0.000150625 0.979256 0.202628 0.000147127 0.929803 0.368057 0.000697588 0.63678 0.771046 -6.84876e-05 0.751605 0.659613 -0.000687517 0.707107 -0.707107 0.000446747 0.420593 -0.907249 0 0.989943 -0.141467 -0.000258057 -0.138801 -0.99032 0 -0.317095 -0.948394 -0.000356661 -0.798511 -0.601981 2.02185e-05 0.0875886 -0.996157 9.68194e-06 -0.462422 -0.886658 -0.0015342 -0.357358 -0.933967 0.00117402 -0.134624 -0.990897 -2.67549e-05 0.102784 -0.994704 1.03971e-05 -0.0626371 -0.998036 -0.000302073 -0.058401 -0.998293 0.000260761 0.53758 -0.843212 0.000133518 0.671632 -0.740885 -1.25577e-05 0.535402 -0.844598 0.00039961 -0.984547 -0.17512 -9.14522e-05 -0.176079 -0.984376 -0.000274658 -0.296371 -0.955073 -4.73106e-05 -0.965712 -0.259615 4.36716e-05 -0.843487 0.53715 0 -0.766718 0.641984 0.000335261 -0.99938 -0.035219 -0.000366937 -0.845603 0.533813 0 -0.99424 0.107181 8.36956e-08 -0.985561 0.169323 0.000266129 -0.985261 -0.171056 -7.23582e-06 -0.997101 0.0760912 0.000185329 -0.981587 -0.191015 -1.4916e-07 -0.844501 -0.535553 -0.000210819 -0.615132 -0.788424 0 -0.981632 -0.190784 0 -0.508703 -0.860942 0.000297138 -0.615133 -0.788423 0 -0.725035 -0.688712 -0.000393194 -0.993112 -0.117165 -6.11868e-05 -0.562763 -0.826618 -2.6226e-05 -0.891436 -0.453146 0.000428467 -0.197757 0.980251 0 -0.967595 0.252507 0.000131866 -0.516696 0.856169 -0.000755175 0.59664 0.802509 -0.000123977 0.641623 0.76702 0 0.713874 0.700274 -8.68651e-05 0.0967603 0.995308 0 0.390964 0.920406 0.000399148 0.53758 0.843212 -0.000318137 0.17307 0.984909 1.09391e-05 -0.170026 0.98544 -0.000169254 -0.0626353 0.998036 -0.00025099 -0.135268 0.990809 0 0.189063 0.981965 -4.92205e-05 -0.695654 0.718377 -0.000151469 -0.341199 0.939991 0.000454142 -0.535638 0.844448 -0.000279201 -0.270827 0.962628 0 0 1 0 0.956253 0.29254 -0.000148751 0.177129 0.984188 0.000184995 0.955296 0.295652 -0.000154397 0.331937 0.943302 -2.09107e-05 1 0 0 0.756617 -0.653858 0 0.755617 -0.655013 -3.67152e-06 0.999955 0.00949891 -7.12119e-07 0.991218 -0.132239 -5.16572e-05 0.998037 -0.0626274 -0.000255443 0.997323 0.0731248 -9.61439e-05 0.999999 0.00167673 0.00036423 0.997068 0.0765222 -0.000216938 0.779551 0.626338 0.00021644 0.843469 0.537178 0.000306979 0.918532 0.395347 0 0.296535 -0.955022 -8.3667e-05 0.972935 -0.231078 0 0.258048 -0.966132 -0.000134765 0.978981 -0.203952 -4.71498e-05 -0.705762 -0.708449 3.5915e-05 -0.183885 -0.982948 9.60338e-05 -0.322597 -0.946536 -0.000313446 -0.319801 -0.947485 0.000628804 -0.740538 -0.672015 2.111e-05 -0.636875 -0.770967 -0.000162196 -0.172309 -0.985043 -1.803e-06 0.17004 -0.985437 -0.000229987 0.109236 -0.994016 1.17296e-05 0.0575787 -0.998341 -0.000284722 -0.173377 -0.984856 -4.75138e-06 0.745303 -0.666726 -2.41657e-05 0.344964 -0.938616 0.000504834 0.31969 -0.947522 0.000189732 0.608267 -0.793733 -0.000106696 -0.978098 -0.208145 -0.000217397 -0.601381 -0.798962 0.000634133 -0.132066 -0.991241 -0.000222151 -0.940405 0.340057 0.000355174 -0.766723 0.641979 -0.000179659 -0.920369 0.391051 -0.000427046 -0.933312 0.359067 -0.000375934 -0.988576 0.150725 8.77952e-06 -0.998057 -0.0623057 -0.0002746 -0.988417 -0.15176 -3.39001e-05 -0.998532 0.0541604 0.000589398 -0.932119 -0.362153 0.000569542 -0.74748 -0.664284 8.72717e-05 -0.974702 -0.223508 -0.000116727 -0.802203 -0.597051 0.000518108 -0.665958 -0.745989 2.65162e-05 -0.920033 -0.391841 -0.000567523 -0.37358 0.927598 0.000194784 -0.972978 0.230898 3.64895e-05 -0.340531 0.940233 7.55245e-05 -0.967428 0.253145 0.000132205 -0.799042 0.601275 -0.00114145 0.720448 0.693509 8.77145e-06 0.194074 0.980987 -0.00010119 0.40709 0.913388 0.000876212 0.291522 0.956564 -0.000374205 0.639549 0.76875 0.000478916 0.790193 0.612859 -1.03192e-05 0.100193 0.994968 0 0.624356 0.781139 -0.000580427 0.161472 0.986877 -2.19091e-06 -0.0594632 0.99823 0.000366398 -0.062645 0.998036 -0.000250997 -0.135279 0.990807 0 -0.0999642 0.994991 1.03212e-05 -0.231005 0.972952 -0.000204599 -0.13263 0.991166 -0.00013852 -0.833865 0.551968 -3.85402e-05 -0.597047 0.802206 0.000334857 0.342222 0.939619 0.000357419 0.516473 0.856303 0.000781063 0.983388 0.181515 -0.000189583 0.798158 -0.602448 -9.98475e-05 0.843252 -0.537519 -0.000265712 0.997783 -0.0665552 0.00011103 0.995115 -0.0987262 0.000204694 0.996043 0.0888705 -5.18162e-05 0.999992 -0.00389431 -0.000285399 0.995132 0.0985517 -8.97792e-05 0.990481 -0.137649 5.79579e-05 0.747526 0.664233 -0.000136354 0.876317 0.481736 -0.000237852 0.801827 0.597555 -0.000624118 0.21695 -0.976183 -0.000113281 0.985551 -0.16938 0.00017691 0.516473 -0.856303 -0.000831687 -0.841599 -0.540104 -1.8528e-05 -0.335467 -0.942052 0.000175166 -0.597031 -0.802218 -0.000563635 -0.338679 -0.940902 0.000186937 -0.650986 -0.75909 -0.000191486 -0.399694 -0.916649 -0.000605708 -0.178142 -0.984005 -2.69991e-05 0.0914396 -0.995811 -4.89382e-05 0.0561456 -0.998423 -0.000250962 -0.0594326 -0.998232 0.000296313 0.322342 -0.946623 0.000520657 0.741467 -0.67099 -2.66913e-05 0.319714 -0.947514 0.000189754 0.608267 -0.793733 -0.000106659 -0.982224 -0.187712 -9.80237e-05 -0.157874 -0.987459 -0.000245028 -0.966293 -0.257445 1.91948e-05 -0.231826 -0.972757 -0.000111253 -0.979303 0.202398 0.000105693 -0.766723 0.641979 -0.000359358 -0.563286 0.826262 0 -0.920369 0.391051 0 -0.995009 0.0997853 -0.000252219 -0.980401 0.197014 -1.17547e-05 -0.994835 -0.101509 -5.71235e-05 -0.998057 -0.0623057 -0.000260513 -0.998111 0.0614411 0.000303155 -0.995351 0.0963164 0 0.724628 0.68914 2.8156e-05 -0.999955 0.00949097 0.000155913 -0.432876 -0.901447 0.00326707 -0.726332 -0.687344 0 -0.515987 -0.856597 0 0.497784 0.867301 0.000155355 -0.726451 -0.687218 -2.95767e-05 -0.999955 0.00949647 -1.63673e-05 -0.862183 -0.506597 -0.000183423 0.999955 -0.00948762 -0.0002609 -0.968983 -0.247129 7.16776e-05 -0.647529 -0.762041 -6.27985e-05 -0.744936 -0.667136 -0.000443964 -0.865588 -0.500755 0.000940661 -0.301127 0.953584 0.000264917 -0.885433 0.464767 -0.000828911 -0.979768 0.200138 -0.000247196 0.512241 0.858842 0.000442641 0.744011 0.668167 9.67613e-05 0.110984 0.993822 -3.68003e-05 0.537596 0.843202 -0.00014011 0.173059 0.984912 1.0926e-05 -0.170039 0.985437 -0.000169376 -0.0624264 0.99805 -0.000250759 -0.131713 0.991288 1.7209e-05 0.189077 0.981962 -4.93289e-05 -0.0999866 0.994989 0.000251838 -0.390283 0.920695 0 -0.179548 0.983749 0 -0.537167 0.843476 0.000549887 -0.833866 0.551967 0 0.991756 0.128138 0.00019019 0.96846 0.24917 -1.414e-05 0.279882 0.960035 0 0.27054 0.962709 1.7305e-05 0.945524 -0.325553 0.00017002 0.801819 -0.597567 -0.000215603 0.99646 -0.084071 -3.39197e-05 0.997563 -0.069768 0 0.748323 -0.663334 -0.000155863 0.57593 -0.817499 0.000213611 0.997563 -0.069768 0 0.752111 -0.659033 -0.00190177 0.600732 -0.799451 0 0.987291 -0.158922 -2.42015e-05 0.980621 0.195915 -0.000103532 0.987393 0.158286 2.29522e-05 0.999992 0.00382734 -0.000649508 0.990532 -0.137281 5.77796e-05 0.77023 0.637767 0.00016071 0.947389 0.320086 -0.000167165 0.785604 0.618729 0.000785365 0.927864 0.372919 -0.000322868 0.637747 0.770246 -0.000112118 0.258048 -0.966132 -0.000134765 0.986295 -0.164993 8.61675e-05 0.581212 -0.813752 0.0003214 0.856307 -0.516465 0.00153342 0.972935 -0.231079 -9.44791e-05 -0.714838 -0.69929 6.9055e-05 -0.346891 -0.937905 0.000666994 -0.191861 -0.981422 0.000100199 -0.321586 -0.94688 -0.000326404 -0.744808 -0.667278 5.19176e-05 -0.170407 -0.985374 -0.000680473 -0.145329 -0.989383 2.57329e-05 0.145259 -0.989394 -2.39114e-05 0.0565406 -0.9984 -0.000411359 -0.173211 -0.984885 -8.00775e-05 0.74529 -0.666741 -2.41431e-05 0.344894 -0.938642 0.000504909 0.319714 -0.947514 0.000166698 0.536755 -0.843738 -0.000144054 -0.97134 -0.237692 -0.000124135 -0.968584 -0.248687 -0.000103212 -0.16513 -0.986272 -8.60984e-05 -0.262694 -0.964879 7.2509e-05 -0.941781 0.336226 0.000175594 -0.785854 0.618412 -0.000250871 -0.90101 0.433798 -0.000570751 -0.985081 0.172089 2.08513e-06 -1 -0.000198068 -0.000613919 -0.995413 -0.0956753 -6.83509e-05 -0.998518 0.0544311 0.000323441 -0.980559 -0.196227 0 -0.683019 -0.730401 0 -0.98088 -0.194615 1.21041e-06 -0.562918 -0.826512 0 -0.683412 -0.730033 -0.00050355 -0.475719 -0.879597 0.000283812 -0.562918 -0.826513 0 -0.843454 -0.537202 0 -0.905988 -0.423304 -0.000221071 -0.403353 0.915044 0.000210308 -0.972977 0.2309 0.000161166 -0.340531 0.940233 8.43791e-05 -0.97856 0.205963 0.000107564 0.801846 0.59753 -1.91929e-05 0.110985 0.993822 -5.78673e-05 0.500637 0.865657 0.000496866 0.506359 0.862323 -0.00011319 0.0670218 0.997751 0.000223507 0.0927009 0.995694 -0.00021311 -0.170039 0.985437 -0.000169265 0.0633098 0.997994 -0.000302652 -0.123916 0.992293 5.51573e-05 0.0692286 0.997601 -9.09354e-05 -0.537254 0.84342 6.97926e-05 -0.558055 0.829804 0.000291391 -0.641989 0.766714 4.18636e-05 0.970721 0.240211 -0.00012545 0.153811 0.9881 2.83952e-05 0.98363 0.180199 1.57571e-05 0.215947 0.976405 -0.000112758 0.612064 -0.790808 -4.08566e-05 0.987131 -0.159913 4.09969e-06 0.761943 -0.647645 -0.0003401 0.920378 -0.391031 1.80802e-05 0.929744 -0.368205 0 0.988979 -0.148057 1.85719e-05 0.980621 0.195915 -0.000103532 0.986271 0.165132 0 0.99856 0.0536388 -0.000430653 0.990481 -0.137651 5.79592e-05 0.999997 0.00238013 0.000165821 0.702945 0.711244 -0.000161721 0.748117 0.663567 -0.000222817 0.914878 0.403729 0.000182199 0.214463 -0.976732 0.000112004 0.992346 -0.123492 0.000108482 0.389524 -0.921016 -9.58749e-05 0.960206 -0.279293 -0.000284154 0 -1 0 -0.225145 -0.974325 0.000117561 -0.539622 -0.841907 -0.000253925 -0.694453 -0.719538 -0.000174537 -0.699897 -0.714244 -0.000160858 -0.174906 -0.984585 -3.0167e-05 0.170159 -0.985417 -0.000230545 0.109239 -0.994016 1.16372e-05 0.0624528 -0.998048 -0.000256835 -0.167053 -0.985948 -8.55603e-06 0.740649 -0.671892 -0.00010791 0.18209 -0.983282 0.000366019 0.319714 -0.947514 0.000189754 0.674304 -0.738454 -0.000183804 0.0728737 -0.997341 -3.79963e-05 -0.992334 -0.123587 -6.45374e-05 -0.262644 -0.964893 -0.000560776 -0.472645 -0.881253 0.000246437 -0.856293 -0.516488 -0.00181392 -0.968579 -0.248706 0.000208695 -0.941781 0.336226 0.000175578 -0.785628 0.6187 -0.000251376 -0.673299 0.73937 -6.29745e-07 -0.993958 0.109766 1.95801e-06 -0.988876 -0.148744 -3.42653e-05 -1 -0.000217031 -0.000524756 -0.990359 -0.138524 1.17985e-07 -0.983887 0.178788 -0.000290803 -0.66683 -0.74521 -0.000176185 -0.981508 -0.191419 0 -0.714442 -0.699694 0 -0.844553 -0.535472 0.000227508 -0.714442 -0.699694 0 -0.401123 -0.916024 -0.000361794 -0.98109 -0.193551 1.20414e-06 -0.422756 -0.906243 9.93405e-05 -0.994818 -0.101672 -5.30981e-05 -0.945936 -0.324354 0.00042406 -0.742576 -0.669761 -7.06454e-05 -0.938182 -0.34614 -0.000992336 -0.0235011 0.999724 -0.000126771 -0.437433 0.899248 -0.00209097 -0.946019 0.324113 0.000169268 -0.766719 0.641983 -0.000336077 -0.220518 0.975383 0.000231073 0.71858 0.695445 -0.000146053 0.407134 0.913368 0.000286606 0.754932 0.655803 -0.000110558 0.111885 0.993721 0 0.624269 0.78121 -0.000498756 0.390964 0.920406 0.000267349 0.173059 0.984912 1.0926e-05 -0.170039 0.985437 -0.000169376 -0.0626271 0.998037 -0.000250977 -0.135256 0.990811 0 0.189077 0.981962 -4.93289e-05 0.00574523 0.999983 0.000160018 -0.505087 0.863069 -0.000187397 -0.118083 0.993004 -6.1669e-05 -0.822002 0.569484 -3.61594e-05 -0.500984 0.865456 0.000503528 0.945903 0.32445 -0.000314923 0.882061 0.471136 -0.000682379 0.291406 0.956599 0.000152187 0.766369 -0.6424 3.84243e-05 0.755973 -0.654603 0 0.994983 -0.100043 0.000162326 0.988276 -0.152675 8.418e-07 0.997668 0.0682527 -4.18433e-05 0.998067 -0.0621514 -0.000395336 0.996389 0.0849097 -0.000115998 0.990487 -0.137606 5.79373e-05 0.970143 0.242533 8.26354e-07 0.621893 0.783102 -5.92187e-05 0.7286 0.684939 0.000210135 0.671129 0.741341 -0.000237686 0.945158 0.326613 0 0.891176 0.453657 -0.000244569 0.966499 -0.256671 4.47853e-05 0.972937 -0.231071 0 0.283704 -0.958912 0.000148164 0.358312 -0.933602 4.90887e-05 -0.81108 -0.584935 -2.5813e-05 -0.443588 -0.896231 0.000412037 -0.115538 -0.993303 -6.03395e-05 0.00214452 -0.999998 5.68429e-06 -0.294945 -0.955514 -0.000454216 -0.15824 -0.987401 -2.34566e-05 -0.062644 -0.998036 -0.000392709 0.14995 -0.988694 1.26554e-05 -0.0615172 -0.998106 0.00034096 0.74556 -0.666438 -0.000101961 0.506362 -0.862321 0.000132519 0.319714 -0.947514 0.000189754 0.674314 -0.738444 -0.000183817 0.0728737 -0.997341 -3.79963e-05 -0.799048 -0.601266 -0.00065399 -0.2627 -0.964878 0.000136971 -0.968583 -0.248689 0 -0.905988 0.423304 0 -0.928292 0.371851 -0.000121295 -0.682618 0.730775 1.08223e-05 0.235601 -0.971846 0.00264471 -0.966599 0.256291 -0.000750606 -0.964714 0.263299 -2.33536e-05 -0.998765 -0.0496787 -0.000325719 -0.99977 0.0214322 -0.000129016 -0.998823 0.0484992 0.000344219 -0.999087 0.0427278 0.000375144 -0.997563 -0.069768 0 -0.99819 0.0601411 0.000104917 -0.620969 -0.783835 0.000120753 -0.987763 -0.155964 -0.000568046 0.999085 -0.042773 -0.000123207 -0.924647 -0.380823 0.00111229 0.977131 0.21264 0 -0.591955 -0.805971 0.000150164 -0.714442 -0.699694 0 -0.994354 -0.10611 -3.58718e-05 -0.515868 -0.856668 5.49755e-05 -0.945939 -0.324345 0 -0.905988 -0.423304 -0.000190898 -0.403353 0.915044 0.000210308 -0.952762 0.303718 0.000160343 -0.340531 0.940233 8.43791e-05 -0.978559 0.205965 0 0.110984 0.993822 -5.78671e-05 0.557718 0.83003 0.000581652 0.476277 0.879295 0.000728361 0.162022 0.986787 -3.12616e-06 -0.00215518 0.999998 0.000272055 0.0638829 0.997957 -0.000303738 -0.0570845 0.998369 -7.33027e-05 -0.191265 0.981538 8.00085e-05 -0.675803 0.737082 -0.000213922 0.989475 0.144706 0 0.264901 0.964276 -0.000348687 0.975557 0.219748 -0.000164805 0.128308 0.991734 3.64024e-05 0.755969 -0.654607 0.000141229 0.801819 -0.597567 0 0.74767 -0.66407 0.000135291 0.988702 -0.149895 -2.22956e-05 0.997486 0.0708661 -0.000193263 0.999994 0.00340875 -0.000413755 0.999274 -0.0381037 0.000582232 0.751692 0.659514 0.000166651 0.661976 0.749525 -3.71299e-05 0.949758 0.312986 0 0.946411 0.322964 -1.86263e-05 0.972185 -0.234215 0 0.972937 -0.231071 5.13608e-06 0.421838 -0.906671 8.8283e-05 0.358313 -0.933602 0 -0.74934 -0.662186 2.68968e-05 -0.163117 -0.986607 0 -0.298531 -0.9544 -0.000509906 -0.364764 -0.9311 0.000854495 -0.149653 -0.988738 -0.000629707 -0.724129 -0.689665 3.86465e-05 -0.157191 -0.987568 -2.75372e-05 0.000417809 -1 -0.000633104 0.139999 -0.990152 -2.488e-05 -0.170941 -0.985281 -7.96932e-05 0.743418 -0.668828 -2.5393e-05 0.626328 -0.77956 0.000154549 0.319714 -0.947514 0.000166698 0.536755 -0.843738 -0.000144054 -0.95516 -0.296091 0 -0.262917 -0.964819 -7.38815e-05 -0.235065 -0.97198 -0.000122563 -0.968357 -0.249568 -8.06223e-05 -0.941782 0.336223 0 -0.946855 0.32166 2.78123e-05 -0.681103 0.732188 -1.61942e-05 -0.84231 0.538993 -0.000396799 -0.991545 0.129764 -6.67285e-05 -0.994701 -0.102813 -2.33762e-05 -0.711173 -0.703013 -0.00236618 -0.998192 0.0601128 0.000159615 -0.999999 -0.0012407 0.000752314 -0.998065 -0.0621782 -0.000223937 -0.946497 -0.322713 0.000467851 -0.66774 -0.744394 -2.57392e-05 -0.945936 -0.324353 0 -0.905984 -0.423313 -0.000190895 -0.297903 0.954596 -0.000155326 -0.221131 0.975244 0.000191852 -0.936285 0.351243 0 -0.973403 0.2291 0.00043338 -0.707233 0.706979 0.0013323 0.537656 0.843165 0.000280333 0.536754 0.843739 0.000278288 0.367842 0.929888 0 0.612239 0.790673 0.000204309 0.173043 0.984914 1.09875e-05 -0.170038 0.985438 -0.000169369 -0.0626442 0.998036 -0.000250919 -0.135256 0.990811 0 0.189076 0.981963 -4.93271e-05 0.00894609 0.99996 0.000157258 -0.382905 0.923788 -0.000100686 -0.633624 0.773641 0.000199855 -0.729998 0.68345 -4.73951e-05 -0.0668346 0.997764 -6.98024e-05 0.98648 0.16388 0 0.98249 0.186316 -4.54684e-05 0.377597 0.92597 0.000138508 0.276663 0.960967 0.000288948 0.589949 -0.807441 -3.96734e-06 0.988094 -0.153854 -8.03504e-05 0.75593 -0.654653 0.00037493 0.999969 0.00784037 -0.000128482 0.997639 0.0686768 1.22982e-06 0.985028 -0.172393 -1.2466e-06 0.998046 -0.0624757 -0.000370184 0.999707 0.0242068 -0.000118353 0.990545 -0.137186 0.00010124 0.682636 0.730759 1.14727e-06 0.843059 0.537821 0.000516712 0.784308 0.620372 -0.000473338 0.970045 0.242927 -6.18723e-05 0.702469 0.711714 -2.96996e-05 0.189652 -0.981851 -0.000198074 0.988579 -0.150703 -0.000115544 0.856308 -0.516466 0.000753278 -0.137668 -0.990478 0.000143782 -0.634051 -0.773291 -0.000354174 -0.785966 -0.618269 -3.90245e-05 -0.0844448 -0.996428 0 -0.376925 -0.926244 0.000270529 -0.68245 -0.730932 -0.000601175 -0.191583 -0.981476 0 0 -1 0.000441818 0.112197 -0.993686 0 0 -1 -0.000580158 0.669069 -0.743201 -7.20709e-05 0.626328 -0.77956 0 0.319714 -0.947514 0.00021905 0.621076 -0.78375 -9.96029e-05 -0.95516 -0.296091 0 -0.175002 -0.984568 -0.000226069 -0.96649 -0.256704 -6.83336e-05 -0.209808 -0.977743 -0.00016633 -0.590095 0.807334 0 -0.843486 0.537149 0.00156743 -0.843486 0.53715 -0.00074555 -0.98114 0.193297 0 -0.975638 0.219388 0.000491835 -0.758736 0.651399 0 -0.997495 -0.0707411 -9.5523e-06 -0.968732 0.24811 -0.000403317 -0.990633 0.136551 1.89858e-05 -0.999711 0.0240471 -0.000444159 -0.991727 -0.128363 -1.77202e-05 -0.999791 0.0204586 0.000421875 -0.779545 -0.626346 -0.000158617 -0.987436 -0.158022 -8.25269e-05 -0.709149 -0.705059 -4.07757e-05 -0.843453 -0.537202 0.000388991 -0.843666 -0.536867 -0.00111263 -0.265127 0.964213 0.00048293 -0.982299 0.187322 -0.000149548 -0.156669 0.987651 -8.63646e-05 -0.967428 0.253145 0.000132205 -0.799042 0.601275 -0.00114145 0.254775 0.967 -0.000282232 0.630137 0.776484 8.6465e-05 0.743247 0.669017 1.94963e-05 0.626328 0.77956 -0.000160136 0.161272 0.98691 -2.41662e-06 -0.170038 0.985438 -0.000169258 -0.0621207 0.998069 -0.000250429 -0.13156 0.991308 1.80639e-05 0.173377 0.984856 -5.47768e-05 0.00528022 0.999986 0.000173513 -0.747269 0.664521 -0.000180262 -0.728229 0.685334 -0.000211947 -0.449331 0.893365 8.8806e-05 0.99738 0.0723368 3.77779e-05 0.353263 0.935524 0.000276943 0.136815 0.990597 -0.000198407 0.94541 0.325882 -0.000263165 0.813539 -0.58151 0.000433008 0.94544 -0.325797 -1.97036e-05 0.536147 -0.844125 -4.01385e-06 0.999969 0.00782682 0.000158226 0.971465 -0.237184 -1.12782e-06 0.993129 -0.117021 0.000213407 0.999992 -0.00390624 -0.000203555 0.986975 0.160871 2.18627e-05 0.999858 0.0168532 0.000751214 0.924071 0.382221 -0.000283289 0.597794 0.801649 -3.67081e-05 0.99462 0.103593 -0.000108198 0.801823 0.597561 0.000315864 0.203347 -0.979107 -0.000212377 0.983711 -0.179756 0.000187746 0.421235 -0.906951 7.97933e-05 0.942124 -0.335264 1.24532e-05 0 -1 0 -0.835449 -0.549567 -1.14228e-05 -0.400699 -0.91621 0 -0.63565 -0.771977 -0.000842827 -0.630771 -0.775969 0.000556296 -0.0685726 -0.997646 0.000224773 -0.390573 -0.920572 -1.58887e-05 -0.145365 -0.989378 -6.05231e-06 0.0594831 -0.998229 0.000348466 -0.0584286 -0.998292 -0.000384843 0.156719 -0.987643 2.57179e-05 0.35406 -0.935222 -0.000526829 0.18778 -0.982211 -9.79082e-05 0.409322 -0.91239 0.000493358 0.719231 -0.694771 3.73155e-05 0.468049 -0.883702 -0.00130119 -0.261043 -0.965327 0.000136108 -0.799048 -0.601266 -0.000715428 -0.980059 -0.198705 0 -0.54801 0.836472 -7.41263e-05 -0.830095 0.557621 0.00157249 -0.982762 0.184877 -0.000453476 -0.910608 0.41327 0 -0.931426 0.36393 0.000509578 -0.999998 0.00179846 8.82912e-06 -0.987169 0.159679 2.45064e-05 -0.998371 0.0570579 -0.000288564 -0.990347 -0.138611 6.45902e-06 -0.998564 0.053562 0.000587609 -0.747674 -0.664066 0.000470025 -0.971864 -0.235544 -6.87756e-05 -0.613065 -0.790033 0 -0.981512 -0.191401 0 -0.613065 -0.790033 0 -0.997898 0.0647997 -0.000189892 -0.635563 -0.772049 5.95284e-05 -0.499104 -0.866542 -2.24578e-05 -0.635782 -0.771869 -6.52298e-05 -0.87378 -0.486321 -0.000817706 -0.969967 -0.243236 0 -0.905985 -0.423308 0.000550623 -0.234493 0.972118 0 -0.969388 0.245532 6.44974e-05 -0.226337 0.974049 -1.98597e-05 -0.978561 0.205959 0 0.717557 0.6965 -9.78147e-05 0.601105 0.799169 0.00080943 0.59664 0.802509 -0.000359048 0.342285 0.939596 0 0.53758 0.843213 6.4851e-05 0.17307 0.984909 1.09391e-05 -0.0822814 0.996609 -0.000141297 -0.0626353 0.998036 -0.00025099 -0.086925 0.996215 -0.000167331 0.189063 0.981965 -4.92205e-05 -0.345585 0.938387 0.00051306 -0.26339 0.964689 0.000390041 -0.824981 0.565161 -4.74194e-05 -0.191663 0.981461 -0.000100096 -0.32704 0.94501 -0.000381608 0.982059 0.188576 9.14167e-05 0.799065 0.601243 -0.00120827 0.432962 0.901412 0.000226114 0.29281 0.956171 -0.00033665 0.98787 0.155282 -1.3087e-05 0.708024 -0.706188 -6.02989e-07 0.771055 -0.636769 0.000178001 0.997722 -0.0674608 -0.000180973 1 0.000794403 -8.5165e-07 0.991254 -0.13197 4.94377e-05 0.997997 -0.0632575 -0.000177775 0.866721 0.498794 -0.000538852 0.746356 0.665547 -0.000157352 0.96862 0.248548 0.000259596 0.755652 0.654973 -0.000321139 0.983944 -0.178477 -0.00018641 0.360844 -0.932626 0.000907577 0.310246 -0.950656 0.000162026 0.939923 -0.341386 -0.000950046 -0.842312 -0.538991 -3.62009e-06 -0.359924 -0.932982 0.000265102 -0.138514 -0.99036 -7.23389e-05 -0.425222 -0.905089 0.000508876 -0.822894 -0.568196 -9.26049e-05 -0.24485 -0.969561 -0.000761712 -0.169954 -0.985452 -0.000579306 -0.157367 -0.98754 -2.69036e-05 -0.491655 -0.870789 0.00131458 0.158918 -0.987292 -2.13867e-05 0.356858 -0.934158 0.000762189 -0.171293 -0.98522 -7.97524e-05 0.725963 -0.687734 -7.80786e-05 0.53758 -0.843213 0.000135391 0.22529 -0.974292 0 0.367222 -0.930133 0.000378465 0.486159 -0.87387 -0.000830096 0.737693 -0.675136 -6.82752e-05 -0.977638 -0.210294 -0.000109821 -0.248403 -0.968657 0 -0.961865 -0.273525 -0.000253475 -0.188483 -0.982076 0.000110997 -0.94178 0.33623 0.000175588 -0.805042 0.593218 -0.000209603 -0.823107 0.567887 -0.00024892 -0.993796 0.111215 -4.44487e-05 -0.999951 0.00992992 -0.000179494 -0.99436 -0.106055 0.00019229 -0.999997 -0.00243459 0.000658066 -0.946497 -0.322713 0.000467848 -0.843454 -0.537202 0.000245024 -0.887671 -0.460479 0.000480948 -0.234493 0.972118 0 -0.516696 0.856169 0.000714381 -0.987818 0.155615 -0.000162533 0.86077 0.508994 7.76025e-05 0.633374 0.773845 -0.000480778 0.527923 0.849292 0.000550345 0.407415 0.913243 0 0.624005 0.781421 -0.000206262 0.38028 0.924871 0 0.17307 0.984909 1.09391e-05 -0.170026 0.98544 -0.000169254 -0.0626353 0.998036 -0.00025099 -0.135268 0.990809 0 0.189063 0.981965 -4.92205e-05 0.00473035 0.999989 0.000160933 -0.69429 0.719696 -0.000327171 -0.142853 0.989744 4.43489e-05 -0.665589 0.746319 -0.00038546 0.999904 0.0138896 -0.00011037 0.996716 0.0809792 8.59193e-06 0.501244 0.865306 -0.000744399 0.260511 0.965471 -2.6235e-05 0.706722 0 0.707491 0.706722 0 0.707491 0.133829 0 0.991004 0.133829 0 0.991004 0 -1 0 0 -1 0 0 -1 0 0 -1 0 8.93336e-06 -1 0 0 -1 -2.20758e-06 -4.38304e-06 -1 -2.2076e-06 0 -1 0 -6.89536e-06 -1 1.24002e-06 0.000611576 -1 0 0.0189516 -0.99978 0.00902177 0.000611576 -1 0 0.000611576 -1 0 0 -1 0 0.0359913 -0.998706 0.0359413 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.997344 0.0728323 -0.00403397 -0.997493 0.0706498 0 -0.997626 0.0688687 -0.0684274 -0.997473 -0.0191272 -0.00232918 -0.999997 0.000586684 -0.00745976 -0.999938 0.00825934 -0.00982588 -0.99995 -0.00196534 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.00673937 -0.999976 0.00169855 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999921 0.0125967 -0.0160288 -0.99986 0.00481537 0 -0.999975 -0.00702532 0 -1 0 0 -1 0 0.00432116 -0.999981 -0.00431207 0.00669518 -0.999978 0 -0.000524939 -0.999954 0.00962341 -0.00399602 -0.99999 -0.0020724 -0.00249999 -0.999997 0 -0.000946695 -0.999993 -0.00375259 0.000943304 -0.999997 -0.00222348 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0295558 -0.999126 -0.0295549 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.00364177 -0.999988 0.00329884 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.00537718 -0.999986 0 -0.00418582 -0.999991 0.00101532 -0.00393769 -0.999987 -0.00315345 -0.00474954 -0.999989 0 -0.00175687 -0.99999 0.00419232 0 -1 0 -0.00373158 -0.999986 -0.00374215 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.700303 -0.138384 0.700303 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999966 -0.00826179 0 -0.999966 -0.00826179 -0.0494892 -0.997862 -0.0426942 0 -0.998257 -0.0590256 0.0634395 -0.99791 0.0122839 -0.00366613 -0.999993 0.000923575 -0.00340563 -0.999994 -0.000683517 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.00401707 -0.999991 -0.00101138 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.998673 -0.0515006 -0.030491 -0.999424 0.01492 0 -0.998673 -0.0515006 0 -0.998673 -0.0515006 0 -1 0 0 -1 0 0.0230743 -0.999466 -0.0231562 0.0290857 -0.999576 -0.000977028 0.030389 -0.999538 0 0.02612 -0.999401 0.0226914 0.00712852 -0.999975 0 0.00712852 -0.999975 0 0.00169419 -0.999976 0.00671611 -0.00394598 -0.999991 0.00179228 -0.000919307 -0.999997 0.00224102 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0720337 -0.994797 0.0720358 0 -1 0 0 -1 0 0 -1 0 0.0066649 -0.999629 -0.0264228 -0.001455 -0.999796 -0.020168 -0.00274864 -0.999789 -0.0203537 0.1607 -0.978687 -0.127856 0.0616882 -0.994684 0.0824469 -0.0456986 -0.98876 0.142357 0.0597882 -0.997625 -0.0341929 0.00318847 -0.999985 0.00441982 -0.0170293 -0.999407 0.0299169 0.00372393 -0.999621 0.0272751 0.021312 -0.999767 0.00352018 0.0165598 -0.999507 -0.0266684 -0.00635278 -0.99998 -0.000470244 -0.00964382 -0.99988 -0.0121223 -0.0149242 -0.999887 0.00196991 -0.0147701 -0.999888 0.00248098 0.00811975 -0.999923 0.00941646 0.0122143 -0.999894 0.00796821 0.00223608 -0.999997 -0.000447252 0.0159383 -0.999555 0.0252263 0.0182831 -0.99973 0.0143521 -0.010522 -0.999378 -0.0336649 -0.0268262 -0.999087 -0.0332421 0.0105905 -0.999944 0.000573917 0.00230406 -0.999985 -0.00496595 0 -1 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -0.707698 0 0.706515 -0.707698 0 0.706515 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.706721 0 -0.707492 -0.706721 0 -0.707492 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.90115 1.63284e-05 0.433508 -0.301745 0 0.953389 -0.252638 -0.000183441 0.967561 -0.902573 0 0.430537 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0.707589 0 0.706624 0.707589 0 0.706624 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.707681 0 0.706532 -0.707681 0 0.706532 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0.707584 0 0.70663 0.707584 0 0.70663 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.707681 0 0.706532 -0.707681 0 0.706532 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 0.926847 0 0.375439 0.366483 -0.000487957 0.930425 0.459948 0 0.887946 0.932689 -5.86264e-05 0.360682 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0.706618 0 -0.707596 0.706618 0 -0.707596 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.707595 0 0.706618 0.707595 0 0.706618 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0.706618 0 -0.707596 0.706618 0 -0.707596 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.707291 0 0.706923 0.707291 0 0.706923 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0.398111 -0.00288468 -0.917333 0.946098 0 -0.323881 0.956822 0.00370085 -0.290652 0.452412 0 -0.891809 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.707199 0 -0.707015 -0.707199 0 -0.707015 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.707101 0 -0.707113 0.707101 0 -0.707113 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.707199 0 -0.707015 -0.707199 0 -0.707015 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.707107 0 -0.707107 0.707107 0 -0.707107 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 -0.913805 0 -0.406154 -0.314259 0 -0.949337 -0.818838 -0.000769637 -0.574024 -0.707105 -0.00253572 -0.707105 -0.434225 0.000799131 -0.900804 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -0.707394 0 0.706819 -0.707394 0 0.706819 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.706721 0 -0.707492 -0.706727 -1.17012e-07 -0.707487 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0105549 0.999944 0 0.0397202 0.998408 0.0400356 0.0528815 0.998601 0 0 1 0 0.0188942 0.999642 -0.0189613 0.0156581 0.999523 -0.0266347 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0125364 0.999843 0.0125368 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999385 -0.0350621 -0.0293801 0.999422 -0.017084 0.0206756 0.999734 -0.0102547 0 0.999699 -0.02455 -0.0322809 0.999446 -0.00812741 -0.021643 0.999753 0.00500655 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0274173 0.9996 -0.00690699 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999852 -0.0172246 -0.00485492 0.999894 -0.0137191 0 0.999802 -0.0199202 0.0118393 0.999864 -0.0114411 0 1 0 0 1 0 -0.0141939 0.999798 -0.0142341 -0.0267341 0.999643 0 -0.0231705 0.9997 0.00793354 -0.0183485 0.999832 0 -0.0200144 0.999774 0.00712768 -0.0160631 0.999871 0 -0.0135707 0.999832 0.0122929 0.0173136 0.999656 0.0196786 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.00113837 0.999999 -0.00113837 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0079084 0.999477 -0.031348 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0270999 0.999633 0 -0.0286264 0.999586 -0.00277792 -0.0296186 0.999561 0 0.000126211 1 0 -0.0282196 0.998394 0.0491287 0 1 0 9.5937e-05 1 -9.57352e-05 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.180328 0.966936 -0.180323 0 1 0 0 1 0 0 1 0 0 1 -0.000200986 -0.018241 0.999817 0.00577083 0 0.999766 0.0216464 0 0.999766 0.0216464 0.0227568 0.999725 0.00573549 0.00208977 0.999843 -0.0176172 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0036276 0.999993 0.000913736 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999975 0.007134 -0.00397464 0.999992 0.000783827 0 0.999975 0.007134 0 0.999975 0.007134 0 1 0 0 1 0 0.00235594 0.999994 0.00235267 -0.0056578 0.998756 0.0495361 0.0518957 0.998653 0 0.0259828 0.99845 -0.0492284 -0.00898024 0.99996 0 0.0188101 0.998921 0.0424712 0.00612106 0.999687 -0.0242668 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.132102 0.982394 -0.132102 0 1 0 0 1 0 0 1 0 -0.0462093 0.997413 0.0550573 -0.0778471 0.996448 -0.0321269 -0.0729961 0.997329 -0.0024904 -0.043454 0.997553 -0.0547686 0.0299726 0.997996 -0.0557332 -0.003117 0.999729 -0.0230814 0.0149612 0.999866 0.00670216 0.0189164 0.999814 0.00379657 0.0146966 0.999862 0.00771328 0.0067705 0.999891 0.0130913 0.0195563 0.999651 0.0177783 0.00350981 0.999897 0.0139136 -0.00853054 0.999961 0.00209446 -0.00331209 0.999962 0.00807399 0.0161878 0.999865 0.00295463 -0.00249092 0.999853 -0.0169613 -0.00144161 0.999737 0.0228737 -0.0216749 0.999754 0.00472608 0.00186559 0.999733 -0.0230465 0.00316958 0.999719 -0.0234815 -0.00512993 0.999636 -0.0264876 0.018423 0.999764 0.0115396 0.0185141 0.999637 0.0195791 0.00203127 0.999998 -0.000268102 0 1 0 0 1 0 1 0 0 0.924376 0 0.381483 0.995898 -0.000632141 0.0904826 -4.64665e-06 -1 -1.91764e-06 0.92244 -0.00269751 -0.38613 0.995872 0 -0.0907655 0.70736 0 -0.706853 0.70736 0 -0.706853 0.379526 0 -0.925181 0.379526 0 -0.925181 0.0536716 0 -0.998559 0.82804 -0.000184114 -0.560669 0.0818887 0.000200309 -0.996641 0.82412 -0.000123164 -0.566416 0.985117 0.000258104 -0.171886 0.991401 0 -0.130859 0.707433 0 -0.70678 0.707433 0 -0.70678 0.378954 0 -0.925415 0.378954 0 -0.925415 0 0 -1 -0.050479 -0.000705167 -0.998725 -0.379419 0 -0.925225 -0.707433 0 -0.70678 -0.707433 0 -0.70678 -0.980448 0 -0.196778 -0.980448 0 -0.196778 -0.238127 0.000839349 -0.971234 -0.959154 -0.000632972 -0.282883 -0.979497 0 -0.201457 -0.266755 0.000561308 -0.963764 -0.660553 0 -0.750779 -0.585053 0.00123107 -0.810994 -0.750296 0 -0.661102 -0.750296 0 -0.661102 -1 0 0 -1 0 0 -0.924376 0 0.381483 -0.924376 0 0.381483 -0.706788 0 0.707426 -0.706788 0 0.707426 -0.390554 0 0.92058 -0.133769 -0.000562956 0.991012 -0.943924 -0.000692486 0.330161 -0.189176 -0.000796131 0.981943 -0.38413 0.000437474 0.923279 -0.956888 -0.00035723 0.290457 -0.991402 -0.000274453 0.130852 -0.980578 0 0.196131 -0.70678 0 0.707433 -0.70678 0 0.707433 -0.38739 0 0.921916 -0.0918264 0.000641377 0.995775 0 0 1 0.0917961 0.000641181 0.995778 0.386918 0 0.922114 0.70678 0 0.707433 0.70678 0 0.707433 0.980578 0.000411305 0.196131 0.924376 0 0.381483 0.998043 0.000131123 0.0625264 0.961452 -0.000708789 0.274974 0.635013 0.00205764 0.772499 0.354192 0 0.935173 -0.825354 -0.00156314 0.564614 -0.114473 -0.00878614 -0.993388 0.960203 -0.00124708 0.279301 -0.963575 -0.00101934 -0.267438 0.718398 0.00105463 0.695632 0.10517 -0.000895219 0.994454 -0.839082 0.000544173 -0.544005 0.137975 -0.000556255 -0.990436 0.831683 -5.23124e-05 -0.555251 -0.135301 0.000993819 0.990804 0.800023 0.000339022 -0.59997 -0.369923 -0.00066209 -0.929062 -0.0806412 0.000958729 -0.996743 0.99801 7.02637e-06 0.0630594 -0.970076 0.000730809 0.242799 0.241899 -0.000760522 -0.970301 -0.819159 -0.00162342 0.573565 -0.969908 -0.000935078 -0.243469 0.959386 -0.00113268 0.282096 -0.480374 -0.000383549 -0.877064 -0.985267 0.000381669 0.171021 0.813345 0.000731324 -0.581781 0.990676 9.98168e-05 0.136237 -0.0367054 0.000509304 -0.999326 0.744569 -0.000245146 -0.667546 0.126305 -0.000978776 0.991991 0.376326 0.000982076 0.926487 -0.466744 0.000797742 0.884392 -0.472529 -0.000448694 -0.881315 -0.875537 0.000233899 -0.483152 -0.214081 0.00555381 -0.9768 0.43137 -0.00156622 -0.902174 0.468222 -0.00461659 0.883599 -0.99586 -0.000821446 -0.0908932 -0.510915 -0.00114607 -0.859631 -0.997428 6.32666e-05 0.0716794 0.675476 -0.000446215 0.737382 0.237584 0.000521217 0.971367 -0.668849 -0.000548009 0.743398 0.0435538 0.000427272 -0.999051 -0.701234 -0.000163102 0.712931 0.862446 0.00183512 -0.506146 0.172376 -0.000255358 0.985031 0.9993 -0.00116037 -0.0374 -0.785682 0.00103028 -0.618629 0.838337 0.000887525 0.545151 -0.999458 0.0061972 -0.0323253 0.470032 -0.00183027 0.882648 -0.999848 -0.0012322 -0.0174063 -0.992115 -0.00029525 0.125332 -0.974383 -9.56849e-05 -0.224895 0.808381 0.00111991 0.588659 0.0961115 0.000508152 0.99537 -0.560345 -0.000699552 0.828259 0.307789 -0.00106187 -0.951454 0.985732 -0.00125544 -0.168317 -0.713957 0.00063553 0.70019 0.0672357 0.000372741 -0.997737 0.879339 0.00137235 -0.476194 -0.475477 -0.000872105 -0.879728 -0.685251 0.000686722 -0.728307 0.707368 0 -0.706846 0.521623 -0.00253103 -0.853172 0.129437 0 -0.991588 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0292685 0.999572 0 0.0361833 0.999322 -0.00675206 0.0147101 0.999549 -0.0261854 -0.00313322 0.999995 0 0 1 0 -0.00168588 0.999997 0.00169187 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0589775 0.996516 0.0589792 0 1 0 0 1 0 0 1 0 0 0.999997 0.00236012 0.00402285 0.999992 -0.000697704 0.0417522 0.999121 0.00373245 0 0.99966 -0.0260872 -0.0380607 0.999229 -0.00958259 -0.0365084 0.999304 -0.00766145 -0.0378678 0.999254 0.00760015 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.00176862 0.999997 0.00195077 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999996 0.00265129 0.0919406 0.993489 -0.067275 0 0.993243 -0.116052 0 1 0 0 1 0 -0.0544774 0.997019 -0.0546317 -0.0706612 0.9975 0 -0.0456735 0.998088 0.0416374 -0.0100025 0.99995 0 -0.0100025 0.99995 0 -0.00252294 0.999947 0.0100007 -0.136869 0.982254 0.128236 0.0299646 0.988024 0.151363 0 1 0 0.000173436 1 -0.000154564 5.60394e-05 1 5.58418e-05 0 1 0.00011349 0.000132544 1 6.23719e-05 0 1 0 0 1 0 0 1 0 0.615865 0.00906929 0.787799 0 1 0 0 1 0 0 1 0 1.83691e-05 1 -2.02581e-05 -2.23588e-05 1 0 9.28973e-05 1 0.000130482 0 1 0 0 1 0 0.00559361 0.999739 0.0221709 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0633882 0.997989 0 -0.05559 0.998286 0.0183139 -0.0418717 0.999123 0 -0.0418717 0.999123 0 0 1 0 -0.0205641 0.999579 0.0204769 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0342212 0.998828 -0.0342212 0 1 0 0 1 0 0 1 0 0 1 0 0.015548 0.999359 0.0322621 0 0.999994 0.00362045 0 0.999993 0.00362045 0 0.999994 0.00362045 0.00603228 0.999957 -0.00701611 -0.0130756 0.999909 -0.00329402 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0625688 0.997916 0.015753 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.99999 0.00458994 0.0326764 0.998458 0.0448751 0 0.999108 0.0422262 -0.041103 0.999056 0.0140772 0 0.999108 0.0422262 0 1 0 0 1 0 0.0204031 0.999585 0.0203311 0.0369034 0.998863 -0.0301804 0.00405345 0.999992 0 0.0194905 0.999316 0.0314165 0.0334863 0.999439 0 0.0202533 0.999739 -0.0105781 0.0187916 0.999678 -0.0170435 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0297466 0.999194 0.0269491 -0.0269028 0.998669 0.0440026 -0.0414692 0.99883 0.0248982 0.0472597 0.998622 0.0228042 -0.0554437 0.997826 -0.0356212 0.0226456 0.995736 -0.0894226 -0.00320907 0.999712 0.0237646 -0.0298115 0.999539 0.00575211 -0.0173669 0.999257 0.0344184 -0.0138591 0.999904 -0.000546654 -0.0111786 0.999936 0.00147551 -0.0366042 0.999147 -0.0191143 -0.0272244 0.999629 0.00121544 -0.0122848 0.999404 -0.0322676 -0.0186664 0.999361 -0.0304806 -0.00500535 0.999751 -0.0217316 -0.000190561 0.999996 -0.00282905 -0.00172832 0.999997 -0.00152289 0.00610095 0.996132 -0.0876573 0.0862472 0.986701 -0.137778 -0.0336165 0.983943 0.175286 0 1 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -0.706733 0 -0.707481 -0.706733 0 -0.707481 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.707687 0 0.706526 -0.707687 0 0.706526 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.262575 0 -0.964912 -0.89102 0 -0.453963 -0.707095 0.00162872 -0.707116 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0.706623 0 -0.70759 0.706623 0 -0.70759 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.706715 0 -0.707498 -0.706715 0 -0.707498 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0.706618 0 -0.707596 0.706618 0 -0.707596 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.706715 0 -0.707498 -0.706715 0 -0.707498 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 1.27613e-05 0 -1 0 -3.31137e-07 -1 0.448512 0.000425136 -0.893777 0.92807 0 -0.372405 0.935692 9.81445e-05 -0.352817 0.304971 -0.000247032 -0.952361 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 0.707584 0 0.70663 0.707584 0 0.70663 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.706629 0 -0.707584 0.706629 0 -0.707584 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 0.707584 0 0.70663 0.707584 0 0.70663 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.706618 0 -0.707596 0.706618 0 -0.707596 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 -6.31654e-07 -2.5266e-05 0.260977 0 0.965345 0.830778 -0.00219833 0.556599 0.707107 -0.000857455 0.707107 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.707681 0 0.706532 -0.707681 0 0.706532 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.707584 0 0.70663 0.707584 0 0.70663 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.707681 0 0.706532 -0.707681 0 0.706532 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.707589 0 0.706624 0.707589 0 0.706624 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 -0.208822 0 0.977954 -0.460529 0.000775381 0.887644 -0.878086 -0.000359742 0.478504 -0.920155 0 0.391554 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -0.706721 0 -0.707492 -0.706721 0 -0.707492 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.707687 0 0.706526 -0.707687 0 0.706526 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.00017112 -1 0 0.00785236 -0.999962 0.00379205 0.00017112 -1 0 0.00017112 -1 0 0 -1 0 0.0483555 -0.997667 0.0481851 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0979407 -0.990361 -0.0979436 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.994973 0.100148 -0.0795823 -0.995106 0.0585665 0 -1 0.000513654 -0.000535485 -1 0.00013482 -0.0285566 -0.999109 0.0310896 -0.0356402 -0.999256 -0.0147084 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0153822 -0.999874 -0.0038751 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.997599 0.0692533 0.023257 -0.996382 0.0817481 0 -0.995792 0.0916434 0 -1 0 0 -1 0 -0.0401975 -0.99839 0.0400271 -0.0589899 -0.997707 -0.0331742 -0.0208707 -0.999782 0 -0.010078 -0.999695 -0.0225696 0.0373985 -0.989824 0.137296 -0.0612245 -0.998124 0 0.0377888 -0.968192 -0.24734 -0.00327492 -0.99991 -0.0129805 0.00601065 -0.999882 -0.0141622 -4.09735e-05 -1 0 3.65986e-05 -1 7.39641e-05 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -2.23329e-05 -1 4.74578e-05 0.0961669 -0.992173 -0.0796487 0 -1 0 0 -1 0 0 -1 0 1.04135e-05 -1 1.14576e-05 -1.27766e-05 -1 0 1.6962e-06 -1 -1.66391e-05 0 -1 0 -0.00407676 -0.999985 0.00369288 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0251257 -0.999684 0 0.000245648 -0.99983 0.0184521 -0.0137645 -0.999381 -0.0323739 0.0107311 -0.999942 0 0 -1 0 0.00771538 -0.99994 0.00773723 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999895 0.0144642 -0.0413601 -0.999126 -0.00608923 0 -0.99929 -0.037683 0 -0.99929 -0.0376829 0.0477833 -0.998804 0.010405 -0.00511786 -0.999986 0.0012893 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0294568 -0.999539 -0.00741639 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.99984 -0.0179018 -0.00242566 -0.999886 -0.0149041 0 -0.99955 -0.0300084 -0.0119404 -0.99971 -0.0208917 0 -0.99955 -0.0300084 0 -1 0 0 -1 0 0.0149382 -0.999776 -0.0149912 0.0258768 -0.99952 0.0170396 0.00143856 -0.999999 0 -0.000631803 -0.999788 0.0205752 -0.0185686 -0.999828 0 -0.0185686 -0.999828 0 -0.00571206 -0.999727 -0.0226454 0.0190042 -0.999819 -0.00115489 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0135728 -0.999816 0.0135732 0 -1 0 0 -1 0 0 -1 0 -0.0193358 -0.99978 0.00809391 -0.0120271 -0.999806 0.015568 -0.00865003 -0.999946 0.00574114 -0.000967136 -0.999972 0.00740901 -0.0135661 -0.999904 0.00271345 0.00346515 -0.999777 0.0208241 0.000943989 -0.999489 0.0319523 -0.0150899 -0.999745 -0.0167827 0.0853884 -0.996166 -0.019004 0.002639 -0.999942 -0.0104615 0.00756484 -0.99987 -0.0142685 -0.00334361 -0.999861 -0.0163142 0.020012 -0.999522 -0.0235521 0.015033 -0.999822 -0.0114148 -0.0388479 -0.999034 0.0205602 0.0779977 -0.995944 -0.0448507 0.00321573 -0.999985 0.00445762 -0.032787 -0.998159 0.0510246 -0.00321859 -0.999107 0.042134 0.0222492 -0.999628 -0.0157929 0.0198126 -0.99941 -0.0280587 -0.00452531 -0.999989 -0.00090824 0 -1 0 0 -1 0 1 0 0 0.750238 -0.000674952 -0.661167 0.995872 0.000634094 -0.0907621 0.750714 -0.000691889 0.660627 0.995898 0.000632134 0.0904859 0.706715 1.17292e-07 0.707499 0.200777 -0.000422178 0.979637 0.522249 -0.00251119 0.852789 0.342309 -0.000719779 0.939587 0.985771 -0.000615437 0.168095 0.515441 0.000715217 0.856925 0.924376 0 0.381483 0.988088 -0.000500728 0.153891 0.706788 0 0.707426 0.706788 0 0.707426 0.0926726 0.000647303 0.995696 0.39008 0 0.920781 0 0 1 -0.390554 0 0.92058 -0.0927032 0.000647501 0.995694 -0.706788 0 0.707426 -0.706788 0 0.707426 -0.980578 -0.000411305 0.196131 -0.991401 0 0.130859 -0.938095 0.000386653 0.346378 -0.353316 -0.000749105 0.935504 -0.980568 -0.000411403 0.196178 -0.293377 -0.00123466 0.955996 -0.390685 -0.00164417 0.920523 -0.133821 0 0.991006 -0.70678 0 0.707433 -0.70678 0 0.707433 -0.924376 0 0.381483 -0.896012 0.000146443 0.444029 -1 3.20172e-07 -2.29148e-05 -1 -4.85218e-07 3.47271e-05 -0.7332 0.000400328 -0.680014 -0.922444 -0.000184456 -0.386132 -0.707433 -5.85974e-08 -0.70678 -0.585052 0.00172689 -0.810994 -0.194196 0 -0.980963 -0.989667 0.000302679 -0.143382 -0.978901 -0.000165104 -0.204334 -0.316405 0 -0.948624 -0.315824 5.84778e-06 -0.948818 -0.75029 -0.000674797 -0.661109 -0.980448 0.000415398 -0.196778 -0.707425 5.8598e-08 -0.706788 -0.660559 -0.000692346 -0.750774 -0.379553 0 -0.92517 0 0 -1 0.0504908 -0.000705332 -0.998724 0.379088 0 -0.925361 0.707425 0 -0.706788 0.707425 0 -0.706788 0.922444 0 -0.386132 0.980448 -0.000415398 -0.196778 0.833179 -0.00375699 -0.552991 0.413815 0 -0.910361 0.970126 -0.000512133 -0.242602 0.821751 0.0011426 0.569845 -0.946465 0.00174099 -0.322801 -0.754456 0.00122349 0.65635 -0.865607 -0.000980557 -0.500723 0.703691 -0.000186124 0.710506 -0.0233998 0.000574182 -0.999726 0.023688 0.00027821 0.999719 0.998597 -0.00116417 -0.0529381 -0.994878 -0.00109029 0.101081 0.86123 0.00166018 -0.508212 0.261535 -0.00193024 -0.965192 -0.254837 -0.00169095 0.966983 -0.970105 -0.00694995 -0.242588 -0.972714 0.00156652 0.232002 0.0441645 0.000987272 -0.999024 -0.706874 -0.00022233 -0.707339 -0.77749 0.000770776 -0.628895 0.881054 0.00139039 -0.473013 -0.997689 -0.000740314 -0.0679411 -0.638816 -0.0011867 0.769359 -0.232617 -0.000742852 -0.972568 0.674166 -0.00085079 -0.738579 -0.0860169 0.000866298 0.996293 0.803535 -0.000129739 0.595257 0.0475195 -0.000119168 0.99887 0.715481 0.00117222 0.698631 0.99728 -0.00105522 0.0737027 -0.966155 -0.00657459 -0.257878 0.677721 -0.0116338 0.735227 -0.825877 0.000915694 -0.56385 0.793372 0.000521288 -0.608737 -0.997527 -0.00094488 0.0702789 -0.125278 0.000316573 -0.992122 -0.696659 0.000478906 0.717403 0.0898577 -0.00107882 0.995954 0.866865 -0.00101053 -0.498542 0.32979 0.0014691 0.944053 0.831725 0.000278053 0.555188 0.837958 0.000153737 0.545734 -0.363907 -0.00185591 -0.931433 -0.99966 -0.000110791 -0.0260768 -0.492114 -0.00139537 0.87053 -0.971644 0.00110607 0.236447 0.96648 0.00105233 0.25674 0.038809 0.00232702 0.999244 -0.709003 0.000774326 -0.705205 0.0518466 0.000615121 -0.998655 0.999696 -0.000844528 -0.02466 -0.490566 -0.0008094 -0.871404 0.813488 0.0012597 -0.581581 0.390287 -0.00132154 -0.920692 0.556089 -0.00121383 0.831122 -0.996361 -0.000928742 -0.0852338 -0.57996 -0.0025031 0.814641 0.706768 0 0.707445 0.706768 0 0.707445 0.200643 -0.000241202 0.979664 0.390495 0 0.920605 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0425167 -0.999096 0 -0.0133744 -0.999093 -0.0404214 0.0390942 -0.998981 0.0225551 0.0618396 -0.997448 -0.0356779 0.0391884 -0.999232 0 0.0408619 -0.99916 0.00304951 0 -1 0 0.0244197 -0.999405 0.0243719 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0926114 -0.991386 -0.0926097 0 -1 0 0 -1 0 0 -1 0 0 -0.999246 0.038813 -0.0169329 -0.999424 0.0294225 -0.0335367 -0.999298 0.016697 0.00279751 -0.999984 0.00486085 0 -0.999987 0.00511935 0.00317855 -0.999948 0.00971547 -0.0140514 -0.999895 0.00353931 -0.00695359 -0.99996 -0.00567924 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0432792 -0.999003 0.0109076 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999361 -0.0357426 0.0179393 -0.999354 -0.0311345 -0.0325126 -0.997871 -0.0565373 0 -0.999964 0.00853095 0.0363506 -0.999262 -0.01243 0 -1 0 0 -1 0 -0.00587749 -0.999966 0.00586513 -0.0105088 -0.999945 0 0.00597838 -0.999386 -0.0345281 0.0157151 -0.999835 0.00906673 0.0154111 -0.999842 -0.00889133 0.00247408 -0.99832 0.0578914 -0.0245749 -0.999698 0 -0.00858653 -0.999796 -0.0182723 -0.00662551 -0.999633 -0.0262628 0.00421983 -0.999779 -0.0206046 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0357867 -0.998719 -0.0357859 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.00161435 -0.999978 0.00639867 0.04076 -0.998784 -0.0277486 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.00495484 -0.999988 0 -0.0115202 -0.999912 -0.00664648 -0.00657174 -0.999974 0.00296159 -0.00766246 -0.999961 0.0044208 -0.00809714 -0.999967 0 0 -1 0 -0.0211626 -0.999551 -0.0212225 -0.0331994 -0.999315 0.016381 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.803148 -0.00120048 0.595778 4.84422e-05 -1 -9.81936e-05 -5.09289e-05 -1 0 -2.81861e-05 -1 -5.98963e-05 0 -1 0 0 -0.998989 -0.0449498 0.0223775 -0.998997 -0.0387816 -0.0201483 -0.997978 -0.0602798 -0.0318528 -0.997973 -0.0550954 0 -0.998108 -0.0614852 0.0555737 -0.998389 0.0114442 0.0117483 -0.999927 -0.00295957 -0.0017787 -0.999867 0.0162329 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.122166 -0.992033 -0.0307577 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999998 -0.00187853 0.0638019 -0.995427 -0.0710987 0.000914197 -0.999998 -0.00158311 -0.0140188 -0.999607 -0.0242768 -0.0270869 -0.999483 -0.017303 0 -0.999597 -0.0283993 0 -1 0 0 -1 0 0.0132717 -0.999823 -0.0133112 0.0183585 -0.999826 0.00320434 0.0137679 -0.999905 0 0.0128239 -0.99989 0.00739863 0.0100042 -0.999837 0.0150287 -0.00030109 -1 0.000173712 -0.000382051 -1 0 0.0256914 -0.999143 -0.0324555 0.0107516 -0.999034 0.0426163 -0.00699102 -0.999352 0.035299 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0571099 -0.996733 0.0571106 0 -1 0 0 -1 0 0 -1 0 -0.00116372 -0.999989 0.004613 -0.00609523 -0.999951 0.00775544 0.00492873 -0.99992 0.0116197 0 -0.999941 0.0108497 0.046916 -0.998887 -0.00476697 0.00666137 -0.997654 0.0681262 0.00834112 -0.999965 0 -0.000243915 -0.9997 -0.0245007 -0.00706717 -0.999971 -0.00291643 -0.00677736 -0.999391 -0.0342214 -0.0616171 -0.998029 -0.01192 -0.0263966 -0.99624 -0.0825165 -0.0186808 -0.999635 0.0195219 -0.00149589 -0.999999 0 -0.00133003 -0.999999 -0.000556702 -0.0941473 -0.995379 0.0188946 -0.0802508 -0.99631 0.0304243 -0.0825182 -0.996539 0.0100636 -0.00434918 -0.994399 0.1056 -0.017437 -0.999848 0.000682977 0.00644154 -0.998768 0.0492131 0.0022264 -0.999997 -0.000918748 0.00200788 -0.999998 0 0.0140435 -0.998231 0.0577801 -0.0466511 -0.998907 0.00286926 0.019189 -0.999809 -0.0037673 -0.0787592 -0.994923 0.0626543 0.0130696 -0.999543 -0.0272404 0 -1 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -0.707675 0 0.706538 -0.707675 0 0.706538 -1 0 0 -1 0 0 -0.866178 0 0.499735 -0.866178 0 0.499735 -0.866178 0 -0.499735 -0.866178 0 -0.499735 -1 0 0 -1 0 0 -0.706698 0 -0.707515 -0.706698 0 -0.707515 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.689052 0.000461951 0.724712 -0.489991 -0.000512211 0.871727 -0.922525 -0.000159412 0.385937 -0.357306 0.000798051 0.933987 -0.953626 0 0.300993 -0.232765 -9.3781e-05 0.972533 -0.689052 -0.00104701 0.724711 -0.291944 5.57496e-05 0.956436 -0.889379 0.000866976 0.457171 -0.920274 -0.000201471 0.391274 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0.707663 0 0.70655 0.707663 0 0.70655 0 0 1 0 0 1 0.500071 0 0.865985 0.500071 0 0.865985 -0.500076 0 0.865982 -0.500076 0 0.865982 0 0 1 0 0 1 -0.707683 0 0.70653 -0.707683 0 0.70653 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0.707586 0 0.706627 0.707586 0 0.706627 0 0 1 0 0 1 0.500512 0 0.86573 0.500512 0 0.86573 -0.49978 0 0.866152 -0.49978 0 0.866152 0 0 1 0 0 1 -0.707683 0 0.70653 -0.707683 0 0.70653 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 2.5053e-05 -3.57899e-07 1 0.329299 0.000269657 0.944226 0.963075 0 0.269233 0.650915 -0.00068969 0.75915 0.705714 -0.000258158 0.708497 0.955038 6.93483e-05 0.296484 0.384622 0.000633451 0.923074 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0.70662 0 -0.707593 0.70662 0 -0.707593 1 0 0 1 0 0 0.866178 0 -0.499735 0.866178 0 -0.499735 0.866178 0 0.499735 0.866178 0 0.499735 1 0 0 1 0 0 0.707598 0 0.706615 0.707598 0 0.706615 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 0.70662 0 -0.707593 0.70662 0 -0.707593 1 0 0 1 0 0 0.866178 0 -0.499735 0.866178 0 -0.499735 0.866178 0 0.499735 0.866178 0 0.499735 1 0 0 1 0 0 0.707294 0 0.70692 0.707294 0 0.70692 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0.956329 0 -0.292294 0.207543 0 -0.978226 0.958676 -2.05716e-05 -0.284499 0.422264 0.00043027 -0.906473 0.665654 -0.000363917 -0.74626 0.672383 0.000728663 -0.740203 0.912604 -0.000569637 -0.408843 0.316474 -0.000363524 -0.948601 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.7072 0 -0.707013 -0.7072 0 -0.707013 0 0 -1 0 0 -1 -0.498513 0 -0.866882 -0.498513 0 -0.866882 0.499244 0 -0.866462 0.499244 0 -0.866462 0 0 -1 0 0 -1 0.707104 0 -0.70711 0.707104 0 -0.70711 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.7072 0 -0.707013 -0.7072 0 -0.707013 0 0 -1 0 0 -1 -0.498808 0 -0.866713 -0.498808 0 -0.866713 0.498803 0 -0.866716 0.498803 0 -0.866716 0 0 -1 0 0 -1 0.707181 0 -0.707033 0.707181 0 -0.707033 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 -1 0 0 -1 -0.229299 0 -0.973356 -0.982892 0 -0.184185 -0.777999 -3.93134e-05 -0.628266 -0.761827 -0.000167613 -0.647781 -0.74327 0.000237222 -0.668992 -0.964712 -0.000157359 -0.263307 -0.514424 -0.000816092 -0.857536 -0.983388 -6.91642e-06 -0.181516 -0.401909 -0.000299907 -0.91568 -1 0 0 -1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -0.707371 0 0.706842 -0.707371 0 0.706842 -1 0 0 -1 0 0 -0.866178 0 0.499735 -0.866178 0 0.499735 -0.866178 0 -0.499735 -0.866178 0 -0.499735 -1 0 0 -1 0 0 -0.706698 0 -0.707515 -0.706698 0 -0.707515 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0392215 0.999231 0 0.0404152 0.999182 -0.00119887 0.0318538 0.999324 -0.0183778 -0.00622205 0.999974 -0.00358977 0.0148385 0.998893 -0.0446453 -0.00717017 0.999974 0 0 1 0 0.0489916 0.99759 -0.0491373 0.0757244 0.994879 0.0669405 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0174725 0.99973 0.0152999 1.54145e-05 1 3.12457e-05 -1.78677e-05 1 0 -9.66162e-06 1 2.05312e-05 0 1 0 0 0.992966 -0.1184 -0.0631184 0.992002 -0.109304 0.0983405 0.980474 -0.170296 -0.10372 0.992669 -0.0620591 0 0.999954 -0.00960461 -0.0178678 0.999837 0.002471 -0.0012175 0.999999 -0.000306528 -0.00123524 0.999999 0.000247903 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.000736734 1 0.000185595 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.99998 -0.0062614 -0.0458032 0.995804 -0.0792252 0.0411912 0.998792 -0.0267779 0.0265126 0.998592 -0.045948 0 0.998664 -0.0516779 0 1 0 0 1 0 -0.0224103 0.999496 -0.0224738 -0.0367235 0.998775 0.0331594 -0.00422704 0.999991 0 -0.00854939 0.999899 -0.0113831 -0.0263213 0.999538 0.0151859 -0.0137146 0.999875 -0.00791256 -0.0161655 0.999869 0 -0.0114799 0.999925 0.00428743 -0.00607425 0.999692 0.024076 0.025079 0.999676 0.00439726 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.106976 0.98849 0.106977 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0013097 0.999986 -0.00519152 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.00649694 0.999979 0 -0.00143123 0.999987 -0.00487064 -0.0416485 0.998843 0.0240288 -0.0131668 0.999731 -0.0190836 -0.0220015 0.999677 -0.0126936 -0.0257826 0.999668 0 0 1 0 -0.0121757 0.999852 0.01215 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.417456 0.807136 -0.417447 0 1 0 0 1 0 0 1 0 0.00291213 0.999853 0.0168772 0 0.999918 0.0128321 0.00689555 0.999904 0.0119909 0.00816203 0.9999 0.0115417 -0.00320454 0.999979 0.00556164 0 0.999979 0.00649229 0.00152063 0.999987 0.00477885 0.0176054 0.999841 -0.00276908 0.0010026 1 0.000252685 0.000913708 1 -0.000182743 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.00603507 0.999981 -0.00152013 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.998324 0.0578648 -0.0420271 0.999013 -0.0143919 0.0356468 0.997443 0.0619387 -0.0400319 0.996774 0.0695591 0 0.999969 0.00789546 0.0560538 0.997572 0.0413207 0 1 0 0 1 0 0.00563667 0.999968 0.00562562 0.0105235 0.999945 0 0.00831166 0.999954 -0.00479535 0.00623701 0.99995 -0.00775723 0.00326817 0.999993 0.00188554 0.00394534 0.999967 -0.00704779 -0.000282093 1 0 -0.000129772 1 0.000514416 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.12553 0.976846 -0.173245 -0.017487 0.999694 -0.0174867 0 1 0 0 1 0 0 1 0 0.00441022 0.99999 0.00088207 0.00846673 0.999962 -0.0022507 0.00767494 0.999641 0.0256776 0.0271156 0.999575 0.0107384 0.00148923 0.999973 0.00727137 -0.00507149 0.999979 0.00413021 -0.000583288 1 -0.000244144 -0.00366373 0.999984 0.00429949 -0.00507219 0.999987 0 0.00976906 0.977428 -0.211045 -0.209059 0.972571 0.101985 -0.0236905 0.999705 -0.0054476 -0.00117131 0.999982 -0.0059144 0.0110426 0.999936 0.00241174 0.0252477 0.99466 0.100075 -0.0366112 0.995336 0.0892568 -0.00408491 0.994426 0.105356 -0.0303335 0.997282 0.0671451 -0.0415457 0.999057 -0.0126154 -0.0309398 0.997989 -0.0553232 -0.0124823 0.999831 -0.0135287 0.00502493 0.999917 -0.011845 -0.184178 0.97939 -0.0829117 0 0.994335 -0.106296 -0.0018941 0.994259 -0.106985 0.0788298 0.996858 0.00772098 0.0671134 0.994354 0.0821883 0 1 0 1 0 0 1 0 0 0.92443 0 0.381351 0.92443 0 0.381351 0.9225 0 -0.385998 0.9225 0 -0.385998 0.707406 0 -0.706808 0.707406 0 -0.706808 0.549924 0 -0.835215 0.194278 0.000368474 -0.980946 0.132073 0.000158771 -0.99124 0.379495 -0.0002399 -0.925194 0.0543235 6.53048e-05 -0.998523 0.788879 -7.30007e-05 -0.614548 0.722008 -0.000276988 -0.691885 0.992383 0 -0.123187 0.582544 0.00141306 -0.812798 0.989072 7.76675e-05 -0.147436 0.116886 -7.04515e-05 -0.993145 0.511587 0.000383276 -0.859231 0.998803 0 -0.0489241 0.890663 0 -0.454664 0.98045 -0.000464437 -0.196768 0.98045 0.000461108 -0.196768 0.707368 0 -0.706845 0.707368 0 -0.706845 0.379409 0 -0.925229 0.379409 0 -0.925229 0 0 -1 0 0 -1 -0.232443 0 -0.97261 -0.379406 0.000151805 -0.92523 -0.379406 -0.000340779 -0.92523 -0.54939 0 -0.835566 -0.707433 0 -0.706781 -0.707433 0 -0.706781 -0.840257 0 -0.542188 -0.922454 0.00020548 -0.386107 -0.972734 0 -0.231924 -0.922454 -0.000206047 -0.386107 -1 0 0 -1 0 0 -0.881619 -0.000193169 -0.471963 -0.0923714 0 -0.995725 -0.920231 -0.000905439 -0.391374 -0.984678 0 -0.174383 -0.947871 0.000297573 -0.318654 -0.541131 0.000170118 -0.840938 -0.248834 -0.000435215 -0.968546 -0.194271 0 -0.980948 -0.194271 0 -0.980948 -0.707425 0 -0.706788 -0.707425 0 -0.706788 -0.922451 0 -0.386115 -0.922451 0 -0.386115 -1 0 0 -1 0 0 -0.924383 0 0.381467 -0.924383 0 0.381467 -0.706788 0 0.707426 -0.706788 0 0.707426 -0.200636 0 0.979666 -0.390536 0.000469569 0.920587 0 0 1 -0.990757 0.000162579 0.135649 -0.887736 0.000240021 0.460352 -0.360121 0.000150474 0.932906 -0.247864 -0.000298027 0.968795 -0.958059 0.00104428 0.286568 -0.950056 -0.000425931 0.312079 -1 0 0 -0.924386 -0.000457116 0.381459 -0.980581 0 0.196117 -0.70678 0 0.707434 -0.70678 0 0.707434 -0.387376 0 0.921922 -0.387376 0 0.921922 0 0 1 0 0 1 0.387379 0 0.92192 0.387379 0 0.92192 0.706715 0 0.707498 0.706715 0 0.707498 0.98058 0 0.196122 0.924382 -0.000457126 0.381467 1 0 0 0.963362 0.00134425 0.268203 0.99207 0.000150641 0.125689 0.835632 -0.000661696 0.549289 0.459543 -0.000544061 0.888155 0.243095 0.000292236 0.970002 0.446921 -0.00046189 0.894574 0.949719 -0.000331366 0.313102 0.819891 0.000282502 0.572519 0 0 1 -0.296565 0.00445748 0.955002 -0.645386 -0.00560123 0.763836 0.858486 -0.00111425 -0.512835 -0.184547 -0.000266948 -0.982824 0.606349 4.8019e-05 0.795198 0.953754 -0.000276094 0.300587 0.943753 -0.000110663 0.330652 0.7768 0.000178587 -0.629747 0.981436 0.00101509 -0.191787 -0.475681 1.49078e-05 0.879618 0.342102 0.00026149 -0.939663 0.398416 2.84661e-05 -0.917205 0.0808947 0.000218827 0.996723 0.0170711 0.000144423 -0.999854 -0.999744 -0.000632289 -0.0226149 0.992864 -0.000524099 -0.119251 0.587186 0.000120804 0.809452 0.0457963 5.25871e-05 0.998951 -0.962239 -9.63666e-06 -0.272208 0.803127 0.000612576 -0.595807 0.0205328 -0.00099557 0.999789 -0.536318 0.000172345 0.844016 -0.737274 -0.00032599 0.675594 0.634955 -0.000516801 0.772549 -0.722407 -0.000310061 -0.691468 -0.532844 0.00032107 -0.846214 0.843909 -0.00157309 -0.536484 -0.946958 0.00016832 0.321358 0.419516 0.000487685 -0.907748 0.286417 0.00227424 -0.958102 0.998381 0.00109759 0.0568676 0.998333 0.00301802 -0.057633 -0.258968 -0.00168297 -0.965885 -0.945827 -0.000505283 -0.32467 0.670458 -9.4298e-05 -0.741948 0.49859 -0.000607949 0.866838 0.997811 -0.000377763 0.0661303 0.459496 7.66227e-05 0.88818 0.856109 0.00148951 0.516793 -0.327429 0.00199924 0.944874 -0.663696 -0.00134864 0.748001 0.964277 0.00105237 -0.264895 0.268032 0.00283462 -0.963406 -0.445391 -0.0031486 0.895331 -0.972588 6.9303e-05 -0.232534 0.458525 -0.000417701 0.888682 -0.186758 -0.000107036 0.982406 -0.868785 0.000911043 0.495189 0.539366 -0.00161484 -0.84207 -0.44138 0.00107243 -0.897319 -0.948208 -0.00205193 -0.317643 -0.561152 0.000161888 0.827713 -0.846997 0.00199452 0.531594 0.924659 -0.000627603 0.380796 0.515936 -5.04884e-05 0.856627 -0.979121 -0.00140404 0.203274 -0.637131 -0.00110593 -0.770755 0.957541 -0.00143223 -0.288295 0.979416 0.000590882 0.20185 0.749585 0.000485188 -0.661908 -0.429428 0.00122937 0.9031 -0.0166308 0.000400285 -0.999862 -0.748922 0.000559098 -0.662658 -0.999482 -0.00213529 -0.0321237 0.882071 -0.000160742 -0.471117 0.154972 -0.0006048 0.987919 0.1529 -0.000819369 -0.988241 0.596076 0.00132408 -0.802927 0.913211 0.00112532 0.407486 -0.682714 -0.000384255 0.730685 0.888577 2.4581e-05 -0.458727 0.967729 -0.000675519 0.251994 -0.980358 8.45512e-05 -0.197225 0.655966 0.000481436 0.75479 0.225578 -0.000202285 0.974225 -0.829443 0.00014916 0.558592 -0.984171 4.33725e-05 0.177219 -0.658348 4.62625e-05 -0.752713 -0.0532425 0.00061673 -0.998581 -0.710086 0.000369179 -0.704115 -0.999636 0.000813562 -0.0269663 -0.307991 0.000475809 0.951389 0.509707 -0.000387557 -0.860348 0.953707 -0.00165863 0.300732 -0.10834 -0.000110264 -0.994114 0.910196 -0.000618855 -0.414178 0.669821 0.000353153 -0.742523 -0.711699 9.53766e-05 -0.702485 -0.0924544 -0.000346367 -0.995717 0.991085 0.000203868 -0.133232 -0.998346 -0.00301565 -0.0574142 0.769079 0.00169032 0.639151 0.652334 -0.000325305 0.757932 0.26134 -0.00175592 0.965245 -0.729219 0.000503034 -0.684281 -0.223297 0.00142786 0.974749 -0.932098 0.00220332 0.362199 -0.585148 -0.00137782 0.810925 -0.250318 -0.00394184 -0.968156 0.43536 -0.000444934 0.900256 0.217279 0.00277914 -0.976106 -0.427363 -0.000233456 -0.90408 0.527364 0.000326522 0.849639 0.987987 -0.00030246 0.15454 -0.68652 -0.000332245 0.727111 0.798378 -0.000556553 -0.602157 -0.987233 -0.000214788 -0.159282 0.948442 0.000410923 0.31695 -0.999979 -0.00122673 -0.00642752 -0.791065 0.000751279 -0.611732 -0.923765 0.000620525 0.382961 0.50312 -0.00243267 -0.864213 -0.211527 0.00108081 0.977372 0.120491 0.000137008 -0.992714 -0.456132 -0.000559686 -0.889912 0.9427 0.000954947 -0.33364 0.948219 0.000452227 0.317616 0.527017 -0.00120886 0.849854 0.67906 0.00102401 -0.734082 0.9637 -0.00146803 -0.266984 -0.680341 -0.000180516 0.732896 -0.945066 -0.000651604 0.32688 -0.999414 -0.000567741 -0.0342247 -0.79255 0.000597987 -0.609807 0.120642 -0.000988514 -0.992696 -0.132533 -0.00111363 0.991178 -0.582233 0.000428875 0.813022 0.969028 0.00116778 0.246947 -0.44209 -0.000827129 -0.89697 -0.118695 0.00114705 -0.99293 0.730799 4.75404e-05 -0.682592 0.267724 0.000970949 0.963495 -0.847511 -8.42893e-05 -0.530778 -0.990929 0.000440556 0.134387 0.707413 0 -0.7068 0.707413 0 -0.7068 0.379361 0.000912094 -0.925248 0.12939 0 -0.991594 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.103611 0.994618 0 -0.00748893 0.996051 0.0884637 0.0912846 0.994431 -0.052666 0.00246727 0.999996 0.00142348 0.045853 0.988174 -0.146322 0.000527015 1 0 0.00279151 0.999989 -0.00383707 0 1 0 0.000358596 1 -0.000359663 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0478579 0.997707 0.0478584 0 1 0 0 1 0 0 1 0 0 1 -0.000631196 -0.000281661 1 -0.000487758 0.0115268 0.999891 -0.00922919 0.00620167 0.999923 -0.0107394 -0.0171963 0.99978 -0.011972 0 0.999999 -0.00172933 -0.00297464 0.999995 -0.000748924 -0.00209117 0.999998 0.000419682 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.108305 0.993743 -0.0272836 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999667 0.0258203 0.0115389 0.999734 0.0199586 0.0292454 0.998286 -0.0506842 0.0694607 0.997302 -0.0237663 0 0.998005 -0.0631417 0 1 0 0 1 0 -0.0326299 0.998932 -0.0327224 -0.0572568 0.997813 0.0330267 -0.0103201 0.999947 0 -0.0123152 0.999774 -0.0173331 -0.0372307 0.999076 0.02148 -0.020229 0.999727 -0.011671 -0.0234481 0.999725 0 -0.0045706 0.999856 0.0163454 -0.00433327 0.999843 0.0171766 0.00872153 0.999924 0.00871773 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.228734 0.946235 0.228736 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0160389 0.997848 -0.0635721 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0074953 0.999972 0 -0.0412151 0.998845 0.0247039 -0.00667454 0.99997 0.00385083 -0.0116319 0.99991 -0.00671096 -0.00483616 0.999988 0 -0.00612436 0.999979 0.00222393 0 1 0 -0.0036738 0.999987 0.00365823 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0861399 0.993574 -0.0734203 -1.81575e-05 1 -3.66955e-05 2.06684e-05 1 0 1.12205e-05 1 -2.38438e-05 0 1 0 0 0.999971 0.00765848 0.00370554 0.999973 0.00642194 0.0053418 0.999971 0.00547924 -0.00117834 0.999997 0.00203816 0 0.999997 0.00238262 0.00263016 0.999996 -0.000565821 -5.84708e-05 1 -1.47297e-05 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.00828861 0.999963 0.00208682 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999059 0.0433828 0.0202602 0.999179 0.0350846 -0.0439166 0.996136 0.0760515 0 0.999883 0.0153263 0.0277521 0.999358 0.0226713 0 1 0 0 1 0 0.00700737 0.999951 0.00697866 0.0100608 0.999943 -0.00357216 0.00638198 0.99998 0 0.00529821 0.999981 -0.00305676 0.0049736 0.999981 -0.00360465 0.00326129 0.999993 0.00188158 0.00322342 0.999992 0.00235756 0.00451055 0.99999 0 0.0364432 0.9977 0.057149 0.014327 0.998283 -0.0567885 -0.0102399 0.998698 -0.0499777 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.0523113 0.99726 -0.0523119 0 1 0 0 1 0 0 1 0 0.00613391 0.999686 0.0243148 -0.00736063 0.999812 0.0179523 0 0.999716 0.0238392 0.000797055 0.999688 0.0249461 0.0450852 0.998549 0.0294581 -0.0278863 0.998845 -0.0391267 -0.0278058 0.999438 -0.0187221 0.051969 0.998436 -0.0206079 0.000228463 0.999999 -0.00111509 -0.0584675 0.998282 -0.00375345 -0.0075923 0.998149 0.0603346 0.000807102 0.999999 0.000830061 -4.81968e-05 1 9.63942e-06 -0.0635611 0.997874 -0.0144107 -0.0054307 0.999983 -0.0022411 -0.0281775 0.999383 0.0209638 -0.0340139 0.999421 0 -0.0411748 0.997905 0.0499023 0.0337117 0.998895 -0.0327357 -0.0262369 0.99901 -0.0359176 0.0983872 0.994952 0.019745 -0.00123949 0.989633 0.143611 0.00529374 0.999735 -0.0224173 -0.00437137 0.999905 -0.0130954 -0.0174958 0.999645 0.0201192 0.00100747 0.99997 0.00772151 -0.114979 0.990896 -0.0700393 0 1 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -0.70671 0 -0.707504 -0.70671 0 -0.707504 -1 0 0 -1 0 0 -0.866178 0 -0.499735 -0.866178 0 -0.499735 -0.866178 0 0.499735 -0.866178 0 0.499735 -1 0 0 -1 0 0 -0.707664 0 0.706549 -0.707664 0 0.706549 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.930279 0 -0.366853 -0.923808 8.4311e-05 -0.382855 -0.187292 0 -0.982304 -0.593785 -0.000489779 -0.804624 -0.325335 0.000364413 -0.945599 -0.374709 -0.000376002 -0.927143 -0.597649 0.000325148 -0.801758 -0.94743 0.00019167 -0.319964 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0.706697 0 -0.707516 0.706697 0 -0.707516 0 0 -1 0 0 -1 0.500071 0 -0.865985 0.500071 0 -0.865985 -0.500076 0 -0.865982 -0.500076 0 -0.865982 0 0 -1 0 0 -1 -0.706717 0 -0.707497 -0.706717 0 -0.707497 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 1 0 0 1 0 0 0.70662 0 -0.707593 0.70662 0 -0.707593 0 0 -1 0 0 -1 0.500512 0 -0.86573 0.500512 0 -0.86573 -0.49978 0 -0.866152 -0.49978 0 -0.866152 0 0 -1 0 0 -1 -0.706717 0 -0.707497 -0.706717 0 -0.707497 -1 0 0 -1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 1.23433e-05 0 -1 2.56454e-05 2.03918e-07 -1 0.691671 0.000583259 -0.722213 0.981173 -4.59462e-05 -0.193132 0.975305 0 -0.220864 0.743286 -0.00024814 -0.668973 0.984738 0.000242523 -0.174043 0.569234 0.000326372 -0.822176 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 0.707586 0 0.706627 0.707586 0 0.706627 1 0 0 1 0 0 0.866178 0 0.499735 0.866178 0 0.499735 0.866178 0 -0.499735 0.866178 0 -0.499735 1 0 0 1 0 0 0.706632 0 -0.707581 0.706632 0 -0.707581 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 1 0 0 1 0.707586 0 0.706627 0.707586 0 0.706627 1 0 0 1 0 0 0.866178 0 0.499735 0.866178 0 0.499735 0.866178 0 -0.499735 0.866178 0 -0.499735 1 0 0 1 0 0 0.70662 0 -0.707593 0.70662 0 -0.707593 0 0 -1 0 0 -1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0.72432 0.000414693 0.689464 0.97561 0 0.219512 0.187325 0 0.982298 0.866783 -0.000993181 0.498685 0.433945 0.000745995 0.900939 0.185604 3.11662e-06 0.982625 0.663657 -0.000437174 0.748037 0.934424 0.000278869 0.356163 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.707683 0 0.70653 -0.707683 0 0.70653 0 0 1 0 0 1 -0.49978 0 0.866152 -0.49978 0 0.866152 0.500512 0 0.86573 0.500512 0 0.86573 0 0 1 0 0 1 0.707586 0 0.706627 0.707586 0 0.706627 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -1 0 0 -1 0 0 -0.707683 0 0.70653 -0.707683 0 0.70653 0 0 1 0 0 1 -0.500076 0 0.865982 -0.500076 0 0.865982 0.500071 0 0.865985 0.500071 0 0.865985 0 0 1 0 0 1 0.707663 0 0.70655 0.707663 0 0.70655 1 0 0 1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 1 0 0 1 -0.187458 0 0.982273 -0.626636 0.000530313 0.779312 -0.906391 0.000182963 0.422441 -0.450977 0.000421047 0.892535 -0.922368 -0.000105502 0.386312 -0.867705 -0.00115553 0.497077 -0.930762 0 0.365625 -0.582336 -0.000163509 0.812948 -0.464871 0.000534618 0.885378 -0.184759 7.53653e-06 0.982784 -1 0 0 -1 0 0 0 0 -1 0 0 -1 1 0 0 1 0 0 0 0 -1 0 0 -1 -0.706698 0 -0.707515 -0.706698 0 -0.707515 -1 0 0 -1 0 0 -0.866178 0 -0.499735 -0.866178 0 -0.499735 -0.866178 0 0.499735 -0.866178 0 0.499735 -1 0 0 -1 0 0 -0.707664 0 0.706549 -0.707664 0 0.706549 0 0 1 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0539839 -0.998542 0 0.0397667 -0.998946 0.0229431 0.00301115 -0.999994 -0.00173726 0.0285839 -0.998913 0.0368337 0.00374864 -0.999993 0 0 -1 0 0.00195328 -0.999996 0.00194527 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.113386 -0.98706 -0.113387 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0184246 -0.999821 -0.00432425 0 -0.99984 0.0178876 -0.00906171 -0.999836 0.0156924 0.0595126 -0.997052 0.0484398 0.0359874 -0.997407 0.0623192 0 -0.997167 0.07522 -0.0864619 -0.996207 -0.00981332 -0.0155817 -0.999871 0.003923 -0.0141376 -0.999896 -0.0028276 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0278936 -0.999586 0.00702683 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999818 0.0190739 -0.00812134 -0.999868 0.0140474 0.00660345 -0.999913 0.0114442 -0.00996897 -0.999872 0.0125389 0 -0.999958 0.00915973 -0.00194732 -0.999946 0.0102135 0 -1 0 0 -1 0 -0.00573975 -0.999967 0.00571541 -0.00918728 -0.999958 0 -0.0158065 -0.9998 0.012264 -0.0134464 -0.99988 -0.0077578 -0.0269572 -0.999153 0.0311003 -0.0351923 -0.999174 0.020304 -0.0463011 -0.998928 0 -0.0133734 -0.998505 -0.0530068 0.0072687 -0.999344 -0.0354775 -3.85771e-05 -1 0 3.87488e-05 -1 7.83094e-05 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -2.16014e-05 -1 4.59036e-05 -0.00686816 -0.999965 0.00471389 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.00464217 -0.99982 0.0184011 0.0134917 -0.999901 0.00401127 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0140463 -0.999901 0 -0.000273433 -1 -0.000157755 -0.00484279 -0.999844 -0.0169897 -0.000249445 -1 0.000143915 -0.00106226 -0.999999 0 -0.000385931 -0.999999 0.00118665 0 -1 0 -0.00087441 -0.999999 -0.000876886 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.0897943 -0.991904 0.089795 0 -1 0 0 -1 0 0 -1 0 0 -0.999998 -0.00218624 0.00118307 -0.999997 -0.00205033 -0.00181759 -0.999993 -0.00314387 0 -0.999998 -0.00218624 -0.0752407 -0.983736 -0.163103 0.324433 -0.944619 0.0493828 0.029223 -0.999546 -0.00736172 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.00205111 -0.999998 0.000516407 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.99946 -0.0328738 -0.0163121 -0.999863 0.00279068 0.0317496 -0.997983 -0.0549808 -0.0160451 -0.999485 -0.0277857 0 -0.99946 -0.0328738 0 -1 0 0 -1 0 0.0151173 -0.999771 -0.0151623 0.0248078 -0.999517 0.0187315 -0.0101827 -0.999948 0 -0.0118435 -0.999907 -0.006833 -0.0113043 -0.999915 0.00652191 -0.0101827 -0.999948 0 0.0365196 -0.998993 -0.0260463 0.00830493 -0.999423 0.0329208 -0.0014354 -0.999692 0.0247651 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.0905539 -0.991766 0.0905549 0 -1 0 0 -1 0 0 -1 0 0.00167848 -0.999999 -0.000336858 -0.029976 -0.999184 -0.027056 8.40078e-05 -0.99979 -0.0204998 0.031583 -0.997803 0.0582423 -0.00320983 -0.999692 0.0245988 0.00467924 -0.99979 -0.0199264 0.00204198 -0.999998 -0.000842645 0.00212571 -0.999998 0 0.00654986 -0.999954 0.00696538 0.00525367 -0.999012 0.0441396 -0.0351337 -0.999108 -0.0234355 0.0342511 -0.999413 0.000468708 0.0220259 -0.995938 -0.0873048 -0.0527253 -0.998483 -0.0158476 -0.0218115 -0.99844 -0.051401 0 -0.999973 -0.00741269 0.0384026 -0.999062 -0.0200203 -0.00568873 -0.999764 0.0209469 -0.00355154 -0.999905 0.0132859 -0.00752693 -0.99991 -0.0110881 0.00126266 -0.999994 0.00307919 -0.0181451 -0.999814 0.00650867 0.000753789 -0.999843 -0.0176836 0.00340403 -0.999615 0.0275432 0.0275943 -0.999613 0.00364182 0 -1 0 1 0 0 1 0 0 0.9225 0 -0.385998 0.9225 0 -0.385998 0.977231 0 0.212176 0.92443 -0.000136613 0.381351 0.92443 0.000138624 0.381351 0.890011 0 0.455939 0.70676 0 0.707453 0.70676 0 0.707453 0.390626 0 0.920549 0.200719 -0.000241294 0.979649 0 0 1 0.995363 -0.000115273 0.0961941 0.314824 0.00128862 0.949149 0.115205 0.000138494 0.993342 0.789064 -0.000344895 0.614311 0.22558 -0.000132842 0.974225 0.543809 0.000587323 0.839209 0.823238 -2.12922e-05 0.567696 0.846359 -0.000234752 0.532613 0.512191 4.44101e-05 0.858872 0.932411 0.00175461 0.361395 0.982543 2.71118e-05 0.186038 1 0 0 0.980579 0.00023502 0.196122 0.924383 0 0.381467 0.706723 0 0.707491 0.706723 0 0.707491 0.390543 0 0.920585 0.390543 0 0.920585 0 0 1 0 0 1 -0.39054 0 0.920586 -0.39054 0 0.920586 -0.706787 0 0.707426 -0.706787 0 0.707426 -0.924386 0 0.381459 -0.98058 -0.000235014 0.196117 -1 0 0 -0.239833 -0.000888341 0.970814 -0.820979 3.19922e-05 0.570959 -0.565219 -0.000730043 0.82494 -0.0909087 0 0.995859 -0.990922 0.000161105 0.134441 -0.796899 -0.000771366 0.604112 -0.965029 0.00091577 0.262141 -0.906343 -0.00081291 0.422542 -0.490752 0.000299738 0.871299 -0.248368 0.000707092 0.968666 -0.200713 0 0.97965 -0.200713 0 0.97965 -0.70678 0 0.707433 -0.70678 0 0.707433 -0.924383 0 0.381467 -0.924382 0.000503789 0.381467 -0.924383 0 0.381467 0.986383 0 -0.164463 0.986383 0 -0.164463 0.924382 -0.000503789 -0.381467 -0.986383 0 0.164463 -1 0 0 -1 0 0 -0.922451 0 -0.386115 -0.922451 0 -0.386115 -0.707433 0 -0.70678 -0.707433 0 -0.70678 -0.379402 0 -0.925232 -0.129379 -0.000311124 -0.991595 -0.833975 -0.00225793 -0.551798 -0.0872831 -0.000209894 -0.996184 -0.905018 -0.00055056 -0.425372 -0.630535 -0.00030344 -0.776161 -0.388283 0.000377454 -0.92154 -0.980931 0.000234488 -0.194358 -0.991403 0.000157858 -0.130843 -0.980451 0 -0.196764 -0.707425 0 -0.706788 -0.707425 0 -0.706788 -0.534469 0 -0.845188 -0.379539 -0.000225392 -0.925176 -0.191315 0 -0.981529 -0.379539 0.000228708 -0.925176 0 0 -1 0 0 -1 0.379543 0 -0.925174 0.379543 0 -0.925174 0.707361 0 -0.706853 0.707361 0 -0.706853 0.857511 0 -0.514465 0.98045 -0.000456167 -0.196768 0.997885 0 -0.0650077 0.98045 0.000463563 -0.196768 0.859486 -0.000868488 -0.511158 0.182797 0 -0.983151 0.994233 0 -0.107242 0.957195 -5.83127e-05 -0.289445 0.554124 0.000378397 -0.832434 0.334108 -0.000464121 -0.942535 0.601234 -0.000851426 -0.799073 0.352549 0.000651304 -0.935793 0.869774 -0.00158162 -0.493448 0.974398 0.0011824 -0.224826 0 0 -1 0.778633 0.0182015 0.627215 -0.784518 0.00198522 -0.620102 -0.909874 0.00431125 0.414862 -0.212146 0.0043238 0.977228 0.0376281 -3.0791e-05 0.999292 0.599795 0.000121829 0.800154 0.347774 0.00113062 -0.937578 -0.42913 3.45233e-05 0.903243 0.958087 0.000560786 -0.286477 -0.659544 0.000184916 -0.751666 -0.798095 -0.000357715 0.602532 0.976061 9.70252e-05 -0.217497 -0.080672 -0.00123524 -0.99674 -0.932561 0.000275009 -0.361013 -0.98176 -0.000292795 0.190126 0.607136 -0.000974569 -0.794597 0.92338 -8.22592e-05 0.383886 -0.996062 0.000100274 0.0886562 -0.46691 0.000318428 0.884305 -0.0221026 -0.000225982 0.999756 0.600227 0.000120096 0.79983 0.609894 0.00166425 -0.792481 -0.111737 0.000181447 -0.993738 0.942284 9.47553e-05 0.334814 -0.763042 9.5127e-05 0.646349 0.919225 -0.000893254 -0.393733 -0.64247 0.000806953 -0.766311 -0.81453 -0.000417213 -0.580122 0.011941 -0.000779297 -0.999928 -0.70053 -0.000446893 0.713623 -0.980729 -0.00820706 -0.195201 0.974718 0.00334733 -0.223414 -0.888916 0.000983248 -0.458069 -0.868257 0.00613543 0.496077 -0.0476821 0.000730015 -0.998862 -0.0789109 0.0008426 0.996881 -0.75456 0.000353469 0.65623 -0.766749 8.66011e-05 0.641947 -0.632581 -0.00165232 -0.774493 0.729021 -0.00163034 -0.68449 -0.360738 -0.000543085 0.932667 0.998745 0.00107212 -0.0500653 -0.979747 0.00011907 0.20024 0.0180359 -0.000221754 -0.999837 0.130493 3.83822e-05 0.991449 0.614633 7.86915e-05 0.788813 0.957247 1.24671e-05 0.289271 -0.653555 0.000828943 -0.756879 -0.938013 0.000166694 -0.346599 -0.761769 5.13493e-05 0.647849 0.673696 -0.000194673 0.739009 0.0433499 0.000928359 -0.999059 -0.359807 -0.000295085 -0.933027 0.703115 0.00094681 -0.711076 0.997756 0.000611981 -0.0669588 0.364015 -0.000291659 -0.931393 -0.998924 -0.000238595 0.0463825 -0.309081 0.000324018 0.951036 -0.900484 -0.000125803 -0.434889 0.991859 -0.000357186 0.127337 0.864981 -3.90624e-05 -0.501805 -0.095645 -0.000971211 0.995415 0.71393 0.00140042 -0.700216 -0.191388 0.0073428 -0.981487 -0.907626 -0.00195067 0.419776 0.996796 0.00322043 0.0799177 0.390418 0.00058504 0.920638 0.912812 -0.00470007 0.408353 -0.885571 0.000104111 0.464503 -0.396493 0.000112968 0.918038 0.311787 -0.000769834 0.950152 -0.376308 -0.000177387 -0.926494 0.851676 0.00116595 0.524068 0.102063 -6.28304e-05 -0.994778 -0.973412 -0.000276536 -0.229062 -0.421372 -0.000509167 -0.906888 0.193928 0.000766792 0.981016 -0.899617 0.00151733 -0.436676 -0.989179 -0.000231896 0.146715 0.741068 -0.000234978 0.67143 0.420703 -0.00138951 -0.907197 0.994724 -0.000385238 0.10259 0.99629 0.000135007 -0.0860561 0.79512 0.000158681 -0.606453 0.878564 -0.000309093 -0.477625 0.273115 0.000575921 -0.961981 -0.780308 -0.000431874 0.625395 -0.40211 7.70111e-05 0.915591 0.999097 0.00114723 0.0424831 -0.439247 0.00131869 -0.898366 -0.690197 -0.000736251 -0.723621 -0.491126 0.00111467 0.871088 0.127143 -0.000749454 -0.991884 -0.822728 -0.00700305 0.568392 0.00660159 -0.000540988 0.999978 0.792058 -0.00101157 0.610445 0.922807 -0.00166405 -0.385258 -0.494238 0.0217461 -0.869055 -0.354439 -0.00123647 0.935078 -0.97178 -0.00172037 -0.235884 -0.740015 0.00211024 0.672587 0.975827 -0.00105228 -0.218541 0.846827 0.00263245 -0.531863 0.897466 -0.00017756 0.441083 0.242977 0.000284471 0.970032 -0.973885 -0.00105302 0.227038 -0.797687 0.00079226 0.603071 -0.132212 0.000583692 -0.991221 -0.770682 0.000401083 -0.637219 0.593701 -0.000855921 0.804686 0.921752 0.000520493 0.38778 0.128099 -0.00111965 -0.991761 0.698985 -0.00032081 -0.715136 0.135906 -0.000523837 0.990722 -0.391465 -0.000247618 0.920193 0.98355 0.000618584 -0.180638 -0.634139 -0.000883835 -0.773218 0.728761 -0.000777825 -0.684767 0.917877 0.000684803 0.396864 -0.620734 0.000431169 -0.784021 0.998404 1.42217e-05 0.0564718 -0.581979 -4.99101e-05 -0.813204 -0.422841 -0.000502825 0.906204 0.105589 0.000911849 -0.994409 0.0306175 0.00106203 0.999531 0.603589 -0.000542261 0.797295 -0.986674 0.000522186 -0.162711 0.864297 0.0013369 -0.502981 0.205501 0.000110831 -0.978657 0.643323 -0.000967282 0.765594 -0.990748 -0.00183985 0.135705 0 5.91804e-05 1 -8.51867e-06 0 1 0 -0.000253252 1 0.000127066 0 1 -4.44696e-05 6.29995e-05 1 -2.15341e-06 6.3463e-05 1 0 0.000984128 -1 0.000217413 0 -1 0.000754794 -0.000205924 -1 0 -0.000335945 -1 -0.000467001 0 -1 -0.00176573 -0.000231691 -0.999998 0.707107 0 -0.707107 0.707107 0 -0.707107 1 0.000294044 0 1 0 0 1 -9.38089e-05 0.000539968 1 0 0 1 0 0 1 -9.45326e-05 -0.000243748 0.707116 0 -0.707097 0.707116 0 -0.707097 0 0 -1 0 0 -1 -1 6.03956e-05 0 -1 0 -3.00989e-05 -1 0 0 -1 0 8.49104e-06 -1 -1.98764e-05 -2.87208e-06 -1 -1.98913e-05 1.02112e-05 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.707097 0 -0.707116 0.707097 0 -0.707116 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -1 3.61433e-05 -5.09821e-06 -1 0 0 -1 -0.000132359 6.64468e-05 -1 0 -2.31022e-05 -1 3.14905e-05 2.26977e-06 -1 3.15893e-05 -0.77183 0.0639603 0.632604 0.77183 -0.0639603 -0.632604 0 0.999999 0.00150367 0.000103129 1 0 0.00121908 0.999999 -0.000388489 -0.0126478 0.999768 -0.0174169 -0.0313574 0.999506 -0.00203178 -0.00999617 0.999934 -0.00567712 0.707107 0.707107 3.28755e-05 0.70709 0.707124 0 0.999998 0 0.00188048 1 -0.000672569 0 0.999995 -0.00303044 -0.000390728 1 0 -0.0004842 1 0.000287348 0 0.999999 0.00151535 -0.000476304 0.707112 0.707102 0 0.707112 0.707102 0 0 1 0 0 1 0 -1 0 6.10515e-05 -1 3.05744e-05 0 -1 0 6.35995e-05 -1 -8.45395e-06 0 -1 1.37567e-05 -3.89184e-05 -1 -4.70534e-05 -3.76108e-05 0 0 -1 -5.34403e-05 -1.71774e-05 -1 0 8.68938e-05 -1 1.97908e-05 -4.39794e-06 -1 0 0 -1 0 0 -1 0 0 -1 1 0 0 1 0 0 0.707102 0.707112 0 0.707102 0.707112 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -5.96481e-05 -1 0 0 -1 -8.41458e-06 0.000198079 -1 0 0 -1 9.83949e-05 -4.34041e-05 -1 -3.2929e-05 -4.31037e-05 -1 8.62631e-06 -0.000213571 1 0 0 1 -3.57058e-05 8.63447e-05 1 0.000196675 -5.60783e-05 1 0 0 1 7.17543e-05 8.39214e-05 1 -0.000382131 0 0.707107 0.707107 0 0.707107 0.707107 -0.000176105 0 1 0 -0.000310492 1 -1.73406e-05 -0.000215429 1 0.000226287 0 1 0 0.000148961 1 -2.05011e-05 9.50412e-05 1 0 0.707102 0.707112 0 0.707102 0.707112 0 1 0 0 1 0 -4.96975e-05 0 -1 0 2.41132e-05 -1 2.39644e-05 0 -1 0 -6.79013e-06 -1 7.83768e-06 -2.28057e-06 -1 7.7941e-06 8.18786e-06 -1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0.707112 0.707102 0 0.707112 0.707102 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -4.94645e-05 0 1 0 -6.79958e-06 1 0.000240941 0 1 0 0.000120668 1 -6.24479e-05 -4.27399e-05 1 -6.25844e-05 -6.36434e-06 1 -0.000161214 0 -1 0 7.74397e-05 -1 1.17397e-05 0.000108071 -1 0.000121214 0 -1 0 -0.000167754 -1 1.16311e-05 -0.000233495 -1 0 0.707107 -0.707107 0 0.707107 -0.707107 -0.000530843 1 0 0 1 0.00030656 0.000109366 1 0.000920328 0.000229074 1 0 0 1 -0.000144084 9.87957e-05 1 -0.000404676 0 0.707112 -0.707102 0 0.707112 -0.707102 0 0 -1 0 0 -1 -5.84262e-05 -1 0 0 -1 -3.00158e-05 -3.66063e-05 -1 0 0 -1 8.49768e-06 3.16453e-05 -1 -9.45772e-06 3.21715e-05 -1 3.44615e-05 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 0.707102 -0.707112 0 0.707102 -0.707112 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -1 4.31311e-05 -5.95718e-06 -1 0 -1.6556e-05 -1 -0.000123102 -4.35061e-05 -1 6.52145e-05 7.58458e-05 -1 6.41491e-05 6.45914e-06 -1 2.98026e-05 -0.624085 0.230166 0.746687 0.624085 -0.230166 -0.746687 0 1 0.000415059 7.51858e-05 1 0 0.000301079 1 -6.85728e-05 0.000312555 1 0.000366482 0.000648991 1 -3.59562e-05 -0.000393138 1 0.000140732 0.707107 0.707107 0 0.707107 0.707107 0 0.999998 0 0.00219861 1 -0.000451805 0 0.999993 -0.00379216 -0.000590772 1 0 -0.000331154 1 0.000209329 0 0.999998 0.0017641 -0.000593494 0.707112 0.707102 0 0.707112 0.707102 0 0 1 0 0 1 0 -1 0 4.93492e-05 -1 2.41266e-05 0 -1 0 3.66095e-05 -1 -6.78907e-06 0 -1 8.90209e-06 -2.73215e-05 -1 -3.14172e-05 -2.72145e-05 -6.27301e-05 -6.27309e-05 -1 -0.000164222 -9.53493e-05 -1 6.62662e-06 0.000234029 -1 6.17146e-05 -1.37143e-05 -1 0 0 -1 0 0 -1 0 0 -1 1 0 -2.38421e-06 1 -1.25463e-05 0 0.707102 0.707112 0 0.707102 0.707112 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -4.85956e-05 0 -1 0 6.8262e-06 -1 0.000201471 0 -1 0 -9.51338e-05 -1 -4.64593e-05 3.35548e-05 -1 -4.65683e-05 -9.87388e-07 -1 -0.000639471 0 1 0 -0.000319775 1 4.16342e-05 -0.00042764 1 0.000530611 0 1 0 0.000731688 1 4.53123e-05 0.0010003 1 0 -0.707107 0.707107 0 -0.707107 0.707107 -0.000450439 -1 0 0 -1 -2.10243e-05 0.000146815 -1 -0.000856832 1.54403e-05 -1 0 0 -1 9.66826e-06 0.000136324 -1 0.000366561 0 -0.707109 0.707104 0 -0.707109 0.707104 0 0 1 0 0 1 -6.9891e-05 1 0 0 1 3.42868e-05 4.31923e-05 1 0 0 1 -9.79103e-06 8.82816e-06 1 -4.72268e-06 8.62882e-06 1 1.69389e-05 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 0 -1 0 0 -0.7071 0.707114 0 -0.7071 0.707114 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 5.92508e-05 0 -1 0 -8.50089e-06 -1 -0.000114627 0 -1 0 6.09217e-05 -1 1.99642e-05 -1.98732e-05 -1 2.0388e-05 1.96613e-05 1 0.000427254 0 1 0 0.000117421 1 -7.65985e-05 0.000317743 1 -0.000175756 0 1 0 -0.00024591 1 -8.5409e-05 -0.000713693 0.707107 0 0.707107 0.707067 7.70792e-05 0.707146 0 0.00134627 0.999999 -0.0112336 -0.00605502 0.999919 -0.0134855 -0.0163917 0.999775 -5.63407e-05 0 1 -0.0275768 -0.00351261 0.999614 0.00105818 -0.000357306 0.999999 0.707097 0 0.707116 0.707097 0 0.707116 1 0 0 1 0 0 0 4.74563e-05 -1 2.35699e-05 0 -1 0 -8.17915e-05 -1 -6.83449e-06 0 -1 -1.3576e-05 1.17728e-05 -1 4.90831e-05 1.29192e-05 -1 0 -1 0 0 -1 0 0 -1 0 4.64887e-05 -1 -1.03308e-05 0 -1 0.000204474 -0.000125672 -1 -4.03952e-05 0 -1 0 0 0 1 0 0 1 0.707116 0 0.707097 0.707116 0 0.707097 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.734548 -0.667636 -0.121249 -0.734548 0.667636 0.121249 6.11621e-05 0 1 0 8.52722e-06 1 -0.00021925 0 1 0 -0.00010876 1 5.04065e-05 3.75561e-05 1 5.09246e-05 -4.96341e-06 1 0.726723 0.665409 -0.170601 -0.726723 -0.665409 0.170601 0.000664648 0 -1 0 8.607e-05 -1 -0.000184617 -0.000520703 -1 -0.00838082 0.00615796 -0.999946 -0.00155863 0.0123821 -0.999922 -0.0027676 0.00495904 -0.999984 1.85467e-05 -0.707107 -0.707107 0 -0.707098 -0.707116 0.000671935 -1 0 0 -1 0.000692368 -4.23342e-05 -1 0.000933676 -0.000485425 -1 0 0 -1 -0.000313732 -5.99353e-05 -1 -0.000468537 0 -0.707109 -0.707104 0 -0.707109 -0.707104 0 0 -1 0 0 -1 5.74615e-05 1 0 0 1 -2.89507e-05 8.91933e-06 1 0 0 1 8.03854e-06 -2.18126e-05 1 -4.39287e-06 -2.16057e-05 1 1.53962e-05 -1 0 0 -1 0.000101091 3.24938e-05 -1 0 -0.000163392 -1 -3.77128e-05 8.38064e-06 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -0.7071 -0.707114 0 -0.7071 -0.707114 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 4.57697e-05 -6.39019e-06 -1 0 0 -1 -0.000190047 8.97806e-05 -1 0 -3.13384e-05 -1 4.33796e-05 1.09963e-06 -1 4.35131e-05 0 0.999998 0.00183688 -3.80489e-06 1 0 0.00152706 0.999999 -0.000590665 0 1 6.34156e-06 8.72087e-06 1 0 -0.00334566 0.999994 -0.000564674 0.707107 0.707107 0 0.707107 0.707107 0 0.999999 0 0.00104331 1 -0.000265467 0 0.999999 -0.00170102 -0.000240997 1 0 -0.000181048 1 0.000113431 0 1 0.000874688 -0.000299092 0.707109 0.707104 0 0.707109 0.707104 0 0 1 0 0 1 0 -1 0 4.17442e-05 -1 2.15279e-05 0 -1 0 5.87413e-06 -1 -5.90822e-06 0 -1 3.17748e-06 -1.60386e-05 -1 -1.095e-05 -1.57344e-05 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 1 0 0 1 0 0 0.707109 0.707104 0 0.707109 0.707104 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -1 -4.71366e-05 6.48718e-06 -1 0 0 -1 0.000243081 -0.000116904 -1 0 4.30132e-05 -1 -6.34069e-05 7.6491e-06 -1 -6.29561e-05 0 0.999999 -0.00105281 -0.000195059 1 0 -0.00081525 1 0.000246858 0 1 0.000318827 0.000480598 1 0 0.00169038 0.999999 0.000195439 -0.707108 0.707106 0 -0.707126 0.707087 -3.68829e-05 -1 0 -0.000942299 -0.999984 -0.00503702 0.00262197 -0.999952 -0.00583184 0.00788721 -1 -4.73411e-05 0 -0.999933 -0.0114878 0.00154521 -1 0.000727887 0.000232127 -0.707107 0.707107 0 -0.707107 0.707107 0 0 1 0 0 1 0 1 0 -5.41178e-05 1 2.63941e-05 0 1 0 3.57656e-05 1 -7.56155e-06 0 1 -4.15199e-06 5.92978e-06 1 1.49959e-05 5.67908e-06 0 0 1 0 0 1 0 0 1 1.14697e-05 5.16135e-05 1 -0.00022347 0 1 4.44577e-05 -0.000138313 1 0 0 1 -1 0 0 -1 0 0 -0.707106 0.707107 0 -0.707106 0.707107 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.175767 0.656496 0.733566 -0.175767 -0.656496 -0.733566 0 -1 -4.78525e-05 6.60304e-06 -1 0 0 -1 0.000135408 -6.56332e-05 -1 0 2.29891e-05 -1 -2.84144e-05 -9.44655e-06 -1 -2.82399e-05 0 1 -0.000669787 -0.000239615 1 0 -0.000450897 1 8.38889e-05 0 1 0.000389122 0.000583637 1 0 0.00103284 0.999999 7.32252e-05 -0.707108 0.707106 0 -0.707108 0.707106 0 -1 0 -0.000500449 -1 -0.0003737 0 -1 -0.000794887 7.47863e-05 -1 0 0.00026095 -1 0.000171503 0 -1 0.000331017 6.17162e-05 -0.707107 0.707107 0 -0.707107 0.707107 0 0 1 0 0 1 0 1 0 -5.58788e-05 1 2.63583e-05 0 1 0 2.43688e-05 1 -7.56449e-06 0 1 -2.16509e-06 9.31613e-06 1 7.68522e-06 9.2463e-06 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.707106 0.707107 0 -0.707106 0.707107 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 1 0 -5.68733e-05 1 8.11302e-06 0 1 -2.92266e-05 0.000300867 1 1.35587e-05 -9.4923e-06 1 -0.000178875 -1.04359e-05 1 -5.39458e-05 5.2606e-05 -1 0 -0.000805196 -1 -0.00019996 0 -1 -0.000593076 0.000152266 -1 0 0.000326164 -1 0.000456779 0 -0.999999 0.00139713 0.000159445 -0.707107 -0.707107 0 -0.707107 -0.707107 0 0 -1 -0.000623984 -5.47333e-05 -1 0 0.00115681 -0.999999 0.000213177 0 -1 -3.96632e-05 2.51227e-05 -1 0 -0.000498035 -1 0.000200549 -0.707107 -0.707107 0 -0.707107 -0.707107 0 -1 0 0 -1 0 0 0 1 -5.41635e-05 -2.60577e-05 1 0 0 1 4.10999e-05 7.45215e-06 1 0 5.17937e-06 1 3.94028e-06 -1.84965e-05 1 3.74893e-06 0.00011296 0.00011296 1 7.66489e-05 0 1 5.36515e-05 -1.19226e-05 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -1 1.13258e-05 5.96211e-05 -1 0 -0.707107 -0.707107 0 -0.707107 -0.707107 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 5.22594e-05 7.44683e-06 1 0 -9.2728e-06 1 -0.000178997 1.74912e-05 1 1.75776e-05 -0.000103468 1 1.77335e-05 -3.44657e-05 1 -1.66896e-05 0 -0.999999 0.00141966 -6.68636e-05 -1 0 -0.00117756 -0.999999 -0.000427542 0 -1 -0.000110113 0.000151174 -1 0 0.00247338 -0.999997 -0.000395364 -0.707107 -0.707107 0 -0.707107 -0.707107 0 -1 0 0.000773574 -1 0.000403426 0 -0.999999 0.00125969 -0.000152112 -1 0 -0.000283856 -1 -0.000185682 0 -1 -0.000545151 -0.000138744 -0.707107 -0.707107 0 -0.707107 -0.707107 0 0 -1 0 0 -1 0 1 0 7.12068e-05 1 -3.41713e-05 0 1 0 1.01666e-05 1 9.66384e-06 0 1 -5.26813e-06 -2.58807e-05 1 1.87004e-05 -2.59161e-05 5.01966e-05 5.01966e-05 -1 0 3.40618e-05 -1 -5.29842e-06 2.38429e-05 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -1 0 -4.58216e-06 -1 2.41185e-05 0 -0.707107 -0.707107 0 -0.707107 -0.707107 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 3.71533e-05 1 -5.07541e-06 0 1 0 -0.000109425 1 5.37647e-05 0 1 -1.86279e-05 2.36524e-05 1 6.82327e-06 2.33043e-05 1 0.800894 0.59875 0.00815058 -0.800894 -0.59875 -0.00815058 0 0.000638514 -1 0.00012131 0 -1 0.000479267 -0.000116489 -1 0 -0.000216054 -1 -0.000485285 0 -1 -5.67778e-05 -0.000151795 -1 -3.5672e-05 -0.000136016 -1 -0.000872963 -4.91362e-05 -1 0.707107 0 -0.707107 0.707107 0 -0.707107 1 0.000724158 0 1 0 0.000187566 0.999999 -0.000173266 0.00117403 1 -0.000128596 0 1 0 -8.45523e-05 1 -0.000206675 -0.00061498 0.707111 0 -0.707102 0.707111 0 -0.707102 0 0 -1 0 0 -1 -1 5.3859e-05 0 -1 0 -2.76766e-05 -1 5.86451e-06 0 -1 0 7.59644e-06 -1 -2.00352e-05 -3.76345e-06 -1 -1.96594e-05 1.29352e-05 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 1 0 0 1 0 0 0.707111 0 -0.707102 0.707111 0 -0.707102 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -4.91554e-05 -1 -6.80992e-06 0 -1 0 0.000143723 -1 7.33541e-05 0 -1 -2.46735e-05 -3.10382e-05 -1 8.54272e-06 -3.1561e-05 -1 -0.684858 -0.712678 0.151856 0.684858 0.712678 -0.151856 0 -0.0011094 0.999999 9.55331e-05 0 1 0.000835563 0.000227415 1 -0.00905236 0.012151 0.999885 -0.0186525 0.00211352 0.999824 -0.00712126 0.00406555 0.999966 0.707107 -2.78186e-05 0.707107 0.707083 1.86088e-05 0.70713 1 -0.000890302 0 0.999999 -0.00132724 0.000602158 0.999986 -0.00448996 0.0029427 1 0 0.000104317 0.999974 -0.000155327 0.00718518 1 0.000193521 0.000687585 0.707111 0 0.707102 0.707111 0 0.707102 0 0 1 0 0 1 -1 -6.10528e-05 0 -1 0 3.01488e-05 -1 -1.16712e-05 0 -1 0 -8.48708e-06 -1 2.38277e-05 5.16463e-06 -1 2.38083e-05 -1.8307e-05 0 1 0 -0.000129946 1 -4.17678e-05 0 1 0.000210587 3.93656e-05 1 3.027e-05 0.000174792 1 0 -3.50523e-05 1 -0.000109051 0 1 0 1 0 0 1 0 0 0.707111 0 0.707102 0.707111 0 0.707102 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.15595 0.706483 0.690334 0.15595 -0.706483 -0.690334 0 -1 -4.65966e-05 6.3951e-06 -1 0 0 -1 0.000143885 -6.77505e-05 -1 0 2.37508e-05 -1 -3.00253e-05 -7.97787e-06 -1 -2.98842e-05 0 1 -0.000642281 -0.000120845 1 0 -0.000461609 1 0.000134611 0 1 0.000205629 0.000299404 1 0 0.00106535 0.999999 0.000122123 -0.707107 0.707107 0 -0.707107 0.707107 0 -1 0 -0.000870669 -1 -0.00058404 0 -0.999999 -0.00136976 9.26131e-05 -1 0 0.000304437 -1 0.000180401 0 -1 -0.000141934 0.000148536 -1 -0.000197379 0.000199446 -1 0.000633332 0.000147244 -0.707107 0.707107 0 -0.707107 0.707107 0 0 1 0 0 1 0 1 0 -5.72979e-05 1 2.82498e-05 0 1 0 -3.52993e-05 1 -8.09432e-06 0 1 9.30916e-06 3.03477e-05 1 -3.24909e-05 3.03483e-05 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -0.707107 0.707107 0 -0.707107 0.707107 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.0116521 -0.736537 0.676297 0.0116521 0.736537 -0.676297 0 -1 -4.63089e-05 6.39004e-06 -1 0 0 -1 0.000152928 -7.49242e-05 -1 0 2.59728e-05 -1 -3.39575e-05 -5.87209e-06 -1 -3.41174e-05 0 1 -0.000674537 -0.000200473 1 0 -0.000464793 1 0.000102366 0 1 0.000322866 0.000454126 1 0 0.0010884 0.999999 0.000108438 -0.707107 0.707107 0 -0.707097 0.707117 1.93136e-05 -1 0 -0.000753557 -0.999999 0.000959782 -0.00146991 -0.999982 0.00325896 -0.00498926 -1 5.5006e-05 0 -0.999969 0.00785662 -0.000214823 -1 0.00059284 0.000176397 -0.707107 0.707107 0 -0.707107 0.707107 0 0 1 0 0 1 0 1 0 -5.8047e-05 1 2.91122e-05 0 1 0 3.59755e-05 1 -8.1614e-06 0 1 -4.05479e-06 7.19626e-06 1 1.47976e-05 7.03221e-06 0 0 1 0 0 1 0 0 1 9.30321e-06 4.18645e-05 1 -0.000177879 0 1 3.56815e-05 -0.000111009 1 0 0 1 -1 0 0 -1 0 0 -0.707107 0.707107 0 -0.707107 0.707107 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.132051 -0.687027 -0.714532 0.132051 0.687027 0.714532 -1 0 -4.82323e-05 -1 -6.78287e-06 0 -1 0 0.000161418 -1 7.84965e-05 0 -1 -2.68682e-05 -3.52026e-05 -1 6.56245e-06 -3.51557e-05 1 0 -0.00082932 1 0.000185789 0 1 0.00063719 0.000171887 1 0 0.000299394 1 -0.000402925 0 0.999999 -0.00132599 0.000162073 0.707107 0.707107 0 0.707107 0.707107 0 0 1 -0.000845703 -0.000119497 1 0 -0.00142189 0.999999 0.000233227 0 1 8.99448e-05 5.66085e-05 1 0 0.00066178 1 0.000228766 0.707109 0.707104 0 0.707109 0.707104 0 1 0 0 1 0 0 0 -1 -4.67604e-05 2.25846e-05 -1 0 0 -1 2.46746e-05 -6.36745e-06 -1 0 -2.45394e-06 -1 6.79461e-06 8.85174e-06 -1 6.72222e-06 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0.707109 0.707104 0 0.707109 0.707104 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -5.67372e-05 -1 0 0 -1 -8.04793e-06 9.45957e-05 -1 0 0 -1 4.69177e-05 -1.18458e-05 -1 -1.47857e-05 -1.17833e-05 -1 2.28423e-05 -0.000620594 1 0 0 1 0.000273355 5.87685e-05 1 0.000427729 0.00043684 1 0 0 1 -0.000589563 6.03157e-05 1 -0.000931275 0 0.707107 0.707107 3.04103e-05 0.707122 0.707091 -0.000708964 0 1 -0.00195881 0.00174802 0.999997 -0.0076798 0.00434197 0.999961 0 2.58558e-05 1 -0.000281878 0.0108975 0.999941 0.000184734 0.000589824 1 0 0.707109 0.707104 0 0.707109 0.707104 0 1 0 0 1 0 -5.9493e-05 0 -1 0 3.01974e-05 -1 3.73102e-05 0 -1 0 -8.48324e-06 -1 7.82521e-06 -4.03048e-06 -1 7.90945e-06 1.41765e-05 -1 1 0 0 1 0 0 1 0 0 1 5.23575e-05 -1.1635e-05 1 0 0.000221961 1 -0.000138654 -4.45673e-05 1 0 0 0 0 1 0 0 1 0 0.707109 0.707104 0 0.707109 0.707104 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -0.738746 -0.652777 0.16774 0.738746 0.652777 -0.16774 -5.9638e-05 0 1 0 -8.51424e-06 1 0.000140612 0 1 0 7.41441e-05 1 -2.74048e-05 -2.41748e-05 1 -2.83398e-05 1.5645e-05 1 0.675273 0.732673 0.0848318 -0.675273 -0.732673 -0.0848317 -0.00075335 0 -1 0 0.000145115 -1 0.000152048 0.000588095 -1 -0.00262131 0.00189324 -0.999995 -6.50863e-05 0.00466825 -0.999989 -0.000853436 0.000146716 -1 5.9011e-06 0.707107 -0.707107 -1.68608e-06 0.707111 -0.707103 -0.000867773 1 0 -1.19335e-05 0.999999 0.00122965 1.42349e-06 1 -2.64903e-05 0 1 -2.7372e-05 0.000231051 1 -0.000223378 0.000195118 1 -0.000653201 0 0.707109 -0.707104 0 0.707109 -0.707104 0 0 -1 0 0 -1 -5.23757e-05 -1 0 0 -1 -2.51744e-05 3.06261e-06 -1 0 0 -1 7.25067e-06 1.55683e-05 -1 -1.73413e-06 1.56458e-05 -1 6.17633e-06 1 0 0 1 -4.62988e-05 1.48817e-05 1 0 -7.42791e-05 1 5.6642e-06 -4.88851e-05 1 0.000225637 0 1 -4.51291e-05 0.000140401 1 0 0 0 1 0 0 1 0 0 0.707109 -0.707104 0 0.707109 -0.707104 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.745276 -0.190341 -0.639011 -0.745276 0.190341 0.639011 -5.00669e-05 1 0 0 1 6.99378e-06 0.000142208 1 0 0 1 -6.89729e-05 -3.08604e-05 1 2.46285e-05 -3.00291e-05 1 -9.99554e-06 -0.659005 -0.124187 0.741815 0.659005 0.124187 -0.741815 -0.000605734 -1 0 0 -1 -0.000145268 0.000106068 -1 -0.000448642 0.00818974 -0.999954 0.00504673 0.000560102 -0.999907 0.013614 0.0022682 -0.99999 0.00386445 -1.24331e-05 -0.707107 -0.707107 0 -0.707113 -0.7071 -0.000408956 0 -1 0 0.000291121 -1 5.89446e-05 0.000650998 -1 0.000190753 0 -1 0 -0.000119596 -1 7.02297e-05 -0.000295742 -1 0 -0.707109 -0.707104 0 -0.707109 -0.707104 0 -1 0 0 -1 0 -6.13348e-05 0 1 0 -2.99604e-05 1 1.18854e-05 0 1 0 8.50214e-06 1 1.57686e-05 -5.58319e-07 1 1.57404e-05 1.91031e-06 1 1 0 0 1 2.79834e-05 8.70582e-05 1 -0.000140568 0 1 7.2265e-06 -3.25191e-05 1 0 0 1 0 0 1 0 0 0 0 -1 0 0 -1 0 -0.707109 -0.707104 0 -0.707109 -0.707104 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -6.00789e-05 0 -1 0 8.47537e-06 -1 0.000179788 -1.19221e-05 -1 -7.83917e-06 1.29428e-05 -1 -7.0126e-06 -9.91206e-05 -1 2.14583e-05 -4.1119e-05 -1 -0.00080304 0 1 0 -0.000129952 1 0.000200446 -0.000651636 1 0.000215301 0 1 0 0.000293477 1 0.000182135 0.00136399 0.999999 0 -0.707107 0.707107 0 -0.707107 0.707107 -0.000492603 -1 0 0 -1 4.87346e-05 0.000167953 -1 -0.000915774 -3.56494e-05 -1 0 0 -1 -2.2158e-05 0.000160256 -1 0.000396275 0 -0.707109 0.707104 0 -0.707109 0.707104 0 0 1 0 0 1 -5.94181e-05 1 0 0 1 2.84229e-05 6.66257e-05 1 0 0 1 -8.08021e-06 -2.67198e-06 1 -9.62327e-06 -2.64521e-06 1 3.37963e-05 1 6.11788e-05 -6.11784e-05 1 0 -4.15134e-05 1 -6.45754e-06 -2.90588e-05 1 0 0 1 0 0 1 0 0 1 0 0 4.73121e-06 -1 0 0 -1 -2.49034e-05 0 -0.707109 0.707104 0 -0.707109 0.707104 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 4.90136e-05 -1 6.78686e-06 0 -1 0 -0.000191821 -1 -8.94503e-05 0 -1 3.12163e-05 4.26207e-05 -1 -3.28745e-06 4.23428e-05 0.999999 0 0.00129557 1 3.82965e-06 0 0.999999 -0.00110612 -0.000422908 1 0 6.51338e-06 1 -8.5935e-06 0 0.999997 0.00222285 -0.000378893 0.707107 -0.707107 0 0.707107 -0.707107 0 0 -0.999999 0.00109981 -0.00042205 -1 0 -0.0018279 -0.999998 -0.00023714 0 -1 -0.000276729 0.000179285 -1 0 0.000960385 -1 -0.000310165 0.707109 -0.707104 0 0.707109 -0.707104 0 1 0 0 1 0 0 0 1 6.29649e-05 3.29614e-05 1 0 0 1 1.45849e-05 -9.08085e-06 1 0 6.04433e-06 1 -2.67992e-05 -2.08091e-05 1 -2.62474e-05 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0.707109 -0.707104 0 0.707109 -0.707104 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1 0 3.52879e-05 -1 5.07209e-06 0 -1 0 -0.000193966 -1 -9.38664e-05 0 -1 3.29612e-05 4.93306e-05 -1 7.21614e-06 4.91661e-05 0.999998 0 0.00208764 1 -7.7096e-06 0 0.999998 -0.00183795 -0.000697233 1 0 -1.26711e-05 1 1.6939e-05 0 0.999993 0.00374547 -0.000646475 0.707107 -0.707107 0 0.707107 -0.707107 0 0 -0.999999 0.00102432 -0.000455735 -1 0 -0.00172906 -0.999999 -0.000226302 0 -1 -0.000328448 0.000211322 -1 0 0.000796195 -1 -0.00022417 0.707109 -0.707104 0 0.707109 -0.707104 0 1 0 0 1 0 0 0 1 6.29814e-05 3.18058e-05 1 0 0 1 1.04955e-05 -8.89965e-06 1 0 4.90794e-06 1 -2.42384e-05 -1.75581e-05 1 -2.42472e-05 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0.707109 -0.707104 0 0.707109 -0.707104 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\n                    <technique_common>\n                        <accessor count=\"24999\" source=\"#shape0-lib-normals-array\" stride=\"3\">\n                            <param name=\"X\" type=\"float\"/>\n                            <param name=\"Y\" type=\"float\"/>\n                            <param name=\"Z\" type=\"float\"/>\n                        </accessor>\n                    </technique_common>\n                </source>\n                <vertices id=\"shape0-lib-vertices\">\n                    <input semantic=\"POSITION\" source=\"#shape0-lib-positions\"/>\n                </vertices>\n                <triangles count=\"24999\">\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#shape0-lib-vertices\"/>\n                    <input offset=\"1\" semantic=\"NORMAL\" source=\"#shape0-lib-normals\"/>\n                    <p>2 0 0 0 1 0 1 1 0 1 15 1 4 2 0 2 2 2 5 3 13 3 4 3 1 4 3 4 5 4 5 5 3 5 13 5 4 6 13 6 0 6 0 7 13 7 15 7 15 8 13 8 3 8 15 9 3 9 1 9 1 10 5 10 8 10 8 11 5 11 6 11 2 12 1 12 9 12 9 13 1 13 8 13 4 14 2 14 12 14 12 15 2 15 9 15 5 16 4 16 6 16 6 17 4 17 12 17 6 18 7 18 8 18 12 19 11 19 6 19 6 20 11 20 10 20 9 21 11 21 12 21 8 22 14 22 9 22 8 23 7 23 14 23 6 24 10 24 7 24 7 25 10 25 14 25 14 26 10 26 11 26 14 27 11 27 9 27 21 28 16 28 20 28 20 29 16 29 30 29 19 30 16 30 21 30 17 31 18 31 19 31 20 32 28 32 17 32 17 33 28 33 18 33 19 34 18 34 16 34 16 35 18 35 30 35 30 36 18 36 28 36 30 37 28 37 20 37 20 38 17 38 23 38 23 39 17 39 22 39 21 40 20 40 24 40 24 41 20 41 23 41 19 42 21 42 25 42 25 43 21 43 24 43 17 44 19 44 22 44 22 45 19 45 25 45 22 46 31 46 23 46 25 47 26 47 22 47 22 48 26 48 27 48 24 49 26 49 25 49 23 50 29 50 24 50 23 51 31 51 29 51 22 52 27 52 31 52 31 53 27 53 29 53 29 54 27 54 26 54 29 55 26 55 24 55 48 56 56 56 32 56 46 57 56 57 48 57 33 58 34 58 46 58 32 59 34 59 33 59 34 60 56 60 46 60 56 61 34 61 32 61 34 62 37 62 35 62 37 63 34 63 35 63 38 64 57 64 39 64 36 65 37 65 38 65 38 66 37 66 57 66 35 67 37 67 36 67 57 68 37 68 35 68 57 69 35 69 39 69 39 70 35 70 42 70 42 71 35 71 40 71 42 72 53 72 43 72 40 73 54 73 42 73 42 74 54 74 53 74 41 75 54 75 40 75 43 76 54 76 41 76 53 77 54 77 43 77 43 78 41 78 45 78 45 79 41 79 49 79 44 80 45 80 47 80 47 81 45 81 49 81 44 82 52 82 48 82 47 83 52 83 44 83 46 84 55 84 47 84 48 85 52 85 46 85 46 86 52 86 55 86 47 87 55 87 52 87 50 88 33 88 36 88 36 89 33 89 35 89 35 90 33 90 46 90 35 91 46 91 40 91 40 92 46 92 47 92 40 93 47 93 41 93 41 94 47 94 49 94 32 95 33 95 51 95 51 96 33 96 50 96 51 97 50 97 38 97 38 98 50 98 36 98 51 99 38 99 32 99 32 100 38 100 39 100 32 101 39 101 48 101 48 102 39 102 42 102 48 103 42 103 44 103 44 104 42 104 43 104 44 105 43 105 45 105 76 106 82 106 75 106 58 107 82 107 76 107 69 108 59 108 58 108 75 109 59 109 69 109 59 110 82 110 58 110 82 111 59 111 75 111 59 112 60 112 62 112 59 113 62 113 60 113 73 114 83 114 77 114 61 115 60 115 73 115 73 116 60 116 83 116 62 117 60 117 61 117 83 118 60 118 62 118 83 119 62 119 77 119 77 120 62 120 78 120 78 121 62 121 70 121 78 122 80 122 63 122 78 123 70 123 80 123 65 124 64 124 70 124 63 125 64 125 65 125 80 126 70 126 64 126 80 127 64 127 63 127 63 128 65 128 66 128 66 129 65 129 71 129 67 130 66 130 68 130 68 131 66 131 71 131 67 132 79 132 76 132 68 133 79 133 67 133 58 134 81 134 68 134 76 135 79 135 58 135 58 136 79 136 81 136 68 137 81 137 79 137 74 138 69 138 61 138 61 139 69 139 62 139 62 140 69 140 58 140 62 141 58 141 70 141 70 142 58 142 68 142 70 143 68 143 65 143 65 144 68 144 71 144 75 145 69 145 72 145 72 146 69 146 74 146 72 147 74 147 73 147 73 148 74 148 61 148 72 149 73 149 75 149 75 150 73 150 77 150 75 151 77 151 76 151 76 152 77 152 78 152 76 153 78 153 67 153 67 154 78 154 63 154 67 155 63 155 66 155 81 156 70 156 64 156 70 157 81 157 64 157 101 158 86 158 85 158 98 159 86 159 101 159 84 160 87 160 98 160 85 161 87 161 84 161 87 162 86 162 98 162 86 163 87 163 85 163 87 164 89 164 90 164 87 165 90 165 89 165 92 166 111 166 93 166 88 167 89 167 92 167 92 168 89 168 111 168 91 169 89 169 88 169 93 170 90 170 91 170 111 171 89 171 90 171 111 172 90 172 93 172 91 173 90 173 89 173 93 174 91 174 104 174 104 175 91 175 94 175 104 176 107 176 105 176 94 177 109 177 104 177 104 178 109 178 107 178 95 179 110 179 94 179 105 180 110 180 95 180 94 181 110 181 109 181 107 182 109 182 110 182 107 183 110 183 105 183 105 184 95 184 106 184 106 185 95 185 96 185 97 186 106 186 100 186 100 187 106 187 96 187 97 188 99 188 101 188 100 189 99 189 97 189 98 190 108 190 100 190 101 191 99 191 98 191 98 192 99 192 108 192 100 193 108 193 99 193 103 194 84 194 88 194 88 195 84 195 91 195 91 196 84 196 98 196 91 197 98 197 94 197 94 198 98 198 100 198 94 199 100 199 95 199 95 200 100 200 96 200 85 201 84 201 102 201 102 202 84 202 103 202 102 203 103 203 92 203 92 204 103 204 88 204 102 205 92 205 85 205 85 206 92 206 93 206 85 207 93 207 101 207 101 208 93 208 104 208 101 209 104 209 97 209 97 210 104 210 105 210 97 211 105 211 106 211 108 212 110 212 109 212 108 213 109 213 110 213 128 214 136 214 114 214 113 215 136 215 128 215 112 216 115 216 113 216 114 217 115 217 112 217 115 218 136 218 113 218 136 219 115 219 114 219 131 220 137 220 132 220 118 221 116 221 131 221 131 222 116 222 137 222 117 223 116 223 118 223 132 224 116 224 117 224 137 225 116 225 132 225 132 226 117 226 122 226 122 227 117 227 119 227 122 228 120 228 123 228 119 229 134 229 122 229 122 230 134 230 120 230 121 231 134 231 119 231 123 232 134 232 121 232 120 233 134 233 123 233 123 234 121 234 133 234 133 235 121 235 124 235 125 236 133 236 127 236 127 237 133 237 124 237 125 238 135 238 128 238 127 239 135 239 125 239 113 240 126 240 127 240 128 241 135 241 113 241 113 242 135 242 126 242 127 243 126 243 135 243 130 244 112 244 118 244 118 245 112 245 117 245 117 246 112 246 113 246 117 247 113 247 119 247 119 248 113 248 127 248 119 249 127 249 121 249 121 250 127 250 124 250 114 251 112 251 129 251 129 252 112 252 130 252 129 253 130 253 131 253 131 254 130 254 118 254 129 255 131 255 114 255 114 256 131 256 132 256 114 257 132 257 128 257 128 258 132 258 122 258 128 259 122 259 125 259 125 260 122 260 123 260 125 261 123 261 133 261 138 262 162 262 140 262 139 263 162 263 138 263 156 264 141 264 139 264 140 265 141 265 156 265 141 266 162 266 139 266 162 267 141 267 140 267 141 268 144 268 145 268 141 269 145 269 144 269 146 270 163 270 142 270 143 271 144 271 146 271 146 272 144 272 163 272 145 273 144 273 143 273 163 274 144 274 145 274 163 275 145 275 142 275 142 276 145 276 149 276 149 277 145 277 148 277 149 278 159 278 158 278 148 279 161 279 149 279 149 280 161 280 159 280 158 281 161 281 147 281 159 282 161 282 158 282 147 283 161 283 148 283 158 284 147 284 152 284 152 285 147 285 150 285 151 286 152 286 153 286 153 287 152 287 150 287 151 288 154 288 138 288 153 289 154 289 151 289 139 290 160 290 153 290 138 291 154 291 139 291 139 292 154 292 160 292 153 293 160 293 154 293 155 294 156 294 143 294 143 295 156 295 145 295 145 296 156 296 139 296 145 297 139 297 148 297 148 298 139 298 153 298 148 299 153 299 147 299 147 300 153 300 150 300 140 301 156 301 157 301 157 302 156 302 155 302 157 303 155 303 146 303 146 304 155 304 143 304 157 305 146 305 140 305 140 306 146 306 142 306 140 307 142 307 138 307 138 308 142 308 149 308 138 309 149 309 151 309 151 310 149 310 158 310 151 311 158 311 152 311 160 312 148 312 161 312 148 313 160 313 161 313 177 314 188 314 164 314 175 315 188 315 177 315 179 316 189 316 175 316 164 317 189 317 179 317 189 318 188 318 175 318 188 319 189 319 164 319 167 320 187 320 168 320 166 321 165 321 167 321 167 322 165 322 187 322 169 323 165 323 166 323 168 324 165 324 169 324 187 325 165 325 168 325 168 326 169 326 170 326 170 327 169 327 180 327 170 328 184 328 171 328 180 329 186 329 170 329 170 330 186 330 184 330 181 331 186 331 180 331 171 332 186 332 181 332 184 333 186 333 171 333 171 334 181 334 183 334 183 335 181 335 172 335 173 336 183 336 174 336 174 337 183 337 172 337 173 338 176 338 177 338 174 339 176 339 173 339 175 340 185 340 174 340 177 341 176 341 175 341 175 342 176 342 185 342 174 343 185 343 176 343 178 344 179 344 166 344 166 345 179 345 169 345 169 346 179 346 175 346 169 347 175 347 180 347 180 348 175 348 174 348 180 349 174 349 181 349 181 350 174 350 172 350 164 351 179 351 182 351 182 352 179 352 178 352 182 353 178 353 167 353 167 354 178 354 166 354 182 355 167 355 164 355 164 356 167 356 168 356 164 357 168 357 177 357 177 358 168 358 170 358 177 359 170 359 173 359 173 360 170 360 171 360 173 361 171 361 183 361 192 362 214 362 190 362 191 363 214 363 192 363 206 364 193 364 191 364 190 365 193 365 206 365 193 366 214 366 191 366 214 367 193 367 190 367 194 368 215 368 198 368 196 369 197 369 194 369 194 370 197 370 215 370 195 371 197 371 196 371 198 372 197 372 195 372 215 373 197 373 198 373 198 374 195 374 199 374 199 375 195 375 201 375 199 376 210 376 202 376 199 377 201 377 210 377 200 378 212 378 201 378 202 379 212 379 200 379 210 380 201 380 212 380 210 381 212 381 202 381 202 382 200 382 209 382 209 383 200 383 205 383 203 384 209 384 204 384 204 385 209 385 205 385 203 386 213 386 192 386 204 387 213 387 203 387 191 388 211 388 204 388 192 389 213 389 191 389 191 390 213 390 211 390 204 391 211 391 213 391 208 392 206 392 196 392 196 393 206 393 195 393 195 394 206 394 191 394 195 395 191 395 201 395 201 396 191 396 204 396 201 397 204 397 200 397 200 398 204 398 205 398 190 399 206 399 207 399 207 400 206 400 208 400 207 401 208 401 194 401 194 402 208 402 196 402 207 403 194 403 190 403 190 404 194 404 198 404 190 405 198 405 192 405 192 406 198 406 199 406 192 407 199 407 203 407 203 408 199 408 202 408 203 409 202 409 209 409 211 410 212 410 201 410 211 411 201 411 212 411 230 412 239 412 216 412 231 413 239 413 230 413 217 414 241 414 231 414 216 415 241 415 217 415 241 416 239 416 231 416 239 417 241 417 216 417 241 418 219 418 222 418 241 419 222 419 219 419 220 420 240 420 221 420 218 421 219 421 220 421 220 422 219 422 240 422 222 423 219 423 218 423 240 424 219 424 222 424 240 425 222 425 221 425 221 426 222 426 225 426 225 427 222 427 223 427 225 428 235 428 234 428 223 429 237 429 225 429 225 430 237 430 235 430 224 431 237 431 223 431 234 432 237 432 224 432 235 433 237 433 234 433 234 434 224 434 227 434 227 435 224 435 226 435 229 436 227 436 228 436 228 437 227 437 226 437 229 438 238 438 230 438 228 439 238 439 229 439 231 440 236 440 228 440 230 441 238 441 231 441 231 442 238 442 236 442 228 443 236 443 238 443 232 444 217 444 218 444 218 445 217 445 222 445 222 446 217 446 231 446 222 447 231 447 223 447 223 448 231 448 228 448 223 449 228 449 224 449 224 450 228 450 226 450 216 451 217 451 233 451 233 452 217 452 232 452 233 453 232 453 220 453 220 454 232 454 218 454 233 455 220 455 216 455 216 456 220 456 221 456 216 457 221 457 230 457 230 458 221 458 225 458 230 459 225 459 229 459 229 460 225 460 234 460 229 461 234 461 227 461 242 462 266 462 244 462 245 463 266 463 242 463 243 464 246 464 245 464 244 465 246 465 243 465 246 466 266 466 245 466 266 467 246 467 244 467 246 468 248 468 250 468 248 469 246 469 250 469 247 470 267 470 249 470 258 471 248 471 247 471 247 472 248 472 267 472 250 473 248 473 258 473 267 474 248 474 250 474 267 475 250 475 249 475 249 476 250 476 253 476 253 477 250 477 252 477 253 478 262 478 251 478 252 479 264 479 253 479 253 480 264 480 262 480 254 481 264 481 252 481 251 482 264 482 254 482 262 483 264 483 251 483 251 484 254 484 261 484 261 485 254 485 255 485 257 486 261 486 256 486 256 487 261 487 255 487 257 488 265 488 242 488 256 489 265 489 257 489 245 490 263 490 256 490 242 491 265 491 245 491 245 492 265 492 263 492 256 493 263 493 265 493 260 494 243 494 258 494 258 495 243 495 250 495 250 496 243 496 245 496 250 497 245 497 252 497 252 498 245 498 256 498 252 499 256 499 254 499 254 500 256 500 255 500 244 501 243 501 259 501 259 502 243 502 260 502 259 503 260 503 247 503 247 504 260 504 258 504 259 505 247 505 244 505 244 506 247 506 249 506 244 507 249 507 242 507 242 508 249 508 253 508 242 509 253 509 257 509 257 510 253 510 251 510 257 511 251 511 261 511 286 512 269 512 271 512 283 513 269 513 286 513 268 514 270 514 283 514 271 515 270 515 268 515 270 516 269 516 283 516 269 517 270 517 271 517 270 518 275 518 273 518 275 519 270 519 273 519 272 520 293 520 276 520 274 521 275 521 272 521 272 522 275 522 293 522 273 523 275 523 274 523 293 524 275 524 273 524 293 525 273 525 276 525 276 526 273 526 279 526 279 527 273 527 277 527 279 528 290 528 280 528 277 529 292 529 279 529 279 530 292 530 290 530 278 531 292 531 277 531 280 532 292 532 278 532 290 533 292 533 280 533 280 534 278 534 281 534 281 535 278 535 282 535 289 536 281 536 284 536 284 537 281 537 282 537 289 538 285 538 286 538 284 539 285 539 289 539 283 540 291 540 284 540 286 541 285 541 283 541 283 542 285 542 291 542 284 543 291 543 285 543 287 544 268 544 274 544 274 545 268 545 273 545 273 546 268 546 283 546 273 547 283 547 277 547 277 548 283 548 284 548 277 549 284 549 278 549 278 550 284 550 282 550 271 551 268 551 288 551 288 552 268 552 287 552 288 553 287 553 272 553 272 554 287 554 274 554 288 555 272 555 271 555 271 556 272 556 276 556 271 557 276 557 286 557 286 558 276 558 279 558 286 559 279 559 289 559 289 560 279 560 280 560 289 561 280 561 281 561 312 562 295 562 294 562 304 563 295 563 312 563 307 564 296 564 304 564 294 565 296 565 307 565 296 566 295 566 304 566 295 567 296 567 294 567 296 568 297 568 308 568 296 569 308 569 297 569 299 570 319 570 300 570 298 571 297 571 299 571 299 572 297 572 319 572 308 573 297 573 298 573 319 574 297 574 308 574 319 575 308 575 300 575 300 576 308 576 313 576 313 577 308 577 309 577 313 578 315 578 301 578 309 579 317 579 313 579 313 580 317 580 315 580 302 581 317 581 309 581 301 582 317 582 302 582 315 583 317 583 301 583 301 584 302 584 314 584 314 585 302 585 303 585 306 586 314 586 305 586 305 587 314 587 303 587 306 588 318 588 312 588 305 589 318 589 306 589 304 590 316 590 305 590 312 591 318 591 304 591 304 592 318 592 316 592 305 593 316 593 318 593 311 594 307 594 298 594 298 595 307 595 308 595 308 596 307 596 304 596 308 597 304 597 309 597 309 598 304 598 305 598 309 599 305 599 302 599 302 600 305 600 303 600 294 601 307 601 310 601 310 602 307 602 311 602 310 603 311 603 299 603 299 604 311 604 298 604 310 605 299 605 294 605 294 606 299 606 300 606 294 607 300 607 312 607 312 608 300 608 313 608 312 609 313 609 306 609 306 610 313 610 301 610 306 611 301 611 314 611 335 612 322 612 321 612 338 613 322 613 335 613 320 614 323 614 338 614 321 615 323 615 320 615 323 616 322 616 338 616 322 617 323 617 321 617 323 618 324 618 326 618 324 619 323 619 326 619 328 620 346 620 329 620 325 621 326 621 328 621 328 622 326 622 346 622 327 623 324 623 325 623 329 624 326 624 327 624 327 625 326 625 324 625 324 626 326 626 325 626 346 627 326 627 329 627 329 628 327 628 330 628 330 629 327 629 331 629 330 630 343 630 333 630 331 631 344 631 330 631 330 632 344 632 343 632 332 633 344 633 331 633 333 634 344 634 332 634 343 635 344 635 333 635 333 636 332 636 342 636 342 637 332 637 339 637 334 638 342 638 336 638 336 639 342 639 339 639 334 640 345 640 335 640 336 641 345 641 334 641 338 642 337 642 336 642 335 643 345 643 338 643 338 644 345 644 337 644 336 645 337 645 345 645 341 646 320 646 325 646 325 647 320 647 327 647 327 648 320 648 338 648 327 649 338 649 331 649 331 650 338 650 336 650 331 651 336 651 332 651 332 652 336 652 339 652 321 653 320 653 340 653 340 654 320 654 341 654 340 655 341 655 328 655 328 656 341 656 325 656 340 657 328 657 321 657 321 658 328 658 329 658 321 659 329 659 335 659 335 660 329 660 330 660 335 661 330 661 334 661 334 662 330 662 333 662 334 663 333 663 342 663 347 664 349 664 348 664 348 665 349 665 387 665 348 666 387 666 418 666 418 667 387 667 350 667 418 668 350 668 419 668 419 669 350 669 408 669 443 670 419 670 408 670 443 671 408 671 351 671 443 672 351 672 352 672 352 673 351 673 407 673 352 674 407 674 353 674 353 675 407 675 354 675 353 676 354 676 355 676 355 677 354 677 389 677 355 678 389 678 356 678 356 679 389 679 388 679 356 680 388 680 358 680 358 681 388 681 357 681 358 682 357 682 466 682 358 683 466 683 421 683 421 684 466 684 403 684 421 685 403 685 471 685 471 686 403 686 470 686 471 687 470 687 359 687 359 688 470 688 360 688 360 689 470 689 362 689 360 690 362 690 361 690 361 691 362 691 411 691 361 692 411 692 363 692 363 693 411 693 364 693 363 694 364 694 365 694 365 695 364 695 406 695 365 696 406 696 367 696 367 697 406 697 449 697 366 698 423 698 449 698 449 699 423 699 367 699 423 700 366 700 368 700 368 701 366 701 405 701 368 702 405 702 424 702 424 703 405 703 369 703 424 704 369 704 425 704 425 705 369 705 404 705 425 706 404 706 446 706 446 707 404 707 370 707 446 708 370 708 422 708 422 709 370 709 402 709 422 710 402 710 401 710 422 711 401 711 371 711 371 712 476 712 442 712 442 713 476 713 396 713 442 714 396 714 429 714 429 715 396 715 417 715 429 716 417 716 426 716 426 717 417 717 400 717 426 718 400 718 373 718 373 719 400 719 372 719 373 720 372 720 374 720 374 721 372 721 412 721 374 722 412 722 427 722 375 723 427 723 413 723 413 724 427 724 412 724 375 725 413 725 428 725 428 726 413 726 399 726 428 727 399 727 376 727 376 728 399 728 377 728 376 729 377 729 444 729 444 730 377 730 398 730 444 731 398 731 416 731 416 732 398 732 397 732 416 733 397 733 477 733 477 734 397 734 395 734 477 735 395 735 479 735 477 736 479 736 431 736 394 737 431 737 479 737 431 738 394 738 481 738 481 739 394 739 483 739 481 740 483 740 433 740 433 741 483 741 434 741 434 742 483 742 378 742 434 743 378 743 379 743 379 744 378 744 409 744 379 745 409 745 435 745 435 746 409 746 393 746 435 747 393 747 436 747 436 748 393 748 380 748 436 749 380 749 382 749 382 750 380 750 392 750 382 751 392 751 381 751 381 752 383 752 382 752 383 753 381 753 384 753 383 754 384 754 437 754 437 755 384 755 391 755 437 756 391 756 439 756 439 757 391 757 410 757 439 758 410 758 438 758 438 759 410 759 390 759 438 760 390 760 432 760 432 761 390 761 385 761 432 762 385 762 440 762 440 763 385 763 459 763 440 764 459 764 441 764 441 765 459 765 464 765 441 766 464 766 386 766 441 767 386 767 420 767 420 768 386 768 457 768 420 769 457 769 347 769 347 770 457 770 349 770 387 771 349 771 350 771 350 772 349 772 456 772 350 773 456 773 408 773 386 774 357 774 457 774 457 775 357 775 388 775 457 776 388 776 389 776 457 777 389 777 458 777 458 778 389 778 407 778 458 779 407 779 351 779 385 780 483 780 459 780 459 781 483 781 460 781 390 782 483 782 385 782 391 783 384 783 410 783 384 784 381 784 410 784 410 785 381 785 452 785 381 786 392 786 452 786 380 787 452 787 392 787 393 788 409 788 380 788 380 789 409 789 452 789 378 790 390 790 409 790 409 791 390 791 452 791 483 792 390 792 378 792 394 793 482 793 483 793 482 794 394 794 480 794 482 795 480 795 430 795 394 796 479 796 480 796 396 797 479 797 395 797 473 798 476 798 401 798 476 799 473 799 474 799 396 800 395 800 417 800 417 801 395 801 397 801 417 802 397 802 398 802 417 803 398 803 414 803 414 804 398 804 399 804 414 805 399 805 413 805 398 806 377 806 399 806 413 807 415 807 414 807 415 808 413 808 412 808 372 809 400 809 412 809 412 810 400 810 415 810 401 811 476 811 371 811 401 812 402 812 469 812 469 813 402 813 470 813 469 814 470 814 403 814 469 815 403 815 467 815 402 816 370 816 470 816 470 817 370 817 362 817 362 818 370 818 445 818 404 819 450 819 370 819 369 820 405 820 404 820 404 821 405 821 450 821 405 822 366 822 450 822 450 823 366 823 449 823 364 824 411 824 406 824 406 825 411 825 449 825 362 826 445 826 411 826 386 827 466 827 357 827 389 828 354 828 407 828 456 829 351 829 408 829 459 830 460 830 463 830 459 831 463 831 464 831 403 832 466 832 467 832 349 833 457 833 456 833 351 834 456 834 458 834 370 835 450 835 445 835 445 836 449 836 411 836 417 837 415 837 400 837 417 838 416 838 415 838 415 839 375 839 414 839 414 840 416 840 417 840 414 841 375 841 416 841 415 842 416 842 375 842 348 843 418 843 347 843 347 844 418 844 455 844 418 845 419 845 455 845 455 846 419 846 443 846 352 847 454 847 443 847 353 848 355 848 352 848 352 849 355 849 454 849 356 850 420 850 355 850 355 851 420 851 454 851 358 852 420 852 356 852 358 853 465 853 462 853 421 854 465 854 358 854 465 855 421 855 468 855 465 856 468 856 467 856 359 857 422 857 472 857 472 858 422 858 371 858 472 859 371 859 474 859 422 860 359 860 446 860 446 861 359 861 360 861 446 862 360 862 361 862 446 863 361 863 448 863 448 864 361 864 365 864 448 865 365 865 367 865 361 866 363 866 365 866 367 867 447 867 448 867 367 868 423 868 447 868 368 869 447 869 423 869 424 870 425 870 368 870 368 871 425 871 447 871 442 872 475 872 371 872 442 873 477 873 475 873 429 874 477 874 442 874 426 875 416 875 429 875 373 876 374 876 426 876 426 877 374 877 375 877 374 878 427 878 375 878 376 879 444 879 428 879 428 880 444 880 375 880 477 881 429 881 416 881 431 882 478 882 477 882 433 883 432 883 440 883 433 884 440 884 460 884 460 885 440 885 461 885 432 886 433 886 438 886 438 887 433 887 434 887 434 888 379 888 453 888 453 889 379 889 436 889 453 890 436 890 382 890 379 891 435 891 436 891 453 892 382 892 383 892 437 893 439 893 383 893 383 894 439 894 453 894 438 895 434 895 439 895 439 896 434 896 451 896 462 897 440 897 441 897 462 898 441 898 358 898 441 899 420 899 358 899 431 900 481 900 430 900 431 901 430 901 478 901 371 902 475 902 474 902 421 903 471 903 468 903 440 904 462 904 461 904 461 905 462 905 463 905 347 906 455 906 420 906 454 907 455 907 443 907 439 908 451 908 453 908 446 909 447 909 425 909 416 910 375 910 444 910 375 911 416 911 426 911 445 912 446 912 448 912 445 913 450 913 446 913 447 914 446 914 450 914 448 915 449 915 445 915 449 916 448 916 447 916 447 917 450 917 449 917 410 918 451 918 390 918 410 919 453 919 451 919 453 920 452 920 434 920 453 921 410 921 452 921 451 922 434 922 390 922 390 923 434 923 452 923 458 924 456 924 454 924 456 925 455 925 454 925 456 926 457 926 455 926 454 927 457 927 458 927 457 928 454 928 420 928 457 929 420 929 455 929 463 930 460 930 461 930 463 931 462 931 464 931 464 932 462 932 386 932 462 933 465 933 386 933 465 934 466 934 386 934 466 935 465 935 467 935 467 936 468 936 469 936 468 937 471 937 469 937 471 938 359 938 469 938 469 939 359 939 401 939 472 940 401 940 359 940 472 941 473 941 401 941 474 942 473 942 472 942 475 943 476 943 474 943 477 944 476 944 475 944 396 945 477 945 478 945 396 946 476 946 477 946 478 947 479 947 396 947 478 948 430 948 479 948 479 949 430 949 480 949 482 950 430 950 481 950 481 951 433 951 482 951 483 952 482 952 433 952 433 953 460 953 483 953 572 954 522 954 484 954 484 955 522 955 520 955 484 956 520 956 553 956 553 957 520 957 521 957 553 958 521 958 485 958 485 959 521 959 585 959 585 960 555 960 485 960 555 961 585 961 544 961 555 962 544 962 554 962 554 963 544 963 486 963 554 964 486 964 487 964 487 965 486 965 543 965 487 966 543 966 573 966 573 967 543 967 523 967 573 968 523 968 556 968 556 969 523 969 586 969 556 970 586 970 595 970 595 971 586 971 596 971 595 972 596 972 488 972 488 973 596 973 489 973 488 974 489 974 600 974 600 975 489 975 601 975 600 976 601 976 558 976 558 977 601 977 559 977 559 978 601 978 548 978 559 979 548 979 490 979 490 980 548 980 549 980 490 981 549 981 491 981 491 982 549 982 492 982 491 983 492 983 493 983 493 984 492 984 494 984 493 985 494 985 542 985 560 986 542 986 541 986 560 987 493 987 542 987 560 988 541 988 495 988 495 989 541 989 561 989 561 990 541 990 496 990 561 991 496 991 562 991 562 992 496 992 540 992 562 993 540 993 497 993 497 994 540 994 498 994 497 995 498 995 605 995 605 996 498 996 539 996 605 997 539 997 606 997 605 998 606 998 499 998 499 999 606 999 609 999 499 1000 609 1000 501 1000 501 1001 609 1001 500 1001 501 1002 500 1002 564 1002 564 1003 500 1003 532 1003 564 1004 532 1004 576 1004 576 1005 532 1005 502 1005 576 1006 502 1006 503 1006 503 1007 502 1007 537 1007 503 1008 537 1008 504 1008 504 1009 537 1009 538 1009 504 1010 538 1010 506 1010 506 1011 538 1011 536 1011 505 1012 506 1012 535 1012 535 1013 506 1013 536 1013 505 1014 535 1014 508 1014 508 1015 535 1015 507 1015 508 1016 507 1016 509 1016 509 1017 507 1017 510 1017 509 1018 510 1018 563 1018 563 1019 510 1019 534 1019 563 1020 534 1020 577 1020 577 1021 534 1021 533 1021 577 1022 533 1022 613 1022 613 1023 533 1023 531 1023 613 1024 531 1024 614 1024 613 1025 614 1025 511 1025 511 1026 614 1026 620 1026 620 1027 614 1027 530 1027 620 1028 530 1028 566 1028 566 1029 530 1029 512 1029 512 1030 530 1030 547 1030 512 1031 547 1031 567 1031 567 1032 547 1032 529 1032 567 1033 529 1033 568 1033 568 1034 529 1034 513 1034 568 1035 513 1035 514 1035 514 1036 513 1036 528 1036 514 1037 528 1037 569 1037 569 1038 528 1038 581 1038 515 1039 570 1039 581 1039 569 1040 581 1040 570 1040 570 1041 515 1041 516 1041 516 1042 515 1042 527 1042 516 1043 527 1043 517 1043 517 1044 527 1044 526 1044 517 1045 526 1045 575 1045 575 1046 526 1046 546 1046 575 1047 546 1047 518 1047 518 1048 546 1048 525 1048 518 1049 525 1049 565 1049 565 1050 525 1050 524 1050 565 1051 524 1051 587 1051 565 1052 587 1052 519 1052 519 1053 587 1053 589 1053 519 1054 589 1054 594 1054 594 1055 589 1055 593 1055 594 1056 593 1056 571 1056 571 1057 593 1057 557 1057 557 1058 593 1058 545 1058 557 1059 545 1059 572 1059 572 1060 545 1060 522 1060 520 1061 522 1061 521 1061 521 1062 522 1062 585 1062 545 1063 586 1063 522 1063 593 1064 596 1064 545 1064 545 1065 596 1065 586 1065 586 1066 523 1066 584 1066 584 1067 523 1067 486 1067 584 1068 486 1068 544 1068 589 1069 591 1069 593 1069 524 1070 588 1070 587 1070 525 1071 530 1071 524 1071 524 1072 530 1072 588 1072 546 1073 547 1073 525 1073 526 1074 527 1074 546 1074 546 1075 527 1075 583 1075 527 1076 515 1076 583 1076 583 1077 515 1077 581 1077 513 1078 529 1078 528 1078 528 1079 529 1079 581 1079 530 1080 525 1080 547 1080 530 1081 619 1081 588 1081 614 1082 619 1082 530 1082 615 1083 614 1083 531 1083 615 1084 531 1084 612 1084 612 1085 531 1085 500 1085 612 1086 500 1086 609 1086 610 1087 609 1087 607 1087 500 1088 531 1088 532 1088 532 1089 531 1089 533 1089 532 1090 533 1090 551 1090 551 1091 533 1091 534 1091 551 1092 534 1092 507 1092 551 1093 507 1093 535 1093 534 1094 510 1094 507 1094 551 1095 535 1095 536 1095 538 1096 502 1096 536 1096 537 1097 502 1097 538 1097 532 1098 552 1098 502 1098 609 1099 606 1099 607 1099 606 1100 539 1100 601 1100 606 1101 601 1101 603 1101 603 1102 601 1102 489 1102 539 1103 498 1103 601 1103 601 1104 498 1104 548 1104 548 1105 498 1105 540 1105 496 1106 541 1106 540 1106 540 1107 541 1107 580 1107 580 1108 541 1108 542 1108 580 1109 542 1109 579 1109 494 1110 579 1110 542 1110 492 1111 549 1111 494 1111 494 1112 549 1112 579 1112 548 1113 540 1113 549 1113 549 1114 540 1114 579 1114 523 1115 543 1115 486 1115 584 1116 544 1116 585 1116 589 1117 590 1117 591 1117 593 1118 591 1118 596 1118 603 1119 489 1119 599 1119 614 1120 616 1120 619 1120 586 1121 585 1121 522 1121 547 1122 581 1122 529 1122 546 1123 583 1123 547 1123 532 1124 551 1124 552 1124 502 1125 551 1125 536 1125 564 1126 550 1126 552 1126 502 1127 550 1127 551 1127 550 1128 563 1128 551 1128 502 1129 552 1129 550 1129 552 1130 551 1130 564 1130 564 1131 551 1131 563 1131 484 1132 553 1132 572 1132 572 1133 553 1133 574 1133 553 1134 485 1134 574 1134 485 1135 555 1135 574 1135 554 1136 573 1136 555 1136 555 1137 573 1137 574 1137 487 1138 573 1138 554 1138 556 1139 557 1139 573 1139 595 1140 557 1140 556 1140 488 1141 598 1141 595 1141 598 1142 488 1142 599 1142 599 1143 488 1143 600 1143 602 1144 600 1144 558 1144 602 1145 558 1145 604 1145 604 1146 558 1146 605 1146 604 1147 605 1147 499 1147 604 1148 499 1148 608 1148 605 1149 558 1149 497 1149 497 1150 558 1150 559 1150 559 1151 490 1151 493 1151 490 1152 491 1152 493 1152 560 1153 578 1153 493 1153 495 1154 578 1154 560 1154 561 1155 562 1155 495 1155 495 1156 562 1156 578 1156 501 1157 613 1157 499 1157 499 1158 613 1158 611 1158 564 1159 613 1159 501 1159 503 1160 504 1160 576 1160 576 1161 504 1161 550 1161 504 1162 506 1162 550 1162 550 1163 506 1163 505 1163 508 1164 563 1164 505 1164 509 1165 563 1165 508 1165 613 1166 564 1166 577 1166 511 1167 617 1167 613 1167 620 1168 566 1168 621 1168 621 1169 566 1169 565 1169 621 1170 565 1170 519 1170 621 1171 519 1171 592 1171 565 1172 566 1172 518 1172 518 1173 566 1173 512 1173 512 1174 567 1174 582 1174 582 1175 567 1175 514 1175 582 1176 514 1176 569 1176 567 1177 568 1177 514 1177 569 1178 570 1178 582 1178 517 1179 575 1179 516 1179 516 1180 575 1180 570 1180 591 1181 519 1181 594 1181 591 1182 594 1182 595 1182 595 1183 594 1183 571 1183 571 1184 557 1184 595 1184 511 1185 620 1185 618 1185 511 1186 618 1186 617 1186 519 1187 591 1187 592 1187 574 1188 557 1188 572 1188 575 1189 518 1189 570 1189 497 1190 578 1190 562 1190 493 1191 578 1191 559 1191 505 1192 563 1192 550 1192 550 1193 564 1193 576 1193 564 1194 563 1194 577 1194 540 1195 559 1195 579 1195 559 1196 540 1196 497 1196 497 1197 540 1197 580 1197 578 1198 579 1198 559 1198 580 1199 578 1199 497 1199 578 1200 580 1200 579 1200 512 1201 582 1201 547 1201 570 1202 518 1202 583 1202 582 1203 581 1203 547 1203 581 1204 570 1204 583 1204 570 1205 581 1205 582 1205 583 1206 518 1206 547 1206 512 1207 547 1207 518 1207 557 1208 585 1208 586 1208 584 1209 573 1209 586 1209 557 1210 574 1210 585 1210 584 1211 574 1211 573 1211 584 1212 585 1212 574 1212 557 1213 586 1213 573 1213 588 1214 621 1214 587 1214 587 1215 621 1215 589 1215 621 1216 592 1216 589 1216 589 1217 592 1217 590 1217 590 1218 592 1218 591 1218 595 1219 596 1219 591 1219 595 1220 598 1220 596 1220 597 1221 596 1221 598 1221 597 1222 598 1222 596 1222 596 1223 598 1223 489 1223 598 1224 599 1224 489 1224 599 1225 600 1225 603 1225 603 1226 600 1226 602 1226 602 1227 606 1227 603 1227 602 1228 604 1228 606 1228 604 1229 607 1229 606 1229 608 1230 607 1230 604 1230 608 1231 610 1231 607 1231 610 1232 608 1232 499 1232 610 1233 499 1233 611 1233 610 1234 611 1234 609 1234 609 1235 611 1235 612 1235 613 1236 612 1236 611 1236 612 1237 613 1237 615 1237 615 1238 613 1238 617 1238 615 1239 617 1239 614 1239 614 1240 617 1240 616 1240 618 1241 616 1241 617 1241 616 1242 618 1242 619 1242 619 1243 618 1243 620 1243 620 1244 588 1244 619 1244 620 1245 621 1245 588 1245 664 1246 622 1246 624 1246 624 1247 622 1247 623 1247 624 1248 623 1248 625 1248 625 1249 623 1249 665 1249 625 1250 665 1250 728 1250 728 1251 665 1251 626 1251 728 1252 626 1252 683 1252 683 1253 692 1253 728 1253 692 1254 683 1254 667 1254 692 1255 667 1255 627 1255 627 1256 667 1256 628 1256 627 1257 628 1257 693 1257 693 1258 628 1258 629 1258 693 1259 629 1259 712 1259 712 1260 629 1260 666 1260 712 1261 666 1261 694 1261 694 1262 666 1262 682 1262 694 1263 682 1263 742 1263 694 1264 742 1264 630 1264 630 1265 742 1265 676 1265 630 1266 676 1266 695 1266 695 1267 676 1267 745 1267 695 1268 745 1268 696 1268 696 1269 745 1269 698 1269 698 1270 745 1270 678 1270 698 1271 678 1271 699 1271 699 1272 678 1272 681 1272 699 1273 681 1273 631 1273 631 1274 681 1274 632 1274 631 1275 632 1275 633 1275 633 1276 632 1276 680 1276 633 1277 680 1277 635 1277 635 1278 680 1278 634 1278 635 1279 634 1279 721 1279 721 1280 634 1280 636 1280 721 1281 636 1281 700 1281 700 1282 636 1282 637 1282 700 1283 637 1283 638 1283 638 1284 637 1284 639 1284 638 1285 639 1285 713 1285 713 1286 639 1286 679 1286 713 1287 679 1287 641 1287 641 1288 679 1288 640 1288 641 1289 640 1289 747 1289 747 1290 640 1290 677 1290 747 1291 677 1291 749 1291 747 1292 749 1292 697 1292 697 1293 749 1293 752 1293 697 1294 752 1294 710 1294 710 1295 752 1295 642 1295 710 1296 642 1296 643 1296 643 1297 642 1297 689 1297 643 1298 689 1298 701 1298 701 1299 689 1299 675 1299 701 1300 675 1300 644 1300 644 1301 675 1301 645 1301 644 1302 645 1302 702 1302 702 1303 645 1303 674 1303 702 1304 674 1304 647 1304 715 1305 647 1305 646 1305 647 1306 715 1306 702 1306 715 1307 646 1307 703 1307 703 1308 646 1308 673 1308 703 1309 673 1309 648 1309 648 1310 673 1310 649 1310 648 1311 649 1311 714 1311 714 1312 649 1312 672 1312 714 1313 672 1313 717 1313 717 1314 672 1314 671 1314 717 1315 671 1315 755 1315 755 1316 671 1316 670 1316 755 1317 670 1317 754 1317 755 1318 754 1318 709 1318 709 1319 754 1319 650 1319 709 1320 650 1320 760 1320 760 1321 650 1321 761 1321 760 1322 761 1322 704 1322 704 1323 761 1323 705 1323 705 1324 761 1324 651 1324 705 1325 651 1325 706 1325 706 1326 651 1326 686 1326 706 1327 686 1327 652 1327 652 1328 686 1328 653 1328 652 1329 653 1329 656 1329 656 1330 653 1330 654 1330 656 1331 654 1331 657 1331 657 1332 655 1332 656 1332 657 1333 669 1333 655 1333 655 1334 669 1334 658 1334 658 1335 669 1335 659 1335 658 1336 659 1336 660 1336 660 1337 659 1337 668 1337 660 1338 668 1338 707 1338 707 1339 668 1339 687 1339 707 1340 687 1340 661 1340 661 1341 687 1341 688 1341 661 1342 688 1342 732 1342 732 1343 688 1343 684 1343 732 1344 684 1344 663 1344 732 1345 663 1345 662 1345 662 1346 663 1346 737 1346 737 1347 663 1347 740 1347 737 1348 740 1348 708 1348 708 1349 740 1349 711 1349 711 1350 740 1350 685 1350 711 1351 685 1351 664 1351 664 1352 685 1352 622 1352 623 1353 622 1353 665 1353 665 1354 622 1354 730 1354 665 1355 730 1355 626 1355 622 1356 685 1356 730 1356 740 1357 682 1357 685 1357 685 1358 682 1358 666 1358 685 1359 666 1359 629 1359 685 1360 629 1360 729 1360 729 1361 629 1361 667 1361 729 1362 667 1362 683 1362 663 1363 739 1363 740 1363 684 1364 761 1364 663 1364 688 1365 761 1365 684 1365 687 1366 725 1366 688 1366 668 1367 659 1367 687 1367 687 1368 659 1368 725 1368 659 1369 669 1369 725 1369 725 1370 669 1370 657 1370 654 1371 723 1371 657 1371 653 1372 686 1372 654 1372 654 1373 686 1373 723 1373 651 1374 688 1374 686 1374 686 1375 688 1375 723 1375 761 1376 688 1376 651 1376 650 1377 762 1377 761 1377 762 1378 650 1378 757 1378 762 1379 757 1379 759 1379 757 1380 650 1380 754 1380 756 1381 754 1381 642 1381 642 1382 754 1382 670 1382 752 1383 749 1383 751 1383 642 1384 670 1384 689 1384 689 1385 670 1385 671 1385 689 1386 671 1386 672 1386 689 1387 672 1387 690 1387 690 1388 672 1388 673 1388 690 1389 673 1389 646 1389 672 1390 649 1390 673 1390 674 1391 689 1391 647 1391 647 1392 689 1392 646 1392 645 1393 675 1393 674 1393 674 1394 675 1394 689 1394 749 1395 677 1395 746 1395 746 1396 677 1396 745 1396 746 1397 745 1397 676 1397 746 1398 676 1398 744 1398 677 1399 640 1399 745 1399 745 1400 640 1400 678 1400 639 1401 637 1401 679 1401 679 1402 637 1402 722 1402 637 1403 636 1403 722 1403 722 1404 636 1404 634 1404 680 1405 720 1405 634 1405 632 1406 681 1406 680 1406 680 1407 681 1407 720 1407 678 1408 640 1408 681 1408 681 1409 640 1409 720 1409 744 1410 676 1410 742 1410 741 1411 742 1411 740 1411 740 1412 742 1412 682 1412 629 1413 628 1413 667 1413 730 1414 683 1414 626 1414 739 1415 735 1415 736 1415 663 1416 735 1416 739 1416 751 1417 749 1417 750 1417 730 1418 729 1418 683 1418 723 1419 725 1419 657 1419 679 1420 722 1420 640 1420 720 1421 722 1421 634 1421 716 1422 715 1422 646 1422 646 1423 715 1423 690 1423 715 1424 691 1424 690 1424 646 1425 689 1425 716 1425 691 1426 689 1426 690 1426 689 1427 691 1427 716 1427 624 1428 625 1428 664 1428 664 1429 625 1429 728 1429 664 1430 728 1430 731 1430 692 1431 727 1431 728 1431 627 1432 693 1432 692 1432 692 1433 693 1433 727 1433 712 1434 727 1434 693 1434 694 1435 711 1435 712 1435 712 1436 711 1436 727 1436 630 1437 741 1437 694 1437 741 1438 743 1438 744 1438 747 1439 695 1439 696 1439 748 1440 747 1440 697 1440 748 1441 697 1441 750 1441 747 1442 696 1442 641 1442 641 1443 696 1443 698 1443 641 1444 698 1444 718 1444 718 1445 698 1445 719 1445 719 1446 698 1446 699 1446 719 1447 699 1447 633 1447 719 1448 633 1448 635 1448 699 1449 631 1449 633 1449 700 1450 713 1450 721 1450 638 1451 713 1451 700 1451 641 1452 718 1452 713 1452 697 1453 753 1453 750 1453 710 1454 753 1454 697 1454 643 1455 755 1455 710 1455 710 1456 755 1456 753 1456 701 1457 716 1457 643 1457 644 1458 702 1458 701 1458 701 1459 702 1459 716 1459 716 1460 702 1460 715 1460 648 1461 714 1461 703 1461 703 1462 714 1462 715 1462 717 1463 691 1463 714 1463 755 1464 643 1464 717 1464 717 1465 643 1465 691 1465 755 1466 756 1466 753 1466 709 1467 756 1467 755 1467 756 1468 709 1468 758 1468 760 1469 704 1469 732 1469 760 1470 732 1470 733 1470 733 1471 732 1471 662 1471 733 1472 662 1472 734 1472 732 1473 704 1473 661 1473 661 1474 704 1474 705 1474 661 1475 705 1475 707 1475 705 1476 706 1476 724 1476 724 1477 706 1477 656 1477 706 1478 652 1478 656 1478 655 1479 724 1479 656 1479 724 1480 655 1480 726 1480 658 1481 726 1481 655 1481 660 1482 707 1482 658 1482 658 1483 707 1483 726 1483 662 1484 737 1484 736 1484 738 1485 737 1485 708 1485 708 1486 711 1486 694 1486 664 1487 731 1487 711 1487 709 1488 760 1488 758 1488 760 1489 759 1489 758 1489 630 1490 695 1490 743 1490 630 1491 743 1491 741 1491 694 1492 741 1492 708 1492 662 1493 736 1493 734 1493 711 1494 731 1494 727 1494 635 1495 721 1495 719 1495 691 1496 715 1496 714 1496 643 1497 716 1497 691 1497 722 1498 718 1498 640 1498 640 1499 718 1499 719 1499 640 1500 719 1500 720 1500 722 1501 721 1501 713 1501 722 1502 713 1502 718 1502 720 1503 719 1503 721 1503 720 1504 721 1504 722 1504 723 1505 724 1505 725 1505 724 1506 726 1506 725 1506 724 1507 723 1507 705 1507 725 1508 726 1508 707 1508 707 1509 688 1509 725 1509 688 1510 707 1510 705 1510 688 1511 705 1511 723 1511 728 1512 727 1512 729 1512 731 1513 728 1513 730 1513 730 1514 728 1514 729 1514 727 1515 731 1515 685 1515 685 1516 729 1516 727 1516 685 1517 731 1517 730 1517 733 1518 735 1518 663 1518 733 1519 734 1519 735 1519 736 1520 735 1520 734 1520 736 1521 737 1521 739 1521 739 1522 737 1522 738 1522 738 1523 708 1523 739 1523 739 1524 708 1524 740 1524 708 1525 741 1525 740 1525 741 1526 744 1526 742 1526 743 1527 695 1527 744 1527 744 1528 695 1528 746 1528 747 1529 746 1529 695 1529 749 1530 747 1530 748 1530 749 1531 746 1531 747 1531 748 1532 750 1532 749 1532 751 1533 750 1533 753 1533 752 1534 751 1534 753 1534 753 1535 642 1535 752 1535 642 1536 753 1536 756 1536 754 1537 756 1537 757 1537 756 1538 758 1538 757 1538 759 1539 757 1539 758 1539 759 1540 760 1540 762 1540 733 1541 761 1541 760 1541 762 1542 760 1542 761 1542 733 1543 663 1543 761 1543 853 1544 822 1544 833 1544 833 1545 822 1545 796 1545 833 1546 796 1546 763 1546 763 1547 796 1547 764 1547 763 1548 764 1548 765 1548 765 1549 764 1549 819 1549 819 1550 767 1550 765 1550 767 1551 819 1551 766 1551 767 1552 766 1552 834 1552 834 1553 766 1553 818 1553 834 1554 818 1554 768 1554 768 1555 818 1555 817 1555 768 1556 817 1556 852 1556 852 1557 817 1557 769 1557 852 1558 769 1558 770 1558 770 1559 769 1559 797 1559 770 1560 797 1560 835 1560 835 1561 797 1561 816 1561 835 1562 816 1562 877 1562 884 1563 877 1563 882 1563 884 1564 882 1564 771 1564 771 1565 882 1565 837 1565 837 1566 882 1566 811 1566 837 1567 811 1567 838 1567 838 1568 811 1568 827 1568 838 1569 827 1569 772 1569 772 1570 827 1570 814 1570 772 1571 814 1571 854 1571 854 1572 814 1572 815 1572 854 1573 815 1573 773 1573 773 1574 858 1574 854 1574 858 1575 773 1575 813 1575 858 1576 813 1576 839 1576 839 1577 813 1577 812 1577 839 1578 812 1578 840 1578 840 1579 812 1579 775 1579 840 1580 775 1580 774 1580 774 1581 775 1581 826 1581 774 1582 826 1582 855 1582 855 1583 826 1583 810 1583 855 1584 810 1584 885 1584 885 1585 810 1585 886 1585 885 1586 886 1586 836 1586 836 1587 886 1587 891 1587 836 1588 891 1588 842 1588 842 1589 891 1589 804 1589 842 1590 804 1590 841 1590 841 1591 804 1591 805 1591 841 1592 805 1592 776 1592 776 1593 805 1593 809 1593 776 1594 809 1594 778 1594 778 1595 809 1595 777 1595 778 1596 777 1596 843 1596 843 1597 777 1597 808 1597 843 1598 808 1598 844 1598 844 1599 808 1599 828 1599 844 1600 828 1600 779 1600 780 1601 779 1601 828 1601 779 1602 780 1602 781 1602 781 1603 780 1603 782 1603 781 1604 782 1604 783 1604 783 1605 782 1605 807 1605 783 1606 807 1606 856 1606 856 1607 807 1607 784 1607 856 1608 784 1608 845 1608 845 1609 784 1609 806 1609 845 1610 806 1610 898 1610 898 1611 806 1611 897 1611 898 1612 897 1612 904 1612 897 1613 821 1613 904 1613 904 1614 821 1614 820 1614 904 1615 820 1615 785 1615 785 1616 820 1616 848 1616 848 1617 820 1617 825 1617 848 1618 825 1618 849 1618 849 1619 825 1619 803 1619 849 1620 803 1620 786 1620 786 1621 803 1621 802 1621 786 1622 802 1622 787 1622 787 1623 802 1623 801 1623 787 1624 801 1624 789 1624 788 1625 850 1625 789 1625 801 1626 788 1626 789 1626 850 1627 788 1627 790 1627 790 1628 788 1628 800 1628 790 1629 800 1629 791 1629 791 1630 800 1630 799 1630 791 1631 799 1631 792 1631 792 1632 799 1632 824 1632 792 1633 824 1633 863 1633 863 1634 824 1634 793 1634 863 1635 793 1635 846 1635 846 1636 793 1636 798 1636 846 1637 798 1637 906 1637 846 1638 906 1638 847 1638 847 1639 906 1639 794 1639 847 1640 794 1640 875 1640 875 1641 794 1641 874 1641 875 1642 874 1642 795 1642 795 1643 874 1643 851 1643 851 1644 874 1644 823 1644 851 1645 823 1645 853 1645 853 1646 823 1646 822 1646 796 1647 822 1647 764 1647 764 1648 822 1648 866 1648 764 1649 866 1649 819 1649 823 1650 869 1650 822 1650 822 1651 869 1651 866 1651 874 1652 816 1652 823 1652 823 1653 816 1653 797 1653 823 1654 797 1654 869 1654 869 1655 797 1655 769 1655 869 1656 769 1656 865 1656 865 1657 769 1657 818 1657 865 1658 818 1658 766 1658 794 1659 876 1659 874 1659 794 1660 906 1660 871 1660 793 1661 820 1661 798 1661 798 1662 820 1662 902 1662 824 1663 825 1663 793 1663 799 1664 800 1664 824 1664 824 1665 800 1665 862 1665 800 1666 788 1666 862 1666 862 1667 788 1667 801 1667 802 1668 803 1668 801 1668 801 1669 803 1669 861 1669 803 1670 825 1670 861 1670 820 1671 793 1671 825 1671 821 1672 902 1672 820 1672 821 1673 897 1673 899 1673 897 1674 804 1674 891 1674 897 1675 891 1675 893 1675 892 1676 891 1676 888 1676 892 1677 888 1677 890 1677 804 1678 897 1678 805 1678 805 1679 897 1679 806 1679 805 1680 806 1680 832 1680 832 1681 806 1681 784 1681 832 1682 784 1682 829 1682 829 1683 784 1683 782 1683 829 1684 782 1684 780 1684 784 1685 807 1685 782 1685 780 1686 831 1686 829 1686 831 1687 780 1687 828 1687 808 1688 831 1688 828 1688 777 1689 809 1689 808 1689 808 1690 809 1690 831 1690 805 1691 831 1691 809 1691 888 1692 891 1692 886 1692 886 1693 882 1693 883 1693 883 1694 882 1694 877 1694 883 1695 877 1695 879 1695 883 1696 879 1696 881 1696 886 1697 810 1697 882 1697 882 1698 810 1698 811 1698 775 1699 812 1699 826 1699 812 1700 813 1700 826 1700 826 1701 813 1701 859 1701 859 1702 813 1702 773 1702 815 1703 859 1703 773 1703 814 1704 827 1704 815 1704 815 1705 827 1705 859 1705 878 1706 877 1706 816 1706 878 1707 816 1707 876 1707 876 1708 816 1708 874 1708 769 1709 817 1709 818 1709 865 1710 766 1710 819 1710 865 1711 819 1711 866 1711 902 1712 906 1712 798 1712 794 1713 871 1713 873 1713 794 1714 873 1714 876 1714 821 1715 899 1715 901 1715 901 1716 899 1716 900 1716 821 1717 901 1717 902 1717 861 1718 862 1718 801 1718 824 1719 862 1719 825 1719 810 1720 826 1720 811 1720 811 1721 859 1721 827 1721 805 1722 832 1722 831 1722 831 1723 830 1723 829 1723 830 1724 831 1724 841 1724 829 1725 830 1725 832 1725 841 1726 832 1726 830 1726 831 1727 832 1727 841 1727 833 1728 763 1728 853 1728 853 1729 763 1729 867 1729 763 1730 765 1730 867 1730 867 1731 765 1731 767 1731 867 1732 767 1732 868 1732 834 1733 868 1733 767 1733 768 1734 852 1734 834 1734 834 1735 852 1735 868 1735 770 1736 868 1736 852 1736 835 1737 851 1737 770 1737 835 1738 880 1738 875 1738 835 1739 877 1739 884 1739 835 1740 884 1740 880 1740 880 1741 884 1741 881 1741 883 1742 884 1742 885 1742 885 1743 884 1743 771 1743 889 1744 885 1744 836 1744 889 1745 836 1745 890 1745 885 1746 771 1746 855 1746 855 1747 771 1747 837 1747 837 1748 838 1748 854 1748 838 1749 772 1749 854 1749 839 1750 857 1750 858 1750 840 1751 774 1751 839 1751 839 1752 774 1752 857 1752 855 1753 857 1753 774 1753 836 1754 896 1754 890 1754 842 1755 896 1755 836 1755 841 1756 898 1756 842 1756 842 1757 898 1757 896 1757 778 1758 843 1758 776 1758 776 1759 843 1759 841 1759 843 1760 844 1760 841 1760 841 1761 844 1761 830 1761 830 1762 844 1762 779 1762 781 1763 830 1763 779 1763 783 1764 856 1764 781 1764 781 1765 856 1765 830 1765 845 1766 830 1766 856 1766 898 1767 841 1767 845 1767 898 1768 895 1768 896 1768 904 1769 895 1769 898 1769 905 1770 904 1770 785 1770 905 1771 785 1771 846 1771 905 1772 846 1772 870 1772 870 1773 846 1773 847 1773 870 1774 847 1774 872 1774 870 1775 872 1775 871 1775 846 1776 785 1776 863 1776 863 1777 785 1777 848 1777 863 1778 848 1778 849 1778 863 1779 849 1779 864 1779 864 1780 849 1780 787 1780 864 1781 787 1781 789 1781 849 1782 786 1782 787 1782 789 1783 860 1783 864 1783 860 1784 789 1784 850 1784 790 1785 860 1785 850 1785 791 1786 792 1786 790 1786 790 1787 792 1787 860 1787 872 1788 847 1788 875 1788 875 1789 795 1789 835 1789 795 1790 851 1790 835 1790 904 1791 903 1791 900 1791 903 1792 901 1792 900 1792 904 1793 900 1793 895 1793 884 1794 883 1794 881 1794 853 1795 867 1795 851 1795 851 1796 868 1796 770 1796 792 1797 863 1797 860 1797 854 1798 858 1798 837 1798 855 1799 837 1799 857 1799 845 1800 841 1800 830 1800 826 1801 857 1801 837 1801 837 1802 811 1802 826 1802 837 1803 859 1803 811 1803 859 1804 837 1804 858 1804 858 1805 857 1805 826 1805 858 1806 826 1806 859 1806 860 1807 863 1807 862 1807 864 1808 860 1808 861 1808 860 1809 862 1809 861 1809 864 1810 825 1810 863 1810 825 1811 862 1811 863 1811 864 1812 861 1812 825 1812 866 1813 867 1813 868 1813 866 1814 868 1814 865 1814 866 1815 869 1815 851 1815 851 1816 869 1816 868 1816 869 1817 865 1817 868 1817 867 1818 866 1818 851 1818 870 1819 871 1819 906 1819 871 1820 872 1820 873 1820 876 1821 873 1821 875 1821 873 1822 872 1822 875 1822 878 1823 875 1823 880 1823 876 1824 875 1824 878 1824 878 1825 880 1825 877 1825 877 1826 880 1826 879 1826 881 1827 879 1827 880 1827 885 1828 886 1828 883 1828 887 1829 886 1829 889 1829 886 1830 885 1830 889 1830 887 1831 889 1831 886 1831 886 1832 889 1832 888 1832 889 1833 890 1833 888 1833 892 1834 890 1834 896 1834 892 1835 896 1835 891 1835 891 1836 896 1836 893 1836 896 1837 897 1837 893 1837 894 1838 897 1838 895 1838 897 1839 896 1839 895 1839 894 1840 895 1840 897 1840 897 1841 895 1841 899 1841 900 1842 899 1842 895 1842 901 1843 903 1843 902 1843 903 1844 904 1844 902 1844 902 1845 904 1845 905 1845 870 1846 906 1846 905 1846 902 1847 905 1847 906 1847 1104 1848 1099 1848 907 1848 907 1849 1099 1849 908 1849 1155 1850 908 1850 1156 1850 1155 1851 907 1851 908 1851 1047 1852 909 1852 952 1852 952 1853 909 1853 955 1853 952 1854 955 1854 954 1854 1047 1855 1046 1855 909 1855 909 1856 950 1856 955 1856 955 1857 950 1857 957 1857 957 1858 950 1858 1099 1858 957 1859 1099 1859 1105 1859 948 1860 1099 1860 950 1860 1041 1861 1202 1861 948 1861 1041 1862 1201 1862 1202 1862 910 1863 1201 1863 1041 1863 1040 1864 1027 1864 910 1864 910 1865 1027 1865 1200 1865 1039 1866 1031 1866 1040 1866 1040 1867 1031 1867 1028 1867 1040 1868 1028 1868 1027 1868 1038 1869 1037 1869 1039 1869 1039 1870 1037 1870 1031 1870 1028 1871 1031 1871 1032 1871 1028 1872 1032 1872 1029 1872 1029 1873 1032 1873 1692 1873 1029 1874 1692 1874 1030 1874 1200 1875 1027 1875 911 1875 1200 1876 911 1876 912 1876 1200 1877 912 1877 1204 1877 1204 1878 912 1878 1150 1878 1150 1879 912 1879 1146 1879 1146 1880 912 1880 914 1880 1146 1881 914 1881 913 1881 1146 1882 913 1882 1144 1882 1144 1883 913 1883 1018 1883 1144 1884 1018 1884 1142 1884 1142 1885 1018 1885 1169 1885 913 1886 914 1886 915 1886 915 1887 914 1887 917 1887 915 1888 917 1888 916 1888 916 1889 917 1889 918 1889 918 1890 917 1890 1022 1890 916 1891 1019 1891 915 1891 919 1892 1168 1892 1018 1892 919 1893 1167 1893 1168 1893 920 1894 1167 1894 919 1894 922 1895 921 1895 920 1895 920 1896 921 1896 1007 1896 920 1897 1007 1897 1167 1897 1167 1898 1007 1898 1005 1898 1167 1899 1005 1899 1166 1899 1166 1900 1005 1900 1157 1900 1157 1901 1005 1901 924 1901 1157 1902 924 1902 1135 1902 1157 1903 1135 1903 1136 1903 1017 1904 1600 1904 922 1904 922 1905 1600 1905 2539 1905 922 1906 2539 1906 921 1906 921 1907 2539 1907 1010 1907 1010 1908 2539 1908 2543 1908 1010 1909 2543 1909 1012 1909 923 1910 1599 1910 1017 1910 1017 1911 1599 1911 1600 1911 1600 1912 1013 1912 2539 1912 1135 1913 924 1913 925 1913 1135 1914 925 1914 1134 1914 1134 1915 925 1915 926 1915 926 1916 925 1916 927 1916 926 1917 927 1917 998 1917 926 1918 998 1918 1131 1918 1131 1919 998 1919 1189 1919 925 1920 1003 1920 927 1920 927 1921 1003 1921 999 1921 999 1922 1003 1922 2674 1922 999 1923 2674 1923 928 1923 1002 1924 929 1924 1003 1924 1003 1925 929 1925 2674 1925 996 1926 1189 1926 998 1926 996 1927 1193 1927 1189 1927 949 1928 1190 1928 996 1928 996 1929 1190 1929 1193 1929 995 1930 932 1930 949 1930 949 1931 932 1931 1190 1931 994 1932 987 1932 995 1932 995 1933 987 1933 982 1933 995 1934 982 1934 932 1934 991 1935 990 1935 994 1935 994 1936 990 1936 987 1936 987 1937 988 1937 986 1937 987 1938 986 1938 982 1938 982 1939 986 1939 930 1939 930 1940 986 1940 985 1940 930 1941 985 1941 931 1941 1190 1942 932 1942 979 1942 1190 1943 979 1943 1187 1943 1187 1944 979 1944 933 1944 1187 1945 933 1945 1191 1945 1191 1946 933 1946 1122 1946 1122 1947 933 1947 1118 1947 1118 1948 933 1948 934 1948 1118 1949 934 1949 936 1949 1118 1950 936 1950 1117 1950 1117 1951 936 1951 1115 1951 1115 1952 936 1952 935 1952 1115 1953 935 1953 1176 1953 936 1954 934 1954 937 1954 937 1955 934 1955 939 1955 937 1956 939 1956 977 1956 977 1957 939 1957 938 1957 938 1958 939 1958 978 1958 977 1959 940 1959 937 1959 941 1960 1180 1960 935 1960 942 1961 1170 1961 941 1961 941 1962 1170 1962 1180 1962 972 1963 960 1963 942 1963 942 1964 960 1964 959 1964 942 1965 959 1965 1178 1965 1178 1966 959 1966 943 1966 1178 1967 943 1967 1181 1967 1181 1968 943 1968 944 1968 1181 1969 944 1969 1108 1969 1181 1970 1108 1970 1179 1970 947 1971 967 1971 972 1971 972 1972 967 1972 965 1972 972 1973 965 1973 960 1973 960 1974 965 1974 961 1974 961 1975 965 1975 963 1975 961 1976 963 1976 945 1976 970 1977 946 1977 947 1977 947 1978 946 1978 967 1978 1108 1979 944 1979 1106 1979 1106 1980 944 1980 957 1980 1106 1981 957 1981 1105 1981 1202 1982 1203 1982 948 1982 948 1983 1203 1983 908 1983 908 1984 1203 1984 1156 1984 1156 1985 1203 1985 1205 1985 1156 1986 1205 1986 1154 1986 1154 1987 1205 1987 1151 1987 1151 1988 1205 1988 1150 1988 1150 1989 1205 1989 1204 1989 1200 1990 1201 1990 910 1990 1131 1991 1189 1991 1188 1991 1131 1992 1188 1992 1124 1992 1124 1993 1188 1993 1126 1993 1126 1994 1188 1994 1122 1994 1122 1995 1188 1995 1192 1995 1122 1996 1192 1996 1191 1996 1178 1997 1170 1997 942 1997 935 1998 1180 1998 1176 1998 1115 1999 1176 1999 1113 1999 1113 2000 1176 2000 1179 2000 1113 2001 1179 2001 1112 2001 1112 2002 1179 2002 1109 2002 1109 2003 1179 2003 1108 2003 1164 2004 1142 2004 1169 2004 1142 2005 1164 2005 1141 2005 1141 2006 1164 2006 1140 2006 1140 2007 1164 2007 1136 2007 1136 2008 1164 2008 1157 2008 1168 2009 1169 2009 1018 2009 908 2010 1099 2010 948 2010 1048 2011 952 2011 951 2011 951 2012 952 2012 954 2012 951 2013 954 2013 953 2013 953 2014 954 2014 955 2014 953 2015 955 2015 1050 2015 1050 2016 955 2016 957 2016 1050 2017 957 2017 956 2017 956 2018 957 2018 944 2018 956 2019 944 2019 958 2019 958 2020 944 2020 943 2020 958 2021 943 2021 1051 2021 1051 2022 943 2022 959 2022 1051 2023 959 2023 1053 2023 1053 2024 959 2024 960 2024 1053 2025 960 2025 1052 2025 1052 2026 960 2026 961 2026 1052 2027 961 2027 962 2027 962 2028 961 2028 945 2028 962 2029 945 2029 964 2029 964 2030 945 2030 963 2030 964 2031 963 2031 969 2031 969 2032 963 2032 965 2032 968 2033 965 2033 967 2033 967 2034 966 2034 968 2034 965 2035 968 2035 969 2035 966 2036 967 2036 1055 2036 1055 2037 967 2037 946 2037 1055 2038 946 2038 1056 2038 1056 2039 946 2039 970 2039 1056 2040 970 2040 1054 2040 1054 2041 970 2041 947 2041 1054 2042 947 2042 971 2042 971 2043 947 2043 972 2043 971 2044 972 2044 1057 2044 1057 2045 972 2045 942 2045 1057 2046 942 2046 973 2046 973 2047 942 2047 941 2047 973 2048 941 2048 974 2048 974 2049 941 2049 935 2049 974 2050 935 2050 975 2050 975 2051 935 2051 936 2051 975 2052 936 2052 1060 2052 1060 2053 936 2053 937 2053 1060 2054 937 2054 1062 2054 1062 2055 937 2055 940 2055 1062 2056 940 2056 1061 2056 1061 2057 940 2057 977 2057 1061 2058 977 2058 976 2058 976 2059 977 2059 938 2059 976 2060 938 2060 1063 2060 1063 2061 938 2061 978 2061 1063 2062 978 2062 1059 2062 1059 2063 978 2063 939 2063 1059 2064 939 2064 1058 2064 1058 2065 939 2065 934 2065 1058 2066 934 2066 1064 2066 1064 2067 934 2067 933 2067 1064 2068 933 2068 980 2068 980 2069 933 2069 979 2069 980 2070 979 2070 981 2070 981 2071 979 2071 932 2071 981 2072 932 2072 1067 2072 1067 2073 932 2073 982 2073 1067 2074 982 2074 1069 2074 1069 2075 982 2075 930 2075 1069 2076 930 2076 983 2076 983 2077 930 2077 931 2077 983 2078 931 2078 984 2078 984 2079 931 2079 985 2079 984 2080 985 2080 989 2080 989 2081 985 2081 986 2081 989 2082 986 2082 988 2082 1070 2083 988 2083 987 2083 1070 2084 987 2084 990 2084 1070 2085 990 2085 1068 2085 1068 2086 990 2086 991 2086 1068 2087 991 2087 992 2087 992 2088 991 2088 994 2088 992 2089 994 2089 993 2089 993 2090 994 2090 995 2090 993 2091 995 2091 1065 2091 1065 2092 995 2092 949 2092 1065 2093 949 2093 997 2093 997 2094 949 2094 996 2094 997 2095 996 2095 1066 2095 1066 2096 996 2096 998 2096 1066 2097 998 2097 1071 2097 1071 2098 998 2098 927 2098 1071 2099 927 2099 1074 2099 1074 2100 927 2100 999 2100 1074 2101 999 2101 1000 2101 1000 2102 999 2102 928 2102 1000 2103 928 2103 1001 2103 1001 2104 928 2104 2674 2104 1001 2105 2674 2105 1075 2105 1075 2106 2674 2106 929 2106 1075 2107 929 2107 1076 2107 1076 2108 929 2108 1002 2108 1076 2109 1002 2109 1073 2109 1073 2110 1002 2110 1003 2110 1073 2111 1003 2111 1004 2111 1004 2112 1003 2112 925 2112 1004 2113 925 2113 1098 2113 1098 2114 925 2114 924 2114 1098 2115 924 2115 1006 2115 1006 2116 924 2116 1005 2116 1006 2117 1005 2117 1077 2117 1077 2118 1005 2118 1007 2118 1077 2119 1007 2119 1008 2119 1008 2120 1007 2120 921 2120 1008 2121 921 2121 1009 2121 1009 2122 921 2122 1010 2122 1009 2123 1010 2123 1011 2123 1011 2124 1010 2124 1012 2124 1011 2125 1012 2125 1079 2125 1079 2126 1012 2126 2543 2126 1079 2127 2543 2127 1080 2127 1080 2128 2543 2128 2539 2128 1013 2129 1014 2129 1080 2129 2539 2130 1013 2130 1080 2130 1600 2131 1014 2131 1013 2131 1014 2132 1600 2132 1015 2132 1015 2133 1600 2133 1599 2133 1015 2134 1599 2134 1082 2134 1082 2135 1599 2135 923 2135 1082 2136 923 2136 1016 2136 1016 2137 923 2137 1017 2137 1016 2138 1017 2138 1081 2138 1081 2139 1017 2139 922 2139 1081 2140 922 2140 1078 2140 1078 2141 922 2141 920 2141 1078 2142 920 2142 1083 2142 1083 2143 920 2143 919 2143 1083 2144 919 2144 1084 2144 1084 2145 919 2145 1018 2145 1084 2146 1018 2146 1085 2146 1085 2147 1018 2147 913 2147 1085 2148 913 2148 1088 2148 1088 2149 913 2149 915 2149 1088 2150 915 2150 1089 2150 1089 2151 915 2151 1019 2151 1089 2152 1019 2152 1020 2152 1020 2153 1019 2153 916 2153 1020 2154 916 2154 1087 2154 1087 2155 916 2155 918 2155 1087 2156 918 2156 1021 2156 1021 2157 918 2157 1022 2157 1021 2158 1022 2158 1086 2158 1086 2159 1022 2159 917 2159 1086 2160 917 2160 1023 2160 1023 2161 917 2161 914 2161 1023 2162 914 2162 1024 2162 1024 2163 914 2163 912 2163 1024 2164 912 2164 1025 2164 1025 2165 912 2165 911 2165 1025 2166 911 2166 1026 2166 1026 2167 911 2167 1027 2167 1026 2168 1027 2168 1093 2168 1093 2169 1027 2169 1028 2169 1093 2170 1028 2170 1092 2170 1092 2171 1028 2171 1029 2171 1092 2172 1029 2172 1095 2172 1095 2173 1029 2173 1030 2173 1095 2174 1030 2174 1096 2174 1096 2175 1030 2175 1692 2175 1096 2176 1692 2176 1033 2176 1033 2177 1692 2177 1032 2177 1031 2178 1034 2178 1033 2178 1033 2179 1032 2179 1031 2179 1034 2180 1031 2180 1035 2180 1035 2181 1031 2181 1037 2181 1035 2182 1037 2182 1036 2182 1036 2183 1037 2183 1038 2183 1036 2184 1038 2184 1094 2184 1094 2185 1038 2185 1039 2185 1094 2186 1039 2186 1090 2186 1090 2187 1039 2187 1040 2187 1090 2188 1040 2188 1091 2188 1091 2189 1040 2189 910 2189 1091 2190 910 2190 1042 2190 1042 2191 910 2191 1041 2191 1042 2192 1041 2192 1043 2192 1043 2193 1041 2193 948 2193 1043 2194 948 2194 1097 2194 1097 2195 948 2195 950 2195 1097 2196 950 2196 1044 2196 1044 2197 950 2197 909 2197 1044 2198 909 2198 1045 2198 1045 2199 909 2199 1046 2199 1045 2200 1046 2200 1049 2200 1049 2201 1046 2201 1047 2201 1049 2202 1047 2202 1048 2202 1048 2203 1047 2203 952 2203 1045 2204 1049 2204 1044 2204 1044 2205 1049 2205 1048 2205 1044 2206 1048 2206 953 2206 953 2207 1048 2207 951 2207 953 2208 1050 2208 1044 2208 1044 2209 1050 2209 1097 2209 1097 2210 1050 2210 1103 2210 956 2211 1103 2211 1050 2211 958 2212 1173 2212 956 2212 958 2213 1174 2213 1173 2213 1051 2214 1174 2214 958 2214 1053 2215 1057 2215 1051 2215 1051 2216 1057 2216 1174 2216 1052 2217 969 2217 1053 2217 1053 2218 969 2218 971 2218 1053 2219 971 2219 1057 2219 962 2220 964 2220 1052 2220 1052 2221 964 2221 969 2221 969 2222 968 2222 966 2222 969 2223 966 2223 971 2223 971 2224 966 2224 1054 2224 1054 2225 966 2225 1055 2225 1054 2226 1055 2226 1056 2226 1174 2227 1057 2227 973 2227 1174 2228 973 2228 1171 2228 1171 2229 973 2229 974 2229 1171 2230 974 2230 1114 2230 1171 2231 1114 2231 1172 2231 1114 2232 974 2232 1116 2232 1116 2233 974 2233 975 2233 1116 2234 975 2234 1058 2234 1116 2235 1058 2235 1120 2235 1120 2236 1058 2236 1119 2236 1119 2237 1058 2237 1064 2237 1119 2238 1064 2238 1121 2238 1121 2239 1064 2239 1183 2239 1058 2240 975 2240 1059 2240 1059 2241 975 2241 1060 2241 1059 2242 1060 2242 976 2242 976 2243 1060 2243 1061 2243 1061 2244 1060 2244 1062 2244 976 2245 1063 2245 1059 2245 980 2246 1182 2246 1064 2246 1064 2247 1182 2247 1183 2247 981 2248 1182 2248 980 2248 1067 2249 993 2249 981 2249 981 2250 993 2250 1065 2250 981 2251 1065 2251 1182 2251 1182 2252 1065 2252 1184 2252 1184 2253 1065 2253 997 2253 1184 2254 997 2254 1066 2254 1184 2255 1066 2255 1186 2255 1186 2256 1066 2256 1132 2256 1186 2257 1132 2257 1185 2257 1069 2258 989 2258 1067 2258 1067 2259 989 2259 1070 2259 1067 2260 1070 2260 993 2260 993 2261 1070 2261 992 2261 992 2262 1070 2262 1068 2262 983 2263 984 2263 1069 2263 1069 2264 984 2264 989 2264 989 2265 988 2265 1070 2265 1132 2266 1066 2266 1133 2266 1133 2267 1066 2267 1071 2267 1133 2268 1071 2268 1072 2268 1072 2269 1071 2269 1004 2269 1072 2270 1004 2270 1098 2270 1072 2271 1098 2271 1159 2271 1071 2272 1074 2272 1004 2272 1004 2273 1074 2273 1073 2273 1073 2274 1074 2274 1001 2274 1073 2275 1001 2275 1075 2275 1074 2276 1000 2276 1001 2276 1075 2277 1076 2277 1073 2277 1006 2278 1163 2278 1098 2278 1098 2279 1163 2279 1159 2279 1077 2280 1163 2280 1006 2280 1008 2281 1078 2281 1077 2281 1077 2282 1078 2282 1161 2282 1009 2283 1080 2283 1008 2283 1008 2284 1080 2284 1081 2284 1008 2285 1081 2285 1078 2285 1011 2286 1079 2286 1009 2286 1009 2287 1079 2287 1080 2287 1081 2288 1080 2288 1014 2288 1081 2289 1014 2289 1016 2289 1016 2290 1014 2290 1015 2290 1016 2291 1015 2291 1082 2291 1161 2292 1078 2292 1083 2292 1161 2293 1083 2293 1162 2293 1162 2294 1083 2294 1084 2294 1162 2295 1084 2295 1160 2295 1160 2296 1084 2296 1143 2296 1143 2297 1084 2297 1145 2297 1145 2298 1084 2298 1085 2298 1145 2299 1085 2299 1023 2299 1145 2300 1023 2300 1148 2300 1148 2301 1023 2301 1147 2301 1147 2302 1023 2302 1024 2302 1147 2303 1024 2303 1149 2303 1149 2304 1024 2304 1198 2304 1023 2305 1085 2305 1086 2305 1086 2306 1085 2306 1088 2306 1086 2307 1088 2307 1087 2307 1087 2308 1088 2308 1020 2308 1020 2309 1088 2309 1089 2309 1087 2310 1021 2310 1086 2310 1025 2311 1198 2311 1024 2311 1025 2312 1199 2312 1198 2312 1026 2313 1199 2313 1025 2313 1093 2314 1090 2314 1026 2314 1026 2315 1090 2315 1091 2315 1026 2316 1091 2316 1199 2316 1199 2317 1091 2317 1042 2317 1199 2318 1042 2318 1197 2318 1197 2319 1042 2319 1195 2319 1195 2320 1042 2320 1043 2320 1195 2321 1043 2321 1196 2321 1196 2322 1043 2322 907 2322 1092 2323 1033 2323 1093 2323 1093 2324 1033 2324 1034 2324 1093 2325 1034 2325 1090 2325 1090 2326 1034 2326 1094 2326 1094 2327 1034 2327 1035 2327 1094 2328 1035 2328 1036 2328 1095 2329 1096 2329 1092 2329 1092 2330 1096 2330 1033 2330 907 2331 1043 2331 1104 2331 1104 2332 1043 2332 1097 2332 1104 2333 1097 2333 1103 2333 1149 2334 1198 2334 1153 2334 1153 2335 1198 2335 1194 2335 1153 2336 1194 2336 1152 2336 1152 2337 1194 2337 1155 2337 1155 2338 1194 2338 1196 2338 1155 2339 1196 2339 907 2339 1121 2340 1183 2340 1125 2340 1125 2341 1183 2341 1185 2341 1125 2342 1185 2342 1123 2342 1123 2343 1185 2343 1127 2343 1127 2344 1185 2344 1132 2344 956 2345 1173 2345 1107 2345 1107 2346 1173 2346 1175 2346 1175 2347 1110 2347 1107 2347 1110 2348 1175 2348 1111 2348 1111 2349 1175 2349 1114 2349 1114 2350 1175 2350 1172 2350 1161 2351 1163 2351 1077 2351 1072 2352 1159 2352 1138 2352 1138 2353 1159 2353 1158 2353 1138 2354 1158 2354 1139 2354 1139 2355 1158 2355 1143 2355 1143 2356 1158 2356 1160 2356 1107 2357 1103 2357 956 2357 1103 2358 1105 2358 1099 2358 1104 2359 1103 2359 1101 2359 1102 2360 1101 2360 1103 2360 1102 2361 1103 2361 1100 2361 1100 2362 1099 2362 1104 2362 1104 2363 1101 2363 1100 2363 1099 2364 1100 2364 1103 2364 1105 2365 1103 2365 1106 2365 1107 2366 1108 2366 1103 2366 1103 2367 1108 2367 1106 2367 1110 2368 1109 2368 1108 2368 1107 2369 1110 2369 1108 2369 1111 2370 1114 2370 1112 2370 1109 2371 1110 2371 1112 2371 1111 2372 1112 2372 1110 2372 1112 2373 1114 2373 1113 2373 1113 2374 1114 2374 1115 2374 1116 2375 1115 2375 1114 2375 1115 2376 1116 2376 1117 2376 1120 2377 1118 2377 1116 2377 1116 2378 1118 2378 1117 2378 1120 2379 1119 2379 1118 2379 1121 2380 1122 2380 1119 2380 1119 2381 1122 2381 1118 2381 1121 2382 1125 2382 1122 2382 1123 2383 1127 2383 1124 2383 1125 2384 1126 2384 1122 2384 1123 2385 1124 2385 1126 2385 1123 2386 1126 2386 1125 2386 1127 2387 1128 2387 1129 2387 1131 2388 1129 2388 1132 2388 1132 2389 1130 2389 1127 2389 1130 2390 1128 2390 1127 2390 1129 2391 1130 2391 1132 2391 1129 2392 1131 2392 1127 2392 1131 2393 1124 2393 1127 2393 1133 2394 926 2394 1132 2394 1132 2395 926 2395 1131 2395 1133 2396 1072 2396 926 2396 1072 2397 1134 2397 926 2397 1134 2398 1072 2398 1135 2398 1072 2399 1136 2399 1135 2399 1072 2400 1138 2400 1136 2400 1138 2401 1140 2401 1136 2401 1140 2402 1137 2402 1141 2402 1143 2403 1141 2403 1137 2403 1137 2404 1139 2404 1143 2404 1138 2405 1139 2405 1140 2405 1139 2406 1137 2406 1140 2406 1141 2407 1143 2407 1142 2407 1145 2408 1144 2408 1143 2408 1143 2409 1144 2409 1142 2409 1145 2410 1146 2410 1144 2410 1148 2411 1146 2411 1145 2411 1147 2412 1146 2412 1148 2412 1149 2413 1150 2413 1147 2413 1147 2414 1150 2414 1146 2414 1149 2415 1153 2415 1150 2415 1150 2416 1153 2416 1151 2416 1155 2417 1156 2417 1154 2417 1155 2418 1154 2418 1152 2418 1153 2419 1154 2419 1151 2419 1154 2420 1153 2420 1152 2420 1159 2421 1165 2421 1158 2421 1160 2422 1169 2422 1162 2422 1162 2423 1168 2423 1161 2423 1163 2424 1166 2424 1159 2424 1159 2425 1166 2425 1157 2425 1158 2426 1165 2426 1164 2426 1158 2427 1164 2427 1160 2427 1159 2428 1157 2428 1165 2428 1161 2429 1168 2429 1167 2429 1162 2430 1169 2430 1168 2430 1163 2431 1167 2431 1166 2431 1161 2432 1167 2432 1163 2432 1165 2433 1157 2433 1164 2433 1160 2434 1164 2434 1169 2434 1174 2435 1171 2435 1177 2435 1174 2436 1177 2436 1170 2436 1175 2437 1173 2437 1181 2437 1171 2438 1172 2438 1176 2438 1173 2439 1174 2439 1178 2439 1171 2440 1176 2440 1177 2440 1172 2441 1175 2441 1179 2441 1172 2442 1179 2442 1176 2442 1173 2443 1178 2443 1181 2443 1175 2444 1181 2444 1179 2444 1174 2445 1170 2445 1178 2445 1177 2446 1176 2446 1180 2446 1177 2447 1180 2447 1170 2447 1183 2448 1192 2448 1185 2448 1183 2449 1182 2449 1187 2449 1183 2450 1187 2450 1191 2450 1182 2451 1184 2451 1190 2451 1183 2452 1191 2452 1192 2452 1186 2453 1189 2453 1184 2453 1182 2454 1190 2454 1187 2454 1186 2455 1185 2455 1189 2455 1184 2456 1189 2456 1193 2456 1185 2457 1192 2457 1188 2457 1185 2458 1188 2458 1189 2458 1184 2459 1193 2459 1190 2459 1200 2460 1199 2460 1201 2460 1199 2461 1200 2461 1198 2461 1198 2462 1204 2462 1194 2462 1196 2463 1194 2463 1205 2463 1196 2464 1205 2464 1203 2464 1195 2465 1202 2465 1197 2465 1198 2466 1200 2466 1204 2466 1195 2467 1196 2467 1202 2467 1197 2468 1201 2468 1199 2468 1196 2469 1203 2469 1202 2469 1194 2470 1204 2470 1205 2470 1197 2471 1202 2471 1201 2471 1406 2472 1404 2472 1206 2472 1206 2473 1404 2473 1207 2473 1456 2474 1206 2474 1207 2474 1456 2475 1207 2475 1455 2475 1344 2476 1208 2476 1209 2476 1209 2477 1208 2477 1210 2477 1209 2478 1210 2478 1260 2478 1344 2479 1343 2479 1208 2479 1208 2480 1341 2480 1210 2480 1210 2481 1341 2481 1256 2481 1256 2482 1341 2482 1404 2482 1256 2483 1404 2483 1407 2483 1211 2484 1404 2484 1341 2484 1212 2485 1499 2485 1211 2485 1212 2486 1501 2486 1499 2486 1339 2487 1501 2487 1212 2487 1338 2488 1325 2488 1339 2488 1339 2489 1325 2489 1501 2489 1337 2490 1213 2490 1338 2490 1338 2491 1213 2491 1326 2491 1338 2492 1326 2492 1325 2492 1336 2493 1214 2493 1337 2493 1337 2494 1214 2494 1213 2494 1326 2495 1213 2495 1215 2495 1215 2496 1213 2496 1333 2496 1326 2497 1215 2497 1328 2497 1328 2498 1215 2498 1331 2498 1328 2499 1331 2499 1330 2499 1501 2500 1325 2500 1216 2500 1501 2501 1216 2501 1503 2501 1503 2502 1216 2502 1217 2502 1503 2503 1217 2503 1504 2503 1504 2504 1217 2504 1453 2504 1453 2505 1217 2505 1449 2505 1449 2506 1217 2506 1219 2506 1449 2507 1219 2507 1317 2507 1449 2508 1317 2508 1448 2508 1448 2509 1317 2509 1218 2509 1448 2510 1218 2510 1446 2510 1446 2511 1218 2511 1469 2511 1317 2512 1219 2512 1220 2512 1220 2513 1219 2513 1322 2513 1220 2514 1322 2514 1320 2514 1320 2515 1322 2515 1321 2515 1321 2516 1322 2516 1221 2516 1320 2517 1318 2517 1220 2517 1223 2518 1465 2518 1218 2518 1218 2519 1465 2519 1469 2519 1223 2520 1466 2520 1465 2520 1222 2521 1466 2521 1223 2521 1224 2522 1225 2522 1222 2522 1222 2523 1225 2523 1303 2523 1222 2524 1303 2524 1466 2524 1466 2525 1303 2525 1226 2525 1466 2526 1226 2526 1470 2526 1470 2527 1226 2527 1227 2527 1470 2528 1227 2528 1468 2528 1468 2529 1227 2529 1439 2529 1228 2530 1310 2530 1224 2530 1224 2531 1310 2531 1232 2531 1224 2532 1232 2532 1225 2532 1225 2533 1232 2533 1229 2533 1229 2534 1232 2534 1230 2534 1229 2535 1230 2535 1231 2535 1314 2536 1312 2536 1228 2536 1228 2537 1312 2537 1310 2537 1310 2538 1308 2538 1232 2538 1439 2539 1227 2539 1438 2539 1438 2540 1227 2540 1233 2540 1438 2541 1233 2541 1437 2541 1437 2542 1233 2542 1234 2542 1437 2543 1234 2543 1257 2543 1437 2544 1257 2544 1430 2544 1430 2545 1257 2545 1493 2545 1430 2546 1493 2546 1492 2546 1233 2547 1237 2547 1234 2547 1234 2548 1237 2548 1235 2548 1235 2549 1237 2549 1298 2549 1235 2550 1298 2550 1236 2550 1301 2551 1300 2551 1237 2551 1237 2552 1300 2552 1298 2552 1297 2553 1493 2553 1257 2553 1297 2554 1490 2554 1493 2554 1239 2555 1490 2555 1297 2555 1296 2556 1238 2556 1239 2556 1239 2557 1238 2557 1489 2557 1240 2558 1289 2558 1296 2558 1296 2559 1289 2559 1241 2559 1296 2560 1241 2560 1238 2560 1294 2561 1293 2561 1240 2561 1240 2562 1293 2562 1289 2562 1289 2563 1291 2563 1292 2563 1289 2564 1292 2564 1241 2564 1241 2565 1292 2565 1286 2565 1286 2566 1292 2566 1288 2566 1286 2567 1288 2567 1242 2567 1489 2568 1238 2568 1243 2568 1489 2569 1243 2569 1488 2569 1488 2570 1243 2570 1283 2570 1488 2571 1283 2571 1491 2571 1491 2572 1283 2572 1422 2572 1491 2573 1422 2573 1492 2573 1422 2574 1283 2574 1244 2574 1244 2575 1283 2575 1282 2575 1244 2576 1282 2576 1245 2576 1244 2577 1245 2577 1419 2577 1419 2578 1245 2578 1420 2578 1420 2579 1245 2579 1278 2579 1420 2580 1278 2580 1481 2580 1245 2581 1282 2581 1250 2581 1250 2582 1282 2582 1246 2582 1250 2583 1246 2583 1247 2583 1247 2584 1246 2584 1248 2584 1248 2585 1246 2585 1281 2585 1247 2586 1249 2586 1250 2586 1251 2587 1479 2587 1278 2587 1278 2588 1479 2588 1481 2588 1276 2589 1477 2589 1251 2589 1251 2590 1477 2590 1479 2590 1275 2591 1263 2591 1276 2591 1276 2592 1263 2592 1262 2592 1276 2593 1262 2593 1477 2593 1477 2594 1262 2594 1252 2594 1477 2595 1252 2595 1472 2595 1472 2596 1252 2596 1253 2596 1472 2597 1253 2597 1409 2597 1472 2598 1409 2598 1412 2598 1254 2599 1270 2599 1275 2599 1275 2600 1270 2600 1268 2600 1275 2601 1268 2601 1263 2601 1263 2602 1268 2602 1266 2602 1266 2603 1268 2603 1267 2603 1266 2604 1267 2604 1255 2604 1274 2605 1272 2605 1254 2605 1254 2606 1272 2606 1270 2606 1409 2607 1253 2607 1408 2607 1408 2608 1253 2608 1256 2608 1408 2609 1256 2609 1407 2609 1211 2610 1499 2610 1207 2610 1207 2611 1499 2611 1500 2611 1207 2612 1500 2612 1455 2612 1455 2613 1500 2613 1459 2613 1459 2614 1500 2614 1458 2614 1458 2615 1500 2615 1505 2615 1458 2616 1505 2616 1453 2616 1453 2617 1505 2617 1504 2617 1489 2618 1490 2618 1239 2618 1430 2619 1492 2619 1429 2619 1429 2620 1492 2620 1427 2620 1427 2621 1492 2621 1426 2621 1426 2622 1492 2622 1422 2622 1420 2623 1481 2623 1413 2623 1413 2624 1481 2624 1474 2624 1413 2625 1474 2625 1258 2625 1258 2626 1474 2626 1412 2626 1412 2627 1474 2627 1472 2627 1468 2628 1446 2628 1469 2628 1446 2629 1468 2629 1444 2629 1444 2630 1468 2630 1443 2630 1443 2631 1468 2631 1439 2631 1207 2632 1404 2632 1211 2632 1345 2633 1209 2633 1259 2633 1259 2634 1209 2634 1260 2634 1259 2635 1260 2635 1347 2635 1347 2636 1260 2636 1210 2636 1347 2637 1210 2637 1403 2637 1403 2638 1210 2638 1256 2638 1403 2639 1256 2639 1261 2639 1261 2640 1256 2640 1253 2640 1261 2641 1253 2641 1348 2641 1348 2642 1253 2642 1252 2642 1348 2643 1252 2643 1402 2643 1402 2644 1252 2644 1262 2644 1402 2645 1262 2645 1349 2645 1349 2646 1262 2646 1263 2646 1349 2647 1263 2647 1264 2647 1264 2648 1263 2648 1266 2648 1264 2649 1266 2649 1265 2649 1265 2650 1266 2650 1255 2650 1265 2651 1255 2651 1350 2651 1350 2652 1255 2652 1267 2652 1350 2653 1267 2653 1351 2653 1351 2654 1267 2654 1268 2654 1351 2655 1268 2655 1269 2655 1269 2656 1270 2656 1271 2656 1268 2657 1270 2657 1269 2657 1271 2658 1270 2658 1272 2658 1271 2659 1272 2659 1353 2659 1353 2660 1272 2660 1274 2660 1353 2661 1274 2661 1273 2661 1273 2662 1274 2662 1254 2662 1273 2663 1254 2663 1352 2663 1352 2664 1254 2664 1275 2664 1352 2665 1275 2665 1354 2665 1354 2666 1275 2666 1276 2666 1354 2667 1276 2667 1277 2667 1277 2668 1276 2668 1251 2668 1277 2669 1251 2669 1355 2669 1355 2670 1251 2670 1278 2670 1355 2671 1278 2671 1279 2671 1279 2672 1278 2672 1245 2672 1279 2673 1245 2673 1359 2673 1359 2674 1245 2674 1250 2674 1359 2675 1250 2675 1362 2675 1362 2676 1250 2676 1249 2676 1362 2677 1249 2677 1361 2677 1361 2678 1249 2678 1247 2678 1361 2679 1247 2679 1360 2679 1360 2680 1247 2680 1248 2680 1360 2681 1248 2681 1280 2681 1280 2682 1248 2682 1281 2682 1280 2683 1281 2683 1358 2683 1358 2684 1281 2684 1246 2684 1358 2685 1246 2685 1356 2685 1356 2686 1246 2686 1282 2686 1356 2687 1282 2687 1357 2687 1357 2688 1282 2688 1283 2688 1357 2689 1283 2689 1363 2689 1363 2690 1283 2690 1243 2690 1363 2691 1243 2691 1284 2691 1284 2692 1243 2692 1238 2692 1284 2693 1238 2693 1368 2693 1368 2694 1238 2694 1241 2694 1368 2695 1241 2695 1285 2695 1285 2696 1241 2696 1286 2696 1285 2697 1286 2697 1287 2697 1287 2698 1286 2698 1242 2698 1287 2699 1242 2699 1290 2699 1290 2700 1242 2700 1288 2700 1290 2701 1288 2701 1292 2701 1371 2702 1291 2702 1289 2702 1372 2703 1371 2703 1289 2703 1291 2704 1371 2704 1292 2704 1292 2705 1371 2705 1290 2705 1372 2706 1289 2706 1998 2706 1998 2707 1289 2707 1293 2707 1998 2708 1293 2708 1370 2708 1370 2709 1293 2709 1294 2709 1370 2710 1294 2710 1295 2710 1295 2711 1294 2711 1240 2711 1295 2712 1240 2712 1369 2712 1369 2713 1240 2713 1296 2713 1369 2714 1296 2714 1364 2714 1364 2715 1296 2715 1239 2715 1364 2716 1239 2716 1366 2716 1366 2717 1239 2717 1297 2717 1366 2718 1297 2718 1367 2718 1367 2719 1297 2719 1257 2719 1367 2720 1257 2720 1373 2720 1373 2721 1257 2721 1234 2721 1373 2722 1234 2722 1375 2722 1375 2723 1234 2723 1235 2723 1375 2724 1235 2724 1377 2724 1377 2725 1235 2725 1236 2725 1377 2726 1236 2726 2135 2726 2135 2727 1236 2727 1298 2727 2135 2728 1298 2728 2010 2728 2010 2729 1298 2729 1300 2729 2010 2730 1300 2730 1299 2730 1299 2731 1300 2731 1301 2731 1299 2732 1301 2732 1376 2732 1376 2733 1301 2733 1237 2733 1376 2734 1237 2734 1302 2734 1302 2735 1237 2735 1233 2735 1302 2736 1233 2736 1374 2736 1374 2737 1233 2737 1227 2737 1374 2738 1227 2738 1378 2738 1378 2739 1227 2739 1226 2739 1378 2740 1226 2740 1304 2740 1304 2741 1226 2741 1303 2741 1304 2742 1303 2742 1379 2742 1379 2743 1303 2743 1225 2743 1379 2744 1225 2744 1380 2744 1380 2745 1225 2745 1229 2745 1380 2746 1229 2746 1305 2746 1305 2747 1229 2747 1231 2747 1305 2748 1231 2748 1306 2748 1306 2749 1231 2749 1230 2749 1306 2750 1230 2750 2034 2750 2034 2751 1230 2751 1232 2751 1307 2752 1232 2752 1308 2752 1232 2753 1307 2753 2034 2753 1309 2754 1307 2754 1308 2754 1310 2755 1309 2755 1308 2755 1309 2756 1310 2756 1311 2756 1311 2757 1310 2757 1312 2757 1311 2758 1312 2758 1313 2758 1313 2759 1312 2759 1314 2759 1313 2760 1314 2760 1382 2760 1382 2761 1314 2761 1228 2761 1382 2762 1228 2762 1381 2762 1381 2763 1228 2763 1224 2763 1381 2764 1224 2764 1315 2764 1315 2765 1224 2765 1222 2765 1315 2766 1222 2766 1316 2766 1316 2767 1222 2767 1223 2767 1316 2768 1223 2768 1383 2768 1383 2769 1223 2769 1218 2769 1383 2770 1218 2770 1384 2770 1384 2771 1218 2771 1317 2771 1384 2772 1317 2772 1388 2772 1388 2773 1317 2773 1220 2773 1388 2774 1220 2774 1389 2774 1389 2775 1220 2775 1318 2775 1389 2776 1318 2776 1387 2776 1387 2777 1318 2777 1320 2777 1387 2778 1320 2778 1319 2778 1319 2779 1320 2779 1321 2779 1319 2780 1321 2780 1390 2780 1390 2781 1321 2781 1221 2781 1390 2782 1221 2782 1386 2782 1386 2783 1221 2783 1322 2783 1386 2784 1322 2784 1385 2784 1385 2785 1322 2785 1219 2785 1385 2786 1219 2786 1323 2786 1323 2787 1219 2787 1217 2787 1323 2788 1217 2788 1391 2788 1391 2789 1217 2789 1216 2789 1391 2790 1216 2790 1324 2790 1324 2791 1216 2791 1325 2791 1324 2792 1325 2792 1395 2792 1395 2793 1325 2793 1326 2793 1395 2794 1326 2794 1327 2794 1327 2795 1326 2795 1328 2795 1327 2796 1328 2796 1329 2796 1329 2797 1328 2797 1330 2797 1329 2798 1330 2798 1399 2798 1399 2799 1330 2799 1331 2799 1399 2800 1331 2800 1577 2800 1577 2801 1331 2801 1215 2801 1332 2802 1334 2802 1333 2802 1332 2803 1333 2803 1213 2803 1215 2804 1334 2804 1577 2804 1333 2805 1334 2805 1215 2805 1332 2806 1213 2806 1335 2806 1335 2807 1213 2807 1214 2807 1335 2808 1214 2808 1398 2808 1398 2809 1214 2809 1336 2809 1398 2810 1336 2810 1397 2810 1397 2811 1336 2811 1337 2811 1397 2812 1337 2812 1396 2812 1396 2813 1337 2813 1338 2813 1396 2814 1338 2814 1392 2814 1392 2815 1338 2815 1339 2815 1392 2816 1339 2816 1393 2816 1393 2817 1339 2817 1212 2817 1393 2818 1212 2818 1394 2818 1394 2819 1212 2819 1211 2819 1394 2820 1211 2820 1400 2820 1400 2821 1211 2821 1341 2821 1400 2822 1341 2822 1340 2822 1340 2823 1341 2823 1208 2823 1340 2824 1208 2824 1342 2824 1342 2825 1208 2825 1343 2825 1342 2826 1343 2826 1346 2826 1346 2827 1343 2827 1344 2827 1346 2828 1344 2828 1345 2828 1345 2829 1344 2829 1209 2829 1342 2830 1346 2830 1340 2830 1340 2831 1346 2831 1345 2831 1340 2832 1345 2832 1347 2832 1347 2833 1345 2833 1259 2833 1347 2834 1403 2834 1340 2834 1340 2835 1403 2835 1400 2835 1400 2836 1403 2836 1405 2836 1261 2837 1405 2837 1403 2837 1348 2838 1475 2838 1261 2838 1348 2839 1476 2839 1475 2839 1402 2840 1476 2840 1348 2840 1349 2841 1354 2841 1402 2841 1402 2842 1354 2842 1476 2842 1264 2843 1351 2843 1349 2843 1349 2844 1351 2844 1352 2844 1349 2845 1352 2845 1354 2845 1265 2846 1350 2846 1264 2846 1264 2847 1350 2847 1351 2847 1351 2848 1269 2848 1271 2848 1351 2849 1271 2849 1352 2849 1352 2850 1271 2850 1273 2850 1273 2851 1271 2851 1353 2851 1476 2852 1354 2852 1277 2852 1476 2853 1277 2853 1478 2853 1478 2854 1277 2854 1473 2854 1473 2855 1277 2855 1355 2855 1473 2856 1355 2856 1415 2856 1415 2857 1355 2857 1279 2857 1415 2858 1279 2858 1356 2858 1415 2859 1356 2859 1421 2859 1421 2860 1356 2860 1357 2860 1421 2861 1357 2861 1423 2861 1423 2862 1357 2862 1487 2862 1423 2863 1487 2863 1485 2863 1356 2864 1279 2864 1358 2864 1358 2865 1279 2865 1359 2865 1358 2866 1359 2866 1360 2866 1360 2867 1359 2867 1361 2867 1361 2868 1359 2868 1362 2868 1360 2869 1280 2869 1358 2869 1363 2870 1487 2870 1357 2870 1363 2871 1483 2871 1487 2871 1284 2872 1483 2872 1363 2872 1368 2873 1369 2873 1284 2873 1284 2874 1369 2874 1364 2874 1284 2875 1364 2875 1483 2875 1483 2876 1364 2876 1365 2876 1365 2877 1364 2877 1366 2877 1365 2878 1366 2878 1484 2878 1484 2879 1366 2879 1367 2879 1484 2880 1367 2880 1432 2880 1285 2881 1290 2881 1368 2881 1368 2882 1290 2882 1372 2882 1368 2883 1372 2883 1369 2883 1369 2884 1372 2884 1295 2884 1295 2885 1372 2885 1998 2885 1295 2886 1998 2886 1370 2886 1287 2887 1290 2887 1285 2887 1290 2888 1371 2888 1372 2888 1432 2889 1367 2889 1435 2889 1435 2890 1367 2890 1373 2890 1435 2891 1373 2891 1436 2891 1436 2892 1373 2892 1302 2892 1436 2893 1302 2893 1374 2893 1436 2894 1374 2894 1440 2894 1440 2895 1374 2895 1463 2895 1373 2896 1375 2896 1302 2896 1302 2897 1375 2897 1376 2897 1376 2898 1375 2898 2135 2898 1376 2899 2135 2899 2010 2899 1375 2900 1377 2900 2135 2900 2010 2901 1299 2901 1376 2901 1378 2902 1461 2902 1374 2902 1374 2903 1461 2903 1463 2903 1378 2904 1464 2904 1461 2904 1304 2905 1464 2905 1378 2905 1379 2906 1315 2906 1304 2906 1304 2907 1315 2907 1464 2907 1380 2908 2034 2908 1379 2908 1379 2909 2034 2909 1381 2909 1379 2910 1381 2910 1315 2910 1305 2911 1306 2911 1380 2911 1380 2912 1306 2912 2034 2912 1381 2913 2034 2913 1309 2913 1309 2914 2034 2914 1307 2914 1381 2915 1309 2915 1382 2915 1382 2916 1309 2916 1311 2916 1382 2917 1311 2917 1313 2917 1464 2918 1315 2918 1316 2918 1464 2919 1316 2919 1460 2919 1460 2920 1316 2920 1383 2920 1460 2921 1383 2921 1445 2921 1445 2922 1383 2922 1450 2922 1450 2923 1383 2923 1384 2923 1450 2924 1384 2924 1385 2924 1450 2925 1385 2925 1451 2925 1451 2926 1385 2926 1323 2926 1451 2927 1323 2927 1452 2927 1452 2928 1323 2928 1498 2928 1385 2929 1384 2929 1386 2929 1386 2930 1384 2930 1388 2930 1386 2931 1388 2931 1319 2931 1319 2932 1388 2932 1387 2932 1387 2933 1388 2933 1389 2933 1319 2934 1390 2934 1386 2934 1391 2935 1494 2935 1323 2935 1323 2936 1494 2936 1498 2936 1324 2937 1494 2937 1391 2937 1395 2938 1396 2938 1324 2938 1324 2939 1396 2939 1392 2939 1324 2940 1392 2940 1497 2940 1497 2941 1392 2941 1393 2941 1497 2942 1393 2942 1496 2942 1496 2943 1393 2943 1394 2943 1496 2944 1394 2944 1206 2944 1496 2945 1206 2945 1456 2945 1327 2946 1577 2946 1395 2946 1395 2947 1577 2947 1332 2947 1395 2948 1332 2948 1396 2948 1396 2949 1332 2949 1397 2949 1397 2950 1332 2950 1335 2950 1397 2951 1335 2951 1398 2951 1329 2952 1399 2952 1327 2952 1327 2953 1399 2953 1577 2953 1577 2954 1334 2954 1332 2954 1206 2955 1394 2955 1406 2955 1406 2956 1394 2956 1400 2956 1406 2957 1400 2957 1405 2957 1497 2958 1494 2958 1324 2958 1452 2959 1498 2959 1454 2959 1454 2960 1498 2960 1495 2960 1454 2961 1495 2961 1457 2961 1457 2962 1495 2962 1456 2962 1456 2963 1495 2963 1496 2963 1423 2964 1485 2964 1425 2964 1425 2965 1485 2965 1482 2965 1425 2966 1482 2966 1428 2966 1428 2967 1482 2967 1424 2967 1424 2968 1482 2968 1432 2968 1432 2969 1482 2969 1484 2969 1261 2970 1475 2970 1410 2970 1475 2971 1401 2971 1410 2971 1401 2972 1475 2972 1471 2972 1401 2973 1471 2973 1411 2973 1411 2974 1471 2974 1414 2974 1414 2975 1471 2975 1473 2975 1414 2976 1473 2976 1415 2976 1440 2977 1463 2977 1442 2977 1442 2978 1463 2978 1467 2978 1442 2979 1467 2979 1441 2979 1441 2980 1467 2980 1447 2980 1447 2981 1467 2981 1445 2981 1445 2982 1467 2982 1460 2982 1410 2983 1405 2983 1261 2983 1405 2984 1407 2984 1404 2984 1406 2985 1405 2985 1404 2985 1407 2986 1405 2986 1408 2986 1410 2987 1409 2987 1405 2987 1405 2988 1409 2988 1408 2988 1410 2989 1401 2989 1409 2989 1401 2990 1412 2990 1409 2990 1411 2991 1414 2991 1258 2991 1414 2992 1413 2992 1258 2992 1401 2993 1411 2993 1412 2993 1411 2994 1258 2994 1412 2994 1414 2995 1417 2995 1418 2995 1414 2996 1418 2996 1413 2996 1413 2997 1418 2997 1420 2997 1416 2998 1414 2998 1415 2998 1416 2999 1417 2999 1414 2999 1418 3000 1416 3000 1415 3000 1420 3001 1418 3001 1415 3001 1415 3002 1419 3002 1420 3002 1415 3003 1244 3003 1419 3003 1244 3004 1415 3004 1421 3004 1423 3005 1422 3005 1421 3005 1421 3006 1422 3006 1244 3006 1423 3007 1425 3007 1422 3007 1425 3008 1426 3008 1422 3008 1428 3009 1424 3009 1429 3009 1427 3010 1428 3010 1429 3010 1426 3011 1425 3011 1428 3011 1427 3012 1426 3012 1428 3012 1429 3013 1424 3013 1430 3013 1424 3014 1432 3014 1433 3014 1434 3015 1432 3015 1430 3015 1433 3016 1431 3016 1424 3016 1434 3017 1433 3017 1432 3017 1434 3018 1430 3018 1424 3018 1434 3019 1424 3019 1431 3019 1435 3020 1437 3020 1432 3020 1432 3021 1437 3021 1430 3021 1435 3022 1436 3022 1437 3022 1437 3023 1436 3023 1438 3023 1440 3024 1439 3024 1436 3024 1436 3025 1439 3025 1438 3025 1440 3026 1442 3026 1439 3026 1441 3027 1443 3027 1442 3027 1442 3028 1443 3028 1439 3028 1447 3029 1446 3029 1444 3029 1444 3030 1443 3030 1441 3030 1444 3031 1441 3031 1447 3031 1445 3032 1446 3032 1447 3032 1450 3033 1448 3033 1445 3033 1445 3034 1448 3034 1446 3034 1450 3035 1449 3035 1448 3035 1450 3036 1451 3036 1449 3036 1452 3037 1453 3037 1451 3037 1451 3038 1453 3038 1449 3038 1454 3039 1453 3039 1452 3039 1453 3040 1454 3040 1458 3040 1457 3041 1458 3041 1454 3041 1456 3042 1455 3042 1457 3042 1457 3043 1459 3043 1458 3043 1459 3044 1457 3044 1455 3044 1468 3045 1462 3045 1470 3045 1464 3046 1470 3046 1461 3046 1460 3047 1465 3047 1464 3047 1463 3048 1461 3048 1462 3048 1461 3049 1470 3049 1462 3049 1460 3050 1467 3050 1469 3050 1460 3051 1469 3051 1465 3051 1463 3052 1462 3052 1467 3052 1462 3053 1468 3053 1467 3053 1464 3054 1466 3054 1470 3054 1465 3055 1466 3055 1464 3055 1467 3056 1468 3056 1469 3056 1479 3057 1478 3057 1481 3057 1476 3058 1480 3058 1475 3058 1475 3059 1474 3059 1471 3059 1473 3060 1471 3060 1481 3060 1475 3061 1472 3061 1474 3061 1471 3062 1474 3062 1481 3062 1480 3063 1476 3063 1477 3063 1476 3064 1478 3064 1477 3064 1475 3065 1480 3065 1472 3065 1478 3066 1479 3066 1477 3066 1473 3067 1481 3067 1478 3067 1480 3068 1477 3068 1472 3068 1365 3069 1484 3069 1493 3069 1484 3070 1482 3070 1486 3070 1483 3071 1365 3071 1490 3071 1484 3072 1486 3072 1493 3072 1487 3073 1491 3073 1485 3073 1487 3074 1488 3074 1491 3074 1365 3075 1493 3075 1490 3075 1487 3076 1483 3076 1488 3076 1483 3077 1489 3077 1488 3077 1483 3078 1490 3078 1489 3078 1482 3079 1485 3079 1492 3079 1482 3080 1492 3080 1486 3080 1485 3081 1491 3081 1492 3081 1486 3082 1492 3082 1493 3082 1494 3083 1502 3083 1498 3083 1496 3084 1499 3084 1497 3084 1497 3085 1501 3085 1494 3085 1497 3086 1499 3086 1501 3086 1494 3087 1501 3087 1503 3087 1494 3088 1503 3088 1502 3088 1495 3089 1498 3089 1505 3089 1495 3090 1505 3090 1496 3090 1496 3091 1500 3091 1499 3091 1498 3092 1502 3092 1504 3092 1498 3093 1504 3093 1505 3093 1496 3094 1505 3094 1500 3094 1502 3095 1503 3095 1504 3095 1735 3096 1738 3096 1506 3096 1506 3097 1738 3097 1507 3097 1507 3098 1508 3098 1506 3098 1507 3099 1509 3099 1508 3099 1510 3100 1513 3100 1511 3100 1511 3101 1513 3101 1512 3101 1511 3102 1512 3102 1570 3102 1510 3103 1682 3103 1513 3103 1513 3104 1514 3104 1512 3104 1512 3105 1514 3105 1515 3105 1515 3106 1514 3106 1737 3106 1515 3107 1737 3107 1742 3107 1516 3108 1738 3108 1514 3108 1518 3109 1913 3109 1516 3109 1517 3110 1913 3110 1518 3110 1677 3111 1915 3111 1517 3111 1517 3112 1915 3112 1913 3112 1519 3113 1892 3113 1677 3113 1677 3114 1892 3114 1915 3114 1520 3115 1521 3115 1519 3115 1519 3116 1521 3116 1892 3116 1674 3117 1667 3117 1520 3117 1520 3118 1667 3118 1522 3118 1520 3119 1522 3119 1521 3119 1672 3120 1671 3120 1674 3120 1674 3121 1671 3121 1667 3121 1522 3122 1667 3122 1665 3122 1665 3123 1667 3123 1668 3123 1522 3124 1665 3124 1523 3124 1523 3125 1665 3125 1662 3125 1523 3126 1662 3126 1660 3126 1892 3127 1521 3127 1524 3127 1892 3128 1524 3128 1525 3128 1892 3129 1525 3129 1912 3129 1912 3130 1525 3130 1657 3130 1912 3131 1657 3131 1526 3131 1912 3132 1526 3132 1916 3132 1916 3133 1526 3133 1811 3133 1811 3134 1526 3134 1527 3134 1527 3135 1526 3135 1528 3135 1527 3136 1528 3136 1808 3136 1808 3137 1528 3137 1529 3137 1808 3138 1529 3138 1803 3138 1803 3139 1529 3139 1805 3139 1805 3140 1529 3140 1530 3140 1805 3141 1530 3141 1801 3141 1801 3142 1530 3142 1843 3142 1801 3143 1843 3143 1842 3143 1529 3144 1528 3144 1531 3144 1531 3145 1528 3145 1655 3145 1531 3146 1655 3146 1532 3146 1532 3147 1655 3147 1652 3147 1652 3148 1655 3148 1533 3148 1532 3149 1651 3149 1531 3149 1645 3150 1843 3150 1530 3150 1534 3151 1838 3151 1645 3151 1645 3152 1838 3152 1843 3152 1643 3153 1838 3153 1534 3153 1640 3154 1839 3154 1643 3154 1643 3155 1839 3155 1838 3155 1538 3156 1626 3156 1640 3156 1640 3157 1626 3157 1625 3157 1640 3158 1625 3158 1839 3158 1839 3159 1625 3159 1535 3159 1839 3160 1535 3160 1844 3160 1844 3161 1535 3161 1536 3161 1844 3162 1536 3162 1537 3162 1844 3163 1537 3163 1622 3163 1844 3164 1622 3164 1840 3164 1840 3165 1622 3165 1789 3165 1840 3166 1789 3166 1841 3166 1638 3167 1631 3167 1538 3167 1538 3168 1631 3168 2070 3168 1538 3169 2070 3169 1626 3169 1626 3170 2070 3170 1627 3170 1627 3171 2070 3171 2149 3171 1627 3172 2149 3172 1629 3172 1539 3173 1540 3173 1638 3173 1638 3174 1540 3174 1631 3174 1631 3175 1634 3175 2070 3175 1789 3176 1622 3176 1785 3176 1785 3177 1622 3177 1541 3177 1785 3178 1541 3178 1783 3178 1783 3179 1541 3179 1780 3179 1780 3180 1541 3180 1615 3180 1780 3181 1615 3181 1777 3181 1777 3182 1615 3182 1614 3182 1777 3183 1614 3183 1776 3183 1776 3184 1614 3184 1890 3184 1541 3185 1621 3185 1615 3185 1615 3186 1621 3186 1617 3186 1617 3187 1621 3187 2047 3187 1617 3188 2047 3188 1542 3188 1620 3189 1543 3189 1621 3189 1621 3190 1543 3190 2047 3190 1544 3191 1868 3191 1614 3191 1614 3192 1868 3192 1890 3192 1545 3193 1868 3193 1544 3193 1612 3194 1868 3194 1545 3194 1611 3195 1891 3195 1612 3195 1612 3196 1891 3196 1868 3196 1547 3197 1550 3197 1611 3197 1611 3198 1550 3198 1867 3198 1611 3199 1867 3199 1891 3199 1546 3200 1604 3200 1547 3200 1547 3201 1604 3201 1596 3201 1547 3202 1596 3202 1550 3202 1606 3203 2139 3203 1546 3203 1546 3204 2139 3204 1604 3204 1604 3205 1602 3205 1309 3205 1604 3206 1309 3206 1596 3206 1596 3207 1309 3207 1548 3207 1548 3208 1309 3208 1311 3208 1548 3209 1311 3209 1549 3209 1867 3210 1550 3210 1551 3210 1867 3211 1551 3211 1595 3211 1867 3212 1595 3212 1552 3212 1867 3213 1552 3213 1887 3213 1887 3214 1552 3214 1553 3214 1887 3215 1553 3215 1765 3215 1887 3216 1765 3216 1889 3216 1765 3217 1553 3217 1763 3217 1763 3218 1553 3218 1593 3218 1763 3219 1593 3219 1762 3219 1762 3220 1593 3220 1554 3220 1762 3221 1554 3221 1758 3221 1758 3222 1554 3222 1757 3222 1757 3223 1554 3223 1556 3223 1757 3224 1556 3224 1755 3224 1755 3225 1556 3225 1862 3225 1554 3226 1593 3226 1555 3226 1555 3227 1593 3227 1592 3227 1555 3228 1592 3228 1319 3228 1319 3229 1592 3229 1387 3229 1387 3230 1592 3230 1590 3230 1319 3231 1588 3231 1555 3231 1584 3232 1863 3232 1556 3232 1556 3233 1863 3233 1862 3233 1557 3234 1863 3234 1584 3234 1558 3235 1863 3235 1557 3235 1560 3236 1864 3236 1558 3236 1558 3237 1864 3237 1863 3237 1559 3238 1561 3238 1560 3238 1560 3239 1561 3239 1562 3239 1560 3240 1562 3240 1864 3240 1864 3241 1562 3241 1563 3241 1864 3242 1563 3242 1573 3242 1864 3243 1573 3243 1845 3243 1845 3244 1573 3244 1564 3244 1845 3245 1564 3245 1568 3245 1845 3246 1568 3246 1865 3246 1865 3247 1568 3247 1745 3247 1567 3248 1577 3248 1559 3248 1559 3249 1577 3249 1578 3249 1559 3250 1578 3250 1561 3250 1561 3251 1578 3251 1565 3251 1565 3252 1578 3252 1576 3252 1565 3253 1576 3253 1566 3253 1580 3254 1399 3254 1567 3254 1567 3255 1399 3255 1577 3255 1745 3256 1568 3256 1741 3256 1741 3257 1568 3257 1515 3257 1741 3258 1515 3258 1742 3258 1516 3259 1913 3259 1908 3259 1516 3260 1908 3260 1507 3260 1507 3261 1908 3261 1509 3261 1509 3262 1908 3262 1821 3262 1821 3263 1908 3263 1820 3263 1820 3264 1908 3264 1914 3264 1820 3265 1914 3265 1813 3265 1813 3266 1914 3266 1916 3266 1813 3267 1916 3267 1811 3267 1776 3268 1890 3268 1774 3268 1774 3269 1890 3269 1889 3269 1774 3270 1889 3270 1768 3270 1768 3271 1889 3271 1773 3271 1773 3272 1889 3272 1766 3272 1766 3273 1889 3273 1765 3273 1755 3274 1862 3274 1569 3274 1755 3275 1569 3275 1756 3275 1756 3276 1569 3276 1751 3276 1751 3277 1569 3277 1866 3277 1751 3278 1866 3278 1747 3278 1747 3279 1866 3279 1745 3279 1745 3280 1866 3280 1865 3280 1801 3281 1842 3281 1799 3281 1799 3282 1842 3282 1841 3282 1799 3283 1841 3283 1792 3283 1792 3284 1841 3284 1791 3284 1791 3285 1841 3285 1786 3285 1786 3286 1841 3286 1789 3286 1514 3287 1738 3287 1737 3287 1507 3288 1738 3288 1516 3288 1683 3289 1511 3289 1685 3289 1685 3290 1511 3290 1570 3290 1685 3291 1570 3291 1684 3291 1684 3292 1570 3292 1512 3292 1684 3293 1512 3293 1734 3293 1734 3294 1512 3294 1515 3294 1734 3295 1515 3295 1686 3295 1686 3296 1515 3296 1568 3296 1686 3297 1568 3297 1571 3297 1571 3298 1568 3298 1564 3298 1571 3299 1564 3299 1687 3299 1687 3300 1564 3300 1573 3300 1687 3301 1573 3301 1572 3301 1572 3302 1573 3302 1563 3302 1572 3303 1563 3303 1688 3303 1688 3304 1563 3304 1562 3304 1688 3305 1562 3305 1689 3305 1689 3306 1562 3306 1561 3306 1689 3307 1561 3307 1690 3307 1690 3308 1561 3308 1565 3308 1690 3309 1565 3309 1574 3309 1574 3310 1565 3310 1566 3310 1574 3311 1566 3311 1575 3311 1575 3312 1566 3312 1576 3312 1575 3313 1576 3313 1691 3313 1691 3314 1576 3314 1578 3314 1032 3315 1691 3315 1579 3315 1578 3316 1579 3316 1691 3316 1577 3317 1579 3317 1578 3317 1579 3318 1577 3318 1032 3318 1032 3319 1577 3319 1692 3319 1692 3320 1577 3320 1399 3320 1692 3321 1399 3321 1581 3321 1581 3322 1399 3322 1580 3322 1581 3323 1580 3323 1582 3323 1582 3324 1580 3324 1567 3324 1582 3325 1567 3325 1583 3325 1583 3326 1567 3326 1559 3326 1583 3327 1559 3327 1693 3327 1693 3328 1559 3328 1560 3328 1693 3329 1560 3329 1694 3329 1694 3330 1560 3330 1558 3330 1694 3331 1558 3331 1695 3331 1695 3332 1558 3332 1557 3332 1695 3333 1557 3333 1696 3333 1696 3334 1557 3334 1584 3334 1696 3335 1584 3335 1697 3335 1697 3336 1584 3336 1556 3336 1697 3337 1556 3337 1585 3337 1585 3338 1556 3338 1554 3338 1585 3339 1554 3339 1586 3339 1586 3340 1554 3340 1555 3340 1586 3341 1555 3341 1587 3341 1587 3342 1555 3342 1588 3342 1587 3343 1588 3343 918 3343 918 3344 1588 3344 1319 3344 918 3345 1319 3345 916 3345 916 3346 1319 3346 1387 3346 916 3347 1387 3347 1589 3347 1589 3348 1387 3348 1590 3348 1589 3349 1590 3349 1591 3349 1591 3350 1590 3350 1592 3350 1591 3351 1592 3351 1699 3351 1699 3352 1592 3352 1593 3352 1699 3353 1593 3353 1700 3353 1700 3354 1593 3354 1553 3354 1700 3355 1553 3355 1594 3355 1594 3356 1553 3356 1552 3356 1594 3357 1552 3357 1701 3357 1701 3358 1552 3358 1595 3358 1701 3359 1595 3359 1702 3359 1702 3360 1595 3360 1551 3360 1702 3361 1551 3361 1703 3361 1703 3362 1551 3362 1550 3362 1703 3363 1550 3363 1707 3363 1707 3364 1550 3364 1596 3364 1707 3365 1596 3365 1597 3365 1597 3366 1596 3366 1548 3366 1597 3367 1548 3367 1598 3367 1598 3368 1548 3368 1549 3368 1598 3369 1549 3369 1599 3369 1599 3370 1549 3370 1311 3370 1599 3371 1311 3371 1600 3371 1600 3372 1311 3372 1309 3372 2665 3373 1601 3373 1603 3373 2665 3374 1603 3374 1604 3374 1601 3375 1602 3375 1603 3375 1604 3376 1603 3376 1602 3376 1309 3377 1602 3377 1601 3377 1600 3378 1309 3378 1601 3378 2665 3379 1604 3379 1605 3379 1605 3380 1604 3380 2139 3380 1605 3381 2139 3381 1708 3381 1708 3382 2139 3382 1606 3382 1708 3383 1606 3383 1607 3383 1607 3384 1606 3384 1546 3384 1607 3385 1546 3385 1608 3385 1608 3386 1546 3386 1547 3386 1608 3387 1547 3387 1609 3387 1609 3388 1547 3388 1611 3388 1609 3389 1611 3389 1610 3389 1610 3390 1611 3390 1612 3390 1610 3391 1612 3391 1613 3391 1613 3392 1612 3392 1545 3392 1613 3393 1545 3393 1704 3393 1704 3394 1545 3394 1544 3394 1704 3395 1544 3395 1705 3395 1705 3396 1544 3396 1614 3396 1705 3397 1614 3397 1709 3397 1709 3398 1614 3398 1615 3398 1709 3399 1615 3399 1712 3399 1712 3400 1615 3400 1617 3400 1712 3401 1617 3401 1616 3401 1616 3402 1617 3402 1542 3402 1616 3403 1542 3403 1713 3403 1713 3404 1542 3404 2047 3404 1713 3405 2047 3405 1618 3405 1618 3406 2047 3406 1543 3406 1618 3407 1543 3407 1619 3407 1619 3408 1543 3408 1620 3408 1619 3409 1620 3409 1711 3409 1711 3410 1620 3410 1621 3410 1711 3411 1621 3411 1710 3411 1710 3412 1621 3412 1541 3412 1710 3413 1541 3413 1733 3413 1733 3414 1541 3414 1622 3414 1733 3415 1622 3415 1714 3415 1714 3416 1622 3416 1537 3416 1714 3417 1537 3417 1623 3417 1623 3418 1537 3418 1536 3418 1623 3419 1536 3419 1715 3419 1715 3420 1536 3420 1535 3420 1715 3421 1535 3421 1624 3421 1624 3422 1535 3422 1625 3422 1624 3423 1625 3423 1716 3423 1716 3424 1625 3424 1626 3424 1716 3425 1626 3425 1628 3425 1628 3426 1626 3426 1627 3426 1628 3427 1627 3427 1630 3427 1630 3428 1627 3428 1629 3428 1630 3429 1629 3429 2643 3429 2643 3430 1629 3430 2149 3430 2643 3431 2149 3431 2636 3431 2636 3432 2149 3432 2070 3432 1635 3433 1633 3433 1636 3433 1635 3434 1636 3434 1632 3434 2070 3435 1633 3435 2636 3435 1631 3436 1632 3436 1634 3436 1634 3437 1636 3437 1633 3437 1632 3438 1636 3438 1634 3438 1633 3439 1635 3439 2636 3439 1634 3440 1633 3440 2070 3440 1632 3441 1631 3441 1718 3441 1718 3442 1631 3442 1540 3442 1718 3443 1540 3443 1637 3443 1637 3444 1540 3444 1539 3444 1637 3445 1539 3445 1717 3445 1717 3446 1539 3446 1638 3446 1717 3447 1638 3447 1639 3447 1639 3448 1638 3448 1538 3448 1639 3449 1538 3449 1641 3449 1641 3450 1538 3450 1640 3450 1641 3451 1640 3451 1642 3451 1642 3452 1640 3452 1643 3452 1642 3453 1643 3453 1644 3453 1644 3454 1643 3454 1534 3454 1644 3455 1534 3455 1646 3455 1646 3456 1534 3456 1645 3456 1646 3457 1645 3457 1647 3457 1647 3458 1645 3458 1530 3458 1647 3459 1530 3459 1720 3459 1720 3460 1530 3460 1529 3460 1720 3461 1529 3461 1648 3461 1648 3462 1529 3462 1531 3462 1648 3463 1531 3463 1649 3463 1649 3464 1531 3464 1651 3464 1649 3465 1651 3465 1650 3465 1650 3466 1651 3466 1532 3466 1650 3467 1532 3467 1653 3467 1653 3468 1532 3468 1652 3468 1653 3469 1652 3469 1654 3469 1654 3470 1652 3470 1533 3470 1654 3471 1533 3471 1721 3471 1721 3472 1533 3472 1655 3472 1721 3473 1655 3473 1656 3473 1656 3474 1655 3474 1528 3474 1656 3475 1528 3475 1732 3475 1732 3476 1528 3476 1526 3476 1732 3477 1526 3477 1722 3477 1722 3478 1526 3478 1657 3478 1722 3479 1657 3479 1658 3479 1658 3480 1657 3480 1525 3480 1658 3481 1525 3481 1723 3481 1723 3482 1525 3482 1524 3482 1723 3483 1524 3483 1725 3483 1725 3484 1524 3484 1521 3484 1725 3485 1521 3485 1724 3485 1724 3486 1521 3486 1522 3486 1724 3487 1522 3487 1729 3487 1729 3488 1522 3488 1523 3488 1729 3489 1523 3489 1659 3489 1659 3490 1523 3490 1660 3490 1659 3491 1660 3491 1661 3491 1661 3492 1660 3492 1662 3492 1661 3493 1662 3493 1664 3493 1664 3494 1662 3494 1665 3494 1668 3495 1666 3495 1663 3495 1665 3496 1663 3496 1664 3496 1663 3497 1669 3497 1664 3497 1668 3498 1663 3498 1665 3498 1667 3499 1666 3499 1668 3499 1663 3500 1666 3500 1669 3500 1666 3501 1667 3501 1728 3501 1728 3502 1667 3502 1671 3502 1728 3503 1671 3503 1670 3503 1670 3504 1671 3504 1672 3504 1670 3505 1672 3505 1673 3505 1673 3506 1672 3506 1674 3506 1673 3507 1674 3507 1675 3507 1675 3508 1674 3508 1520 3508 1675 3509 1520 3509 1676 3509 1676 3510 1520 3510 1519 3510 1676 3511 1519 3511 1726 3511 1726 3512 1519 3512 1677 3512 1726 3513 1677 3513 1678 3513 1678 3514 1677 3514 1517 3514 1678 3515 1517 3515 1727 3515 1727 3516 1517 3516 1518 3516 1727 3517 1518 3517 1730 3517 1730 3518 1518 3518 1516 3518 1730 3519 1516 3519 1731 3519 1731 3520 1516 3520 1514 3520 1731 3521 1514 3521 1679 3521 1679 3522 1514 3522 1513 3522 1679 3523 1513 3523 1680 3523 1680 3524 1513 3524 1682 3524 1680 3525 1682 3525 1681 3525 1681 3526 1682 3526 1510 3526 1681 3527 1510 3527 1683 3527 1683 3528 1510 3528 1511 3528 1680 3529 1681 3529 1679 3529 1679 3530 1681 3530 1683 3530 1679 3531 1683 3531 1684 3531 1684 3532 1683 3532 1685 3532 1684 3533 1734 3533 1679 3533 1679 3534 1734 3534 1731 3534 1731 3535 1734 3535 1740 3535 1731 3536 1740 3536 1736 3536 1686 3537 1743 3537 1734 3537 1571 3538 1850 3538 1686 3538 1686 3539 1850 3539 1854 3539 1687 3540 1850 3540 1571 3540 1572 3541 1846 3541 1687 3541 1687 3542 1846 3542 1850 3542 1688 3543 1846 3543 1572 3543 1689 3544 1693 3544 1688 3544 1688 3545 1693 3545 1852 3545 1688 3546 1852 3546 1846 3546 1690 3547 1691 3547 1689 3547 1689 3548 1691 3548 1583 3548 1689 3549 1583 3549 1693 3549 1574 3550 1575 3550 1690 3550 1690 3551 1575 3551 1691 3551 1691 3552 1032 3552 1583 3552 1583 3553 1032 3553 1582 3553 1582 3554 1032 3554 1692 3554 1582 3555 1692 3555 1581 3555 1852 3556 1693 3556 1694 3556 1852 3557 1694 3557 1695 3557 1852 3558 1695 3558 1696 3558 1852 3559 1696 3559 1849 3559 1849 3560 1696 3560 1697 3560 1849 3561 1697 3561 1848 3561 1848 3562 1697 3562 1754 3562 1848 3563 1754 3563 1752 3563 1754 3564 1697 3564 1759 3564 1759 3565 1697 3565 1585 3565 1759 3566 1585 3566 1760 3566 1760 3567 1585 3567 1699 3567 1760 3568 1699 3568 1761 3568 1761 3569 1699 3569 1698 3569 1698 3570 1699 3570 1700 3570 1698 3571 1700 3571 1764 3571 1764 3572 1700 3572 1872 3572 1699 3573 1585 3573 1591 3573 1591 3574 1585 3574 1586 3574 1591 3575 1586 3575 916 3575 916 3576 1586 3576 918 3576 918 3577 1586 3577 1587 3577 916 3578 1589 3578 1591 3578 1594 3579 1870 3579 1700 3579 1700 3580 1870 3580 1872 3580 1701 3581 1873 3581 1594 3581 1594 3582 1873 3582 1870 3582 1702 3583 1873 3583 1701 3583 1703 3584 1873 3584 1702 3584 1707 3585 1608 3585 1703 3585 1703 3586 1608 3586 1609 3586 1703 3587 1609 3587 1873 3587 1873 3588 1609 3588 1869 3588 1869 3589 1609 3589 1610 3589 1869 3590 1610 3590 1613 3590 1869 3591 1613 3591 1704 3591 1869 3592 1704 3592 1705 3592 1869 3593 1705 3593 1871 3593 1871 3594 1705 3594 1706 3594 1597 3595 1600 3595 1707 3595 1707 3596 1600 3596 2665 3596 1707 3597 2665 3597 1608 3597 1608 3598 2665 3598 1607 3598 1607 3599 2665 3599 1605 3599 1607 3600 1605 3600 1708 3600 1598 3601 1599 3601 1597 3601 1597 3602 1599 3602 1600 3602 1600 3603 1601 3603 2665 3603 1706 3604 1705 3604 1778 3604 1778 3605 1705 3605 1709 3605 1778 3606 1709 3606 1779 3606 1779 3607 1709 3607 1781 3607 1781 3608 1709 3608 1710 3608 1781 3609 1710 3609 1782 3609 1782 3610 1710 3610 1733 3610 1782 3611 1733 3611 1787 3611 1787 3612 1733 3612 1824 3612 1709 3613 1712 3613 1710 3613 1710 3614 1712 3614 1711 3614 1711 3615 1712 3615 1713 3615 1711 3616 1713 3616 1618 3616 1712 3617 1616 3617 1713 3617 1618 3618 1619 3618 1711 3618 1714 3619 1831 3619 1733 3619 1733 3620 1831 3620 1824 3620 1623 3621 1831 3621 1714 3621 1715 3622 1827 3622 1623 3622 1623 3623 1827 3623 1831 3623 1624 3624 1828 3624 1715 3624 1715 3625 1828 3625 1827 3625 1716 3626 1641 3626 1624 3626 1624 3627 1641 3627 1828 3627 1628 3628 2636 3628 1716 3628 1716 3629 2636 3629 1639 3629 1716 3630 1639 3630 1641 3630 1630 3631 2643 3631 1628 3631 1628 3632 2643 3632 2636 3632 1639 3633 2636 3633 1632 3633 1632 3634 2636 3634 1635 3634 1639 3635 1632 3635 1717 3635 1717 3636 1632 3636 1718 3636 1717 3637 1718 3637 1637 3637 1828 3638 1641 3638 1642 3638 1828 3639 1642 3639 1644 3639 1828 3640 1644 3640 1823 3640 1823 3641 1644 3641 1646 3641 1823 3642 1646 3642 1647 3642 1823 3643 1647 3643 1822 3643 1822 3644 1647 3644 1800 3644 1800 3645 1647 3645 1719 3645 1719 3646 1647 3646 1720 3646 1719 3647 1720 3647 1802 3647 1802 3648 1720 3648 1656 3648 1802 3649 1656 3649 1807 3649 1807 3650 1656 3650 1806 3650 1806 3651 1656 3651 1732 3651 1806 3652 1732 3652 1809 3652 1809 3653 1732 3653 1898 3653 1656 3654 1720 3654 1721 3654 1721 3655 1720 3655 1648 3655 1721 3656 1648 3656 1653 3656 1653 3657 1648 3657 1650 3657 1650 3658 1648 3658 1649 3658 1653 3659 1654 3659 1721 3659 1722 3660 1898 3660 1732 3660 1658 3661 1898 3661 1722 3661 1723 3662 1894 3662 1658 3662 1658 3663 1894 3663 1898 3663 1725 3664 1905 3664 1723 3664 1723 3665 1905 3665 1894 3665 1724 3666 1675 3666 1725 3666 1725 3667 1675 3667 1676 3667 1725 3668 1676 3668 1905 3668 1905 3669 1676 3669 1897 3669 1897 3670 1676 3670 1726 3670 1897 3671 1726 3671 1678 3671 1897 3672 1678 3672 1896 3672 1896 3673 1678 3673 1727 3673 1896 3674 1727 3674 1730 3674 1896 3675 1730 3675 1893 3675 1893 3676 1730 3676 1899 3676 1899 3677 1730 3677 1506 3677 1899 3678 1506 3678 1508 3678 1729 3679 1664 3679 1724 3679 1724 3680 1664 3680 1666 3680 1724 3681 1666 3681 1675 3681 1675 3682 1666 3682 1673 3682 1673 3683 1666 3683 1728 3683 1673 3684 1728 3684 1670 3684 1659 3685 1661 3685 1729 3685 1729 3686 1661 3686 1664 3686 1664 3687 1669 3687 1666 3687 1506 3688 1730 3688 1735 3688 1735 3689 1730 3689 1731 3689 1735 3690 1731 3690 1736 3690 1809 3691 1898 3691 1812 3691 1812 3692 1898 3692 1895 3692 1812 3693 1895 3693 1815 3693 1815 3694 1895 3694 1814 3694 1814 3695 1895 3695 1819 3695 1819 3696 1895 3696 1508 3696 1508 3697 1895 3697 1899 3697 1764 3698 1872 3698 1767 3698 1767 3699 1872 3699 1874 3699 1767 3700 1874 3700 1770 3700 1770 3701 1874 3701 1769 3701 1769 3702 1874 3702 1775 3702 1775 3703 1874 3703 1871 3703 1775 3704 1871 3704 1706 3704 1686 3705 1854 3705 1856 3705 1686 3706 1856 3706 1744 3706 1855 3707 1744 3707 1856 3707 1744 3708 1855 3708 1746 3708 1746 3709 1855 3709 1749 3709 1749 3710 1855 3710 1847 3710 1749 3711 1847 3711 1752 3711 1752 3712 1847 3712 1848 3712 1787 3713 1824 3713 1788 3713 1788 3714 1824 3714 1826 3714 1788 3715 1826 3715 1790 3715 1790 3716 1826 3716 1793 3716 1793 3717 1826 3717 1797 3717 1797 3718 1826 3718 1822 3718 1797 3719 1822 3719 1798 3719 1798 3720 1822 3720 1800 3720 1744 3721 1743 3721 1686 3721 1734 3722 1743 3722 1740 3722 1740 3723 1742 3723 1736 3723 1736 3724 1742 3724 1737 3724 1735 3725 1739 3725 1738 3725 1735 3726 1736 3726 1739 3726 1739 3727 1737 3727 1738 3727 1737 3728 1739 3728 1736 3728 1740 3729 1741 3729 1742 3729 1740 3730 1743 3730 1741 3730 1744 3731 1745 3731 1743 3731 1743 3732 1745 3732 1741 3732 1747 3733 1744 3733 1746 3733 1745 3734 1744 3734 1747 3734 1750 3735 1749 3735 1748 3735 1752 3736 1756 3736 1749 3736 1746 3737 1750 3737 1747 3737 1748 3738 1749 3738 1756 3738 1748 3739 1751 3739 1750 3739 1751 3740 1748 3740 1756 3740 1746 3741 1749 3741 1750 3741 1751 3742 1747 3742 1750 3742 1752 3743 1753 3743 1756 3743 1756 3744 1753 3744 1755 3744 1755 3745 1753 3745 1754 3745 1753 3746 1752 3746 1754 3746 1759 3747 1757 3747 1754 3747 1754 3748 1757 3748 1755 3748 1759 3749 1760 3749 1757 3749 1760 3750 1758 3750 1757 3750 1761 3751 1762 3751 1760 3751 1760 3752 1762 3752 1758 3752 1761 3753 1763 3753 1762 3753 1761 3754 1698 3754 1763 3754 1764 3755 1765 3755 1698 3755 1698 3756 1765 3756 1763 3756 1765 3757 1764 3757 1766 3757 1766 3758 1764 3758 1767 3758 1770 3759 1769 3759 1772 3759 1768 3760 1772 3760 1769 3760 1771 3761 1770 3761 1772 3761 1767 3762 1771 3762 1766 3762 1773 3763 1771 3763 1772 3763 1771 3764 1773 3764 1766 3764 1773 3765 1772 3765 1768 3765 1767 3766 1770 3766 1771 3766 1775 3767 1774 3767 1769 3767 1769 3768 1774 3768 1768 3768 1775 3769 1776 3769 1774 3769 1776 3770 1775 3770 1706 3770 1778 3771 1777 3771 1706 3771 1706 3772 1777 3772 1776 3772 1778 3773 1780 3773 1777 3773 1778 3774 1779 3774 1780 3774 1781 3775 1783 3775 1779 3775 1779 3776 1783 3776 1780 3776 1781 3777 1784 3777 1783 3777 1783 3778 1784 3778 1785 3778 1785 3779 1784 3779 1782 3779 1781 3780 1782 3780 1784 3780 1787 3781 1789 3781 1782 3781 1782 3782 1789 3782 1785 3782 1786 3783 1789 3783 1788 3783 1788 3784 1789 3784 1787 3784 1790 3785 1791 3785 1788 3785 1788 3786 1791 3786 1786 3786 1792 3787 1796 3787 1794 3787 1794 3788 1799 3788 1792 3788 1791 3789 1795 3789 1792 3789 1799 3790 1794 3790 1798 3790 1798 3791 1794 3791 1797 3791 1790 3792 1795 3792 1791 3792 1796 3793 1793 3793 1797 3793 1793 3794 1795 3794 1790 3794 1793 3795 1796 3795 1795 3795 1794 3796 1796 3796 1797 3796 1796 3797 1792 3797 1795 3797 1798 3798 1801 3798 1799 3798 1801 3799 1798 3799 1800 3799 1719 3800 1805 3800 1800 3800 1800 3801 1805 3801 1801 3801 1719 3802 1804 3802 1805 3802 1805 3803 1804 3803 1803 3803 1803 3804 1804 3804 1802 3804 1802 3805 1804 3805 1719 3805 1807 3806 1808 3806 1802 3806 1802 3807 1808 3807 1803 3807 1807 3808 1806 3808 1808 3808 1808 3809 1806 3809 1527 3809 1809 3810 1811 3810 1806 3810 1806 3811 1811 3811 1527 3811 1809 3812 1810 3812 1811 3812 1813 3813 1810 3813 1812 3813 1810 3814 1809 3814 1812 3814 1813 3815 1811 3815 1810 3815 1815 3816 1813 3816 1812 3816 1816 3817 1819 3817 1821 3817 1815 3818 1817 3818 1813 3818 1815 3819 1816 3819 1817 3819 1816 3820 1818 3820 1817 3820 1820 3821 1818 3821 1821 3821 1816 3822 1815 3822 1814 3822 1817 3823 1820 3823 1813 3823 1817 3824 1818 3824 1820 3824 1818 3825 1816 3825 1821 3825 1816 3826 1814 3826 1819 3826 1508 3827 1509 3827 1819 3827 1819 3828 1509 3828 1821 3828 1828 3829 1825 3829 1827 3829 1822 3830 1826 3830 1835 3830 1822 3831 1835 3831 1832 3831 1823 3832 1829 3832 1828 3832 1823 3833 1822 3833 1833 3833 1823 3834 1833 3834 1829 3834 1827 3835 1825 3835 1830 3835 1822 3836 1832 3836 1833 3836 1827 3837 1830 3837 1834 3837 1827 3838 1834 3838 1831 3838 1824 3839 1837 3839 1826 3839 1831 3840 1836 3840 1824 3840 1826 3841 1837 3841 1835 3841 1831 3842 1834 3842 1836 3842 1824 3843 1836 3843 1837 3843 1833 3844 1843 3844 1829 3844 1829 3845 1838 3845 1828 3845 1829 3846 1843 3846 1838 3846 1828 3847 1838 3847 1825 3847 1834 3848 1830 3848 1844 3848 1836 3849 1840 3849 1837 3849 1825 3850 1838 3850 1839 3850 1834 3851 1844 3851 1836 3851 1833 3852 1832 3852 1843 3852 1825 3853 1839 3853 1830 3853 1837 3854 1841 3854 1835 3854 1830 3855 1839 3855 1844 3855 1832 3856 1835 3856 1842 3856 1832 3857 1842 3857 1843 3857 1837 3858 1840 3858 1841 3858 1835 3859 1841 3859 1842 3859 1836 3860 1844 3860 1840 3860 1845 3861 1865 3861 1858 3861 1848 3862 1847 3862 1860 3862 1848 3863 1860 3863 1861 3863 1849 3864 1851 3864 1852 3864 1846 3865 1852 3865 1853 3865 1854 3866 1858 3866 1856 3866 1848 3867 1861 3867 1849 3867 1847 3868 1855 3868 1857 3868 1847 3869 1857 3869 1860 3869 1846 3870 1853 3870 1859 3870 1846 3871 1859 3871 1850 3871 1856 3872 1865 3872 1855 3872 1855 3873 1866 3873 1857 3873 1849 3874 1861 3874 1851 3874 1850 3875 1859 3875 1845 3875 1850 3876 1845 3876 1854 3876 1855 3877 1865 3877 1866 3877 1854 3878 1845 3878 1858 3878 1856 3879 1858 3879 1865 3879 1852 3880 1851 3880 1863 3880 1852 3881 1863 3881 1853 3881 1851 3882 1861 3882 1863 3882 1859 3883 1853 3883 1864 3883 1860 3884 1857 3884 1569 3884 1861 3885 1860 3885 1862 3885 1853 3886 1863 3886 1864 3886 1860 3887 1569 3887 1862 3887 1861 3888 1862 3888 1863 3888 1857 3889 1866 3889 1569 3889 1859 3890 1864 3890 1845 3890 1873 3891 1879 3891 1870 3891 1887 3892 1888 3892 1867 3892 1868 3893 1891 3893 1884 3893 1871 3894 1874 3894 1883 3894 1869 3895 1877 3895 1873 3895 1870 3896 1879 3896 1888 3896 1871 3897 1883 3897 1881 3897 1869 3898 1871 3898 1875 3898 1873 3899 1877 3899 1876 3899 1872 3900 1886 3900 1882 3900 1872 3901 1882 3901 1874 3901 1870 3902 1885 3902 1872 3902 1869 3903 1875 3903 1880 3903 1872 3904 1885 3904 1886 3904 1869 3905 1880 3905 1877 3905 1873 3906 1876 3906 1879 3906 1870 3907 1888 3907 1885 3907 1871 3908 1881 3908 1875 3908 1875 3909 1878 3909 1880 3909 1875 3910 1881 3910 1878 3910 1874 3911 1882 3911 1883 3911 1880 3912 1884 3912 1877 3912 1877 3913 1884 3913 1876 3913 1880 3914 1878 3914 1868 3914 1880 3915 1868 3915 1884 3915 1876 3916 1867 3916 1879 3916 1879 3917 1867 3917 1888 3917 1883 3918 1890 3918 1881 3918 1884 3919 1891 3919 1876 3919 1885 3920 1889 3920 1886 3920 1886 3921 1889 3921 1882 3921 1882 3922 1889 3922 1883 3922 1876 3923 1891 3923 1867 3923 1888 3924 1887 3924 1885 3924 1885 3925 1887 3925 1889 3925 1881 3926 1890 3926 1878 3926 1878 3927 1890 3927 1868 3927 1883 3928 1889 3928 1890 3928 1898 3929 1902 3929 1895 3929 1915 3930 1907 3930 1913 3930 1896 3931 1893 3931 1901 3931 1898 3932 1910 3932 1902 3932 1898 3933 1894 3933 1900 3933 1894 3934 1909 3934 1900 3934 1893 3935 1899 3935 1904 3935 1893 3936 1906 3936 1901 3936 1896 3937 1901 3937 1897 3937 1894 3938 1905 3938 1909 3938 1893 3939 1904 3939 1906 3939 1898 3940 1903 3940 1910 3940 1898 3941 1900 3941 1903 3941 1897 3942 1901 3942 1915 3942 1895 3943 1914 3943 1899 3943 1905 3944 1911 3944 1909 3944 1897 3945 1915 3945 1892 3945 1897 3946 1892 3946 1905 3946 1895 3947 1902 3947 1914 3947 1899 3948 1914 3948 1908 3948 1899 3949 1908 3949 1904 3949 1906 3950 1904 3950 1907 3950 1901 3951 1906 3951 1907 3951 1901 3952 1907 3952 1915 3952 1905 3953 1892 3953 1911 3953 1903 3954 1900 3954 1912 3954 1910 3955 1903 3955 1916 3955 1903 3956 1912 3956 1916 3956 1907 3957 1904 3957 1913 3957 1900 3958 1909 3958 1912 3958 1904 3959 1908 3959 1913 3959 1910 3960 1916 3960 1902 3960 1911 3961 1892 3961 1909 3961 1909 3962 1892 3962 1912 3962 1902 3963 1916 3963 1914 3963 2167 3964 2168 3964 1918 3964 1918 3965 2168 3965 1919 3965 1917 3966 1919 3966 1974 3966 1917 3967 1918 3967 1919 3967 2120 3968 2117 3968 1978 3968 1978 3969 2117 3969 1921 3969 1978 3970 1921 3970 1920 3970 2120 3971 2118 3971 2117 3971 2117 3972 1977 3972 1921 3972 1921 3973 1977 3973 1979 3973 1979 3974 1977 3974 2164 3974 1979 3975 2164 3975 2171 3975 1922 3976 2168 3976 1977 3976 1923 3977 2428 3977 1922 3977 1922 3978 2428 3978 2429 3978 1924 3979 2428 3979 1923 3979 1925 3980 2428 3980 1924 3980 1975 3981 2463 3981 1925 3981 1925 3982 2463 3982 2428 3982 1928 3983 1926 3983 1975 3983 1975 3984 1926 3984 2463 3984 1927 3985 2100 3985 1928 3985 1928 3986 2100 3986 1929 3986 1928 3987 1929 3987 1926 3987 2112 3988 2109 3988 1927 3988 1927 3989 2109 3989 2100 3989 1929 3990 2100 3990 10827 3990 10827 3991 2100 3991 2101 3991 1929 3992 10827 3992 2095 3992 2095 3993 10827 3993 10709 3993 2095 3994 10709 3994 2096 3994 2463 3995 1926 3995 1930 3995 2463 3996 1930 3996 2457 3996 2457 3997 1930 3997 1931 3997 2457 3998 1931 3998 1932 3998 2457 3999 1932 3999 2464 3999 2464 4000 1932 4000 1933 4000 2464 4001 1933 4001 2462 4001 2462 4002 1933 4002 2291 4002 2462 4003 2291 4003 2290 4003 2291 4004 1933 4004 2282 4004 2282 4005 1933 4005 1934 4005 2282 4006 1934 4006 2283 4006 2283 4007 1934 4007 1936 4007 2283 4008 1936 4008 2279 4008 2279 4009 1936 4009 2278 4009 2278 4010 1936 4010 1935 4010 2278 4011 1935 4011 2272 4011 2272 4012 1935 4012 2346 4012 1936 4013 1934 4013 1937 4013 1937 4014 1934 4014 2090 4014 1937 4015 2090 4015 1938 4015 1938 4016 2090 4016 10716 4016 10716 4017 2090 4017 2089 4017 1938 4018 2085 4018 1937 4018 1939 4019 2346 4019 1935 4019 2080 4020 2343 4020 1939 4020 1939 4021 2343 4021 2346 4021 1940 4022 2343 4022 2080 4022 2078 4023 2343 4023 1940 4023 1944 4024 2059 4024 2078 4024 2078 4025 2059 4025 2057 4025 2078 4026 2057 4026 2343 4026 2343 4027 2057 4027 2347 4027 2347 4028 2057 4028 1941 4028 2347 4029 1941 4029 2055 4029 2347 4030 2055 4030 2054 4030 2347 4031 2054 4031 2344 4031 2344 4032 2054 4032 1942 4032 2344 4033 1942 4033 2256 4033 2344 4034 2256 4034 2305 4034 1943 4035 2065 4035 1944 4035 1944 4036 2065 4036 3583 4036 1944 4037 3583 4037 2059 4037 2059 4038 3583 4038 1945 4038 1945 4039 3583 4039 3579 4039 1945 4040 3579 4040 1946 4040 2075 4041 2073 4041 1943 4041 1943 4042 2073 4042 2065 4042 2065 4043 2067 4043 3583 4043 2256 4044 1942 4044 2250 4044 2250 4045 1942 4045 1947 4045 2250 4046 1947 4046 2249 4046 2249 4047 1947 4047 2245 4047 2245 4048 1947 4048 1948 4048 2245 4049 1948 4049 2244 4049 2244 4050 1948 4050 1949 4050 2244 4051 1949 4051 2237 4051 2237 4052 1949 4052 2421 4052 1947 4053 2052 4053 1948 4053 1948 4054 2052 4054 2046 4054 2046 4055 2052 4055 3567 4055 2046 4056 3567 4056 2048 4056 2050 4057 2049 4057 2052 4057 2052 4058 2049 4058 3567 4058 2043 4059 2416 4059 1949 4059 1950 4060 2416 4060 2043 4060 2041 4061 2424 4061 1950 4061 1950 4062 2424 4062 2416 4062 2039 4063 2424 4063 2041 4063 1952 4064 1951 4064 2039 4064 2039 4065 1951 4065 2424 4065 2037 4066 3557 4066 1952 4066 1952 4067 3557 4067 2025 4067 1952 4068 2025 4068 1951 4068 1953 4069 3558 4069 2037 4069 2037 4070 3558 4070 3557 4070 3557 4071 2028 4071 2035 4071 3557 4072 2035 4072 2025 4072 2025 4073 2035 4073 1954 4073 1954 4074 2035 4074 1955 4074 1954 4075 1955 4075 2027 4075 2424 4076 1951 4076 2427 4076 2427 4077 1951 4077 1956 4077 2427 4078 1956 4078 2420 4078 2420 4079 1956 4079 2020 4079 2420 4080 2020 4080 2019 4080 2420 4081 2019 4081 2423 4081 2423 4082 2019 4082 2016 4082 2423 4083 2016 4083 2425 4083 2425 4084 2016 4084 2215 4084 2425 4085 2215 4085 2426 4085 2215 4086 2016 4086 2208 4086 2208 4087 2016 4087 2015 4087 2208 4088 2015 4088 2207 4088 2207 4089 2015 4089 1958 4089 2207 4090 1958 4090 2205 4090 2205 4091 1958 4091 2204 4091 2204 4092 1958 4092 1957 4092 2204 4093 1957 4093 2196 4093 2196 4094 1957 4094 2383 4094 1958 4095 2015 4095 1959 4095 1959 4096 2015 4096 2014 4096 1959 4097 2014 4097 1960 4097 1960 4098 2014 4098 1961 4098 1961 4099 2014 4099 2013 4099 1960 4100 2009 4100 1959 4100 1962 4101 2381 4101 1957 4101 1963 4102 2385 4102 1962 4102 1962 4103 2385 4103 2381 4103 1964 4104 2385 4104 1963 4104 2003 4105 2384 4105 1964 4105 1964 4106 2384 4106 2385 4106 1970 4107 1985 4107 2003 4107 2003 4108 1985 4108 1965 4108 2003 4109 1965 4109 2384 4109 2384 4110 1965 4110 1966 4110 2384 4111 1966 4111 1967 4111 2384 4112 1967 4112 2377 4112 2377 4113 1967 4113 1968 4113 2377 4114 1968 4114 1969 4114 2377 4115 1969 4115 2387 4115 2387 4116 1969 4116 2386 4116 2386 4117 1969 4117 2173 4117 1972 4118 1994 4118 1970 4118 1970 4119 1994 4119 1973 4119 1970 4120 1973 4120 1985 4120 1985 4121 1973 4121 1986 4121 1986 4122 1973 4122 1989 4122 1986 4123 1989 4123 1971 4123 2000 4124 1999 4124 1972 4124 1972 4125 1999 4125 1994 4125 1994 4126 1991 4126 1973 4126 2173 4127 1969 4127 2172 4127 2172 4128 1969 4128 1979 4128 2172 4129 1979 4129 2171 4129 1922 4130 2429 4130 1919 4130 1919 4131 2429 4131 1974 4131 1974 4132 2429 4132 2302 4132 2302 4133 2429 4133 2462 4133 2302 4134 2462 4134 2304 4134 2304 4135 2462 4135 2299 4135 2299 4136 2462 4136 2290 4136 1949 4137 2416 4137 2421 4137 2237 4138 2421 4138 2239 4138 2239 4139 2421 4139 2426 4139 2239 4140 2426 4140 2234 4140 2234 4141 2426 4141 1976 4141 1976 4142 2426 4142 2217 4142 2217 4143 2426 4143 2224 4143 2224 4144 2426 4144 2212 4144 2212 4145 2426 4145 2215 4145 1957 4146 2381 4146 2383 4146 2196 4147 2383 4147 2200 4147 2200 4148 2383 4148 2194 4148 2194 4149 2383 4149 2193 4149 2193 4150 2383 4150 2386 4150 2193 4151 2386 4151 2191 4151 2191 4152 2386 4152 2177 4152 2177 4153 2386 4153 2174 4153 2174 4154 2386 4154 2173 4154 2305 4155 2276 4155 2346 4155 2346 4156 2276 4156 2272 4156 2276 4157 2305 4157 2258 4157 2258 4158 2305 4158 2269 4158 2269 4159 2305 4159 2267 4159 2267 4160 2305 4160 2253 4160 2253 4161 2305 4161 2256 4161 1977 4162 2168 4162 2164 4162 1919 4163 2168 4163 1922 4163 2121 4164 1978 4164 2124 4164 2124 4165 1978 4165 1920 4165 2124 4166 1920 4166 2125 4166 2125 4167 1920 4167 1921 4167 2125 4168 1921 4168 2163 4168 2163 4169 1921 4169 1979 4169 2163 4170 1979 4170 1980 4170 1980 4171 1979 4171 1969 4171 1980 4172 1969 4172 2127 4172 2127 4173 1969 4173 1968 4173 2127 4174 1968 4174 1981 4174 1981 4175 1968 4175 1967 4175 1981 4176 1967 4176 2128 4176 2128 4177 1967 4177 1966 4177 2128 4178 1966 4178 1982 4178 1982 4179 1966 4179 1965 4179 1982 4180 1965 4180 1983 4180 1983 4181 1965 4181 1985 4181 1983 4182 1985 4182 1984 4182 1984 4183 1985 4183 1986 4183 1984 4184 1986 4184 1987 4184 1987 4185 1986 4185 1971 4185 1987 4186 1971 4186 1988 4186 1988 4187 1971 4187 1989 4187 1988 4188 1989 4188 1992 4188 1992 4189 1989 4189 1973 4189 1997 4190 1992 4190 1993 4190 1990 4191 1995 4191 1991 4191 1994 4192 1990 4192 1991 4192 1372 4193 1990 4193 1994 4193 1372 4194 1997 4194 1993 4194 1372 4195 1993 4195 1990 4195 1993 4196 1995 4196 1990 4196 1995 4197 1993 4197 1996 4197 1996 4198 1993 4198 1992 4198 1996 4199 1992 4199 1973 4199 1995 4200 1996 4200 1991 4200 1991 4201 1996 4201 1973 4201 1372 4202 1994 4202 1998 4202 1998 4203 1994 4203 1999 4203 1998 4204 1999 4204 2001 4204 2001 4205 1999 4205 2000 4205 2001 4206 2000 4206 2130 4206 2130 4207 2000 4207 1972 4207 2130 4208 1972 4208 2002 4208 2002 4209 1972 4209 1970 4209 2002 4210 1970 4210 2129 4210 2129 4211 1970 4211 2003 4211 2129 4212 2003 4212 2131 4212 2131 4213 2003 4213 1964 4213 2131 4214 1964 4214 2132 4214 2132 4215 1964 4215 1963 4215 2132 4216 1963 4216 2004 4216 2004 4217 1963 4217 1962 4217 2004 4218 1962 4218 2005 4218 2005 4219 1962 4219 1957 4219 2005 4220 1957 4220 2006 4220 2006 4221 1957 4221 1958 4221 2006 4222 1958 4222 2007 4222 2007 4223 1958 4223 1959 4223 2007 4224 1959 4224 2008 4224 2008 4225 1959 4225 2009 4225 2008 4226 2009 4226 2135 4226 2135 4227 2009 4227 1960 4227 2135 4228 1960 4228 2010 4228 2010 4229 1960 4229 1961 4229 2010 4230 1961 4230 2011 4230 2011 4231 1961 4231 2013 4231 2011 4232 2013 4232 2012 4232 2012 4233 2013 4233 2014 4233 2012 4234 2014 4234 2133 4234 2133 4235 2014 4235 2015 4235 2133 4236 2015 4236 2134 4236 2134 4237 2015 4237 2016 4237 2134 4238 2016 4238 2017 4238 2017 4239 2016 4239 2019 4239 2017 4240 2019 4240 2018 4240 2018 4241 2019 4241 2020 4241 2018 4242 2020 4242 2021 4242 2021 4243 2020 4243 1956 4243 2021 4244 1956 4244 2022 4244 2022 4245 1956 4245 1951 4245 2022 4246 1951 4246 2023 4246 2023 4247 1951 4247 2025 4247 2023 4248 2025 4248 2024 4248 2024 4249 2025 4249 1954 4249 2024 4250 1954 4250 2026 4250 2026 4251 1954 4251 2027 4251 2026 4252 2027 4252 1306 4252 1306 4253 2027 4253 1955 4253 1306 4254 1955 4254 2034 4254 2034 4255 1955 4255 2035 4255 1604 4256 2140 4256 2029 4256 2032 4257 2035 4257 2033 4257 2031 4258 2028 4258 3557 4258 2028 4259 2033 4259 2035 4259 2034 4260 2035 4260 2032 4260 1604 4261 2031 4261 3557 4261 2140 4262 2030 4262 2029 4262 2030 4263 2140 4263 2034 4263 1604 4264 2029 4264 2031 4264 2029 4265 2030 4265 2031 4265 2030 4266 2032 4266 2033 4266 2030 4267 2033 4267 2031 4267 2028 4268 2031 4268 2033 4268 2032 4269 2030 4269 2034 4269 1604 4270 3557 4270 2139 4270 2139 4271 3557 4271 3558 4271 2139 4272 3558 4272 2036 4272 2036 4273 3558 4273 1953 4273 2036 4274 1953 4274 2138 4274 2138 4275 1953 4275 2037 4275 2138 4276 2037 4276 2038 4276 2038 4277 2037 4277 1952 4277 2038 4278 1952 4278 2136 4278 2136 4279 1952 4279 2039 4279 2136 4280 2039 4280 2040 4280 2040 4281 2039 4281 2041 4281 2040 4282 2041 4282 2137 4282 2137 4283 2041 4283 1950 4283 2137 4284 1950 4284 2042 4284 2042 4285 1950 4285 2043 4285 2042 4286 2043 4286 2044 4286 2044 4287 2043 4287 1949 4287 2044 4288 1949 4288 2141 4288 2141 4289 1949 4289 1948 4289 2141 4290 1948 4290 2045 4290 2045 4291 1948 4291 2046 4291 2045 4292 2046 4292 2144 4292 2144 4293 2046 4293 2048 4293 2144 4294 2048 4294 2047 4294 2047 4295 2048 4295 3567 4295 2047 4296 3567 4296 1543 4296 1543 4297 3567 4297 2049 4297 1543 4298 2049 4298 2051 4298 2051 4299 2049 4299 2050 4299 2051 4300 2050 4300 2143 4300 2143 4301 2050 4301 2052 4301 2143 4302 2052 4302 2142 4302 2142 4303 2052 4303 1947 4303 2142 4304 1947 4304 2053 4304 2053 4305 1947 4305 1942 4305 2053 4306 1942 4306 2145 4306 2145 4307 1942 4307 2054 4307 2145 4308 2054 4308 2056 4308 2056 4309 2054 4309 2055 4309 2056 4310 2055 4310 2146 4310 2146 4311 2055 4311 1941 4311 2146 4312 1941 4312 2148 4312 2148 4313 1941 4313 2057 4313 2148 4314 2057 4314 2147 4314 2147 4315 2057 4315 2059 4315 2147 4316 2059 4316 2058 4316 2058 4317 2059 4317 1945 4317 2058 4318 1945 4318 2060 4318 2060 4319 1945 4319 1946 4319 2060 4320 1946 4320 2149 4320 2149 4321 1946 4321 3579 4321 2149 4322 3579 4322 2070 4322 2070 4323 3579 4323 3583 4323 2069 4324 2071 4324 2068 4324 2066 4325 2063 4325 2064 4325 2061 4326 2066 4326 2065 4326 2064 4327 3583 4327 2066 4327 2066 4328 2067 4328 2065 4328 3583 4329 2064 4329 2070 4329 2062 4330 2061 4330 2065 4330 2069 4331 2068 4331 2062 4331 2071 4332 2069 4332 2070 4332 2062 4333 2068 4333 2061 4333 2063 4334 2068 4334 2064 4334 2063 4335 2066 4335 2061 4335 2067 4336 2066 4336 3583 4336 2061 4337 2068 4337 2063 4337 2068 4338 2071 4338 2064 4338 2070 4339 2064 4339 2071 4339 2062 4340 2065 4340 2072 4340 2072 4341 2065 4341 2073 4341 2072 4342 2073 4342 2074 4342 2074 4343 2073 4343 2075 4343 2074 4344 2075 4344 2076 4344 2076 4345 2075 4345 1943 4345 2076 4346 1943 4346 2077 4346 2077 4347 1943 4347 1944 4347 2077 4348 1944 4348 2150 4348 2150 4349 1944 4349 2078 4349 2150 4350 2078 4350 2151 4350 2151 4351 2078 4351 1940 4351 2151 4352 1940 4352 2079 4352 2079 4353 1940 4353 2080 4353 2079 4354 2080 4354 2081 4354 2081 4355 2080 4355 1939 4355 2081 4356 1939 4356 2152 4356 2152 4357 1939 4357 1935 4357 2152 4358 1935 4358 2082 4358 2082 4359 1935 4359 1936 4359 2082 4360 1936 4360 2083 4360 2083 4361 1936 4361 1937 4361 2083 4362 1937 4362 2084 4362 2084 4363 1937 4363 2085 4363 2084 4364 2085 4364 2086 4364 2086 4365 2085 4365 1938 4365 2086 4366 1938 4366 2087 4366 2087 4367 1938 4367 10716 4367 2087 4368 10716 4368 2088 4368 2088 4369 10716 4369 2089 4369 2088 4370 2089 4370 2155 4370 2155 4371 2089 4371 2090 4371 2155 4372 2090 4372 2153 4372 2153 4373 2090 4373 1934 4373 2153 4374 1934 4374 2154 4374 2154 4375 1934 4375 1933 4375 2154 4376 1933 4376 2156 4376 2156 4377 1933 4377 1932 4377 2156 4378 1932 4378 2091 4378 2091 4379 1932 4379 1931 4379 2091 4380 1931 4380 2092 4380 2092 4381 1931 4381 1930 4381 2092 4382 1930 4382 2158 4382 2158 4383 1930 4383 1926 4383 2158 4384 1926 4384 2093 4384 2093 4385 1926 4385 1929 4385 2093 4386 1929 4386 2162 4386 2162 4387 1929 4387 2095 4387 2162 4388 2095 4388 2094 4388 2094 4389 2095 4389 2096 4389 2094 4390 2096 4390 2097 4390 2097 4391 2096 4391 10709 4391 2097 4392 10709 4392 2098 4392 2098 4393 10709 4393 10827 4393 2103 4394 2102 4394 2108 4394 2103 4395 2108 4395 2105 4395 2100 4396 2103 4396 2106 4396 10827 4397 2105 4397 2098 4397 2099 4398 2102 4398 2100 4398 2100 4399 2102 4399 2103 4399 2107 4400 2108 4400 2104 4400 2105 4401 2108 4401 2098 4401 2105 4402 2106 4402 2103 4402 2100 4403 2106 4403 2101 4403 2101 4404 2106 4404 10827 4404 2108 4405 2099 4405 2104 4405 2099 4406 2108 4406 2102 4406 2106 4407 2105 4407 10827 4407 2098 4408 2108 4408 2107 4408 2099 4409 2100 4409 2110 4409 2110 4410 2100 4410 2109 4410 2110 4411 2109 4411 2111 4411 2111 4412 2109 4412 2112 4412 2111 4413 2112 4413 2113 4413 2113 4414 2112 4414 1927 4414 2113 4415 1927 4415 2157 4415 2157 4416 1927 4416 1928 4416 2157 4417 1928 4417 2159 4417 2159 4418 1928 4418 1975 4418 2159 4419 1975 4419 2160 4419 2160 4420 1975 4420 1925 4420 2160 4421 1925 4421 2114 4421 2114 4422 1925 4422 1924 4422 2114 4423 1924 4423 2115 4423 2115 4424 1924 4424 1923 4424 2115 4425 1923 4425 2161 4425 2161 4426 1923 4426 1922 4426 2161 4427 1922 4427 2116 4427 2116 4428 1922 4428 1977 4428 2116 4429 1977 4429 2123 4429 2123 4430 1977 4430 2117 4430 2123 4431 2117 4431 2122 4431 2122 4432 2117 4432 2118 4432 2122 4433 2118 4433 2119 4433 2119 4434 2118 4434 2120 4434 2119 4435 2120 4435 2121 4435 2121 4436 2120 4436 1978 4436 2122 4437 2119 4437 2123 4437 2123 4438 2119 4438 2121 4438 2123 4439 2121 4439 2125 4439 2125 4440 2121 4440 2124 4440 2125 4441 2163 4441 2123 4441 2123 4442 2163 4442 2116 4442 2116 4443 2163 4443 2169 4443 2116 4444 2169 4444 2166 4444 1980 4445 2126 4445 2163 4445 2163 4446 2126 4446 2169 4446 2127 4447 2358 4447 1980 4447 1980 4448 2358 4448 2349 4448 1981 4449 2358 4449 2127 4449 2128 4450 2351 4450 1981 4450 1981 4451 2351 4451 2358 4451 1982 4452 2351 4452 2128 4452 1983 4453 2129 4453 1982 4453 1982 4454 2129 4454 2348 4454 1982 4455 2348 4455 2351 4455 1984 4456 1992 4456 1983 4456 1983 4457 1992 4457 2002 4457 1983 4458 2002 4458 2129 4458 1987 4459 1988 4459 1984 4459 1984 4460 1988 4460 1992 4460 1992 4461 1997 4461 1372 4461 1992 4462 1372 4462 2002 4462 2002 4463 1372 4463 2130 4463 2130 4464 1372 4464 1998 4464 2130 4465 1998 4465 2001 4465 2348 4466 2129 4466 2131 4466 2348 4467 2131 4467 2132 4467 2348 4468 2132 4468 2004 4468 2348 4469 2004 4469 2352 4469 2352 4470 2004 4470 2005 4470 2352 4471 2005 4471 2201 4471 2352 4472 2201 4472 2197 4472 2201 4473 2005 4473 2206 4473 2206 4474 2005 4474 2006 4474 2206 4475 2006 4475 2203 4475 2203 4476 2006 4476 2133 4476 2203 4477 2133 4477 2210 4477 2210 4478 2133 4478 2209 4478 2209 4479 2133 4479 2134 4479 2209 4480 2134 4480 2214 4480 2214 4481 2134 4481 2388 4481 2214 4482 2388 4482 2395 4482 2133 4483 2006 4483 2012 4483 2012 4484 2006 4484 2007 4484 2012 4485 2007 4485 2010 4485 2010 4486 2007 4486 2135 4486 2135 4487 2007 4487 2008 4487 2010 4488 2011 4488 2012 4488 2017 4489 2388 4489 2134 4489 2018 4490 2388 4490 2017 4490 2021 4491 2390 4491 2018 4491 2018 4492 2390 4492 2388 4492 2022 4493 2394 4493 2021 4493 2021 4494 2394 4494 2390 4494 2023 4495 2038 4495 2022 4495 2022 4496 2038 4496 2136 4496 2022 4497 2136 4497 2394 4497 2394 4498 2136 4498 2392 4498 2392 4499 2136 4499 2040 4499 2392 4500 2040 4500 2137 4500 2392 4501 2137 4501 2042 4501 2392 4502 2042 4502 2389 4502 2389 4503 2042 4503 2044 4503 2389 4504 2044 4504 2393 4504 2393 4505 2044 4505 2236 4505 2393 4506 2236 4506 2238 4506 2024 4507 2034 4507 2023 4507 2023 4508 2034 4508 1604 4508 2023 4509 1604 4509 2038 4509 2038 4510 1604 4510 2138 4510 2138 4511 1604 4511 2139 4511 2138 4512 2139 4512 2036 4512 2026 4513 1306 4513 2024 4513 2024 4514 1306 4514 2034 4514 2034 4515 2140 4515 1604 4515 2236 4516 2044 4516 2243 4516 2243 4517 2044 4517 2141 4517 2243 4518 2141 4518 2241 4518 2241 4519 2141 4519 2248 4519 2248 4520 2141 4520 2142 4520 2248 4521 2142 4521 2246 4521 2246 4522 2142 4522 2053 4522 2246 4523 2053 4523 2251 4523 2251 4524 2053 4524 2308 4524 2141 4525 2045 4525 2142 4525 2142 4526 2045 4526 2143 4526 2143 4527 2045 4527 2047 4527 2143 4528 2047 4528 1543 4528 2045 4529 2144 4529 2047 4529 1543 4530 2051 4530 2143 4530 2145 4531 2309 4531 2053 4531 2056 4532 2309 4532 2145 4532 2146 4533 2307 4533 2056 4533 2056 4534 2307 4534 2309 4534 2148 4535 2307 4535 2146 4535 2147 4536 2150 4536 2148 4536 2148 4537 2150 4537 2307 4537 2058 4538 2070 4538 2147 4538 2147 4539 2070 4539 2077 4539 2147 4540 2077 4540 2150 4540 2060 4541 2149 4541 2058 4541 2058 4542 2149 4542 2070 4542 2077 4543 2070 4543 2062 4543 2062 4544 2070 4544 2069 4544 2077 4545 2062 4545 2076 4545 2076 4546 2062 4546 2072 4546 2076 4547 2072 4547 2074 4547 2307 4548 2150 4548 2312 4548 2312 4549 2150 4549 2151 4549 2312 4550 2151 4550 2079 4550 2312 4551 2079 4551 2306 4551 2306 4552 2079 4552 2081 4552 2306 4553 2081 4553 2152 4553 2306 4554 2152 4554 2317 4554 2317 4555 2152 4555 2273 4555 2317 4556 2273 4556 2310 4556 2310 4557 2273 4557 2274 4557 2273 4558 2152 4558 2277 4558 2277 4559 2152 4559 2082 4559 2277 4560 2082 4560 2281 4560 2281 4561 2082 4561 2153 4561 2281 4562 2153 4562 2284 4562 2284 4563 2153 4563 2286 4563 2286 4564 2153 4564 2154 4564 2286 4565 2154 4565 2289 4565 2289 4566 2154 4566 2430 4566 2153 4567 2082 4567 2155 4567 2155 4568 2082 4568 2083 4568 2155 4569 2083 4569 2087 4569 2087 4570 2083 4570 2086 4570 2086 4571 2083 4571 2084 4571 2087 4572 2088 4572 2155 4572 2156 4573 2437 4573 2154 4573 2154 4574 2437 4574 2430 4574 2091 4575 2437 4575 2156 4575 2092 4576 2433 4576 2091 4576 2091 4577 2433 4577 2437 4577 2158 4578 2433 4578 2092 4578 2093 4579 2157 4579 2158 4579 2158 4580 2157 4580 2159 4580 2158 4581 2159 4581 2433 4581 2433 4582 2159 4582 2431 4582 2431 4583 2159 4583 2160 4583 2431 4584 2160 4584 2114 4584 2431 4585 2114 4585 2115 4585 2431 4586 2115 4586 2161 4586 2431 4587 2161 4587 2434 4587 2434 4588 2161 4588 1918 4588 2434 4589 1918 4589 2440 4589 2162 4590 2098 4590 2093 4590 2093 4591 2098 4591 2099 4591 2093 4592 2099 4592 2157 4592 2157 4593 2099 4593 2113 4593 2113 4594 2099 4594 2110 4594 2113 4595 2110 4595 2111 4595 2094 4596 2097 4596 2162 4596 2162 4597 2097 4597 2098 4597 2098 4598 2107 4598 2104 4598 2098 4599 2104 4599 2099 4599 1918 4600 2161 4600 2167 4600 2167 4601 2161 4601 2116 4601 2167 4602 2116 4602 2166 4602 2289 4603 2430 4603 2288 4603 2288 4604 2430 4604 2293 4604 2293 4605 2430 4605 2301 4605 2301 4606 2430 4606 2440 4606 2301 4607 2440 4607 2292 4607 2292 4608 2440 4608 1917 4608 1917 4609 2440 4609 1918 4609 2214 4610 2395 4610 2213 4610 2213 4611 2395 4611 2220 4611 2220 4612 2395 4612 2396 4612 2220 4613 2396 4613 2232 4613 2232 4614 2396 4614 2218 4614 2218 4615 2396 4615 2238 4615 2238 4616 2396 4616 2393 4616 1980 4617 2349 4617 2354 4617 1980 4618 2354 4618 2176 4618 2176 4619 2354 4619 2175 4619 2175 4620 2354 4620 2187 4620 2187 4621 2354 4621 2350 4621 2187 4622 2350 4622 2178 4622 2178 4623 2350 4623 2195 4623 2195 4624 2350 4624 2197 4624 2197 4625 2350 4625 2352 4625 2053 4626 2309 4626 2308 4626 2251 4627 2308 4627 2255 4627 2255 4628 2308 4628 2310 4628 2255 4629 2310 4629 2252 4629 2252 4630 2310 4630 2263 4630 2263 4631 2310 4631 2270 4631 2270 4632 2310 4632 2257 4632 2257 4633 2310 4633 2274 4633 2176 4634 2126 4634 1980 4634 2169 4635 2171 4635 2166 4635 2166 4636 2171 4636 2164 4636 2168 4637 2167 4637 2165 4637 2167 4638 2166 4638 2165 4638 2164 4639 2165 4639 2166 4639 2168 4640 2165 4640 2164 4640 2169 4641 2170 4641 2171 4641 2172 4642 2170 4642 2126 4642 2170 4643 2169 4643 2126 4643 2170 4644 2172 4644 2171 4644 2176 4645 2173 4645 2126 4645 2126 4646 2173 4646 2172 4646 2176 4647 2174 4647 2173 4647 2174 4648 2176 4648 2175 4648 2187 4649 2177 4649 2175 4649 2175 4650 2177 4650 2174 4650 2182 4651 2185 4651 2189 4651 2187 4652 2182 4652 2188 4652 2177 4653 2192 4653 2191 4653 2194 4654 2183 4654 2195 4654 2187 4655 2184 4655 2177 4655 2177 4656 2184 4656 2186 4656 2178 4657 2179 4657 2180 4657 2185 4658 2180 4658 2179 4658 2183 4659 2185 4659 2179 4659 2187 4660 2180 4660 2182 4660 2187 4661 2182 4661 2181 4661 2188 4662 2185 4662 2184 4662 2188 4663 2184 4663 2187 4663 2184 4664 2185 4664 2186 4664 2185 4665 2192 4665 2186 4665 2177 4666 2186 4666 2190 4666 2186 4667 2192 4667 2190 4667 2192 4668 2193 4668 2191 4668 2180 4669 2187 4669 2178 4669 2182 4670 2187 4670 2181 4670 2192 4671 2177 4671 2190 4671 2185 4672 2182 4672 2180 4672 2185 4673 2188 4673 2189 4673 2185 4674 2183 4674 2192 4674 2193 4675 2183 4675 2194 4675 2192 4676 2183 4676 2193 4676 2179 4677 2178 4677 2195 4677 2183 4678 2179 4678 2195 4678 2197 4679 2200 4679 2195 4679 2195 4680 2200 4680 2194 4680 2200 4681 2197 4681 2198 4681 2201 4682 2196 4682 2198 4682 2198 4683 2197 4683 2201 4683 2199 4684 2198 4684 2196 4684 2200 4685 2199 4685 2196 4685 2199 4686 2200 4686 2198 4686 2206 4687 2204 4687 2201 4687 2201 4688 2204 4688 2196 4688 2204 4689 2202 4689 2205 4689 2205 4690 2202 4690 2203 4690 2204 4691 2206 4691 2202 4691 2202 4692 2206 4692 2203 4692 2210 4693 2207 4693 2203 4693 2203 4694 2207 4694 2205 4694 2207 4695 2210 4695 2211 4695 2208 4696 2211 4696 2209 4696 2211 4697 2208 4697 2207 4697 2209 4698 2211 4698 2210 4698 2214 4699 2215 4699 2209 4699 2209 4700 2215 4700 2208 4700 2212 4701 2216 4701 2213 4701 2213 4702 2216 4702 2214 4702 2215 4703 2216 4703 2212 4703 2215 4704 2214 4704 2216 4704 2220 4705 2224 4705 2213 4705 2213 4706 2224 4706 2212 4706 2219 4707 2218 4707 2233 4707 2230 4708 2233 4708 2223 4708 2222 4709 2221 4709 2223 4709 2226 4710 2223 4710 2227 4710 2224 4711 2227 4711 2217 4711 2234 4712 2233 4712 2218 4712 2220 4713 2221 4713 2224 4713 2232 4714 2229 4714 2220 4714 2220 4715 2229 4715 2225 4715 2229 4716 2230 4716 2225 4716 2230 4717 2223 4717 2225 4717 2220 4718 2225 4718 2221 4718 2225 4719 2223 4719 2221 4719 2235 4720 2233 4720 2234 4720 2222 4721 2226 4721 2224 4721 2228 4722 2223 4722 2226 4722 2223 4723 2231 4723 2227 4723 2231 4724 2223 4724 2235 4724 2227 4725 2231 4725 2217 4725 2217 4726 2231 4726 1976 4726 2224 4727 2221 4727 2222 4727 2227 4728 2224 4728 2226 4728 2223 4729 2228 4729 2222 4729 2232 4730 2219 4730 2229 4730 2229 4731 2219 4731 2230 4731 2230 4732 2219 4732 2233 4732 2223 4733 2233 4733 2235 4733 1976 4734 2235 4734 2234 4734 2231 4735 2235 4735 1976 4735 2219 4736 2232 4736 2218 4736 2238 4737 2239 4737 2218 4737 2218 4738 2239 4738 2234 4738 2239 4739 2238 4739 2240 4739 2240 4740 2237 4740 2239 4740 2238 4741 2236 4741 2240 4741 2237 4742 2240 4742 2236 4742 2243 4743 2244 4743 2236 4743 2236 4744 2244 4744 2237 4744 2244 4745 2243 4745 2242 4745 2244 4746 2242 4746 2245 4746 2245 4747 2242 4747 2241 4747 2242 4748 2243 4748 2241 4748 2248 4749 2249 4749 2241 4749 2241 4750 2249 4750 2245 4750 2249 4751 2247 4751 2250 4751 2250 4752 2247 4752 2246 4752 2247 4753 2248 4753 2246 4753 2249 4754 2248 4754 2247 4754 2251 4755 2256 4755 2246 4755 2246 4756 2256 4756 2250 4756 2253 4757 2254 4757 2252 4757 2254 4758 2255 4758 2252 4758 2255 4759 2254 4759 2251 4759 2256 4760 2254 4760 2253 4760 2256 4761 2251 4761 2254 4761 2263 4762 2267 4762 2252 4762 2252 4763 2267 4763 2253 4763 2263 4764 2270 4764 2264 4764 2263 4765 2264 4765 2265 4765 2259 4766 2258 4766 2271 4766 2259 4767 2271 4767 2262 4767 2269 4768 2271 4768 2258 4768 2267 4769 2268 4769 2269 4769 2258 4770 2259 4770 2257 4770 2263 4771 2266 4771 2267 4771 2261 4772 2260 4772 2270 4772 2261 4773 2270 4773 2257 4773 2270 4774 2260 4774 2264 4774 2264 4775 2260 4775 2265 4775 2260 4776 2261 4776 2259 4776 2263 4777 2265 4777 2266 4777 2266 4778 2265 4778 2262 4778 2262 4779 2268 4779 2266 4779 2268 4780 2262 4780 2271 4780 2268 4781 2267 4781 2266 4781 2262 4782 2265 4782 2260 4782 2259 4783 2262 4783 2260 4783 2268 4784 2271 4784 2269 4784 2259 4785 2261 4785 2257 4785 2274 4786 2276 4786 2257 4786 2257 4787 2276 4787 2258 4787 2274 4788 2275 4788 2276 4788 2275 4789 2272 4789 2276 4789 2272 4790 2275 4790 2273 4790 2273 4791 2275 4791 2274 4791 2277 4792 2278 4792 2273 4792 2273 4793 2278 4793 2272 4793 2278 4794 2280 4794 2279 4794 2277 4795 2281 4795 2280 4795 2279 4796 2280 4796 2281 4796 2278 4797 2277 4797 2280 4797 2284 4798 2283 4798 2281 4798 2281 4799 2283 4799 2279 4799 2283 4800 2284 4800 2285 4800 2282 4801 2285 4801 2286 4801 2285 4802 2284 4802 2286 4802 2283 4803 2285 4803 2282 4803 2289 4804 2291 4804 2286 4804 2286 4805 2291 4805 2282 4805 2291 4806 2289 4806 2287 4806 2291 4807 2287 4807 2290 4807 2290 4808 2287 4808 2288 4808 2288 4809 2287 4809 2289 4809 2293 4810 2299 4810 2288 4810 2288 4811 2299 4811 2290 4811 2301 4812 2292 4812 2303 4812 2298 4813 2294 4813 2300 4813 2296 4814 2302 4814 2304 4814 2302 4815 2295 4815 2292 4815 2293 4816 2298 4816 2299 4816 2299 4817 2298 4817 2300 4817 2301 4818 2294 4818 2297 4818 2294 4819 2301 4819 2303 4819 2294 4820 2303 4820 2295 4820 2296 4821 2304 4821 2300 4821 2293 4822 2301 4822 2297 4822 2293 4823 2297 4823 2298 4823 2304 4824 2299 4824 2300 4824 2294 4825 2298 4825 2297 4825 2296 4826 2300 4826 2294 4826 2296 4827 2294 4827 2295 4827 2296 4828 2295 4828 2302 4828 2295 4829 2303 4829 2292 4829 1917 4830 1974 4830 2292 4830 2292 4831 1974 4831 2302 4831 2310 4832 2308 4832 2316 4832 2308 4833 2309 4833 2321 4833 2307 4834 2311 4834 2319 4834 2307 4835 2319 4835 2309 4835 2307 4836 2312 4836 2311 4836 2312 4837 2331 4837 2311 4837 2309 4838 2319 4838 2313 4838 2309 4839 2313 4839 2321 4839 2310 4840 2322 4840 2318 4840 2310 4841 2318 4841 2317 4841 2317 4842 2315 4842 2306 4842 2316 4843 2314 4843 2310 4843 2310 4844 2314 4844 2322 4844 2319 4845 2311 4845 2327 4845 2321 4846 2320 4846 2308 4846 2314 4847 2316 4847 2329 4847 2311 4848 2331 4848 2327 4848 2318 4849 2322 4849 2330 4849 2318 4850 2330 4850 2317 4850 2315 4851 2317 4851 2328 4851 2312 4852 2306 4852 2324 4852 2312 4853 2324 4853 2331 4853 2314 4854 2329 4854 2322 4854 2306 4855 2315 4855 2324 4855 2319 4856 2327 4856 2325 4856 2319 4857 2325 4857 2313 4857 2313 4858 2323 4858 2321 4858 2308 4859 2320 4859 2316 4859 2317 4860 2330 4860 2326 4860 2317 4861 2326 4861 2328 4861 2313 4862 2325 4862 2323 4862 2321 4863 2323 4863 2320 4863 2315 4864 2328 4864 2324 4864 2322 4865 2329 4865 2330 4865 2324 4866 2328 4866 2332 4866 2328 4867 2326 4867 2335 4867 2329 4868 2333 4868 2330 4868 2324 4869 2332 4869 2331 4869 2329 4870 2316 4870 2340 4870 2330 4871 2333 4871 2326 4871 2327 4872 2334 4872 2325 4872 2325 4873 2334 4873 2323 4873 2323 4874 2334 4874 2337 4874 2323 4875 2337 4875 2320 4875 2331 4876 2336 4876 2327 4876 2326 4877 2333 4877 2338 4877 2316 4878 2320 4878 2339 4878 2327 4879 2336 4879 2342 4879 2327 4880 2342 4880 2334 4880 2326 4881 2338 4881 2335 4881 2329 4882 2340 4882 2333 4882 2320 4883 2337 4883 2339 4883 2316 4884 2339 4884 2340 4884 2331 4885 2332 4885 2336 4885 2334 4886 2342 4886 2341 4886 2334 4887 2341 4887 2337 4887 2337 4888 2344 4888 2339 4888 2335 4889 2338 4889 2346 4889 2328 4890 2335 4890 2345 4890 2328 4891 2345 4891 2332 4891 2332 4892 2345 4892 2336 4892 2342 4893 2336 4893 2343 4893 2340 4894 2339 4894 2305 4894 2335 4895 2346 4895 2345 4895 2339 4896 2344 4896 2305 4896 2337 4897 2341 4897 2344 4897 2336 4898 2345 4898 2343 4898 2341 4899 2347 4899 2344 4899 2342 4900 2343 4900 2347 4900 2342 4901 2347 4901 2341 4901 2333 4902 2305 4902 2338 4902 2338 4903 2305 4903 2346 4903 2345 4904 2346 4904 2343 4904 2340 4905 2305 4905 2333 4905 2384 4906 2371 4906 2385 4906 2350 4907 2356 4907 2352 4907 2351 4908 2348 4908 2353 4908 2354 4909 2349 4909 2362 4909 2351 4910 2353 4910 2358 4910 2349 4911 2361 4911 2362 4911 2352 4912 2357 4912 2348 4912 2352 4913 2359 4913 2355 4913 2352 4914 2355 4914 2357 4914 2350 4915 2354 4915 2360 4915 2349 4916 2358 4916 2361 4916 2352 4917 2356 4917 2359 4917 2358 4918 2353 4918 2373 4918 2358 4919 2364 4919 2361 4919 2350 4920 2360 4920 2356 4920 2353 4921 2363 4921 2373 4921 2355 4922 2376 4922 2357 4922 2353 4923 2348 4923 2363 4923 2348 4924 2357 4924 2365 4924 2358 4925 2373 4925 2364 4925 2360 4926 2354 4926 2370 4926 2359 4927 2356 4927 2367 4927 2359 4928 2367 4928 2355 4928 2356 4929 2360 4929 2368 4929 2356 4930 2368 4930 2367 4930 2360 4931 2370 4931 2368 4931 2364 4932 2373 4932 2372 4932 2348 4933 2365 4933 2363 4933 2354 4934 2362 4934 2366 4934 2354 4935 2366 4935 2370 4935 2355 4936 2367 4936 2369 4936 2355 4937 2369 4937 2376 4937 2361 4938 2364 4938 2379 4938 2363 4939 2365 4939 2371 4939 2364 4940 2372 4940 2379 4940 2365 4941 2357 4941 2385 4941 2365 4942 2385 4942 2371 4942 2363 4943 2371 4943 2384 4943 2363 4944 2384 4944 2373 4944 2370 4945 2366 4945 2374 4945 2361 4946 2379 4946 2387 4946 2361 4947 2387 4947 2362 4947 2370 4948 2374 4948 2368 4948 2366 4949 2362 4949 2375 4949 2366 4950 2375 4950 2374 4950 2368 4951 2374 4951 2378 4951 2368 4952 2378 4952 2367 4952 2373 4953 2384 4953 2382 4953 2373 4954 2382 4954 2372 4954 2369 4955 2367 4955 2380 4955 2369 4956 2380 4956 2376 4956 2357 4957 2376 4957 2385 4957 2367 4958 2378 4958 2380 4958 2376 4959 2381 4959 2385 4959 2376 4960 2380 4960 2381 4960 2362 4961 2387 4961 2375 4961 2372 4962 2377 4962 2379 4962 2382 4963 2377 4963 2372 4963 2378 4964 2383 4964 2380 4964 2374 4965 2383 4965 2378 4965 2379 4966 2377 4966 2387 4966 2380 4967 2383 4967 2381 4967 2375 4968 2387 4968 2386 4968 2374 4969 2375 4969 2386 4969 2374 4970 2386 4970 2383 4970 2382 4971 2384 4971 2377 4971 2389 4972 2391 4972 2392 4972 2388 4973 2390 4973 2401 4973 2388 4974 2401 4974 2399 4974 2390 4975 2406 4975 2401 4975 2388 4976 2399 4976 2395 4976 2396 4977 2410 4977 2393 4977 2394 4978 2409 4978 2390 4978 2392 4979 2391 4979 2394 4979 2401 4980 2398 4980 2399 4980 2399 4981 2397 4981 2395 4981 2396 4982 2395 4982 2400 4982 2396 4983 2400 4983 2410 4983 2393 4984 2403 4984 2389 4984 2390 4985 2409 4985 2406 4985 2391 4986 2405 4986 2394 4986 2398 4987 2401 4987 2404 4987 2395 4988 2397 4988 2400 4988 2401 4989 2406 4989 2404 4989 2389 4990 2402 4990 2391 4990 2391 4991 2402 4991 2405 4991 2394 4992 2405 4992 2409 4992 2389 4993 2403 4993 2402 4993 2399 4994 2398 4994 2411 4994 2399 4995 2411 4995 2397 4995 2398 4996 2404 4996 2411 4996 2400 4997 2397 4997 2408 4997 2393 4998 2410 4998 2403 4998 2400 4999 2408 4999 2410 4999 2397 5000 2407 5000 2408 5000 2397 5001 2411 5001 2407 5001 2405 5002 2402 5002 2412 5002 2405 5003 2412 5003 2409 5003 2402 5004 2418 5004 2412 5004 2409 5005 2413 5005 2406 5005 2402 5006 2403 5006 2418 5006 2410 5007 2408 5007 2415 5007 2409 5008 2412 5008 2413 5008 2408 5009 2407 5009 2415 5009 2412 5010 2417 5010 2413 5010 2418 5011 2414 5011 2412 5011 2403 5012 2421 5012 2418 5012 2411 5013 2422 5013 2407 5013 2407 5014 2422 5014 2415 5014 2410 5015 2415 5015 2421 5015 2410 5016 2421 5016 2403 5016 2411 5017 2419 5017 2422 5017 2412 5018 2414 5018 2417 5018 2404 5019 2406 5019 2420 5019 2404 5020 2420 5020 2423 5020 2404 5021 2423 5021 2411 5021 2411 5022 2423 5022 2419 5022 2418 5023 2421 5023 2416 5023 2414 5024 2418 5024 2416 5024 2406 5025 2413 5025 2427 5025 2414 5026 2416 5026 2417 5026 2422 5027 2426 5027 2415 5027 2417 5028 2416 5028 2424 5028 2422 5029 2419 5029 2425 5029 2422 5030 2425 5030 2426 5030 2413 5031 2417 5031 2424 5031 2413 5032 2424 5032 2427 5032 2415 5033 2426 5033 2421 5033 2406 5034 2427 5034 2420 5034 2419 5035 2423 5035 2425 5035 2434 5036 2435 5036 2431 5036 2429 5037 2458 5037 2462 5037 2431 5038 2435 5038 2444 5038 2431 5039 2432 5039 2433 5039 2431 5040 2444 5040 2432 5040 2430 5041 2438 5041 2440 5041 2430 5042 2437 5042 2436 5042 2430 5043 2436 5043 2439 5043 2430 5044 2439 5044 2438 5044 2440 5045 2442 5045 2434 5045 2434 5046 2442 5046 2454 5046 2444 5047 2450 5047 2432 5047 2436 5048 2437 5048 2443 5048 2438 5049 2439 5049 2445 5049 2438 5050 2445 5050 2440 5050 2436 5051 2441 5051 2439 5051 2440 5052 2445 5052 2442 5052 2434 5053 2454 5053 2435 5053 2432 5054 2450 5054 2449 5054 2432 5055 2449 5055 2433 5055 2437 5056 2433 5056 2451 5056 2437 5057 2451 5057 2443 5057 2435 5058 2454 5058 2446 5058 2436 5059 2443 5059 2441 5059 2435 5060 2446 5060 2444 5060 2433 5061 2449 5061 2451 5061 2439 5062 2441 5062 2447 5062 2439 5063 2447 5063 2445 5063 2441 5064 2443 5064 2452 5064 2441 5065 2452 5065 2448 5065 2441 5066 2448 5066 2447 5066 2444 5067 2446 5067 2450 5067 2442 5068 2460 5068 2454 5068 2446 5069 2459 5069 2450 5069 2445 5070 2447 5070 2456 5070 2445 5071 2456 5071 2442 5071 2448 5072 2455 5072 2447 5072 2446 5073 2454 5073 2461 5073 2449 5074 2450 5074 2463 5074 2450 5075 2459 5075 2453 5075 2450 5076 2453 5076 2463 5076 2446 5077 2461 5077 2459 5077 2447 5078 2455 5078 2456 5078 2449 5079 2463 5079 2451 5079 2448 5080 2452 5080 2455 5080 2443 5081 2451 5081 2457 5081 2443 5082 2457 5082 2452 5082 2442 5083 2456 5083 2458 5083 2442 5084 2458 5084 2460 5084 2452 5085 2457 5085 2464 5085 2451 5086 2463 5086 2457 5086 2456 5087 2455 5087 2462 5087 2456 5088 2462 5088 2458 5088 2452 5089 2464 5089 2455 5089 2454 5090 2460 5090 2461 5090 2460 5091 2429 5091 2461 5091 2460 5092 2458 5092 2429 5092 2459 5093 2461 5093 2428 5093 2455 5094 2464 5094 2462 5094 2453 5095 2459 5095 2463 5095 2459 5096 2428 5096 2463 5096 2461 5097 2429 5097 2428 5097 2717 5098 2719 5098 2467 5098 2467 5099 2719 5099 2465 5099 2469 5100 2468 5100 2466 5100 2469 5101 2467 5101 2468 5101 2465 5102 2468 5102 2467 5102 2466 5103 2468 5103 2465 5103 2656 5104 2653 5104 3565 5104 3565 5105 2653 5105 2470 5105 3565 5106 2470 5106 2526 5106 2656 5107 2654 5107 2653 5107 2653 5108 2721 5108 2470 5108 2470 5109 2721 5109 2471 5109 2471 5110 2721 5110 2720 5110 2471 5111 2720 5111 2727 5111 2651 5112 2719 5112 2721 5112 2650 5113 2976 5113 2651 5113 2648 5114 2976 5114 2650 5114 2647 5115 3011 5115 2648 5115 2648 5116 3011 5116 2976 5116 2646 5117 3011 5117 2647 5117 2473 5118 2475 5118 2646 5118 2646 5119 2475 5119 3012 5119 2646 5120 3012 5120 3011 5120 2472 5121 2638 5121 2473 5121 2473 5122 2638 5122 2474 5122 2473 5123 2474 5123 2475 5123 2645 5124 2476 5124 2472 5124 2472 5125 2476 5125 2638 5125 2474 5126 2638 5126 2641 5126 2641 5127 2638 5127 2634 5127 2474 5128 2641 5128 2477 5128 2477 5129 2641 5129 2631 5129 2477 5130 2631 5130 2478 5130 3012 5131 2475 5131 2479 5131 3012 5132 2479 5132 2480 5132 3012 5133 2480 5133 3009 5133 3009 5134 2480 5134 2481 5134 3009 5135 2481 5135 2482 5135 3009 5136 2482 5136 3010 5136 3010 5137 2482 5137 2838 5137 3010 5138 2838 5138 2834 5138 2838 5139 2482 5139 2832 5139 2832 5140 2482 5140 2483 5140 2832 5141 2483 5141 2833 5141 2833 5142 2483 5142 2484 5142 2833 5143 2484 5143 2826 5143 2826 5144 2484 5144 2828 5144 2828 5145 2484 5145 2618 5145 2828 5146 2618 5146 2823 5146 2823 5147 2618 5147 2891 5147 2484 5148 2483 5148 2621 5148 2621 5149 2483 5149 2625 5149 2621 5150 2625 5150 11205 5150 11205 5151 2625 5151 11305 5151 11305 5152 2625 5152 2624 5152 11205 5153 2622 5153 2621 5153 2486 5154 2892 5154 2618 5154 2618 5155 2892 5155 2891 5155 2485 5156 2892 5156 2486 5156 2617 5157 2893 5157 2485 5157 2485 5158 2893 5158 2892 5158 2487 5159 2893 5159 2617 5159 2616 5160 2598 5160 2487 5160 2487 5161 2598 5161 2597 5161 2487 5162 2597 5162 2893 5162 2893 5163 2597 5163 2888 5163 2888 5164 2597 5164 2488 5164 2888 5165 2488 5165 2596 5165 2888 5166 2596 5166 2890 5166 2890 5167 2596 5167 2595 5167 2890 5168 2595 5168 2489 5168 2890 5169 2489 5169 2856 5169 2856 5170 2489 5170 2804 5170 2856 5171 2804 5171 2889 5171 2492 5172 2612 5172 2616 5172 2616 5173 2612 5173 2602 5173 2616 5174 2602 5174 2598 5174 2598 5175 2602 5175 2490 5175 2490 5176 2602 5176 2491 5176 2490 5177 2491 5177 2600 5177 2613 5178 11216 5178 2492 5178 2492 5179 11216 5179 2612 5179 2612 5180 2609 5180 2602 5180 2804 5181 2489 5181 2801 5181 2801 5182 2489 5182 2593 5182 2801 5183 2593 5183 2802 5183 2802 5184 2593 5184 2794 5184 2794 5185 2593 5185 2493 5185 2794 5186 2493 5186 2790 5186 2790 5187 2493 5187 2522 5187 2790 5188 2522 5188 2785 5188 2785 5189 2522 5189 2971 5189 2593 5190 2494 5190 2493 5190 2493 5191 2494 5191 2583 5191 2583 5192 2494 5192 2586 5192 2583 5193 2586 5193 2495 5193 2590 5194 2588 5194 2494 5194 2494 5195 2588 5195 2586 5195 2496 5196 2974 5196 2522 5196 2581 5197 2974 5197 2496 5197 2497 5198 2969 5198 2581 5198 2581 5199 2969 5199 2974 5199 2578 5200 2969 5200 2497 5200 2499 5201 2504 5201 2578 5201 2578 5202 2504 5202 2969 5202 2576 5203 2566 5203 2499 5203 2499 5204 2566 5204 2498 5204 2499 5205 2498 5205 2504 5205 2500 5206 2501 5206 2576 5206 2576 5207 2501 5207 2566 5207 2566 5208 2569 5208 2572 5208 2566 5209 2572 5209 2498 5209 2498 5210 2572 5210 2502 5210 2502 5211 2572 5211 2562 5211 2502 5212 2562 5212 2503 5212 2969 5213 2504 5213 2558 5213 2969 5214 2558 5214 2970 5214 2970 5215 2558 5215 2505 5215 2970 5216 2505 5216 2506 5216 2970 5217 2506 5217 2968 5217 2968 5218 2506 5218 2507 5218 2968 5219 2507 5219 2767 5219 2968 5220 2767 5220 2972 5220 2767 5221 2507 5221 2764 5221 2764 5222 2507 5222 2508 5222 2764 5223 2508 5223 2757 5223 2757 5224 2508 5224 2754 5224 2757 5225 2754 5225 2751 5225 2756 5226 2754 5226 2509 5226 2756 5227 2509 5227 2750 5227 2750 5228 2509 5228 2929 5228 2754 5229 2508 5229 2552 5229 2552 5230 2508 5230 2510 5230 2552 5231 2510 5231 2511 5231 2511 5232 2510 5232 2555 5232 2555 5233 2510 5233 2556 5233 2511 5234 2512 5234 2552 5234 2513 5235 2929 5235 2509 5235 2550 5236 2931 5236 2513 5236 2513 5237 2931 5237 2929 5237 2514 5238 2931 5238 2550 5238 2523 5239 2927 5239 2514 5239 2514 5240 2927 5240 2931 5240 2548 5241 2515 5241 2523 5241 2523 5242 2515 5242 2516 5242 2523 5243 2516 5243 2927 5243 2927 5244 2516 5244 2932 5244 2932 5245 2516 5245 2530 5245 2932 5246 2530 5246 2517 5246 2932 5247 2517 5247 2933 5247 2933 5248 2517 5248 2528 5248 2933 5249 2528 5249 2518 5249 2933 5250 2518 5250 2930 5250 2930 5251 2518 5251 2728 5251 2930 5252 2728 5252 2928 5252 2519 5253 2544 5253 2548 5253 2548 5254 2544 5254 3551 5254 2548 5255 3551 5255 2515 5255 2515 5256 3551 5256 2520 5256 2520 5257 3551 5257 2535 5257 2520 5258 2535 5258 2534 5258 2547 5259 2545 5259 2519 5259 2519 5260 2545 5260 2544 5260 2544 5261 2537 5261 3551 5261 2728 5262 2518 5262 2723 5262 2723 5263 2518 5263 2471 5263 2723 5264 2471 5264 2727 5264 2651 5265 2976 5265 3013 5265 2651 5266 3013 5266 2465 5266 3013 5267 2466 5267 2465 5267 2521 5268 2466 5268 3013 5268 2466 5269 2521 5269 2852 5269 2852 5270 2521 5270 2847 5270 2847 5271 2521 5271 2841 5271 2841 5272 2521 5272 2840 5272 2840 5273 2521 5273 2834 5273 2834 5274 2521 5274 3010 5274 2522 5275 2974 5275 2971 5275 2785 5276 2971 5276 2973 5276 2785 5277 2973 5277 2786 5277 2786 5278 2973 5278 2772 5278 2772 5279 2973 5279 2774 5279 2774 5280 2973 5280 2972 5280 2774 5281 2972 5281 2775 5281 2775 5282 2972 5282 2765 5282 2765 5283 2972 5283 2767 5283 2750 5284 2929 5284 2747 5284 2747 5285 2929 5285 2934 5285 2747 5286 2934 5286 2744 5286 2744 5287 2934 5287 2745 5287 2745 5288 2934 5288 2741 5288 2741 5289 2934 5289 2734 5289 2734 5290 2934 5290 2731 5290 2731 5291 2934 5291 2928 5291 2891 5292 2824 5292 2823 5292 2824 5293 2891 5293 2814 5293 2814 5294 2891 5294 2810 5294 2810 5295 2891 5295 2524 5295 2524 5296 2891 5296 2807 5296 2807 5297 2891 5297 2889 5297 2807 5298 2889 5298 2804 5298 2465 5299 2719 5299 2651 5299 1713 5300 3565 5300 2525 5300 2525 5301 3565 5301 2526 5301 2525 5302 2526 5302 2657 5302 2657 5303 2526 5303 2470 5303 2657 5304 2470 5304 2659 5304 2659 5305 2470 5305 2471 5305 2659 5306 2471 5306 2527 5306 2527 5307 2471 5307 2518 5307 2527 5308 2518 5308 2660 5308 2660 5309 2518 5309 2528 5309 2660 5310 2528 5310 2529 5310 2529 5311 2528 5311 2517 5311 2529 5312 2517 5312 2661 5312 2661 5313 2517 5313 2530 5313 2661 5314 2530 5314 2531 5314 2531 5315 2530 5315 2516 5315 2531 5316 2516 5316 2532 5316 2532 5317 2516 5317 2515 5317 2532 5318 2515 5318 2664 5318 2664 5319 2515 5319 2520 5319 2664 5320 2520 5320 2533 5320 2533 5321 2520 5321 2534 5321 2533 5322 2534 5322 1605 5322 1605 5323 2534 5323 2535 5323 1605 5324 2535 5324 2665 5324 2665 5325 2535 5325 3551 5325 2541 5326 2537 5326 2540 5326 3551 5327 2536 5327 2665 5327 2539 5328 2540 5328 2544 5328 2542 5329 2538 5329 2665 5329 2539 5330 2538 5330 2540 5330 2538 5331 2542 5331 2540 5331 2542 5332 2541 5332 2540 5332 2536 5333 2541 5333 2542 5333 2536 5334 2542 5334 2665 5334 2537 5335 2541 5335 3551 5335 2544 5336 2540 5336 2537 5336 3551 5337 2541 5337 2536 5337 2539 5338 2544 5338 2543 5338 2543 5339 2544 5339 2545 5339 2543 5340 2545 5340 2546 5340 2546 5341 2545 5341 2547 5341 2546 5342 2547 5342 2666 5342 2666 5343 2547 5343 2519 5343 2666 5344 2519 5344 2663 5344 2663 5345 2519 5345 2548 5345 2663 5346 2548 5346 2662 5346 2662 5347 2548 5347 2523 5347 2662 5348 2523 5348 2667 5348 2667 5349 2523 5349 2514 5349 2667 5350 2514 5350 2549 5350 2549 5351 2514 5351 2550 5351 2549 5352 2550 5352 2668 5352 2668 5353 2550 5353 2513 5353 2668 5354 2513 5354 2551 5354 2551 5355 2513 5355 2509 5355 2551 5356 2509 5356 2671 5356 2671 5357 2509 5357 2754 5357 2671 5358 2754 5358 2673 5358 2673 5359 2754 5359 2552 5359 2673 5360 2552 5360 2553 5360 2553 5361 2552 5361 2512 5361 2553 5362 2512 5362 929 5362 929 5363 2512 5363 2511 5363 929 5364 2511 5364 2674 5364 2674 5365 2511 5365 2555 5365 2674 5366 2555 5366 2554 5366 2554 5367 2555 5367 2556 5367 2554 5368 2556 5368 2672 5368 2672 5369 2556 5369 2510 5369 2672 5370 2510 5370 2669 5370 2669 5371 2510 5371 2508 5371 2669 5372 2508 5372 2670 5372 2670 5373 2508 5373 2507 5373 2670 5374 2507 5374 2557 5374 2557 5375 2507 5375 2506 5375 2557 5376 2506 5376 2676 5376 2676 5377 2506 5377 2505 5377 2676 5378 2505 5378 2675 5378 2675 5379 2505 5379 2558 5379 2675 5380 2558 5380 2713 5380 2713 5381 2558 5381 2504 5381 2713 5382 2504 5382 2559 5382 2559 5383 2504 5383 2498 5383 2559 5384 2498 5384 2560 5384 2560 5385 2498 5385 2502 5385 2560 5386 2502 5386 2561 5386 2561 5387 2502 5387 2503 5387 2561 5388 2503 5388 990 5388 990 5389 2503 5389 2562 5389 990 5390 2562 5390 987 5390 987 5391 2562 5391 2572 5391 2570 5392 2563 5392 2564 5392 2573 5393 2563 5393 987 5393 2571 5394 2570 5394 2564 5394 2567 5395 2564 5395 2573 5395 2567 5396 2568 5396 2569 5396 2572 5397 2573 5397 987 5397 2567 5398 2569 5398 2566 5398 2571 5399 2565 5399 2566 5399 2564 5400 2563 5400 2573 5400 2568 5401 2573 5401 2572 5401 2566 5402 2565 5402 2567 5402 2569 5403 2568 5403 2572 5403 2571 5404 2564 5404 2565 5404 2567 5405 2565 5405 2564 5405 2567 5406 2573 5406 2568 5406 2571 5407 2566 5407 2574 5407 2574 5408 2566 5408 2501 5408 2574 5409 2501 5409 2575 5409 2575 5410 2501 5410 2500 5410 2575 5411 2500 5411 2679 5411 2679 5412 2500 5412 2576 5412 2679 5413 2576 5413 2577 5413 2577 5414 2576 5414 2499 5414 2577 5415 2499 5415 2677 5415 2677 5416 2499 5416 2578 5416 2677 5417 2578 5417 2579 5417 2579 5418 2578 5418 2497 5418 2579 5419 2497 5419 2580 5419 2580 5420 2497 5420 2581 5420 2580 5421 2581 5421 2582 5421 2582 5422 2581 5422 2496 5422 2582 5423 2496 5423 2678 5423 2678 5424 2496 5424 2522 5424 2678 5425 2522 5425 2680 5425 2680 5426 2522 5426 2493 5426 2680 5427 2493 5427 2584 5427 2584 5428 2493 5428 2583 5428 2584 5429 2583 5429 2681 5429 2681 5430 2583 5430 2495 5430 2681 5431 2495 5431 2585 5431 2585 5432 2495 5432 2586 5432 2585 5433 2586 5433 2587 5433 2587 5434 2586 5434 2588 5434 2587 5435 2588 5435 2589 5435 2589 5436 2588 5436 2590 5436 2589 5437 2590 5437 2591 5437 2591 5438 2590 5438 2494 5438 2591 5439 2494 5439 2592 5439 2592 5440 2494 5440 2593 5440 2592 5441 2593 5441 2715 5441 2715 5442 2593 5442 2489 5442 2715 5443 2489 5443 2594 5443 2594 5444 2489 5444 2595 5444 2594 5445 2595 5445 2682 5445 2682 5446 2595 5446 2596 5446 2682 5447 2596 5447 2683 5447 2683 5448 2596 5448 2488 5448 2683 5449 2488 5449 2684 5449 2684 5450 2488 5450 2597 5450 2684 5451 2597 5451 2686 5451 2686 5452 2597 5452 2598 5452 2686 5453 2598 5453 2685 5453 2685 5454 2598 5454 2490 5454 2685 5455 2490 5455 2599 5455 2599 5456 2490 5456 2600 5456 2599 5457 2600 5457 2687 5457 2687 5458 2600 5458 2491 5458 2687 5459 2491 5459 2607 5459 2607 5460 2491 5460 2602 5460 2689 5461 2611 5461 2604 5461 2611 5462 2606 5462 2610 5462 2603 5463 2606 5463 2607 5463 2602 5464 2603 5464 2607 5464 2604 5465 2610 5465 2612 5465 2689 5466 2605 5466 2611 5466 2605 5467 2689 5467 2607 5467 2605 5468 2606 5468 2611 5468 2606 5469 2605 5469 2607 5469 2610 5470 2606 5470 2608 5470 2601 5471 2609 5471 2608 5471 2611 5472 2610 5472 2604 5472 2612 5473 2610 5473 2608 5473 2612 5474 2608 5474 2609 5474 2606 5475 2603 5475 2608 5475 2601 5476 2608 5476 2603 5476 2609 5477 2601 5477 2602 5477 2602 5478 2601 5478 2603 5478 2604 5479 2612 5479 2690 5479 2690 5480 2612 5480 11216 5480 2690 5481 11216 5481 2691 5481 2691 5482 11216 5482 2613 5482 2691 5483 2613 5483 2614 5483 2614 5484 2613 5484 2492 5484 2614 5485 2492 5485 2688 5485 2688 5486 2492 5486 2616 5486 2688 5487 2616 5487 2615 5487 2615 5488 2616 5488 2487 5488 2615 5489 2487 5489 2692 5489 2692 5490 2487 5490 2617 5490 2692 5491 2617 5491 2693 5491 2693 5492 2617 5492 2485 5492 2693 5493 2485 5493 2694 5493 2694 5494 2485 5494 2486 5494 2694 5495 2486 5495 2695 5495 2695 5496 2486 5496 2618 5496 2695 5497 2618 5497 2619 5497 2619 5498 2618 5498 2484 5498 2619 5499 2484 5499 2620 5499 2620 5500 2484 5500 2621 5500 2620 5501 2621 5501 2623 5501 2623 5502 2621 5502 2622 5502 2623 5503 2622 5503 2698 5503 2698 5504 2622 5504 11205 5504 2698 5505 11205 5505 2697 5505 2697 5506 11205 5506 11305 5506 2697 5507 11305 5507 2699 5507 2699 5508 11305 5508 2624 5508 2699 5509 2624 5509 2700 5509 2700 5510 2624 5510 2625 5510 2700 5511 2625 5511 2696 5511 2696 5512 2625 5512 2483 5512 2696 5513 2483 5513 2701 5513 2701 5514 2483 5514 2482 5514 2701 5515 2482 5515 2626 5515 2626 5516 2482 5516 2481 5516 2626 5517 2481 5517 2627 5517 2627 5518 2481 5518 2480 5518 2627 5519 2480 5519 2702 5519 2702 5520 2480 5520 2479 5520 2702 5521 2479 5521 2711 5521 2711 5522 2479 5522 2475 5522 2711 5523 2475 5523 2628 5523 2628 5524 2475 5524 2474 5524 2628 5525 2474 5525 2707 5525 2707 5526 2474 5526 2477 5526 2707 5527 2477 5527 2629 5527 2629 5528 2477 5528 2478 5528 2629 5529 2478 5529 2630 5529 2630 5530 2478 5530 2631 5530 2630 5531 2631 5531 2710 5531 2710 5532 2631 5532 2641 5532 2635 5533 2639 5533 2637 5533 2633 5534 2642 5534 2640 5534 2634 5535 2640 5535 2642 5535 2641 5536 2633 5536 2710 5536 2636 5537 2637 5537 2638 5537 2635 5538 2632 5538 2633 5538 2632 5539 2635 5539 2636 5539 2634 5540 2642 5540 2641 5540 2640 5541 2634 5541 2638 5541 2637 5542 2636 5542 2635 5542 2640 5543 2638 5543 2637 5543 2639 5544 2640 5544 2637 5544 2635 5545 2633 5545 2639 5545 2639 5546 2633 5546 2640 5546 2642 5547 2633 5547 2641 5547 2633 5548 2632 5548 2710 5548 2636 5549 2638 5549 2643 5549 2643 5550 2638 5550 2476 5550 2643 5551 2476 5551 2709 5551 2709 5552 2476 5552 2645 5552 2709 5553 2645 5553 2644 5553 2644 5554 2645 5554 2472 5554 2644 5555 2472 5555 2708 5555 2708 5556 2472 5556 2473 5556 2708 5557 2473 5557 2703 5557 2703 5558 2473 5558 2646 5558 2703 5559 2646 5559 2704 5559 2704 5560 2646 5560 2647 5560 2704 5561 2647 5561 2705 5561 2705 5562 2647 5562 2648 5562 2705 5563 2648 5563 2706 5563 2706 5564 2648 5564 2650 5564 2706 5565 2650 5565 2649 5565 2649 5566 2650 5566 2651 5566 2649 5567 2651 5567 2658 5567 2658 5568 2651 5568 2721 5568 2658 5569 2721 5569 2652 5569 2652 5570 2721 5570 2653 5570 2652 5571 2653 5571 2655 5571 2655 5572 2653 5572 2654 5572 2655 5573 2654 5573 1618 5573 1618 5574 2654 5574 2656 5574 1618 5575 2656 5575 1713 5575 1713 5576 2656 5576 3565 5576 2655 5577 1618 5577 2652 5577 2652 5578 1618 5578 1713 5578 2652 5579 1713 5579 2657 5579 2657 5580 1713 5580 2525 5580 2657 5581 2659 5581 2652 5581 2652 5582 2659 5582 2658 5582 2658 5583 2659 5583 2726 5583 2658 5584 2726 5584 2716 5584 2527 5585 2724 5585 2659 5585 2660 5586 2901 5586 2527 5586 2527 5587 2901 5587 2898 5587 2529 5588 2901 5588 2660 5588 2661 5589 2901 5589 2529 5589 2531 5590 2901 5590 2661 5590 2532 5591 2662 5591 2531 5591 2531 5592 2662 5592 2900 5592 2531 5593 2900 5593 2901 5593 2664 5594 2665 5594 2532 5594 2532 5595 2665 5595 2663 5595 2532 5596 2663 5596 2662 5596 2533 5597 1605 5597 2664 5597 2664 5598 1605 5598 2665 5598 2665 5599 2538 5599 2539 5599 2665 5600 2539 5600 2663 5600 2663 5601 2539 5601 2666 5601 2666 5602 2539 5602 2543 5602 2666 5603 2543 5603 2546 5603 2900 5604 2662 5604 2667 5604 2900 5605 2667 5605 2549 5605 2900 5606 2549 5606 2899 5606 2899 5607 2549 5607 2668 5607 2899 5608 2668 5608 2551 5608 2899 5609 2551 5609 2903 5609 2903 5610 2551 5610 2749 5610 2749 5611 2551 5611 2755 5611 2755 5612 2551 5612 2671 5612 2755 5613 2671 5613 2752 5613 2752 5614 2671 5614 2669 5614 2752 5615 2669 5615 2762 5615 2762 5616 2669 5616 2763 5616 2763 5617 2669 5617 2670 5617 2763 5618 2670 5618 2712 5618 2712 5619 2670 5619 2939 5619 2669 5620 2671 5620 2672 5620 2672 5621 2671 5621 2673 5621 2672 5622 2673 5622 2674 5622 2674 5623 2673 5623 929 5623 929 5624 2673 5624 2553 5624 2674 5625 2554 5625 2672 5625 2557 5626 2936 5626 2670 5626 2670 5627 2936 5627 2939 5627 2676 5628 2937 5628 2557 5628 2557 5629 2937 5629 2936 5629 2675 5630 2937 5630 2676 5630 2713 5631 2941 5631 2675 5631 2675 5632 2941 5632 2937 5632 2559 5633 2577 5633 2713 5633 2713 5634 2577 5634 2677 5634 2713 5635 2677 5635 2941 5635 2941 5636 2677 5636 2579 5636 2941 5637 2579 5637 2935 5637 2935 5638 2579 5638 2580 5638 2935 5639 2580 5639 2938 5639 2938 5640 2580 5640 2582 5640 2938 5641 2582 5641 2678 5641 2938 5642 2678 5642 2942 5642 2942 5643 2678 5643 2789 5643 2942 5644 2789 5644 2943 5644 2560 5645 987 5645 2559 5645 2559 5646 987 5646 2571 5646 2559 5647 2571 5647 2577 5647 2577 5648 2571 5648 2679 5648 2679 5649 2571 5649 2574 5649 2679 5650 2574 5650 2575 5650 2561 5651 990 5651 2560 5651 2560 5652 990 5652 987 5652 987 5653 2563 5653 2571 5653 2563 5654 2570 5654 2571 5654 2789 5655 2678 5655 2791 5655 2791 5656 2678 5656 2680 5656 2791 5657 2680 5657 2792 5657 2792 5658 2680 5658 2795 5658 2795 5659 2680 5659 2592 5659 2795 5660 2592 5660 2799 5660 2799 5661 2592 5661 2715 5661 2799 5662 2715 5662 2805 5662 2805 5663 2715 5663 2866 5663 2680 5664 2584 5664 2592 5664 2592 5665 2584 5665 2591 5665 2591 5666 2584 5666 2585 5666 2591 5667 2585 5667 2587 5667 2584 5668 2681 5668 2585 5668 2587 5669 2589 5669 2591 5669 2594 5670 2857 5670 2715 5670 2682 5671 2857 5671 2594 5671 2683 5672 2857 5672 2682 5672 2684 5673 2858 5673 2683 5673 2683 5674 2858 5674 2857 5674 2686 5675 2615 5675 2684 5675 2684 5676 2615 5676 2858 5676 2685 5677 2607 5677 2686 5677 2686 5678 2607 5678 2688 5678 2686 5679 2688 5679 2615 5679 2599 5680 2687 5680 2685 5680 2685 5681 2687 5681 2607 5681 2688 5682 2607 5682 2604 5682 2604 5683 2607 5683 2689 5683 2688 5684 2604 5684 2614 5684 2614 5685 2604 5685 2690 5685 2614 5686 2690 5686 2691 5686 2858 5687 2615 5687 2692 5687 2858 5688 2692 5688 2855 5688 2855 5689 2692 5689 2693 5689 2855 5690 2693 5690 2694 5690 2855 5691 2694 5691 2695 5691 2855 5692 2695 5692 2860 5692 2860 5693 2695 5693 2820 5693 2860 5694 2820 5694 2859 5694 2859 5695 2820 5695 2821 5695 2820 5696 2695 5696 2827 5696 2827 5697 2695 5697 2619 5697 2827 5698 2619 5698 2825 5698 2825 5699 2619 5699 2696 5699 2825 5700 2696 5700 2831 5700 2831 5701 2696 5701 2830 5701 2830 5702 2696 5702 2701 5702 2830 5703 2701 5703 2835 5703 2835 5704 2701 5704 2975 5704 2696 5705 2619 5705 2700 5705 2700 5706 2619 5706 2620 5706 2700 5707 2620 5707 2697 5707 2697 5708 2620 5708 2698 5708 2698 5709 2620 5709 2623 5709 2697 5710 2699 5710 2700 5710 2626 5711 2981 5711 2701 5711 2701 5712 2981 5712 2975 5712 2627 5713 2981 5713 2626 5713 2702 5714 2981 5714 2627 5714 2711 5715 2981 5715 2702 5715 2628 5716 2708 5716 2711 5716 2711 5717 2708 5717 2703 5717 2711 5718 2703 5718 2978 5718 2978 5719 2703 5719 2704 5719 2978 5720 2704 5720 2705 5720 2978 5721 2705 5721 2706 5721 2978 5722 2706 5722 2649 5722 2978 5723 2649 5723 2977 5723 2977 5724 2649 5724 2467 5724 2977 5725 2467 5725 2469 5725 2707 5726 2710 5726 2628 5726 2628 5727 2710 5727 2636 5727 2628 5728 2636 5728 2708 5728 2708 5729 2636 5729 2644 5729 2644 5730 2636 5730 2643 5730 2644 5731 2643 5731 2709 5731 2629 5732 2630 5732 2707 5732 2707 5733 2630 5733 2710 5733 2710 5734 2632 5734 2636 5734 2467 5735 2649 5735 2717 5735 2717 5736 2649 5736 2658 5736 2717 5737 2658 5737 2716 5737 2978 5738 2981 5738 2711 5738 2835 5739 2975 5739 2982 5739 2835 5740 2982 5740 2836 5740 2836 5741 2982 5741 2849 5741 2849 5742 2982 5742 2842 5742 2842 5743 2982 5743 2839 5743 2839 5744 2982 5744 2469 5744 2469 5745 2982 5745 2977 5745 2712 5746 2939 5746 2769 5746 2769 5747 2939 5747 2770 5747 2770 5748 2939 5748 2940 5748 2770 5749 2940 5749 2778 5749 2778 5750 2940 5750 2781 5750 2781 5751 2940 5751 2788 5751 2788 5752 2940 5752 2943 5752 2788 5753 2943 5753 2789 5753 2527 5754 2898 5754 2902 5754 2527 5755 2902 5755 2729 5755 2902 5756 2730 5756 2729 5756 2730 5757 2902 5757 2740 5757 2740 5758 2902 5758 2894 5758 2740 5759 2894 5759 2735 5759 2735 5760 2894 5760 2743 5760 2743 5761 2894 5761 2714 5761 2714 5762 2894 5762 2748 5762 2748 5763 2894 5763 2895 5763 2748 5764 2895 5764 2749 5764 2749 5765 2895 5765 2903 5765 2715 5766 2857 5766 2866 5766 2805 5767 2866 5767 2861 5767 2805 5768 2861 5768 2803 5768 2803 5769 2861 5769 2808 5769 2808 5770 2861 5770 2811 5770 2811 5771 2861 5771 2862 5771 2811 5772 2862 5772 2809 5772 2809 5773 2862 5773 2821 5773 2821 5774 2862 5774 2859 5774 2729 5775 2724 5775 2527 5775 2659 5776 2724 5776 2726 5776 2726 5777 2727 5777 2716 5777 2716 5778 2727 5778 2720 5778 2719 5779 2720 5779 2721 5779 2720 5780 2718 5780 2716 5780 2719 5781 2717 5781 2718 5781 2719 5782 2718 5782 2720 5782 2716 5783 2718 5783 2717 5783 2726 5784 2725 5784 2727 5784 2722 5785 2723 5785 2727 5785 2723 5786 2725 5786 2724 5786 2726 5787 2724 5787 2725 5787 2722 5788 2725 5788 2723 5788 2722 5789 2727 5789 2725 5789 2729 5790 2728 5790 2724 5790 2724 5791 2728 5791 2723 5791 2928 5792 2728 5792 2731 5792 2729 5793 2730 5793 2732 5793 2731 5794 2732 5794 2730 5794 2728 5795 2729 5795 2732 5795 2731 5796 2728 5796 2732 5796 2740 5797 2734 5797 2730 5797 2730 5798 2734 5798 2731 5798 2735 5799 2739 5799 2740 5799 2742 5800 2743 5800 2714 5800 2740 5801 2739 5801 2736 5801 2745 5802 2742 5802 2744 5802 2744 5803 2742 5803 2714 5803 2740 5804 2737 5804 2734 5804 2733 5805 2735 5805 2743 5805 2735 5806 2733 5806 2739 5806 2739 5807 2733 5807 2736 5807 2740 5808 2736 5808 2737 5808 2733 5809 2738 5809 2737 5809 2741 5810 2738 5810 2745 5810 2741 5811 2734 5811 2737 5811 2733 5812 2737 5812 2736 5812 2738 5813 2741 5813 2737 5813 2733 5814 2743 5814 2742 5814 2733 5815 2742 5815 2738 5815 2738 5816 2742 5816 2745 5816 2748 5817 2747 5817 2714 5817 2714 5818 2747 5818 2744 5818 2748 5819 2746 5819 2747 5819 2748 5820 2749 5820 2746 5820 2750 5821 2746 5821 2749 5821 2747 5822 2746 5822 2750 5822 2755 5823 2756 5823 2749 5823 2749 5824 2756 5824 2750 5824 2755 5825 2753 5825 2756 5825 2756 5826 2753 5826 2751 5826 2751 5827 2753 5827 2752 5827 2755 5828 2752 5828 2753 5828 2754 5829 2756 5829 2751 5829 2762 5830 2757 5830 2752 5830 2752 5831 2757 5831 2751 5831 2757 5832 2762 5832 2760 5832 2759 5833 2763 5833 2762 5833 2762 5834 2763 5834 2760 5834 2764 5835 2760 5835 2763 5835 2758 5836 2761 5836 2763 5836 2757 5837 2760 5837 2764 5837 2759 5838 2762 5838 2761 5838 2761 5839 2762 5839 2763 5839 2763 5840 2759 5840 2758 5840 2712 5841 2767 5841 2763 5841 2763 5842 2767 5842 2764 5842 2766 5843 2765 5843 2768 5843 2767 5844 2766 5844 2768 5844 2765 5845 2766 5845 2769 5845 2766 5846 2712 5846 2769 5846 2767 5847 2768 5847 2765 5847 2767 5848 2712 5848 2766 5848 2770 5849 2775 5849 2769 5849 2769 5850 2775 5850 2765 5850 2770 5851 2771 5851 2773 5851 2780 5852 2784 5852 2774 5852 2780 5853 2774 5853 2776 5853 2772 5854 2774 5854 2784 5854 2772 5855 2782 5855 2781 5855 2777 5856 2773 5856 2771 5856 2770 5857 2773 5857 2775 5857 2783 5858 2778 5858 2781 5858 2778 5859 2779 5859 2771 5859 2778 5860 2771 5860 2770 5860 2779 5861 2777 5861 2771 5861 2780 5862 2777 5862 2782 5862 2777 5863 2780 5863 2776 5863 2784 5864 2780 5864 2782 5864 2784 5865 2782 5865 2772 5865 2775 5866 2773 5866 2776 5866 2776 5867 2773 5867 2777 5867 2774 5868 2775 5868 2776 5868 2779 5869 2778 5869 2783 5869 2779 5870 2783 5870 2782 5870 2779 5871 2782 5871 2777 5871 2781 5872 2782 5872 2783 5872 2788 5873 2786 5873 2781 5873 2781 5874 2786 5874 2772 5874 2788 5875 2787 5875 2786 5875 2787 5876 2785 5876 2786 5876 2788 5877 2789 5877 2787 5877 2785 5878 2787 5878 2789 5878 2791 5879 2790 5879 2789 5879 2789 5880 2790 5880 2785 5880 2790 5881 2791 5881 2793 5881 2790 5882 2793 5882 2794 5882 2794 5883 2793 5883 2792 5883 2792 5884 2793 5884 2791 5884 2795 5885 2802 5885 2792 5885 2792 5886 2802 5886 2794 5886 2795 5887 2800 5887 2802 5887 2798 5888 2797 5888 2795 5888 2801 5889 2800 5889 2799 5889 2798 5890 2795 5890 2799 5890 2795 5891 2796 5891 2800 5891 2800 5892 2796 5892 2799 5892 2796 5893 2795 5893 2797 5893 2801 5894 2802 5894 2800 5894 2799 5895 2796 5895 2798 5895 2805 5896 2804 5896 2799 5896 2799 5897 2804 5897 2801 5897 2805 5898 2806 5898 2804 5898 2807 5899 2806 5899 2803 5899 2806 5900 2805 5900 2803 5900 2804 5901 2806 5901 2807 5901 2808 5902 2524 5902 2803 5902 2803 5903 2524 5903 2807 5903 2811 5904 2818 5904 2817 5904 2811 5905 2817 5905 2815 5905 2817 5906 2818 5906 2813 5906 2813 5907 2818 5907 2814 5907 2814 5908 2818 5908 2809 5908 2808 5909 2812 5909 2524 5909 2818 5910 2811 5910 2809 5910 2808 5911 2815 5911 2812 5911 2812 5912 2815 5912 2817 5912 2819 5913 2816 5913 2813 5913 2819 5914 2813 5914 2814 5914 2816 5915 2819 5915 2810 5915 2815 5916 2808 5916 2811 5916 2524 5917 2812 5917 2810 5917 2817 5918 2816 5918 2812 5918 2816 5919 2810 5919 2812 5919 2817 5920 2813 5920 2816 5920 2810 5921 2819 5921 2814 5921 2821 5922 2824 5922 2809 5922 2809 5923 2824 5923 2814 5923 2821 5924 2822 5924 2824 5924 2822 5925 2823 5925 2824 5925 2823 5926 2822 5926 2820 5926 2822 5927 2821 5927 2820 5927 2827 5928 2828 5928 2820 5928 2820 5929 2828 5929 2823 5929 2826 5930 2829 5930 2825 5930 2828 5931 2829 5931 2826 5931 2828 5932 2827 5932 2829 5932 2829 5933 2827 5933 2825 5933 2831 5934 2833 5934 2825 5934 2825 5935 2833 5935 2826 5935 2832 5936 2831 5936 2830 5936 2833 5937 2831 5937 2832 5937 2835 5938 2838 5938 2830 5938 2830 5939 2838 5939 2832 5939 2838 5940 2837 5940 2834 5940 2837 5941 2835 5941 2836 5941 2834 5942 2837 5942 2836 5942 2838 5943 2835 5943 2837 5943 2849 5944 2840 5944 2836 5944 2836 5945 2840 5945 2834 5945 2848 5946 2842 5946 2843 5946 2846 5947 2853 5947 2847 5947 2847 5948 2853 5948 2852 5948 2852 5949 2854 5949 2839 5949 2849 5950 2845 5950 2840 5950 2848 5951 2843 5951 2850 5951 2843 5952 2844 5952 2850 5952 2844 5953 2843 5953 2851 5953 2854 5954 2851 5954 2839 5954 2854 5955 2844 5955 2851 5955 2849 5956 2850 5956 2845 5956 2845 5957 2850 5957 2844 5957 2853 5958 2844 5958 2854 5958 2853 5959 2854 5959 2852 5959 2846 5960 2844 5960 2853 5960 2844 5961 2846 5961 2845 5961 2846 5962 2847 5962 2841 5962 2849 5963 2842 5963 2848 5963 2850 5964 2849 5964 2848 5964 2840 5965 2845 5965 2841 5965 2846 5966 2841 5966 2845 5966 2843 5967 2842 5967 2851 5967 2851 5968 2842 5968 2839 5968 2469 5969 2466 5969 2839 5969 2839 5970 2466 5970 2852 5970 2858 5971 2864 5971 2857 5971 2866 5972 2874 5972 2861 5972 2857 5973 2865 5973 2866 5973 2855 5974 2860 5974 2863 5974 2857 5975 2864 5975 2865 5975 2855 5976 2863 5976 2871 5976 2855 5977 2871 5977 2858 5977 2859 5978 2868 5978 2860 5978 2865 5979 2864 5979 2867 5979 2858 5980 2872 5980 2864 5980 2862 5981 2876 5981 2859 5981 2866 5982 2869 5982 2874 5982 2866 5983 2865 5983 2869 5983 2858 5984 2871 5984 2872 5984 2864 5985 2872 5985 2867 5985 2859 5986 2876 5986 2868 5986 2860 5987 2868 5987 2885 5987 2860 5988 2885 5988 2863 5988 2865 5989 2877 5989 2869 5989 2862 5990 2861 5990 2870 5990 2862 5991 2870 5991 2876 5991 2865 5992 2867 5992 2877 5992 2867 5993 2872 5993 2873 5993 2861 5994 2874 5994 2870 5994 2872 5995 2871 5995 2882 5995 2867 5996 2873 5996 2877 5996 2877 5997 2873 5997 2875 5997 2863 5998 2885 5998 2879 5998 2863 5999 2879 5999 2871 5999 2870 6000 2884 6000 2876 6000 2873 6001 2872 6001 2887 6001 2873 6002 2887 6002 2875 6002 2869 6003 2877 6003 2856 6003 2869 6004 2856 6004 2874 6004 2876 6005 2884 6005 2868 6005 2874 6006 2856 6006 2878 6006 2868 6007 2884 6007 2886 6007 2871 6008 2879 6008 2882 6008 2870 6009 2874 6009 2883 6009 2870 6010 2883 6010 2884 6010 2868 6011 2886 6011 2880 6011 2868 6012 2880 6012 2885 6012 2874 6013 2878 6013 2883 6013 2882 6014 2881 6014 2872 6014 2872 6015 2881 6015 2888 6015 2872 6016 2888 6016 2887 6016 2882 6017 2879 6017 2881 6017 2877 6018 2875 6018 2856 6018 2879 6019 2885 6019 2892 6019 2886 6020 2884 6020 2891 6020 2886 6021 2891 6021 2880 6021 2883 6022 2878 6022 2889 6022 2880 6023 2892 6023 2885 6023 2887 6024 2890 6024 2875 6024 2883 6025 2889 6025 2884 6025 2880 6026 2891 6026 2892 6026 2887 6027 2888 6027 2890 6027 2878 6028 2856 6028 2889 6028 2881 6029 2893 6029 2888 6029 2884 6030 2889 6030 2891 6030 2875 6031 2890 6031 2856 6031 2879 6032 2892 6032 2893 6032 2879 6033 2893 6033 2881 6033 2903 6034 2897 6034 2899 6034 2901 6035 2896 6035 2898 6035 2902 6036 2898 6036 2906 6036 2900 6037 2907 6037 2901 6037 2900 6038 2899 6038 2908 6038 2900 6039 2908 6039 2904 6039 2900 6040 2904 6040 2907 6040 2899 6041 2905 6041 2908 6041 2902 6042 2906 6042 2920 6042 2894 6043 2909 6043 2895 6043 2896 6044 2901 6044 2912 6044 2901 6045 2907 6045 2912 6045 2902 6046 2920 6046 2916 6046 2902 6047 2916 6047 2894 6047 2895 6048 2909 6048 2913 6048 2895 6049 2913 6049 2903 6049 2899 6050 2897 6050 2922 6050 2899 6051 2922 6051 2905 6051 2898 6052 2896 6052 2911 6052 2898 6053 2911 6053 2906 6053 2894 6054 2916 6054 2909 6054 2897 6055 2903 6055 2910 6055 2897 6056 2910 6056 2922 6056 2903 6057 2913 6057 2910 6057 2907 6058 2904 6058 2919 6058 2904 6059 2924 6059 2919 6059 2907 6060 2919 6060 2912 6060 2908 6061 2923 6061 2904 6061 2896 6062 2912 6062 2911 6062 2912 6063 2919 6063 2914 6063 2908 6064 2915 6064 2923 6064 2908 6065 2905 6065 2915 6065 2912 6066 2914 6066 2911 6066 2910 6067 2918 6067 2922 6067 2905 6068 2922 6068 2915 6068 2904 6069 2923 6069 2924 6069 2906 6070 2930 6070 2920 6070 2913 6071 2909 6071 2917 6071 2913 6072 2917 6072 2910 6072 2910 6073 2917 6073 2918 6073 2914 6074 2926 6074 2911 6074 2906 6075 2911 6075 2930 6075 2911 6076 2926 6076 2933 6076 2911 6077 2933 6077 2930 6077 2909 6078 2916 6078 2921 6078 2909 6079 2921 6079 2917 6079 2919 6080 2926 6080 2914 6080 2919 6081 2924 6081 2925 6081 2919 6082 2925 6082 2926 6082 2920 6083 2930 6083 2928 6083 2920 6084 2928 6084 2916 6084 2916 6085 2928 6085 2921 6085 2922 6086 2918 6086 2915 6086 2915 6087 2931 6087 2923 6087 2924 6088 2923 6088 2927 6088 2924 6089 2927 6089 2925 6089 2921 6090 2934 6090 2917 6090 2918 6091 2929 6091 2915 6091 2915 6092 2929 6092 2931 6092 2926 6093 2925 6093 2933 6093 2923 6094 2931 6094 2927 6094 2925 6095 2932 6095 2933 6095 2921 6096 2928 6096 2934 6096 2917 6097 2934 6097 2929 6097 2917 6098 2929 6098 2918 6098 2925 6099 2927 6099 2932 6099 2936 6100 2937 6100 2949 6100 2937 6101 2941 6101 2946 6101 2940 6102 2939 6102 2945 6102 2937 6103 2946 6103 2952 6103 2939 6104 2936 6104 2948 6104 2936 6105 2949 6105 2947 6105 2936 6106 2947 6106 2948 6106 2939 6107 2948 6107 2945 6107 2935 6108 2938 6108 2944 6108 2940 6109 2945 6109 2958 6109 2940 6110 2958 6110 2943 6110 2938 6111 2942 6111 2944 6111 2937 6112 2952 6112 2949 6112 2943 6113 2956 6113 2942 6113 2946 6114 2959 6114 2952 6114 2941 6115 2935 6115 2954 6115 2941 6116 2954 6116 2946 6116 2946 6117 2954 6117 2959 6117 2943 6118 2958 6118 2956 6118 2948 6119 2947 6119 2953 6119 2945 6120 2950 6120 2958 6120 2944 6121 2942 6121 2951 6121 2947 6122 2949 6122 2957 6122 2945 6123 2948 6123 2950 6123 2947 6124 2957 6124 2953 6124 2948 6125 2953 6125 2950 6125 2944 6126 2951 6126 2955 6126 2935 6127 2944 6127 2960 6127 2935 6128 2960 6128 2954 6128 2944 6129 2955 6129 2960 6129 2942 6130 2956 6130 2951 6130 2950 6131 2966 6131 2958 6131 2952 6132 2967 6132 2949 6132 2952 6133 2959 6133 2967 6133 2951 6134 2956 6134 2962 6134 2951 6135 2962 6135 2955 6135 2953 6136 2961 6136 2950 6136 2953 6137 2957 6137 2961 6137 2958 6138 2973 6138 2956 6138 2956 6139 2971 6139 2962 6139 2956 6140 2973 6140 2971 6140 2959 6141 2954 6141 2963 6141 2950 6142 2961 6142 2966 6142 2958 6143 2966 6143 2973 6143 2960 6144 2964 6144 2954 6144 2954 6145 2964 6145 2963 6145 2957 6146 2949 6146 2965 6146 2960 6147 2955 6147 2964 6147 2959 6148 2963 6148 2967 6148 2957 6149 2965 6149 2961 6149 2965 6150 2968 6150 2961 6150 2964 6151 2969 6151 2963 6151 2962 6152 2974 6152 2955 6152 2964 6153 2955 6153 2974 6153 2964 6154 2974 6154 2969 6154 2967 6155 2970 6155 2949 6155 2966 6156 2972 6156 2973 6156 2949 6157 2970 6157 2965 6157 2963 6158 2969 6158 2967 6158 2967 6159 2969 6159 2970 6159 2962 6160 2971 6160 2974 6160 2965 6161 2970 6161 2968 6161 2966 6162 2961 6162 2972 6162 2961 6163 2968 6163 2972 6163 2975 6164 2979 6164 2982 6164 2977 6165 2989 6165 2985 6165 2977 6166 2985 6166 2978 6166 2978 6167 2980 6167 2981 6167 2978 6168 2993 6168 2980 6168 2975 6169 2983 6169 2979 6169 2981 6170 2980 6170 2988 6170 2981 6171 2987 6171 2975 6171 2982 6172 2984 6172 2977 6172 2985 6173 2986 6173 2978 6173 2978 6174 2986 6174 2993 6174 2975 6175 2987 6175 2983 6175 2977 6176 2984 6176 2991 6176 2977 6177 2991 6177 2989 6177 2981 6178 2988 6178 2987 6178 2982 6179 2979 6179 2994 6179 2982 6180 2994 6180 2984 6180 2985 6181 2989 6181 2995 6181 2980 6182 2993 6182 2999 6182 2983 6183 2990 6183 2979 6183 2979 6184 2990 6184 2994 6184 2994 6185 2990 6185 2997 6185 2985 6186 2995 6186 2998 6186 2985 6187 2998 6187 2986 6187 2988 6188 3006 6188 2987 6188 2984 6189 2994 6189 3008 6189 2988 6190 2980 6190 2996 6190 2988 6191 2996 6191 3006 6191 2983 6192 2987 6192 3000 6192 2983 6193 3000 6193 2990 6193 2980 6194 2999 6194 2996 6194 2984 6195 3008 6195 2991 6195 2986 6196 2998 6196 2992 6196 2986 6197 2992 6197 2993 6197 2987 6198 3006 6198 3000 6198 2989 6199 2991 6199 2995 6199 2993 6200 2992 6200 3004 6200 2993 6201 3004 6201 2999 6201 2998 6202 2995 6202 3014 6202 2998 6203 3014 6203 3003 6203 2998 6204 3003 6204 2992 6204 2994 6205 2997 6205 3001 6205 2994 6206 3001 6206 3008 6206 3000 6207 3002 6207 2990 6207 2997 6208 2990 6208 3001 6208 2995 6209 2991 6209 3014 6209 2990 6210 3002 6210 3001 6210 2999 6211 3004 6211 3007 6211 2999 6212 3007 6212 2996 6212 3006 6213 2996 6213 3005 6213 3004 6214 2992 6214 3007 6214 2992 6215 3003 6215 3007 6215 3006 6216 3005 6216 3009 6216 3006 6217 3009 6217 3000 6217 3002 6218 3000 6218 3010 6218 3003 6219 3014 6219 2976 6219 3002 6220 3010 6220 3001 6220 3008 6221 3013 6221 2991 6221 3007 6222 3011 6222 2996 6222 3000 6223 3009 6223 3010 6223 3003 6224 2976 6224 3007 6224 3001 6225 3010 6225 3015 6225 3001 6226 3015 6226 3008 6226 3008 6227 3015 6227 3013 6227 2991 6228 3013 6228 3014 6228 2996 6229 3011 6229 3012 6229 2996 6230 3012 6230 3005 6230 3007 6231 2976 6231 3011 6231 3015 6232 3010 6232 2521 6232 3013 6233 3015 6233 2521 6233 3005 6234 3012 6234 3009 6234 3014 6235 3013 6235 2976 6235 3253 6236 3251 6236 3017 6236 3017 6237 3251 6237 3016 6237 3250 6238 3016 6238 3341 6238 3250 6239 3017 6239 3016 6239 3018 6240 3187 6240 3190 6240 3190 6241 3187 6241 3071 6241 3190 6242 3071 6242 3070 6242 3018 6243 3189 6243 3187 6243 3187 6244 3019 6244 3071 6244 3071 6245 3019 6245 3020 6245 3020 6246 3019 6246 3255 6246 3020 6247 3255 6247 3257 6247 3068 6248 3251 6248 3019 6248 3184 6249 3449 6249 3068 6249 3183 6250 3449 6250 3184 6250 3181 6251 3449 6251 3183 6251 3180 6252 3447 6252 3181 6252 3181 6253 3447 6253 3449 6253 3178 6254 3024 6254 3180 6254 3180 6255 3024 6255 3447 6255 3021 6256 3170 6256 3178 6256 3178 6257 3170 6257 3022 6257 3178 6258 3022 6258 3024 6258 3177 6259 3176 6259 3021 6259 3021 6260 3176 6260 3170 6260 3022 6261 3170 6261 8092 6261 8092 6262 3170 6262 3169 6262 3022 6263 8092 6263 3023 6263 3023 6264 8092 6264 3168 6264 3023 6265 3168 6265 3166 6265 3447 6266 3024 6266 3165 6266 3447 6267 3165 6267 3450 6267 3450 6268 3165 6268 3025 6268 3450 6269 3025 6269 3163 6269 3450 6270 3163 6270 3026 6270 3450 6271 3026 6271 3451 6271 3451 6272 3026 6272 3336 6272 3451 6273 3336 6273 3452 6273 3336 6274 3026 6274 3330 6274 3330 6275 3026 6275 3029 6275 3330 6276 3029 6276 3331 6276 3331 6277 3029 6277 3027 6277 3331 6278 3027 6278 3323 6278 3323 6279 3027 6279 3322 6279 3322 6280 3027 6280 3028 6280 3322 6281 3028 6281 3319 6281 3319 6282 3028 6282 3370 6282 3027 6283 3029 6283 3030 6283 3030 6284 3029 6284 3159 6284 3030 6285 3159 6285 3156 6285 3156 6286 3159 6286 3031 6286 3031 6287 3159 6287 3158 6287 3156 6288 3154 6288 3030 6288 3153 6289 3371 6289 3028 6289 3028 6290 3371 6290 3370 6290 3032 6291 3371 6291 3153 6291 3033 6292 3371 6292 3032 6292 3152 6293 3371 6293 3033 6293 3151 6294 3136 6294 3152 6294 3152 6295 3136 6295 3034 6295 3152 6296 3034 6296 3369 6296 3369 6297 3034 6297 3035 6297 3369 6298 3035 6298 3036 6298 3369 6299 3036 6299 3372 6299 3372 6300 3036 6300 3037 6300 3372 6301 3037 6301 3038 6301 3372 6302 3038 6302 3366 6302 3366 6303 3038 6303 3358 6303 3358 6304 3038 6304 3309 6304 3358 6305 3309 6305 3368 6305 3368 6306 3309 6306 3310 6306 3040 6307 3145 6307 3151 6307 3151 6308 3145 6308 3146 6308 3151 6309 3146 6309 3136 6309 3136 6310 3146 6310 3039 6310 3039 6311 3146 6311 3140 6311 3039 6312 3140 6312 3138 6312 3149 6313 3041 6313 3040 6313 3040 6314 3041 6314 3145 6314 3145 6315 3143 6315 3146 6315 3309 6316 3038 6316 3304 6316 3304 6317 3038 6317 3042 6317 3304 6318 3042 6318 3303 6318 3303 6319 3042 6319 3299 6319 3299 6320 3042 6320 3125 6320 3299 6321 3125 6321 3298 6321 3298 6322 3125 6322 3067 6322 3298 6323 3067 6323 3297 6323 3297 6324 3067 6324 3423 6324 3042 6325 3043 6325 3125 6325 3125 6326 3043 6326 3127 6326 3127 6327 3043 6327 3129 6327 3127 6328 3129 6328 3128 6328 3131 6329 3130 6329 3043 6329 3043 6330 3130 6330 3129 6330 3044 6331 3423 6331 3067 6331 3124 6332 3417 6332 3044 6332 3044 6333 3417 6333 3423 6333 3045 6334 3417 6334 3124 6334 3121 6335 3417 6335 3045 6335 3119 6336 3051 6336 3121 6336 3121 6337 3051 6337 3424 6337 3118 6338 3115 6338 3119 6338 3119 6339 3115 6339 3046 6339 3119 6340 3046 6340 3051 6340 3047 6341 3048 6341 3118 6341 3118 6342 3048 6342 3115 6342 3115 6343 3113 6343 3046 6343 3046 6344 3113 6344 3049 6344 3049 6345 3113 6345 3050 6345 3049 6346 3050 6346 3110 6346 3424 6347 3051 6347 3052 6347 3424 6348 3052 6348 3105 6348 3424 6349 3105 6349 3402 6349 3402 6350 3105 6350 3053 6350 3402 6351 3053 6351 3054 6351 3402 6352 3054 6352 3421 6352 3421 6353 3054 6353 3283 6353 3283 6354 3054 6354 3055 6354 3055 6355 3054 6355 3056 6355 3055 6356 3056 6356 3282 6356 3282 6357 3056 6357 3098 6357 3282 6358 3098 6358 3276 6358 3276 6359 3098 6359 3275 6359 3275 6360 3098 6360 3097 6360 3275 6361 3097 6361 3272 6361 3272 6362 3097 6362 3397 6362 3098 6363 3056 6363 3057 6363 3057 6364 3056 6364 3102 6364 3057 6365 3102 6365 3100 6365 3100 6366 3102 6366 3101 6366 3101 6367 3102 6367 3058 6367 3100 6368 3059 6368 3057 6368 3060 6369 3400 6369 3097 6369 3097 6370 3400 6370 3399 6370 3095 6371 3400 6371 3060 6371 3093 6372 3400 6372 3095 6372 3061 6373 3387 6373 3093 6373 3093 6374 3387 6374 3400 6374 3091 6375 3079 6375 3061 6375 3061 6376 3079 6376 3062 6376 3061 6377 3062 6377 3387 6377 3387 6378 3062 6378 3077 6378 3387 6379 3077 6379 3074 6379 3387 6380 3074 6380 3396 6380 3396 6381 3074 6381 3073 6381 3396 6382 3073 6382 3072 6382 3396 6383 3072 6383 3388 6383 3388 6384 3072 6384 3260 6384 3388 6385 3260 6385 3269 6385 3090 6386 3084 6386 3091 6386 3091 6387 3084 6387 3066 6387 3091 6388 3066 6388 3079 6388 3079 6389 3066 6389 3064 6389 3064 6390 3066 6390 3063 6390 3064 6391 3063 6391 3065 6391 3089 6392 3088 6392 3090 6392 3090 6393 3088 6393 3084 6393 3066 6394 3084 6394 3086 6394 3260 6395 3072 6395 3259 6395 3259 6396 3072 6396 3020 6396 3259 6397 3020 6397 3257 6397 3068 6398 3449 6398 3446 6398 3068 6399 3446 6399 3016 6399 3016 6400 3446 6400 3448 6400 3016 6401 3448 6401 3341 6401 3341 6402 3448 6402 3340 6402 3340 6403 3448 6403 3339 6403 3339 6404 3448 6404 3452 6404 3339 6405 3452 6405 3334 6405 3334 6406 3452 6406 3336 6406 3424 6407 3417 6407 3121 6407 3297 6408 3423 6408 3422 6408 3297 6409 3422 6409 3296 6409 3296 6410 3422 6410 3288 6410 3288 6411 3422 6411 3289 6411 3289 6412 3422 6412 3286 6412 3286 6413 3422 6413 3284 6413 3284 6414 3422 6414 3418 6414 3284 6415 3418 6415 3283 6415 3283 6416 3418 6416 3421 6416 3097 6417 3399 6417 3397 6417 3272 6418 3397 6418 3265 6418 3265 6419 3397 6419 3398 6419 3265 6420 3398 6420 3263 6420 3263 6421 3398 6421 3269 6421 3269 6422 3398 6422 3388 6422 3370 6423 3318 6423 3319 6423 3318 6424 3370 6424 3363 6424 3318 6425 3363 6425 3316 6425 3316 6426 3363 6426 3310 6426 3310 6427 3363 6427 3368 6427 3369 6428 3371 6428 3152 6428 3019 6429 3251 6429 3255 6429 3016 6430 3251 6430 3068 6430 3192 6431 3190 6431 3069 6431 3069 6432 3190 6432 3070 6432 3069 6433 3070 6433 3193 6433 3193 6434 3070 6434 3071 6434 3193 6435 3071 6435 3194 6435 3194 6436 3071 6436 3020 6436 3194 6437 3020 6437 3195 6437 3195 6438 3020 6438 3072 6438 3195 6439 3072 6439 3196 6439 3196 6440 3072 6440 3073 6440 3196 6441 3073 6441 3075 6441 3075 6442 3073 6442 3074 6442 3075 6443 3074 6443 3076 6443 3076 6444 3074 6444 3077 6444 3076 6445 3077 6445 3197 6445 3197 6446 3077 6446 3062 6446 3197 6447 3062 6447 3078 6447 3078 6448 3062 6448 3079 6448 3078 6449 3079 6449 3199 6449 3199 6450 3079 6450 3064 6450 3199 6451 3064 6451 3080 6451 3080 6452 3064 6452 3065 6452 3080 6453 3065 6453 3081 6453 3081 6454 3065 6454 3063 6454 3081 6455 3063 6455 3200 6455 3200 6456 3063 6456 3066 6456 3083 6457 3082 6457 3084 6457 3084 6458 3085 6458 3086 6458 3066 6459 3085 6459 3200 6459 3082 6460 3085 6460 3084 6460 3086 6461 3085 6461 3066 6461 3085 6462 3082 6462 3200 6462 3083 6463 3084 6463 3087 6463 3087 6464 3084 6464 3088 6464 3087 6465 3088 6465 3202 6465 3202 6466 3088 6466 3089 6466 3202 6467 3089 6467 3201 6467 3201 6468 3089 6468 3090 6468 3201 6469 3090 6469 3198 6469 3198 6470 3090 6470 3091 6470 3198 6471 3091 6471 3203 6471 3203 6472 3091 6472 3061 6472 3203 6473 3061 6473 3092 6473 3092 6474 3061 6474 3093 6474 3092 6475 3093 6475 3094 6475 3094 6476 3093 6476 3095 6476 3094 6477 3095 6477 3096 6477 3096 6478 3095 6478 3060 6478 3096 6479 3060 6479 3204 6479 3204 6480 3060 6480 3097 6480 3204 6481 3097 6481 3205 6481 3205 6482 3097 6482 3098 6482 3205 6483 3098 6483 3209 6483 3209 6484 3098 6484 3057 6484 3209 6485 3057 6485 3210 6485 3210 6486 3057 6486 3059 6486 3210 6487 3059 6487 3099 6487 3099 6488 3059 6488 3100 6488 3099 6489 3100 6489 3208 6489 3208 6490 3100 6490 3101 6490 3208 6491 3101 6491 3211 6491 3211 6492 3101 6492 3058 6492 3211 6493 3058 6493 3207 6493 3207 6494 3058 6494 3102 6494 3207 6495 3102 6495 3206 6495 3206 6496 3102 6496 3056 6496 3206 6497 3056 6497 3103 6497 3103 6498 3056 6498 3054 6498 3103 6499 3054 6499 3104 6499 3104 6500 3054 6500 3053 6500 3104 6501 3053 6501 3106 6501 3106 6502 3053 6502 3105 6502 3106 6503 3105 6503 3107 6503 3107 6504 3105 6504 3052 6504 3107 6505 3052 6505 3213 6505 3213 6506 3052 6506 3051 6506 3213 6507 3051 6507 3212 6507 3212 6508 3051 6508 3046 6508 3212 6509 3046 6509 3108 6509 3108 6510 3046 6510 3049 6510 3108 6511 3049 6511 3218 6511 3218 6512 3049 6512 3110 6512 3218 6513 3110 6513 3109 6513 3109 6514 3110 6514 3050 6514 3109 6515 3050 6515 3111 6515 3111 6516 3050 6516 3113 6516 3112 6517 3114 6517 3115 6517 3114 6518 3112 6518 3113 6518 3219 6519 3112 6519 3115 6519 3115 6520 3114 6520 3113 6520 3113 6521 3112 6521 3111 6521 3219 6522 3115 6522 3116 6522 3116 6523 3115 6523 3048 6523 3116 6524 3048 6524 3217 6524 3217 6525 3048 6525 3047 6525 3217 6526 3047 6526 3117 6526 3117 6527 3047 6527 3118 6527 3117 6528 3118 6528 3216 6528 3216 6529 3118 6529 3119 6529 3216 6530 3119 6530 3120 6530 3120 6531 3119 6531 3121 6531 3120 6532 3121 6532 3122 6532 3122 6533 3121 6533 3045 6533 3122 6534 3045 6534 3123 6534 3123 6535 3045 6535 3124 6535 3123 6536 3124 6536 3214 6536 3214 6537 3124 6537 3044 6537 3214 6538 3044 6538 3215 6538 3215 6539 3044 6539 3067 6539 3215 6540 3067 6540 3220 6540 3220 6541 3067 6541 3125 6541 3220 6542 3125 6542 3222 6542 3222 6543 3125 6543 3127 6543 3222 6544 3127 6544 3126 6544 3126 6545 3127 6545 3128 6545 3126 6546 3128 6546 3224 6546 3224 6547 3128 6547 3129 6547 3224 6548 3129 6548 3225 6548 3225 6549 3129 6549 3130 6549 3225 6550 3130 6550 3132 6550 3132 6551 3130 6551 3131 6551 3132 6552 3131 6552 3223 6552 3223 6553 3131 6553 3043 6553 3223 6554 3043 6554 3221 6554 3221 6555 3043 6555 3042 6555 3221 6556 3042 6556 3226 6556 3226 6557 3042 6557 3038 6557 3226 6558 3038 6558 3133 6558 3133 6559 3038 6559 3037 6559 3133 6560 3037 6560 3134 6560 3134 6561 3037 6561 3036 6561 3134 6562 3036 6562 3227 6562 3227 6563 3036 6563 3035 6563 3227 6564 3035 6564 3228 6564 3228 6565 3035 6565 3034 6565 3228 6566 3034 6566 3135 6566 3135 6567 3034 6567 3136 6567 3135 6568 3136 6568 3137 6568 3137 6569 3136 6569 3039 6569 3137 6570 3039 6570 3139 6570 3139 6571 3039 6571 3138 6571 3139 6572 3138 6572 3229 6572 3229 6573 3138 6573 3140 6573 3229 6574 3140 6574 3141 6574 3141 6575 3140 6575 3146 6575 3230 6576 3142 6576 3144 6576 3146 6577 3142 6577 3141 6577 3142 6578 3230 6578 3141 6578 3142 6579 3143 6579 3144 6579 3143 6580 3145 6580 3144 6580 3143 6581 3142 6581 3146 6581 3144 6582 3145 6582 3147 6582 3147 6583 3145 6583 3041 6583 3147 6584 3041 6584 3148 6584 3148 6585 3041 6585 3149 6585 3148 6586 3149 6586 3231 6586 3231 6587 3149 6587 3040 6587 3231 6588 3040 6588 3150 6588 3150 6589 3040 6589 3151 6589 3150 6590 3151 6590 3232 6590 3232 6591 3151 6591 3152 6591 3232 6592 3152 6592 3233 6592 3233 6593 3152 6593 3033 6593 3233 6594 3033 6594 3234 6594 3234 6595 3033 6595 3032 6595 3234 6596 3032 6596 3235 6596 3235 6597 3032 6597 3153 6597 3235 6598 3153 6598 3236 6598 3236 6599 3153 6599 3028 6599 3236 6600 3028 6600 3237 6600 3237 6601 3028 6601 3027 6601 3237 6602 3027 6602 3238 6602 3238 6603 3027 6603 3030 6603 3238 6604 3030 6604 3155 6604 3155 6605 3030 6605 3154 6605 3155 6606 3154 6606 10537 6606 10537 6607 3154 6607 3156 6607 10537 6608 3156 6608 10446 6608 10446 6609 3156 6609 3031 6609 10446 6610 3031 6610 3157 6610 3157 6611 3031 6611 3158 6611 3157 6612 3158 6612 3160 6612 3160 6613 3158 6613 3159 6613 3160 6614 3159 6614 3161 6614 3161 6615 3159 6615 3029 6615 3161 6616 3029 6616 3162 6616 3162 6617 3029 6617 3026 6617 3162 6618 3026 6618 3164 6618 3164 6619 3026 6619 3163 6619 3164 6620 3163 6620 3239 6620 3239 6621 3163 6621 3025 6621 3239 6622 3025 6622 3240 6622 3240 6623 3025 6623 3165 6623 3240 6624 3165 6624 3241 6624 3241 6625 3165 6625 3024 6625 3241 6626 3024 6626 3245 6626 3245 6627 3024 6627 3022 6627 3245 6628 3022 6628 3244 6628 3244 6629 3022 6629 3023 6629 3244 6630 3023 6630 3167 6630 3167 6631 3023 6631 3166 6631 3167 6632 3166 6632 10435 6632 10435 6633 3166 6633 3168 6633 10435 6634 3168 6634 10432 6634 10432 6635 3168 6635 8092 6635 8092 6636 3171 6636 10432 6636 3173 6637 3174 6637 3170 6637 3171 6638 3172 6638 10432 6638 3174 6639 3172 6639 3171 6639 3171 6640 3169 6640 3174 6640 3174 6641 3173 6641 3172 6641 3170 6642 3174 6642 3169 6642 3169 6643 3171 6643 8092 6643 3173 6644 3170 6644 3175 6644 3175 6645 3170 6645 3176 6645 3175 6646 3176 6646 3248 6646 3248 6647 3176 6647 3177 6647 3248 6648 3177 6648 3247 6648 3247 6649 3177 6649 3021 6649 3247 6650 3021 6650 3246 6650 3246 6651 3021 6651 3178 6651 3246 6652 3178 6652 3179 6652 3179 6653 3178 6653 3180 6653 3179 6654 3180 6654 3242 6654 3242 6655 3180 6655 3181 6655 3242 6656 3181 6656 3182 6656 3182 6657 3181 6657 3183 6657 3182 6658 3183 6658 3243 6658 3243 6659 3183 6659 3184 6659 3243 6660 3184 6660 3249 6660 3249 6661 3184 6661 3068 6661 3249 6662 3068 6662 3185 6662 3185 6663 3068 6663 3019 6663 3185 6664 3019 6664 3186 6664 3186 6665 3019 6665 3187 6665 3186 6666 3187 6666 3191 6666 3191 6667 3187 6667 3189 6667 3191 6668 3189 6668 3188 6668 3188 6669 3189 6669 3018 6669 3188 6670 3018 6670 3192 6670 3192 6671 3018 6671 3190 6671 3191 6672 3188 6672 3186 6672 3186 6673 3188 6673 3192 6673 3186 6674 3192 6674 3193 6674 3193 6675 3192 6675 3069 6675 3193 6676 3194 6676 3186 6676 3186 6677 3194 6677 3185 6677 3185 6678 3194 6678 3256 6678 3185 6679 3256 6679 3252 6679 3195 6680 3258 6680 3194 6680 3196 6681 3373 6681 3195 6681 3075 6682 3373 6682 3196 6682 3076 6683 3377 6683 3075 6683 3075 6684 3377 6684 3373 6684 3197 6685 3377 6685 3076 6685 3078 6686 3203 6686 3197 6686 3197 6687 3203 6687 3377 6687 3199 6688 3200 6688 3078 6688 3078 6689 3200 6689 3198 6689 3078 6690 3198 6690 3203 6690 3080 6691 3081 6691 3199 6691 3199 6692 3081 6692 3200 6692 3082 6693 3083 6693 3200 6693 3200 6694 3083 6694 3198 6694 3198 6695 3083 6695 3201 6695 3201 6696 3083 6696 3087 6696 3201 6697 3087 6697 3202 6697 3377 6698 3203 6698 3374 6698 3374 6699 3203 6699 3092 6699 3374 6700 3092 6700 3094 6700 3374 6701 3094 6701 3096 6701 3374 6702 3096 6702 3204 6702 3374 6703 3204 6703 3376 6703 3376 6704 3204 6704 3273 6704 3376 6705 3273 6705 3375 6705 3375 6706 3273 6706 3264 6706 3273 6707 3204 6707 3277 6707 3277 6708 3204 6708 3205 6708 3277 6709 3205 6709 3278 6709 3278 6710 3205 6710 3206 6710 3278 6711 3206 6711 3280 6711 3280 6712 3206 6712 3281 6712 3281 6713 3206 6713 3103 6713 3281 6714 3103 6714 3285 6714 3285 6715 3103 6715 3401 6715 3206 6716 3205 6716 3207 6716 3207 6717 3205 6717 3209 6717 3207 6718 3209 6718 3208 6718 3208 6719 3209 6719 3099 6719 3099 6720 3209 6720 3210 6720 3208 6721 3211 6721 3207 6721 3104 6722 3412 6722 3103 6722 3103 6723 3412 6723 3401 6723 3106 6724 3404 6724 3104 6724 3104 6725 3404 6725 3412 6725 3107 6726 3404 6726 3106 6726 3213 6727 3404 6727 3107 6727 3212 6728 3216 6728 3213 6728 3213 6729 3216 6729 3120 6729 3213 6730 3120 6730 3403 6730 3403 6731 3120 6731 3122 6731 3403 6732 3122 6732 3123 6732 3403 6733 3123 6733 3214 6733 3403 6734 3214 6734 3406 6734 3406 6735 3214 6735 3215 6735 3406 6736 3215 6736 3409 6736 3409 6737 3215 6737 3295 6737 3108 6738 3111 6738 3212 6738 3212 6739 3111 6739 3219 6739 3212 6740 3219 6740 3216 6740 3216 6741 3219 6741 3117 6741 3117 6742 3219 6742 3116 6742 3117 6743 3116 6743 3217 6743 3218 6744 3109 6744 3108 6744 3108 6745 3109 6745 3111 6745 3111 6746 3112 6746 3219 6746 3295 6747 3215 6747 3301 6747 3301 6748 3215 6748 3220 6748 3301 6749 3220 6749 3300 6749 3300 6750 3220 6750 3305 6750 3305 6751 3220 6751 3221 6751 3305 6752 3221 6752 3306 6752 3306 6753 3221 6753 3226 6753 3306 6754 3226 6754 3307 6754 3307 6755 3226 6755 3351 6755 3220 6756 3222 6756 3221 6756 3221 6757 3222 6757 3223 6757 3223 6758 3222 6758 3224 6758 3223 6759 3224 6759 3225 6759 3222 6760 3126 6760 3224 6760 3225 6761 3132 6761 3223 6761 3133 6762 3348 6762 3226 6762 3226 6763 3348 6763 3351 6763 3134 6764 3348 6764 3133 6764 3227 6765 3346 6765 3134 6765 3134 6766 3346 6766 3348 6766 3228 6767 3346 6767 3227 6767 3135 6768 3232 6768 3228 6768 3228 6769 3232 6769 3346 6769 3137 6770 3141 6770 3135 6770 3135 6771 3141 6771 3150 6771 3135 6772 3150 6772 3232 6772 3139 6773 3229 6773 3137 6773 3137 6774 3229 6774 3141 6774 3150 6775 3141 6775 3144 6775 3144 6776 3141 6776 3230 6776 3150 6777 3144 6777 3231 6777 3231 6778 3144 6778 3147 6778 3231 6779 3147 6779 3148 6779 3346 6780 3232 6780 3350 6780 3350 6781 3232 6781 3233 6781 3350 6782 3233 6782 3234 6782 3350 6783 3234 6783 3349 6783 3349 6784 3234 6784 3235 6784 3349 6785 3235 6785 3236 6785 3349 6786 3236 6786 3320 6786 3349 6787 3320 6787 3345 6787 3345 6788 3320 6788 3311 6788 3320 6789 3236 6789 3326 6789 3326 6790 3236 6790 3237 6790 3326 6791 3237 6791 3329 6791 3329 6792 3237 6792 3161 6792 3329 6793 3161 6793 3332 6793 3332 6794 3161 6794 3333 6794 3333 6795 3161 6795 3162 6795 3333 6796 3162 6796 3335 6796 3335 6797 3162 6797 3425 6797 3161 6798 3237 6798 3160 6798 3160 6799 3237 6799 3238 6799 3160 6800 3238 6800 10446 6800 10446 6801 3238 6801 10537 6801 10537 6802 3238 6802 3155 6802 10446 6803 3157 6803 3160 6803 3164 6804 3425 6804 3162 6804 3239 6805 3425 6805 3164 6805 3240 6806 3427 6806 3239 6806 3239 6807 3427 6807 3425 6807 3241 6808 3427 6808 3240 6808 3245 6809 3246 6809 3241 6809 3241 6810 3246 6810 3179 6810 3241 6811 3179 6811 3428 6811 3428 6812 3179 6812 3242 6812 3428 6813 3242 6813 3431 6813 3431 6814 3242 6814 3182 6814 3431 6815 3182 6815 3243 6815 3431 6816 3243 6816 3249 6816 3431 6817 3249 6817 3426 6817 3426 6818 3249 6818 3017 6818 3426 6819 3017 6819 3250 6819 3244 6820 10432 6820 3245 6820 3245 6821 10432 6821 3173 6821 3245 6822 3173 6822 3246 6822 3246 6823 3173 6823 3247 6823 3247 6824 3173 6824 3175 6824 3247 6825 3175 6825 3248 6825 3167 6826 10435 6826 3244 6826 3244 6827 10435 6827 10432 6827 10432 6828 3172 6828 3173 6828 3017 6829 3249 6829 3253 6829 3253 6830 3249 6830 3185 6830 3253 6831 3185 6831 3252 6831 3428 6832 3427 6832 3241 6832 3335 6833 3425 6833 3338 6833 3338 6834 3425 6834 3429 6834 3338 6835 3429 6835 3344 6835 3344 6836 3429 6836 3250 6836 3250 6837 3429 6837 3426 6837 3285 6838 3401 6838 3291 6838 3291 6839 3401 6839 3405 6839 3291 6840 3405 6840 3290 6840 3290 6841 3405 6841 3294 6841 3294 6842 3405 6842 3295 6842 3295 6843 3405 6843 3409 6843 3403 6844 3404 6844 3213 6844 3195 6845 3373 6845 3380 6845 3195 6846 3380 6846 3261 6846 3380 6847 3266 6847 3261 6847 3266 6848 3380 6848 3378 6848 3266 6849 3378 6849 3270 6849 3270 6850 3378 6850 3264 6850 3264 6851 3378 6851 3375 6851 3351 6852 3347 6852 3307 6852 3307 6853 3347 6853 3308 6853 3308 6854 3347 6854 3345 6854 3308 6855 3345 6855 3312 6855 3312 6856 3345 6856 3311 6856 3261 6857 3258 6857 3195 6857 3194 6858 3258 6858 3256 6858 3256 6859 3257 6859 3252 6859 3252 6860 3257 6860 3255 6860 3253 6861 3254 6861 3251 6861 3255 6862 3254 6862 3252 6862 3254 6863 3253 6863 3252 6863 3255 6864 3251 6864 3254 6864 3256 6865 3258 6865 3257 6865 3257 6866 3258 6866 3259 6866 3261 6867 3260 6867 3258 6867 3258 6868 3260 6868 3259 6868 3261 6869 3262 6869 3260 6869 3269 6870 3262 6870 3266 6870 3261 6871 3266 6871 3262 6871 3260 6872 3262 6872 3269 6872 3265 6873 3263 6873 3268 6873 3265 6874 3271 6874 3264 6874 3266 6875 3267 6875 3269 6875 3268 6876 3270 6876 3271 6876 3269 6877 3267 6877 3263 6877 3263 6878 3267 6878 3268 6878 3267 6879 3266 6879 3270 6879 3267 6880 3270 6880 3268 6880 3271 6881 3270 6881 3264 6881 3265 6882 3268 6882 3271 6882 3264 6883 3274 6883 3265 6883 3274 6884 3272 6884 3265 6884 3272 6885 3274 6885 3273 6885 3273 6886 3274 6886 3264 6886 3277 6887 3275 6887 3273 6887 3273 6888 3275 6888 3272 6888 3277 6889 3279 6889 3275 6889 3279 6890 3276 6890 3275 6890 3276 6891 3279 6891 3278 6891 3279 6892 3277 6892 3278 6892 3280 6893 3282 6893 3278 6893 3278 6894 3282 6894 3276 6894 3055 6895 3280 6895 3281 6895 3282 6896 3280 6896 3055 6896 3285 6897 3283 6897 3281 6897 3281 6898 3283 6898 3055 6898 3284 6899 3285 6899 3291 6899 3284 6900 3283 6900 3285 6900 3291 6901 3286 6901 3284 6901 3293 6902 3290 6902 3294 6902 3289 6903 3287 6903 3288 6903 3288 6904 3287 6904 3294 6904 3291 6905 3292 6905 3286 6905 3293 6906 3287 6906 3289 6906 3290 6907 3293 6907 3292 6907 3287 6908 3293 6908 3294 6908 3293 6909 3289 6909 3292 6909 3291 6910 3290 6910 3292 6910 3289 6911 3286 6911 3292 6911 3294 6912 3296 6912 3288 6912 3294 6913 3297 6913 3296 6913 3294 6914 3295 6914 3297 6914 3301 6915 3298 6915 3295 6915 3295 6916 3298 6916 3297 6916 3301 6917 3302 6917 3298 6917 3301 6918 3300 6918 3302 6918 3302 6919 3299 6919 3298 6919 3299 6920 3302 6920 3300 6920 3305 6921 3303 6921 3300 6921 3300 6922 3303 6922 3299 6922 3305 6923 3306 6923 3303 6923 3303 6924 3306 6924 3304 6924 3307 6925 3309 6925 3306 6925 3306 6926 3309 6926 3304 6926 3309 6927 3307 6927 3310 6927 3310 6928 3307 6928 3308 6928 3312 6929 3311 6929 3317 6929 3316 6930 3317 6930 3318 6930 3318 6931 3317 6931 3311 6931 3308 6932 3315 6932 3310 6932 3313 6933 3317 6933 3316 6933 3312 6934 3313 6934 3314 6934 3315 6935 3313 6935 3316 6935 3315 6936 3316 6936 3310 6936 3308 6937 3312 6937 3314 6937 3315 6938 3308 6938 3314 6938 3315 6939 3314 6939 3313 6939 3313 6940 3312 6940 3317 6940 3311 6941 3321 6941 3318 6941 3321 6942 3319 6942 3318 6942 3319 6943 3321 6943 3320 6943 3320 6944 3321 6944 3311 6944 3326 6945 3322 6945 3320 6945 3320 6946 3322 6946 3319 6946 3326 6947 3328 6947 3322 6947 3329 6948 3323 6948 3328 6948 3327 6949 3326 6949 3329 6949 3328 6950 3324 6950 3329 6950 3329 6951 3324 6951 3327 6951 3322 6952 3328 6952 3323 6952 3325 6953 3326 6953 3327 6953 3328 6954 3326 6954 3325 6954 3328 6955 3325 6955 3324 6955 3332 6956 3331 6956 3329 6956 3329 6957 3331 6957 3323 6957 3332 6958 3330 6958 3331 6958 3330 6959 3332 6959 3333 6959 3335 6960 3336 6960 3333 6960 3333 6961 3336 6961 3330 6961 3335 6962 3337 6962 3336 6962 3335 6963 3338 6963 3337 6963 3337 6964 3334 6964 3336 6964 3334 6965 3337 6965 3338 6965 3338 6966 3339 6966 3334 6966 3344 6967 3250 6967 3343 6967 3344 6968 3343 6968 3342 6968 3344 6969 3342 6969 3338 6969 3342 6970 3343 6970 3341 6970 3339 6971 3342 6971 3340 6971 3341 6972 3343 6972 3250 6972 3338 6973 3342 6973 3339 6973 3340 6974 3342 6974 3341 6974 3349 6975 3361 6975 3350 6975 3348 6976 3346 6976 3352 6976 3346 6977 3350 6977 3362 6977 3348 6978 3356 6978 3351 6978 3349 6979 3353 6979 3361 6979 3351 6980 3356 6980 3358 6980 3351 6981 3358 6981 3347 6981 3349 6982 3345 6982 3359 6982 3349 6983 3359 6983 3353 6983 3346 6984 3362 6984 3352 6984 3348 6985 3352 6985 3356 6985 3350 6986 3361 6986 3354 6986 3350 6987 3354 6987 3362 6987 3345 6988 3347 6988 3355 6988 3345 6989 3355 6989 3359 6989 3347 6990 3357 6990 3355 6990 3352 6991 3360 6991 3356 6991 3352 6992 3362 6992 3367 6992 3352 6993 3367 6993 3360 6993 3356 6994 3366 6994 3358 6994 3347 6995 3358 6995 3357 6995 3359 6996 3365 6996 3353 6996 3356 6997 3360 6997 3364 6997 3356 6998 3364 6998 3366 6998 3357 6999 3363 6999 3355 6999 3357 7000 3368 7000 3363 7000 3357 7001 3358 7001 3368 7001 3361 7002 3353 7002 3371 7002 3361 7003 3371 7003 3354 7003 3367 7004 3364 7004 3360 7004 3365 7005 3359 7005 3370 7005 3353 7006 3365 7006 3371 7006 3362 7007 3354 7007 3367 7007 3355 7008 3363 7008 3359 7008 3365 7009 3370 7009 3371 7009 3364 7010 3367 7010 3369 7010 3364 7011 3369 7011 3372 7011 3359 7012 3363 7012 3370 7012 3354 7013 3371 7013 3369 7013 3354 7014 3369 7014 3367 7014 3364 7015 3372 7015 3366 7015 3388 7016 3386 7016 3396 7016 3377 7017 3383 7017 3373 7017 3380 7018 3389 7018 3378 7018 3374 7019 3382 7019 3385 7019 3374 7020 3385 7020 3377 7020 3373 7021 3383 7021 3390 7021 3380 7022 3384 7022 3389 7022 3374 7023 3376 7023 3381 7023 3374 7024 3381 7024 3382 7024 3378 7025 3389 7025 3379 7025 3378 7026 3379 7026 3375 7026 3373 7027 3390 7027 3386 7027 3373 7028 3386 7028 3380 7028 3384 7029 3380 7029 3388 7029 3377 7030 3385 7030 3387 7030 3377 7031 3387 7031 3383 7031 3382 7032 3381 7032 3392 7032 3380 7033 3386 7033 3388 7033 3381 7034 3376 7034 3394 7034 3382 7035 3392 7035 3385 7035 3384 7036 3388 7036 3395 7036 3384 7037 3395 7037 3389 7037 3385 7038 3392 7038 3393 7038 3379 7039 3391 7039 3375 7039 3381 7040 3394 7040 3392 7040 3385 7041 3393 7041 3387 7041 3389 7042 3395 7042 3379 7042 3390 7043 3396 7043 3386 7043 3379 7044 3395 7044 3391 7044 3375 7045 3391 7045 3397 7045 3383 7046 3387 7046 3396 7046 3383 7047 3396 7047 3390 7047 3392 7048 3400 7048 3393 7048 3376 7049 3375 7049 3399 7049 3376 7050 3399 7050 3394 7050 3392 7051 3394 7051 3400 7051 3395 7052 3388 7052 3398 7052 3375 7053 3397 7053 3399 7053 3395 7054 3398 7054 3391 7054 3394 7055 3399 7055 3400 7055 3393 7056 3400 7056 3387 7056 3391 7057 3398 7057 3397 7057 3401 7058 3410 7058 3405 7058 3403 7059 3406 7059 3411 7059 3406 7060 3409 7060 3408 7060 3404 7061 3413 7061 3412 7061 3409 7062 3405 7062 3407 7062 3406 7063 3408 7063 3411 7063 3401 7064 3412 7064 3419 7064 3405 7065 3410 7065 3415 7065 3405 7066 3415 7066 3407 7066 3404 7067 3403 7067 3414 7067 3407 7068 3416 7068 3409 7068 3401 7069 3419 7069 3421 7069 3408 7070 3409 7070 3420 7070 3404 7071 3414 7071 3413 7071 3407 7072 3415 7072 3416 7072 3412 7073 3413 7073 3419 7073 3401 7074 3421 7074 3418 7074 3401 7075 3418 7075 3410 7075 3403 7076 3411 7076 3417 7076 3403 7077 3417 7077 3424 7077 3403 7078 3424 7078 3414 7078 3411 7079 3408 7079 3420 7079 3411 7080 3420 7080 3417 7080 3413 7081 3402 7081 3419 7081 3415 7082 3422 7082 3416 7082 3416 7083 3423 7083 3409 7083 3415 7084 3410 7084 3422 7084 3416 7085 3422 7085 3423 7085 3409 7086 3423 7086 3420 7086 3414 7087 3424 7087 3413 7087 3413 7088 3424 7088 3402 7088 3419 7089 3402 7089 3421 7089 3410 7090 3418 7090 3422 7090 3420 7091 3423 7091 3417 7091 3449 7092 3437 7092 3446 7092 3425 7093 3438 7093 3429 7093 3426 7094 3429 7094 3433 7094 3425 7095 3435 7095 3438 7095 3426 7096 3432 7096 3431 7096 3428 7097 3436 7097 3443 7097 3428 7098 3443 7098 3427 7098 3429 7099 3438 7099 3441 7099 3426 7100 3433 7100 3432 7100 3428 7101 3431 7101 3436 7101 3427 7102 3434 7102 3425 7102 3429 7103 3441 7103 3433 7103 3425 7104 3430 7104 3435 7104 3425 7105 3434 7105 3430 7105 3431 7106 3432 7106 3440 7106 3431 7107 3437 7107 3436 7107 3433 7108 3439 7108 3432 7108 3427 7109 3443 7109 3434 7109 3431 7110 3440 7110 3437 7110 3430 7111 3434 7111 3444 7111 3436 7112 3447 7112 3443 7112 3434 7113 3443 7113 3444 7113 3433 7114 3441 7114 3439 7114 3430 7115 3444 7115 3442 7115 3430 7116 3442 7116 3435 7116 3432 7117 3439 7117 3440 7117 3438 7118 3445 7118 3441 7118 3438 7119 3435 7119 3445 7119 3440 7120 3446 7120 3437 7120 3436 7121 3437 7121 3447 7121 3435 7122 3442 7122 3451 7122 3435 7123 3451 7123 3445 7123 3437 7124 3449 7124 3447 7124 3441 7125 3448 7125 3439 7125 3439 7126 3448 7126 3440 7126 3443 7127 3450 7127 3444 7127 3443 7128 3447 7128 3450 7128 3442 7129 3444 7129 3450 7129 3445 7130 3451 7130 3452 7130 3445 7131 3452 7131 3441 7131 3440 7132 3448 7132 3446 7132 3442 7133 3450 7133 3451 7133 3441 7134 3452 7134 3448 7134 3691 7135 3688 7135 3453 7135 3453 7136 3688 7136 3454 7136 3454 7137 3779 7137 3453 7137 3779 7138 3773 7138 3453 7138 3623 7139 3619 7139 3455 7139 3455 7140 3619 7140 3456 7140 3455 7141 3456 7141 3517 7141 3623 7142 3621 7142 3619 7142 3619 7143 3457 7143 3456 7143 3456 7144 3457 7144 3510 7144 3510 7145 3457 7145 3689 7145 3510 7146 3689 7146 3694 7146 3511 7147 3688 7147 3457 7147 3458 7148 3873 7148 3511 7148 3459 7149 3878 7149 3458 7149 3458 7150 3878 7150 3873 7150 3460 7151 3878 7151 3459 7151 3461 7152 3878 7152 3460 7152 3462 7153 3463 7153 3461 7153 3461 7154 3463 7154 3878 7154 3616 7155 3607 7155 3462 7155 3462 7156 3607 7156 3600 7156 3462 7157 3600 7157 3463 7157 3614 7158 3613 7158 3616 7158 3616 7159 3613 7159 3607 7159 3600 7160 3607 7160 3606 7160 3606 7161 3607 7161 3608 7161 3600 7162 3606 7162 3602 7162 3602 7163 3606 7163 10733 7163 3602 7164 10733 7164 3603 7164 3878 7165 3463 7165 3874 7165 3874 7166 3463 7166 3599 7166 3874 7167 3599 7167 3598 7167 3874 7168 3598 7168 3875 7168 3875 7169 3598 7169 3871 7169 3871 7170 3598 7170 3464 7170 3871 7171 3464 7171 3596 7171 3871 7172 3596 7172 3865 7172 3865 7173 3596 7173 3876 7173 3876 7174 3596 7174 3771 7174 3771 7175 3596 7175 3767 7175 3767 7176 3596 7176 3465 7176 3767 7177 3465 7177 3765 7177 3765 7178 3465 7178 3466 7178 3765 7179 3466 7179 3760 7179 3760 7180 3466 7180 3763 7180 3763 7181 3466 7181 3515 7181 3763 7182 3515 7182 3759 7182 3759 7183 3515 7183 3801 7183 3759 7184 3801 7184 3799 7184 3466 7185 3465 7185 3467 7185 3467 7186 3465 7186 3595 7186 3467 7187 3595 7187 3590 7187 3590 7188 3595 7188 10774 7188 10774 7189 3595 7189 3593 7189 3590 7190 3589 7190 3467 7190 3468 7191 3801 7191 3515 7191 3469 7192 3801 7192 3468 7192 3470 7193 3805 7193 3469 7193 3469 7194 3805 7194 3801 7194 3471 7195 3805 7195 3470 7195 3476 7196 3477 7196 3471 7196 3471 7197 3477 7197 3472 7197 3471 7198 3472 7198 3805 7198 3805 7199 3472 7199 3802 7199 3802 7200 3472 7200 3576 7200 3802 7201 3576 7201 3575 7201 3802 7202 3575 7202 3473 7202 3802 7203 3473 7203 3474 7203 3802 7204 3474 7204 3803 7204 3803 7205 3474 7205 3748 7205 3475 7206 10789 7206 3476 7206 3476 7207 10789 7207 3583 7207 3476 7208 3583 7208 3477 7208 3477 7209 3583 7209 3478 7209 3478 7210 3583 7210 3579 7210 3478 7211 3579 7211 3578 7211 3479 7212 3584 7212 3475 7212 3475 7213 3584 7213 10789 7213 10789 7214 3581 7214 3583 7214 3748 7215 3474 7215 3742 7215 3742 7216 3474 7216 3482 7216 3742 7217 3482 7217 3745 7217 3745 7218 3482 7218 3741 7218 3741 7219 3482 7219 3480 7219 3741 7220 3480 7220 3738 7220 3738 7221 3480 7221 3481 7221 3738 7222 3481 7222 3732 7222 3732 7223 3481 7223 3855 7223 3482 7224 3571 7224 3480 7224 3480 7225 3571 7225 3564 7225 3564 7226 3571 7226 3567 7226 3564 7227 3567 7227 3566 7227 3568 7228 2049 7228 3571 7228 3571 7229 2049 7229 3567 7229 3563 7230 3855 7230 3481 7230 3483 7231 3851 7231 3563 7231 3563 7232 3851 7232 3855 7232 3484 7233 3851 7233 3483 7233 3485 7234 3851 7234 3484 7234 3486 7235 3493 7235 3485 7235 3485 7236 3493 7236 3851 7236 3489 7237 3557 7237 3486 7237 3486 7238 3557 7238 3487 7238 3486 7239 3487 7239 3493 7239 3488 7240 3558 7240 3489 7240 3489 7241 3558 7241 3557 7241 3557 7242 3556 7242 3552 7242 3557 7243 3552 7243 3487 7243 3487 7244 3552 7244 3491 7244 3491 7245 3552 7245 3490 7245 3491 7246 3490 7246 3492 7246 3851 7247 3493 7247 3852 7247 3852 7248 3493 7248 3547 7248 3852 7249 3547 7249 3546 7249 3852 7250 3546 7250 3854 7250 3854 7251 3546 7251 3545 7251 3854 7252 3545 7252 3543 7252 3854 7253 3543 7253 3720 7253 3854 7254 3720 7254 3842 7254 3720 7255 3543 7255 3717 7255 3717 7256 3543 7256 3495 7256 3717 7257 3495 7257 3716 7257 3716 7258 3495 7258 3494 7258 3716 7259 3494 7259 3710 7259 3710 7260 3494 7260 3714 7260 3714 7261 3494 7261 3514 7261 3714 7262 3514 7262 3709 7262 3709 7263 3514 7263 3815 7263 3494 7264 3495 7264 3496 7264 3496 7265 3495 7265 3497 7265 3496 7266 3497 7266 3498 7266 3498 7267 3497 7267 3542 7267 3542 7268 3497 7268 3499 7268 3498 7269 3500 7269 3496 7269 3539 7270 3830 7270 3514 7270 3514 7271 3830 7271 3815 7271 3501 7272 3828 7272 3539 7272 3539 7273 3828 7273 3830 7273 3537 7274 3828 7274 3501 7274 3513 7275 3828 7275 3537 7275 3506 7276 3522 7276 3513 7276 3513 7277 3522 7277 3502 7277 3513 7278 3502 7278 3828 7278 3828 7279 3502 7279 3814 7279 3814 7280 3502 7280 3520 7280 3814 7281 3520 7281 3503 7281 3814 7282 3503 7282 3504 7282 3814 7283 3504 7283 3829 7283 3829 7284 3504 7284 3505 7284 3829 7285 3505 7285 3827 7285 3827 7286 3505 7286 3697 7286 3508 7287 3531 7287 3506 7287 3506 7288 3531 7288 3528 7288 3506 7289 3528 7289 3522 7289 3522 7290 3528 7290 3523 7290 3523 7291 3528 7291 3525 7291 3523 7292 3525 7292 3524 7292 3507 7293 3509 7293 3508 7293 3508 7294 3509 7294 3531 7294 3531 7295 3529 7295 3528 7295 3697 7296 3505 7296 3696 7296 3696 7297 3505 7297 3510 7297 3696 7298 3510 7298 3694 7298 3511 7299 3873 7299 3877 7299 3511 7300 3877 7300 3454 7300 3454 7301 3877 7301 3868 7301 3868 7302 3779 7302 3454 7302 3779 7303 3868 7303 3872 7303 3779 7304 3872 7304 3776 7304 3776 7305 3872 7305 3775 7305 3775 7306 3872 7306 3768 7306 3768 7307 3872 7307 3876 7307 3768 7308 3876 7308 3771 7308 3732 7309 3855 7309 3734 7309 3734 7310 3855 7310 3853 7310 3734 7311 3853 7311 3512 7311 3512 7312 3853 7312 3729 7312 3729 7313 3853 7313 3724 7313 3724 7314 3853 7314 3725 7314 3725 7315 3853 7315 3719 7315 3719 7316 3853 7316 3720 7316 3720 7317 3853 7317 3842 7317 3709 7318 3815 7318 3706 7318 3706 7319 3815 7319 3820 7319 3706 7320 3820 7320 3705 7320 3705 7321 3820 7321 3701 7321 3701 7322 3820 7322 3826 7322 3701 7323 3826 7323 3697 7323 3697 7324 3826 7324 3827 7324 3804 7325 3756 7325 3799 7325 3799 7326 3756 7326 3759 7326 3756 7327 3804 7327 3750 7327 3750 7328 3804 7328 3753 7328 3753 7329 3804 7329 3751 7329 3751 7330 3804 7330 3748 7330 3748 7331 3804 7331 3803 7331 3457 7332 3688 7332 3689 7332 3454 7333 3688 7333 3511 7333 3624 7334 3455 7334 3516 7334 3516 7335 3455 7335 3517 7335 3516 7336 3517 7336 3625 7336 3625 7337 3517 7337 3456 7337 3625 7338 3456 7338 3518 7338 3518 7339 3456 7339 3510 7339 3518 7340 3510 7340 3519 7340 3519 7341 3510 7341 3505 7341 3519 7342 3505 7342 3627 7342 3627 7343 3505 7343 3504 7343 3627 7344 3504 7344 3626 7344 3626 7345 3504 7345 3503 7345 3626 7346 3503 7346 3628 7346 3628 7347 3503 7347 3520 7347 3628 7348 3520 7348 3687 7348 3687 7349 3520 7349 3502 7349 3687 7350 3502 7350 3521 7350 3521 7351 3502 7351 3522 7351 3521 7352 3522 7352 3632 7352 3632 7353 3522 7353 3523 7353 3632 7354 3523 7354 3630 7354 3630 7355 3523 7355 3524 7355 3630 7356 3524 7356 3631 7356 3631 7357 3524 7357 3525 7357 3631 7358 3525 7358 3526 7358 3526 7359 3525 7359 3528 7359 3530 7360 3532 7360 3531 7360 3527 7361 3533 7361 3532 7361 3532 7362 3530 7362 3527 7362 3529 7363 3531 7363 3532 7363 3533 7364 3529 7364 3532 7364 3528 7365 3533 7365 3527 7365 3529 7366 3533 7366 3528 7366 3526 7367 3528 7367 3527 7367 3530 7368 3531 7368 3534 7368 3534 7369 3531 7369 3509 7369 3534 7370 3509 7370 3634 7370 3634 7371 3509 7371 3507 7371 3634 7372 3507 7372 3633 7372 3633 7373 3507 7373 3508 7373 3633 7374 3508 7374 3535 7374 3535 7375 3508 7375 3506 7375 3535 7376 3506 7376 3629 7376 3629 7377 3506 7377 3513 7377 3629 7378 3513 7378 3536 7378 3536 7379 3513 7379 3537 7379 3536 7380 3537 7380 3538 7380 3538 7381 3537 7381 3501 7381 3538 7382 3501 7382 3540 7382 3540 7383 3501 7383 3539 7383 3540 7384 3539 7384 3635 7384 3635 7385 3539 7385 3514 7385 3635 7386 3514 7386 3636 7386 3636 7387 3514 7387 3494 7387 3636 7388 3494 7388 3640 7388 3640 7389 3494 7389 3496 7389 3640 7390 3496 7390 3641 7390 3641 7391 3496 7391 3500 7391 3641 7392 3500 7392 3639 7392 3639 7393 3500 7393 3498 7393 3639 7394 3498 7394 3642 7394 3642 7395 3498 7395 3542 7395 3642 7396 3542 7396 3541 7396 3541 7397 3542 7397 3499 7397 3541 7398 3499 7398 3638 7398 3638 7399 3499 7399 3497 7399 3638 7400 3497 7400 3637 7400 3637 7401 3497 7401 3495 7401 3637 7402 3495 7402 3686 7402 3686 7403 3495 7403 3543 7403 3686 7404 3543 7404 3544 7404 3544 7405 3543 7405 3545 7405 3544 7406 3545 7406 3643 7406 3643 7407 3545 7407 3546 7407 3643 7408 3546 7408 3644 7408 3644 7409 3546 7409 3547 7409 3644 7410 3547 7410 3548 7410 3548 7411 3547 7411 3493 7411 3548 7412 3493 7412 3647 7412 3647 7413 3493 7413 3487 7413 3647 7414 3487 7414 3650 7414 3650 7415 3487 7415 3491 7415 3650 7416 3491 7416 3549 7416 3549 7417 3491 7417 3492 7417 3549 7418 3492 7418 3649 7418 3649 7419 3492 7419 3490 7419 3649 7420 3490 7420 3550 7420 3550 7421 3490 7421 3552 7421 3555 7422 3553 7422 3550 7422 3552 7423 3555 7423 3550 7423 3557 7424 3551 7424 3554 7424 3551 7425 3553 7425 3554 7425 3553 7426 3555 7426 3554 7426 3556 7427 3555 7427 3552 7427 3555 7428 3556 7428 3554 7428 3554 7429 3556 7429 3557 7429 3551 7430 3557 7430 2535 7430 2535 7431 3557 7431 3558 7431 2535 7432 3558 7432 3559 7432 3559 7433 3558 7433 3488 7433 3559 7434 3488 7434 3648 7434 3648 7435 3488 7435 3489 7435 3648 7436 3489 7436 3645 7436 3645 7437 3489 7437 3486 7437 3645 7438 3486 7438 3560 7438 3560 7439 3486 7439 3485 7439 3560 7440 3485 7440 3646 7440 3646 7441 3485 7441 3484 7441 3646 7442 3484 7442 3561 7442 3561 7443 3484 7443 3483 7443 3561 7444 3483 7444 3562 7444 3562 7445 3483 7445 3563 7445 3562 7446 3563 7446 3652 7446 3652 7447 3563 7447 3481 7447 3652 7448 3481 7448 3653 7448 3653 7449 3481 7449 3480 7449 3653 7450 3480 7450 3655 7450 3655 7451 3480 7451 3564 7451 3655 7452 3564 7452 3656 7452 3656 7453 3564 7453 3566 7453 3656 7454 3566 7454 3565 7454 3565 7455 3566 7455 3567 7455 3565 7456 3567 7456 2656 7456 2656 7457 3567 7457 2049 7457 2656 7458 2049 7458 3569 7458 3569 7459 2049 7459 3568 7459 3569 7460 3568 7460 3570 7460 3570 7461 3568 7461 3571 7461 3570 7462 3571 7462 3654 7462 3654 7463 3571 7463 3482 7463 3654 7464 3482 7464 3572 7464 3572 7465 3482 7465 3474 7465 3572 7466 3474 7466 3573 7466 3573 7467 3474 7467 3473 7467 3573 7468 3473 7468 3657 7468 3657 7469 3473 7469 3575 7469 3657 7470 3575 7470 3574 7470 3574 7471 3575 7471 3576 7471 3574 7472 3576 7472 3577 7472 3577 7473 3576 7473 3472 7473 3577 7474 3472 7474 3658 7474 3658 7475 3472 7475 3477 7475 3658 7476 3477 7476 3660 7476 3660 7477 3477 7477 3478 7477 3660 7478 3478 7478 3659 7478 3659 7479 3478 7479 3578 7479 3659 7480 3578 7480 2476 7480 2476 7481 3578 7481 3579 7481 2476 7482 3579 7482 2638 7482 2638 7483 3579 7483 3583 7483 3583 7484 3582 7484 2638 7484 3582 7485 3663 7485 2638 7485 10789 7486 3662 7486 3663 7486 3580 7487 10789 7487 3663 7487 3581 7488 10789 7488 3580 7488 3663 7489 3582 7489 3580 7489 3581 7490 3580 7490 3583 7490 3580 7491 3582 7491 3583 7491 3662 7492 10789 7492 3664 7492 3664 7493 10789 7493 3584 7493 3664 7494 3584 7494 3665 7494 3665 7495 3584 7495 3479 7495 3665 7496 3479 7496 3585 7496 3585 7497 3479 7497 3475 7497 3585 7498 3475 7498 3661 7498 3661 7499 3475 7499 3476 7499 3661 7500 3476 7500 3586 7500 3586 7501 3476 7501 3471 7501 3586 7502 3471 7502 3666 7502 3666 7503 3471 7503 3470 7503 3666 7504 3470 7504 3667 7504 3667 7505 3470 7505 3469 7505 3667 7506 3469 7506 3587 7506 3587 7507 3469 7507 3468 7507 3587 7508 3468 7508 3668 7508 3668 7509 3468 7509 3515 7509 3668 7510 3515 7510 3669 7510 3669 7511 3515 7511 3466 7511 3669 7512 3466 7512 3588 7512 3588 7513 3466 7513 3467 7513 3588 7514 3467 7514 3671 7514 3671 7515 3467 7515 3589 7515 3671 7516 3589 7516 11177 7516 11177 7517 3589 7517 3590 7517 11177 7518 3590 7518 3591 7518 3591 7519 3590 7519 10774 7519 3591 7520 10774 7520 3592 7520 3592 7521 10774 7521 3593 7521 3592 7522 3593 7522 3594 7522 3594 7523 3593 7523 3595 7523 3594 7524 3595 7524 3670 7524 3670 7525 3595 7525 3465 7525 3670 7526 3465 7526 3672 7526 3672 7527 3465 7527 3596 7527 3672 7528 3596 7528 3597 7528 3597 7529 3596 7529 3464 7529 3597 7530 3464 7530 3673 7530 3673 7531 3464 7531 3598 7531 3673 7532 3598 7532 3674 7532 3674 7533 3598 7533 3599 7533 3674 7534 3599 7534 3675 7534 3675 7535 3599 7535 3463 7535 3675 7536 3463 7536 3679 7536 3679 7537 3463 7537 3600 7537 3679 7538 3600 7538 3601 7538 3601 7539 3600 7539 3602 7539 3601 7540 3602 7540 3604 7540 3604 7541 3602 7541 3603 7541 3604 7542 3603 7542 3683 7542 3683 7543 3603 7543 10733 7543 3683 7544 10733 7544 3610 7544 3610 7545 10733 7545 3606 7545 3609 7546 3605 7546 3607 7546 3605 7547 3610 7547 3612 7547 3607 7548 3605 7548 3611 7548 3611 7549 3606 7549 3608 7549 3606 7550 3612 7550 3610 7550 3607 7551 3611 7551 3608 7551 3605 7552 3612 7552 3611 7552 3606 7553 3611 7553 3612 7553 3609 7554 3607 7554 3681 7554 3681 7555 3607 7555 3613 7555 3681 7556 3613 7556 3682 7556 3682 7557 3613 7557 3614 7557 3682 7558 3614 7558 3680 7558 3680 7559 3614 7559 3616 7559 3680 7560 3616 7560 3615 7560 3615 7561 3616 7561 3462 7561 3615 7562 3462 7562 3676 7562 3676 7563 3462 7563 3461 7563 3676 7564 3461 7564 3677 7564 3677 7565 3461 7565 3460 7565 3677 7566 3460 7566 3617 7566 3617 7567 3460 7567 3459 7567 3617 7568 3459 7568 3678 7568 3678 7569 3459 7569 3458 7569 3678 7570 3458 7570 3684 7570 3684 7571 3458 7571 3511 7571 3684 7572 3511 7572 3685 7572 3685 7573 3511 7573 3457 7573 3685 7574 3457 7574 3618 7574 3618 7575 3457 7575 3619 7575 3618 7576 3619 7576 3620 7576 3620 7577 3619 7577 3621 7577 3620 7578 3621 7578 3622 7578 3622 7579 3621 7579 3623 7579 3622 7580 3623 7580 3624 7580 3624 7581 3623 7581 3455 7581 3620 7582 3622 7582 3618 7582 3618 7583 3622 7583 3624 7583 3618 7584 3624 7584 3625 7584 3625 7585 3624 7585 3516 7585 3625 7586 3518 7586 3618 7586 3618 7587 3518 7587 3685 7587 3685 7588 3518 7588 3695 7588 3685 7589 3695 7589 3690 7589 3519 7590 3693 7590 3518 7590 3518 7591 3693 7591 3695 7591 3627 7592 3806 7592 3519 7592 3626 7593 3806 7593 3627 7593 3628 7594 3817 7594 3626 7594 3626 7595 3817 7595 3806 7595 3687 7596 3817 7596 3628 7596 3521 7597 3629 7597 3687 7597 3687 7598 3629 7598 3816 7598 3687 7599 3816 7599 3817 7599 3632 7600 3526 7600 3521 7600 3521 7601 3526 7601 3535 7601 3521 7602 3535 7602 3629 7602 3630 7603 3631 7603 3632 7603 3632 7604 3631 7604 3526 7604 3526 7605 3527 7605 3530 7605 3526 7606 3530 7606 3535 7606 3535 7607 3530 7607 3633 7607 3633 7608 3530 7608 3534 7608 3633 7609 3534 7609 3634 7609 3816 7610 3629 7610 3536 7610 3816 7611 3536 7611 3811 7611 3811 7612 3536 7612 3538 7612 3811 7613 3538 7613 3540 7613 3811 7614 3540 7614 3813 7614 3813 7615 3540 7615 3635 7615 3813 7616 3635 7616 3809 7616 3809 7617 3635 7617 3708 7617 3708 7618 3635 7618 3712 7618 3712 7619 3635 7619 3636 7619 3712 7620 3636 7620 3711 7620 3711 7621 3636 7621 3637 7621 3711 7622 3637 7622 3715 7622 3715 7623 3637 7623 3718 7623 3718 7624 3637 7624 3686 7624 3718 7625 3686 7625 3721 7625 3721 7626 3686 7626 3833 7626 3637 7627 3636 7627 3638 7627 3638 7628 3636 7628 3640 7628 3638 7629 3640 7629 3642 7629 3642 7630 3640 7630 3639 7630 3639 7631 3640 7631 3641 7631 3642 7632 3541 7632 3638 7632 3544 7633 3833 7633 3686 7633 3643 7634 3833 7634 3544 7634 3644 7635 3837 7635 3643 7635 3643 7636 3837 7636 3833 7636 3548 7637 3835 7637 3644 7637 3644 7638 3835 7638 3837 7638 3647 7639 3645 7639 3548 7639 3548 7640 3645 7640 3560 7640 3548 7641 3560 7641 3835 7641 3835 7642 3560 7642 3646 7642 3835 7643 3646 7643 3561 7643 3835 7644 3561 7644 3562 7644 3835 7645 3562 7645 3836 7645 3836 7646 3562 7646 3652 7646 3836 7647 3652 7647 3832 7647 3832 7648 3652 7648 3731 7648 3832 7649 3731 7649 3735 7649 3650 7650 3550 7650 3647 7650 3647 7651 3550 7651 3551 7651 3647 7652 3551 7652 3645 7652 3645 7653 3551 7653 3648 7653 3648 7654 3551 7654 2535 7654 3648 7655 2535 7655 3559 7655 3549 7656 3649 7656 3650 7656 3650 7657 3649 7657 3550 7657 3550 7658 3553 7658 3551 7658 3731 7659 3652 7659 3651 7659 3651 7660 3652 7660 3653 7660 3651 7661 3653 7661 3740 7661 3740 7662 3653 7662 3743 7662 3743 7663 3653 7663 3654 7663 3743 7664 3654 7664 3744 7664 3744 7665 3654 7665 3572 7665 3744 7666 3572 7666 3747 7666 3747 7667 3572 7667 3781 7667 3653 7668 3655 7668 3654 7668 3654 7669 3655 7669 3570 7669 3570 7670 3655 7670 3565 7670 3570 7671 3565 7671 2656 7671 3655 7672 3656 7672 3565 7672 2656 7673 3569 7673 3570 7673 3573 7674 3783 7674 3572 7674 3657 7675 3783 7675 3573 7675 3574 7676 3780 7676 3657 7676 3657 7677 3780 7677 3783 7677 3577 7678 3780 7678 3574 7678 3658 7679 3586 7679 3577 7679 3577 7680 3586 7680 3780 7680 3660 7681 2638 7681 3658 7681 3658 7682 2638 7682 3661 7682 3658 7683 3661 7683 3586 7683 3659 7684 2476 7684 3660 7684 3660 7685 2476 7685 2638 7685 3661 7686 2638 7686 3662 7686 3662 7687 2638 7687 3663 7687 3661 7688 3662 7688 3585 7688 3585 7689 3662 7689 3664 7689 3585 7690 3664 7690 3665 7690 3780 7691 3586 7691 3782 7691 3782 7692 3586 7692 3666 7692 3782 7693 3666 7693 3667 7693 3782 7694 3667 7694 3587 7694 3782 7695 3587 7695 3787 7695 3787 7696 3587 7696 3668 7696 3787 7697 3668 7697 3757 7697 3787 7698 3757 7698 3749 7698 3757 7699 3668 7699 3761 7699 3761 7700 3668 7700 3669 7700 3761 7701 3669 7701 3762 7701 3762 7702 3669 7702 3670 7702 3762 7703 3670 7703 3766 7703 3766 7704 3670 7704 3764 7704 3764 7705 3670 7705 3672 7705 3764 7706 3672 7706 3770 7706 3770 7707 3672 7707 3861 7707 3670 7708 3669 7708 3594 7708 3594 7709 3669 7709 3588 7709 3594 7710 3588 7710 3591 7710 3591 7711 3588 7711 11177 7711 11177 7712 3588 7712 3671 7712 3591 7713 3592 7713 3594 7713 3597 7714 3857 7714 3672 7714 3673 7715 3857 7715 3597 7715 3674 7716 3858 7716 3673 7716 3673 7717 3858 7717 3857 7717 3675 7718 3858 7718 3674 7718 3679 7719 3615 7719 3675 7719 3675 7720 3615 7720 3676 7720 3675 7721 3676 7721 3862 7721 3862 7722 3676 7722 3856 7722 3856 7723 3676 7723 3677 7723 3856 7724 3677 7724 3617 7724 3856 7725 3617 7725 3678 7725 3856 7726 3678 7726 3867 7726 3867 7727 3678 7727 3684 7727 3867 7728 3684 7728 3864 7728 3864 7729 3684 7729 3453 7729 3864 7730 3453 7730 3859 7730 3601 7731 3610 7731 3679 7731 3679 7732 3610 7732 3609 7732 3679 7733 3609 7733 3615 7733 3615 7734 3609 7734 3680 7734 3680 7735 3609 7735 3681 7735 3680 7736 3681 7736 3682 7736 3604 7737 3683 7737 3601 7737 3601 7738 3683 7738 3610 7738 3610 7739 3605 7739 3609 7739 3453 7740 3684 7740 3691 7740 3691 7741 3684 7741 3685 7741 3691 7742 3685 7742 3690 7742 3862 7743 3858 7743 3675 7743 3857 7744 3861 7744 3672 7744 3770 7745 3861 7745 3772 7745 3772 7746 3861 7746 3777 7746 3777 7747 3861 7747 3869 7747 3777 7748 3869 7748 3773 7748 3773 7749 3869 7749 3859 7749 3773 7750 3859 7750 3453 7750 3831 7751 3721 7751 3833 7751 3721 7752 3831 7752 3723 7752 3723 7753 3831 7753 3727 7753 3727 7754 3831 7754 3832 7754 3727 7755 3832 7755 3728 7755 3728 7756 3832 7756 3735 7756 3519 7757 3806 7757 3807 7757 3519 7758 3807 7758 3699 7758 3808 7759 3699 7759 3807 7759 3699 7760 3808 7760 3698 7760 3698 7761 3808 7761 3704 7761 3704 7762 3808 7762 3707 7762 3707 7763 3808 7763 3809 7763 3707 7764 3809 7764 3708 7764 3572 7765 3783 7765 3781 7765 3747 7766 3781 7766 3746 7766 3746 7767 3781 7767 3784 7767 3746 7768 3784 7768 3752 7768 3752 7769 3784 7769 3749 7769 3749 7770 3784 7770 3787 7770 3699 7771 3693 7771 3519 7771 3695 7772 3694 7772 3690 7772 3690 7773 3694 7773 3689 7773 3691 7774 3692 7774 3688 7774 3691 7775 3690 7775 3692 7775 3692 7776 3689 7776 3688 7776 3689 7777 3692 7777 3690 7777 3696 7778 3694 7778 3693 7778 3694 7779 3695 7779 3693 7779 3699 7780 3697 7780 3693 7780 3693 7781 3697 7781 3696 7781 3699 7782 3700 7782 3697 7782 3700 7783 3701 7783 3697 7783 3699 7784 3698 7784 3700 7784 3701 7785 3700 7785 3698 7785 3698 7786 3702 7786 3701 7786 3703 7787 3704 7787 3707 7787 3702 7788 3703 7788 3705 7788 3702 7789 3698 7789 3704 7789 3702 7790 3704 7790 3703 7790 3701 7791 3702 7791 3705 7791 3706 7792 3703 7792 3707 7792 3706 7793 3705 7793 3703 7793 3707 7794 3709 7794 3706 7794 3708 7795 3709 7795 3707 7795 3712 7796 3714 7796 3708 7796 3708 7797 3714 7797 3709 7797 3712 7798 3713 7798 3714 7798 3710 7799 3713 7799 3711 7799 3712 7800 3711 7800 3713 7800 3714 7801 3713 7801 3710 7801 3715 7802 3716 7802 3711 7802 3711 7803 3716 7803 3710 7803 3717 7804 3716 7804 3718 7804 3716 7805 3715 7805 3718 7805 3721 7806 3720 7806 3718 7806 3718 7807 3720 7807 3717 7807 3721 7808 3722 7808 3720 7808 3721 7809 3723 7809 3722 7809 3720 7810 3722 7810 3719 7810 3719 7811 3722 7811 3723 7811 3723 7812 3725 7812 3719 7812 3723 7813 3727 7813 3726 7813 3729 7814 3728 7814 3512 7814 3725 7815 3723 7815 3724 7815 3724 7816 3723 7816 3726 7816 3726 7817 3728 7817 3729 7817 3726 7818 3729 7818 3724 7818 3727 7819 3728 7819 3726 7819 3735 7820 3734 7820 3728 7820 3728 7821 3734 7821 3512 7821 3735 7822 3736 7822 3734 7822 3734 7823 3736 7823 3737 7823 3735 7824 3731 7824 3737 7824 3737 7825 3732 7825 3730 7825 3730 7826 3734 7826 3733 7826 3736 7827 3735 7827 3737 7827 3734 7828 3737 7828 3733 7828 3732 7829 3734 7829 3730 7829 3737 7830 3731 7830 3732 7830 3651 7831 3738 7831 3731 7831 3731 7832 3738 7832 3732 7832 3651 7833 3739 7833 3738 7833 3651 7834 3740 7834 3739 7834 3738 7835 3739 7835 3741 7835 3741 7836 3739 7836 3740 7836 3743 7837 3745 7837 3740 7837 3740 7838 3745 7838 3741 7838 3742 7839 3745 7839 3744 7839 3744 7840 3745 7840 3743 7840 3747 7841 3748 7841 3744 7841 3744 7842 3748 7842 3742 7842 3751 7843 3748 7843 3746 7843 3748 7844 3747 7844 3746 7844 3750 7845 3753 7845 3755 7845 3746 7846 3754 7846 3751 7846 3754 7847 3752 7847 3755 7847 3754 7848 3755 7848 3753 7848 3754 7849 3746 7849 3752 7849 3751 7850 3754 7850 3753 7850 3752 7851 3750 7851 3755 7851 3750 7852 3752 7852 3749 7852 3749 7853 3756 7853 3750 7853 3749 7854 3758 7854 3756 7854 3758 7855 3759 7855 3756 7855 3759 7856 3758 7856 3757 7856 3757 7857 3758 7857 3749 7857 3761 7858 3763 7858 3757 7858 3757 7859 3763 7859 3759 7859 3760 7860 3763 7860 3762 7860 3763 7861 3761 7861 3762 7861 3766 7862 3765 7862 3762 7862 3762 7863 3765 7863 3760 7863 3766 7864 3767 7864 3765 7864 3767 7865 3766 7865 3764 7865 3770 7866 3771 7866 3764 7866 3764 7867 3771 7867 3767 7867 3770 7868 3769 7868 3771 7868 3770 7869 3772 7869 3769 7869 3771 7870 3769 7870 3768 7870 3768 7871 3769 7871 3772 7871 3772 7872 3775 7872 3768 7872 3778 7873 3777 7873 3773 7873 3778 7874 3773 7874 3774 7874 3776 7875 3774 7875 3779 7875 3779 7876 3774 7876 3773 7876 3772 7877 3777 7877 3775 7877 3777 7878 3778 7878 3775 7878 3776 7879 3778 7879 3774 7879 3776 7880 3775 7880 3778 7880 3802 7881 3796 7881 3805 7881 3784 7882 3798 7882 3787 7882 3781 7883 3783 7883 3795 7883 3782 7884 3785 7884 3780 7884 3781 7885 3795 7885 3786 7885 3782 7886 3787 7886 3791 7886 3782 7887 3791 7887 3785 7887 3783 7888 3780 7888 3788 7888 3780 7889 3794 7889 3788 7889 3781 7890 3786 7890 3784 7890 3784 7891 3786 7891 3789 7891 3780 7892 3785 7892 3800 7892 3780 7893 3800 7893 3794 7893 3785 7894 3791 7894 3790 7894 3785 7895 3790 7895 3800 7895 3784 7896 3789 7896 3798 7896 3787 7897 3798 7897 3792 7897 3787 7898 3792 7898 3791 7898 3786 7899 3795 7899 3793 7899 3783 7900 3788 7900 3795 7900 3791 7901 3792 7901 3801 7901 3798 7902 3799 7902 3792 7902 3786 7903 3793 7903 3789 7903 3800 7904 3790 7904 3797 7904 3789 7905 3793 7905 3804 7905 3789 7906 3804 7906 3798 7906 3794 7907 3796 7907 3788 7907 3790 7908 3791 7908 3797 7908 3792 7909 3799 7909 3801 7909 3800 7910 3797 7910 3805 7910 3800 7911 3805 7911 3794 7911 3795 7912 3788 7912 3802 7912 3795 7913 3802 7913 3793 7913 3798 7914 3804 7914 3799 7914 3791 7915 3801 7915 3797 7915 3794 7916 3805 7916 3796 7916 3788 7917 3796 7917 3802 7917 3793 7918 3802 7918 3803 7918 3793 7919 3803 7919 3804 7919 3797 7920 3801 7920 3805 7920 3806 7921 3817 7921 3814 7921 3808 7922 3812 7922 3809 7922 3806 7923 3810 7923 3807 7923 3806 7924 3814 7924 3810 7924 3807 7925 3819 7925 3808 7925 3809 7926 3812 7926 3815 7926 3810 7927 3818 7927 3807 7927 3816 7928 3825 7928 3817 7928 3817 7929 3824 7929 3814 7929 3813 7930 3823 7930 3811 7930 3810 7931 3814 7931 3818 7931 3811 7932 3823 7932 3821 7932 3816 7933 3811 7933 3822 7933 3816 7934 3822 7934 3825 7934 3808 7935 3819 7935 3812 7935 3817 7936 3825 7936 3824 7936 3809 7937 3815 7937 3813 7937 3807 7938 3818 7938 3827 7938 3812 7939 3819 7939 3826 7939 3811 7940 3821 7940 3822 7940 3807 7941 3827 7941 3819 7941 3818 7942 3829 7942 3827 7942 3812 7943 3820 7943 3815 7943 3818 7944 3814 7944 3829 7944 3819 7945 3827 7945 3826 7945 3812 7946 3826 7946 3820 7946 3813 7947 3815 7947 3823 7947 3822 7948 3821 7948 3828 7948 3822 7949 3828 7949 3825 7949 3821 7950 3823 7950 3830 7950 3821 7951 3830 7951 3828 7951 3825 7952 3828 7952 3824 7952 3824 7953 3828 7953 3814 7953 3823 7954 3815 7954 3830 7954 3851 7955 3848 7955 3855 7955 3831 7956 3833 7956 3840 7956 3831 7957 3838 7957 3832 7957 3832 7958 3834 7958 3836 7958 3835 7959 3836 7959 3839 7959 3833 7960 3837 7960 3847 7960 3833 7961 3845 7961 3840 7961 3831 7962 3840 7962 3841 7962 3831 7963 3841 7963 3838 7963 3835 7964 3850 7964 3837 7964 3836 7965 3834 7965 3839 7965 3832 7966 3838 7966 3834 7966 3833 7967 3847 7967 3845 7967 3839 7968 3844 7968 3835 7968 3837 7969 3846 7969 3847 7969 3839 7970 3848 7970 3844 7970 3840 7971 3842 7971 3841 7971 3837 7972 3850 7972 3846 7972 3839 7973 3834 7973 3843 7973 3839 7974 3843 7974 3848 7974 3840 7975 3845 7975 3842 7975 3835 7976 3844 7976 3850 7976 3834 7977 3838 7977 3843 7977 3838 7978 3849 7978 3843 7978 3841 7979 3853 7979 3838 7979 3844 7980 3848 7980 3851 7980 3846 7981 3850 7981 3851 7981 3847 7982 3846 7982 3852 7982 3847 7983 3852 7983 3854 7983 3847 7984 3854 7984 3845 7984 3845 7985 3854 7985 3842 7985 3846 7986 3851 7986 3852 7986 3842 7987 3853 7987 3841 7987 3843 7988 3849 7988 3855 7988 3838 7989 3853 7989 3849 7989 3849 7990 3853 7990 3855 7990 3848 7991 3843 7991 3855 7991 3850 7992 3844 7992 3851 7992 3858 7993 3862 7993 3863 7993 3858 7994 3863 7994 3857 7994 3861 7995 3860 7995 3869 7995 3861 7996 3865 7996 3860 7996 3862 7997 3879 7997 3863 7997 3859 7998 3877 7998 3864 7998 3867 7999 3870 7999 3856 7999 3861 8000 3857 8000 3865 8000 3863 8001 3875 8001 3857 8001 3859 8002 3869 8002 3868 8002 3857 8003 3875 8003 3871 8003 3860 8004 3866 8004 3869 8004 3860 8005 3865 8005 3866 8005 3856 8006 3870 8006 3862 8006 3859 8007 3868 8007 3877 8007 3857 8008 3871 8008 3865 8008 3869 8009 3872 8009 3868 8009 3862 8010 3870 8010 3879 8010 3863 8011 3879 8011 3874 8011 3870 8012 3878 8012 3879 8012 3864 8013 3873 8013 3867 8013 3867 8014 3873 8014 3870 8014 3869 8015 3866 8015 3872 8015 3866 8016 3865 8016 3876 8016 3870 8017 3873 8017 3878 8017 3866 8018 3876 8018 3872 8018 3864 8019 3877 8019 3873 8019 3879 8020 3878 8020 3874 8020 3863 8021 3874 8021 3875 8021 3881 8022 3882 8022 3883 8022 3880 8023 3882 8023 3881 8023 3898 8024 3884 8024 3880 8024 3883 8025 3884 8025 3898 8025 3884 8026 3882 8026 3880 8026 3882 8027 3884 8027 3883 8027 3887 8028 3905 8028 3888 8028 3886 8029 3885 8029 3887 8029 3887 8030 3885 8030 3905 8030 3895 8031 3885 8031 3886 8031 3888 8032 3885 8032 3895 8032 3905 8033 3885 8033 3888 8033 3888 8034 3895 8034 3890 8034 3890 8035 3895 8035 3896 8035 3890 8036 3901 8036 3889 8036 3896 8037 3903 8037 3890 8037 3890 8038 3903 8038 3901 8038 3891 8039 3903 8039 3896 8039 3889 8040 3903 8040 3891 8040 3901 8041 3903 8041 3889 8041 3889 8042 3891 8042 3892 8042 3892 8043 3891 8043 3893 8043 3894 8044 3892 8044 3897 8044 3897 8045 3892 8045 3893 8045 3894 8046 3904 8046 3881 8046 3897 8047 3904 8047 3894 8047 3880 8048 3902 8048 3897 8048 3881 8049 3904 8049 3880 8049 3880 8050 3904 8050 3902 8050 3897 8051 3902 8051 3904 8051 3900 8052 3898 8052 3886 8052 3886 8053 3898 8053 3895 8053 3895 8054 3898 8054 3880 8054 3895 8055 3880 8055 3896 8055 3896 8056 3880 8056 3897 8056 3896 8057 3897 8057 3891 8057 3891 8058 3897 8058 3893 8058 3883 8059 3898 8059 3899 8059 3899 8060 3898 8060 3900 8060 3899 8061 3900 8061 3887 8061 3887 8062 3900 8062 3886 8062 3899 8063 3887 8063 3883 8063 3883 8064 3887 8064 3888 8064 3883 8065 3888 8065 3881 8065 3881 8066 3888 8066 3890 8066 3881 8067 3890 8067 3894 8067 3894 8068 3890 8068 3889 8068 3894 8069 3889 8069 3892 8069 3906 8070 3931 8070 3908 8070 3922 8071 3931 8071 3906 8071 3907 8072 3909 8072 3922 8072 3908 8073 3909 8073 3907 8073 3909 8074 3931 8074 3922 8074 3931 8075 3909 8075 3908 8075 3912 8076 3930 8076 3913 8076 3911 8077 3910 8077 3912 8077 3912 8078 3910 8078 3930 8078 3914 8079 3910 8079 3911 8079 3913 8080 3910 8080 3914 8080 3930 8081 3910 8081 3913 8081 3913 8082 3914 8082 3925 8082 3925 8083 3914 8083 3916 8083 3925 8084 3927 8084 3917 8084 3916 8085 3929 8085 3925 8085 3925 8086 3929 8086 3927 8086 3915 8087 3929 8087 3916 8087 3917 8088 3929 8088 3915 8088 3927 8089 3929 8089 3917 8089 3917 8090 3915 8090 3918 8090 3918 8091 3915 8091 3921 8091 3919 8092 3918 8092 3920 8092 3920 8093 3918 8093 3921 8093 3919 8094 3926 8094 3906 8094 3920 8095 3926 8095 3919 8095 3922 8096 3928 8096 3920 8096 3906 8097 3926 8097 3922 8097 3922 8098 3926 8098 3928 8098 3920 8099 3928 8099 3926 8099 3923 8100 3907 8100 3911 8100 3911 8101 3907 8101 3914 8101 3914 8102 3907 8102 3922 8102 3914 8103 3922 8103 3916 8103 3916 8104 3922 8104 3920 8104 3916 8105 3920 8105 3915 8105 3915 8106 3920 8106 3921 8106 3908 8107 3907 8107 3924 8107 3924 8108 3907 8108 3923 8108 3924 8109 3923 8109 3912 8109 3912 8110 3923 8110 3911 8110 3924 8111 3912 8111 3908 8111 3908 8112 3912 8112 3913 8112 3908 8113 3913 8113 3906 8113 3906 8114 3913 8114 3925 8114 3906 8115 3925 8115 3919 8115 3919 8116 3925 8116 3917 8116 3919 8117 3917 8117 3918 8117 4213 8118 4209 8118 3933 8118 3933 8119 4209 8119 3934 8119 3936 8120 3937 8120 3932 8120 3932 8121 3937 8121 3934 8121 3937 8122 3933 8122 3934 8122 4558 8123 3933 8123 3936 8123 3933 8124 3935 8124 3936 8124 3937 8125 3935 8125 3933 8125 3937 8126 3936 8126 3935 8126 4145 8127 4142 8127 3990 8127 3990 8128 4142 8128 3938 8128 3990 8129 3938 8129 3939 8129 4145 8130 3940 8130 4142 8130 4142 8131 3941 8131 3938 8131 3938 8132 3941 8132 3987 8132 3987 8133 3941 8133 4208 8133 3987 8134 4208 8134 4217 8134 4141 8135 4209 8135 3941 8135 4140 8136 4608 8136 4141 8136 3942 8137 4610 8137 4140 8137 4140 8138 4610 8138 4608 8138 3943 8139 4611 8139 3942 8139 3942 8140 4611 8140 4610 8140 4138 8141 4611 8141 3943 8141 3944 8142 3946 8142 4138 8142 4138 8143 3946 8143 4611 8143 4137 8144 4126 8144 3944 8144 3944 8145 4126 8145 4114 8145 3944 8146 4114 8146 3946 8146 4136 8147 4135 8147 4137 8147 4137 8148 4135 8148 4126 8148 4114 8149 4126 8149 4132 8149 4132 8150 4126 8150 4128 8150 4114 8151 4132 8151 3945 8151 3945 8152 4132 8152 4117 8152 3945 8153 4117 8153 4116 8153 4611 8154 3946 8154 3947 8154 4611 8155 3947 8155 3948 8155 4611 8156 3948 8156 4111 8156 4611 8157 4111 8157 3949 8157 4611 8158 3949 8158 4612 8158 4612 8159 3949 8159 4613 8159 4613 8160 3949 8160 4359 8160 4359 8161 3949 8161 4350 8161 4350 8162 3949 8162 4110 8162 4350 8163 4110 8163 4354 8163 4354 8164 4110 8164 3950 8164 4354 8165 3950 8165 4349 8165 4349 8166 3950 8166 4344 8166 4344 8167 3950 8167 4104 8167 4344 8168 4104 8168 4341 8168 4341 8169 4104 8169 4436 8169 3950 8170 4110 8170 3951 8170 3951 8171 4110 8171 3952 8171 3951 8172 3952 8172 4106 8172 4106 8173 3952 8173 4107 8173 4107 8174 3952 8174 4109 8174 4106 8175 4105 8175 3951 8175 3953 8176 4439 8176 4104 8176 4102 8177 4439 8177 3953 8177 4101 8178 4437 8178 4102 8178 4102 8179 4437 8179 4439 8179 4099 8180 4437 8180 4101 8180 3954 8181 4079 8181 4099 8181 4099 8182 4079 8182 4078 8182 4099 8183 4078 8183 4437 8183 4437 8184 4078 8184 4435 8184 4435 8185 4078 8185 4077 8185 4435 8186 4077 8186 4438 8186 4438 8187 4077 8187 3955 8187 4438 8188 3955 8188 3956 8188 4438 8189 3956 8189 4384 8189 4384 8190 3956 8190 3960 8190 4384 8191 3960 8191 4434 8191 4434 8192 3960 8192 4316 8192 4097 8193 4089 8193 3954 8193 3954 8194 4089 8194 4083 8194 3954 8195 4083 8195 4079 8195 4079 8196 4083 8196 3957 8196 3957 8197 4083 8197 4081 8197 3957 8198 4081 8198 3958 8198 4096 8199 3959 8199 4097 8199 4097 8200 3959 8200 4089 8200 4089 8201 4084 8201 4083 8201 4316 8202 3960 8202 4308 8202 4308 8203 3960 8203 3961 8203 4308 8204 3961 8204 4306 8204 4306 8205 3961 8205 4305 8205 4305 8206 3961 8206 4298 8206 4298 8207 3961 8207 3963 8207 4298 8208 3963 8208 4302 8208 4302 8209 3963 8209 4297 8209 4297 8210 3963 8210 3962 8210 4297 8211 3962 8211 4294 8211 4294 8212 3962 8212 4548 8212 4294 8213 4548 8213 4547 8213 3961 8214 4074 8214 3963 8214 3963 8215 4074 8215 4066 8215 4066 8216 4074 8216 4071 8216 4066 8217 4071 8217 4069 8217 4072 8218 3964 8218 4074 8218 4074 8219 3964 8219 4071 8219 3966 8220 4548 8220 3962 8220 3965 8221 4548 8221 3966 8221 3967 8222 4553 8222 3965 8222 3965 8223 4553 8223 4548 8223 3968 8224 4554 8224 3967 8224 3967 8225 4554 8225 4553 8225 3969 8226 4033 8226 3968 8226 3968 8227 4033 8227 4554 8227 4062 8228 4048 8228 3969 8228 3969 8229 4048 8229 3970 8229 3969 8230 3970 8230 4033 8230 4060 8231 4058 8231 4062 8231 4062 8232 4058 8232 4048 8232 4048 8233 4042 8233 4041 8233 4048 8234 4041 8234 3970 8234 3970 8235 4041 8235 4036 8235 4036 8236 4041 8236 4039 8236 4036 8237 4039 8237 4038 8237 4554 8238 4033 8238 3971 8238 4554 8239 3971 8239 4032 8239 4554 8240 4032 8240 3972 8240 4554 8241 3972 8241 4555 8241 4555 8242 3972 8242 3973 8242 4555 8243 3973 8243 4264 8243 4555 8244 4264 8244 4551 8244 4264 8245 3973 8245 4260 8245 4260 8246 3973 8246 3974 8246 4260 8247 3974 8247 4258 8247 4258 8248 3974 8248 3975 8248 4258 8249 3975 8249 4255 8249 4255 8250 3975 8250 4252 8250 4252 8251 3975 8251 3976 8251 4252 8252 3976 8252 4243 8252 4243 8253 3976 8253 4489 8253 3975 8254 3974 8254 3977 8254 3977 8255 3974 8255 4031 8255 3977 8256 4031 8256 3978 8256 3978 8257 4031 8257 4027 8257 4027 8258 4031 8258 4029 8258 3978 8259 3979 8259 3977 8259 3980 8260 4496 8260 3976 8260 4023 8261 4496 8261 3980 8261 3981 8262 4491 8262 4023 8262 4023 8263 4491 8263 4496 8263 3989 8264 4491 8264 3981 8264 3982 8265 3997 8265 3989 8265 3989 8266 3997 8266 3983 8266 3989 8267 3983 8267 4491 8267 4491 8268 3983 8268 4492 8268 4492 8269 3983 8269 3996 8269 4492 8270 3996 8270 3984 8270 4492 8271 3984 8271 4493 8271 4493 8272 3984 8272 3995 8272 4493 8273 3995 8273 3994 8273 4493 8274 3994 8274 4226 8274 4493 8275 4226 8275 4494 8275 4494 8276 4226 8276 4225 8276 3985 8277 4010 8277 3982 8277 3982 8278 4010 8278 4007 8278 3982 8279 4007 8279 3997 8279 3997 8280 4007 8280 3999 8280 3999 8281 4007 8281 3986 8281 3999 8282 3986 8282 4000 8282 4019 8283 4018 8283 3985 8283 3985 8284 4018 8284 4010 8284 4010 8285 4012 8285 4007 8285 4226 8286 3994 8286 4215 8286 4215 8287 3994 8287 3987 8287 4215 8288 3987 8288 4217 8288 4141 8289 4608 8289 4607 8289 4141 8290 4607 8290 3934 8290 4606 8291 3934 8291 4607 8291 3934 8292 4606 8292 3932 8292 3932 8293 4606 8293 4368 8293 4368 8294 4606 8294 4369 8294 4369 8295 4606 8295 4370 8295 4370 8296 4606 8296 4361 8296 4361 8297 4606 8297 4360 8297 4360 8298 4606 8298 4613 8298 4360 8299 4613 8299 4359 8299 4294 8300 4547 8300 4295 8300 4295 8301 4547 8301 4291 8301 4291 8302 4547 8302 4290 8302 4290 8303 4547 8303 4556 8303 4290 8304 4556 8304 4277 8304 4277 8305 4556 8305 4276 8305 4276 8306 4556 8306 4267 8306 4267 8307 4556 8307 4551 8307 4267 8308 4551 8308 3988 8308 3988 8309 4551 8309 4264 8309 3976 8310 4496 8310 4489 8310 4243 8311 4489 8311 4247 8311 4247 8312 4489 8312 4495 8312 4247 8313 4495 8313 4232 8313 4232 8314 4495 8314 4237 8314 4237 8315 4495 8315 4494 8315 4237 8316 4494 8316 4236 8316 4236 8317 4494 8317 4224 8317 4224 8318 4494 8318 4225 8318 4341 8319 4436 8319 4343 8319 4343 8320 4436 8320 4325 8320 4325 8321 4436 8321 4434 8321 4325 8322 4434 8322 4337 8322 4337 8323 4434 8323 4330 8323 4330 8324 4434 8324 4310 8324 4439 8325 4436 8325 4104 8325 3941 8326 4209 8326 4208 8326 3934 8327 4209 8327 4141 8327 4147 8328 3990 8328 4148 8328 4148 8329 3990 8329 3939 8329 4148 8330 3939 8330 3991 8330 3991 8331 3939 8331 3938 8331 3991 8332 3938 8332 3992 8332 3992 8333 3938 8333 3987 8333 3992 8334 3987 8334 4151 8334 4151 8335 3987 8335 3994 8335 4151 8336 3994 8336 3993 8336 3993 8337 3994 8337 3995 8337 3993 8338 3995 8338 4152 8338 4152 8339 3995 8339 3984 8339 4152 8340 3984 8340 4153 8340 4153 8341 3984 8341 3996 8341 4153 8342 3996 8342 4207 8342 4207 8343 3996 8343 3983 8343 4207 8344 3983 8344 4155 8344 4155 8345 3983 8345 3997 8345 4155 8346 3997 8346 3998 8346 3998 8347 3997 8347 3999 8347 3998 8348 3999 8348 4156 8348 4156 8349 3999 8349 4000 8349 4156 8350 4000 8350 4001 8350 4001 8351 4000 8351 3986 8351 4001 8352 3986 8352 4005 8352 4005 8353 3986 8353 4007 8353 4157 8354 4011 8354 4003 8354 4005 8355 4007 8355 4004 8355 4006 8356 4007 8356 4012 8356 4008 8357 4013 8357 4010 8357 4008 8358 4010 8358 4003 8358 4011 8359 4157 8359 4002 8359 4002 8360 4157 8360 4005 8360 4002 8361 4016 8361 4011 8361 4003 8362 4011 8362 4014 8362 4016 8363 4014 8363 4011 8363 4014 8364 4016 8364 4015 8364 4004 8365 4015 8365 4016 8365 4015 8366 4009 8366 4008 8366 4013 8367 4009 8367 4012 8367 4008 8368 4003 8368 4014 8368 4010 8369 4013 8369 4012 8369 4015 8370 4008 8370 4014 8370 4009 8371 4013 8371 4008 8371 4004 8372 4016 8372 4005 8372 4009 8373 4015 8373 4004 8373 4009 8374 4006 8374 4012 8374 4016 8375 4002 8375 4005 8375 4009 8376 4004 8376 4006 8376 4006 8377 4004 8377 4007 8377 4003 8378 4010 8378 4017 8378 4017 8379 4010 8379 4018 8379 4017 8380 4018 8380 4158 8380 4158 8381 4018 8381 4019 8381 4158 8382 4019 8382 4020 8382 4020 8383 4019 8383 3985 8383 4020 8384 3985 8384 4021 8384 4021 8385 3985 8385 3982 8385 4021 8386 3982 8386 4154 8386 4154 8387 3982 8387 3989 8387 4154 8388 3989 8388 4022 8388 4022 8389 3989 8389 3981 8389 4022 8390 3981 8390 4159 8390 4159 8391 3981 8391 4023 8391 4159 8392 4023 8392 4024 8392 4024 8393 4023 8393 3980 8393 4024 8394 3980 8394 4160 8394 4160 8395 3980 8395 3976 8395 4160 8396 3976 8396 4162 8396 4162 8397 3976 8397 3975 8397 4162 8398 3975 8398 4025 8398 4025 8399 3975 8399 3977 8399 4025 8400 3977 8400 4026 8400 4026 8401 3977 8401 3979 8401 4026 8402 3979 8402 5847 8402 5847 8403 3979 8403 3978 8403 5847 8404 3978 8404 4163 8404 4163 8405 3978 8405 4027 8405 4163 8406 4027 8406 4028 8406 4028 8407 4027 8407 4029 8407 4028 8408 4029 8408 4030 8408 4030 8409 4029 8409 4031 8409 4030 8410 4031 8410 4161 8410 4161 8411 4031 8411 3974 8411 4161 8412 3974 8412 4206 8412 4206 8413 3974 8413 3973 8413 4206 8414 3973 8414 4164 8414 4164 8415 3973 8415 3972 8415 4164 8416 3972 8416 4165 8416 4165 8417 3972 8417 4032 8417 4165 8418 4032 8418 4166 8418 4166 8419 4032 8419 3971 8419 4166 8420 3971 8420 4034 8420 4034 8421 3971 8421 4033 8421 4034 8422 4033 8422 4035 8422 4035 8423 4033 8423 3970 8423 4035 8424 3970 8424 4170 8424 4170 8425 3970 8425 4036 8425 4170 8426 4036 8426 4037 8426 4037 8427 4036 8427 4038 8427 4037 8428 4038 8428 4173 8428 4173 8429 4038 8429 4039 8429 4173 8430 4039 8430 4045 8430 4045 8431 4039 8431 4041 8431 4043 8432 4055 8432 4054 8432 4044 8433 4043 8433 4051 8433 4044 8434 4051 8434 4052 8434 4040 8435 4045 8435 4041 8435 4048 8436 4052 8436 4050 8436 4049 8437 4041 8437 4056 8437 4048 8438 4050 8438 4053 8438 4057 8439 4042 8439 4053 8439 4057 8440 4041 8440 4042 8440 4052 8441 4048 8441 4047 8441 4047 8442 4048 8442 4044 8442 4047 8443 4044 8443 4052 8443 4043 8444 4054 8444 4051 8444 4040 8445 4055 8445 4045 8445 4040 8446 4054 8446 4055 8446 4054 8447 4046 8447 4051 8447 4051 8448 4046 8448 4052 8448 4046 8449 4049 8449 4052 8449 4049 8450 4046 8450 4040 8450 4049 8451 4040 8451 4041 8451 4052 8452 4049 8452 4050 8452 4049 8453 4057 8453 4050 8453 4057 8454 4049 8454 4056 8454 4050 8455 4057 8455 4053 8455 4057 8456 4056 8456 4041 8456 4048 8457 4053 8457 4042 8457 4054 8458 4040 8458 4046 8458 4044 8459 4048 8459 4172 8459 4172 8460 4048 8460 4058 8460 4172 8461 4058 8461 4059 8461 4059 8462 4058 8462 4060 8462 4059 8463 4060 8463 4061 8463 4061 8464 4060 8464 4062 8464 4061 8465 4062 8465 4171 8465 4171 8466 4062 8466 3969 8466 4171 8467 3969 8467 4063 8467 4063 8468 3969 8468 3968 8468 4063 8469 3968 8469 4167 8469 4167 8470 3968 8470 3967 8470 4167 8471 3967 8471 4064 8471 4064 8472 3967 8472 3965 8472 4064 8473 3965 8473 4168 8473 4168 8474 3965 8474 3966 8474 4168 8475 3966 8475 4169 8475 4169 8476 3966 8476 3962 8476 4169 8477 3962 8477 4065 8477 4065 8478 3962 8478 3963 8478 4065 8479 3963 8479 4067 8479 4067 8480 3963 8480 4066 8480 4067 8481 4066 8481 4068 8481 4068 8482 4066 8482 4069 8482 4068 8483 4069 8483 4174 8483 4174 8484 4069 8484 4071 8484 4174 8485 4071 8485 4070 8485 4070 8486 4071 8486 3964 8486 4070 8487 3964 8487 4073 8487 4073 8488 3964 8488 4072 8488 4073 8489 4072 8489 4175 8489 4175 8490 4072 8490 4074 8490 4175 8491 4074 8491 4075 8491 4075 8492 4074 8492 3961 8492 4075 8493 3961 8493 4176 8493 4176 8494 3961 8494 3960 8494 4176 8495 3960 8495 4177 8495 4177 8496 3960 8496 3956 8496 4177 8497 3956 8497 4076 8497 4076 8498 3956 8498 3955 8498 4076 8499 3955 8499 4178 8499 4178 8500 3955 8500 4077 8500 4178 8501 4077 8501 4179 8501 4179 8502 4077 8502 4078 8502 4179 8503 4078 8503 4181 8503 4181 8504 4078 8504 4079 8504 4181 8505 4079 8505 4180 8505 4180 8506 4079 8506 3957 8506 4180 8507 3957 8507 4080 8507 4080 8508 3957 8508 3958 8508 4080 8509 3958 8509 6252 8509 6252 8510 3958 8510 4081 8510 6252 8511 4081 8511 6250 8511 6250 8512 4081 8512 4083 8512 4090 8513 4082 8513 4085 8513 4092 8514 6250 8514 4083 8514 4089 8515 4085 8515 4088 8515 4091 8516 4083 8516 4084 8516 4085 8517 4089 8517 4090 8517 4086 8518 4093 8518 4087 8518 4090 8519 4086 8519 4082 8519 4082 8520 4087 8520 4085 8520 4092 8521 4087 8521 6250 8521 4087 8522 4088 8522 4085 8522 4088 8523 4092 8523 4091 8523 4088 8524 4084 8524 4089 8524 4086 8525 4090 8525 4093 8525 4082 8526 4086 8526 4087 8526 4087 8527 4092 8527 4088 8527 4088 8528 4091 8528 4084 8528 4087 8529 4093 8529 6250 8529 4091 8530 4092 8530 4083 8530 4090 8531 4089 8531 4094 8531 4094 8532 4089 8532 3959 8532 4094 8533 3959 8533 4095 8533 4095 8534 3959 8534 4096 8534 4095 8535 4096 8535 4182 8535 4182 8536 4096 8536 4097 8536 4182 8537 4097 8537 4098 8537 4098 8538 4097 8538 3954 8538 4098 8539 3954 8539 4183 8539 4183 8540 3954 8540 4099 8540 4183 8541 4099 8541 4184 8541 4184 8542 4099 8542 4101 8542 4184 8543 4101 8543 4100 8543 4100 8544 4101 8544 4102 8544 4100 8545 4102 8545 4103 8545 4103 8546 4102 8546 3953 8546 4103 8547 3953 8547 4185 8547 4185 8548 3953 8548 4104 8548 4185 8549 4104 8549 4187 8549 4187 8550 4104 8550 3950 8550 4187 8551 3950 8551 4191 8551 4191 8552 3950 8552 3951 8552 4191 8553 3951 8553 4192 8553 4192 8554 3951 8554 4105 8554 4192 8555 4105 8555 4190 8555 4190 8556 4105 8556 4106 8556 4190 8557 4106 8557 4189 8557 4189 8558 4106 8558 4107 8558 4189 8559 4107 8559 4108 8559 4108 8560 4107 8560 4109 8560 4108 8561 4109 8561 4193 8561 4193 8562 4109 8562 3952 8562 4193 8563 3952 8563 4188 8563 4188 8564 3952 8564 4110 8564 4188 8565 4110 8565 4194 8565 4194 8566 4110 8566 3949 8566 4194 8567 3949 8567 4195 8567 4195 8568 3949 8568 4111 8568 4195 8569 4111 8569 4196 8569 4196 8570 4111 8570 3948 8570 4196 8571 3948 8571 4112 8571 4112 8572 3948 8572 3947 8572 4112 8573 3947 8573 4205 8573 4205 8574 3947 8574 3946 8574 4205 8575 3946 8575 4113 8575 4113 8576 3946 8576 4114 8576 4113 8577 4114 8577 4203 8577 4203 8578 4114 8578 3945 8578 4203 8579 3945 8579 4115 8579 4115 8580 3945 8580 4116 8580 4115 8581 4116 8581 4204 8581 4204 8582 4116 8582 4117 8582 4204 8583 4117 8583 4131 8583 4131 8584 4117 8584 4132 8584 4121 8585 4131 8585 4123 8585 4120 8586 4122 8586 4118 8586 4124 8587 4131 8587 4119 8587 4119 8588 4131 8588 4132 8588 4119 8589 4132 8589 4124 8589 4129 8590 4124 8590 4132 8590 4129 8591 4130 8591 4118 8591 4118 8592 4130 8592 4126 8592 4118 8593 4126 8593 4120 8593 4120 8594 4127 8594 4122 8594 4127 8595 4121 8595 4122 8595 4121 8596 4123 8596 4122 8596 4122 8597 4123 8597 4118 8597 4124 8598 4123 8598 4131 8598 4123 8599 4124 8599 4118 8599 4124 8600 4129 8600 4118 8600 4125 8601 4129 8601 4132 8601 4126 8602 4130 8602 4128 8602 4121 8603 4127 8603 4131 8603 4130 8604 4129 8604 4125 8604 4128 8605 4125 8605 4132 8605 4130 8606 4125 8606 4128 8606 4120 8607 4126 8607 4133 8607 4133 8608 4126 8608 4135 8608 4133 8609 4135 8609 4134 8609 4134 8610 4135 8610 4136 8610 4134 8611 4136 8611 4202 8611 4202 8612 4136 8612 4137 8612 4202 8613 4137 8613 4201 8613 4201 8614 4137 8614 3944 8614 4201 8615 3944 8615 4197 8615 4197 8616 3944 8616 4138 8616 4197 8617 4138 8617 4198 8617 4198 8618 4138 8618 3943 8618 4198 8619 3943 8619 4139 8619 4139 8620 3943 8620 3942 8620 4139 8621 3942 8621 4199 8621 4199 8622 3942 8622 4140 8622 4199 8623 4140 8623 4200 8623 4200 8624 4140 8624 4141 8624 4200 8625 4141 8625 4149 8625 4149 8626 4141 8626 3941 8626 4149 8627 3941 8627 4146 8627 4146 8628 3941 8628 4142 8628 4146 8629 4142 8629 4143 8629 4143 8630 4142 8630 3940 8630 4143 8631 3940 8631 4144 8631 4144 8632 3940 8632 4145 8632 4144 8633 4145 8633 4147 8633 4147 8634 4145 8634 3990 8634 4143 8635 4144 8635 4146 8635 4146 8636 4144 8636 4147 8636 4146 8637 4147 8637 3991 8637 3991 8638 4147 8638 4148 8638 3991 8639 3992 8639 4146 8639 4146 8640 3992 8640 4149 8640 4149 8641 3992 8641 4150 8641 4149 8642 4150 8642 4211 8642 4151 8643 4214 8643 3992 8643 3992 8644 4214 8644 4150 8644 3993 8645 4445 8645 4151 8645 4151 8646 4445 8646 4443 8646 4152 8647 4445 8647 3993 8647 4153 8648 4448 8648 4152 8648 4152 8649 4448 8649 4445 8649 4207 8650 4448 8650 4153 8650 4155 8651 4154 8651 4207 8651 4207 8652 4154 8652 4448 8652 3998 8653 4005 8653 4155 8653 4155 8654 4005 8654 4021 8654 4155 8655 4021 8655 4154 8655 4156 8656 4001 8656 3998 8656 3998 8657 4001 8657 4005 8657 4005 8658 4157 8658 4003 8658 4005 8659 4003 8659 4021 8659 4021 8660 4003 8660 4020 8660 4020 8661 4003 8661 4017 8661 4020 8662 4017 8662 4158 8662 4448 8663 4154 8663 4022 8663 4448 8664 4022 8664 4442 8664 4442 8665 4022 8665 4159 8665 4442 8666 4159 8666 4024 8666 4442 8667 4024 8667 4160 8667 4442 8668 4160 8668 4444 8668 4444 8669 4160 8669 4246 8669 4444 8670 4246 8670 4248 8670 4246 8671 4160 8671 4250 8671 4250 8672 4160 8672 4162 8672 4250 8673 4162 8673 4249 8673 4249 8674 4162 8674 4161 8674 4249 8675 4161 8675 4256 8675 4256 8676 4161 8676 4257 8676 4257 8677 4161 8677 4206 8677 4257 8678 4206 8678 4265 8678 4265 8679 4206 8679 4502 8679 4161 8680 4162 8680 4030 8680 4030 8681 4162 8681 4025 8681 4030 8682 4025 8682 4163 8682 4163 8683 4025 8683 5847 8683 5847 8684 4025 8684 4026 8684 4163 8685 4028 8685 4030 8685 4164 8686 4498 8686 4206 8686 4206 8687 4498 8687 4502 8687 4165 8688 4498 8688 4164 8688 4166 8689 4498 8689 4165 8689 4034 8690 4503 8690 4166 8690 4166 8691 4503 8691 4498 8691 4035 8692 4171 8692 4034 8692 4034 8693 4171 8693 4063 8693 4034 8694 4063 8694 4503 8694 4503 8695 4063 8695 4167 8695 4503 8696 4167 8696 4064 8696 4503 8697 4064 8697 4501 8697 4501 8698 4064 8698 4168 8698 4501 8699 4168 8699 4169 8699 4501 8700 4169 8700 4497 8700 4497 8701 4169 8701 4292 8701 4497 8702 4292 8702 4293 8702 4170 8703 4045 8703 4035 8703 4035 8704 4045 8704 4044 8704 4035 8705 4044 8705 4171 8705 4171 8706 4044 8706 4061 8706 4061 8707 4044 8707 4172 8707 4061 8708 4172 8708 4059 8708 4037 8709 4173 8709 4170 8709 4170 8710 4173 8710 4045 8710 4045 8711 4055 8711 4044 8711 4055 8712 4043 8712 4044 8712 4292 8713 4169 8713 4299 8713 4299 8714 4169 8714 4065 8714 4299 8715 4065 8715 4300 8715 4300 8716 4065 8716 4304 8716 4304 8717 4065 8717 4075 8717 4304 8718 4075 8718 4309 8718 4309 8719 4075 8719 4176 8719 4309 8720 4176 8720 4312 8720 4312 8721 4176 8721 4394 8721 4065 8722 4067 8722 4075 8722 4075 8723 4067 8723 4175 8723 4175 8724 4067 8724 4174 8724 4175 8725 4174 8725 4070 8725 4067 8726 4068 8726 4174 8726 4070 8727 4073 8727 4175 8727 4177 8728 4389 8728 4176 8728 4176 8729 4389 8729 4394 8729 4076 8730 4389 8730 4177 8730 4178 8731 4388 8731 4076 8731 4076 8732 4388 8732 4389 8732 4179 8733 4388 8733 4178 8733 4181 8734 4183 8734 4179 8734 4179 8735 4183 8735 4388 8735 4180 8736 6250 8736 4181 8736 4181 8737 6250 8737 4098 8737 4181 8738 4098 8738 4183 8738 4080 8739 6252 8739 4180 8739 4180 8740 6252 8740 6250 8740 4098 8741 6250 8741 4090 8741 4090 8742 6250 8742 4093 8742 4098 8743 4090 8743 4182 8743 4182 8744 4090 8744 4094 8744 4182 8745 4094 8745 4095 8745 4388 8746 4183 8746 4386 8746 4386 8747 4183 8747 4184 8747 4386 8748 4184 8748 4100 8748 4386 8749 4100 8749 4383 8749 4383 8750 4100 8750 4103 8750 4383 8751 4103 8751 4185 8751 4383 8752 4185 8752 4186 8752 4383 8753 4186 8753 4385 8753 4385 8754 4186 8754 4342 8754 4186 8755 4185 8755 4345 8755 4345 8756 4185 8756 4187 8756 4345 8757 4187 8757 4346 8757 4346 8758 4187 8758 4188 8758 4346 8759 4188 8759 4351 8759 4351 8760 4188 8760 4353 8760 4353 8761 4188 8761 4194 8761 4353 8762 4194 8762 4355 8762 4355 8763 4194 8763 4559 8763 4188 8764 4187 8764 4193 8764 4193 8765 4187 8765 4191 8765 4193 8766 4191 8766 4189 8766 4189 8767 4191 8767 4190 8767 4190 8768 4191 8768 4192 8768 4189 8769 4108 8769 4193 8769 4195 8770 4562 8770 4194 8770 4194 8771 4562 8771 4559 8771 4196 8772 4562 8772 4195 8772 4112 8773 4561 8773 4196 8773 4196 8774 4561 8774 4562 8774 4205 8775 4561 8775 4112 8775 4113 8776 4201 8776 4205 8776 4205 8777 4201 8777 4197 8777 4205 8778 4197 8778 4561 8778 4561 8779 4197 8779 4198 8779 4561 8780 4198 8780 4139 8780 4561 8781 4139 8781 4558 8781 4558 8782 4139 8782 4199 8782 4558 8783 4199 8783 4200 8783 4558 8784 4200 8784 3933 8784 4203 8785 4131 8785 4113 8785 4113 8786 4131 8786 4120 8786 4113 8787 4120 8787 4201 8787 4201 8788 4120 8788 4202 8788 4202 8789 4120 8789 4133 8789 4202 8790 4133 8790 4134 8790 4115 8791 4204 8791 4203 8791 4203 8792 4204 8792 4131 8792 4131 8793 4127 8793 4120 8793 3933 8794 4200 8794 4213 8794 4213 8795 4200 8795 4149 8795 4213 8796 4149 8796 4211 8796 4559 8797 4563 8797 4355 8797 4357 8798 4563 8798 4362 8798 4362 8799 4563 8799 4557 8799 4362 8800 4557 8800 4363 8800 4363 8801 4557 8801 4364 8801 4364 8802 4557 8802 4380 8802 4380 8803 4557 8803 3936 8803 3936 8804 4557 8804 4558 8804 4502 8805 4499 8805 4265 8805 4263 8806 4499 8806 4278 8806 4278 8807 4499 8807 4283 8807 4283 8808 4499 8808 4497 8808 4283 8809 4497 8809 4289 8809 4289 8810 4497 8810 4293 8810 4151 8811 4443 8811 4222 8811 4443 8812 4440 8812 4222 8812 4220 8813 4440 8813 4227 8813 4227 8814 4440 8814 4441 8814 4227 8815 4441 8815 4234 8815 4234 8816 4441 8816 4242 8816 4242 8817 4441 8817 4244 8817 4244 8818 4441 8818 4248 8818 4248 8819 4441 8819 4444 8819 4312 8820 4394 8820 4387 8820 4312 8821 4387 8821 4313 8821 4313 8822 4387 8822 4320 8822 4320 8823 4387 8823 4319 8823 4319 8824 4387 8824 4317 8824 4317 8825 4387 8825 4342 8825 4342 8826 4387 8826 4385 8826 4222 8827 4214 8827 4151 8827 4150 8828 4217 8828 4211 8828 4211 8829 4217 8829 4208 8829 4209 8830 4213 8830 4210 8830 4210 8831 4208 8831 4209 8831 4213 8832 4212 8832 4210 8832 4210 8833 4212 8833 4211 8833 4210 8834 4211 8834 4208 8834 4212 8835 4213 8835 4211 8835 4218 8836 4216 8836 4217 8836 4216 8837 4215 8837 4217 8837 4218 8838 4214 8838 4215 8838 4218 8839 4150 8839 4214 8839 4150 8840 4218 8840 4217 8840 4216 8841 4218 8841 4215 8841 4222 8842 4226 8842 4214 8842 4214 8843 4226 8843 4215 8843 4226 8844 4222 8844 4221 8844 4225 8845 4219 8845 4224 8845 4440 8846 4220 8846 4222 8846 4221 8847 4223 8847 4220 8847 4221 8848 4220 8848 4224 8848 4222 8849 4223 8849 4221 8849 4226 8850 4219 8850 4225 8850 4219 8851 4226 8851 4221 8851 4223 8852 4222 8852 4220 8852 4219 8853 4221 8853 4224 8853 4227 8854 4236 8854 4220 8854 4220 8855 4236 8855 4224 8855 4238 8856 4240 8856 4231 8856 4241 8857 4232 8857 4239 8857 4241 8858 4239 8858 4231 8858 4232 8859 4241 8859 4242 8859 4242 8860 4241 8860 4240 8860 4227 8861 4230 8861 4236 8861 4238 8862 4234 8862 4240 8862 4227 8863 4234 8863 4229 8863 4234 8864 4238 8864 4229 8864 4227 8865 4229 8865 4230 8865 4229 8866 4238 8866 4230 8866 4228 8867 4230 8867 4231 8867 4231 8868 4233 8868 4228 8868 4228 8869 4233 8869 4235 8869 4235 8870 4233 8870 4237 8870 4237 8871 4233 8871 4239 8871 4228 8872 4236 8872 4230 8872 4236 8873 4228 8873 4235 8873 4237 8874 4236 8874 4235 8874 4231 8875 4230 8875 4238 8875 4231 8876 4240 8876 4241 8876 4233 8877 4231 8877 4239 8877 4237 8878 4239 8878 4232 8878 4240 8879 4234 8879 4242 8879 4244 8880 4247 8880 4242 8880 4242 8881 4247 8881 4232 8881 4244 8882 4245 8882 4247 8882 4244 8883 4248 8883 4245 8883 4245 8884 4246 8884 4243 8884 4245 8885 4248 8885 4246 8885 4247 8886 4245 8886 4243 8886 4250 8887 4252 8887 4246 8887 4246 8888 4252 8888 4243 8888 4251 8889 4253 8889 4252 8889 4253 8890 4255 8890 4252 8890 4250 8891 4249 8891 4254 8891 4254 8892 4251 8892 4250 8892 4251 8893 4249 8893 4255 8893 4251 8894 4254 8894 4249 8894 4250 8895 4251 8895 4252 8895 4253 8896 4251 8896 4255 8896 4256 8897 4258 8897 4249 8897 4249 8898 4258 8898 4255 8898 4259 8899 4257 8899 4260 8899 4259 8900 4256 8900 4257 8900 4256 8901 4259 8901 4258 8901 4260 8902 4258 8902 4259 8902 4265 8903 4264 8903 4257 8903 4257 8904 4264 8904 4260 8904 4264 8905 4265 8905 4262 8905 4262 8906 3988 8906 4264 8906 4261 8907 4265 8907 4263 8907 4265 8908 4261 8908 4262 8908 4262 8909 4263 8909 3988 8909 4262 8910 4261 8910 4263 8910 4263 8911 4265 8911 4499 8911 4278 8912 4267 8912 4263 8912 4263 8913 4267 8913 3988 8913 4286 8914 4283 8914 4289 8914 4271 8915 4289 8915 4287 8915 4284 8916 4287 8916 4270 8916 4266 8917 4290 8917 4274 8917 4290 8918 4266 8918 4289 8918 4289 8919 4266 8919 4285 8919 4278 8920 4273 8920 4267 8920 4283 8921 4269 8921 4278 8921 4278 8922 4269 8922 4272 8922 4269 8923 4270 8923 4272 8923 4270 8924 4286 8924 4271 8924 4288 8925 4270 8925 4287 8925 4288 8926 4287 8926 4289 8926 4270 8927 4282 8927 4272 8927 4278 8928 4272 8928 4279 8928 4272 8929 4282 8929 4279 8929 4285 8930 4282 8930 4288 8930 4285 8931 4288 8931 4289 8931 4282 8932 4275 8932 4273 8932 4275 8933 4282 8933 4274 8933 4273 8934 4275 8934 4280 8934 4281 8935 4275 8935 4274 8935 4275 8936 4281 8936 4280 8936 4268 8937 4281 8937 4274 8937 4268 8938 4274 8938 4290 8938 4281 8939 4268 8939 4290 8939 4281 8940 4276 8940 4280 8940 4281 8941 4277 8941 4276 8941 4273 8942 4278 8942 4279 8942 4280 8943 4267 8943 4273 8943 4276 8944 4267 8944 4280 8944 4282 8945 4273 8945 4279 8945 4269 8946 4283 8946 4286 8946 4270 8947 4269 8947 4286 8947 4270 8948 4271 8948 4284 8948 4270 8949 4288 8949 4282 8949 4282 8950 4285 8950 4274 8950 4271 8951 4286 8951 4289 8951 4274 8952 4285 8952 4266 8952 4277 8953 4281 8953 4290 8953 4293 8954 4291 8954 4289 8954 4289 8955 4291 8955 4290 8955 4293 8956 4296 8956 4291 8956 4296 8957 4292 8957 4294 8957 4296 8958 4293 8958 4292 8958 4291 8959 4296 8959 4295 8959 4295 8960 4296 8960 4294 8960 4299 8961 4297 8961 4292 8961 4292 8962 4297 8962 4294 8962 4299 8963 4301 8963 4297 8963 4302 8964 4301 8964 4298 8964 4301 8965 4300 8965 4298 8965 4301 8966 4299 8966 4300 8966 4297 8967 4301 8967 4302 8967 4304 8968 4305 8968 4300 8968 4300 8969 4305 8969 4298 8969 4304 8970 4307 8970 4305 8970 4307 8971 4308 8971 4306 8971 4305 8972 4307 8972 4306 8972 4303 8973 4309 8973 4307 8973 4307 8974 4309 8974 4308 8974 4303 8975 4304 8975 4309 8975 4304 8976 4303 8976 4307 8976 4312 8977 4316 8977 4309 8977 4309 8978 4316 8978 4308 8978 4311 8979 4310 8979 4315 8979 4434 8980 4316 8980 4310 8980 4314 8981 4312 8981 4313 8981 4311 8982 4313 8982 4310 8982 4311 8983 4314 8983 4313 8983 4312 8984 4314 8984 4311 8984 4312 8985 4311 8985 4316 8985 4316 8986 4311 8986 4315 8986 4316 8987 4315 8987 4310 8987 4320 8988 4330 8988 4313 8988 4313 8989 4330 8989 4310 8989 4319 8990 4334 8990 4326 8990 4334 8991 4317 8991 4338 8991 4338 8992 4317 8992 4336 8992 4338 8993 4336 8993 4322 8993 4320 8994 4327 8994 4328 8994 4322 8995 4324 8995 4323 8995 4335 8996 4325 8996 4337 8996 4325 8997 4339 8997 4317 8997 4317 8998 4339 8998 4336 8998 4320 8999 4318 8999 4330 8999 4330 9000 4318 9000 4331 9000 4334 9001 4322 9001 4326 9001 4320 9002 4326 9002 4321 9002 4320 9003 4321 9003 4327 9003 4327 9004 4321 9004 4322 9004 4326 9005 4322 9005 4321 9005 4327 9006 4322 9006 4329 9006 4320 9007 4328 9007 4318 9007 4318 9008 4328 9008 4322 9008 4318 9009 4322 9009 4331 9009 4322 9010 4323 9010 4331 9010 4323 9011 4333 9011 4331 9011 4335 9012 4323 9012 4324 9012 4335 9013 4324 9013 4325 9013 4326 9014 4320 9014 4319 9014 4330 9015 4331 9015 4332 9015 4332 9016 4331 9016 4333 9016 4330 9017 4332 9017 4337 9017 4322 9018 4328 9018 4329 9018 4337 9019 4332 9019 4333 9019 4322 9020 4334 9020 4338 9020 4322 9021 4336 9021 4324 9021 4323 9022 4335 9022 4333 9022 4333 9023 4335 9023 4337 9023 4334 9024 4319 9024 4317 9024 4336 9025 4339 9025 4324 9025 4325 9026 4324 9026 4339 9026 4342 9027 4343 9027 4317 9027 4317 9028 4343 9028 4325 9028 4343 9029 4340 9029 4341 9029 4340 9030 4342 9030 4186 9030 4340 9031 4186 9031 4341 9031 4342 9032 4340 9032 4343 9032 4345 9033 4344 9033 4186 9033 4186 9034 4344 9034 4341 9034 4345 9035 4348 9035 4344 9035 4348 9036 4349 9036 4344 9036 4347 9037 4346 9037 4348 9037 4345 9038 4347 9038 4348 9038 4348 9039 4346 9039 4349 9039 4347 9040 4345 9040 4346 9040 4351 9041 4354 9041 4346 9041 4346 9042 4354 9042 4349 9042 4354 9043 4352 9043 4350 9043 4352 9044 4353 9044 4350 9044 4352 9045 4351 9045 4353 9045 4351 9046 4352 9046 4354 9046 4355 9047 4359 9047 4353 9047 4353 9048 4359 9048 4350 9048 4355 9049 4358 9049 4359 9049 4356 9050 4355 9050 4357 9050 4358 9051 4357 9051 4360 9051 4355 9052 4563 9052 4357 9052 4359 9053 4358 9053 4360 9053 4358 9054 4355 9054 4356 9054 4358 9055 4356 9055 4357 9055 4362 9056 4361 9056 4357 9056 4357 9057 4361 9057 4360 9057 4362 9058 4363 9058 4371 9058 4366 9059 4377 9059 4367 9059 4366 9060 4367 9060 4372 9060 4377 9061 4368 9061 4381 9061 4361 9062 4373 9062 4374 9062 4375 9063 4374 9063 4378 9063 4376 9064 4379 9064 4370 9064 4364 9065 4371 9065 4363 9065 4368 9066 4382 9066 4380 9066 4380 9067 4382 9067 4377 9067 4362 9068 4373 9068 4361 9068 4365 9069 4364 9069 4380 9069 4366 9070 4371 9070 4365 9070 4371 9071 4366 9071 4372 9071 4373 9072 4367 9072 4374 9072 4367 9073 4378 9073 4374 9073 4378 9074 4367 9074 4381 9074 4361 9075 4375 9075 4376 9075 4375 9076 4378 9076 4376 9076 4378 9077 4379 9077 4376 9077 4379 9078 4378 9078 4381 9078 4370 9079 4379 9079 4369 9079 4372 9080 4362 9080 4371 9080 4362 9081 4372 9081 4373 9081 4374 9082 4375 9082 4361 9082 4370 9083 4361 9083 4376 9083 4367 9084 4373 9084 4372 9084 4365 9085 4371 9085 4364 9085 4366 9086 4365 9086 4377 9086 4377 9087 4365 9087 4380 9087 4377 9088 4381 9088 4367 9088 4369 9089 4379 9089 4381 9089 4369 9090 4381 9090 4368 9090 4377 9091 4382 9091 4368 9091 3936 9092 3932 9092 4380 9092 4380 9093 3932 9093 4368 9093 4385 9094 4392 9094 4383 9094 4387 9095 4391 9095 4385 9095 4383 9096 4390 9096 4398 9096 4383 9097 4398 9097 4386 9097 4385 9098 4391 9098 4404 9098 4385 9099 4404 9099 4392 9099 4383 9100 4392 9100 4390 9100 4388 9101 4399 9101 4389 9101 4386 9102 4393 9102 4388 9102 4388 9103 4396 9103 4399 9103 4389 9104 4395 9104 4394 9104 4388 9105 4393 9105 4396 9105 4387 9106 4394 9106 4391 9106 4389 9107 4399 9107 4395 9107 4394 9108 4395 9108 4402 9108 4391 9109 4400 9109 4404 9109 4392 9110 4404 9110 4397 9110 4392 9111 4397 9111 4390 9111 4386 9112 4398 9112 4393 9112 4394 9113 4401 9113 4391 9113 4390 9114 4403 9114 4398 9114 4391 9115 4401 9115 4400 9115 4398 9116 4403 9116 4408 9116 4398 9117 4408 9117 4393 9117 4394 9118 4402 9118 4401 9118 4393 9119 4408 9119 4416 9119 4395 9120 4405 9120 4402 9120 4399 9121 4407 9121 4395 9121 4390 9122 4397 9122 4403 9122 4396 9123 4406 9123 4399 9123 4393 9124 4416 9124 4396 9124 4395 9125 4407 9125 4405 9125 4399 9126 4406 9126 4407 9126 4396 9127 4416 9127 4410 9127 4396 9128 4410 9128 4406 9128 4402 9129 4413 9129 4401 9129 4402 9130 4405 9130 4413 9130 4400 9131 4401 9131 4411 9131 4404 9132 4412 9132 4397 9132 4397 9133 4409 9133 4403 9133 4403 9134 4409 9134 4408 9134 4404 9135 4400 9135 4422 9135 4404 9136 4422 9136 4412 9136 4400 9137 4411 9137 4422 9137 4397 9138 4412 9138 4409 9138 4401 9139 4413 9139 4414 9139 4407 9140 4427 9140 4405 9140 4412 9141 4415 9141 4409 9141 4410 9142 4416 9142 4406 9142 4409 9143 4421 9143 4408 9143 4406 9144 4424 9144 4407 9144 4408 9145 4419 9145 4416 9145 4409 9146 4415 9146 4421 9146 4401 9147 4414 9147 4411 9147 4413 9148 4417 9148 4414 9148 4416 9149 4418 9149 4406 9149 4413 9150 4405 9150 4430 9150 4413 9151 4430 9151 4417 9151 4411 9152 4414 9152 4422 9152 4422 9153 4429 9153 4412 9153 4405 9154 4427 9154 4430 9154 4408 9155 4421 9155 4419 9155 4407 9156 4424 9156 4425 9156 4407 9157 4425 9157 4427 9157 4430 9158 4420 9158 4417 9158 4417 9159 4420 9159 4414 9159 4414 9160 4426 9160 4422 9160 4421 9161 4428 9161 4419 9161 4416 9162 4419 9162 4418 9162 4406 9163 4418 9163 4424 9163 4412 9164 4429 9164 4432 9164 4412 9165 4432 9165 4415 9165 4422 9166 4426 9166 4431 9166 4414 9167 4420 9167 4426 9167 4421 9168 4415 9168 4423 9168 4415 9169 4432 9169 4423 9169 4422 9170 4431 9170 4429 9170 4421 9171 4423 9171 4428 9171 4425 9172 4438 9172 4427 9172 4424 9173 4435 9173 4425 9173 4420 9174 4430 9174 4384 9174 4420 9175 4384 9175 4426 9175 4427 9176 4438 9176 4430 9176 4431 9177 4433 9177 4429 9177 4418 9178 4419 9178 4437 9178 4418 9179 4437 9179 4424 9179 4428 9180 4439 9180 4419 9180 4424 9181 4437 9181 4435 9181 4425 9182 4435 9182 4438 9182 4426 9183 4434 9183 4431 9183 4429 9184 4433 9184 4432 9184 4426 9185 4384 9185 4434 9185 4433 9186 4431 9186 4434 9186 4428 9187 4423 9187 4439 9187 4439 9188 4437 9188 4419 9188 4430 9189 4438 9189 4384 9189 4432 9190 4436 9190 4423 9190 4423 9191 4436 9191 4439 9191 4432 9192 4433 9192 4436 9192 4433 9193 4434 9193 4436 9193 4442 9194 4446 9194 4448 9194 4440 9195 4443 9195 4452 9195 4448 9196 4446 9196 4455 9196 4444 9197 4441 9197 4450 9197 4442 9198 4444 9198 4449 9198 4444 9199 4450 9199 4447 9199 4444 9200 4447 9200 4449 9200 4442 9201 4449 9201 4446 9201 4448 9202 4456 9202 4445 9202 4441 9203 4440 9203 4450 9203 4447 9204 4450 9204 4459 9204 4448 9205 4455 9205 4456 9205 4443 9206 4445 9206 4458 9206 4443 9207 4458 9207 4452 9207 4440 9208 4452 9208 4453 9208 4440 9209 4453 9209 4450 9209 4445 9210 4451 9210 4458 9210 4449 9211 4457 9211 4446 9211 4445 9212 4456 9212 4451 9212 4446 9213 4457 9213 4455 9213 4450 9214 4453 9214 4461 9214 4447 9215 4459 9215 4463 9215 4449 9216 4447 9216 4460 9216 4449 9217 4460 9217 4457 9217 4447 9218 4463 9218 4460 9218 4452 9219 4454 9219 4453 9219 4450 9220 4461 9220 4459 9220 4456 9221 4455 9221 4467 9221 4452 9222 4458 9222 4454 9222 4455 9223 4457 9223 4464 9223 4455 9224 4464 9224 4467 9224 4451 9225 4456 9225 4465 9225 4456 9226 4467 9226 4465 9226 4458 9227 4451 9227 4462 9227 4458 9228 4462 9228 4454 9228 4457 9229 4460 9229 4469 9229 4453 9230 4454 9230 4466 9230 4453 9231 4466 9231 4461 9231 4457 9232 4469 9232 4464 9232 4461 9233 4472 9233 4459 9233 4460 9234 4463 9234 4468 9234 4460 9235 4468 9235 4469 9235 4465 9236 4467 9236 4470 9236 4461 9237 4466 9237 4472 9237 4451 9238 4465 9238 4471 9238 4451 9239 4471 9239 4462 9239 4454 9240 4462 9240 4466 9240 4468 9241 4474 9241 4469 9241 4459 9242 4485 9242 4463 9242 4463 9243 4485 9243 4483 9243 4463 9244 4483 9244 4468 9244 4464 9245 4469 9245 4477 9245 4464 9246 4477 9246 4467 9246 4467 9247 4477 9247 4479 9247 4467 9248 4479 9248 4470 9248 4465 9249 4470 9249 4471 9249 4459 9250 4472 9250 4485 9250 4468 9251 4476 9251 4474 9251 4468 9252 4483 9252 4476 9252 4469 9253 4474 9253 4477 9253 4462 9254 4473 9254 4466 9254 4462 9255 4471 9255 4478 9255 4462 9256 4478 9256 4473 9256 4466 9257 4473 9257 4475 9257 4466 9258 4475 9258 4472 9258 4472 9259 4480 9259 4485 9259 4472 9260 4475 9260 4480 9260 4477 9261 4488 9261 4479 9261 4470 9262 4479 9262 4482 9262 4477 9263 4474 9263 4484 9263 4477 9264 4484 9264 4488 9264 4470 9265 4482 9265 4486 9265 4470 9266 4486 9266 4471 9266 4478 9267 4471 9267 4487 9267 4473 9268 4478 9268 4481 9268 4473 9269 4481 9269 4475 9269 4475 9270 4490 9270 4480 9270 4478 9271 4487 9271 4481 9271 4471 9272 4486 9272 4487 9272 4475 9273 4481 9273 4490 9273 4479 9274 4488 9274 4482 9274 4476 9275 4496 9275 4474 9275 4481 9276 4487 9276 4493 9276 4480 9277 4490 9277 4495 9277 4483 9278 4485 9278 4489 9278 4483 9279 4489 9279 4476 9279 4480 9280 4495 9280 4485 9280 4484 9281 4491 9281 4488 9281 4476 9282 4489 9282 4496 9282 4474 9283 4496 9283 4491 9283 4474 9284 4491 9284 4484 9284 4486 9285 4482 9285 4487 9285 4481 9286 4493 9286 4494 9286 4481 9287 4494 9287 4490 9287 4488 9288 4491 9288 4492 9288 4488 9289 4492 9289 4482 9289 4485 9290 4495 9290 4489 9290 4487 9291 4482 9291 4492 9291 4490 9292 4494 9292 4495 9292 4487 9293 4492 9293 4493 9293 4499 9294 4504 9294 4497 9294 4497 9295 4500 9295 4501 9295 4498 9296 4510 9296 4502 9296 4498 9297 4503 9297 4505 9297 4499 9298 4502 9298 4508 9298 4498 9299 4505 9299 4507 9299 4499 9300 4508 9300 4504 9300 4504 9301 4508 9301 4506 9301 4503 9302 4514 9302 4505 9302 4498 9303 4507 9303 4510 9303 4497 9304 4516 9304 4500 9304 4503 9305 4501 9305 4513 9305 4503 9306 4513 9306 4514 9306 4502 9307 4510 9307 4511 9307 4501 9308 4500 9308 4528 9308 4501 9309 4528 9309 4513 9309 4505 9310 4515 9310 4507 9310 4497 9311 4504 9311 4516 9311 4502 9312 4511 9312 4508 9312 4500 9313 4516 9313 4509 9313 4500 9314 4509 9314 4528 9314 4504 9315 4506 9315 4516 9315 4510 9316 4507 9316 4511 9316 4514 9317 4513 9317 4525 9317 4507 9318 4512 9318 4511 9318 4513 9319 4518 9319 4525 9319 4505 9320 4514 9320 4515 9320 4513 9321 4528 9321 4518 9321 4508 9322 4511 9322 4517 9322 4508 9323 4517 9323 4506 9323 4507 9324 4519 9324 4512 9324 4515 9325 4514 9325 4520 9325 4506 9326 4524 9326 4516 9326 4506 9327 4517 9327 4521 9327 4506 9328 4521 9328 4524 9328 4516 9329 4523 9329 4509 9329 4515 9330 4520 9330 4522 9330 4515 9331 4522 9331 4507 9331 4507 9332 4522 9332 4519 9332 4514 9333 4525 9333 4520 9333 4511 9334 4512 9334 4532 9334 4511 9335 4532 9335 4517 9335 4509 9336 4523 9336 4526 9336 4509 9337 4526 9337 4527 9337 4509 9338 4527 9338 4528 9338 4522 9339 4529 9339 4519 9339 4516 9340 4524 9340 4523 9340 4512 9341 4519 9341 4532 9341 4522 9342 4520 9342 4529 9342 4521 9343 4538 9343 4524 9343 4526 9344 4523 9344 4541 9344 4526 9345 4541 9345 4527 9345 4518 9346 4539 9346 4525 9346 4521 9347 4517 9347 4530 9347 4521 9348 4530 9348 4538 9348 4527 9349 4531 9349 4528 9349 4519 9350 4535 9350 4532 9350 4528 9351 4531 9351 4518 9351 4517 9352 4532 9352 4530 9352 4527 9353 4541 9353 4531 9353 4518 9354 4531 9354 4539 9354 4529 9355 4535 9355 4519 9355 4524 9356 4538 9356 4536 9356 4524 9357 4536 9357 4523 9357 4525 9358 4539 9358 4533 9358 4525 9359 4533 9359 4520 9359 4523 9360 4536 9360 4544 9360 4523 9361 4544 9361 4541 9361 4520 9362 4533 9362 4540 9362 4520 9363 4540 9363 4529 9363 4532 9364 4535 9364 4542 9364 4532 9365 4542 9365 4530 9365 4535 9366 4534 9366 4542 9366 4535 9367 4537 9367 4534 9367 4530 9368 4550 9368 4538 9368 4529 9369 4540 9369 4537 9369 4529 9370 4537 9370 4535 9370 4530 9371 4542 9371 4543 9371 4530 9372 4543 9372 4550 9372 4536 9373 4538 9373 4549 9373 4536 9374 4549 9374 4544 9374 4538 9375 4550 9375 4549 9375 4540 9376 4545 9376 4537 9376 4541 9377 4552 9377 4531 9377 4534 9378 4546 9378 4542 9378 4537 9379 4546 9379 4534 9379 4539 9380 4553 9380 4533 9380 4537 9381 4545 9381 4546 9381 4544 9382 4547 9382 4541 9382 4541 9383 4547 9383 4552 9383 4533 9384 4553 9384 4540 9384 4540 9385 4553 9385 4545 9385 4531 9386 4548 9386 4539 9386 4539 9387 4548 9387 4553 9387 4546 9388 4555 9388 4542 9388 4550 9389 4551 9389 4549 9389 4531 9390 4552 9390 4548 9390 4545 9391 4553 9391 4554 9391 4542 9392 4555 9392 4543 9392 4544 9393 4549 9393 4556 9393 4544 9394 4556 9394 4547 9394 4545 9395 4554 9395 4546 9395 4550 9396 4543 9396 4551 9396 4546 9397 4554 9397 4555 9397 4543 9398 4555 9398 4551 9398 4549 9399 4551 9399 4556 9399 4552 9400 4547 9400 4548 9400 4558 9401 4560 9401 4561 9401 4558 9402 4565 9402 4560 9402 4557 9403 4563 9403 4570 9403 4558 9404 4564 9404 4565 9404 4558 9405 4557 9405 4564 9405 4560 9406 4569 9406 4561 9406 4561 9407 4568 9407 4562 9407 4560 9408 4565 9408 4569 9408 4561 9409 4569 9409 4566 9409 4561 9410 4566 9410 4568 9410 4557 9411 4577 9411 4564 9411 4557 9412 4570 9412 4577 9412 4564 9413 4576 9413 4565 9413 4565 9414 4574 9414 4569 9414 4565 9415 4576 9415 4574 9415 4559 9416 4562 9416 4567 9416 4559 9417 4572 9417 4563 9417 4559 9418 4567 9418 4572 9418 4562 9419 4568 9419 4567 9419 4570 9420 4573 9420 4577 9420 4564 9421 4577 9421 4578 9421 4564 9422 4578 9422 4576 9422 4568 9423 4575 9423 4567 9423 4566 9424 4571 9424 4568 9424 4570 9425 4563 9425 4573 9425 4569 9426 4581 9426 4566 9426 4563 9427 4572 9427 4585 9427 4563 9428 4585 9428 4573 9428 4566 9429 4581 9429 4571 9429 4568 9430 4571 9430 4575 9430 4567 9431 4575 9431 4580 9431 4567 9432 4580 9432 4572 9432 4569 9433 4574 9433 4589 9433 4569 9434 4589 9434 4581 9434 4572 9435 4579 9435 4585 9435 4572 9436 4580 9436 4579 9436 4577 9437 4573 9437 4583 9437 4577 9438 4583 9438 4578 9438 4575 9439 4586 9439 4580 9439 4576 9440 4578 9440 4588 9440 4576 9441 4588 9441 4574 9441 4571 9442 4582 9442 4575 9442 4575 9443 4582 9443 4586 9443 4574 9444 4588 9444 4589 9444 4571 9445 4581 9445 4584 9445 4571 9446 4584 9446 4582 9446 4582 9447 4584 9447 4591 9447 4581 9448 4589 9448 4594 9448 4581 9449 4594 9449 4584 9449 4573 9450 4587 9450 4583 9450 4578 9451 4583 9451 4593 9451 4586 9452 4595 9452 4580 9452 4573 9453 4585 9453 4590 9453 4573 9454 4590 9454 4587 9454 4585 9455 4579 9455 4590 9455 4582 9456 4591 9456 4586 9456 4580 9457 4595 9457 4592 9457 4580 9458 4592 9458 4579 9458 4586 9459 4591 9459 4595 9459 4578 9460 4593 9460 4588 9460 4589 9461 4588 9461 4596 9461 4589 9462 4596 9462 4594 9462 4579 9463 4592 9463 4598 9463 4579 9464 4598 9464 4590 9464 4590 9465 4598 9465 4587 9465 4592 9466 4605 9466 4598 9466 4598 9467 4604 9467 4587 9467 4595 9468 4602 9468 4592 9468 4592 9469 4602 9469 4605 9469 4587 9470 4604 9470 4603 9470 4587 9471 4603 9471 4583 9471 4583 9472 4603 9472 4593 9472 4595 9473 4591 9473 4602 9473 4591 9474 4601 9474 4602 9474 4588 9475 4593 9475 4597 9475 4594 9476 4596 9476 4609 9476 4591 9477 4584 9477 4600 9477 4603 9478 4597 9478 4593 9478 4588 9479 4597 9479 4608 9479 4588 9480 4608 9480 4596 9480 4594 9481 4609 9481 4584 9481 4584 9482 4609 9482 4600 9482 4591 9483 4600 9483 4601 9483 4597 9484 4599 9484 4608 9484 4609 9485 4610 9485 4600 9485 4598 9486 4605 9486 4613 9486 4603 9487 4604 9487 4606 9487 4597 9488 4603 9488 4599 9488 4596 9489 4608 9489 4609 9489 4602 9490 4612 9490 4605 9490 4603 9491 4606 9491 4599 9491 4601 9492 4600 9492 4611 9492 4600 9493 4610 9493 4611 9493 4598 9494 4613 9494 4604 9494 4602 9495 4601 9495 4612 9495 4601 9496 4611 9496 4612 9496 4599 9497 4606 9497 4607 9497 4599 9498 4607 9498 4608 9498 4609 9499 4608 9499 4610 9499 4605 9500 4612 9500 4613 9500 4604 9501 4613 9501 4606 9501 4890 9502 4889 9502 4618 9502 4618 9503 4889 9503 4619 9503 4616 9504 4614 9504 4615 9504 4614 9505 4617 9505 4615 9505 4614 9506 4618 9506 4619 9506 4617 9507 4619 9507 4615 9507 4618 9508 4616 9508 5218 9508 4618 9509 4614 9509 4616 9509 4619 9510 4617 9510 4614 9510 4621 9511 4835 9511 4620 9511 4620 9512 4835 9512 4684 9512 4620 9513 4684 9513 4682 9513 4621 9514 4622 9514 4835 9514 4835 9515 4833 9515 4684 9515 4684 9516 4833 9516 4623 9516 4623 9517 4833 9517 4888 9517 4623 9518 4888 9518 4896 9518 4832 9519 4889 9519 4833 9519 4624 9520 5257 9520 4832 9520 4625 9521 5264 9521 4624 9521 4624 9522 5264 9522 5257 9522 4829 9523 5264 9523 4625 9523 4827 9524 5264 9524 4829 9524 4826 9525 4800 9525 4827 9525 4827 9526 4800 9526 5264 9526 4626 9527 4810 9527 4826 9527 4826 9528 4810 9528 4802 9528 4826 9529 4802 9529 4800 9529 4823 9530 4822 9530 4626 9530 4626 9531 4822 9531 4810 9531 4802 9532 4810 9532 4816 9532 4816 9533 4810 9533 4811 9533 4802 9534 4816 9534 4627 9534 4627 9535 4816 9535 4805 9535 4627 9536 4805 9536 4804 9536 5264 9537 4800 9537 4628 9537 5264 9538 4628 9538 4629 9538 5264 9539 4629 9539 5266 9539 5266 9540 4629 9540 4630 9540 5266 9541 4630 9541 4631 9541 5266 9542 4631 9542 5267 9542 5267 9543 4631 9543 5262 9543 5262 9544 4631 9544 5030 9544 5030 9545 4631 9545 5026 9545 5026 9546 4631 9546 4632 9546 5026 9547 4632 9547 5020 9547 5020 9548 4632 9548 4633 9548 5020 9549 4633 9549 5016 9549 5016 9550 4633 9550 5014 9550 5014 9551 4633 9551 4638 9551 5014 9552 4638 9552 5012 9552 5012 9553 4638 9553 5107 9553 4633 9554 4632 9554 4634 9554 4634 9555 4632 9555 4635 9555 4634 9556 4635 9556 4637 9556 4637 9557 4635 9557 4636 9557 4636 9558 4635 9558 4796 9558 4637 9559 4794 9559 4634 9559 4639 9560 5104 9560 4638 9560 4792 9561 5104 9561 4639 9561 4640 9562 5102 9562 4792 9562 4792 9563 5102 9563 5104 9563 4642 9564 5102 9564 4640 9564 4647 9565 4641 9565 4642 9565 4642 9566 4641 9566 4643 9566 4642 9567 4643 9567 5108 9567 5108 9568 4643 9568 4644 9568 5108 9569 4644 9569 5053 9569 5053 9570 4644 9570 4767 9570 5053 9571 4767 9571 4645 9571 5053 9572 4645 9572 5103 9572 5103 9573 4645 9573 4651 9573 5103 9574 4651 9574 4646 9574 4789 9575 4781 9575 4647 9575 4647 9576 4781 9576 4782 9576 4647 9577 4782 9577 4641 9577 4641 9578 4782 9578 4771 9578 4771 9579 4782 9579 4773 9579 4771 9580 4773 9580 4648 9580 4649 9581 4650 9581 4789 9581 4789 9582 4650 9582 4781 9582 4781 9583 4785 9583 4782 9583 4646 9584 4651 9584 4982 9584 4982 9585 4651 9585 4652 9585 4982 9586 4652 9586 4980 9586 4980 9587 4652 9587 4978 9587 4978 9588 4652 9588 4653 9588 4978 9589 4653 9589 4977 9589 4977 9590 4653 9590 4656 9590 4977 9591 4656 9591 4968 9591 4968 9592 4656 9592 5211 9592 4968 9593 5211 9593 5204 9593 4652 9594 4765 9594 4653 9594 4653 9595 4765 9595 4654 9595 4654 9596 4765 9596 4761 9596 4654 9597 4761 9597 4759 9597 4764 9598 4655 9598 4765 9598 4765 9599 4655 9599 4761 9599 4757 9600 5211 9600 4656 9600 4755 9601 5212 9601 4757 9601 4757 9602 5212 9602 5211 9602 4658 9603 5212 9603 4755 9603 4657 9604 5212 9604 4658 9604 4753 9605 4664 9605 4657 9605 4657 9606 4664 9606 5206 9606 4657 9607 5206 9607 5212 9607 4659 9608 4741 9608 4753 9608 4753 9609 4741 9609 4660 9609 4753 9610 4660 9610 4664 9610 4661 9611 4750 9611 4659 9611 4659 9612 4750 9612 4741 9612 4741 9613 4742 9613 4744 9613 4741 9614 4744 9614 4743 9614 4741 9615 4743 9615 4660 9615 4660 9616 4743 9616 4732 9616 4732 9617 4743 9617 4662 9617 4732 9618 4662 9618 4663 9618 5206 9619 4664 9619 4665 9619 5206 9620 4665 9620 4729 9620 5206 9621 4729 9621 4728 9621 5206 9622 4728 9622 5208 9622 5208 9623 4728 9623 4666 9623 5208 9624 4666 9624 4946 9624 5208 9625 4946 9625 5207 9625 4946 9626 4666 9626 4940 9626 4940 9627 4666 9627 4727 9627 4940 9628 4727 9628 4941 9628 4941 9629 4727 9629 4667 9629 4941 9630 4667 9630 4933 9630 4933 9631 4667 9631 4934 9631 4934 9632 4667 9632 4671 9632 4934 9633 4671 9633 4925 9633 4925 9634 4671 9634 5160 9634 4667 9635 4727 9635 4668 9635 4668 9636 4727 9636 4725 9636 4668 9637 4725 9637 4670 9637 4670 9638 4725 9638 4669 9638 4669 9639 4725 9639 4724 9639 4670 9640 4719 9640 4668 9640 4717 9641 5154 9641 4671 9641 4672 9642 5109 9642 4717 9642 4717 9643 5109 9643 5154 9643 4714 9644 5109 9644 4672 9644 4673 9645 5109 9645 4714 9645 4678 9646 4689 9646 4673 9646 4673 9647 4689 9647 4688 9647 4673 9648 4688 9648 5109 9648 5109 9649 4688 9649 5161 9649 5161 9650 4688 9650 4674 9650 5161 9651 4674 9651 4675 9651 5161 9652 4675 9652 5158 9652 5158 9653 4675 9653 4676 9653 5158 9654 4676 9654 4677 9654 5158 9655 4677 9655 5159 9655 5159 9656 4677 9656 4903 9656 4679 9657 4704 9657 4678 9657 4678 9658 4704 9658 4701 9658 4678 9659 4701 9659 4689 9659 4689 9660 4701 9660 4690 9660 4690 9661 4701 9661 4692 9661 4690 9662 4692 9662 4691 9662 4711 9663 4710 9663 4679 9663 4679 9664 4710 9664 4704 9664 4704 9665 4699 9665 4701 9665 4699 9666 4700 9666 4701 9666 4903 9667 4677 9667 4892 9667 4892 9668 4677 9668 4623 9668 4892 9669 4623 9669 4898 9669 4898 9670 4623 9670 4896 9670 4832 9671 5257 9671 5265 9671 4832 9672 5265 9672 4619 9672 5263 9673 4619 9673 5265 9673 4619 9674 5263 9674 4615 9674 4615 9675 5263 9675 5049 9675 5049 9676 5263 9676 5046 9676 5046 9677 5263 9677 5043 9677 5043 9678 5263 9678 5028 9678 5028 9679 5263 9679 5262 9679 5028 9680 5262 9680 5030 9680 4968 9681 5204 9681 4972 9681 4972 9682 5204 9682 4956 9682 4956 9683 5204 9683 5205 9683 4956 9684 5205 9684 4959 9684 4959 9685 5205 9685 4963 9685 4963 9686 5205 9686 5207 9686 4963 9687 5207 9687 4947 9687 4947 9688 5207 9688 4946 9688 4671 9689 5154 9689 5160 9689 4925 9690 5160 9690 4680 9690 4680 9691 5160 9691 4932 9691 4932 9692 5160 9692 4924 9692 4924 9693 5160 9693 4913 9693 4913 9694 5160 9694 5159 9694 4913 9695 5159 9695 4915 9695 4915 9696 5159 9696 4904 9696 4904 9697 5159 9697 4903 9697 5107 9698 5008 9698 5012 9698 5106 9699 5008 9699 5107 9699 5008 9700 5106 9700 4994 9700 4994 9701 5106 9701 5100 9701 4994 9702 5100 9702 5004 9702 5004 9703 5100 9703 4999 9703 4999 9704 5100 9704 4988 9704 4988 9705 5100 9705 4646 9705 4646 9706 5100 9706 5103 9706 5108 9707 5102 9707 4642 9707 5104 9708 5107 9708 4638 9708 4833 9709 4889 9709 4888 9709 4619 9710 4889 9710 4832 9710 4838 9711 4620 9711 4681 9711 4681 9712 4620 9712 4682 9712 4681 9713 4682 9713 4683 9713 4683 9714 4682 9714 4684 9714 4683 9715 4684 9715 4685 9715 4685 9716 4684 9716 4623 9716 4685 9717 4623 9717 4840 9717 4840 9718 4623 9718 4677 9718 4840 9719 4677 9719 4686 9719 4686 9720 4677 9720 4676 9720 4686 9721 4676 9721 4841 9721 4841 9722 4676 9722 4675 9722 4841 9723 4675 9723 4842 9723 4842 9724 4675 9724 4674 9724 4842 9725 4674 9725 4687 9725 4687 9726 4674 9726 4688 9726 4687 9727 4688 9727 4844 9727 4844 9728 4688 9728 4689 9728 4844 9729 4689 9729 4843 9729 4843 9730 4689 9730 4690 9730 4843 9731 4690 9731 4846 9731 4846 9732 4690 9732 4691 9732 4846 9733 4691 9733 4847 9733 4847 9734 4691 9734 4692 9734 4847 9735 4692 9735 4693 9735 4693 9736 4692 9736 4701 9736 4707 9737 4693 9737 4706 9737 4707 9738 4706 9738 4705 9738 4708 9739 4693 9739 4696 9739 4696 9740 4693 9740 4701 9740 4694 9741 4698 9741 4699 9741 4694 9742 4704 9742 4703 9742 4705 9743 4702 9743 4707 9743 4703 9744 4705 9744 4694 9744 4705 9745 4695 9745 4694 9745 4705 9746 4706 9746 4695 9746 4708 9747 4706 9747 4693 9747 4708 9748 4695 9748 4706 9748 4695 9749 4698 9749 4694 9749 4697 9750 4695 9750 4708 9750 4697 9751 4708 9751 4696 9751 4698 9752 4695 9752 4697 9752 4697 9753 4696 9753 4701 9753 4699 9754 4698 9754 4697 9754 4694 9755 4699 9755 4704 9755 4700 9756 4697 9756 4701 9756 4699 9757 4697 9757 4700 9757 4705 9758 4703 9758 4702 9758 4707 9759 4702 9759 4693 9759 4703 9760 4704 9760 4848 9760 4848 9761 4704 9761 4710 9761 4848 9762 4710 9762 4709 9762 4709 9763 4710 9763 4711 9763 4709 9764 4711 9764 4712 9764 4712 9765 4711 9765 4679 9765 4712 9766 4679 9766 4845 9766 4845 9767 4679 9767 4678 9767 4845 9768 4678 9768 4713 9768 4713 9769 4678 9769 4673 9769 4713 9770 4673 9770 4715 9770 4715 9771 4673 9771 4714 9771 4715 9772 4714 9772 4849 9772 4849 9773 4714 9773 4672 9773 4849 9774 4672 9774 4716 9774 4716 9775 4672 9775 4717 9775 4716 9776 4717 9776 4718 9776 4718 9777 4717 9777 4671 9777 4718 9778 4671 9778 4850 9778 4850 9779 4671 9779 4667 9779 4850 9780 4667 9780 4853 9780 4853 9781 4667 9781 4668 9781 4853 9782 4668 9782 4720 9782 4720 9783 4668 9783 4719 9783 4720 9784 4719 9784 4721 9784 4721 9785 4719 9785 4670 9785 4721 9786 4670 9786 4722 9786 4722 9787 4670 9787 4669 9787 4722 9788 4669 9788 4723 9788 4723 9789 4669 9789 4724 9789 4723 9790 4724 9790 4852 9790 4852 9791 4724 9791 4725 9791 4852 9792 4725 9792 4726 9792 4726 9793 4725 9793 4727 9793 4726 9794 4727 9794 4851 9794 4851 9795 4727 9795 4666 9795 4851 9796 4666 9796 4854 9796 4854 9797 4666 9797 4728 9797 4854 9798 4728 9798 4730 9798 4730 9799 4728 9799 4729 9799 4730 9800 4729 9800 4855 9800 4855 9801 4729 9801 4665 9801 4855 9802 4665 9802 4731 9802 4731 9803 4665 9803 4664 9803 4731 9804 4664 9804 4857 9804 4857 9805 4664 9805 4660 9805 4857 9806 4660 9806 4861 9806 4861 9807 4660 9807 4732 9807 4861 9808 4732 9808 4733 9808 4733 9809 4732 9809 4663 9809 4733 9810 4663 9810 4860 9810 4860 9811 4663 9811 4662 9811 4860 9812 4662 9812 4734 9812 4734 9813 4662 9813 4743 9813 4746 9814 4734 9814 4747 9814 4734 9815 4743 9815 4747 9815 4741 9816 4736 9816 4740 9816 4748 9817 4747 9817 4743 9817 4740 9818 4742 9818 4741 9818 4736 9819 4741 9819 4735 9819 4737 9820 4862 9820 4734 9820 4862 9821 4737 9821 4738 9821 4737 9822 4746 9822 4738 9822 4738 9823 4746 9823 4739 9823 4739 9824 4740 9824 4736 9824 4739 9825 4745 9825 4740 9825 4740 9826 4745 9826 4742 9826 4735 9827 4862 9827 4738 9827 4738 9828 4736 9828 4735 9828 4738 9829 4739 9829 4736 9829 4739 9830 4746 9830 4747 9830 4739 9831 4747 9831 4745 9831 4745 9832 4747 9832 4748 9832 4745 9833 4748 9833 4742 9833 4742 9834 4748 9834 4744 9834 4744 9835 4748 9835 4743 9835 4734 9836 4746 9836 4737 9836 4735 9837 4741 9837 4749 9837 4749 9838 4741 9838 4750 9838 4749 9839 4750 9839 4751 9839 4751 9840 4750 9840 4661 9840 4751 9841 4661 9841 4859 9841 4859 9842 4661 9842 4659 9842 4859 9843 4659 9843 4858 9843 4858 9844 4659 9844 4753 9844 4858 9845 4753 9845 4752 9845 4752 9846 4753 9846 4657 9846 4752 9847 4657 9847 4856 9847 4856 9848 4657 9848 4658 9848 4856 9849 4658 9849 4754 9849 4754 9850 4658 9850 4755 9850 4754 9851 4755 9851 4756 9851 4756 9852 4755 9852 4757 9852 4756 9853 4757 9853 4863 9853 4863 9854 4757 9854 4656 9854 4863 9855 4656 9855 4864 9855 4864 9856 4656 9856 4653 9856 4864 9857 4653 9857 4758 9857 4758 9858 4653 9858 4654 9858 4758 9859 4654 9859 4760 9859 4760 9860 4654 9860 4759 9860 4760 9861 4759 9861 5603 9861 5603 9862 4759 9862 4761 9862 5603 9863 4761 9863 4762 9863 4762 9864 4761 9864 4655 9864 4762 9865 4655 9865 4763 9865 4763 9866 4655 9866 4764 9866 4763 9867 4764 9867 4867 9867 4867 9868 4764 9868 4765 9868 4867 9869 4765 9869 4865 9869 4865 9870 4765 9870 4652 9870 4865 9871 4652 9871 4869 9871 4869 9872 4652 9872 4651 9872 4869 9873 4651 9873 4868 9873 4868 9874 4651 9874 4645 9874 4868 9875 4645 9875 4766 9875 4766 9876 4645 9876 4767 9876 4766 9877 4767 9877 4870 9877 4870 9878 4767 9878 4644 9878 4870 9879 4644 9879 4768 9879 4768 9880 4644 9880 4643 9880 4768 9881 4643 9881 4769 9881 4769 9882 4643 9882 4641 9882 4769 9883 4641 9883 4770 9883 4770 9884 4641 9884 4771 9884 4770 9885 4771 9885 4772 9885 4772 9886 4771 9886 4648 9886 4772 9887 4648 9887 5695 9887 5695 9888 4648 9888 4773 9888 5695 9889 4773 9889 4777 9889 4777 9890 4773 9890 4782 9890 4776 9891 4777 9891 4783 9891 4774 9892 4777 9892 4782 9892 4781 9893 4775 9893 4780 9893 4781 9894 4780 9894 4785 9894 4775 9895 4781 9895 4778 9895 4779 9896 4784 9896 4775 9896 4774 9897 4783 9897 4777 9897 4786 9898 4783 9898 4774 9898 4786 9899 4774 9899 4782 9899 4784 9900 4783 9900 4786 9900 4784 9901 4780 9901 4775 9901 4780 9902 4784 9902 4786 9902 4780 9903 4786 9903 4782 9903 4775 9904 4778 9904 4779 9904 4784 9905 4779 9905 4776 9905 4784 9906 4776 9906 4783 9906 4785 9907 4780 9907 4782 9907 4778 9908 4781 9908 4787 9908 4787 9909 4781 9909 4650 9909 4787 9910 4650 9910 4788 9910 4788 9911 4650 9911 4649 9911 4788 9912 4649 9912 4790 9912 4790 9913 4649 9913 4789 9913 4790 9914 4789 9914 4791 9914 4791 9915 4789 9915 4647 9915 4791 9916 4647 9916 4871 9916 4871 9917 4647 9917 4642 9917 4871 9918 4642 9918 4872 9918 4872 9919 4642 9919 4640 9919 4872 9920 4640 9920 4873 9920 4873 9921 4640 9921 4792 9921 4873 9922 4792 9922 4874 9922 4874 9923 4792 9923 4639 9923 4874 9924 4639 9924 4875 9924 4875 9925 4639 9925 4638 9925 4875 9926 4638 9926 4876 9926 4876 9927 4638 9927 4633 9927 4876 9928 4633 9928 4793 9928 4793 9929 4633 9929 4634 9929 4793 9930 4634 9930 4878 9930 4878 9931 4634 9931 4794 9931 4878 9932 4794 9932 5985 9932 5985 9933 4794 9933 4637 9933 5985 9934 4637 9934 5986 9934 5986 9935 4637 9935 4636 9935 5986 9936 4636 9936 4795 9936 4795 9937 4636 9937 4796 9937 4795 9938 4796 9938 4879 9938 4879 9939 4796 9939 4635 9939 4879 9940 4635 9940 4877 9940 4877 9941 4635 9941 4632 9941 4877 9942 4632 9942 4880 9942 4880 9943 4632 9943 4631 9943 4880 9944 4631 9944 4797 9944 4797 9945 4631 9945 4630 9945 4797 9946 4630 9946 4798 9946 4798 9947 4630 9947 4629 9947 4798 9948 4629 9948 4799 9948 4799 9949 4629 9949 4628 9949 4799 9950 4628 9950 4801 9950 4801 9951 4628 9951 4800 9951 4801 9952 4800 9952 4883 9952 4883 9953 4800 9953 4802 9953 4883 9954 4802 9954 4885 9954 4885 9955 4802 9955 4627 9955 4885 9956 4627 9956 4803 9956 4803 9957 4627 9957 4804 9957 4803 9958 4804 9958 4886 9958 4886 9959 4804 9959 4805 9959 4886 9960 4805 9960 4817 9960 4817 9961 4805 9961 4816 9961 4820 9962 4815 9962 4808 9962 4815 9963 4817 9963 4818 9963 4818 9964 4817 9964 4816 9964 4807 9965 4810 9965 4808 9965 4809 9966 4814 9966 4812 9966 4814 9967 4807 9967 4812 9967 4819 9968 4814 9968 4818 9968 4810 9969 4807 9969 4813 9969 4807 9970 4814 9970 4813 9970 4814 9971 4806 9971 4813 9971 4806 9972 4814 9972 4819 9972 4806 9973 4819 9973 4816 9973 4812 9974 4808 9974 4815 9974 4809 9975 4812 9975 4815 9975 4812 9976 4807 9976 4808 9976 4806 9977 4810 9977 4813 9977 4811 9978 4810 9978 4806 9978 4815 9979 4820 9979 4817 9979 4809 9980 4815 9980 4818 9980 4809 9981 4818 9981 4814 9981 4819 9982 4818 9982 4816 9982 4811 9983 4806 9983 4816 9983 4808 9984 4810 9984 4821 9984 4821 9985 4810 9985 4822 9985 4821 9986 4822 9986 4884 9986 4884 9987 4822 9987 4823 9987 4884 9988 4823 9988 4824 9988 4824 9989 4823 9989 4626 9989 4824 9990 4626 9990 4825 9990 4825 9991 4626 9991 4826 9991 4825 9992 4826 9992 4828 9992 4828 9993 4826 9993 4827 9993 4828 9994 4827 9994 4881 9994 4881 9995 4827 9995 4829 9995 4881 9996 4829 9996 4830 9996 4830 9997 4829 9997 4625 9997 4830 9998 4625 9998 4831 9998 4831 9999 4625 9999 4624 9999 4831 10000 4624 10000 4882 10000 4882 10001 4624 10001 4832 10001 4882 10002 4832 10002 4839 10002 4839 10003 4832 10003 4833 10003 4839 10004 4833 10004 4834 10004 4834 10005 4833 10005 4835 10005 4834 10006 4835 10006 4837 10006 4837 10007 4835 10007 4622 10007 4837 10008 4622 10008 4836 10008 4836 10009 4622 10009 4621 10009 4836 10010 4621 10010 4838 10010 4838 10011 4621 10011 4620 10011 4837 10012 4836 10012 4834 10012 4834 10013 4836 10013 4838 10013 4834 10014 4838 10014 4683 10014 4683 10015 4838 10015 4681 10015 4683 10016 4685 10016 4834 10016 4834 10017 4685 10017 4839 10017 4839 10018 4685 10018 4895 10018 4839 10019 4895 10019 4891 10019 4840 10020 4893 10020 4685 10020 4685 10021 4893 10021 4894 10021 4686 10022 5112 10022 4840 10022 4840 10023 5112 10023 5113 10023 4841 10024 5112 10024 4686 10024 4842 10025 5112 10025 4841 10025 4687 10026 5112 10026 4842 10026 4844 10027 4713 10027 4687 10027 4687 10028 4713 10028 5117 10028 4687 10029 5117 10029 5112 10029 4843 10030 4693 10030 4844 10030 4844 10031 4693 10031 4845 10031 4844 10032 4845 10032 4713 10032 4846 10033 4847 10033 4843 10033 4843 10034 4847 10034 4693 10034 4693 10035 4702 10035 4703 10035 4693 10036 4703 10036 4845 10036 4845 10037 4703 10037 4712 10037 4712 10038 4703 10038 4848 10038 4712 10039 4848 10039 4709 10039 5117 10040 4713 10040 4715 10040 5117 10041 4715 10041 4849 10041 5117 10042 4849 10042 5115 10042 5115 10043 4849 10043 4716 10043 5115 10044 4716 10044 4718 10044 5115 10045 4718 10045 5111 10045 5111 10046 4718 10046 4926 10046 5111 10047 4926 10047 4930 10047 4926 10048 4718 10048 4937 10048 4937 10049 4718 10049 4850 10049 4937 10050 4850 10050 4935 10050 4935 10051 4850 10051 4726 10051 4935 10052 4726 10052 4939 10052 4939 10053 4726 10053 4938 10053 4938 10054 4726 10054 4851 10054 4938 10055 4851 10055 4945 10055 4945 10056 4851 10056 5165 10056 4726 10057 4850 10057 4852 10057 4852 10058 4850 10058 4853 10058 4852 10059 4853 10059 4722 10059 4722 10060 4853 10060 4721 10060 4721 10061 4853 10061 4720 10061 4722 10062 4723 10062 4852 10062 4854 10063 5162 10063 4851 10063 4851 10064 5162 10064 5165 10064 4730 10065 5162 10065 4854 10065 4855 10066 5169 10066 4730 10066 4730 10067 5169 10067 5162 10067 4731 10068 5169 10068 4855 10068 4857 10069 4858 10069 4731 10069 4731 10070 4858 10070 4752 10070 4731 10071 4752 10071 5169 10071 5169 10072 4752 10072 5166 10072 5166 10073 4752 10073 4856 10073 5166 10074 4856 10074 4754 10074 5166 10075 4754 10075 5163 10075 5163 10076 4754 10076 4756 10076 5163 10077 4756 10077 4863 10077 5163 10078 4863 10078 4970 10078 5163 10079 4970 10079 5164 10079 5164 10080 4970 10080 4971 10080 4861 10081 4734 10081 4857 10081 4857 10082 4734 10082 4735 10082 4857 10083 4735 10083 4858 10083 4858 10084 4735 10084 4859 10084 4859 10085 4735 10085 4749 10085 4859 10086 4749 10086 4751 10086 4733 10087 4860 10087 4861 10087 4861 10088 4860 10088 4734 10088 4734 10089 4862 10089 4735 10089 4970 10090 4863 10090 4975 10090 4975 10091 4863 10091 4864 10091 4975 10092 4864 10092 4973 10092 4973 10093 4864 10093 4979 10093 4979 10094 4864 10094 4865 10094 4979 10095 4865 10095 4866 10095 4866 10096 4865 10096 4869 10096 4866 10097 4869 10097 4987 10097 4987 10098 4869 10098 5056 10098 4864 10099 4758 10099 4865 10099 4865 10100 4758 10100 4867 10100 4867 10101 4758 10101 5603 10101 4867 10102 5603 10102 4762 10102 4758 10103 4760 10103 5603 10103 4762 10104 4763 10104 4867 10104 4868 10105 5055 10105 4869 10105 4869 10106 5055 10106 5056 10106 4766 10107 5055 10107 4868 10107 4870 10108 5055 10108 4766 10108 4768 10109 5055 10109 4870 10109 4769 10110 4871 10110 4768 10110 4768 10111 4871 10111 5054 10111 4770 10112 4777 10112 4769 10112 4769 10113 4777 10113 4791 10113 4769 10114 4791 10114 4871 10114 4772 10115 5695 10115 4770 10115 4770 10116 5695 10116 4777 10116 4791 10117 4777 10117 4778 10117 4778 10118 4777 10118 4776 10118 4778 10119 4776 10119 4779 10119 4791 10120 4778 10120 4790 10120 4790 10121 4778 10121 4787 10121 4790 10122 4787 10122 4788 10122 5054 10123 4871 10123 4872 10123 5054 10124 4872 10124 4873 10124 5054 10125 4873 10125 5057 10125 5057 10126 4873 10126 4874 10126 5057 10127 4874 10127 4875 10127 5057 10128 4875 10128 5066 10128 5066 10129 4875 10129 5010 10129 5066 10130 5010 10130 5058 10130 5010 10131 4875 10131 5015 10131 5015 10132 4875 10132 4876 10132 5015 10133 4876 10133 5019 10133 5019 10134 4876 10134 4877 10134 5019 10135 4877 10135 5023 10135 5023 10136 4877 10136 5022 10136 5022 10137 4877 10137 4880 10137 5022 10138 4880 10138 5027 10138 5027 10139 4880 10139 5217 10139 4877 10140 4876 10140 4879 10140 4879 10141 4876 10141 4793 10141 4879 10142 4793 10142 5986 10142 5986 10143 4793 10143 5985 10143 5985 10144 4793 10144 4878 10144 5986 10145 4795 10145 4879 10145 4797 10146 5214 10146 4880 10146 4880 10147 5214 10147 5217 10147 4798 10148 5214 10148 4797 10148 4799 10149 5214 10149 4798 10149 4801 10150 5214 10150 4799 10150 4883 10151 4825 10151 4801 10151 4801 10152 4825 10152 4828 10152 4801 10153 4828 10153 5214 10153 5214 10154 4828 10154 5216 10154 5216 10155 4828 10155 4881 10155 5216 10156 4881 10156 4830 10156 5216 10157 4830 10157 5213 10157 5213 10158 4830 10158 4831 10158 5213 10159 4831 10159 4882 10159 5213 10160 4882 10160 5218 10160 5218 10161 4882 10161 4618 10161 4885 10162 4817 10162 4883 10162 4883 10163 4817 10163 4808 10163 4883 10164 4808 10164 4825 10164 4825 10165 4808 10165 4824 10165 4824 10166 4808 10166 4821 10166 4824 10167 4821 10167 4884 10167 4803 10168 4886 10168 4885 10168 4885 10169 4886 10169 4817 10169 4817 10170 4820 10170 4808 10170 4618 10171 4882 10171 4890 10171 4890 10172 4882 10172 4839 10172 4890 10173 4839 10173 4891 10173 5217 10174 5215 10174 5027 10174 5027 10175 5215 10175 5032 10175 5032 10176 5215 10176 5033 10176 5033 10177 5215 10177 5047 10177 5047 10178 5215 10178 5036 10178 5036 10179 5215 10179 4616 10179 4616 10180 5215 10180 5218 10180 5167 10181 4945 10181 5165 10181 4945 10182 5167 10182 4944 10182 4944 10183 5167 10183 4962 10183 4962 10184 5167 10184 4960 10184 4960 10185 5167 10185 5164 10185 4960 10186 5164 10186 4952 10186 4952 10187 5164 10187 4971 10187 4840 10188 5113 10188 4899 10188 5110 10189 4899 10189 5113 10189 4899 10190 5110 10190 4900 10190 4900 10191 5110 10191 4914 10191 4914 10192 5110 10192 4907 10192 4907 10193 5110 10193 4918 10193 4918 10194 5110 10194 4908 10194 4908 10195 5110 10195 4927 10195 4927 10196 5110 10196 4930 10196 4930 10197 5110 10197 5111 10197 5054 10198 5055 10198 4768 10198 4987 10199 5056 10199 4984 10199 4984 10200 5056 10200 4996 10200 4996 10201 5056 10201 4990 10201 4990 10202 5056 10202 5058 10202 4990 10203 5058 10203 5006 10203 5006 10204 5058 10204 5013 10204 5013 10205 5058 10205 5010 10205 4899 10206 4893 10206 4840 10206 4685 10207 4894 10207 4895 10207 4895 10208 4896 10208 4891 10208 4891 10209 4896 10209 4888 10209 4889 10210 4890 10210 4887 10210 4887 10211 4891 10211 4888 10211 4889 10212 4887 10212 4888 10212 4887 10213 4890 10213 4891 10213 4895 10214 4897 10214 4896 10214 4894 10215 4893 10215 4897 10215 4897 10216 4893 10216 4892 10216 4897 10217 4895 10217 4894 10217 4898 10218 4896 10218 4897 10218 4898 10219 4897 10219 4892 10219 4899 10220 4903 10220 4893 10220 4893 10221 4903 10221 4892 10221 4903 10222 4899 10222 4902 10222 4899 10223 4900 10223 4901 10223 4902 10224 4900 10224 4904 10224 4902 10225 4901 10225 4900 10225 4903 10226 4902 10226 4904 10226 4902 10227 4899 10227 4901 10227 4914 10228 4915 10228 4900 10228 4900 10229 4915 10229 4904 10229 4909 10230 4907 10230 4910 10230 4905 10231 4910 10231 4906 10231 4905 10232 4906 10232 4914 10232 4906 10233 4912 10233 4914 10233 4924 10234 4923 10234 4908 10234 4908 10235 4923 10235 4911 10235 4914 10236 4912 10236 4915 10236 4911 10237 4918 10237 4908 10237 4910 10238 4907 10238 4918 10238 4910 10239 4918 10239 4911 10239 4909 10240 4905 10240 4914 10240 4917 10241 4910 10241 4905 10241 4912 10242 4906 10242 4919 10242 4919 10243 4920 10243 4916 10243 4915 10244 4916 10244 4920 10244 4915 10245 4920 10245 4913 10245 4914 10246 4907 10246 4909 10246 4915 10247 4912 10247 4916 10247 4916 10248 4912 10248 4919 10248 4910 10249 4917 10249 4909 10249 4919 10250 4906 10250 4910 10250 4910 10251 4911 10251 4921 10251 4910 10252 4921 10252 4919 10252 4920 10253 4919 10253 4921 10253 4920 10254 4921 10254 4922 10254 4920 10255 4922 10255 4913 10255 4911 10256 4923 10256 4921 10256 4922 10257 4921 10257 4924 10257 4924 10258 4921 10258 4923 10258 4924 10259 4913 10259 4922 10259 4927 10260 4932 10260 4908 10260 4908 10261 4932 10261 4924 10261 4927 10262 4931 10262 4932 10262 4927 10263 4930 10263 4928 10263 4928 10264 4926 10264 4931 10264 4931 10265 4926 10265 4925 10265 4927 10266 4928 10266 4931 10266 4929 10267 4931 10267 4925 10267 4680 10268 4929 10268 4925 10268 4929 10269 4932 10269 4931 10269 4680 10270 4932 10270 4929 10270 4926 10271 4928 10271 4930 10271 4937 10272 4934 10272 4926 10272 4926 10273 4934 10273 4925 10273 4937 10274 4936 10274 4934 10274 4937 10275 4935 10275 4936 10275 4936 10276 4935 10276 4933 10276 4936 10277 4933 10277 4934 10277 4939 10278 4941 10278 4935 10278 4935 10279 4941 10279 4933 10279 4941 10280 4939 10280 4942 10280 4939 10281 4938 10281 4942 10281 4942 10282 4938 10282 4940 10282 4941 10283 4942 10283 4940 10283 4945 10284 4946 10284 4938 10284 4938 10285 4946 10285 4940 10285 4946 10286 4945 10286 4943 10286 4948 10287 4945 10287 4944 10287 4945 10288 4948 10288 4943 10288 4943 10289 4944 10289 4947 10289 4946 10290 4943 10290 4947 10290 4944 10291 4943 10291 4948 10291 4962 10292 4963 10292 4944 10292 4944 10293 4963 10293 4947 10293 4967 10294 4965 10294 4954 10294 4955 10295 4954 10295 4958 10295 4956 10296 4967 10296 4952 10296 4962 10297 4953 10297 4963 10297 4963 10298 4953 10298 4955 10298 4949 10299 4960 10299 4964 10299 4960 10300 4949 10300 4961 10300 4962 10301 4960 10301 4961 10301 4949 10302 4950 10302 4961 10302 4950 10303 4949 10303 4951 10303 4951 10304 4949 10304 4964 10304 4966 10305 4951 10305 4952 10305 4953 10306 4950 10306 4955 10306 4950 10307 4954 10307 4955 10307 4965 10308 4967 10308 4956 10308 4958 10309 4965 10309 4957 10309 4959 10310 4958 10310 4957 10310 4959 10311 4957 10311 4956 10311 4958 10312 4959 10312 4955 10312 4961 10313 4953 10313 4962 10313 4961 10314 4950 10314 4953 10314 4959 10315 4963 10315 4955 10315 4950 10316 4951 10316 4966 10316 4954 10317 4950 10317 4966 10317 4954 10318 4965 10318 4958 10318 4964 10319 4960 10319 4952 10319 4951 10320 4964 10320 4952 10320 4954 10321 4966 10321 4967 10321 4967 10322 4966 10322 4952 10322 4957 10323 4965 10323 4956 10323 4971 10324 4972 10324 4952 10324 4952 10325 4972 10325 4956 10325 4971 10326 4969 10326 4972 10326 4971 10327 4970 10327 4969 10327 4969 10328 4970 10328 4968 10328 4972 10329 4969 10329 4968 10329 4975 10330 4977 10330 4970 10330 4970 10331 4977 10331 4968 10331 4975 10332 4976 10332 4977 10332 4975 10333 4973 10333 4974 10333 4975 10334 4974 10334 4976 10334 4976 10335 4973 10335 4978 10335 4977 10336 4976 10336 4978 10336 4973 10337 4976 10337 4974 10337 4979 10338 4980 10338 4973 10338 4973 10339 4980 10339 4978 10339 4979 10340 4866 10340 4981 10340 4981 10341 4866 10341 4982 10341 4979 10342 4981 10342 4980 10342 4980 10343 4981 10343 4982 10343 4987 10344 4646 10344 4866 10344 4866 10345 4646 10345 4982 10345 4646 10346 4987 10346 4983 10346 4985 10347 4987 10347 4984 10347 4987 10348 4985 10348 4983 10348 4983 10349 4984 10349 4988 10349 4646 10350 4983 10350 4986 10350 4986 10351 4983 10351 4988 10351 4983 10352 4985 10352 4984 10352 4988 10353 4646 10353 4986 10353 4996 10354 4999 10354 4984 10354 4984 10355 4999 10355 4988 10355 5001 10356 4990 10356 4991 10356 4996 10357 4997 10357 5002 10357 4992 10358 5007 10358 5003 10358 4992 10359 5003 10359 5002 10359 4999 10360 4998 10360 5000 10360 4994 10361 5007 10361 5006 10361 5006 10362 5007 10362 4989 10362 4996 10363 4993 10363 4999 10363 4999 10364 4993 10364 4998 10364 5005 10365 4990 10365 5006 10365 4991 10366 4990 10366 5005 10366 4997 10367 5001 10367 4991 10367 4991 10368 4992 10368 4997 10368 4997 10369 4992 10369 5002 10369 4992 10370 4991 10370 4989 10370 4993 10371 5002 10371 4998 10371 5002 10372 5003 10372 4998 10372 4998 10373 5003 10373 5000 10373 5003 10374 5004 10374 5000 10374 5004 10375 5003 10375 4995 10375 4990 10376 5001 10376 4996 10376 4997 10377 4996 10377 5001 10377 4993 10378 4996 10378 5002 10378 5004 10379 4999 10379 5000 10379 4989 10380 5005 10380 5006 10380 4991 10381 5005 10381 4989 10381 4992 10382 4989 10382 5007 10382 5003 10383 5007 10383 4995 10383 5004 10384 4995 10384 4994 10384 4994 10385 4995 10385 5007 10385 5013 10386 5008 10386 5006 10386 5006 10387 5008 10387 4994 10387 5013 10388 5009 10388 5008 10388 5008 10389 5009 10389 5011 10389 5009 10390 5010 10390 5012 10390 5011 10391 5009 10391 5012 10391 5008 10392 5011 10392 5012 10392 5009 10393 5013 10393 5010 10393 5015 10394 5014 10394 5010 10394 5010 10395 5014 10395 5012 10395 5014 10396 5015 10396 5018 10396 5018 10397 5019 10397 5016 10397 5017 10398 5015 10398 5019 10398 5018 10399 5017 10399 5019 10399 5015 10400 5017 10400 5018 10400 5014 10401 5018 10401 5016 10401 5023 10402 5020 10402 5019 10402 5019 10403 5020 10403 5016 10403 5023 10404 5021 10404 5020 10404 5021 10405 5022 10405 5026 10405 5021 10406 5025 10406 5022 10406 5023 10407 5025 10407 5021 10407 5024 10408 5021 10408 5026 10408 5020 10409 5024 10409 5026 10409 5025 10410 5023 10410 5022 10410 5024 10411 5020 10411 5021 10411 5027 10412 5030 10412 5022 10412 5022 10413 5030 10413 5026 10413 5030 10414 5027 10414 5031 10414 5030 10415 5031 10415 5029 10415 5027 10416 5032 10416 5031 10416 5031 10417 5032 10417 5028 10417 5029 10418 5031 10418 5028 10418 5030 10419 5029 10419 5028 10419 5033 10420 5043 10420 5032 10420 5032 10421 5043 10421 5028 10421 5051 10422 5036 10422 5052 10422 5044 10423 5038 10423 5048 10423 5049 10424 5052 10424 5036 10424 5033 10425 5037 10425 5043 10425 5047 10426 5034 10426 5041 10426 5050 10427 5034 10427 5036 10427 5034 10428 5035 10428 5041 10428 5033 10429 5041 10429 5042 10429 5041 10430 5035 10430 5042 10430 5051 10431 5035 10431 5050 10431 5051 10432 5050 10432 5036 10432 5038 10433 5035 10433 5051 10433 5039 10434 5038 10434 5052 10434 5039 10435 5052 10435 5049 10435 5043 10436 5044 10436 5045 10436 5044 10437 5048 10437 5045 10437 5040 10438 5039 10438 5049 10438 5046 10439 5048 10439 5040 10439 5043 10440 5045 10440 5046 10440 5046 10441 5040 10441 5049 10441 5033 10442 5047 10442 5041 10442 5033 10443 5042 10443 5037 10443 5043 10444 5037 10444 5044 10444 5044 10445 5037 10445 5038 10445 5038 10446 5042 10446 5035 10446 5038 10447 5037 10447 5042 10447 5046 10448 5045 10448 5048 10448 5034 10449 5050 10449 5035 10449 5038 10450 5051 10450 5052 10450 5048 10451 5038 10451 5039 10451 5048 10452 5039 10452 5040 10452 5036 10453 5034 10453 5047 10453 4616 10454 4615 10454 5036 10454 5036 10455 4615 10455 5049 10455 5057 10456 5062 10456 5054 10456 5055 10457 5054 10457 5061 10457 5055 10458 5068 10458 5056 10458 5056 10459 5060 10459 5058 10459 5056 10460 5059 10460 5060 10460 5066 10461 5058 10461 5070 10461 5057 10462 5066 10462 5064 10462 5056 10463 5068 10463 5059 10463 5057 10464 5064 10464 5062 10464 5055 10465 5061 10465 5068 10465 5059 10466 5067 10466 5060 10466 5058 10467 5060 10467 5063 10467 5058 10468 5063 10468 5070 10468 5066 10469 5070 10469 5076 10469 5054 10470 5062 10470 5061 10470 5062 10471 5064 10471 5073 10471 5068 10472 5085 10472 5059 10472 5061 10473 5072 10473 5068 10473 5059 10474 5065 10474 5067 10474 5060 10475 5075 10475 5063 10475 5062 10476 5073 10476 5061 10476 5073 10477 5084 10477 5061 10477 5061 10478 5084 10478 5069 10478 5061 10479 5069 10479 5072 10479 5066 10480 5076 10480 5064 10480 5067 10481 5065 10481 5077 10481 5059 10482 5085 10482 5065 10482 5067 10483 5075 10483 5060 10483 5067 10484 5077 10484 5075 10484 5064 10485 5071 10485 5073 10485 5064 10486 5076 10486 5071 10486 5068 10487 5072 10487 5074 10487 5068 10488 5074 10488 5085 10488 5072 10489 5069 10489 5074 10489 5065 10490 5079 10490 5077 10490 5075 10491 5078 10491 5063 10491 5076 10492 5083 10492 5071 10492 5063 10493 5078 10493 5082 10493 5063 10494 5082 10494 5070 10494 5076 10495 5070 10495 5087 10495 5076 10496 5087 10496 5083 10496 5073 10497 5071 10497 5081 10497 5069 10498 5084 10498 5098 10498 5070 10499 5082 10499 5087 10499 5065 10500 5085 10500 5079 10500 5073 10501 5081 10501 5084 10501 5075 10502 5077 10502 5080 10502 5077 10503 5079 10503 5080 10503 5075 10504 5080 10504 5078 10504 5078 10505 5080 10505 5096 10505 5074 10506 5091 10506 5085 10506 5081 10507 5071 10507 5105 10507 5069 10508 5098 10508 5074 10508 5081 10509 5105 10509 5084 10509 5079 10510 5086 10510 5080 10510 5071 10511 5083 10511 5097 10511 5078 10512 5096 10512 5095 10512 5078 10513 5095 10513 5082 10513 5082 10514 5092 10514 5087 10514 5074 10515 5098 10515 5091 10515 5084 10516 5105 10516 5088 10516 5084 10517 5088 10517 5098 10517 5085 10518 5091 10518 5090 10518 5085 10519 5090 10519 5079 10519 5080 10520 5086 10520 5096 10520 5079 10521 5090 10521 5086 10521 5071 10522 5097 10522 5105 10522 5082 10523 5095 10523 5092 10523 5087 10524 5093 10524 5083 10524 5086 10525 5090 10525 5089 10525 5086 10526 5089 10526 5096 10526 5091 10527 5098 10527 5094 10527 5087 10528 5092 10528 5093 10528 5091 10529 5094 10529 5090 10529 5090 10530 5101 10530 5089 10530 5090 10531 5094 10531 5101 10531 5083 10532 5093 10532 5107 10532 5083 10533 5107 10533 5097 10533 5095 10534 5096 10534 5099 10534 5095 10535 5099 10535 5092 10535 5098 10536 5088 10536 5108 10536 5096 10537 5089 10537 5099 10537 5097 10538 5104 10538 5105 10538 5097 10539 5107 10539 5104 10539 5089 10540 5100 10540 5099 10540 5092 10541 5099 10541 5106 10541 5092 10542 5106 10542 5093 10542 5098 10543 5108 10543 5094 10543 5093 10544 5106 10544 5107 10544 5088 10545 5105 10545 5102 10545 5088 10546 5102 10546 5108 10546 5089 10547 5101 10547 5100 10547 5094 10548 5108 10548 5053 10548 5094 10549 5053 10549 5101 10549 5101 10550 5103 10550 5100 10550 5101 10551 5053 10551 5103 10551 5105 10552 5104 10552 5102 10552 5099 10553 5100 10553 5106 10553 5110 10554 5113 10554 5118 10554 5110 10555 5118 10555 5114 10555 5110 10556 5114 10556 5111 10556 5112 10557 5117 10557 5119 10557 5117 10558 5115 10558 5123 10558 5112 10559 5126 10559 5113 10559 5112 10560 5119 10560 5126 10560 5113 10561 5125 10561 5118 10561 5113 10562 5126 10562 5125 10562 5111 10563 5114 10563 5121 10563 5111 10564 5116 10564 5115 10564 5111 10565 5121 10565 5116 10565 5117 10566 5123 10566 5122 10566 5115 10567 5116 10567 5120 10567 5117 10568 5122 10568 5119 10568 5115 10569 5120 10569 5123 10569 5116 10570 5135 10570 5120 10570 5116 10571 5121 10571 5124 10571 5126 10572 5130 10572 5125 10572 5114 10573 5118 10573 5129 10573 5116 10574 5124 10574 5135 10574 5123 10575 5120 10575 5134 10575 5118 10576 5127 10576 5129 10576 5119 10577 5128 10577 5126 10577 5118 10578 5125 10578 5127 10578 5123 10579 5134 10579 5132 10579 5114 10580 5129 10580 5121 10580 5125 10581 5130 10581 5133 10581 5125 10582 5133 10582 5127 10582 5121 10583 5129 10583 5137 10583 5121 10584 5137 10584 5124 10584 5119 10585 5122 10585 5128 10585 5123 10586 5132 10586 5122 10586 5128 10587 5131 10587 5126 10587 5120 10588 5135 10588 5134 10588 5126 10589 5131 10589 5130 10589 5122 10590 5132 10590 5136 10590 5130 10591 5131 10591 5155 10591 5124 10592 5137 10592 5148 10592 5124 10593 5148 10593 5135 10593 5127 10594 5139 10594 5129 10594 5129 10595 5139 10595 5137 10595 5127 10596 5133 10596 5138 10596 5122 10597 5136 10597 5128 10597 5133 10598 5130 10598 5138 10598 5127 10599 5138 10599 5139 10599 5130 10600 5155 10600 5138 10600 5128 10601 5136 10601 5156 10601 5128 10602 5156 10602 5131 10602 5134 10603 5135 10603 5141 10603 5132 10604 5143 10604 5145 10604 5132 10605 5145 10605 5136 10605 5132 10606 5134 10606 5143 10606 5138 10607 5155 10607 5147 10607 5134 10608 5141 10608 5143 10608 5131 10609 5156 10609 5144 10609 5131 10610 5144 10610 5155 10610 5135 10611 5148 10611 5146 10611 5135 10612 5146 10612 5141 10612 5136 10613 5145 10613 5142 10613 5139 10614 5149 10614 5137 10614 5139 10615 5138 10615 5140 10615 5139 10616 5140 10616 5149 10616 5136 10617 5142 10617 5156 10617 5148 10618 5137 10618 5150 10618 5137 10619 5149 10619 5150 10619 5143 10620 5151 10620 5145 10620 5143 10621 5141 10621 5151 10621 5142 10622 5145 10622 5157 10622 5142 10623 5157 10623 5156 10623 5141 10624 5146 10624 5151 10624 5145 10625 5151 10625 5157 10625 5138 10626 5147 10626 5153 10626 5138 10627 5153 10627 5140 10627 5140 10628 5153 10628 5149 10628 5146 10629 5148 10629 5160 10629 5151 10630 5109 10630 5157 10630 5148 10631 5150 10631 5160 10631 5147 10632 5155 10632 5152 10632 5147 10633 5152 10633 5153 10633 5150 10634 5149 10634 5160 10634 5156 10635 5157 10635 5161 10635 5151 10636 5146 10636 5154 10636 5151 10637 5154 10637 5109 10637 5144 10638 5158 10638 5155 10638 5144 10639 5156 10639 5161 10639 5144 10640 5161 10640 5158 10640 5155 10641 5158 10641 5152 10641 5152 10642 5159 10642 5153 10642 5152 10643 5158 10643 5159 10643 5146 10644 5160 10644 5154 10644 5153 10645 5159 10645 5149 10645 5157 10646 5109 10646 5161 10646 5149 10647 5159 10647 5160 10647 5164 10648 5171 10648 5163 10648 5164 10649 5173 10649 5171 10649 5163 10650 5168 10650 5166 10650 5163 10651 5171 10651 5168 10651 5165 10652 5162 10652 5178 10652 5167 10653 5165 10653 5170 10653 5166 10654 5168 10654 5174 10654 5164 10655 5167 10655 5179 10655 5166 10656 5172 10656 5169 10656 5167 10657 5170 10657 5179 10657 5166 10658 5174 10658 5172 10658 5162 10659 5175 10659 5178 10659 5169 10660 5172 10660 5176 10660 5169 10661 5183 10661 5162 10661 5165 10662 5178 10662 5187 10662 5169 10663 5176 10663 5183 10663 5165 10664 5187 10664 5170 10664 5168 10665 5185 10665 5174 10665 5164 10666 5179 10666 5184 10666 5164 10667 5184 10667 5173 10667 5172 10668 5174 10668 5190 10668 5162 10669 5183 10669 5175 10669 5168 10670 5171 10670 5185 10670 5179 10671 5170 10671 5181 10671 5172 10672 5190 10672 5176 10672 5174 10673 5185 10673 5190 10673 5173 10674 5184 10674 5177 10674 5173 10675 5177 10675 5171 10675 5176 10676 5190 10676 5182 10676 5170 10677 5187 10677 5181 10677 5171 10678 5177 10678 5185 10678 5185 10679 5180 10679 5190 10679 5176 10680 5182 10680 5183 10680 5177 10681 5184 10681 5189 10681 5179 10682 5181 10682 5188 10682 5179 10683 5188 10683 5184 10683 5177 10684 5189 10684 5185 10684 5187 10685 5196 10685 5181 10685 5184 10686 5188 10686 5186 10686 5178 10687 5175 10687 5195 10687 5178 10688 5195 10688 5187 10688 5175 10689 5194 10689 5195 10689 5175 10690 5183 10690 5194 10690 5182 10691 5193 10691 5183 10691 5182 10692 5190 10692 5191 10692 5182 10693 5191 10693 5193 10693 5184 10694 5186 10694 5189 10694 5185 10695 5189 10695 5199 10695 5187 10696 5195 10696 5196 10696 5181 10697 5196 10697 5188 10697 5180 10698 5185 10698 5197 10698 5185 10699 5199 10699 5197 10699 5180 10700 5197 10700 5190 10700 5183 10701 5192 10701 5194 10701 5190 10702 5197 10702 5191 10702 5183 10703 5193 10703 5192 10703 5196 10704 5209 10704 5188 10704 5188 10705 5209 10705 5210 10705 5189 10706 5186 10706 5204 10706 5197 10707 5199 10707 5200 10707 5191 10708 5197 10708 5203 10708 5196 10709 5195 10709 5209 10709 5197 10710 5200 10710 5203 10710 5193 10711 5191 10711 5201 10711 5193 10712 5201 10712 5192 10712 5199 10713 5189 10713 5198 10713 5189 10714 5204 10714 5198 10714 5195 10715 5194 10715 5202 10715 5195 10716 5202 10716 5209 10716 5186 10717 5188 10717 5204 10717 5191 10718 5203 10718 5201 10718 5194 10719 5192 10719 5202 10719 5188 10720 5210 10720 5205 10720 5188 10721 5205 10721 5204 10721 5192 10722 5201 10722 5202 10722 5199 10723 5198 10723 5211 10723 5199 10724 5211 10724 5200 10724 5200 10725 5212 10725 5203 10725 5209 10726 5207 10726 5210 10726 5202 10727 5208 10727 5209 10727 5202 10728 5201 10728 5206 10728 5200 10729 5211 10729 5212 10729 5203 10730 5212 10730 5206 10730 5203 10731 5206 10731 5201 10731 5198 10732 5204 10732 5211 10732 5202 10733 5206 10733 5208 10733 5209 10734 5208 10734 5207 10734 5210 10735 5207 10735 5205 10735 5214 10736 5220 10736 5217 10736 5214 10737 5216 10737 5221 10737 5214 10738 5221 10738 5222 10738 5215 10739 5224 10739 5218 10739 5213 10740 5218 10740 5226 10740 5214 10741 5222 10741 5220 10741 5218 10742 5219 10742 5226 10742 5217 10743 5220 10743 5223 10743 5215 10744 5217 10744 5241 10744 5213 10745 5226 10745 5228 10745 5217 10746 5223 10746 5225 10746 5215 10747 5241 10747 5224 10747 5213 10748 5228 10748 5216 10748 5217 10749 5225 10749 5241 10749 5218 10750 5224 10750 5219 10750 5226 10751 5230 10751 5228 10751 5220 10752 5222 10752 5237 10752 5226 10753 5227 10753 5230 10753 5216 10754 5228 10754 5221 10754 5222 10755 5221 10755 5237 10755 5219 10756 5224 10756 5234 10756 5219 10757 5227 10757 5226 10757 5219 10758 5234 10758 5227 10758 5224 10759 5249 10759 5234 10759 5220 10760 5237 10760 5229 10760 5220 10761 5229 10761 5223 10761 5221 10762 5231 10762 5237 10762 5221 10763 5228 10763 5231 10763 5224 10764 5241 10764 5249 10764 5231 10765 5235 10765 5237 10765 5227 10766 5234 10766 5232 10766 5227 10767 5232 10767 5233 10767 5227 10768 5233 10768 5230 10768 5223 10769 5229 10769 5225 10769 5228 10770 5230 10770 5250 10770 5228 10771 5250 10771 5231 10771 5241 10772 5225 10772 5236 10772 5230 10773 5233 10773 5240 10773 5230 10774 5240 10774 5250 10774 5225 10775 5229 10775 5238 10775 5225 10776 5238 10776 5236 10776 5234 10777 5249 10777 5242 10777 5234 10778 5242 10778 5232 10778 5229 10779 5237 10779 5246 10779 5232 10780 5239 10780 5233 10780 5229 10781 5259 10781 5238 10781 5233 10782 5239 10782 5240 10782 5231 10783 5251 10783 5235 10783 5229 10784 5246 10784 5259 10784 5231 10785 5250 10785 5251 10785 5238 10786 5259 10786 5236 10786 5236 10787 5259 10787 5248 10787 5241 10788 5236 10788 5256 10788 5241 10789 5256 10789 5249 10789 5239 10790 5244 10790 5240 10790 5235 10791 5251 10791 5243 10791 5235 10792 5243 10792 5237 10792 5250 10793 5240 10793 5247 10793 5236 10794 5248 10794 5256 10794 5232 10795 5245 10795 5239 10795 5239 10796 5245 10796 5244 10796 5232 10797 5242 10797 5245 10797 5237 10798 5243 10798 5246 10798 5249 10799 5252 10799 5242 10799 5250 10800 5247 10800 5251 10800 5240 10801 5244 10801 5255 10801 5240 10802 5255 10802 5247 10802 5249 10803 5256 10803 5252 10803 5245 10804 5242 10804 5254 10804 5246 10805 5243 10805 5253 10805 5242 10806 5252 10806 5254 10806 5245 10807 5254 10807 5244 10807 5251 10808 5258 10808 5243 10808 5243 10809 5258 10809 5253 10809 5244 10810 5254 10810 5257 10810 5244 10811 5257 10811 5255 10811 5254 10812 5252 10812 5263 10812 5247 10813 5255 10813 5260 10813 5248 10814 5259 10814 5262 10814 5254 10815 5263 10815 5265 10815 5246 10816 5253 10816 5266 10816 5246 10817 5266 10817 5259 10817 5254 10818 5265 10818 5257 10818 5258 10819 5261 10819 5253 10819 5248 10820 5262 10820 5256 10820 5255 10821 5257 10821 5260 10821 5259 10822 5267 10822 5262 10822 5256 10823 5262 10823 5252 10823 5252 10824 5262 10824 5263 10824 5247 10825 5260 10825 5251 10825 5258 10826 5251 10826 5261 10826 5253 10827 5261 10827 5266 10827 5251 10828 5260 10828 5261 10828 5259 10829 5266 10829 5267 10829 5266 10830 5261 10830 5264 10830 5260 10831 5257 10831 5264 10831 5260 10832 5264 10832 5261 10832 5465 10833 5468 10833 5269 10833 5269 10834 5468 10834 5268 10834 5268 10835 5516 10835 5269 10835 5414 10836 5271 10836 5270 10836 5270 10837 5271 10837 5272 10837 5270 10838 5272 10838 5319 10838 5414 10839 5413 10839 5271 10839 5271 10840 5317 10840 5272 10840 5272 10841 5317 10841 5273 10841 5273 10842 5317 10842 5468 10842 5273 10843 5468 10843 5470 10843 5410 10844 5468 10844 5317 10844 5409 10845 5561 10845 5410 10845 5408 10846 5562 10846 5409 10846 5409 10847 5562 10847 5561 10847 5274 10848 5278 10848 5408 10848 5408 10849 5278 10849 5557 10849 5408 10850 5557 10850 5562 10850 5275 10851 5400 10851 5274 10851 5274 10852 5400 10852 5399 10852 5274 10853 5399 10853 5278 10853 5404 10854 5403 10854 5275 10854 5275 10855 5403 10855 5400 10855 5399 10856 5400 10856 6190 10856 5399 10857 6190 10857 5276 10857 5276 10858 6190 10858 6192 10858 5276 10859 6192 10859 5277 10859 5557 10860 5278 10860 5279 10860 5557 10861 5279 10861 5558 10861 5558 10862 5279 10862 5280 10862 5558 10863 5280 10863 5560 10863 5560 10864 5280 10864 5515 10864 5515 10865 5280 10865 5512 10865 5512 10866 5280 10866 5281 10866 5512 10867 5281 10867 5386 10867 5512 10868 5386 10868 5510 10868 5510 10869 5386 10869 5316 10869 5510 10870 5316 10870 5504 10870 5504 10871 5316 10871 5526 10871 5386 10872 5281 10872 5387 10872 5387 10873 5281 10873 5395 10873 5387 10874 5395 10874 5390 10874 5390 10875 5395 10875 5391 10875 5391 10876 5395 10876 5393 10876 5390 10877 5389 10877 5387 10877 5282 10878 5527 10878 5316 10878 5316 10879 5527 10879 5526 10879 5382 10880 5520 10880 5282 10880 5282 10881 5520 10881 5527 10881 5381 10882 5372 10882 5382 10882 5382 10883 5372 10883 5283 10883 5382 10884 5283 10884 5520 10884 5520 10885 5283 10885 5284 10885 5520 10886 5284 10886 5519 10886 5519 10887 5284 10887 5369 10887 5519 10888 5369 10888 5495 10888 5519 10889 5495 10889 5315 10889 5315 10890 5495 10890 5500 10890 5380 10891 5375 10891 5381 10891 5381 10892 5375 10892 5374 10892 5381 10893 5374 10893 5372 10893 5372 10894 5374 10894 5285 10894 5285 10895 5374 10895 5286 10895 5285 10896 5286 10896 5373 10896 5379 10897 6208 10897 5380 10897 5380 10898 6208 10898 5375 10898 5495 10899 5369 10899 5493 10899 5493 10900 5369 10900 5287 10900 5493 10901 5287 10901 5494 10901 5494 10902 5287 10902 5288 10902 5494 10903 5288 10903 5290 10903 5494 10904 5290 10904 5490 10904 5490 10905 5290 10905 5542 10905 5287 10906 5367 10906 5288 10906 5288 10907 5367 10907 5360 10907 5360 10908 5367 10908 5289 10908 5360 10909 5289 10909 5361 10909 5365 10910 5364 10910 5367 10910 5367 10911 5364 10911 5289 10911 5291 10912 5549 10912 5290 10912 5290 10913 5549 10913 5542 10913 5291 10914 5550 10914 5549 10914 5314 10915 5550 10915 5291 10915 5292 10916 5293 10916 5314 10916 5314 10917 5293 10917 5551 10917 5314 10918 5551 10918 5550 10918 5357 10919 5295 10919 5292 10919 5292 10920 5295 10920 5296 10920 5292 10921 5296 10921 5293 10921 5355 10922 5294 10922 5357 10922 5357 10923 5294 10923 5295 10923 5295 10924 5353 10924 5351 10924 5295 10925 5351 10925 5296 10925 5296 10926 5351 10926 5347 10926 5347 10927 5351 10927 5297 10927 5347 10928 5297 10928 5349 10928 5551 10929 5293 10929 5343 10929 5551 10930 5343 10930 5298 10930 5298 10931 5343 10931 5299 10931 5298 10932 5299 10932 5484 10932 5298 10933 5484 10933 5548 10933 5484 10934 5299 10934 5300 10934 5300 10935 5299 10935 5301 10935 5300 10936 5301 10936 5302 10936 5300 10937 5302 10937 5480 10937 5480 10938 5302 10938 5479 10938 5479 10939 5302 10939 5303 10939 5479 10940 5303 10940 5534 10940 5302 10941 5301 10941 5335 10941 5335 10942 5301 10942 5304 10942 5335 10943 5304 10943 5339 10943 5339 10944 5304 10944 5341 10944 5341 10945 5304 10945 5342 10945 5339 10946 5338 10946 5335 10946 5305 10947 5538 10947 5303 10947 5303 10948 5538 10948 5534 10948 5332 10949 5306 10949 5305 10949 5305 10950 5306 10950 5538 10950 5310 10951 5307 10951 5332 10951 5332 10952 5307 10952 5320 10952 5332 10953 5320 10953 5306 10953 5306 10954 5320 10954 5308 10954 5306 10955 5308 10955 5536 10955 5536 10956 5308 10956 5309 10956 5536 10957 5309 10957 5539 10957 5539 10958 5309 10958 5472 10958 5331 10959 5325 10959 5310 10959 5310 10960 5325 10960 5312 10960 5310 10961 5312 10961 5307 10961 5307 10962 5312 10962 5311 10962 5311 10963 5312 10963 5323 10963 5311 10964 5323 10964 5322 10964 5329 10965 5327 10965 5331 10965 5331 10966 5327 10966 5325 10966 5472 10967 5309 10967 5313 10967 5313 10968 5309 10968 5273 10968 5313 10969 5273 10969 5470 10969 5410 10970 5561 10970 5559 10970 5410 10971 5559 10971 5268 10971 5268 10972 5559 10972 5517 10972 5517 10973 5559 10973 5518 10973 5518 10974 5559 10974 5560 10974 5518 10975 5560 10975 5515 10975 5490 10976 5542 10976 5488 10976 5488 10977 5542 10977 5485 10977 5485 10978 5542 10978 5548 10978 5485 10979 5548 10979 5487 10979 5487 10980 5548 10980 5484 10980 5479 10981 5534 10981 5537 10981 5479 10982 5537 10982 5476 10982 5476 10983 5537 10983 5477 10983 5477 10984 5537 10984 5475 10984 5475 10985 5537 10985 5539 10985 5475 10986 5539 10986 5472 10986 5526 10987 5506 10987 5504 10987 5506 10988 5526 10988 5498 10988 5498 10989 5526 10989 5315 10989 5498 10990 5315 10990 5501 10990 5501 10991 5315 10991 5500 10991 5268 10992 5468 10992 5410 10992 5418 10993 5270 10993 5318 10993 5318 10994 5270 10994 5319 10994 5318 10995 5319 10995 5417 10995 5417 10996 5319 10996 5272 10996 5417 10997 5272 10997 5420 10997 5420 10998 5272 10998 5273 10998 5420 10999 5273 10999 5463 10999 5463 11000 5273 11000 5309 11000 5463 11001 5309 11001 5421 11001 5421 11002 5309 11002 5308 11002 5421 11003 5308 11003 5422 11003 5422 11004 5308 11004 5320 11004 5422 11005 5320 11005 5423 11005 5423 11006 5320 11006 5307 11006 5423 11007 5307 11007 5424 11007 5424 11008 5307 11008 5311 11008 5424 11009 5311 11009 5321 11009 5321 11010 5311 11010 5322 11010 5321 11011 5322 11011 5425 11011 5425 11012 5322 11012 5323 11012 5425 11013 5323 11013 5326 11013 5326 11014 5323 11014 5312 11014 5325 11015 5326 11015 5312 11015 5326 11016 5325 11016 5324 11016 5324 11017 5325 11017 5427 11017 5427 11018 5325 11018 5327 11018 5427 11019 5327 11019 5328 11019 5328 11020 5327 11020 5329 11020 5328 11021 5329 11021 5330 11021 5330 11022 5329 11022 5331 11022 5330 11023 5331 11023 5426 11023 5426 11024 5331 11024 5310 11024 5426 11025 5310 11025 5333 11025 5333 11026 5310 11026 5332 11026 5333 11027 5332 11027 5428 11027 5428 11028 5332 11028 5305 11028 5428 11029 5305 11029 5334 11029 5334 11030 5305 11030 5303 11030 5334 11031 5303 11031 5429 11031 5429 11032 5303 11032 5302 11032 5429 11033 5302 11033 5433 11033 5433 11034 5302 11034 5335 11034 5433 11035 5335 11035 5336 11035 5336 11036 5335 11036 5338 11036 5336 11037 5338 11037 5337 11037 5337 11038 5338 11038 5339 11038 5337 11039 5339 11039 5340 11039 5340 11040 5339 11040 5341 11040 5340 11041 5341 11041 5434 11041 5434 11042 5341 11042 5342 11042 5434 11043 5342 11043 5432 11043 5432 11044 5342 11044 5304 11044 5432 11045 5304 11045 5430 11045 5430 11046 5304 11046 5301 11046 5430 11047 5301 11047 5431 11047 5431 11048 5301 11048 5299 11048 5431 11049 5299 11049 5435 11049 5435 11050 5299 11050 5343 11050 5435 11051 5343 11051 5344 11051 5344 11052 5343 11052 5293 11052 5344 11053 5293 11053 5345 11053 5345 11054 5293 11054 5296 11054 5345 11055 5296 11055 5346 11055 5346 11056 5296 11056 5347 11056 5346 11057 5347 11057 5348 11057 5348 11058 5347 11058 5349 11058 5348 11059 5349 11059 5439 11059 5439 11060 5349 11060 5297 11060 5439 11061 5297 11061 5350 11061 5350 11062 5297 11062 5351 11062 5353 11063 5295 11063 5352 11063 5353 11064 5352 11064 5350 11064 5353 11065 5350 11065 5351 11065 5352 11066 5295 11066 5438 11066 5438 11067 5295 11067 5294 11067 5438 11068 5294 11068 5354 11068 5354 11069 5294 11069 5355 11069 5354 11070 5355 11070 5356 11070 5356 11071 5355 11071 5357 11071 5356 11072 5357 11072 5358 11072 5358 11073 5357 11073 5292 11073 5358 11074 5292 11074 5436 11074 5436 11075 5292 11075 5314 11075 5436 11076 5314 11076 5437 11076 5437 11077 5314 11077 5291 11077 5437 11078 5291 11078 5359 11078 5359 11079 5291 11079 5290 11079 5359 11080 5290 11080 5440 11080 5440 11081 5290 11081 5288 11081 5440 11082 5288 11082 5442 11082 5442 11083 5288 11083 5360 11083 5442 11084 5360 11084 5362 11084 5362 11085 5360 11085 5361 11085 5362 11086 5361 11086 5363 11086 5363 11087 5361 11087 5289 11087 5363 11088 5289 11088 5443 11088 5443 11089 5289 11089 5364 11089 5443 11090 5364 11090 5444 11090 5444 11091 5364 11091 5365 11091 5444 11092 5365 11092 5366 11092 5366 11093 5365 11093 5367 11093 5366 11094 5367 11094 5441 11094 5441 11095 5367 11095 5287 11095 5441 11096 5287 11096 5368 11096 5368 11097 5287 11097 5369 11097 5368 11098 5369 11098 5370 11098 5370 11099 5369 11099 5284 11099 5370 11100 5284 11100 5445 11100 5445 11101 5284 11101 5283 11101 5445 11102 5283 11102 5446 11102 5446 11103 5283 11103 5372 11103 5446 11104 5372 11104 5371 11104 5371 11105 5372 11105 5285 11105 5371 11106 5285 11106 5448 11106 5448 11107 5285 11107 5373 11107 5448 11108 5373 11108 5449 11108 5449 11109 5373 11109 5286 11109 5449 11110 5286 11110 5376 11110 5376 11111 5286 11111 5374 11111 5375 11112 5667 11112 5374 11112 5667 11113 5376 11113 5374 11113 5667 11114 5375 11114 5377 11114 5377 11115 5375 11115 6208 11115 5377 11116 6208 11116 5378 11116 5378 11117 6208 11117 5379 11117 5378 11118 5379 11118 5450 11118 5450 11119 5379 11119 5380 11119 5450 11120 5380 11120 5447 11120 5447 11121 5380 11121 5381 11121 5447 11122 5381 11122 5451 11122 5451 11123 5381 11123 5382 11123 5451 11124 5382 11124 5383 11124 5383 11125 5382 11125 5282 11125 5383 11126 5282 11126 5384 11126 5384 11127 5282 11127 5316 11127 5384 11128 5316 11128 5385 11128 5385 11129 5316 11129 5386 11129 5385 11130 5386 11130 5453 11130 5453 11131 5386 11131 5387 11131 5453 11132 5387 11132 5388 11132 5388 11133 5387 11133 5389 11133 5388 11134 5389 11134 5454 11134 5454 11135 5389 11135 5390 11135 5454 11136 5390 11136 5742 11136 5742 11137 5390 11137 5391 11137 5742 11138 5391 11138 5392 11138 5392 11139 5391 11139 5393 11139 5392 11140 5393 11140 5394 11140 5394 11141 5393 11141 5395 11141 5394 11142 5395 11142 5452 11142 5452 11143 5395 11143 5281 11143 5452 11144 5281 11144 5396 11144 5396 11145 5281 11145 5280 11145 5396 11146 5280 11146 5397 11146 5397 11147 5280 11147 5279 11147 5397 11148 5279 11148 5456 11148 5456 11149 5279 11149 5278 11149 5456 11150 5278 11150 5398 11150 5398 11151 5278 11151 5399 11151 5398 11152 5399 11152 5461 11152 5461 11153 5399 11153 5276 11153 5461 11154 5276 11154 5459 11154 5459 11155 5276 11155 5277 11155 5459 11156 5277 11156 5460 11156 5460 11157 5277 11157 6192 11157 5460 11158 6192 11158 5462 11158 5462 11159 6192 11159 6190 11159 6190 11160 5401 11160 5462 11160 5400 11161 5401 11161 6190 11161 5401 11162 5400 11162 5402 11162 5402 11163 5400 11163 5403 11163 5402 11164 5403 11164 5405 11164 5405 11165 5403 11165 5404 11165 5405 11166 5404 11166 5406 11166 5406 11167 5404 11167 5275 11167 5406 11168 5275 11168 5455 11168 5455 11169 5275 11169 5274 11169 5455 11170 5274 11170 5407 11170 5407 11171 5274 11171 5408 11171 5407 11172 5408 11172 5457 11172 5457 11173 5408 11173 5409 11173 5457 11174 5409 11174 5458 11174 5458 11175 5409 11175 5410 11175 5458 11176 5410 11176 5411 11176 5411 11177 5410 11177 5317 11177 5411 11178 5317 11178 5416 11178 5416 11179 5317 11179 5271 11179 5416 11180 5271 11180 5412 11180 5412 11181 5271 11181 5413 11181 5412 11182 5413 11182 5415 11182 5415 11183 5413 11183 5414 11183 5415 11184 5414 11184 5418 11184 5418 11185 5414 11185 5270 11185 5412 11186 5415 11186 5416 11186 5416 11187 5415 11187 5418 11187 5416 11188 5418 11188 5417 11188 5417 11189 5418 11189 5318 11189 5417 11190 5420 11190 5416 11190 5416 11191 5420 11191 5411 11191 5411 11192 5420 11192 5419 11192 5411 11193 5419 11193 5464 11193 5463 11194 5419 11194 5420 11194 5421 11195 5531 11195 5463 11195 5421 11196 5529 11196 5531 11196 5422 11197 5529 11197 5421 11197 5423 11198 5333 11198 5422 11198 5422 11199 5333 11199 5528 11199 5422 11200 5528 11200 5529 11200 5424 11201 5326 11201 5423 11201 5423 11202 5326 11202 5426 11202 5423 11203 5426 11203 5333 11203 5321 11204 5425 11204 5424 11204 5424 11205 5425 11205 5326 11205 5326 11206 5324 11206 5426 11206 5426 11207 5324 11207 5330 11207 5330 11208 5324 11208 5427 11208 5330 11209 5427 11209 5328 11209 5528 11210 5333 11210 5428 11210 5528 11211 5428 11211 5532 11211 5532 11212 5428 11212 5334 11212 5532 11213 5334 11213 5530 11213 5530 11214 5334 11214 5478 11214 5478 11215 5334 11215 5481 11215 5481 11216 5334 11216 5429 11216 5481 11217 5429 11217 5430 11217 5481 11218 5430 11218 5482 11218 5482 11219 5430 11219 5431 11219 5482 11220 5431 11220 5483 11220 5483 11221 5431 11221 5540 11221 5430 11222 5429 11222 5432 11222 5432 11223 5429 11223 5433 11223 5432 11224 5433 11224 5340 11224 5340 11225 5433 11225 5337 11225 5337 11226 5433 11226 5336 11226 5340 11227 5434 11227 5432 11227 5435 11228 5547 11228 5431 11228 5431 11229 5547 11229 5540 11229 5435 11230 5545 11230 5547 11230 5344 11231 5545 11231 5435 11231 5345 11232 5358 11232 5344 11232 5344 11233 5358 11233 5436 11233 5344 11234 5436 11234 5545 11234 5545 11235 5436 11235 5546 11235 5546 11236 5436 11236 5437 11236 5546 11237 5437 11237 5543 11237 5543 11238 5437 11238 5359 11238 5543 11239 5359 11239 5541 11239 5541 11240 5359 11240 5489 11240 5346 11241 5350 11241 5345 11241 5345 11242 5350 11242 5352 11242 5345 11243 5352 11243 5358 11243 5358 11244 5352 11244 5356 11244 5356 11245 5352 11245 5438 11245 5356 11246 5438 11246 5354 11246 5348 11247 5439 11247 5346 11247 5346 11248 5439 11248 5350 11248 5489 11249 5359 11249 5492 11249 5492 11250 5359 11250 5440 11250 5492 11251 5440 11251 5491 11251 5491 11252 5440 11252 5441 11252 5491 11253 5441 11253 5368 11253 5491 11254 5368 11254 5496 11254 5496 11255 5368 11255 5523 11255 5440 11256 5442 11256 5441 11256 5441 11257 5442 11257 5366 11257 5366 11258 5442 11258 5363 11258 5366 11259 5363 11259 5443 11259 5442 11260 5362 11260 5363 11260 5443 11261 5444 11261 5366 11261 5370 11262 5523 11262 5368 11262 5370 11263 5522 11263 5523 11263 5445 11264 5522 11264 5370 11264 5446 11265 5451 11265 5445 11265 5445 11266 5451 11266 5524 11266 5445 11267 5524 11267 5522 11267 5371 11268 5376 11268 5446 11268 5446 11269 5376 11269 5447 11269 5446 11270 5447 11270 5451 11270 5448 11271 5449 11271 5371 11271 5371 11272 5449 11272 5376 11272 5447 11273 5376 11273 5667 11273 5447 11274 5667 11274 5450 11274 5450 11275 5667 11275 5377 11275 5450 11276 5377 11276 5378 11276 5524 11277 5451 11277 5383 11277 5524 11278 5383 11278 5525 11278 5525 11279 5383 11279 5384 11279 5525 11280 5384 11280 5502 11280 5525 11281 5502 11281 5521 11281 5502 11282 5384 11282 5509 11282 5509 11283 5384 11283 5385 11283 5509 11284 5385 11284 5452 11284 5509 11285 5452 11285 5511 11285 5511 11286 5452 11286 5514 11286 5514 11287 5452 11287 5396 11287 5514 11288 5396 11288 5556 11288 5452 11289 5385 11289 5394 11289 5394 11290 5385 11290 5453 11290 5394 11291 5453 11291 5742 11291 5742 11292 5453 11292 5454 11292 5454 11293 5453 11293 5388 11293 5742 11294 5392 11294 5394 11294 5397 11295 5555 11295 5396 11295 5397 11296 5552 11296 5555 11296 5456 11297 5552 11297 5397 11297 5398 11298 5455 11298 5456 11298 5456 11299 5455 11299 5407 11299 5456 11300 5407 11300 5552 11300 5552 11301 5407 11301 5554 11301 5554 11302 5407 11302 5457 11302 5554 11303 5457 11303 5458 11303 5554 11304 5458 11304 5553 11304 5553 11305 5458 11305 5269 11305 5461 11306 5462 11306 5398 11306 5398 11307 5462 11307 5401 11307 5398 11308 5401 11308 5455 11308 5455 11309 5401 11309 5406 11309 5406 11310 5401 11310 5402 11310 5406 11311 5402 11311 5405 11311 5459 11312 5460 11312 5461 11312 5461 11313 5460 11313 5462 11313 5269 11314 5458 11314 5465 11314 5465 11315 5458 11315 5411 11315 5465 11316 5411 11316 5464 11316 5396 11317 5555 11317 5556 11317 5514 11318 5556 11318 5513 11318 5513 11319 5556 11319 5516 11319 5516 11320 5556 11320 5269 11320 5269 11321 5556 11321 5553 11321 5483 11322 5540 11322 5541 11322 5483 11323 5541 11323 5486 11323 5486 11324 5541 11324 5489 11324 5463 11325 5531 11325 5471 11325 5533 11326 5471 11326 5531 11326 5471 11327 5533 11327 5535 11327 5471 11328 5535 11328 5473 11328 5473 11329 5535 11329 5474 11329 5474 11330 5535 11330 5478 11330 5478 11331 5535 11331 5530 11331 5496 11332 5523 11332 5497 11332 5497 11333 5523 11333 5521 11333 5497 11334 5521 11334 5499 11334 5499 11335 5521 11335 5505 11335 5505 11336 5521 11336 5502 11336 5471 11337 5419 11337 5463 11337 5419 11338 5470 11338 5464 11338 5464 11339 5470 11339 5468 11339 5466 11340 5467 11340 5468 11340 5469 11341 5466 11341 5468 11341 5466 11342 5468 11342 5465 11342 5466 11343 5465 11343 5464 11343 5466 11344 5464 11344 5468 11344 5468 11345 5467 11345 5469 11345 5470 11346 5419 11346 5313 11346 5471 11347 5472 11347 5419 11347 5419 11348 5472 11348 5313 11348 5472 11349 5471 11349 5475 11349 5473 11350 5475 11350 5471 11350 5475 11351 5473 11351 5477 11351 5473 11352 5474 11352 5477 11352 5477 11353 5474 11353 5476 11353 5474 11354 5478 11354 5476 11354 5479 11355 5476 11355 5478 11355 5481 11356 5479 11356 5478 11356 5480 11357 5479 11357 5481 11357 5482 11358 5300 11358 5481 11358 5481 11359 5300 11359 5480 11359 5483 11360 5484 11360 5482 11360 5482 11361 5484 11361 5300 11361 5484 11362 5483 11362 5487 11362 5485 11363 5486 11363 5488 11363 5489 11364 5488 11364 5486 11364 5486 11365 5485 11365 5487 11365 5483 11366 5486 11366 5487 11366 5489 11367 5490 11367 5488 11367 5492 11368 5494 11368 5489 11368 5489 11369 5494 11369 5490 11369 5492 11370 5491 11370 5494 11370 5493 11371 5494 11371 5491 11371 5496 11372 5495 11372 5491 11372 5491 11373 5495 11373 5493 11373 5496 11374 5500 11374 5495 11374 5497 11375 5500 11375 5496 11375 5497 11376 5499 11376 5501 11376 5497 11377 5501 11377 5500 11377 5498 11378 5499 11378 5505 11378 5499 11379 5498 11379 5501 11379 5505 11380 5506 11380 5498 11380 5505 11381 5502 11381 5507 11381 5508 11382 5507 11382 5502 11382 5508 11383 5502 11383 5503 11383 5505 11384 5503 11384 5506 11384 5506 11385 5502 11385 5504 11385 5505 11386 5507 11386 5503 11386 5506 11387 5503 11387 5502 11387 5509 11388 5510 11388 5502 11388 5502 11389 5510 11389 5504 11389 5511 11390 5512 11390 5509 11390 5509 11391 5512 11391 5510 11391 5511 11392 5514 11392 5512 11392 5514 11393 5515 11393 5512 11393 5515 11394 5513 11394 5518 11394 5514 11395 5513 11395 5515 11395 5518 11396 5513 11396 5517 11396 5516 11397 5268 11397 5517 11397 5516 11398 5517 11398 5513 11398 5523 11399 5315 11399 5521 11399 5524 11400 5525 11400 5527 11400 5522 11401 5520 11401 5523 11401 5525 11402 5521 11402 5526 11402 5522 11403 5524 11403 5520 11403 5525 11404 5526 11404 5527 11404 5521 11405 5315 11405 5526 11405 5523 11406 5519 11406 5315 11406 5523 11407 5520 11407 5519 11407 5524 11408 5527 11408 5520 11408 5530 11409 5534 11409 5532 11409 5533 11410 5539 11410 5535 11410 5532 11411 5538 11411 5528 11411 5530 11412 5535 11412 5534 11412 5532 11413 5534 11413 5538 11413 5531 11414 5529 11414 5536 11414 5535 11415 5539 11415 5537 11415 5531 11416 5539 11416 5533 11416 5531 11417 5536 11417 5539 11417 5529 11418 5528 11418 5306 11418 5529 11419 5306 11419 5536 11419 5535 11420 5537 11420 5534 11420 5528 11421 5538 11421 5306 11421 5540 11422 5542 11422 5541 11422 5546 11423 5544 11423 5545 11423 5543 11424 5549 11424 5546 11424 5545 11425 5544 11425 5551 11425 5547 11426 5545 11426 5551 11426 5546 11427 5549 11427 5550 11427 5546 11428 5550 11428 5544 11428 5540 11429 5547 11429 5298 11429 5541 11430 5542 11430 5543 11430 5540 11431 5548 11431 5542 11431 5543 11432 5542 11432 5549 11432 5547 11433 5551 11433 5298 11433 5544 11434 5550 11434 5551 11434 5540 11435 5298 11435 5548 11435 5552 11436 5557 11436 5555 11436 5552 11437 5562 11437 5557 11437 5556 11438 5555 11438 5558 11438 5553 11439 5561 11439 5554 11439 5552 11440 5554 11440 5562 11440 5555 11441 5557 11441 5558 11441 5558 11442 5560 11442 5556 11442 5553 11443 5559 11443 5561 11443 5554 11444 5561 11444 5562 11444 5553 11445 5556 11445 5559 11445 5556 11446 5560 11446 5559 11446 5752 11447 5753 11447 5563 11447 5798 11448 5563 11448 5794 11448 5798 11449 5752 11449 5563 11449 4762 11450 5702 11450 5603 11450 5603 11451 5702 11451 5605 11451 5603 11452 5605 11452 5604 11452 4762 11453 5703 11453 5702 11453 5702 11454 5700 11454 5605 11454 5605 11455 5700 11455 5598 11455 5598 11456 5700 11456 5753 11456 5564 11457 5753 11457 5700 11457 5698 11458 5842 11458 5564 11458 5698 11459 5843 11459 5842 11459 5566 11460 5843 11460 5698 11460 5565 11461 5686 11461 5566 11461 5566 11462 5686 11462 5843 11462 5567 11463 4777 11463 5565 11463 5565 11464 4777 11464 5568 11464 5565 11465 5568 11465 5686 11465 5697 11466 5695 11466 5567 11466 5567 11467 5695 11467 4777 11467 5568 11468 4777 11468 5692 11468 5568 11469 5692 11469 5688 11469 5688 11470 5692 11470 5690 11470 5688 11471 5690 11471 5569 11471 5843 11472 5686 11472 5570 11472 5843 11473 5570 11473 5839 11473 5839 11474 5570 11474 5571 11474 5839 11475 5571 11475 5844 11475 5844 11476 5571 11476 5793 11476 5793 11477 5571 11477 5791 11477 5791 11478 5571 11478 5572 11478 5791 11479 5572 11479 5573 11479 5791 11480 5573 11480 5790 11480 5790 11481 5573 11481 5789 11481 5789 11482 5573 11482 5676 11482 5789 11483 5676 11483 5809 11483 5573 11484 5572 11484 5678 11484 5678 11485 5572 11485 5682 11485 5678 11486 5682 11486 5962 11486 5962 11487 5682 11487 5963 11487 5963 11488 5682 11488 5681 11488 5962 11489 5574 11489 5678 11489 5575 11490 5809 11490 5676 11490 5575 11491 5810 11491 5809 11491 5576 11492 5810 11492 5575 11492 5673 11493 5662 11493 5576 11493 5576 11494 5662 11494 5661 11494 5576 11495 5661 11495 5810 11495 5810 11496 5661 11496 5807 11496 5807 11497 5661 11497 5577 11497 5807 11498 5577 11498 5806 11498 5806 11499 5577 11499 5578 11499 5806 11500 5578 11500 5779 11500 5806 11501 5779 11501 5783 11501 5579 11502 5949 11502 5673 11502 5673 11503 5949 11503 5668 11503 5673 11504 5668 11504 5662 11504 5662 11505 5668 11505 5663 11505 5663 11506 5668 11506 5580 11506 5663 11507 5580 11507 5581 11507 5672 11508 5669 11508 5579 11508 5579 11509 5669 11509 5949 11509 5779 11510 5578 11510 5778 11510 5778 11511 5578 11511 5657 11511 5778 11512 5657 11512 5777 11512 5777 11513 5657 11513 5648 11513 5777 11514 5648 11514 5599 11514 5777 11515 5599 11515 5774 11515 5774 11516 5599 11516 5829 11516 5657 11517 5584 11517 5648 11517 5648 11518 5584 11518 5649 11518 5649 11519 5584 11519 5582 11519 5649 11520 5582 11520 5650 11520 5655 11521 5583 11521 5584 11521 5584 11522 5583 11522 5582 11522 5647 11523 5832 11523 5599 11523 5599 11524 5832 11524 5829 11524 5646 11525 5833 11525 5647 11525 5647 11526 5833 11526 5832 11526 5586 11527 5585 11527 5646 11527 5646 11528 5585 11528 5826 11528 5646 11529 5826 11529 5833 11529 5645 11530 5588 11530 5586 11530 5586 11531 5588 11531 5633 11531 5586 11532 5633 11532 5585 11532 5587 11533 5644 11533 5645 11533 5645 11534 5644 11534 5588 11534 5588 11535 5642 11535 5640 11535 5588 11536 5640 11536 5633 11536 5633 11537 5640 11537 5634 11537 5634 11538 5640 11538 5639 11538 5634 11539 5639 11539 5637 11539 5826 11540 5585 11540 5631 11540 5826 11541 5631 11541 5828 11541 5828 11542 5631 11542 5630 11542 5828 11543 5630 11543 5831 11543 5831 11544 5630 11544 5769 11544 5769 11545 5630 11545 5766 11545 5766 11546 5630 11546 5589 11546 5766 11547 5589 11547 5590 11547 5766 11548 5590 11548 5765 11548 5765 11549 5590 11549 5601 11549 5765 11550 5601 11550 5762 11550 5762 11551 5601 11551 5818 11551 5590 11552 5589 11552 5591 11552 5591 11553 5589 11553 5592 11553 5591 11554 5592 11554 5626 11554 5626 11555 5592 11555 5627 11555 5627 11556 5592 11556 5593 11556 5626 11557 5623 11557 5591 11557 5620 11558 5818 11558 5601 11558 5620 11559 5819 11559 5818 11559 5600 11560 5819 11560 5620 11560 5595 11561 5610 11561 5600 11561 5600 11562 5610 11562 5594 11562 5600 11563 5594 11563 5819 11563 5819 11564 5594 11564 5816 11564 5816 11565 5594 11565 5609 11565 5816 11566 5609 11566 5820 11566 5820 11567 5609 11567 5608 11567 5820 11568 5608 11568 5755 11568 5596 11569 5597 11569 5595 11569 5595 11570 5597 11570 4735 11570 5595 11571 4735 11571 5610 11571 5610 11572 4735 11572 5611 11572 5611 11573 4735 11573 4749 11573 5611 11574 4749 11574 5613 11574 5618 11575 5617 11575 5596 11575 5596 11576 5617 11576 5597 11576 5597 11577 5615 11577 4735 11577 5755 11578 5608 11578 5754 11578 5754 11579 5608 11579 5598 11579 5754 11580 5598 11580 5753 11580 5564 11581 5842 11581 5563 11581 5563 11582 5842 11582 5840 11582 5563 11583 5840 11583 5794 11583 5794 11584 5840 11584 5796 11584 5796 11585 5840 11585 5793 11585 5793 11586 5840 11586 5844 11586 5774 11587 5829 11587 5772 11587 5772 11588 5829 11588 5769 11588 5769 11589 5829 11589 5831 11589 5762 11590 5818 11590 5758 11590 5758 11591 5818 11591 5821 11591 5758 11592 5821 11592 5760 11592 5760 11593 5821 11593 5755 11593 5755 11594 5821 11594 5820 11594 5808 11595 5789 11595 5809 11595 5789 11596 5808 11596 5786 11596 5786 11597 5808 11597 5784 11597 5784 11598 5808 11598 5783 11598 5783 11599 5808 11599 5806 11599 5563 11600 5753 11600 5564 11600 5602 11601 5603 11601 5705 11601 5705 11602 5603 11602 5604 11602 5705 11603 5604 11603 5606 11603 5606 11604 5604 11604 5605 11604 5606 11605 5605 11605 5607 11605 5607 11606 5605 11606 5598 11606 5607 11607 5598 11607 5707 11607 5707 11608 5598 11608 5608 11608 5707 11609 5608 11609 5708 11609 5708 11610 5608 11610 5609 11610 5708 11611 5609 11611 5710 11611 5710 11612 5609 11612 5594 11612 5710 11613 5594 11613 5712 11613 5712 11614 5594 11614 5610 11614 5712 11615 5610 11615 5711 11615 5711 11616 5610 11616 5611 11616 5711 11617 5611 11617 5713 11617 5713 11618 5611 11618 5613 11618 5713 11619 5613 11619 5612 11619 5612 11620 5613 11620 4749 11620 5612 11621 4749 11621 5614 11621 5614 11622 4749 11622 4735 11622 5615 11623 5714 11623 5614 11623 4735 11624 5615 11624 5614 11624 5714 11625 5615 11625 5597 11625 5714 11626 5597 11626 5616 11626 5616 11627 5597 11627 5617 11627 5616 11628 5617 11628 5716 11628 5716 11629 5617 11629 5618 11629 5716 11630 5618 11630 5715 11630 5715 11631 5618 11631 5596 11631 5715 11632 5596 11632 5619 11632 5619 11633 5596 11633 5595 11633 5619 11634 5595 11634 5709 11634 5709 11635 5595 11635 5600 11635 5709 11636 5600 11636 5717 11636 5717 11637 5600 11637 5620 11637 5717 11638 5620 11638 5621 11638 5621 11639 5620 11639 5601 11639 5621 11640 5601 11640 5718 11640 5718 11641 5601 11641 5590 11641 5718 11642 5590 11642 5622 11642 5622 11643 5590 11643 5591 11643 5622 11644 5591 11644 5624 11644 5624 11645 5591 11645 5623 11645 5624 11646 5623 11646 5625 11646 5625 11647 5623 11647 5626 11647 5625 11648 5626 11648 5720 11648 5720 11649 5626 11649 5627 11649 5720 11650 5627 11650 5721 11650 5721 11651 5627 11651 5593 11651 5721 11652 5593 11652 5719 11652 5719 11653 5593 11653 5592 11653 5719 11654 5592 11654 5628 11654 5628 11655 5592 11655 5589 11655 5628 11656 5589 11656 5629 11656 5629 11657 5589 11657 5630 11657 5629 11658 5630 11658 5722 11658 5722 11659 5630 11659 5631 11659 5722 11660 5631 11660 5724 11660 5724 11661 5631 11661 5585 11661 5724 11662 5585 11662 5728 11662 5728 11663 5585 11663 5633 11663 5728 11664 5633 11664 5632 11664 5632 11665 5633 11665 5634 11665 5632 11666 5634 11666 5635 11666 5635 11667 5634 11667 5637 11667 5635 11668 5637 11668 5636 11668 5636 11669 5637 11669 5639 11669 5636 11670 5639 11670 5638 11670 5638 11671 5639 11671 5640 11671 5640 11672 5642 11672 5638 11672 5588 11673 5641 11673 5642 11673 5731 11674 5642 11674 5641 11674 5642 11675 5731 11675 5638 11675 5641 11676 5588 11676 5643 11676 5643 11677 5588 11677 5644 11677 5643 11678 5644 11678 5730 11678 5730 11679 5644 11679 5587 11679 5730 11680 5587 11680 5729 11680 5729 11681 5587 11681 5645 11681 5729 11682 5645 11682 5723 11682 5723 11683 5645 11683 5586 11683 5723 11684 5586 11684 5725 11684 5725 11685 5586 11685 5646 11685 5725 11686 5646 11686 5726 11686 5726 11687 5646 11687 5647 11687 5726 11688 5647 11688 5732 11688 5732 11689 5647 11689 5599 11689 5732 11690 5599 11690 5733 11690 5733 11691 5599 11691 5648 11691 5733 11692 5648 11692 5734 11692 5734 11693 5648 11693 5649 11693 5734 11694 5649 11694 5651 11694 5651 11695 5649 11695 5650 11695 5651 11696 5650 11696 5652 11696 5652 11697 5650 11697 5582 11697 5652 11698 5582 11698 5653 11698 5653 11699 5582 11699 5583 11699 5653 11700 5583 11700 5654 11700 5654 11701 5583 11701 5655 11701 5654 11702 5655 11702 5735 11702 5735 11703 5655 11703 5584 11703 5735 11704 5584 11704 5656 11704 5656 11705 5584 11705 5657 11705 5656 11706 5657 11706 5658 11706 5658 11707 5657 11707 5578 11707 5658 11708 5578 11708 5659 11708 5659 11709 5578 11709 5577 11709 5659 11710 5577 11710 5660 11710 5660 11711 5577 11711 5661 11711 5660 11712 5661 11712 5736 11712 5736 11713 5661 11713 5662 11713 5736 11714 5662 11714 5738 11714 5738 11715 5662 11715 5663 11715 5738 11716 5663 11716 5664 11716 5664 11717 5663 11717 5581 11717 5664 11718 5581 11718 5665 11718 5665 11719 5581 11719 5580 11719 5665 11720 5580 11720 5666 11720 5666 11721 5580 11721 5668 11721 5666 11722 5668 11722 5667 11722 5668 11723 5949 11723 5667 11723 5667 11724 5949 11724 5377 11724 5377 11725 5949 11725 5669 11725 5377 11726 5669 11726 5670 11726 5670 11727 5669 11727 5672 11727 5670 11728 5672 11728 5671 11728 5671 11729 5672 11729 5579 11729 5671 11730 5579 11730 5737 11730 5737 11731 5579 11731 5673 11731 5737 11732 5673 11732 5674 11732 5674 11733 5673 11733 5576 11733 5674 11734 5576 11734 5675 11734 5675 11735 5576 11735 5575 11735 5675 11736 5575 11736 5739 11736 5739 11737 5575 11737 5676 11737 5739 11738 5676 11738 5740 11738 5740 11739 5676 11739 5573 11739 5740 11740 5573 11740 5677 11740 5677 11741 5573 11741 5678 11741 5677 11742 5678 11742 5679 11742 5679 11743 5678 11743 5574 11743 5679 11744 5574 11744 5454 11744 5454 11745 5574 11745 5962 11745 5454 11746 5962 11746 5742 11746 5742 11747 5962 11747 5963 11747 5742 11748 5963 11748 5680 11748 5680 11749 5963 11749 5681 11749 5680 11750 5681 11750 5743 11750 5743 11751 5681 11751 5682 11751 5743 11752 5682 11752 5683 11752 5683 11753 5682 11753 5572 11753 5683 11754 5572 11754 5749 11754 5749 11755 5572 11755 5571 11755 5749 11756 5571 11756 5744 11756 5744 11757 5571 11757 5570 11757 5744 11758 5570 11758 5684 11758 5684 11759 5570 11759 5686 11759 5684 11760 5686 11760 5685 11760 5685 11761 5686 11761 5568 11761 5685 11762 5568 11762 5687 11762 5687 11763 5568 11763 5688 11763 5687 11764 5688 11764 5689 11764 5689 11765 5688 11765 5569 11765 5689 11766 5569 11766 5460 11766 5460 11767 5569 11767 5690 11767 5460 11768 5690 11768 5462 11768 5462 11769 5690 11769 5692 11769 5691 11770 5692 11770 4777 11770 5692 11771 5691 11771 5462 11771 5691 11772 4777 11772 5693 11772 5693 11773 4777 11773 5695 11773 5693 11774 5695 11774 5694 11774 5694 11775 5695 11775 5697 11775 5694 11776 5697 11776 5696 11776 5696 11777 5697 11777 5567 11777 5696 11778 5567 11778 5745 11778 5745 11779 5567 11779 5565 11779 5745 11780 5565 11780 5746 11780 5746 11781 5565 11781 5566 11781 5746 11782 5566 11782 5747 11782 5747 11783 5566 11783 5698 11783 5747 11784 5698 11784 5699 11784 5699 11785 5698 11785 5564 11785 5699 11786 5564 11786 5748 11786 5748 11787 5564 11787 5700 11787 5748 11788 5700 11788 5706 11788 5706 11789 5700 11789 5702 11789 5706 11790 5702 11790 5701 11790 5701 11791 5702 11791 5703 11791 5701 11792 5703 11792 5704 11792 5704 11793 5703 11793 4762 11793 5704 11794 4762 11794 5602 11794 5602 11795 4762 11795 5603 11795 5701 11796 5704 11796 5706 11796 5706 11797 5704 11797 5602 11797 5706 11798 5602 11798 5606 11798 5606 11799 5602 11799 5705 11799 5606 11800 5607 11800 5706 11800 5706 11801 5607 11801 5748 11801 5748 11802 5607 11802 5751 11802 5707 11803 5751 11803 5607 11803 5708 11804 5813 11804 5707 11804 5710 11805 5811 11805 5708 11805 5708 11806 5811 11806 5813 11806 5712 11807 5709 11807 5710 11807 5710 11808 5709 11808 5811 11808 5711 11809 5614 11809 5712 11809 5712 11810 5614 11810 5619 11810 5712 11811 5619 11811 5709 11811 5713 11812 5612 11812 5711 11812 5711 11813 5612 11813 5614 11813 5614 11814 5714 11814 5619 11814 5619 11815 5714 11815 5715 11815 5715 11816 5714 11816 5616 11816 5715 11817 5616 11817 5716 11817 5811 11818 5709 11818 5717 11818 5811 11819 5717 11819 5814 11819 5814 11820 5717 11820 5621 11820 5814 11821 5621 11821 5815 11821 5815 11822 5621 11822 5763 11822 5763 11823 5621 11823 5764 11823 5764 11824 5621 11824 5718 11824 5764 11825 5718 11825 5628 11825 5764 11826 5628 11826 5767 11826 5767 11827 5628 11827 5768 11827 5768 11828 5628 11828 5629 11828 5768 11829 5629 11829 5770 11829 5770 11830 5629 11830 5822 11830 5770 11831 5822 11831 5827 11831 5628 11832 5718 11832 5719 11832 5719 11833 5718 11833 5622 11833 5719 11834 5622 11834 5720 11834 5720 11835 5622 11835 5625 11835 5625 11836 5622 11836 5624 11836 5720 11837 5721 11837 5719 11837 5722 11838 5822 11838 5629 11838 5722 11839 5823 11839 5822 11839 5724 11840 5823 11840 5722 11840 5728 11841 5723 11841 5724 11841 5724 11842 5723 11842 5725 11842 5724 11843 5725 11843 5823 11843 5823 11844 5725 11844 5825 11844 5825 11845 5725 11845 5726 11845 5825 11846 5726 11846 5732 11846 5825 11847 5732 11847 5830 11847 5830 11848 5732 11848 5727 11848 5830 11849 5727 11849 5824 11849 5824 11850 5727 11850 5750 11850 5632 11851 5638 11851 5728 11851 5728 11852 5638 11852 5641 11852 5728 11853 5641 11853 5723 11853 5723 11854 5641 11854 5729 11854 5729 11855 5641 11855 5643 11855 5729 11856 5643 11856 5730 11856 5635 11857 5636 11857 5632 11857 5632 11858 5636 11858 5638 11858 5638 11859 5731 11859 5641 11859 5727 11860 5732 11860 5775 11860 5775 11861 5732 11861 5733 11861 5775 11862 5733 11862 5776 11862 5776 11863 5733 11863 5656 11863 5776 11864 5656 11864 5658 11864 5776 11865 5658 11865 5780 11865 5780 11866 5658 11866 5800 11866 5733 11867 5734 11867 5656 11867 5656 11868 5734 11868 5735 11868 5735 11869 5734 11869 5652 11869 5735 11870 5652 11870 5653 11870 5734 11871 5651 11871 5652 11871 5653 11872 5654 11872 5735 11872 5659 11873 5799 11873 5658 11873 5659 11874 5804 11874 5799 11874 5660 11875 5804 11875 5659 11875 5736 11876 5674 11876 5660 11876 5660 11877 5674 11877 5805 11877 5738 11878 5666 11878 5736 11878 5736 11879 5666 11879 5737 11879 5736 11880 5737 11880 5674 11880 5664 11881 5665 11881 5738 11881 5738 11882 5665 11882 5666 11882 5737 11883 5666 11883 5667 11883 5737 11884 5667 11884 5671 11884 5671 11885 5667 11885 5377 11885 5671 11886 5377 11886 5670 11886 5805 11887 5674 11887 5675 11887 5805 11888 5675 11888 5801 11888 5801 11889 5675 11889 5739 11889 5801 11890 5739 11890 5787 11890 5801 11891 5787 11891 5802 11891 5787 11892 5739 11892 5788 11892 5788 11893 5739 11893 5740 11893 5788 11894 5740 11894 5683 11894 5788 11895 5683 11895 5741 11895 5741 11896 5683 11896 5749 11896 5741 11897 5749 11897 5792 11897 5792 11898 5749 11898 5841 11898 5683 11899 5740 11899 5743 11899 5743 11900 5740 11900 5677 11900 5743 11901 5677 11901 5742 11901 5742 11902 5677 11902 5454 11902 5454 11903 5677 11903 5679 11903 5742 11904 5680 11904 5743 11904 5744 11905 5837 11905 5749 11905 5749 11906 5837 11906 5841 11906 5744 11907 5835 11907 5837 11907 5684 11908 5835 11908 5744 11908 5685 11909 5745 11909 5684 11909 5684 11910 5745 11910 5746 11910 5684 11911 5746 11911 5835 11911 5835 11912 5746 11912 5747 11912 5835 11913 5747 11913 5834 11913 5834 11914 5747 11914 5699 11914 5834 11915 5699 11915 5752 11915 5687 11916 5462 11916 5685 11916 5685 11917 5462 11917 5691 11917 5685 11918 5691 11918 5745 11918 5745 11919 5691 11919 5696 11919 5696 11920 5691 11920 5693 11920 5696 11921 5693 11921 5694 11921 5689 11922 5460 11922 5687 11922 5687 11923 5460 11923 5462 11923 5752 11924 5699 11924 5748 11924 5752 11925 5748 11925 5751 11925 5792 11926 5841 11926 5836 11926 5792 11927 5836 11927 5795 11927 5795 11928 5836 11928 5797 11928 5797 11929 5836 11929 5798 11929 5798 11930 5836 11930 5752 11930 5752 11931 5836 11931 5834 11931 5770 11932 5827 11932 5771 11932 5771 11933 5827 11933 5773 11933 5773 11934 5827 11934 5750 11934 5750 11935 5827 11935 5824 11935 5707 11936 5813 11936 5757 11936 5812 11937 5757 11937 5813 11937 5757 11938 5812 11938 5756 11938 5756 11939 5812 11939 5759 11939 5759 11940 5812 11940 5761 11940 5761 11941 5812 11941 5815 11941 5761 11942 5815 11942 5763 11942 5805 11943 5804 11943 5660 11943 5799 11944 5800 11944 5658 11944 5780 11945 5800 11945 5781 11945 5781 11946 5800 11946 5802 11946 5781 11947 5802 11947 5782 11947 5782 11948 5802 11948 5785 11948 5785 11949 5802 11949 5787 11949 5757 11950 5751 11950 5707 11950 5753 11951 5752 11951 5751 11951 5751 11952 5754 11952 5753 11952 5757 11953 5755 11953 5751 11953 5751 11954 5755 11954 5754 11954 5757 11955 5756 11955 5755 11955 5755 11956 5756 11956 5760 11956 5759 11957 5761 11957 5758 11957 5756 11958 5759 11958 5760 11958 5760 11959 5759 11959 5758 11959 5761 11960 5763 11960 5758 11960 5758 11961 5763 11961 5762 11961 5764 11962 5765 11962 5763 11962 5763 11963 5765 11963 5762 11963 5765 11964 5764 11964 5766 11964 5767 11965 5766 11965 5764 11965 5766 11966 5767 11966 5768 11966 5770 11967 5769 11967 5768 11967 5768 11968 5769 11968 5766 11968 5769 11969 5770 11969 5771 11969 5769 11970 5771 11970 5772 11970 5771 11971 5773 11971 5772 11971 5750 11972 5774 11972 5772 11972 5772 11973 5773 11973 5750 11973 5774 11974 5750 11974 5727 11974 5775 11975 5777 11975 5727 11975 5727 11976 5777 11976 5774 11976 5775 11977 5776 11977 5777 11977 5776 11978 5778 11978 5777 11978 5780 11979 5779 11979 5776 11979 5776 11980 5779 11980 5778 11980 5780 11981 5783 11981 5779 11981 5780 11982 5781 11982 5783 11982 5781 11983 5782 11983 5784 11983 5781 11984 5784 11984 5783 11984 5785 11985 5786 11985 5782 11985 5784 11986 5782 11986 5786 11986 5785 11987 5787 11987 5789 11987 5785 11988 5789 11988 5786 11988 5788 11989 5789 11989 5787 11989 5790 11990 5789 11990 5788 11990 5741 11991 5791 11991 5788 11991 5788 11992 5791 11992 5790 11992 5792 11993 5793 11993 5741 11993 5741 11994 5793 11994 5791 11994 5792 11995 5795 11995 5793 11995 5795 11996 5797 11996 5793 11996 5796 11997 5793 11997 5797 11997 5796 11998 5797 11998 5798 11998 5796 11999 5798 11999 5794 11999 5809 12000 5801 12000 5808 12000 5802 12001 5800 12001 5808 12001 5799 12002 5804 12002 5803 12002 5804 12003 5805 12003 5807 12003 5801 12004 5809 12004 5805 12004 5799 12005 5806 12005 5800 12005 5799 12006 5803 12006 5806 12006 5800 12007 5806 12007 5808 12007 5801 12008 5802 12008 5808 12008 5805 12009 5810 12009 5807 12009 5805 12010 5809 12010 5810 12010 5803 12011 5804 12011 5806 12011 5804 12012 5807 12012 5806 12012 5813 12013 5817 12013 5812 12013 5812 12014 5821 12014 5815 12014 5812 12015 5817 12015 5821 12015 5813 12016 5811 12016 5816 12016 5813 12017 5816 12017 5820 12017 5814 12018 5815 12018 5818 12018 5811 12019 5819 12019 5816 12019 5811 12020 5814 12020 5819 12020 5813 12021 5820 12021 5817 12021 5817 12022 5820 12022 5821 12022 5815 12023 5821 12023 5818 12023 5814 12024 5818 12024 5819 12024 5823 12025 5828 12025 5822 12025 5823 12026 5825 12026 5833 12026 5824 12027 5829 12027 5830 12027 5823 12028 5826 12028 5828 12028 5822 12029 5831 12029 5827 12029 5827 12030 5829 12030 5824 12030 5822 12031 5828 12031 5831 12031 5823 12032 5833 12032 5826 12032 5827 12033 5831 12033 5829 12033 5825 12034 5832 12034 5833 12034 5825 12035 5830 12035 5832 12035 5830 12036 5829 12036 5832 12036 5834 12037 5842 12037 5835 12037 5834 12038 5836 12038 5838 12038 5835 12039 5842 12039 5843 12039 5834 12040 5838 12040 5842 12040 5836 12041 5840 12041 5838 12041 5837 12042 5835 12042 5839 12042 5837 12043 5839 12043 5841 12043 5835 12044 5843 12044 5839 12044 5841 12045 5840 12045 5836 12045 5838 12046 5840 12046 5842 12046 5841 12047 5839 12047 5844 12047 5841 12048 5844 12048 5840 12048 6032 12049 6033 12049 5845 12049 5845 12050 6033 12050 5846 12050 5845 12051 5846 12051 6083 12051 4163 12052 5848 12052 5847 12052 5847 12053 5848 12053 5849 12053 5847 12054 5849 12054 5896 12054 4163 12055 5850 12055 5848 12055 5848 12056 5983 12056 5849 12056 5849 12057 5983 12057 5889 12057 5889 12058 5983 12058 6033 12058 5889 12059 6033 12059 6038 12059 5890 12060 6033 12060 5983 12060 5982 12061 6127 12061 5890 12061 5851 12062 6127 12062 5982 12062 5979 12063 5968 12063 5851 12063 5851 12064 5968 12064 6129 12064 5978 12065 4045 12065 5979 12065 5979 12066 4045 12066 5853 12066 5979 12067 5853 12067 5968 12067 5852 12068 4173 12068 5978 12068 5978 12069 4173 12069 4045 12069 5853 12070 4045 12070 6191 12070 5853 12071 6191 12071 5972 12071 5972 12072 6191 12072 5974 12072 5972 12073 5974 12073 5973 12073 6129 12074 5968 12074 5967 12074 6129 12075 5967 12075 6128 12075 6128 12076 5967 12076 5854 12076 6128 12077 5854 12077 6119 12077 6119 12078 5854 12078 6079 12078 6079 12079 5854 12079 6077 12079 6077 12080 5854 12080 5855 12080 6077 12081 5855 12081 5856 12081 6077 12082 5856 12082 6074 12082 6074 12083 5856 12083 6075 12083 6075 12084 5856 12084 5894 12084 6075 12085 5894 12085 6071 12085 6071 12086 5894 12086 6094 12086 6071 12087 6094 12087 6095 12087 5856 12088 5855 12088 5858 12088 5858 12089 5855 12089 5857 12089 5858 12090 5857 12090 5961 12090 5961 12091 5857 12091 6200 12091 6200 12092 5857 12092 5964 12092 5961 12093 5960 12093 5858 12093 5859 12094 6094 12094 5894 12094 5859 12095 6092 12095 6094 12095 5957 12096 6092 12096 5859 12096 5956 12097 5860 12097 5957 12097 5957 12098 5860 12098 5861 12098 5957 12099 5861 12099 6092 12099 6092 12100 5861 12100 5862 12100 6092 12101 5862 12101 6096 12101 6096 12102 5862 12102 5866 12102 6096 12103 5866 12103 6084 12103 6084 12104 5866 12104 6066 12104 6084 12105 6066 12105 6067 12105 5863 12106 5952 12106 5956 12106 5956 12107 5952 12107 5951 12107 5956 12108 5951 12108 5860 12108 5860 12109 5951 12109 5945 12109 5945 12110 5951 12110 5864 12110 5945 12111 5864 12111 5947 12111 5865 12112 6209 12112 5863 12112 5863 12113 6209 12113 5952 12113 6066 12114 5866 12114 6064 12114 6064 12115 5866 12115 5867 12115 6064 12116 5867 12116 6063 12116 6063 12117 5867 12117 5868 12117 6063 12118 5868 12118 5935 12118 6063 12119 5935 12119 6059 12119 6059 12120 5935 12120 6118 12120 5867 12121 5870 12121 5868 12121 5868 12122 5870 12122 5936 12122 5936 12123 5870 12123 5938 12123 5936 12124 5938 12124 5869 12124 5943 12125 5940 12125 5870 12125 5870 12126 5940 12126 5938 12126 5933 12127 6115 12127 5935 12127 5935 12128 6115 12128 6118 12128 5933 12129 6111 12129 6115 12129 5871 12130 6111 12130 5933 12130 5872 12131 5921 12131 5871 12131 5871 12132 5921 12132 6111 12132 5931 12133 5929 12133 5872 12133 5872 12134 5929 12134 5873 12134 5872 12135 5873 12135 5921 12135 5874 12136 5875 12136 5931 12136 5931 12137 5875 12137 5929 12137 5929 12138 5927 12138 5877 12138 5929 12139 5877 12139 5873 12139 5873 12140 5877 12140 5876 12140 5876 12141 5877 12141 5923 12141 6111 12142 5921 12142 5878 12142 6111 12143 5878 12143 6117 12143 6117 12144 5878 12144 5919 12144 6117 12145 5919 12145 6055 12145 6117 12146 6055 12146 6116 12146 6055 12147 5919 12147 5879 12147 5879 12148 5919 12148 5918 12148 5879 12149 5918 12149 5880 12149 5879 12150 5880 12150 6048 12150 6048 12151 5880 12151 6049 12151 6049 12152 5880 12152 5881 12152 6049 12153 5881 12153 6108 12153 5880 12154 5918 12154 5912 12154 5912 12155 5918 12155 5882 12155 5912 12156 5882 12156 5883 12156 5883 12157 5882 12157 5884 12157 5884 12158 5882 12158 5915 12158 5883 12159 5913 12159 5912 12159 5885 12160 6106 12160 5881 12160 5881 12161 6106 12161 6108 12161 5892 12162 6099 12162 5885 12162 5885 12163 6099 12163 6106 12163 5911 12164 5888 12164 5892 12164 5892 12165 5888 12165 5898 12165 5892 12166 5898 12166 6099 12166 6099 12167 5898 12167 6105 12167 6105 12168 5898 12168 5886 12168 6105 12169 5886 12169 5887 12169 6105 12170 5887 12170 6103 12170 6103 12171 5887 12171 6039 12171 5909 12172 5905 12172 5911 12172 5911 12173 5905 12173 4003 12173 5911 12174 4003 12174 5888 12174 5888 12175 4003 12175 5901 12175 5901 12176 4003 12176 4017 12176 5901 12177 4017 12177 5902 12177 5908 12178 5907 12178 5909 12178 5909 12179 5907 12179 5905 12179 4003 12180 5905 12180 5904 12180 6039 12181 5887 12181 6037 12181 6037 12182 5887 12182 5889 12182 6037 12183 5889 12183 6038 12183 5890 12184 6127 12184 6130 12184 5890 12185 6130 12185 5846 12185 5846 12186 6130 12186 6083 12186 6083 12187 6130 12187 6119 12187 6083 12188 6119 12188 6080 12188 6080 12189 6119 12189 6079 12189 6129 12190 6127 12190 5851 12190 6059 12191 6118 12191 5891 12191 5891 12192 6118 12192 6116 12192 5891 12193 6116 12193 6053 12193 6053 12194 6116 12194 6055 12194 6049 12195 6108 12195 6047 12195 6047 12196 6108 12196 6107 12196 6047 12197 6107 12197 6044 12197 6044 12198 6107 12198 6042 12198 6042 12199 6107 12199 6103 12199 6071 12200 6095 12200 5893 12200 5893 12201 6095 12201 6070 12201 6070 12202 6095 12202 6067 12202 6067 12203 6095 12203 6084 12203 5846 12204 6033 12204 5890 12204 5986 12205 5847 12205 5895 12205 5895 12206 5847 12206 5896 12206 5895 12207 5896 12207 5987 12207 5987 12208 5896 12208 5849 12208 5987 12209 5849 12209 5990 12209 5990 12210 5849 12210 5889 12210 5990 12211 5889 12211 5897 12211 5897 12212 5889 12212 5887 12212 5897 12213 5887 12213 5991 12213 5991 12214 5887 12214 5886 12214 5991 12215 5886 12215 6029 12215 6029 12216 5886 12216 5898 12216 6029 12217 5898 12217 5899 12217 5899 12218 5898 12218 5888 12218 5899 12219 5888 12219 5992 12219 5992 12220 5888 12220 5901 12220 5992 12221 5901 12221 5900 12221 5900 12222 5901 12222 5902 12222 5900 12223 5902 12223 4886 12223 4886 12224 5902 12224 4017 12224 4886 12225 4017 12225 4817 12225 4817 12226 4017 12226 4003 12226 5905 12227 5993 12227 5904 12227 4003 12228 5993 12228 4817 12228 5904 12229 5993 12229 4003 12229 5993 12230 5905 12230 5903 12230 5903 12231 5905 12231 5906 12231 5906 12232 5905 12232 5907 12232 5906 12233 5907 12233 5996 12233 5996 12234 5907 12234 5908 12234 5996 12235 5908 12235 5995 12235 5995 12236 5908 12236 5909 12236 5995 12237 5909 12237 5994 12237 5994 12238 5909 12238 5911 12238 5994 12239 5911 12239 5910 12239 5910 12240 5911 12240 5892 12240 5910 12241 5892 12241 5997 12241 5997 12242 5892 12242 5885 12242 5997 12243 5885 12243 5998 12243 5998 12244 5885 12244 5881 12244 5998 12245 5881 12245 5999 12245 5999 12246 5881 12246 5880 12246 5999 12247 5880 12247 6001 12247 6001 12248 5880 12248 5912 12248 6001 12249 5912 12249 5914 12249 5914 12250 5912 12250 5913 12250 5914 12251 5913 12251 6003 12251 6003 12252 5913 12252 5883 12252 6003 12253 5883 12253 6002 12253 6002 12254 5883 12254 5884 12254 6002 12255 5884 12255 5916 12255 5916 12256 5884 12256 5915 12256 5916 12257 5915 12257 5917 12257 5917 12258 5915 12258 5882 12258 5917 12259 5882 12259 6000 12259 6000 12260 5882 12260 5918 12260 6000 12261 5918 12261 6004 12261 6004 12262 5918 12262 5919 12262 6004 12263 5919 12263 6005 12263 6005 12264 5919 12264 5878 12264 6005 12265 5878 12265 5920 12265 5920 12266 5878 12266 5921 12266 5920 12267 5921 12267 6008 12267 6008 12268 5921 12268 5873 12268 6008 12269 5873 12269 5922 12269 5922 12270 5873 12270 5876 12270 5922 12271 5876 12271 5924 12271 5924 12272 5876 12272 5923 12272 5924 12273 5923 12273 5925 12273 5925 12274 5923 12274 5877 12274 5925 12275 5877 12275 5926 12275 5877 12276 5927 12276 5926 12276 5927 12277 5929 12277 5928 12277 5927 12278 6011 12278 5926 12278 5928 12279 6011 12279 5927 12279 5928 12280 5929 12280 5930 12280 5930 12281 5929 12281 5875 12281 5930 12282 5875 12282 6010 12282 6010 12283 5875 12283 5874 12283 6010 12284 5874 12284 6009 12284 6009 12285 5874 12285 5931 12285 6009 12286 5931 12286 5932 12286 5932 12287 5931 12287 5872 12287 5932 12288 5872 12288 6006 12288 6006 12289 5872 12289 5871 12289 6006 12290 5871 12290 5934 12290 5934 12291 5871 12291 5933 12291 5934 12292 5933 12292 6007 12292 6007 12293 5933 12293 5935 12293 6007 12294 5935 12294 6012 12294 6012 12295 5935 12295 5868 12295 6012 12296 5868 12296 6015 12296 6015 12297 5868 12297 5936 12297 6015 12298 5936 12298 5937 12298 5937 12299 5936 12299 5869 12299 5937 12300 5869 12300 5939 12300 5939 12301 5869 12301 5938 12301 5939 12302 5938 12302 5941 12302 5941 12303 5938 12303 5940 12303 5941 12304 5940 12304 5942 12304 5942 12305 5940 12305 5943 12305 5942 12306 5943 12306 5944 12306 5944 12307 5943 12307 5870 12307 5944 12308 5870 12308 6014 12308 6014 12309 5870 12309 5867 12309 6014 12310 5867 12310 6013 12310 6013 12311 5867 12311 5866 12311 6013 12312 5866 12312 6016 12312 6016 12313 5866 12313 5862 12313 6016 12314 5862 12314 6030 12314 6030 12315 5862 12315 5861 12315 6030 12316 5861 12316 6017 12316 6017 12317 5861 12317 5860 12317 6017 12318 5860 12318 6018 12318 6018 12319 5860 12319 5945 12319 6018 12320 5945 12320 5946 12320 5946 12321 5945 12321 5947 12321 5946 12322 5947 12322 5948 12322 5948 12323 5947 12323 5864 12323 5948 12324 5864 12324 5950 12324 5950 12325 5864 12325 5951 12325 5949 12326 5950 12326 5952 12326 5951 12327 5952 12327 5950 12327 5949 12328 5952 12328 5669 12328 5669 12329 5952 12329 6209 12329 5669 12330 6209 12330 5953 12330 5953 12331 6209 12331 5865 12331 5953 12332 5865 12332 5954 12332 5954 12333 5865 12333 5863 12333 5954 12334 5863 12334 5955 12334 5955 12335 5863 12335 5956 12335 5955 12336 5956 12336 6019 12336 6019 12337 5956 12337 5957 12337 6019 12338 5957 12338 5958 12338 5958 12339 5957 12339 5859 12339 5958 12340 5859 12340 6020 12340 6020 12341 5859 12341 5894 12341 6020 12342 5894 12342 5959 12342 5959 12343 5894 12343 5856 12343 5959 12344 5856 12344 6022 12344 6022 12345 5856 12345 5858 12345 6022 12346 5858 12346 6023 12346 6023 12347 5858 12347 5960 12347 6023 12348 5960 12348 5962 12348 5962 12349 5960 12349 5961 12349 5962 12350 5961 12350 5963 12350 5963 12351 5961 12351 6200 12351 5963 12352 6200 12352 5965 12352 5965 12353 6200 12353 5964 12353 5965 12354 5964 12354 6024 12354 6024 12355 5964 12355 5857 12355 6024 12356 5857 12356 6021 12356 6021 12357 5857 12357 5855 12357 6021 12358 5855 12358 5966 12358 5966 12359 5855 12359 5854 12359 5966 12360 5854 12360 6025 12360 6025 12361 5854 12361 5967 12361 6025 12362 5967 12362 6026 12362 6026 12363 5967 12363 5968 12363 6026 12364 5968 12364 5969 12364 5969 12365 5968 12365 5853 12365 5969 12366 5853 12366 5970 12366 5970 12367 5853 12367 5972 12367 5970 12368 5972 12368 5971 12368 5971 12369 5972 12369 5973 12369 5971 12370 5973 12370 5690 12370 5690 12371 5973 12371 5974 12371 5690 12372 5974 12372 5692 12372 5692 12373 5974 12373 6191 12373 4778 12374 5975 12374 4045 12374 6191 12375 5975 12375 5692 12375 6191 12376 4045 12376 5975 12376 4778 12377 4045 12377 4787 12377 4787 12378 4045 12378 4173 12378 4787 12379 4173 12379 5976 12379 5976 12380 4173 12380 5852 12380 5976 12381 5852 12381 5977 12381 5977 12382 5852 12382 5978 12382 5977 12383 5978 12383 5980 12383 5980 12384 5978 12384 5979 12384 5980 12385 5979 12385 5981 12385 5981 12386 5979 12386 5851 12386 5981 12387 5851 12387 6027 12387 6027 12388 5851 12388 5982 12388 6027 12389 5982 12389 6028 12389 6028 12390 5982 12390 5890 12390 6028 12391 5890 12391 5989 12391 5989 12392 5890 12392 5983 12392 5989 12393 5983 12393 5988 12393 5988 12394 5983 12394 5848 12394 5988 12395 5848 12395 5984 12395 5984 12396 5848 12396 5850 12396 5984 12397 5850 12397 5985 12397 5985 12398 5850 12398 4163 12398 5985 12399 4163 12399 5986 12399 5986 12400 4163 12400 5847 12400 5984 12401 5985 12401 5988 12401 5988 12402 5985 12402 5986 12402 5988 12403 5986 12403 5987 12403 5987 12404 5986 12404 5895 12404 5987 12405 5990 12405 5988 12405 5988 12406 5990 12406 5989 12406 5989 12407 5990 12407 6040 12407 5989 12408 6040 12408 6031 12408 5897 12409 6040 12409 5990 12409 5991 12410 6097 12410 5897 12410 5991 12411 6102 12411 6097 12411 6029 12412 6102 12412 5991 12412 5899 12413 5910 12413 6029 12413 6029 12414 5910 12414 6102 12414 5992 12415 4817 12415 5899 12415 5899 12416 4817 12416 5994 12416 5899 12417 5994 12417 5910 12417 5900 12418 4886 12418 5992 12418 5992 12419 4886 12419 4817 12419 4817 12420 5993 12420 5903 12420 4817 12421 5903 12421 5994 12421 5994 12422 5903 12422 5995 12422 5995 12423 5903 12423 5906 12423 5995 12424 5906 12424 5996 12424 6102 12425 5910 12425 5997 12425 6102 12426 5997 12426 6100 12426 6100 12427 5997 12427 6101 12427 6101 12428 5997 12428 5998 12428 6101 12429 5998 12429 6046 12429 6046 12430 5998 12430 6050 12430 6050 12431 5998 12431 5999 12431 6050 12432 5999 12432 6000 12432 6050 12433 6000 12433 6051 12433 6051 12434 6000 12434 6052 12434 6052 12435 6000 12435 6004 12435 6052 12436 6004 12436 6054 12436 6054 12437 6004 12437 6114 12437 6000 12438 5999 12438 5917 12438 5917 12439 5999 12439 6001 12439 5917 12440 6001 12440 6002 12440 6002 12441 6001 12441 6003 12441 6003 12442 6001 12442 5914 12442 6002 12443 5916 12443 5917 12443 6005 12444 6113 12444 6004 12444 6004 12445 6113 12445 6114 12445 6005 12446 6112 12446 6113 12446 5920 12447 6112 12447 6005 12447 6008 12448 5932 12448 5920 12448 5920 12449 5932 12449 6006 12449 5920 12450 6006 12450 6112 12450 6112 12451 6006 12451 5934 12451 6112 12452 5934 12452 6109 12452 6109 12453 5934 12453 6007 12453 6109 12454 6007 12454 6060 12454 6109 12455 6060 12455 6110 12455 6110 12456 6060 12456 6058 12456 5922 12457 5926 12457 6008 12457 6008 12458 5926 12458 5928 12458 6008 12459 5928 12459 5932 12459 5932 12460 5928 12460 6009 12460 6009 12461 5928 12461 5930 12461 6009 12462 5930 12462 6010 12462 5924 12463 5925 12463 5922 12463 5922 12464 5925 12464 5926 12464 5926 12465 6011 12465 5928 12465 6060 12466 6007 12466 6062 12466 6062 12467 6007 12467 6012 12467 6062 12468 6012 12468 6061 12468 6061 12469 6012 12469 6014 12469 6061 12470 6014 12470 6013 12470 6061 12471 6013 12471 6065 12471 6065 12472 6013 12472 6090 12472 6012 12473 6015 12473 6014 12473 6014 12474 6015 12474 5944 12474 5944 12475 6015 12475 5939 12475 5944 12476 5939 12476 5941 12476 6015 12477 5937 12477 5939 12477 5941 12478 5942 12478 5944 12478 6016 12479 6093 12479 6013 12479 6016 12480 6089 12480 6093 12480 6030 12481 6086 12481 6016 12481 6016 12482 6086 12482 6089 12482 6017 12483 6019 12483 6030 12483 6030 12484 6019 12484 6086 12484 6018 12485 5950 12485 6017 12485 6017 12486 5950 12486 5955 12486 6017 12487 5955 12487 6019 12487 5946 12488 5948 12488 6018 12488 6018 12489 5948 12489 5950 12489 5955 12490 5950 12490 5949 12490 5955 12491 5949 12491 5954 12491 5954 12492 5949 12492 5669 12492 5954 12493 5669 12493 5953 12493 6086 12494 6019 12494 5958 12494 6086 12495 5958 12495 6087 12495 6087 12496 5958 12496 6020 12496 6087 12497 6020 12497 6088 12497 6088 12498 6020 12498 6072 12498 6072 12499 6020 12499 6073 12499 6073 12500 6020 12500 5959 12500 6073 12501 5959 12501 6021 12501 6073 12502 6021 12502 6076 12502 6076 12503 6021 12503 5966 12503 6076 12504 5966 12504 6078 12504 6078 12505 5966 12505 6121 12505 6021 12506 5959 12506 6024 12506 6024 12507 5959 12507 6022 12507 6024 12508 6022 12508 5963 12508 5963 12509 6022 12509 5962 12509 5962 12510 6022 12510 6023 12510 5963 12511 5965 12511 6024 12511 6025 12512 6121 12512 5966 12512 6025 12513 6120 12513 6121 12513 6026 12514 6120 12514 6025 12514 5969 12515 5980 12515 6026 12515 6026 12516 5980 12516 5981 12516 6026 12517 5981 12517 6120 12517 6120 12518 5981 12518 6124 12518 6124 12519 5981 12519 6027 12519 6124 12520 6027 12520 6123 12520 6123 12521 6027 12521 6028 12521 6123 12522 6028 12522 6122 12522 6122 12523 6028 12523 5845 12523 5970 12524 5692 12524 5969 12524 5969 12525 5692 12525 4778 12525 5969 12526 4778 12526 5980 12526 5980 12527 4778 12527 5977 12527 5977 12528 4778 12528 4787 12528 5977 12529 4787 12529 5976 12529 5971 12530 5690 12530 5970 12530 5970 12531 5690 12531 5692 12531 5692 12532 5975 12532 4778 12532 5845 12533 6028 12533 6032 12533 6032 12534 6028 12534 5989 12534 6032 12535 5989 12535 6031 12535 6078 12536 6121 12536 6082 12536 6082 12537 6121 12537 6081 12537 6081 12538 6121 12538 6122 12538 6081 12539 6122 12539 5845 12539 6054 12540 6114 12540 6057 12540 6057 12541 6114 12541 6110 12541 6057 12542 6110 12542 6056 12542 6056 12543 6110 12543 6058 12543 5897 12544 6097 12544 6098 12544 5897 12545 6098 12545 6040 12545 6098 12546 6041 12546 6040 12546 6041 12547 6098 12547 6043 12547 6043 12548 6098 12548 6104 12548 6043 12549 6104 12549 6045 12549 6045 12550 6104 12550 6046 12550 6046 12551 6104 12551 6101 12551 6013 12552 6093 12552 6090 12552 6065 12553 6090 12553 6069 12553 6069 12554 6090 12554 6085 12554 6069 12555 6085 12555 6068 12555 6068 12556 6085 12556 6072 12556 6072 12557 6085 12557 6088 12557 6040 12558 6038 12558 6031 12558 6031 12559 6038 12559 6033 12559 6034 12560 6035 12560 6033 12560 6036 12561 6034 12561 6033 12561 6034 12562 6033 12562 6032 12562 6034 12563 6032 12563 6031 12563 6034 12564 6031 12564 6033 12564 6033 12565 6035 12565 6036 12565 6040 12566 6037 12566 6038 12566 6040 12567 6039 12567 6037 12567 6040 12568 6041 12568 6039 12568 6041 12569 6042 12569 6039 12569 6042 12570 6103 12570 6039 12570 6043 12571 6045 12571 6047 12571 6043 12572 6047 12572 6044 12572 6041 12573 6043 12573 6042 12573 6042 12574 6043 12574 6044 12574 6045 12575 6046 12575 6047 12575 6049 12576 6047 12576 6046 12576 6050 12577 6049 12577 6046 12577 6048 12578 6049 12578 6050 12578 6051 12579 5879 12579 6050 12579 6050 12580 5879 12580 6048 12580 5879 12581 6051 12581 6052 12581 6054 12582 6055 12582 6052 12582 6052 12583 6055 12583 5879 12583 6054 12584 6057 12584 6053 12584 6055 12585 6054 12585 6053 12585 6056 12586 6058 12586 5891 12586 6056 12587 5891 12587 6053 12587 6057 12588 6056 12588 6053 12588 6058 12589 6060 12589 6059 12589 5891 12590 6058 12590 6059 12590 6062 12591 6063 12591 6060 12591 6060 12592 6063 12592 6059 12592 6062 12593 6061 12593 6063 12593 6063 12594 6061 12594 6064 12594 6065 12595 6066 12595 6061 12595 6061 12596 6066 12596 6064 12596 6066 12597 6065 12597 6067 12597 6067 12598 6065 12598 6069 12598 6068 12599 6072 12599 5893 12599 6070 12600 6067 12600 6069 12600 6069 12601 6068 12601 6070 12601 6070 12602 6068 12602 5893 12602 6072 12603 6071 12603 5893 12603 6073 12604 6075 12604 6072 12604 6072 12605 6075 12605 6071 12605 6073 12606 6074 12606 6075 12606 6076 12607 6077 12607 6073 12607 6073 12608 6077 12608 6074 12608 6078 12609 6079 12609 6076 12609 6076 12610 6079 12610 6077 12610 6078 12611 6082 12611 6079 12611 6082 12612 6080 12612 6079 12612 6080 12613 6081 12613 6083 12613 6082 12614 6081 12614 6080 12614 6083 12615 6081 12615 5845 12615 6092 12616 6091 12616 6094 12616 6087 12617 6088 12617 6094 12617 6085 12618 6090 12618 6095 12618 6089 12619 6086 12619 6092 12619 6085 12620 6095 12620 6088 12620 6087 12621 6094 12621 6091 12621 6087 12622 6091 12622 6086 12622 6093 12623 6096 12623 6090 12623 6086 12624 6091 12624 6092 12624 6089 12625 6092 12625 6096 12625 6089 12626 6096 12626 6093 12626 6088 12627 6095 12627 6094 12627 6090 12628 6084 12628 6095 12628 6090 12629 6096 12629 6084 12629 6097 12630 6103 12630 6098 12630 6101 12631 6106 12631 6100 12631 6098 12632 6107 12632 6104 12632 6098 12633 6103 12633 6107 12633 6102 12634 6100 12634 6099 12634 6104 12635 6108 12635 6101 12635 6102 12636 6105 12636 6097 12636 6104 12637 6107 12637 6108 12637 6099 12638 6105 12638 6102 12638 6097 12639 6105 12639 6103 12639 6100 12640 6106 12640 6099 12640 6101 12641 6108 12641 6106 12641 6110 12642 6118 12642 6109 12642 6112 12643 6109 12643 6111 12643 6109 12644 6118 12644 6115 12644 6109 12645 6115 12645 6111 12645 6114 12646 6116 12646 6110 12646 6110 12647 6116 12647 6118 12647 6114 12648 6113 12648 6117 12648 6112 12649 6117 12649 6113 12649 6114 12650 6117 12650 6116 12650 6112 12651 6111 12651 6117 12651 6123 12652 6127 12652 6124 12652 6121 12653 6120 12653 6126 12653 6120 12654 6124 12654 6129 12654 6121 12655 6126 12655 6125 12655 6121 12656 6125 12656 6122 12656 6122 12657 6130 12657 6123 12657 6120 12658 6129 12658 6126 12658 6122 12659 6125 12659 6130 12659 6126 12660 6129 12660 6128 12660 6124 12661 6127 12661 6129 12661 6126 12662 6119 12662 6125 12662 6126 12663 6128 12663 6119 12663 6125 12664 6119 12664 6130 12664 6123 12665 6130 12665 6127 12665 6322 12666 6131 12666 6133 12666 6372 12667 6133 12667 6132 12667 6132 12668 6133 12668 6131 12668 4070 12669 6261 12669 4174 12669 4174 12670 6261 12670 6136 12670 4174 12671 6136 12671 6134 12671 4070 12672 6135 12672 6261 12672 6261 12673 6180 12673 6136 12673 6136 12674 6180 12674 6182 12674 6182 12675 6180 12675 6131 12675 6258 12676 6131 12676 6180 12676 6137 12677 6418 12677 6258 12677 6137 12678 6419 12678 6418 12678 6138 12679 6419 12679 6137 12679 6256 12680 6141 12680 6138 12680 6138 12681 6141 12681 6419 12681 6139 12682 6250 12682 6256 12682 6256 12683 6250 12683 6245 12683 6256 12684 6245 12684 6141 12684 6255 12685 6252 12685 6139 12685 6139 12686 6252 12686 6250 12686 6245 12687 6250 12687 6251 12687 6251 12688 6250 12688 6249 12688 6245 12689 6251 12689 6246 12689 6246 12690 6251 12690 6140 12690 6419 12691 6141 12691 6243 12691 6419 12692 6243 12692 6411 12692 6411 12693 6243 12693 6417 12693 6417 12694 6243 12694 6142 12694 6417 12695 6142 12695 6410 12695 6410 12696 6142 12696 6370 12696 6370 12697 6142 12697 6368 12697 6368 12698 6142 12698 6143 12698 6368 12699 6143 12699 6144 12699 6368 12700 6144 12700 6366 12700 6366 12701 6144 12701 6367 12701 6367 12702 6144 12702 6145 12702 6367 12703 6145 12703 6385 12703 6367 12704 6385 12704 6384 12704 6144 12705 6143 12705 6146 12705 6146 12706 6143 12706 6147 12706 6146 12707 6147 12707 6148 12707 6148 12708 6147 12708 6241 12708 6241 12709 6147 12709 6242 12709 6148 12710 6239 12710 6146 12710 6236 12711 6385 12711 6145 12711 6236 12712 6386 12712 6385 12712 6179 12713 6386 12713 6236 12713 6151 12714 6224 12714 6179 12714 6179 12715 6224 12715 6149 12715 6179 12716 6149 12716 6386 12716 6386 12717 6149 12717 6387 12717 6387 12718 6149 12718 6150 12718 6387 12719 6150 12719 6388 12719 6388 12720 6150 12720 6222 12720 6388 12721 6222 12721 6356 12721 6388 12722 6356 12722 6358 12722 6155 12723 6230 12723 6151 12723 6151 12724 6230 12724 6233 12724 6151 12725 6233 12725 6224 12725 6224 12726 6233 12726 6226 12726 6226 12727 6233 12727 6152 12727 6226 12728 6152 12728 6153 12728 6154 12729 6234 12729 6155 12729 6155 12730 6234 12730 6230 12730 6231 12731 6233 12731 6230 12731 6356 12732 6222 12732 6355 12732 6355 12733 6222 12733 6156 12733 6355 12734 6156 12734 6354 12734 6354 12735 6156 12735 6157 12735 6354 12736 6157 12736 6213 12736 6354 12737 6213 12737 6350 12737 6350 12738 6213 12738 6403 12738 6156 12739 6159 12739 6157 12739 6157 12740 6159 12740 6214 12740 6214 12741 6159 12741 6216 12741 6214 12742 6216 12742 6158 12742 6221 12743 6219 12743 6159 12743 6159 12744 6219 12744 6216 12744 6160 12745 6407 12745 6213 12745 6213 12746 6407 12746 6403 12746 6160 12747 6408 12747 6407 12747 6162 12748 6408 12748 6160 12748 6163 12749 6161 12749 6162 12749 6162 12750 6161 12750 6408 12750 6165 12751 6210 12751 6163 12751 6163 12752 6210 12752 6164 12752 6163 12753 6164 12753 6161 12753 6211 12754 6210 12754 6165 12754 6210 12755 5952 12755 6164 12755 6164 12756 5952 12756 6206 12756 6206 12757 5952 12757 6209 12757 6206 12758 6209 12758 6207 12758 6408 12759 6161 12759 6409 12759 6409 12760 6161 12760 6166 12760 6409 12761 6166 12761 6167 12761 6409 12762 6167 12762 6402 12762 6402 12763 6167 12763 6342 12763 6402 12764 6342 12764 6346 12764 6342 12765 6167 12765 6341 12765 6341 12766 6167 12766 6203 12766 6341 12767 6203 12767 6169 12767 6341 12768 6169 12768 6336 12768 6336 12769 6169 12769 6337 12769 6337 12770 6169 12770 6168 12770 6337 12771 6168 12771 6333 12771 6333 12772 6168 12772 6398 12772 6169 12773 6203 12773 6170 12773 6170 12774 6203 12774 6171 12774 6170 12775 6171 12775 6200 12775 6200 12776 6171 12776 5961 12776 5961 12777 6171 12777 6201 12777 6200 12778 6172 12778 6170 12778 6198 12779 6397 12779 6168 12779 6168 12780 6397 12780 6398 12780 6173 12781 6396 12781 6198 12781 6198 12782 6396 12782 6397 12782 6196 12783 6184 12783 6173 12783 6173 12784 6184 12784 6174 12784 6173 12785 6174 12785 6396 12785 6396 12786 6174 12786 6175 12786 6396 12787 6175 12787 6176 12787 6396 12788 6176 12788 6394 12788 6394 12789 6176 12789 6326 12789 6394 12790 6326 12790 6395 12790 6177 12791 6191 12791 6196 12791 6196 12792 6191 12792 4044 12792 6196 12793 4044 12793 6184 12793 6184 12794 4044 12794 6185 12794 6185 12795 4044 12795 4172 12795 6185 12796 4172 12796 6187 12796 6194 12797 5974 12797 6177 12797 6177 12798 5974 12798 6191 12798 6326 12799 6176 12799 6324 12799 6324 12800 6176 12800 6182 12800 6324 12801 6182 12801 6131 12801 6258 12802 6418 12802 6131 12802 6131 12803 6418 12803 6420 12803 6131 12804 6420 12804 6132 12804 6132 12805 6420 12805 6410 12805 6132 12806 6410 12806 6373 12806 6373 12807 6410 12807 6370 12807 6350 12808 6403 12808 6349 12808 6349 12809 6403 12809 6406 12809 6349 12810 6406 12810 6347 12810 6347 12811 6406 12811 6346 12811 6346 12812 6406 12812 6402 12812 6333 12813 6398 12813 6178 12813 6178 12814 6398 12814 6330 12814 6330 12815 6398 12815 6395 12815 6330 12816 6395 12816 6328 12816 6328 12817 6395 12817 6326 12817 6382 12818 6367 12818 6384 12818 6367 12819 6382 12819 6360 12819 6360 12820 6382 12820 6358 12820 6358 12821 6382 12821 6388 12821 6263 12822 4174 12822 6181 12822 6181 12823 4174 12823 6134 12823 6181 12824 6134 12824 6264 12824 6264 12825 6134 12825 6136 12825 6264 12826 6136 12826 6323 12826 6323 12827 6136 12827 6182 12827 6323 12828 6182 12828 6265 12828 6265 12829 6182 12829 6176 12829 6265 12830 6176 12830 6266 12830 6266 12831 6176 12831 6175 12831 6266 12832 6175 12832 6319 12832 6319 12833 6175 12833 6174 12833 6319 12834 6174 12834 6267 12834 6267 12835 6174 12835 6184 12835 6267 12836 6184 12836 6183 12836 6183 12837 6184 12837 6185 12837 6183 12838 6185 12838 6186 12838 6186 12839 6185 12839 6187 12839 6186 12840 6187 12840 6188 12840 6188 12841 6187 12841 4172 12841 6188 12842 4172 12842 6189 12842 6189 12843 4172 12843 4044 12843 4044 12844 6191 12844 6189 12844 6191 12845 6190 12845 6189 12845 6190 12846 6191 12846 6192 12846 6192 12847 6191 12847 5974 12847 6192 12848 5974 12848 6193 12848 6193 12849 5974 12849 6194 12849 6193 12850 6194 12850 6195 12850 6195 12851 6194 12851 6177 12851 6195 12852 6177 12852 6268 12852 6268 12853 6177 12853 6196 12853 6268 12854 6196 12854 6197 12854 6197 12855 6196 12855 6173 12855 6197 12856 6173 12856 6269 12856 6269 12857 6173 12857 6198 12857 6269 12858 6198 12858 6270 12858 6270 12859 6198 12859 6168 12859 6270 12860 6168 12860 6271 12860 6271 12861 6168 12861 6169 12861 6271 12862 6169 12862 6273 12862 6273 12863 6169 12863 6170 12863 6273 12864 6170 12864 6199 12864 6199 12865 6170 12865 6172 12865 6199 12866 6172 12866 5391 12866 5391 12867 6172 12867 6200 12867 5391 12868 6200 12868 5390 12868 5390 12869 6200 12869 5961 12869 5390 12870 5961 12870 6274 12870 6274 12871 5961 12871 6201 12871 6274 12872 6201 12872 6272 12872 6272 12873 6201 12873 6171 12873 6272 12874 6171 12874 6202 12874 6202 12875 6171 12875 6203 12875 6202 12876 6203 12876 6204 12876 6204 12877 6203 12877 6167 12877 6204 12878 6167 12878 6205 12878 6205 12879 6167 12879 6166 12879 6205 12880 6166 12880 6318 12880 6318 12881 6166 12881 6161 12881 6318 12882 6161 12882 6279 12882 6279 12883 6161 12883 6164 12883 6279 12884 6164 12884 6283 12884 6283 12885 6164 12885 6206 12885 6283 12886 6206 12886 6282 12886 6282 12887 6206 12887 6207 12887 6282 12888 6207 12888 6208 12888 6208 12889 6207 12889 6209 12889 6208 12890 6209 12890 5375 12890 5375 12891 6209 12891 5952 12891 6284 12892 5375 12892 5952 12892 6280 12893 6284 12893 6210 12893 6210 12894 6284 12894 5952 12894 6280 12895 6210 12895 6281 12895 6281 12896 6210 12896 6211 12896 6281 12897 6211 12897 6212 12897 6212 12898 6211 12898 6165 12898 6212 12899 6165 12899 6276 12899 6276 12900 6165 12900 6163 12900 6276 12901 6163 12901 6277 12901 6277 12902 6163 12902 6162 12902 6277 12903 6162 12903 6278 12903 6278 12904 6162 12904 6160 12904 6278 12905 6160 12905 6285 12905 6285 12906 6160 12906 6213 12906 6285 12907 6213 12907 6286 12907 6286 12908 6213 12908 6157 12908 6286 12909 6157 12909 6288 12909 6288 12910 6157 12910 6214 12910 6288 12911 6214 12911 6215 12911 6215 12912 6214 12912 6158 12912 6215 12913 6158 12913 6217 12913 6217 12914 6158 12914 6216 12914 6217 12915 6216 12915 6218 12915 6218 12916 6216 12916 6219 12916 6218 12917 6219 12917 6220 12917 6220 12918 6219 12918 6221 12918 6220 12919 6221 12919 6289 12919 6289 12920 6221 12920 6159 12920 6289 12921 6159 12921 6287 12921 6287 12922 6159 12922 6156 12922 6287 12923 6156 12923 6320 12923 6320 12924 6156 12924 6222 12924 6320 12925 6222 12925 6290 12925 6290 12926 6222 12926 6150 12926 6290 12927 6150 12927 6291 12927 6291 12928 6150 12928 6149 12928 6291 12929 6149 12929 6223 12929 6223 12930 6149 12930 6224 12930 6223 12931 6224 12931 6225 12931 6225 12932 6224 12932 6226 12932 6225 12933 6226 12933 6227 12933 6227 12934 6226 12934 6153 12934 6227 12935 6153 12935 6293 12935 6293 12936 6153 12936 6152 12936 6293 12937 6152 12937 6228 12937 6228 12938 6152 12938 6233 12938 6230 12939 6229 12939 6232 12939 6233 12940 6231 12940 6232 12940 6230 12941 6232 12941 6231 12941 6233 12942 6232 12942 6228 12942 6229 12943 6230 12943 6295 12943 6295 12944 6230 12944 6234 12944 6295 12945 6234 12945 6235 12945 6235 12946 6234 12946 6154 12946 6235 12947 6154 12947 6294 12947 6294 12948 6154 12948 6155 12948 6294 12949 6155 12949 6292 12949 6292 12950 6155 12950 6151 12950 6292 12951 6151 12951 6296 12951 6296 12952 6151 12952 6179 12952 6296 12953 6179 12953 6297 12953 6297 12954 6179 12954 6236 12954 6297 12955 6236 12955 6237 12955 6237 12956 6236 12956 6145 12956 6237 12957 6145 12957 6298 12957 6298 12958 6145 12958 6144 12958 6298 12959 6144 12959 6304 12959 6304 12960 6144 12960 6146 12960 6304 12961 6146 12961 6305 12961 6305 12962 6146 12962 6239 12962 6305 12963 6239 12963 6238 12963 6238 12964 6239 12964 6148 12964 6238 12965 6148 12965 6303 12965 6303 12966 6148 12966 6241 12966 6303 12967 6241 12967 6240 12967 6240 12968 6241 12968 6242 12968 6240 12969 6242 12969 6306 12969 6306 12970 6242 12970 6147 12970 6306 12971 6147 12971 6300 12971 6300 12972 6147 12972 6143 12972 6300 12973 6143 12973 6307 12973 6307 12974 6143 12974 6142 12974 6307 12975 6142 12975 6308 12975 6308 12976 6142 12976 6243 12976 6308 12977 6243 12977 6310 12977 6310 12978 6243 12978 6141 12978 6310 12979 6141 12979 6244 12979 6244 12980 6141 12980 6245 12980 6244 12981 6245 12981 6313 12981 6313 12982 6245 12982 6246 12982 6313 12983 6246 12983 6315 12983 6315 12984 6246 12984 6140 12984 6315 12985 6140 12985 6247 12985 6247 12986 6140 12986 6251 12986 6247 12987 6251 12987 6248 12987 6248 12988 6251 12988 6249 12988 6250 12989 6316 12989 6249 12989 6316 12990 6248 12990 6249 12990 6316 12991 6250 12991 6253 12991 6253 12992 6250 12992 6252 12992 6253 12993 6252 12993 6254 12993 6254 12994 6252 12994 6255 12994 6254 12995 6255 12995 6314 12995 6314 12996 6255 12996 6139 12996 6314 12997 6139 12997 6309 12997 6309 12998 6139 12998 6256 12998 6309 12999 6256 12999 6257 12999 6257 13000 6256 13000 6138 13000 6257 13001 6138 13001 6311 13001 6311 13002 6138 13002 6137 13002 6311 13003 6137 13003 6312 13003 6312 13004 6137 13004 6258 13004 6312 13005 6258 13005 6317 13005 6317 13006 6258 13006 6180 13006 6317 13007 6180 13007 6259 13007 6259 13008 6180 13008 6261 13008 6259 13009 6261 13009 6260 13009 6260 13010 6261 13010 6135 13010 6260 13011 6135 13011 6262 13011 6262 13012 6135 13012 4070 13012 6262 13013 4070 13013 6263 13013 6263 13014 4070 13014 4174 13014 6260 13015 6262 13015 6259 13015 6259 13016 6262 13016 6263 13016 6259 13017 6263 13017 6264 13017 6264 13018 6263 13018 6181 13018 6264 13019 6323 13019 6259 13019 6259 13020 6323 13020 6317 13020 6317 13021 6323 13021 6321 13021 6265 13022 6321 13022 6323 13022 6266 13023 6391 13023 6265 13023 6266 13024 6389 13024 6391 13024 6319 13025 6389 13025 6266 13025 6267 13026 6197 13026 6319 13026 6319 13027 6197 13027 6393 13027 6319 13028 6393 13028 6389 13028 6183 13029 6189 13029 6267 13029 6267 13030 6189 13030 6268 13030 6267 13031 6268 13031 6197 13031 6186 13032 6188 13032 6183 13032 6183 13033 6188 13033 6189 13033 6189 13034 6190 13034 6268 13034 6268 13035 6190 13035 6195 13035 6195 13036 6190 13036 6192 13036 6195 13037 6192 13037 6193 13037 6393 13038 6197 13038 6269 13038 6393 13039 6269 13039 6270 13039 6393 13040 6270 13040 6392 13040 6392 13041 6270 13041 6332 13041 6392 13042 6332 13042 6329 13042 6332 13043 6270 13043 6339 13043 6339 13044 6270 13044 6271 13044 6339 13045 6271 13045 6202 13045 6339 13046 6202 13046 6340 13046 6340 13047 6202 13047 6204 13047 6340 13048 6204 13048 6343 13048 6343 13049 6204 13049 6399 13049 6202 13050 6271 13050 6272 13050 6272 13051 6271 13051 6273 13051 6272 13052 6273 13052 5390 13052 5390 13053 6273 13053 5391 13053 5391 13054 6273 13054 6199 13054 5390 13055 6274 13055 6272 13055 6205 13056 6405 13056 6204 13056 6204 13057 6405 13057 6399 13057 6205 13058 6275 13058 6405 13058 6318 13059 6275 13059 6205 13059 6279 13060 6276 13060 6318 13060 6318 13061 6276 13061 6277 13061 6318 13062 6277 13062 6275 13062 6275 13063 6277 13063 6401 13063 6401 13064 6277 13064 6278 13064 6401 13065 6278 13065 6285 13065 6401 13066 6285 13066 6400 13066 6400 13067 6285 13067 6351 13067 6400 13068 6351 13068 6344 13068 6283 13069 5375 13069 6279 13069 6279 13070 5375 13070 6280 13070 6279 13071 6280 13071 6276 13071 6276 13072 6280 13072 6212 13072 6212 13073 6280 13073 6281 13073 6282 13074 6208 13074 6283 13074 6283 13075 6208 13075 5375 13075 6280 13076 5375 13076 6284 13076 6351 13077 6285 13077 6353 13077 6353 13078 6285 13078 6286 13078 6353 13079 6286 13079 6352 13079 6352 13080 6286 13080 6287 13080 6352 13081 6287 13081 6320 13081 6352 13082 6320 13082 6381 13082 6352 13083 6381 13083 6376 13083 6286 13084 6288 13084 6287 13084 6287 13085 6288 13085 6289 13085 6289 13086 6288 13086 6217 13086 6289 13087 6217 13087 6218 13087 6288 13088 6215 13088 6217 13088 6218 13089 6220 13089 6289 13089 6290 13090 6379 13090 6320 13090 6320 13091 6379 13091 6381 13091 6291 13092 6379 13092 6290 13092 6223 13093 6296 13093 6291 13093 6291 13094 6296 13094 6377 13094 6225 13095 6228 13095 6223 13095 6223 13096 6228 13096 6292 13096 6223 13097 6292 13097 6296 13097 6227 13098 6293 13098 6225 13098 6225 13099 6293 13099 6228 13099 6292 13100 6228 13100 6229 13100 6229 13101 6228 13101 6232 13101 6292 13102 6229 13102 6294 13102 6294 13103 6229 13103 6295 13103 6294 13104 6295 13104 6235 13104 6377 13105 6296 13105 6297 13105 6377 13106 6297 13106 6375 13106 6375 13107 6297 13107 6237 13107 6375 13108 6237 13108 6378 13108 6378 13109 6237 13109 6364 13109 6378 13110 6364 13110 6380 13110 6364 13111 6237 13111 6299 13111 6299 13112 6237 13112 6298 13112 6299 13113 6298 13113 6300 13113 6299 13114 6300 13114 6369 13114 6369 13115 6300 13115 6301 13115 6301 13116 6300 13116 6307 13116 6301 13117 6307 13117 6302 13117 6302 13118 6307 13118 6413 13118 6300 13119 6298 13119 6306 13119 6306 13120 6298 13120 6304 13120 6306 13121 6304 13121 6303 13121 6303 13122 6304 13122 6238 13122 6238 13123 6304 13123 6305 13123 6303 13124 6240 13124 6306 13124 6308 13125 6413 13125 6307 13125 6308 13126 6412 13126 6413 13126 6310 13127 6412 13127 6308 13127 6244 13128 6309 13128 6310 13128 6310 13129 6309 13129 6257 13129 6310 13130 6257 13130 6412 13130 6412 13131 6257 13131 6311 13131 6412 13132 6311 13132 6415 13132 6415 13133 6311 13133 6312 13133 6415 13134 6312 13134 6416 13134 6416 13135 6312 13135 6133 13135 6313 13136 6248 13136 6244 13136 6244 13137 6248 13137 6316 13137 6244 13138 6316 13138 6309 13138 6309 13139 6316 13139 6314 13139 6314 13140 6316 13140 6253 13140 6314 13141 6253 13141 6254 13141 6315 13142 6247 13142 6313 13142 6313 13143 6247 13143 6248 13143 6133 13144 6312 13144 6322 13144 6322 13145 6312 13145 6317 13145 6322 13146 6317 13146 6321 13146 6302 13147 6413 13147 6414 13147 6302 13148 6414 13148 6371 13148 6371 13149 6414 13149 6374 13149 6374 13150 6414 13150 6372 13150 6372 13151 6414 13151 6416 13151 6372 13152 6416 13152 6133 13152 6343 13153 6399 13153 6345 13153 6345 13154 6399 13154 6348 13154 6348 13155 6399 13155 6344 13155 6344 13156 6399 13156 6400 13156 6265 13157 6391 13157 6325 13157 6325 13158 6391 13158 6327 13158 6327 13159 6391 13159 6390 13159 6327 13160 6390 13160 6331 13160 6331 13161 6390 13161 6329 13161 6329 13162 6390 13162 6392 13162 6377 13163 6379 13163 6291 13163 6352 13164 6376 13164 6357 13164 6357 13165 6376 13165 6359 13165 6359 13166 6376 13166 6380 13166 6359 13167 6380 13167 6365 13167 6365 13168 6380 13168 6364 13168 6325 13169 6321 13169 6265 13169 6322 13170 6321 13170 6131 13170 6131 13171 6321 13171 6324 13171 6325 13172 6326 13172 6321 13172 6321 13173 6326 13173 6324 13173 6326 13174 6327 13174 6328 13174 6327 13175 6326 13175 6325 13175 6329 13176 6178 13176 6331 13176 6331 13177 6330 13177 6327 13177 6327 13178 6330 13178 6328 13178 6330 13179 6331 13179 6178 13179 6329 13180 6333 13180 6178 13180 6329 13181 6332 13181 6333 13181 6339 13182 6337 13182 6332 13182 6332 13183 6337 13183 6333 13183 6339 13184 6336 13184 6337 13184 6335 13185 6337 13185 6334 13185 6334 13186 6337 13186 6336 13186 6334 13187 6336 13187 6338 13187 6337 13188 6335 13188 6338 13188 6336 13189 6337 13189 6338 13189 6339 13190 6341 13190 6336 13190 6339 13191 6340 13191 6341 13191 6343 13192 6342 13192 6340 13192 6340 13193 6342 13193 6341 13193 6343 13194 6346 13194 6342 13194 6345 13195 6346 13195 6343 13195 6344 13196 6349 13196 6348 13196 6347 13197 6348 13197 6349 13197 6346 13198 6345 13198 6347 13198 6345 13199 6348 13199 6347 13199 6344 13200 6351 13200 6350 13200 6349 13201 6344 13201 6350 13201 6353 13202 6354 13202 6351 13202 6351 13203 6354 13203 6350 13203 6354 13204 6353 13204 6352 13204 6354 13205 6352 13205 6355 13205 6352 13206 6356 13206 6355 13206 6352 13207 6357 13207 6356 13207 6356 13208 6357 13208 6358 13208 6358 13209 6357 13209 6360 13209 6360 13210 6357 13210 6359 13210 6365 13211 6367 13211 6359 13211 6360 13212 6359 13212 6367 13212 6365 13213 6363 13213 6364 13213 6364 13214 6362 13214 6365 13214 6362 13215 6363 13215 6365 13215 6361 13216 6364 13216 6363 13216 6365 13217 6364 13217 6367 13217 6362 13218 6364 13218 6361 13218 6299 13219 6367 13219 6364 13219 6367 13220 6299 13220 6366 13220 6369 13221 6368 13221 6299 13221 6299 13222 6368 13222 6366 13222 6301 13223 6368 13223 6369 13223 6302 13224 6370 13224 6301 13224 6301 13225 6370 13225 6368 13225 6302 13226 6371 13226 6370 13226 6374 13227 6370 13227 6371 13227 6373 13228 6372 13228 6132 13228 6370 13229 6374 13229 6373 13229 6374 13230 6372 13230 6373 13230 6376 13231 6382 13231 6380 13231 6381 13232 6388 13232 6376 13232 6379 13233 6383 13233 6381 13233 6377 13234 6387 13234 6379 13234 6379 13235 6387 13235 6383 13235 6378 13236 6385 13236 6375 13236 6388 13237 6381 13237 6383 13237 6375 13238 6386 13238 6377 13238 6376 13239 6388 13239 6382 13239 6375 13240 6385 13240 6386 13240 6377 13241 6386 13241 6387 13241 6380 13242 6382 13242 6384 13242 6380 13243 6384 13243 6378 13243 6378 13244 6384 13244 6385 13244 6383 13245 6387 13245 6388 13245 6389 13246 6394 13246 6391 13246 6393 13247 6396 13247 6389 13247 6390 13248 6398 13248 6392 13248 6391 13249 6394 13249 6395 13249 6391 13250 6395 13250 6390 13250 6393 13251 6392 13251 6397 13251 6389 13252 6396 13252 6394 13252 6390 13253 6395 13253 6398 13253 6392 13254 6398 13254 6397 13254 6393 13255 6397 13255 6396 13255 6401 13256 6408 13256 6275 13256 6399 13257 6405 13257 6402 13257 6399 13258 6406 13258 6400 13258 6275 13259 6404 13259 6405 13259 6400 13260 6406 13260 6403 13260 6401 13261 6400 13261 6407 13261 6400 13262 6403 13262 6407 13262 6401 13263 6407 13263 6408 13263 6399 13264 6402 13264 6406 13264 6404 13265 6409 13265 6405 13265 6275 13266 6408 13266 6404 13266 6405 13267 6409 13267 6402 13267 6404 13268 6408 13268 6409 13268 6416 13269 6418 13269 6415 13269 6416 13270 6420 13270 6418 13270 6414 13271 6413 13271 6410 13271 6412 13272 6415 13272 6419 13272 6412 13273 6411 13273 6413 13273 6413 13274 6411 13274 6417 13274 6412 13275 6419 13275 6411 13275 6413 13276 6417 13276 6410 13276 6414 13277 6410 13277 6416 13277 6416 13278 6410 13278 6420 13278 6415 13279 6418 13279 6419 13279 6653 13280 6656 13280 6422 13280 6422 13281 6656 13281 6421 13281 6739 13282 6423 13282 6736 13282 6423 13283 6421 13283 6736 13283 6421 13284 6423 13284 6422 13284 6422 13285 6423 13285 6739 13285 6424 13286 6586 13286 6478 13286 6478 13287 6586 13287 6482 13287 6478 13288 6482 13288 6481 13288 6424 13289 6588 13289 6586 13289 6586 13290 6426 13290 6482 13290 6482 13291 6426 13291 6425 13291 6425 13292 6426 13292 6655 13292 6425 13293 6655 13293 6659 13293 6427 13294 6656 13294 6426 13294 6584 13295 6830 13295 6427 13295 6583 13296 6830 13296 6584 13296 6428 13297 6830 13297 6583 13297 6473 13298 6831 13298 6428 13298 6428 13299 6831 13299 6830 13299 6581 13300 6429 13300 6473 13300 6473 13301 6429 13301 6831 13301 6580 13302 6574 13302 6581 13302 6581 13303 6574 13303 6569 13303 6581 13304 6569 13304 6429 13304 6578 13305 6577 13305 6580 13305 6580 13306 6577 13306 6574 13306 6569 13307 6574 13307 10111 13307 10111 13308 6574 13308 6572 13308 6569 13309 10111 13309 6570 13309 6570 13310 10111 13310 10113 13310 6570 13311 10113 13311 6571 13311 6831 13312 6429 13312 6430 13312 6831 13313 6430 13313 6828 13313 6828 13314 6430 13314 6431 13314 6828 13315 6431 13315 6567 13315 6828 13316 6567 13316 6565 13316 6828 13317 6565 13317 6832 13317 6832 13318 6565 13318 6729 13318 6729 13319 6565 13319 6725 13319 6725 13320 6565 13320 6432 13320 6725 13321 6432 13321 6728 13321 6728 13322 6432 13322 6433 13322 6728 13323 6433 13323 6724 13323 6724 13324 6433 13324 6722 13324 6722 13325 6433 13325 6560 13325 6722 13326 6560 13326 6720 13326 6720 13327 6560 13327 6763 13327 6433 13328 6432 13328 6434 13328 6434 13329 6432 13329 6435 13329 6434 13330 6435 13330 6562 13330 6562 13331 6435 13331 10121 13331 10121 13332 6435 13332 6564 13332 6562 13333 6561 13333 6434 13333 6559 13334 6763 13334 6560 13334 6437 13335 6762 13335 6559 13335 6559 13336 6762 13336 6763 13336 6436 13337 6759 13337 6437 13337 6437 13338 6759 13338 6762 13338 6439 13339 6759 13339 6436 13339 6443 13340 6438 13340 6439 13340 6439 13341 6438 13341 6545 13341 6439 13342 6545 13342 6759 13342 6759 13343 6545 13343 6764 13343 6764 13344 6545 13344 6440 13344 6764 13345 6440 13345 6441 13345 6764 13346 6441 13346 6442 13346 6764 13347 6442 13347 6542 13347 6764 13348 6542 13348 6741 13348 6741 13349 6542 13349 6707 13349 6741 13350 6707 13350 6477 13350 6444 13351 6551 13351 6443 13351 6443 13352 6551 13352 6552 13352 6443 13353 6552 13353 6438 13353 6438 13354 6552 13354 6548 13354 6548 13355 6552 13355 7688 13355 6548 13356 7688 13356 6549 13356 6556 13357 6445 13357 6444 13357 6444 13358 6445 13358 6551 13358 6551 13359 6555 13359 6552 13359 6707 13360 6542 13360 6703 13360 6703 13361 6542 13361 6447 13361 6703 13362 6447 13362 6706 13362 6706 13363 6447 13363 6700 13363 6700 13364 6447 13364 6446 13364 6700 13365 6446 13365 6701 13365 6701 13366 6446 13366 6533 13366 6701 13367 6533 13367 6695 13367 6695 13368 6533 13368 6803 13368 6447 13369 6541 13369 6446 13369 6446 13370 6541 13370 6448 13370 6448 13371 6541 13371 7681 13371 6448 13372 7681 13372 6535 13372 6539 13373 6537 13373 6541 13373 6541 13374 6537 13374 7681 13374 6532 13375 6810 13375 6533 13375 6533 13376 6810 13376 6803 13376 6531 13377 6810 13377 6532 13377 6450 13378 6787 13378 6531 13378 6531 13379 6787 13379 6810 13379 6449 13380 6787 13380 6450 13380 6452 13381 6451 13381 6449 13381 6449 13382 6451 13382 6787 13382 6528 13383 7742 13383 6452 13383 6452 13384 7742 13384 6453 13384 6452 13385 6453 13385 6451 13385 6527 13386 6524 13386 6528 13386 6528 13387 6524 13387 7742 13387 7742 13388 6520 13388 6523 13388 7742 13389 6523 13389 6453 13389 6453 13390 6523 13390 6454 13390 6454 13391 6523 13391 6518 13391 6454 13392 6518 13392 6455 13392 6787 13393 6451 13393 6808 13393 6808 13394 6451 13394 6512 13394 6808 13395 6512 13395 6456 13395 6808 13396 6456 13396 6511 13396 6808 13397 6511 13397 6809 13397 6809 13398 6511 13398 6457 13398 6809 13399 6457 13399 6685 13399 6685 13400 6457 13400 6681 13400 6681 13401 6457 13401 6509 13401 6681 13402 6509 13402 6682 13402 6682 13403 6509 13403 6458 13403 6682 13404 6458 13404 6678 13404 6678 13405 6458 13405 6674 13405 6674 13406 6458 13406 6464 13406 6674 13407 6464 13407 6671 13407 6671 13408 6464 13408 6784 13408 6458 13409 6509 13409 6459 13409 6459 13410 6509 13410 6460 13410 6459 13411 6460 13411 8278 13411 8278 13412 6460 13412 6506 13412 6506 13413 6460 13413 6461 13413 8278 13414 6462 13414 6459 13414 6463 13415 6776 13415 6464 13415 6464 13416 6776 13416 6784 13416 6504 13417 6785 13417 6463 13417 6463 13418 6785 13418 6776 13418 6465 13419 6785 13419 6504 13419 6475 13420 6786 13420 6465 13420 6465 13421 6786 13421 6785 13421 6503 13422 6489 13422 6475 13422 6475 13423 6489 13423 6466 13423 6475 13424 6466 13424 6786 13424 6786 13425 6466 13425 6467 13425 6786 13426 6467 13426 6468 13426 6786 13427 6468 13427 6782 13427 6782 13428 6468 13428 6485 13428 6782 13429 6485 13429 6767 13429 6767 13430 6485 13430 6469 13430 6767 13431 6469 13431 6661 13431 6767 13432 6661 13432 6476 13432 6472 13433 6498 13433 6503 13433 6503 13434 6498 13434 6496 13434 6503 13435 6496 13435 6489 13435 6489 13436 6496 13436 6470 13436 6470 13437 6496 13437 6493 13437 6470 13438 6493 13438 6491 13438 6471 13439 6501 13439 6472 13439 6472 13440 6501 13440 6498 13440 6498 13441 6500 13441 6496 13441 6661 13442 6469 13442 6660 13442 6660 13443 6469 13443 6425 13443 6660 13444 6425 13444 6659 13444 6427 13445 6830 13445 6834 13445 6427 13446 6834 13446 6421 13446 6833 13447 6736 13447 6834 13447 6834 13448 6736 13448 6421 13448 6736 13449 6833 13449 6733 13449 6733 13450 6833 13450 6734 13450 6734 13451 6833 13451 6832 13451 6734 13452 6832 13452 6730 13452 6730 13453 6832 13453 6729 13453 6803 13454 6804 13454 6695 13454 6695 13455 6804 13455 6474 13455 6474 13456 6804 13456 6688 13456 6688 13457 6804 13457 6692 13457 6692 13458 6804 13458 6684 13458 6684 13459 6804 13459 6807 13459 6684 13460 6807 13460 6685 13460 6685 13461 6807 13461 6809 13461 6671 13462 6784 13462 6670 13462 6670 13463 6784 13463 6783 13463 6670 13464 6783 13464 6668 13464 6668 13465 6783 13465 6476 13465 6476 13466 6783 13466 6767 13466 6761 13467 6711 13467 6763 13467 6763 13468 6711 13468 6720 13468 6711 13469 6761 13469 6714 13469 6714 13470 6761 13470 6477 13470 6477 13471 6761 13471 6741 13471 6426 13472 6656 13472 6655 13472 6421 13473 6656 13473 6427 13473 6590 13474 6478 13474 6479 13474 6479 13475 6478 13475 6481 13475 6479 13476 6481 13476 6480 13476 6480 13477 6481 13477 6482 13477 6480 13478 6482 13478 6483 13478 6483 13479 6482 13479 6425 13479 6483 13480 6425 13480 6649 13480 6649 13481 6425 13481 6469 13481 6649 13482 6469 13482 6484 13482 6484 13483 6469 13483 6485 13483 6484 13484 6485 13484 6486 13484 6486 13485 6485 13485 6468 13485 6486 13486 6468 13486 6592 13486 6592 13487 6468 13487 6467 13487 6592 13488 6467 13488 6487 13488 6487 13489 6467 13489 6466 13489 6487 13490 6466 13490 6488 13490 6488 13491 6466 13491 6489 13491 6488 13492 6489 13492 6490 13492 6490 13493 6489 13493 6470 13493 6490 13494 6470 13494 6595 13494 6595 13495 6470 13495 6491 13495 6595 13496 6491 13496 6492 13496 6492 13497 6491 13497 6493 13497 6492 13498 6493 13498 6494 13498 6494 13499 6493 13499 6496 13499 8289 13500 6497 13500 6495 13500 6496 13501 6499 13501 6494 13501 8289 13502 6495 13502 6498 13502 6499 13503 6497 13503 6494 13503 6497 13504 6499 13504 6495 13504 6500 13505 6499 13505 6496 13505 6500 13506 6495 13506 6499 13506 6495 13507 6500 13507 6498 13507 8289 13508 6498 13508 8766 13508 8766 13509 6498 13509 6501 13509 8766 13510 6501 13510 6502 13510 6502 13511 6501 13511 6471 13511 6502 13512 6471 13512 6596 13512 6596 13513 6471 13513 6472 13513 6596 13514 6472 13514 6594 13514 6594 13515 6472 13515 6503 13515 6594 13516 6503 13516 6593 13516 6593 13517 6503 13517 6475 13517 6593 13518 6475 13518 6597 13518 6597 13519 6475 13519 6465 13519 6597 13520 6465 13520 6598 13520 6598 13521 6465 13521 6504 13521 6598 13522 6504 13522 6599 13522 6599 13523 6504 13523 6463 13523 6599 13524 6463 13524 6505 13524 6505 13525 6463 13525 6464 13525 6505 13526 6464 13526 6600 13526 6600 13527 6464 13527 6458 13527 6600 13528 6458 13528 6602 13528 6602 13529 6458 13529 6459 13529 6602 13530 6459 13530 6603 13530 6603 13531 6459 13531 6462 13531 6603 13532 6462 13532 8764 13532 8764 13533 6462 13533 8278 13533 8764 13534 8278 13534 6604 13534 6604 13535 8278 13535 6506 13535 6604 13536 6506 13536 6507 13536 6507 13537 6506 13537 6461 13537 6507 13538 6461 13538 6508 13538 6508 13539 6461 13539 6460 13539 6508 13540 6460 13540 6510 13540 6510 13541 6460 13541 6509 13541 6510 13542 6509 13542 6601 13542 6601 13543 6509 13543 6457 13543 6601 13544 6457 13544 6605 13544 6605 13545 6457 13545 6511 13545 6605 13546 6511 13546 6606 13546 6606 13547 6511 13547 6456 13547 6606 13548 6456 13548 6607 13548 6607 13549 6456 13549 6512 13549 6607 13550 6512 13550 6513 13550 6513 13551 6512 13551 6451 13551 6513 13552 6451 13552 6514 13552 6514 13553 6451 13553 6453 13553 6514 13554 6453 13554 6515 13554 6515 13555 6453 13555 6454 13555 6515 13556 6454 13556 6516 13556 6516 13557 6454 13557 6455 13557 6516 13558 6455 13558 6517 13558 6517 13559 6455 13559 6518 13559 6517 13560 6518 13560 6522 13560 6522 13561 6518 13561 6523 13561 7742 13562 7379 13562 6520 13562 6523 13563 6521 13563 6522 13563 6519 13564 6521 13564 7379 13564 7379 13565 6521 13565 6520 13565 6520 13566 6521 13566 6523 13566 6521 13567 6519 13567 6522 13567 7379 13568 7742 13568 7380 13568 7380 13569 7742 13569 6524 13569 7380 13570 6524 13570 6525 13570 6525 13571 6524 13571 6527 13571 6525 13572 6527 13572 6526 13572 6526 13573 6527 13573 6528 13573 6526 13574 6528 13574 6611 13574 6611 13575 6528 13575 6452 13575 6611 13576 6452 13576 6608 13576 6608 13577 6452 13577 6449 13577 6608 13578 6449 13578 6529 13578 6529 13579 6449 13579 6450 13579 6529 13580 6450 13580 6530 13580 6530 13581 6450 13581 6531 13581 6530 13582 6531 13582 6609 13582 6609 13583 6531 13583 6532 13583 6609 13584 6532 13584 6610 13584 6610 13585 6532 13585 6533 13585 6610 13586 6533 13586 6612 13586 6612 13587 6533 13587 6446 13587 6612 13588 6446 13588 6614 13588 6614 13589 6446 13589 6448 13589 6614 13590 6448 13590 6534 13590 6534 13591 6448 13591 6535 13591 6534 13592 6535 13592 6536 13592 6536 13593 6535 13593 7681 13593 6536 13594 7681 13594 7302 13594 7302 13595 7681 13595 6537 13595 7302 13596 6537 13596 6538 13596 6538 13597 6537 13597 6539 13597 6538 13598 6539 13598 6540 13598 6540 13599 6539 13599 6541 13599 6540 13600 6541 13600 6613 13600 6613 13601 6541 13601 6447 13601 6613 13602 6447 13602 6651 13602 6651 13603 6447 13603 6542 13603 6651 13604 6542 13604 6615 13604 6615 13605 6542 13605 6442 13605 6615 13606 6442 13606 6543 13606 6543 13607 6442 13607 6441 13607 6543 13608 6441 13608 6544 13608 6544 13609 6441 13609 6440 13609 6544 13610 6440 13610 6617 13610 6617 13611 6440 13611 6545 13611 6617 13612 6545 13612 6546 13612 6546 13613 6545 13613 6438 13613 6546 13614 6438 13614 6547 13614 6547 13615 6438 13615 6548 13615 6547 13616 6548 13616 6619 13616 6619 13617 6548 13617 6549 13617 6619 13618 6549 13618 6620 13618 6620 13619 6549 13619 7688 13619 6620 13620 7688 13620 6550 13620 6550 13621 7688 13621 6552 13621 6552 13622 6554 13622 6550 13622 6553 13623 6555 13623 6551 13623 6555 13624 6554 13624 6552 13624 6555 13625 6553 13625 6621 13625 6621 13626 6554 13626 6555 13626 6554 13627 6621 13627 6550 13627 6553 13628 6551 13628 10462 13628 10462 13629 6551 13629 6445 13629 10462 13630 6445 13630 6622 13630 6622 13631 6445 13631 6556 13631 6622 13632 6556 13632 6557 13632 6557 13633 6556 13633 6444 13633 6557 13634 6444 13634 6618 13634 6618 13635 6444 13635 6443 13635 6618 13636 6443 13636 6616 13636 6616 13637 6443 13637 6439 13637 6616 13638 6439 13638 6623 13638 6623 13639 6439 13639 6436 13639 6623 13640 6436 13640 6558 13640 6558 13641 6436 13641 6437 13641 6558 13642 6437 13642 6624 13642 6624 13643 6437 13643 6559 13643 6624 13644 6559 13644 6625 13644 6625 13645 6559 13645 6560 13645 6625 13646 6560 13646 6626 13646 6626 13647 6560 13647 6433 13647 6626 13648 6433 13648 6630 13648 6630 13649 6433 13649 6434 13649 6630 13650 6434 13650 6631 13650 6631 13651 6434 13651 6561 13651 6631 13652 6561 13652 10447 13652 10447 13653 6561 13653 6562 13653 10447 13654 6562 13654 6563 13654 6563 13655 6562 13655 10121 13655 6563 13656 10121 13656 6632 13656 6632 13657 10121 13657 6564 13657 6632 13658 6564 13658 6629 13658 6629 13659 6564 13659 6435 13659 6629 13660 6435 13660 6628 13660 6628 13661 6435 13661 6432 13661 6628 13662 6432 13662 6634 13662 6634 13663 6432 13663 6565 13663 6634 13664 6565 13664 6633 13664 6633 13665 6565 13665 6567 13665 6633 13666 6567 13666 6566 13666 6566 13667 6567 13667 6431 13667 6566 13668 6431 13668 6635 13668 6635 13669 6431 13669 6430 13669 6635 13670 6430 13670 6637 13670 6637 13671 6430 13671 6429 13671 6637 13672 6429 13672 6568 13672 6568 13673 6429 13673 6569 13673 6568 13674 6569 13674 6644 13674 6644 13675 6569 13675 6570 13675 6644 13676 6570 13676 6643 13676 6643 13677 6570 13677 6571 13677 6643 13678 6571 13678 10436 13678 10436 13679 6571 13679 10113 13679 10436 13680 10113 13680 6645 13680 6645 13681 10113 13681 10111 13681 6575 13682 10111 13682 6572 13682 6574 13683 6573 13683 6572 13683 10111 13684 6575 13684 6645 13684 6641 13685 6573 13685 6574 13685 6575 13686 6646 13686 6645 13686 6573 13687 6646 13687 6575 13687 6575 13688 6572 13688 6573 13688 6573 13689 6641 13689 6646 13689 6641 13690 6574 13690 6576 13690 6576 13691 6574 13691 6577 13691 6576 13692 6577 13692 6642 13692 6642 13693 6577 13693 6578 13693 6642 13694 6578 13694 6579 13694 6579 13695 6578 13695 6580 13695 6579 13696 6580 13696 6636 13696 6636 13697 6580 13697 6581 13697 6636 13698 6581 13698 6582 13698 6582 13699 6581 13699 6473 13699 6582 13700 6473 13700 6638 13700 6638 13701 6473 13701 6428 13701 6638 13702 6428 13702 6639 13702 6639 13703 6428 13703 6583 13703 6639 13704 6583 13704 6585 13704 6585 13705 6583 13705 6584 13705 6585 13706 6584 13706 6640 13706 6640 13707 6584 13707 6427 13707 6640 13708 6427 13708 6647 13708 6647 13709 6427 13709 6426 13709 6647 13710 6426 13710 6591 13710 6591 13711 6426 13711 6586 13711 6591 13712 6586 13712 6587 13712 6587 13713 6586 13713 6588 13713 6587 13714 6588 13714 6589 13714 6589 13715 6588 13715 6424 13715 6589 13716 6424 13716 6590 13716 6590 13717 6424 13717 6478 13717 6587 13718 6589 13718 6591 13718 6591 13719 6589 13719 6590 13719 6591 13720 6590 13720 6480 13720 6480 13721 6590 13721 6479 13721 6480 13722 6483 13722 6591 13722 6591 13723 6483 13723 6647 13723 6647 13724 6483 13724 6658 13724 6647 13725 6658 13725 6652 13725 6649 13726 6657 13726 6483 13726 6483 13727 6657 13727 6658 13727 6484 13728 6775 13728 6649 13728 6649 13729 6775 13729 6771 13729 6486 13730 6775 13730 6484 13730 6592 13731 6775 13731 6486 13731 6487 13732 6775 13732 6592 13732 6488 13733 6593 13733 6487 13733 6487 13734 6593 13734 6775 13734 6490 13735 6494 13735 6488 13735 6488 13736 6494 13736 6594 13736 6488 13737 6594 13737 6593 13737 6595 13738 6492 13738 6490 13738 6490 13739 6492 13739 6494 13739 6494 13740 6497 13740 8289 13740 6494 13741 8289 13741 6594 13741 6594 13742 8289 13742 6596 13742 6596 13743 8289 13743 8766 13743 6596 13744 8766 13744 6502 13744 6775 13745 6593 13745 6766 13745 6766 13746 6593 13746 6597 13746 6766 13747 6597 13747 6598 13747 6766 13748 6598 13748 6773 13748 6773 13749 6598 13749 6599 13749 6773 13750 6599 13750 6505 13750 6773 13751 6505 13751 6769 13751 6769 13752 6505 13752 6672 13752 6769 13753 6672 13753 6669 13753 6672 13754 6505 13754 6675 13754 6675 13755 6505 13755 6600 13755 6675 13756 6600 13756 6677 13756 6677 13757 6600 13757 6510 13757 6677 13758 6510 13758 6679 13758 6679 13759 6510 13759 6680 13759 6680 13760 6510 13760 6601 13760 6680 13761 6601 13761 6683 13761 6683 13762 6601 13762 6789 13762 6510 13763 6600 13763 6508 13763 6508 13764 6600 13764 6602 13764 6508 13765 6602 13765 6604 13765 6604 13766 6602 13766 8764 13766 8764 13767 6602 13767 6603 13767 6604 13768 6507 13768 6508 13768 6605 13769 6794 13769 6601 13769 6601 13770 6794 13770 6789 13770 6606 13771 6794 13771 6605 13771 6607 13772 6790 13772 6606 13772 6606 13773 6790 13773 6794 13773 6513 13774 6790 13774 6607 13774 6514 13775 6611 13775 6513 13775 6513 13776 6611 13776 6608 13776 6513 13777 6608 13777 6790 13777 6790 13778 6608 13778 6529 13778 6790 13779 6529 13779 6788 13779 6788 13780 6529 13780 6530 13780 6788 13781 6530 13781 6609 13781 6788 13782 6609 13782 6610 13782 6788 13783 6610 13783 6797 13783 6797 13784 6610 13784 6696 13784 6797 13785 6696 13785 6694 13785 6515 13786 6522 13786 6514 13786 6514 13787 6522 13787 7379 13787 6514 13788 7379 13788 6611 13788 6611 13789 7379 13789 6526 13789 6526 13790 7379 13790 7380 13790 6526 13791 7380 13791 6525 13791 6516 13792 6517 13792 6515 13792 6515 13793 6517 13793 6522 13793 6522 13794 6519 13794 7379 13794 6696 13795 6610 13795 6699 13795 6699 13796 6610 13796 6612 13796 6699 13797 6612 13797 6698 13797 6698 13798 6612 13798 6704 13798 6704 13799 6612 13799 6613 13799 6704 13800 6613 13800 6705 13800 6705 13801 6613 13801 6651 13801 6705 13802 6651 13802 6709 13802 6709 13803 6651 13803 6749 13803 6612 13804 6614 13804 6613 13804 6613 13805 6614 13805 6540 13805 6540 13806 6614 13806 6536 13806 6540 13807 6536 13807 7302 13807 6614 13808 6534 13808 6536 13808 7302 13809 6538 13809 6540 13809 6615 13810 6745 13810 6651 13810 6543 13811 6745 13811 6615 13811 6544 13812 6746 13812 6543 13812 6543 13813 6746 13813 6745 13813 6617 13814 6746 13814 6544 13814 6546 13815 6616 13815 6617 13815 6617 13816 6616 13816 6746 13816 6547 13817 6550 13817 6546 13817 6546 13818 6550 13818 6618 13818 6546 13819 6618 13819 6616 13819 6619 13820 6620 13820 6547 13820 6547 13821 6620 13821 6550 13821 6618 13822 6550 13822 6553 13822 6553 13823 6550 13823 6621 13823 6618 13824 6553 13824 6557 13824 6557 13825 6553 13825 10462 13825 6557 13826 10462 13826 6622 13826 6746 13827 6616 13827 6743 13827 6743 13828 6616 13828 6623 13828 6743 13829 6623 13829 6558 13829 6743 13830 6558 13830 6744 13830 6744 13831 6558 13831 6624 13831 6744 13832 6624 13832 6625 13832 6744 13833 6625 13833 6747 13833 6747 13834 6625 13834 6719 13834 6747 13835 6719 13835 6742 13835 6742 13836 6719 13836 6712 13836 6719 13837 6625 13837 6723 13837 6723 13838 6625 13838 6626 13838 6723 13839 6626 13839 6627 13839 6627 13840 6626 13840 6628 13840 6627 13841 6628 13841 6726 13841 6726 13842 6628 13842 6727 13842 6727 13843 6628 13843 6634 13843 6727 13844 6634 13844 6648 13844 6648 13845 6634 13845 6817 13845 6628 13846 6626 13846 6629 13846 6629 13847 6626 13847 6630 13847 6629 13848 6630 13848 6563 13848 6563 13849 6630 13849 10447 13849 10447 13850 6630 13850 6631 13850 6563 13851 6632 13851 6629 13851 6633 13852 6813 13852 6634 13852 6566 13853 6813 13853 6633 13853 6635 13854 6812 13854 6566 13854 6566 13855 6812 13855 6813 13855 6637 13856 6812 13856 6635 13856 6568 13857 6636 13857 6637 13857 6637 13858 6636 13858 6582 13858 6637 13859 6582 13859 6812 13859 6812 13860 6582 13860 6811 13860 6811 13861 6582 13861 6638 13861 6811 13862 6638 13862 6814 13862 6814 13863 6638 13863 6639 13863 6814 13864 6639 13864 6585 13864 6814 13865 6585 13865 6640 13865 6814 13866 6640 13866 6815 13866 6815 13867 6640 13867 6422 13867 6815 13868 6422 13868 6739 13868 6644 13869 6645 13869 6568 13869 6568 13870 6645 13870 6641 13870 6568 13871 6641 13871 6636 13871 6636 13872 6641 13872 6579 13872 6579 13873 6641 13873 6576 13873 6579 13874 6576 13874 6642 13874 6643 13875 10436 13875 6644 13875 6644 13876 10436 13876 6645 13876 6645 13877 6646 13877 6641 13877 6422 13878 6640 13878 6653 13878 6653 13879 6640 13879 6647 13879 6653 13880 6647 13880 6652 13880 6813 13881 6817 13881 6634 13881 6648 13882 6817 13882 6732 13882 6732 13883 6817 13883 6820 13883 6732 13884 6820 13884 6738 13884 6738 13885 6820 13885 6815 13885 6738 13886 6815 13886 6739 13886 6792 13887 6683 13887 6789 13887 6683 13888 6792 13888 6687 13888 6687 13889 6792 13889 6689 13889 6689 13890 6792 13890 6694 13890 6694 13891 6792 13891 6797 13891 6649 13892 6771 13892 6662 13892 6662 13893 6771 13893 6768 13893 6768 13894 6650 13894 6662 13894 6650 13895 6768 13895 6664 13895 6664 13896 6768 13896 6669 13896 6669 13897 6768 13897 6769 13897 6651 13898 6745 13898 6749 13898 6709 13899 6749 13899 6708 13899 6708 13900 6749 13900 6710 13900 6710 13901 6749 13901 6742 13901 6710 13902 6742 13902 6717 13902 6717 13903 6742 13903 6712 13903 6662 13904 6657 13904 6649 13904 6658 13905 6659 13905 6652 13905 6652 13906 6659 13906 6655 13906 6653 13907 6654 13907 6656 13907 6656 13908 6654 13908 6655 13908 6654 13909 6653 13909 6652 13909 6655 13910 6654 13910 6652 13910 6660 13911 6659 13911 6657 13911 6659 13912 6658 13912 6657 13912 6662 13913 6661 13913 6657 13913 6657 13914 6661 13914 6660 13914 6662 13915 6663 13915 6661 13915 6661 13916 6663 13916 6476 13916 6476 13917 6663 13917 6650 13917 6662 13918 6650 13918 6663 13918 6668 13919 6667 13919 6670 13919 6670 13920 6667 13920 6669 13920 6650 13921 6665 13921 6476 13921 6666 13922 6667 13922 6668 13922 6666 13923 6668 13923 6665 13923 6665 13924 6650 13924 6664 13924 6665 13925 6664 13925 6666 13925 6665 13926 6668 13926 6476 13926 6664 13927 6667 13927 6666 13927 6667 13928 6664 13928 6669 13928 6669 13929 6673 13929 6670 13929 6673 13930 6671 13930 6670 13930 6671 13931 6673 13931 6672 13931 6673 13932 6669 13932 6672 13932 6675 13933 6674 13933 6672 13933 6672 13934 6674 13934 6671 13934 6675 13935 6676 13935 6674 13935 6678 13936 6676 13936 6677 13936 6675 13937 6677 13937 6676 13937 6674 13938 6676 13938 6678 13938 6679 13939 6682 13939 6677 13939 6677 13940 6682 13940 6678 13940 6679 13941 6681 13941 6682 13941 6681 13942 6679 13942 6680 13942 6683 13943 6685 13943 6680 13943 6680 13944 6685 13944 6681 13944 6683 13945 6686 13945 6685 13945 6686 13946 6684 13946 6685 13946 6683 13947 6687 13947 6686 13947 6684 13948 6686 13948 6687 13948 6687 13949 6692 13949 6684 13949 6688 13950 6693 13950 6474 13950 6474 13951 6691 13951 6694 13951 6687 13952 6690 13952 6692 13952 6691 13953 6689 13953 6694 13953 6689 13954 6693 13954 6690 13954 6693 13955 6689 13955 6691 13955 6693 13956 6688 13956 6690 13956 6690 13957 6688 13957 6692 13957 6690 13958 6687 13958 6689 13958 6693 13959 6691 13959 6474 13959 6694 13960 6697 13960 6474 13960 6695 13961 6697 13961 6696 13961 6697 13962 6694 13962 6696 13962 6474 13963 6697 13963 6695 13963 6699 13964 6701 13964 6696 13964 6696 13965 6701 13965 6695 13965 6699 13966 6702 13966 6701 13966 6699 13967 6698 13967 6702 13967 6701 13968 6702 13968 6700 13968 6700 13969 6702 13969 6698 13969 6704 13970 6706 13970 6698 13970 6698 13971 6706 13971 6700 13971 6703 13972 6706 13972 6705 13972 6705 13973 6706 13973 6704 13973 6709 13974 6707 13974 6705 13974 6705 13975 6707 13975 6703 13975 6707 13976 6709 13976 6708 13976 6707 13977 6708 13977 6477 13977 6710 13978 6477 13978 6708 13978 6717 13979 6712 13979 6713 13979 6713 13980 6711 13980 6714 13980 6711 13981 6713 13981 6712 13981 6710 13982 6715 13982 6477 13982 6477 13983 6715 13983 6716 13983 6717 13984 6716 13984 6715 13984 6716 13985 6717 13985 6713 13985 6710 13986 6717 13986 6715 13986 6714 13987 6477 13987 6716 13987 6716 13988 6713 13988 6714 13988 6712 13989 6718 13989 6711 13989 6718 13990 6720 13990 6711 13990 6720 13991 6718 13991 6719 13991 6718 13992 6712 13992 6719 13992 6723 13993 6722 13993 6719 13993 6719 13994 6722 13994 6720 13994 6723 13995 6721 13995 6722 13995 6724 13996 6721 13996 6627 13996 6723 13997 6627 13997 6721 13997 6722 13998 6721 13998 6724 13998 6726 13999 6728 13999 6627 13999 6627 14000 6728 14000 6724 14000 6725 14001 6728 14001 6727 14001 6728 14002 6726 14002 6727 14002 6648 14003 6729 14003 6727 14003 6727 14004 6729 14004 6725 14004 6648 14005 6731 14005 6729 14005 6731 14006 6730 14006 6729 14006 6730 14007 6731 14007 6732 14007 6648 14008 6732 14008 6731 14008 6732 14009 6734 14009 6730 14009 6740 14010 6738 14010 6739 14010 6735 14011 6738 14011 6737 14011 6733 14012 6740 14012 6736 14012 6734 14013 6735 14013 6733 14013 6736 14014 6740 14014 6739 14014 6732 14015 6735 14015 6734 14015 6737 14016 6740 14016 6733 14016 6737 14017 6733 14017 6735 14017 6732 14018 6738 14018 6735 14018 6737 14019 6738 14019 6740 14019 6762 14020 6753 14020 6763 14020 6749 14021 6745 14021 6755 14021 6743 14022 6752 14022 6746 14022 6744 14023 6747 14023 6753 14023 6746 14024 6754 14024 6745 14024 6744 14025 6753 14025 6751 14025 6744 14026 6751 14026 6743 14026 6746 14027 6748 14027 6754 14027 6745 14028 6754 14028 6750 14028 6745 14029 6750 14029 6755 14029 6755 14030 6760 14030 6749 14030 6747 14031 6758 14031 6753 14031 6746 14032 6752 14032 6748 14032 6747 14033 6742 14033 6757 14033 6747 14034 6757 14034 6758 14034 6742 14035 6749 14035 6756 14035 6742 14036 6756 14036 6757 14036 6743 14037 6751 14037 6752 14037 6749 14038 6760 14038 6756 14038 6748 14039 6752 14039 6759 14039 6751 14040 6753 14040 6762 14040 6751 14041 6762 14041 6752 14041 6754 14042 6765 14042 6750 14042 6748 14043 6759 14043 6754 14043 6755 14044 6750 14044 6741 14044 6754 14045 6764 14045 6765 14045 6756 14046 6761 14046 6757 14046 6756 14047 6760 14047 6761 14047 6757 14048 6761 14048 6763 14048 6758 14049 6757 14049 6763 14049 6750 14050 6765 14050 6741 14050 6753 14051 6758 14051 6763 14051 6754 14052 6759 14052 6764 14052 6755 14053 6741 14053 6760 14053 6752 14054 6762 14054 6759 14054 6760 14055 6741 14055 6761 14055 6765 14056 6764 14056 6741 14056 6771 14057 6777 14057 6768 14057 6769 14058 6768 14058 6772 14058 6769 14059 6770 14059 6773 14059 6766 14060 6773 14060 6774 14060 6775 14061 6766 14061 6779 14061 6773 14062 6776 14062 6774 14062 6766 14063 6774 14063 6780 14063 6766 14064 6780 14064 6779 14064 6775 14065 6782 14065 6771 14065 6773 14066 6770 14066 6776 14066 6768 14067 6777 14067 6778 14067 6775 14068 6779 14068 6782 14068 6769 14069 6772 14069 6770 14069 6771 14070 6767 14070 6777 14070 6774 14071 6781 14071 6780 14071 6768 14072 6778 14072 6772 14072 6774 14073 6776 14073 6781 14073 6770 14074 6784 14074 6776 14074 6777 14075 6767 14075 6778 14075 6771 14076 6782 14076 6767 14076 6772 14077 6783 14077 6770 14077 6772 14078 6778 14078 6783 14078 6779 14079 6780 14079 6786 14079 6781 14080 6785 14080 6780 14080 6778 14081 6767 14081 6783 14081 6781 14082 6776 14082 6785 14082 6780 14083 6785 14083 6786 14083 6770 14084 6783 14084 6784 14084 6779 14085 6786 14085 6782 14085 6788 14086 6799 14086 6790 14086 6804 14087 6803 14087 6802 14087 6789 14088 6794 14088 6793 14088 6789 14089 6793 14089 6791 14089 6788 14090 6795 14090 6799 14090 6788 14091 6797 14091 6795 14091 6790 14092 6799 14092 6796 14092 6792 14093 6789 14093 6800 14093 6789 14094 6791 14094 6800 14094 6792 14095 6800 14095 6798 14095 6792 14096 6798 14096 6797 14096 6794 14097 6805 14097 6793 14097 6790 14098 6796 14098 6806 14098 6790 14099 6801 14099 6794 14099 6797 14100 6803 14100 6795 14100 6790 14101 6806 14101 6801 14101 6791 14102 6807 14102 6800 14102 6794 14103 6801 14103 6805 14103 6793 14104 6809 14104 6791 14104 6800 14105 6804 14105 6798 14105 6797 14106 6798 14106 6802 14106 6797 14107 6802 14107 6803 14107 6793 14108 6805 14108 6809 14108 6791 14109 6809 14109 6807 14109 6798 14110 6804 14110 6802 14110 6795 14111 6803 14111 6810 14111 6795 14112 6810 14112 6799 14112 6806 14113 6796 14113 6787 14113 6800 14114 6807 14114 6804 14114 6805 14115 6801 14115 6808 14115 6801 14116 6806 14116 6808 14116 6799 14117 6810 14117 6796 14117 6805 14118 6808 14118 6809 14118 6796 14119 6810 14119 6787 14119 6806 14120 6787 14120 6808 14120 6832 14121 6827 14121 6828 14121 6828 14122 6824 14122 6831 14122 6813 14123 6812 14123 6823 14123 6815 14124 6819 14124 6816 14124 6815 14125 6816 14125 6814 14125 6815 14126 6820 14126 6829 14126 6815 14127 6829 14127 6818 14127 6815 14128 6818 14128 6819 14128 6812 14129 6811 14129 6821 14129 6813 14130 6823 14130 6822 14130 6814 14131 6816 14131 6826 14131 6814 14132 6826 14132 6811 14132 6811 14133 6826 14133 6821 14133 6812 14134 6821 14134 6824 14134 6818 14135 6833 14135 6819 14135 6812 14136 6824 14136 6823 14136 6813 14137 6827 14137 6817 14137 6813 14138 6822 14138 6827 14138 6818 14139 6829 14139 6833 14139 6817 14140 6827 14140 6832 14140 6817 14141 6832 14141 6820 14141 6820 14142 6832 14142 6829 14142 6816 14143 6819 14143 6825 14143 6816 14144 6825 14144 6826 14144 6823 14145 6824 14145 6822 14145 6819 14146 6833 14146 6834 14146 6826 14147 6830 14147 6821 14147 6822 14148 6824 14148 6828 14148 6822 14149 6828 14149 6827 14149 6825 14150 6830 14150 6826 14150 6824 14151 6821 14151 6831 14151 6819 14152 6834 14152 6825 14152 6829 14153 6832 14153 6833 14153 6821 14154 6830 14154 6831 14154 6825 14155 6834 14155 6830 14155 7074 14156 7073 14156 6836 14156 6836 14157 7073 14157 6837 14157 7159 14158 6835 14158 7163 14158 6835 14159 6837 14159 7163 14159 6837 14160 6835 14160 6836 14160 6835 14161 7159 14161 6836 14161 7013 14162 7010 14162 6838 14162 6838 14163 7010 14163 6839 14163 6838 14164 6839 14164 6898 14164 7013 14165 6840 14165 7010 14165 7010 14166 7008 14166 6839 14166 6839 14167 7008 14167 6841 14167 6841 14168 7008 14168 7077 14168 6841 14169 7077 14169 7081 14169 6893 14170 7073 14170 7008 14170 6842 14171 7239 14171 6893 14171 6843 14172 7264 14172 6842 14172 6842 14173 7264 14173 7239 14173 7006 14174 7264 14174 6843 14174 6844 14175 7260 14175 7006 14175 7006 14176 7260 14176 7264 14176 6845 14177 6848 14177 6844 14177 6844 14178 6848 14178 7260 14178 7003 14179 6997 14179 6845 14179 6845 14180 6997 14180 6846 14180 6845 14181 6846 14181 6848 14181 7000 14182 6999 14182 7003 14182 7003 14183 6999 14183 6997 14183 6846 14184 6997 14184 6992 14184 6992 14185 6997 14185 6994 14185 6846 14186 6992 14186 6847 14186 6847 14187 6992 14187 10758 14187 6847 14188 10758 14188 6991 14188 7260 14189 6848 14189 7265 14189 7265 14190 6848 14190 6987 14190 7265 14191 6987 14191 6985 14191 7265 14192 6985 14192 7240 14192 7240 14193 6985 14193 6984 14193 7240 14194 6984 14194 6849 14194 7240 14195 6849 14195 7157 14195 7240 14196 7157 14196 7261 14196 7157 14197 6849 14197 7153 14197 7153 14198 6849 14198 6983 14198 7153 14199 6983 14199 7151 14199 7151 14200 6983 14200 6850 14200 7151 14201 6850 14201 7147 14201 7147 14202 6850 14202 7149 14202 7149 14203 6850 14203 6975 14203 7149 14204 6975 14204 7145 14204 7145 14205 6975 14205 7186 14205 6850 14206 6983 14206 6977 14206 6977 14207 6983 14207 6851 14207 6977 14208 6851 14208 10891 14208 10891 14209 6851 14209 10892 14209 10892 14210 6851 14210 6852 14210 10891 14211 6853 14211 6977 14211 6854 14212 7187 14212 6975 14212 6975 14213 7187 14213 7186 14213 6855 14214 7187 14214 6854 14214 6856 14215 7188 14215 6855 14215 6855 14216 7188 14216 7187 14216 6896 14217 7188 14217 6856 14217 6862 14218 6857 14218 6896 14218 6896 14219 6857 14219 6858 14219 6896 14220 6858 14220 7166 14220 7166 14221 6858 14221 6859 14221 7166 14222 6859 14222 6959 14222 7166 14223 6959 14223 7189 14223 7189 14224 6959 14224 6860 14224 7189 14225 6860 14225 6861 14225 7189 14226 6861 14226 7165 14226 7165 14227 6861 14227 7133 14227 7165 14228 7133 14228 7134 14228 6865 14229 10791 14229 6862 14229 6862 14230 10791 14230 6965 14230 6862 14231 6965 14231 6857 14231 6857 14232 6965 14232 6963 14232 6963 14233 6965 14233 6863 14233 6963 14234 6863 14234 6864 14234 6969 14235 10787 14235 6865 14235 6865 14236 10787 14236 10791 14236 7133 14237 6861 14237 7131 14237 7131 14238 6861 14238 6866 14238 7131 14239 6866 14239 7128 14239 7128 14240 6866 14240 7125 14240 7125 14241 6866 14241 6951 14241 7125 14242 6951 14242 7123 14242 7123 14243 6951 14243 6867 14243 7123 14244 6867 14244 7122 14244 7122 14245 6867 14245 7217 14245 6866 14246 6958 14246 6951 14246 6951 14247 6958 14247 6868 14247 6868 14248 6958 14248 6954 14248 6868 14249 6954 14249 6953 14249 6957 14250 6955 14250 6958 14250 6958 14251 6955 14251 6954 14251 6950 14252 7237 14252 6867 14252 6869 14253 7237 14253 6950 14253 6948 14254 7216 14254 6869 14254 6869 14255 7216 14255 7237 14255 6870 14256 7216 14256 6948 14256 6871 14257 6872 14257 6870 14257 6870 14258 6872 14258 7216 14258 6873 14259 6938 14259 6871 14259 6871 14260 6938 14260 6933 14260 6871 14261 6933 14261 6872 14261 6945 14262 6874 14262 6873 14262 6873 14263 6874 14263 6938 14263 6940 14264 6943 14264 6938 14264 6938 14265 6943 14265 6937 14265 6938 14266 6937 14266 6933 14266 6933 14267 6937 14267 6875 14267 6875 14268 6937 14268 6936 14268 6875 14269 6936 14269 6934 14269 7216 14270 6872 14270 6932 14270 7216 14271 6932 14271 6931 14271 7216 14272 6931 14272 7235 14272 7235 14273 6931 14273 6876 14273 7235 14274 6876 14274 6878 14274 7235 14275 6878 14275 6877 14275 6877 14276 6878 14276 7107 14276 7107 14277 6878 14277 7105 14277 7105 14278 6878 14278 6879 14278 7105 14279 6879 14279 7102 14279 7102 14280 6879 14280 6880 14280 7102 14281 6880 14281 7098 14281 7098 14282 6880 14282 7097 14282 7097 14283 6880 14283 6922 14283 7097 14284 6922 14284 7094 14284 7094 14285 6922 14285 7212 14285 6880 14286 6879 14286 6883 14286 6883 14287 6879 14287 6881 14287 6883 14288 6881 14288 6926 14288 6926 14289 6881 14289 6882 14289 6882 14290 6881 14290 6928 14290 6926 14291 6924 14291 6883 14291 6884 14292 7207 14292 6922 14292 6885 14293 7210 14293 6884 14293 6884 14294 7210 14294 7207 14294 6886 14295 7210 14295 6885 14295 6888 14296 7213 14296 6886 14296 6886 14297 7213 14297 7210 14297 6891 14298 6887 14298 6888 14298 6888 14299 6887 14299 6889 14299 6888 14300 6889 14300 7213 14300 7213 14301 6889 14301 6890 14301 7213 14302 6890 14302 6901 14302 7213 14303 6901 14303 7190 14303 7190 14304 6901 14304 6900 14304 7190 14305 6900 14305 6899 14305 7190 14306 6899 14306 7214 14306 7214 14307 6899 14307 7082 14307 7214 14308 7082 14308 7089 14308 6920 14309 6913 14309 6891 14309 6891 14310 6913 14310 6912 14310 6891 14311 6912 14311 6887 14311 6887 14312 6912 14312 6904 14312 6904 14313 6912 14313 6908 14313 6904 14314 6908 14314 6907 14314 6918 14315 6892 14315 6920 14315 6920 14316 6892 14316 6913 14316 6913 14317 6914 14317 6912 14317 7082 14318 6899 14318 7079 14318 7079 14319 6899 14319 6841 14319 7079 14320 6841 14320 7081 14320 6893 14321 7239 14321 6837 14321 6837 14322 7239 14322 7262 14322 7262 14323 7163 14323 6837 14323 7163 14324 7262 14324 6894 14324 6894 14325 7262 14325 7158 14325 7158 14326 7262 14326 7261 14326 7158 14327 7261 14327 7157 14327 7237 14328 7217 14328 6867 14328 7122 14329 7217 14329 7120 14329 7120 14330 7217 14330 7236 14330 7120 14331 7236 14331 7112 14331 7112 14332 7236 14332 7110 14332 7110 14333 7236 14333 7109 14333 7109 14334 7236 14334 6895 14334 6895 14335 7236 14335 6877 14335 6895 14336 6877 14336 7107 14336 7207 14337 7212 14337 6922 14337 7094 14338 7212 14338 7092 14338 7092 14339 7212 14339 7215 14339 7092 14340 7215 14340 7090 14340 7090 14341 7215 14341 7089 14341 7089 14342 7215 14342 7214 14342 7184 14343 7141 14343 7186 14343 7186 14344 7141 14344 7145 14344 7141 14345 7184 14345 7136 14345 7136 14346 7184 14346 7135 14346 7135 14347 7184 14347 7134 14347 7134 14348 7184 14348 7165 14348 7166 14349 7188 14349 6896 14349 7008 14350 7073 14350 7077 14350 6837 14351 7073 14351 6893 14351 7012 14352 6838 14352 6897 14352 6897 14353 6838 14353 6898 14353 6897 14354 6898 14354 7014 14354 7014 14355 6898 14355 6839 14355 7014 14356 6839 14356 7016 14356 7016 14357 6839 14357 6841 14357 7016 14358 6841 14358 7017 14358 7017 14359 6841 14359 6899 14359 7017 14360 6899 14360 7018 14360 7018 14361 6899 14361 6900 14361 7018 14362 6900 14362 7019 14362 7019 14363 6900 14363 6901 14363 7019 14364 6901 14364 6902 14364 6902 14365 6901 14365 6890 14365 6902 14366 6890 14366 7072 14366 7072 14367 6890 14367 6889 14367 7072 14368 6889 14368 7020 14368 7020 14369 6889 14369 6887 14369 7020 14370 6887 14370 6903 14370 6903 14371 6887 14371 6904 14371 6903 14372 6904 14372 6905 14372 6905 14373 6904 14373 6907 14373 6905 14374 6907 14374 6906 14374 6906 14375 6907 14375 6908 14375 6906 14376 6908 14376 6911 14376 6911 14377 6908 14377 6912 14377 6913 14378 6910 14378 6914 14378 6914 14379 6910 14379 6911 14379 6909 14380 6910 14380 6913 14380 6914 14381 6911 14381 6912 14381 6909 14382 6913 14382 6915 14382 6915 14383 6913 14383 6892 14383 6915 14384 6892 14384 6916 14384 6916 14385 6892 14385 6918 14385 6916 14386 6918 14386 6917 14386 6917 14387 6918 14387 6920 14387 6917 14388 6920 14388 6919 14388 6919 14389 6920 14389 6891 14389 6919 14390 6891 14390 7021 14390 7021 14391 6891 14391 6888 14391 7021 14392 6888 14392 6921 14392 6921 14393 6888 14393 6886 14393 6921 14394 6886 14394 7022 14394 7022 14395 6886 14395 6885 14395 7022 14396 6885 14396 7023 14396 7023 14397 6885 14397 6884 14397 7023 14398 6884 14398 7024 14398 7024 14399 6884 14399 6922 14399 7024 14400 6922 14400 7025 14400 7025 14401 6922 14401 6880 14401 7025 14402 6880 14402 6923 14402 6923 14403 6880 14403 6883 14403 6923 14404 6883 14404 6925 14404 6925 14405 6883 14405 6924 14405 6925 14406 6924 14406 7027 14406 7027 14407 6924 14407 6926 14407 7027 14408 6926 14408 7026 14408 7026 14409 6926 14409 6882 14409 7026 14410 6882 14410 7028 14410 7028 14411 6882 14411 6928 14411 7028 14412 6928 14412 6927 14412 6927 14413 6928 14413 6881 14413 6927 14414 6881 14414 6929 14414 6929 14415 6881 14415 6879 14415 6929 14416 6879 14416 7029 14416 7029 14417 6879 14417 6878 14417 7029 14418 6878 14418 7030 14418 7030 14419 6878 14419 6876 14419 7030 14420 6876 14420 6930 14420 6930 14421 6876 14421 6931 14421 6930 14422 6931 14422 7031 14422 7031 14423 6931 14423 6932 14423 7031 14424 6932 14424 7033 14424 7033 14425 6932 14425 6872 14425 7033 14426 6872 14426 7038 14426 7038 14427 6872 14427 6933 14427 7038 14428 6933 14428 7037 14428 7037 14429 6933 14429 6875 14429 7037 14430 6875 14430 7042 14430 7042 14431 6875 14431 6934 14431 7042 14432 6934 14432 6935 14432 6935 14433 6934 14433 6936 14433 6935 14434 6936 14434 6944 14434 6944 14435 6936 14435 6937 14435 6939 14436 6941 14436 6942 14436 6939 14437 6937 14437 6943 14437 6937 14438 6939 14438 6944 14438 6942 14439 6940 14439 6938 14439 6943 14440 6940 14440 6939 14440 6940 14441 6942 14441 6941 14441 6941 14442 6939 14442 6940 14442 6942 14443 6938 14443 7040 14443 7040 14444 6938 14444 6874 14444 7040 14445 6874 14445 7041 14445 7041 14446 6874 14446 6945 14446 7041 14447 6945 14447 7039 14447 7039 14448 6945 14448 6873 14448 7039 14449 6873 14449 6946 14449 6946 14450 6873 14450 6871 14450 6946 14451 6871 14451 7032 14451 7032 14452 6871 14452 6870 14452 7032 14453 6870 14453 6947 14453 6947 14454 6870 14454 6948 14454 6947 14455 6948 14455 7034 14455 7034 14456 6948 14456 6869 14456 7034 14457 6869 14457 6949 14457 6949 14458 6869 14458 6950 14458 6949 14459 6950 14459 7035 14459 7035 14460 6950 14460 6867 14460 7035 14461 6867 14461 7043 14461 7043 14462 6867 14462 6951 14462 7043 14463 6951 14463 7047 14463 7047 14464 6951 14464 6868 14464 7047 14465 6868 14465 6952 14465 6952 14466 6868 14466 6953 14466 6952 14467 6953 14467 7048 14467 7048 14468 6953 14468 6954 14468 7048 14469 6954 14469 7046 14469 7046 14470 6954 14470 6955 14470 7046 14471 6955 14471 6956 14471 6956 14472 6955 14472 6957 14472 6956 14473 6957 14473 7045 14473 7045 14474 6957 14474 6958 14474 7045 14475 6958 14475 7044 14475 7044 14476 6958 14476 6866 14476 7044 14477 6866 14477 7049 14477 7049 14478 6866 14478 6861 14478 7049 14479 6861 14479 7051 14479 7051 14480 6861 14480 6860 14480 7051 14481 6860 14481 7050 14481 7050 14482 6860 14482 6959 14482 7050 14483 6959 14483 7052 14483 7052 14484 6959 14484 6859 14484 7052 14485 6859 14485 6960 14485 6960 14486 6859 14486 6858 14486 6960 14487 6858 14487 6961 14487 6961 14488 6858 14488 6857 14488 6961 14489 6857 14489 6962 14489 6962 14490 6857 14490 6963 14490 6962 14491 6963 14491 6964 14491 6964 14492 6963 14492 6864 14492 6964 14493 6864 14493 7054 14493 7054 14494 6864 14494 6863 14494 7054 14495 6863 14495 6966 14495 6966 14496 6863 14496 6965 14496 10791 14497 6967 14497 6965 14497 11184 14498 6967 14498 10791 14498 6965 14499 7055 14499 6966 14499 6967 14500 11184 14500 7055 14500 6967 14501 7055 14501 6965 14501 11184 14502 10791 14502 6968 14502 6968 14503 10791 14503 10787 14503 6968 14504 10787 14504 6970 14504 6970 14505 10787 14505 6969 14505 6970 14506 6969 14506 7056 14506 7056 14507 6969 14507 6865 14507 7056 14508 6865 14508 7053 14508 7053 14509 6865 14509 6862 14509 7053 14510 6862 14510 6971 14510 6971 14511 6862 14511 6896 14511 6971 14512 6896 14512 6972 14512 6972 14513 6896 14513 6856 14513 6972 14514 6856 14514 7057 14514 7057 14515 6856 14515 6855 14515 7057 14516 6855 14516 6973 14516 6973 14517 6855 14517 6854 14517 6973 14518 6854 14518 6974 14518 6974 14519 6854 14519 6975 14519 6974 14520 6975 14520 7058 14520 7058 14521 6975 14521 6850 14521 7058 14522 6850 14522 6976 14522 6976 14523 6850 14523 6977 14523 6976 14524 6977 14524 6978 14524 6978 14525 6977 14525 6853 14525 6978 14526 6853 14526 11137 14526 11137 14527 6853 14527 10891 14527 11137 14528 10891 14528 6979 14528 6979 14529 10891 14529 10892 14529 6979 14530 10892 14530 6980 14530 6980 14531 10892 14531 6852 14531 6980 14532 6852 14532 6981 14532 6981 14533 6852 14533 6851 14533 6981 14534 6851 14534 6982 14534 6982 14535 6851 14535 6983 14535 6982 14536 6983 14536 7068 14536 7068 14537 6983 14537 6849 14537 7068 14538 6849 14538 7059 14538 7059 14539 6849 14539 6984 14539 7059 14540 6984 14540 7060 14540 7060 14541 6984 14541 6985 14541 7060 14542 6985 14542 6986 14542 6986 14543 6985 14543 6987 14543 6986 14544 6987 14544 6988 14544 6988 14545 6987 14545 6848 14545 6988 14546 6848 14546 7061 14546 7061 14547 6848 14547 6846 14547 7061 14548 6846 14548 6989 14548 6989 14549 6846 14549 6847 14549 6989 14550 6847 14550 6990 14550 6990 14551 6847 14551 6991 14551 6990 14552 6991 14552 7065 14552 7065 14553 6991 14553 10758 14553 7065 14554 10758 14554 7066 14554 7066 14555 10758 14555 6992 14555 6995 14556 6993 14556 6996 14556 6993 14557 7066 14557 6992 14557 6996 14558 6994 14558 6997 14558 6995 14559 6996 14559 6997 14559 6996 14560 6993 14560 6992 14560 6994 14561 6996 14561 6992 14561 6995 14562 6997 14562 6998 14562 6998 14563 6997 14563 6999 14563 6998 14564 6999 14564 7001 14564 7001 14565 6999 14565 7000 14565 7001 14566 7000 14566 7002 14566 7002 14567 7000 14567 7003 14567 7002 14568 7003 14568 7062 14568 7062 14569 7003 14569 6845 14569 7062 14570 6845 14570 7004 14570 7004 14571 6845 14571 6844 14571 7004 14572 6844 14572 7005 14572 7005 14573 6844 14573 7006 14573 7005 14574 7006 14574 7063 14574 7063 14575 7006 14575 6843 14575 7063 14576 6843 14576 7007 14576 7007 14577 6843 14577 6842 14577 7007 14578 6842 14578 7064 14578 7064 14579 6842 14579 6893 14579 7064 14580 6893 14580 7067 14580 7067 14581 6893 14581 7008 14581 7067 14582 7008 14582 7015 14582 7015 14583 7008 14583 7010 14583 7015 14584 7010 14584 7009 14584 7009 14585 7010 14585 6840 14585 7009 14586 6840 14586 7011 14586 7011 14587 6840 14587 7013 14587 7011 14588 7013 14588 7012 14588 7012 14589 7013 14589 6838 14589 7009 14590 7011 14590 7015 14590 7015 14591 7011 14591 7012 14591 7015 14592 7012 14592 7014 14592 7014 14593 7012 14593 6897 14593 7014 14594 7016 14594 7015 14594 7015 14595 7016 14595 7067 14595 7067 14596 7016 14596 7078 14596 7067 14597 7078 14597 7075 14597 7017 14598 7080 14598 7016 14598 7016 14599 7080 14599 7078 14599 7018 14600 7197 14600 7017 14600 7019 14601 7194 14601 7018 14601 7018 14602 7194 14602 7197 14602 6902 14603 7194 14603 7019 14603 7072 14604 7191 14604 6902 14604 6902 14605 7191 14605 7194 14605 7020 14606 7021 14606 7072 14606 7072 14607 7021 14607 7191 14607 6903 14608 6911 14608 7020 14608 7020 14609 6911 14609 6919 14609 7020 14610 6919 14610 7021 14610 6905 14611 6906 14611 6903 14611 6903 14612 6906 14612 6911 14612 6911 14613 6910 14613 6909 14613 6911 14614 6909 14614 6919 14614 6919 14615 6909 14615 6917 14615 6917 14616 6909 14616 6915 14616 6917 14617 6915 14617 6916 14617 7191 14618 7021 14618 6921 14618 7191 14619 6921 14619 7198 14619 7198 14620 6921 14620 7022 14620 7198 14621 7022 14621 7023 14621 7198 14622 7023 14622 7024 14622 7198 14623 7024 14623 7195 14623 7195 14624 7024 14624 7096 14624 7195 14625 7096 14625 7192 14625 7096 14626 7024 14626 7100 14626 7100 14627 7024 14627 7025 14627 7100 14628 7025 14628 7099 14628 7099 14629 7025 14629 6929 14629 7099 14630 6929 14630 7104 14630 7104 14631 6929 14631 7103 14631 7103 14632 6929 14632 7029 14632 7103 14633 7029 14633 7106 14633 7106 14634 7029 14634 7069 14634 6929 14635 7025 14635 6927 14635 6927 14636 7025 14636 6923 14636 6927 14637 6923 14637 7026 14637 7026 14638 6923 14638 7027 14638 7027 14639 6923 14639 6925 14639 7026 14640 7028 14640 6927 14640 7030 14641 7227 14641 7029 14641 7029 14642 7227 14642 7069 14642 6930 14643 7220 14643 7030 14643 7030 14644 7220 14644 7227 14644 7031 14645 7234 14645 6930 14645 6930 14646 7234 14646 7220 14646 7033 14647 7234 14647 7031 14647 7038 14648 6946 14648 7033 14648 7033 14649 6946 14649 7032 14649 7033 14650 7032 14650 7234 14650 7234 14651 7032 14651 7219 14651 7219 14652 7032 14652 6947 14652 7219 14653 6947 14653 7223 14653 7223 14654 6947 14654 7034 14654 7223 14655 7034 14655 6949 14655 7223 14656 6949 14656 7035 14656 7223 14657 7035 14657 7218 14657 7218 14658 7035 14658 7036 14658 7218 14659 7036 14659 7111 14659 7037 14660 6944 14660 7038 14660 7038 14661 6944 14661 6942 14661 7038 14662 6942 14662 6946 14662 6946 14663 6942 14663 7039 14663 7039 14664 6942 14664 7040 14664 7039 14665 7040 14665 7041 14665 7042 14666 6935 14666 7037 14666 7037 14667 6935 14667 6944 14667 6944 14668 6939 14668 6942 14668 7036 14669 7035 14669 7127 14669 7127 14670 7035 14670 7043 14670 7127 14671 7043 14671 7124 14671 7124 14672 7043 14672 7129 14672 7129 14673 7043 14673 7044 14673 7129 14674 7044 14674 7130 14674 7130 14675 7044 14675 7049 14675 7130 14676 7049 14676 7132 14676 7132 14677 7049 14677 7169 14677 7043 14678 7047 14678 7044 14678 7044 14679 7047 14679 7045 14679 7045 14680 7047 14680 7048 14680 7045 14681 7048 14681 7046 14681 7047 14682 6952 14682 7048 14682 7046 14683 6956 14683 7045 14683 7051 14684 7169 14684 7049 14684 7050 14685 7167 14685 7051 14685 7051 14686 7167 14686 7169 14686 7052 14687 7167 14687 7050 14687 6960 14688 7167 14688 7052 14688 6961 14689 6971 14689 6960 14689 6960 14690 6971 14690 7167 14690 6962 14691 6966 14691 6961 14691 6961 14692 6966 14692 7053 14692 6961 14693 7053 14693 6971 14693 6964 14694 7054 14694 6962 14694 6962 14695 7054 14695 6966 14695 7053 14696 6966 14696 11184 14696 11184 14697 6966 14697 7055 14697 7053 14698 11184 14698 7056 14698 7056 14699 11184 14699 6968 14699 7056 14700 6968 14700 6970 14700 7167 14701 6971 14701 7168 14701 7168 14702 6971 14702 6972 14702 7168 14703 6972 14703 7057 14703 7168 14704 7057 14704 7164 14704 7164 14705 7057 14705 6973 14705 7164 14706 6973 14706 6974 14706 7164 14707 6974 14707 7170 14707 7170 14708 6974 14708 7144 14708 7170 14709 7144 14709 7139 14709 7144 14710 6974 14710 7148 14710 7148 14711 6974 14711 7058 14711 7148 14712 7058 14712 7150 14712 7150 14713 7058 14713 6982 14713 7150 14714 6982 14714 7152 14714 7152 14715 6982 14715 7154 14715 7154 14716 6982 14716 7068 14716 7154 14717 7068 14717 7155 14717 7155 14718 7068 14718 7243 14718 6982 14719 7058 14719 6981 14719 6981 14720 7058 14720 6976 14720 6981 14721 6976 14721 6979 14721 6979 14722 6976 14722 11137 14722 11137 14723 6976 14723 6978 14723 6979 14724 6980 14724 6981 14724 7059 14725 7243 14725 7068 14725 7060 14726 7247 14726 7059 14726 7059 14727 7247 14727 7243 14727 6986 14728 7247 14728 7060 14728 6988 14729 7247 14729 6986 14729 7061 14730 7062 14730 6988 14730 6988 14731 7062 14731 7004 14731 6988 14732 7004 14732 7247 14732 7247 14733 7004 14733 7005 14733 7247 14734 7005 14734 7246 14734 7246 14735 7005 14735 7063 14735 7246 14736 7063 14736 7007 14736 7246 14737 7007 14737 7241 14737 7241 14738 7007 14738 7064 14738 7241 14739 7064 14739 6836 14739 7241 14740 6836 14740 7256 14740 7256 14741 6836 14741 7159 14741 6989 14742 7066 14742 7061 14742 7061 14743 7066 14743 6995 14743 7061 14744 6995 14744 7062 14744 7062 14745 6995 14745 7002 14745 7002 14746 6995 14746 6998 14746 7002 14747 6998 14747 7001 14747 6990 14748 7065 14748 6989 14748 6989 14749 7065 14749 7066 14749 7066 14750 6993 14750 6995 14750 6836 14751 7064 14751 7074 14751 7074 14752 7064 14752 7067 14752 7074 14753 7067 14753 7075 14753 7155 14754 7243 14754 7244 14754 7155 14755 7244 14755 7156 14755 7156 14756 7244 14756 7160 14756 7160 14757 7244 14757 7256 14757 7160 14758 7256 14758 7159 14758 7071 14759 7106 14759 7069 14759 7106 14760 7071 14760 7113 14760 7113 14761 7071 14761 7070 14761 7070 14762 7071 14762 7111 14762 7111 14763 7071 14763 7218 14763 7197 14764 7196 14764 7017 14764 7017 14765 7196 14765 7083 14765 7193 14766 7087 14766 7196 14766 7196 14767 7087 14767 7083 14767 7087 14768 7193 14768 7088 14768 7088 14769 7193 14769 7093 14769 7093 14770 7193 14770 7192 14770 7093 14771 7192 14771 7095 14771 7095 14772 7192 14772 7096 14772 7169 14773 7172 14773 7132 14773 7132 14774 7172 14774 7137 14774 7137 14775 7172 14775 7174 14775 7137 14776 7174 14776 7138 14776 7138 14777 7174 14777 7139 14777 7139 14778 7174 14778 7170 14778 7083 14779 7080 14779 7017 14779 7078 14780 7081 14780 7075 14780 7075 14781 7081 14781 7077 14781 7074 14782 7076 14782 7073 14782 7074 14783 7075 14783 7076 14783 7076 14784 7077 14784 7073 14784 7077 14785 7076 14785 7075 14785 7079 14786 7081 14786 7080 14786 7081 14787 7078 14787 7080 14787 7083 14788 7082 14788 7080 14788 7080 14789 7082 14789 7079 14789 7083 14790 7084 14790 7082 14790 7089 14791 7084 14791 7087 14791 7083 14792 7087 14792 7084 14792 7084 14793 7089 14793 7082 14793 7091 14794 7092 14794 7090 14794 7092 14795 7091 14795 7093 14795 7087 14796 7085 14796 7089 14796 7088 14797 7086 14797 7085 14797 7088 14798 7085 14798 7087 14798 7091 14799 7086 14799 7088 14799 7091 14800 7088 14800 7093 14800 7090 14801 7086 14801 7091 14801 7089 14802 7085 14802 7090 14802 7090 14803 7085 14803 7086 14803 7095 14804 7092 14804 7093 14804 7094 14805 7092 14805 7096 14805 7096 14806 7092 14806 7095 14806 7100 14807 7097 14807 7096 14807 7096 14808 7097 14808 7094 14808 7100 14809 7101 14809 7097 14809 7098 14810 7101 14810 7099 14810 7100 14811 7099 14811 7101 14811 7101 14812 7098 14812 7097 14812 7104 14813 7102 14813 7099 14813 7099 14814 7102 14814 7098 14814 7104 14815 7103 14815 7102 14815 7103 14816 7105 14816 7102 14816 7106 14817 7107 14817 7103 14817 7103 14818 7107 14818 7105 14818 7106 14819 7108 14819 7107 14819 7106 14820 7113 14820 7108 14820 7108 14821 6895 14821 7107 14821 6895 14822 7108 14822 7113 14822 7113 14823 7109 14823 6895 14823 7114 14824 7110 14824 7109 14824 7110 14825 7116 14825 7112 14825 7112 14826 7116 14826 7111 14826 7113 14827 7114 14827 7109 14827 7116 14828 7070 14828 7111 14828 7070 14829 7115 14829 7114 14829 7115 14830 7070 14830 7116 14830 7110 14831 7115 14831 7116 14831 7114 14832 7113 14832 7070 14832 7110 14833 7114 14833 7115 14833 7111 14834 7120 14834 7112 14834 7120 14835 7111 14835 7118 14835 7118 14836 7122 14836 7117 14836 7122 14837 7119 14837 7036 14837 7036 14838 7119 14838 7118 14838 7117 14839 7120 14839 7121 14839 7120 14840 7118 14840 7121 14840 7122 14841 7120 14841 7117 14841 7036 14842 7118 14842 7111 14842 7118 14843 7119 14843 7122 14843 7127 14844 7123 14844 7036 14844 7036 14845 7123 14845 7122 14845 7127 14846 7126 14846 7123 14846 7127 14847 7124 14847 7126 14847 7126 14848 7125 14848 7123 14848 7125 14849 7126 14849 7124 14849 7129 14850 7128 14850 7124 14850 7124 14851 7128 14851 7125 14851 7131 14852 7128 14852 7130 14852 7128 14853 7129 14853 7130 14853 7132 14854 7133 14854 7130 14854 7130 14855 7133 14855 7131 14855 7137 14856 7134 14856 7133 14856 7133 14857 7132 14857 7137 14857 7137 14858 7135 14858 7134 14858 7138 14859 7139 14859 7140 14859 7143 14860 7138 14860 7142 14860 7142 14861 7140 14861 7136 14861 7141 14862 7140 14862 7139 14862 7137 14863 7143 14863 7135 14863 7137 14864 7138 14864 7143 14864 7143 14865 7142 14865 7135 14865 7136 14866 7140 14866 7141 14866 7136 14867 7135 14867 7142 14867 7138 14868 7140 14868 7142 14868 7139 14869 7146 14869 7141 14869 7146 14870 7145 14870 7141 14870 7145 14871 7146 14871 7144 14871 7144 14872 7146 14872 7139 14872 7148 14873 7149 14873 7144 14873 7144 14874 7149 14874 7145 14874 7148 14875 7150 14875 7149 14875 7149 14876 7150 14876 7147 14876 7152 14877 7151 14877 7150 14877 7150 14878 7151 14878 7147 14878 7152 14879 7153 14879 7151 14879 7153 14880 7152 14880 7154 14880 7155 14881 7157 14881 7154 14881 7154 14882 7157 14882 7153 14882 7158 14883 7155 14883 7156 14883 7157 14884 7155 14884 7158 14884 7162 14885 7160 14885 7159 14885 7160 14886 7161 14886 7156 14886 7163 14887 7162 14887 7159 14887 7158 14888 7156 14888 6894 14888 6894 14889 7156 14889 7161 14889 6894 14890 7161 14890 7162 14890 7161 14891 7160 14891 7162 14891 6894 14892 7162 14892 7163 14892 7166 14893 7185 14893 7188 14893 7168 14894 7183 14894 7167 14894 7164 14895 7175 14895 7168 14895 7167 14896 7173 14896 7169 14896 7168 14897 7175 14897 7182 14897 7168 14898 7182 14898 7183 14898 7172 14899 7169 14899 7171 14899 7169 14900 7173 14900 7178 14900 7169 14901 7178 14901 7171 14901 7167 14902 7183 14902 7179 14902 7170 14903 7177 14903 7164 14903 7172 14904 7171 14904 7176 14904 7172 14905 7176 14905 7174 14905 7164 14906 7177 14906 7175 14906 7170 14907 7174 14907 7177 14907 7167 14908 7179 14908 7173 14908 7174 14909 7176 14909 7184 14909 7174 14910 7184 14910 7177 14910 7177 14911 7184 14911 7180 14911 7177 14912 7180 14912 7181 14912 7177 14913 7181 14913 7175 14913 7176 14914 7165 14914 7184 14914 7178 14915 7173 14915 7189 14915 7175 14916 7181 14916 7187 14916 7175 14917 7187 14917 7182 14917 7183 14918 7185 14918 7179 14918 7171 14919 7165 14919 7176 14919 7182 14920 7188 14920 7183 14920 7173 14921 7179 14921 7189 14921 7178 14922 7189 14922 7165 14922 7178 14923 7165 14923 7171 14923 7185 14924 7166 14924 7179 14924 7189 14925 7179 14925 7166 14925 7183 14926 7188 14926 7185 14926 7181 14927 7180 14927 7186 14927 7181 14928 7186 14928 7187 14928 7180 14929 7184 14929 7186 14929 7182 14930 7187 14930 7188 14930 7207 14931 7209 14931 7212 14931 7193 14932 7196 14932 7202 14932 7191 14933 7205 14933 7194 14933 7194 14934 7205 14934 7197 14934 7191 14935 7198 14935 7199 14935 7191 14936 7200 14936 7205 14936 7191 14937 7199 14937 7200 14937 7195 14938 7192 14938 7201 14938 7196 14939 7197 14939 7202 14939 7198 14940 7195 14940 7204 14940 7197 14941 7203 14941 7202 14941 7197 14942 7205 14942 7203 14942 7198 14943 7204 14943 7199 14943 7202 14944 7206 14944 7193 14944 7204 14945 7195 14945 7207 14945 7192 14946 7193 14946 7208 14946 7192 14947 7208 14947 7201 14947 7193 14948 7206 14948 7208 14948 7195 14949 7201 14949 7209 14949 7195 14950 7209 14950 7207 14950 7202 14951 7203 14951 7211 14951 7202 14952 7211 14952 7206 14952 7204 14953 7210 14953 7199 14953 7204 14954 7207 14954 7210 14954 7200 14955 7199 14955 7213 14955 7200 14956 7213 14956 7205 14956 7201 14957 7208 14957 7215 14957 7203 14958 7205 14958 7190 14958 7201 14959 7212 14959 7209 14959 7210 14960 7213 14960 7199 14960 7201 14961 7215 14961 7212 14961 7211 14962 7214 14962 7206 14962 7208 14963 7206 14963 7215 14963 7211 14964 7203 14964 7214 14964 7203 14965 7190 14965 7214 14965 7206 14966 7214 14966 7215 14966 7205 14967 7213 14967 7190 14967 7069 14968 7221 14968 7071 14968 7217 14969 7237 14969 7230 14969 7218 14970 7071 14970 7232 14970 7223 14971 7218 14971 7226 14971 7219 14972 7222 14972 7234 14972 7069 14973 7227 14973 7228 14973 7218 14974 7232 14974 7226 14974 7069 14975 7228 14975 7221 14975 7219 14976 7223 14976 7222 14976 7226 14977 7232 14977 7233 14977 7071 14978 7224 14978 7232 14978 7222 14979 7223 14979 7238 14979 7071 14980 7221 14980 7225 14980 7222 14981 7216 14981 7234 14981 7227 14982 7229 14982 7228 14982 7223 14983 7226 14983 7238 14983 7071 14984 7225 14984 7224 14984 7226 14985 7230 14985 7238 14985 7221 14986 7228 14986 7225 14986 7226 14987 7233 14987 7230 14987 7222 14988 7238 14988 7216 14988 7220 14989 7231 14989 7227 14989 7220 14990 7234 14990 7231 14990 7227 14991 7231 14991 7229 14991 7238 14992 7230 14992 7237 14992 7229 14993 7231 14993 7235 14993 7228 14994 6877 14994 7225 14994 7225 14995 6877 14995 7224 14995 7224 14996 7236 14996 7232 14996 7224 14997 6877 14997 7236 14997 7229 14998 7235 14998 7228 14998 7232 14999 7236 14999 7217 14999 7232 15000 7217 15000 7233 15000 7234 15001 7216 15001 7231 15001 7231 15002 7216 15002 7235 15002 7233 15003 7217 15003 7230 15003 7228 15004 7235 15004 6877 15004 7238 15005 7237 15005 7216 15005 7243 15006 7245 15006 7244 15006 7262 15007 7263 15007 7261 15007 7247 15008 7242 15008 7243 15008 7241 15009 7256 15009 7253 15009 7247 15010 7249 15010 7242 15010 7247 15011 7246 15011 7249 15011 7244 15012 7245 15012 7263 15012 7244 15013 7263 15013 7256 15013 7241 15014 7252 15014 7246 15014 7245 15015 7243 15015 7248 15015 7241 15016 7254 15016 7252 15016 7246 15017 7252 15017 7249 15017 7243 15018 7242 15018 7251 15018 7243 15019 7255 15019 7248 15019 7242 15020 7249 15020 7250 15020 7248 15021 7261 15021 7245 15021 7245 15022 7261 15022 7263 15022 7241 15023 7253 15023 7254 15023 7242 15024 7250 15024 7251 15024 7243 15025 7251 15025 7255 15025 7249 15026 7252 15026 7260 15026 7251 15027 7250 15027 7258 15027 7252 15028 7254 15028 7259 15028 7252 15029 7264 15029 7260 15029 7252 15030 7259 15030 7264 15030 7251 15031 7258 15031 7255 15031 7250 15032 7249 15032 7257 15032 7250 15033 7257 15033 7258 15033 7253 15034 7256 15034 7262 15034 7248 15035 7255 15035 7261 15035 7257 15036 7265 15036 7258 15036 7249 15037 7260 15037 7257 15037 7254 15038 7253 15038 7239 15038 7254 15039 7239 15039 7259 15039 7255 15040 7258 15040 7240 15040 7253 15041 7262 15041 7239 15041 7257 15042 7260 15042 7265 15042 7255 15043 7240 15043 7261 15043 7256 15044 7263 15044 7262 15044 7259 15045 7239 15045 7264 15045 7258 15046 7265 15046 7240 15046 7507 15047 7508 15047 7269 15047 7269 15048 7508 15048 7267 15048 7268 15049 7269 15049 7266 15049 7266 15050 7269 15050 7267 15050 7441 15051 7271 15051 7270 15051 7270 15052 7271 15052 7329 15052 7270 15053 7329 15053 7328 15053 7441 15054 7439 15054 7271 15054 7271 15055 7273 15055 7329 15055 7329 15056 7273 15056 7272 15056 7272 15057 7273 15057 7326 15057 7272 15058 7326 15058 7511 15058 7322 15059 7508 15059 7273 15059 7274 15060 7675 15060 7322 15060 7322 15061 7675 15061 7674 15061 7437 15062 7675 15062 7274 15062 7275 15063 7675 15063 7437 15063 7276 15064 7672 15064 7275 15064 7275 15065 7672 15065 7675 15065 7277 15066 7279 15066 7276 15066 7276 15067 7279 15067 7672 15067 7278 15068 7430 15068 7277 15068 7277 15069 7430 15069 7423 15069 7277 15070 7423 15070 7279 15070 7434 15071 7433 15071 7278 15071 7278 15072 7433 15072 7430 15072 7423 15073 7430 15073 10488 15073 10488 15074 7430 15074 7431 15074 7423 15075 10488 15075 7424 15075 7424 15076 10488 15076 7426 15076 7424 15077 7426 15077 7425 15077 7672 15078 7279 15078 7280 15078 7672 15079 7280 15079 7419 15079 7672 15080 7419 15080 7676 15080 7676 15081 7419 15081 7418 15081 7676 15082 7418 15082 7417 15082 7676 15083 7417 15083 7673 15083 7673 15084 7417 15084 7581 15084 7581 15085 7417 15085 7578 15085 7578 15086 7417 15086 7281 15086 7578 15087 7281 15087 7576 15087 7576 15088 7281 15088 7282 15088 7576 15089 7282 15089 7575 15089 7575 15090 7282 15090 7574 15090 7574 15091 7282 15091 7325 15091 7574 15092 7325 15092 7283 15092 7283 15093 7325 15093 7590 15093 7282 15094 7281 15094 7284 15094 7284 15095 7281 15095 7416 15095 7284 15096 7416 15096 10476 15096 10476 15097 7416 15097 7415 15097 7415 15098 7416 15098 7285 15098 10476 15099 7414 15099 7284 15099 7411 15100 7589 15100 7325 15100 7325 15101 7589 15101 7590 15101 7286 15102 7589 15102 7411 15102 7287 15103 7604 15103 7286 15103 7286 15104 7604 15104 7589 15104 7288 15105 7604 15105 7287 15105 7293 15106 7289 15106 7288 15106 7288 15107 7289 15107 7290 15107 7288 15108 7290 15108 7607 15108 7607 15109 7290 15109 7291 15109 7607 15110 7291 15110 7397 15110 7607 15111 7397 15111 7608 15111 7608 15112 7397 15112 7396 15112 7608 15113 7396 15113 7292 15113 7608 15114 7292 15114 7609 15114 7609 15115 7292 15115 7561 15115 7296 15116 10464 15116 7293 15116 7293 15117 10464 15117 6550 15117 7293 15118 6550 15118 7289 15118 7289 15119 6550 15119 7398 15119 7398 15120 6550 15120 6620 15120 7398 15121 6620 15121 7294 15121 7295 15122 10404 15122 7296 15122 7296 15123 10404 15123 10464 15123 10464 15124 7404 15124 6550 15124 7561 15125 7292 15125 7557 15125 7557 15126 7292 15126 7299 15126 7557 15127 7299 15127 7556 15127 7556 15128 7299 15128 7297 15128 7297 15129 7299 15129 7298 15129 7297 15130 7298 15130 7554 15130 7554 15131 7298 15131 7303 15131 7554 15132 7303 15132 7551 15132 7551 15133 7303 15133 7652 15133 7299 15134 7300 15134 7298 15134 7298 15135 7300 15135 7301 15135 7301 15136 7300 15136 6536 15136 7301 15137 6536 15137 7390 15137 7394 15138 7302 15138 7300 15138 7300 15139 7302 15139 6536 15139 7387 15140 7648 15140 7303 15140 7303 15141 7648 15141 7653 15141 7304 15142 7648 15142 7387 15142 7386 15143 7648 15143 7304 15143 7305 15144 7648 15144 7386 15144 7384 15145 7365 15145 7305 15145 7305 15146 7365 15146 7651 15146 7305 15147 7651 15147 7648 15147 7307 15148 7379 15148 7384 15148 7384 15149 7379 15149 7366 15149 7384 15150 7366 15150 7365 15150 7306 15151 7380 15151 7307 15151 7307 15152 7380 15152 7379 15152 7379 15153 7377 15153 7374 15153 7379 15154 7374 15154 7366 15154 7366 15155 7374 15155 7368 15155 7368 15156 7374 15156 7371 15156 7368 15157 7371 15157 7370 15157 7651 15158 7365 15158 7308 15158 7651 15159 7308 15159 7362 15159 7651 15160 7362 15160 7361 15160 7651 15161 7361 15161 7646 15161 7646 15162 7361 15162 7360 15162 7646 15163 7360 15163 7538 15163 7646 15164 7538 15164 7536 15164 7538 15165 7360 15165 7533 15165 7533 15166 7360 15166 7309 15166 7533 15167 7309 15167 7532 15167 7532 15168 7309 15168 7310 15168 7532 15169 7310 15169 7527 15169 7527 15170 7310 15170 7529 15170 7529 15171 7310 15171 7351 15171 7529 15172 7351 15172 7523 15172 7523 15173 7351 15173 7610 15173 7310 15174 7309 15174 7314 15174 7314 15175 7309 15175 7311 15175 7314 15176 7311 15176 7312 15176 7312 15177 7311 15177 7354 15177 7354 15178 7311 15178 7355 15178 7312 15179 7313 15179 7314 15179 7350 15180 7630 15180 7351 15180 7351 15181 7630 15181 7610 15181 7349 15182 7630 15182 7350 15182 7316 15183 7630 15183 7349 15183 7315 15184 7631 15184 7316 15184 7316 15185 7631 15185 7630 15185 7319 15186 7335 15186 7315 15186 7315 15187 7335 15187 7317 15187 7315 15188 7317 15188 7631 15188 7631 15189 7317 15189 7333 15189 7631 15190 7333 15190 7332 15190 7631 15191 7332 15191 7632 15191 7632 15192 7332 15192 7331 15192 7632 15193 7331 15193 7330 15193 7632 15194 7330 15194 7628 15194 7628 15195 7330 15195 7516 15195 7628 15196 7516 15196 7629 15196 7318 15197 7338 15197 7319 15197 7319 15198 7338 15198 7342 15198 7319 15199 7342 15199 7335 15199 7335 15200 7342 15200 7320 15200 7320 15201 7342 15201 7321 15201 7320 15202 7321 15202 7336 15202 7346 15203 7345 15203 7318 15203 7318 15204 7345 15204 7338 15204 7338 15205 7341 15205 7342 15205 7516 15206 7330 15206 7512 15206 7512 15207 7330 15207 7272 15207 7512 15208 7272 15208 7511 15208 7322 15209 7674 15209 7267 15209 7267 15210 7674 15210 7266 15210 7266 15211 7674 15211 7671 15211 7266 15212 7671 15212 7323 15212 7323 15213 7671 15213 7588 15213 7588 15214 7671 15214 7673 15214 7588 15215 7673 15215 7584 15215 7584 15216 7673 15216 7580 15216 7580 15217 7673 15217 7581 15217 7653 15218 7652 15218 7303 15218 7551 15219 7652 15219 7552 15219 7552 15220 7652 15220 7549 15220 7549 15221 7652 15221 7633 15221 7549 15222 7633 15222 7547 15222 7547 15223 7633 15223 7543 15223 7543 15224 7633 15224 7536 15224 7536 15225 7633 15225 7646 15225 7523 15226 7610 15226 7526 15226 7526 15227 7610 15227 7629 15227 7526 15228 7629 15228 7521 15228 7521 15229 7629 15229 7520 15229 7520 15230 7629 15230 7324 15230 7324 15231 7629 15231 7513 15231 7513 15232 7629 15232 7516 15232 7590 15233 7569 15233 7283 15233 7569 15234 7590 15234 7566 15234 7566 15235 7590 15235 7606 15235 7566 15236 7606 15236 7560 15236 7560 15237 7606 15237 7609 15237 7560 15238 7609 15238 7561 15238 7607 15239 7604 15239 7288 15239 7273 15240 7508 15240 7326 15240 7267 15241 7508 15241 7322 15241 7445 15242 7270 15242 7327 15242 7327 15243 7270 15243 7328 15243 7327 15244 7328 15244 7444 15244 7444 15245 7328 15245 7329 15245 7444 15246 7329 15246 7506 15246 7506 15247 7329 15247 7272 15247 7506 15248 7272 15248 7446 15248 7446 15249 7272 15249 7330 15249 7446 15250 7330 15250 7448 15250 7448 15251 7330 15251 7331 15251 7448 15252 7331 15252 7447 15252 7447 15253 7331 15253 7332 15253 7447 15254 7332 15254 7449 15254 7449 15255 7332 15255 7333 15255 7449 15256 7333 15256 7450 15256 7450 15257 7333 15257 7317 15257 7450 15258 7317 15258 7334 15258 7334 15259 7317 15259 7335 15259 7334 15260 7335 15260 7452 15260 7452 15261 7335 15261 7320 15261 7452 15262 7320 15262 7451 15262 7451 15263 7320 15263 7336 15263 7451 15264 7336 15264 7337 15264 7337 15265 7336 15265 7321 15265 7337 15266 7321 15266 7453 15266 7453 15267 7321 15267 7342 15267 7338 15268 7340 15268 7341 15268 7340 15269 7453 15269 7339 15269 7340 15270 7339 15270 7341 15270 7339 15271 7453 15271 7342 15271 7339 15272 7342 15272 7341 15272 7340 15273 7338 15273 7343 15273 7343 15274 7338 15274 7345 15274 7343 15275 7345 15275 7344 15275 7344 15276 7345 15276 7346 15276 7344 15277 7346 15277 7347 15277 7347 15278 7346 15278 7318 15278 7347 15279 7318 15279 7454 15279 7454 15280 7318 15280 7319 15280 7454 15281 7319 15281 7348 15281 7348 15282 7319 15282 7315 15282 7348 15283 7315 15283 7455 15283 7455 15284 7315 15284 7316 15284 7455 15285 7316 15285 7456 15285 7456 15286 7316 15286 7349 15286 7456 15287 7349 15287 7457 15287 7457 15288 7349 15288 7350 15288 7457 15289 7350 15289 7458 15289 7458 15290 7350 15290 7351 15290 7458 15291 7351 15291 7459 15291 7459 15292 7351 15292 7310 15292 7459 15293 7310 15293 7352 15293 7352 15294 7310 15294 7314 15294 7352 15295 7314 15295 7461 15295 7461 15296 7314 15296 7313 15296 7461 15297 7313 15297 7460 15297 7460 15298 7313 15298 7312 15298 7460 15299 7312 15299 7353 15299 7353 15300 7312 15300 7354 15300 7353 15301 7354 15301 7356 15301 7356 15302 7354 15302 7355 15302 7356 15303 7355 15303 7357 15303 7357 15304 7355 15304 7311 15304 7357 15305 7311 15305 7358 15305 7358 15306 7311 15306 7309 15306 7358 15307 7309 15307 7462 15307 7462 15308 7309 15308 7360 15308 7462 15309 7360 15309 7359 15309 7359 15310 7360 15310 7361 15310 7359 15311 7361 15311 7463 15311 7463 15312 7361 15312 7362 15312 7463 15313 7362 15313 7363 15313 7363 15314 7362 15314 7308 15314 7363 15315 7308 15315 7464 15315 7464 15316 7308 15316 7365 15316 7464 15317 7365 15317 7364 15317 7364 15318 7365 15318 7366 15318 7364 15319 7366 15319 7367 15319 7367 15320 7366 15320 7368 15320 7367 15321 7368 15321 7369 15321 7369 15322 7368 15322 7370 15322 7369 15323 7370 15323 7469 15323 7469 15324 7370 15324 7371 15324 7469 15325 7371 15325 7373 15325 7373 15326 7371 15326 7374 15326 7372 15327 7378 15327 7376 15327 7375 15328 7374 15328 7377 15328 7374 15329 7375 15329 7373 15329 7378 15330 7372 15330 7379 15330 7379 15331 7372 15331 7377 15331 7375 15332 7376 15332 7373 15332 7376 15333 7375 15333 7372 15333 7372 15334 7375 15334 7377 15334 7378 15335 7379 15335 7468 15335 7468 15336 7379 15336 7380 15336 7468 15337 7380 15337 7381 15337 7381 15338 7380 15338 7306 15338 7381 15339 7306 15339 7382 15339 7382 15340 7306 15340 7307 15340 7382 15341 7307 15341 7383 15341 7383 15342 7307 15342 7384 15342 7383 15343 7384 15343 7465 15343 7465 15344 7384 15344 7305 15344 7465 15345 7305 15345 7385 15345 7385 15346 7305 15346 7386 15346 7385 15347 7386 15347 7466 15347 7466 15348 7386 15348 7304 15348 7466 15349 7304 15349 7467 15349 7467 15350 7304 15350 7387 15350 7467 15351 7387 15351 7470 15351 7470 15352 7387 15352 7303 15352 7470 15353 7303 15353 7472 15353 7472 15354 7303 15354 7298 15354 7472 15355 7298 15355 7388 15355 7388 15356 7298 15356 7301 15356 7388 15357 7301 15357 7389 15357 7389 15358 7301 15358 7390 15358 7389 15359 7390 15359 7391 15359 7391 15360 7390 15360 6536 15360 7391 15361 6536 15361 7392 15361 7392 15362 6536 15362 7302 15362 7392 15363 7302 15363 7393 15363 7393 15364 7302 15364 7394 15364 7393 15365 7394 15365 7474 15365 7474 15366 7394 15366 7300 15366 7474 15367 7300 15367 7473 15367 7473 15368 7300 15368 7299 15368 7473 15369 7299 15369 7395 15369 7395 15370 7299 15370 7292 15370 7395 15371 7292 15371 7476 15371 7476 15372 7292 15372 7396 15372 7476 15373 7396 15373 7475 15373 7475 15374 7396 15374 7397 15374 7475 15375 7397 15375 7478 15375 7478 15376 7397 15376 7291 15376 7478 15377 7291 15377 7477 15377 7477 15378 7291 15378 7290 15378 7477 15379 7290 15379 7479 15379 7479 15380 7290 15380 7289 15380 7479 15381 7289 15381 7480 15381 7480 15382 7289 15382 7398 15382 7480 15383 7398 15383 7399 15383 7399 15384 7398 15384 7294 15384 7399 15385 7294 15385 7400 15385 7400 15386 7294 15386 6620 15386 7400 15387 6620 15387 7401 15387 7401 15388 6620 15388 6550 15388 7405 15389 7402 15389 7401 15389 7403 15390 7405 15390 10464 15390 7402 15391 7405 15391 7403 15391 7405 15392 7401 15392 7404 15392 7404 15393 7401 15393 6550 15393 7404 15394 10464 15394 7405 15394 7403 15395 10464 15395 7482 15395 7482 15396 10464 15396 10404 15396 7482 15397 10404 15397 7406 15397 7406 15398 10404 15398 7295 15398 7406 15399 7295 15399 7407 15399 7407 15400 7295 15400 7296 15400 7407 15401 7296 15401 7481 15401 7481 15402 7296 15402 7293 15402 7481 15403 7293 15403 7408 15403 7408 15404 7293 15404 7288 15404 7408 15405 7288 15405 7483 15405 7483 15406 7288 15406 7287 15406 7483 15407 7287 15407 7409 15407 7409 15408 7287 15408 7286 15408 7409 15409 7286 15409 7410 15409 7410 15410 7286 15410 7411 15410 7410 15411 7411 15411 7484 15411 7484 15412 7411 15412 7325 15412 7484 15413 7325 15413 7485 15413 7485 15414 7325 15414 7282 15414 7485 15415 7282 15415 7489 15415 7489 15416 7282 15416 7284 15416 7489 15417 7284 15417 7412 15417 7412 15418 7284 15418 7414 15418 7412 15419 7414 15419 7413 15419 7413 15420 7414 15420 10476 15420 7413 15421 10476 15421 7488 15421 7488 15422 10476 15422 7415 15422 7488 15423 7415 15423 7490 15423 7490 15424 7415 15424 7285 15424 7490 15425 7285 15425 7491 15425 7491 15426 7285 15426 7416 15426 7491 15427 7416 15427 7486 15427 7486 15428 7416 15428 7281 15428 7486 15429 7281 15429 7487 15429 7487 15430 7281 15430 7417 15430 7487 15431 7417 15431 7492 15431 7492 15432 7417 15432 7418 15432 7492 15433 7418 15433 7420 15433 7420 15434 7418 15434 7419 15434 7420 15435 7419 15435 7421 15435 7421 15436 7419 15436 7280 15436 7421 15437 7280 15437 7422 15437 7422 15438 7280 15438 7279 15438 7422 15439 7279 15439 7493 15439 7493 15440 7279 15440 7423 15440 7493 15441 7423 15441 7501 15441 7501 15442 7423 15442 7424 15442 7501 15443 7424 15443 7499 15443 7499 15444 7424 15444 7425 15444 7499 15445 7425 15445 7500 15445 7500 15446 7425 15446 7426 15446 7500 15447 7426 15447 7427 15447 7427 15448 7426 15448 10488 15448 7502 15449 7427 15449 7428 15449 7428 15450 7431 15450 7430 15450 7431 15451 7428 15451 10488 15451 7428 15452 7429 15452 7502 15452 7428 15453 7430 15453 7429 15453 7428 15454 7427 15454 10488 15454 7429 15455 7430 15455 7432 15455 7432 15456 7430 15456 7433 15456 7432 15457 7433 15457 7498 15457 7498 15458 7433 15458 7434 15458 7498 15459 7434 15459 7497 15459 7497 15460 7434 15460 7278 15460 7497 15461 7278 15461 7494 15461 7494 15462 7278 15462 7277 15462 7494 15463 7277 15463 7495 15463 7495 15464 7277 15464 7276 15464 7495 15465 7276 15465 7435 15465 7435 15466 7276 15466 7275 15466 7435 15467 7275 15467 7436 15467 7436 15468 7275 15468 7437 15468 7436 15469 7437 15469 7496 15469 7496 15470 7437 15470 7274 15470 7496 15471 7274 15471 7438 15471 7438 15472 7274 15472 7322 15472 7438 15473 7322 15473 7503 15473 7503 15474 7322 15474 7273 15474 7503 15475 7273 15475 7443 15475 7443 15476 7273 15476 7271 15476 7443 15477 7271 15477 7440 15477 7440 15478 7271 15478 7439 15478 7440 15479 7439 15479 7442 15479 7442 15480 7439 15480 7441 15480 7442 15481 7441 15481 7445 15481 7445 15482 7441 15482 7270 15482 7440 15483 7442 15483 7443 15483 7443 15484 7442 15484 7445 15484 7443 15485 7445 15485 7444 15485 7444 15486 7445 15486 7327 15486 7444 15487 7506 15487 7443 15487 7443 15488 7506 15488 7503 15488 7503 15489 7506 15489 7510 15489 7503 15490 7510 15490 7509 15490 7446 15491 7505 15491 7506 15491 7448 15492 7615 15492 7446 15492 7447 15493 7615 15493 7448 15493 7449 15494 7614 15494 7447 15494 7447 15495 7614 15495 7615 15495 7450 15496 7614 15496 7449 15496 7334 15497 7348 15497 7450 15497 7450 15498 7348 15498 7614 15498 7452 15499 7453 15499 7334 15499 7334 15500 7453 15500 7454 15500 7334 15501 7454 15501 7348 15501 7451 15502 7337 15502 7452 15502 7452 15503 7337 15503 7453 15503 7453 15504 7340 15504 7454 15504 7454 15505 7340 15505 7347 15505 7347 15506 7340 15506 7343 15506 7347 15507 7343 15507 7344 15507 7614 15508 7348 15508 7616 15508 7616 15509 7348 15509 7455 15509 7616 15510 7455 15510 7611 15510 7611 15511 7455 15511 7456 15511 7611 15512 7456 15512 7457 15512 7611 15513 7457 15513 7458 15513 7611 15514 7458 15514 7618 15514 7618 15515 7458 15515 7525 15515 7618 15516 7525 15516 7613 15516 7525 15517 7458 15517 7528 15517 7528 15518 7458 15518 7459 15518 7528 15519 7459 15519 7530 15519 7530 15520 7459 15520 7358 15520 7530 15521 7358 15521 7531 15521 7531 15522 7358 15522 7535 15522 7535 15523 7358 15523 7462 15523 7535 15524 7462 15524 7542 15524 7542 15525 7462 15525 7634 15525 7358 15526 7459 15526 7357 15526 7357 15527 7459 15527 7352 15527 7357 15528 7352 15528 7353 15528 7353 15529 7352 15529 7460 15529 7460 15530 7352 15530 7461 15530 7353 15531 7356 15531 7357 15531 7359 15532 7637 15532 7462 15532 7462 15533 7637 15533 7634 15533 7463 15534 7637 15534 7359 15534 7363 15535 7637 15535 7463 15535 7464 15536 7639 15536 7363 15536 7363 15537 7639 15537 7637 15537 7364 15538 7383 15538 7464 15538 7464 15539 7383 15539 7465 15539 7464 15540 7465 15540 7639 15540 7639 15541 7465 15541 7635 15541 7635 15542 7465 15542 7385 15542 7635 15543 7385 15543 7466 15543 7635 15544 7466 15544 7467 15544 7635 15545 7467 15545 7470 15545 7635 15546 7470 15546 7638 15546 7638 15547 7470 15547 7550 15547 7638 15548 7550 15548 7548 15548 7367 15549 7373 15549 7364 15549 7364 15550 7373 15550 7378 15550 7364 15551 7378 15551 7383 15551 7383 15552 7378 15552 7382 15552 7382 15553 7378 15553 7468 15553 7382 15554 7468 15554 7381 15554 7369 15555 7469 15555 7367 15555 7367 15556 7469 15556 7373 15556 7373 15557 7376 15557 7378 15557 7550 15558 7470 15558 7471 15558 7471 15559 7470 15559 7472 15559 7471 15560 7472 15560 7553 15560 7553 15561 7472 15561 7555 15561 7555 15562 7472 15562 7473 15562 7555 15563 7473 15563 7558 15563 7558 15564 7473 15564 7395 15564 7558 15565 7395 15565 7559 15565 7559 15566 7395 15566 7593 15566 7472 15567 7388 15567 7473 15567 7473 15568 7388 15568 7474 15568 7474 15569 7388 15569 7391 15569 7474 15570 7391 15570 7392 15570 7388 15571 7389 15571 7391 15571 7392 15572 7393 15572 7474 15572 7476 15573 7594 15573 7395 15573 7475 15574 7594 15574 7476 15574 7478 15575 7594 15575 7475 15575 7477 15576 7592 15576 7478 15576 7478 15577 7592 15577 7594 15577 7479 15578 7408 15578 7477 15578 7477 15579 7408 15579 7591 15579 7477 15580 7591 15580 7592 15580 7480 15581 7401 15581 7479 15581 7479 15582 7401 15582 7481 15582 7479 15583 7481 15583 7408 15583 7399 15584 7400 15584 7480 15584 7480 15585 7400 15585 7401 15585 7481 15586 7401 15586 7403 15586 7403 15587 7401 15587 7402 15587 7481 15588 7403 15588 7407 15588 7407 15589 7403 15589 7482 15589 7407 15590 7482 15590 7406 15590 7591 15591 7408 15591 7483 15591 7591 15592 7483 15592 7409 15592 7591 15593 7409 15593 7410 15593 7591 15594 7410 15594 7596 15594 7596 15595 7410 15595 7484 15595 7596 15596 7484 15596 7595 15596 7595 15597 7484 15597 7571 15597 7571 15598 7484 15598 7573 15598 7573 15599 7484 15599 7485 15599 7573 15600 7485 15600 7572 15600 7572 15601 7485 15601 7486 15601 7572 15602 7486 15602 7577 15602 7577 15603 7486 15603 7579 15603 7579 15604 7486 15604 7487 15604 7579 15605 7487 15605 7582 15605 7582 15606 7487 15606 7659 15606 7486 15607 7485 15607 7491 15607 7491 15608 7485 15608 7489 15608 7491 15609 7489 15609 7488 15609 7488 15610 7489 15610 7413 15610 7413 15611 7489 15611 7412 15611 7488 15612 7490 15612 7491 15612 7492 15613 7657 15613 7487 15613 7487 15614 7657 15614 7659 15614 7420 15615 7656 15615 7492 15615 7492 15616 7656 15616 7657 15616 7421 15617 7656 15617 7420 15617 7422 15618 7656 15618 7421 15618 7493 15619 7494 15619 7422 15619 7422 15620 7494 15620 7495 15620 7422 15621 7495 15621 7656 15621 7656 15622 7495 15622 7654 15622 7654 15623 7495 15623 7435 15623 7654 15624 7435 15624 7436 15624 7654 15625 7436 15625 7655 15625 7655 15626 7436 15626 7496 15626 7655 15627 7496 15627 7438 15627 7655 15628 7438 15628 7660 15628 7660 15629 7438 15629 7269 15629 7501 15630 7427 15630 7493 15630 7493 15631 7427 15631 7429 15631 7493 15632 7429 15632 7494 15632 7494 15633 7429 15633 7497 15633 7497 15634 7429 15634 7432 15634 7497 15635 7432 15635 7498 15635 7499 15636 7500 15636 7501 15636 7501 15637 7500 15637 7427 15637 7427 15638 7502 15638 7429 15638 7269 15639 7438 15639 7507 15639 7507 15640 7438 15640 7503 15640 7507 15641 7503 15641 7509 15641 7582 15642 7659 15642 7586 15642 7586 15643 7659 15643 7658 15643 7586 15644 7658 15644 7583 15644 7583 15645 7658 15645 7268 15645 7268 15646 7658 15646 7660 15646 7268 15647 7660 15647 7269 15647 7636 15648 7539 15648 7634 15648 7634 15649 7539 15649 7542 15649 7539 15650 7636 15650 7544 15650 7544 15651 7636 15651 7546 15651 7546 15652 7636 15652 7548 15652 7548 15653 7636 15653 7638 15653 7446 15654 7615 15654 7612 15654 7446 15655 7612 15655 7514 15655 7514 15656 7612 15656 7515 15656 7515 15657 7612 15657 7518 15657 7518 15658 7612 15658 7522 15658 7522 15659 7612 15659 7613 15659 7522 15660 7613 15660 7524 15660 7524 15661 7613 15661 7525 15661 7395 15662 7594 15662 7593 15662 7559 15663 7593 15663 7563 15663 7563 15664 7593 15664 7595 15664 7563 15665 7595 15665 7564 15665 7564 15666 7595 15666 7504 15666 7504 15667 7595 15667 7570 15667 7570 15668 7595 15668 7571 15668 7514 15669 7505 15669 7446 15669 7506 15670 7505 15670 7510 15670 7510 15671 7511 15671 7509 15671 7509 15672 7511 15672 7326 15672 7507 15673 7509 15673 7508 15673 7508 15674 7509 15674 7326 15674 7512 15675 7511 15675 7505 15675 7505 15676 7511 15676 7510 15676 7514 15677 7516 15677 7505 15677 7505 15678 7516 15678 7512 15678 7516 15679 7514 15679 7515 15679 7513 15680 7516 15680 7515 15680 7518 15681 7324 15681 7515 15681 7515 15682 7324 15682 7513 15682 7518 15683 7522 15683 7519 15683 7526 15684 7517 15684 7524 15684 7518 15685 7519 15685 7324 15685 7520 15686 7519 15686 7521 15686 7522 15687 7521 15687 7519 15687 7519 15688 7520 15688 7324 15688 7522 15689 7517 15689 7521 15689 7521 15690 7517 15690 7526 15690 7524 15691 7517 15691 7522 15691 7524 15692 7525 15692 7526 15692 7525 15693 7523 15693 7526 15693 7528 15694 7529 15694 7525 15694 7525 15695 7529 15695 7523 15695 7527 15696 7529 15696 7530 15696 7529 15697 7528 15697 7530 15697 7531 15698 7532 15698 7530 15698 7530 15699 7532 15699 7527 15699 7531 15700 7534 15700 7532 15700 7532 15701 7534 15701 7533 15701 7533 15702 7534 15702 7535 15702 7534 15703 7531 15703 7535 15703 7542 15704 7538 15704 7535 15704 7535 15705 7538 15705 7533 15705 7540 15706 7536 15706 7541 15706 7538 15707 7540 15707 7537 15707 7538 15708 7537 15708 7536 15708 7536 15709 7538 15709 7539 15709 7539 15710 7538 15710 7542 15710 7540 15711 7538 15711 7536 15711 7541 15712 7536 15712 7537 15712 7544 15713 7543 15713 7539 15713 7539 15714 7543 15714 7536 15714 7549 15715 7545 15715 7548 15715 7544 15716 7546 15716 7543 15716 7546 15717 7547 15717 7543 15717 7547 15718 7546 15718 7545 15718 7547 15719 7545 15719 7549 15719 7545 15720 7546 15720 7548 15720 7548 15721 7552 15721 7549 15721 7548 15722 7551 15722 7552 15722 7551 15723 7548 15723 7550 15723 7471 15724 7554 15724 7550 15724 7550 15725 7554 15725 7551 15725 7297 15726 7554 15726 7553 15726 7471 15727 7553 15727 7554 15727 7555 15728 7556 15728 7553 15728 7553 15729 7556 15729 7297 15729 7558 15730 7557 15730 7556 15730 7555 15731 7558 15731 7556 15731 7559 15732 7561 15732 7558 15732 7558 15733 7561 15733 7557 15733 7559 15734 7562 15734 7561 15734 7560 15735 7562 15735 7563 15735 7562 15736 7559 15736 7563 15736 7560 15737 7561 15737 7562 15737 7560 15738 7568 15738 7566 15738 7569 15739 7565 15739 7504 15739 7563 15740 7567 15740 7560 15740 7564 15741 7568 15741 7567 15741 7565 15742 7564 15742 7504 15742 7568 15743 7564 15743 7565 15743 7560 15744 7567 15744 7568 15744 7563 15745 7564 15745 7567 15745 7568 15746 7565 15746 7566 15746 7569 15747 7566 15747 7565 15747 7570 15748 7569 15748 7504 15748 7570 15749 7571 15749 7569 15749 7569 15750 7571 15750 7283 15750 7573 15751 7574 15751 7571 15751 7571 15752 7574 15752 7283 15752 7575 15753 7574 15753 7572 15753 7574 15754 7573 15754 7572 15754 7577 15755 7576 15755 7572 15755 7572 15756 7576 15756 7575 15756 7577 15757 7579 15757 7576 15757 7579 15758 7578 15758 7576 15758 7582 15759 7581 15759 7579 15759 7579 15760 7581 15760 7578 15760 7581 15761 7582 15761 7586 15761 7581 15762 7586 15762 7580 15762 7586 15763 7584 15763 7580 15763 7587 15764 7585 15764 7588 15764 7584 15765 7587 15765 7588 15765 7586 15766 7587 15766 7584 15766 7585 15767 7583 15767 7268 15767 7583 15768 7585 15768 7587 15768 7588 15769 7585 15769 7268 15769 7588 15770 7268 15770 7323 15770 7587 15771 7586 15771 7583 15771 7268 15772 7266 15772 7323 15772 7591 15773 7596 15773 7600 15773 7591 15774 7597 15774 7592 15774 7593 15775 7594 15775 7602 15775 7594 15776 7592 15776 7598 15776 7595 15777 7593 15777 7599 15777 7591 15778 7600 15778 7597 15778 7592 15779 7597 15779 7598 15779 7595 15780 7605 15780 7596 15780 7595 15781 7601 15781 7605 15781 7596 15782 7605 15782 7600 15782 7593 15783 7602 15783 7599 15783 7595 15784 7599 15784 7601 15784 7594 15785 7598 15785 7603 15785 7594 15786 7603 15786 7602 15786 7600 15787 7604 15787 7597 15787 7603 15788 7609 15788 7602 15788 7598 15789 7608 15789 7603 15789 7597 15790 7607 15790 7598 15790 7601 15791 7599 15791 7590 15791 7599 15792 7606 15792 7590 15792 7600 15793 7589 15793 7604 15793 7598 15794 7607 15794 7608 15794 7597 15795 7604 15795 7607 15795 7602 15796 7609 15796 7599 15796 7601 15797 7590 15797 7605 15797 7600 15798 7605 15798 7589 15798 7603 15799 7608 15799 7609 15799 7605 15800 7590 15800 7589 15800 7599 15801 7609 15801 7606 15801 7612 15802 7615 15802 7617 15802 7611 15803 7626 15803 7616 15803 7613 15804 7612 15804 7621 15804 7611 15805 7618 15805 7625 15805 7612 15806 7617 15806 7620 15806 7613 15807 7623 15807 7618 15807 7615 15808 7614 15808 7624 15808 7615 15809 7624 15809 7622 15809 7616 15810 7627 15810 7614 15810 7615 15811 7622 15811 7617 15811 7613 15812 7621 15812 7623 15812 7612 15813 7620 15813 7621 15813 7611 15814 7625 15814 7626 15814 7618 15815 7623 15815 7625 15815 7614 15816 7627 15816 7619 15816 7614 15817 7619 15817 7624 15817 7616 15818 7626 15818 7627 15818 7621 15819 7620 15819 7629 15819 7627 15820 7631 15820 7619 15820 7620 15821 7617 15821 7628 15821 7626 15822 7630 15822 7627 15822 7623 15823 7610 15823 7625 15823 7620 15824 7628 15824 7629 15824 7626 15825 7625 15825 7630 15825 7619 15826 7631 15826 7624 15826 7623 15827 7621 15827 7610 15827 7627 15828 7630 15828 7631 15828 7621 15829 7629 15829 7610 15829 7617 15830 7622 15830 7632 15830 7617 15831 7632 15831 7628 15831 7625 15832 7610 15832 7630 15832 7624 15833 7631 15833 7632 15833 7624 15834 7632 15834 7622 15834 7635 15835 7638 15835 7641 15835 7635 15836 7641 15836 7642 15836 7637 15837 7640 15837 7634 15837 7636 15838 7634 15838 7644 15838 7636 15839 7650 15839 7638 15839 7635 15840 7642 15840 7639 15840 7637 15841 7639 15841 7640 15841 7634 15842 7640 15842 7649 15842 7636 15843 7644 15843 7650 15843 7638 15844 7647 15844 7641 15844 7638 15845 7650 15845 7645 15845 7638 15846 7645 15846 7647 15846 7634 15847 7649 15847 7644 15847 7639 15848 7642 15848 7643 15848 7639 15849 7643 15849 7640 15849 7649 15850 7646 15850 7644 15850 7640 15851 7643 15851 7651 15851 7644 15852 7633 15852 7650 15852 7643 15853 7642 15853 7648 15853 7647 15854 7653 15854 7641 15854 7641 15855 7648 15855 7642 15855 7644 15856 7646 15856 7633 15856 7645 15857 7650 15857 7652 15857 7641 15858 7653 15858 7648 15858 7650 15859 7633 15859 7652 15859 7645 15860 7652 15860 7647 15860 7643 15861 7648 15861 7651 15861 7640 15862 7651 15862 7649 15862 7649 15863 7651 15863 7646 15863 7647 15864 7652 15864 7653 15864 7675 15865 7665 15865 7674 15865 7659 15866 7662 15866 7664 15866 7659 15867 7664 15867 7658 15867 7656 15868 7654 15868 7669 15868 7657 15869 7667 15869 7659 15869 7657 15870 7656 15870 7670 15870 7657 15871 7670 15871 7667 15871 7660 15872 7658 15872 7661 15872 7660 15873 7661 15873 7663 15873 7660 15874 7663 15874 7655 15874 7655 15875 7663 15875 7665 15875 7656 15876 7669 15876 7670 15876 7655 15877 7668 15877 7666 15877 7655 15878 7666 15878 7654 15878 7655 15879 7665 15879 7668 15879 7659 15880 7667 15880 7662 15880 7658 15881 7664 15881 7661 15881 7654 15882 7666 15882 7669 15882 7661 15883 7674 15883 7663 15883 7664 15884 7671 15884 7661 15884 7661 15885 7671 15885 7674 15885 7663 15886 7674 15886 7665 15886 7669 15887 7666 15887 7672 15887 7667 15888 7670 15888 7676 15888 7662 15889 7673 15889 7664 15889 7670 15890 7669 15890 7676 15890 7668 15891 7665 15891 7675 15891 7668 15892 7675 15892 7666 15892 7669 15893 7672 15893 7676 15893 7664 15894 7673 15894 7671 15894 7662 15895 7667 15895 7673 15895 7666 15896 7675 15896 7672 15896 7667 15897 7676 15897 7673 15897 7919 15898 7916 15898 7677 15898 7677 15899 7916 15899 7678 15899 7678 15900 7995 15900 7677 15900 7679 15901 7995 15901 7678 15901 6537 15902 7859 15902 7681 15902 7681 15903 7859 15903 7680 15903 7681 15904 7680 15904 7728 15904 6537 15905 7682 15905 7859 15905 7859 15906 7857 15906 7680 15906 7680 15907 7857 15907 7731 15907 7731 15908 7857 15908 7918 15908 7731 15909 7918 15909 7920 15909 7684 15910 7916 15910 7857 15910 7683 15911 8086 15911 7684 15911 7685 15912 8069 15912 7683 15912 7683 15913 8069 15913 8086 15913 7686 15914 8069 15914 7685 15914 7854 15915 8069 15915 7686 15915 7852 15916 7687 15916 7854 15916 7854 15917 7687 15917 8069 15917 7851 15918 6552 15918 7852 15918 7852 15919 6552 15919 7837 15919 7852 15920 7837 15920 7687 15920 7850 15921 7688 15921 7851 15921 7851 15922 7688 15922 6552 15922 7837 15923 6552 15923 7843 15923 7843 15924 6552 15924 7847 15924 7837 15925 7843 15925 7689 15925 7689 15926 7843 15926 7690 15926 7689 15927 7690 15927 7840 15927 8069 15928 7687 15928 8083 15928 8083 15929 7687 15929 7691 15929 8083 15930 7691 15930 7692 15930 8083 15931 7692 15931 8084 15931 8084 15932 7692 15932 7693 15932 8084 15933 7693 15933 7694 15933 8084 15934 7694 15934 8087 15934 8087 15935 7694 15935 7988 15935 8087 15936 7988 15936 7990 15936 7988 15937 7694 15937 7984 15937 7984 15938 7694 15938 7695 15938 7984 15939 7695 15939 7986 15939 7986 15940 7695 15940 7696 15940 7986 15941 7696 15941 7980 15941 7980 15942 7696 15942 7979 15942 7979 15943 7696 15943 7699 15943 7979 15944 7699 15944 7978 15944 7978 15945 7699 15945 8011 15945 7696 15946 7695 15946 7698 15946 7698 15947 7695 15947 7697 15947 7698 15948 7697 15948 10220 15948 10220 15949 7697 15949 7834 15949 7834 15950 7697 15950 7835 15950 10220 15951 7832 15951 7698 15951 7828 15952 8012 15952 7699 15952 7699 15953 8012 15953 8011 15953 7701 15954 8018 15954 7828 15954 7828 15955 8018 15955 8012 15955 7700 15956 8018 15956 7701 15956 7727 15957 8018 15957 7700 15957 7823 15958 7704 15958 7727 15958 7727 15959 7704 15959 7702 15959 7727 15960 7702 15960 8013 15960 8013 15961 7702 15961 7807 15961 8013 15962 7807 15962 7806 15962 8013 15963 7806 15963 8019 15963 8019 15964 7806 15964 7703 15964 8019 15965 7703 15965 7803 15965 8019 15966 7803 15966 8016 15966 8016 15967 7803 15967 7968 15967 8016 15968 7968 15968 7972 15968 7822 15969 7706 15969 7823 15969 7823 15970 7706 15970 7815 15970 7823 15971 7815 15971 7704 15971 7704 15972 7815 15972 7705 15972 7705 15973 7815 15973 7811 15973 7705 15974 7811 15974 7809 15974 7821 15975 10158 15975 7822 15975 7822 15976 10158 15976 7706 15976 7706 15977 7817 15977 7818 15977 7706 15978 7818 15978 7815 15978 7968 15979 7803 15979 7966 15979 7966 15980 7803 15980 7802 15980 7966 15981 7802 15981 7965 15981 7965 15982 7802 15982 7959 15982 7959 15983 7802 15983 7707 15983 7959 15984 7707 15984 7961 15984 7961 15985 7707 15985 7711 15985 7961 15986 7711 15986 7958 15986 7958 15987 7711 15987 8066 15987 7802 15988 7710 15988 7707 15988 7707 15989 7710 15989 7708 15989 7708 15990 7710 15990 7798 15990 7708 15991 7798 15991 7709 15991 7801 15992 7799 15992 7710 15992 7710 15993 7799 15993 7798 15993 7794 15994 8067 15994 7711 15994 7712 15995 8067 15995 7794 15995 7792 15996 8046 15996 7712 15996 7712 15997 8046 15997 8067 15997 7791 15998 8046 15998 7792 15998 7790 15999 7713 15999 7791 15999 7791 16000 7713 16000 8065 16000 7791 16001 8065 16001 8046 16001 7789 16002 7782 16002 7790 16002 7790 16003 7782 16003 7772 16003 7790 16004 7772 16004 7713 16004 7787 16005 7786 16005 7789 16005 7789 16006 7786 16006 7782 16006 7782 16007 7784 16007 7781 16007 7782 16008 7781 16008 7772 16008 7772 16009 7781 16009 7775 16009 7775 16010 7781 16010 7714 16010 7775 16011 7714 16011 7776 16011 8065 16012 7713 16012 7770 16012 8065 16013 7770 16013 8045 16013 8045 16014 7770 16014 7769 16014 8045 16015 7769 16015 7767 16015 8045 16016 7767 16016 7715 16016 8045 16017 7715 16017 8062 16017 8062 16018 7715 16018 7945 16018 8062 16019 7945 16019 7948 16019 7945 16020 7715 16020 7716 16020 7716 16021 7715 16021 7717 16021 7716 16022 7717 16022 7942 16022 7942 16023 7717 16023 7754 16023 7942 16024 7754 16024 7938 16024 7938 16025 7754 16025 7939 16025 7939 16026 7754 16026 7721 16026 7939 16027 7721 16027 7936 16027 7936 16028 7721 16028 8043 16028 7936 16029 8043 16029 8042 16029 7754 16030 7717 16030 7718 16030 7718 16031 7717 16031 7764 16031 7718 16032 7764 16032 7719 16032 7719 16033 7764 16033 7761 16033 7761 16034 7764 16034 7763 16034 7719 16035 7758 16035 7718 16035 7720 16036 8038 16036 7721 16036 7721 16037 8038 16037 8043 16037 7752 16038 8038 16038 7720 16038 7750 16039 8038 16039 7752 16039 7726 16040 8039 16040 7750 16040 7750 16041 8039 16041 8038 16041 7722 16042 7736 16042 7726 16042 7726 16043 7736 16043 7735 16043 7726 16044 7735 16044 8039 16044 8039 16045 7735 16045 7734 16045 8039 16046 7734 16046 7723 16046 8039 16047 7723 16047 7733 16047 8039 16048 7733 16048 8044 16048 8044 16049 7733 16049 7732 16049 8044 16050 7732 16050 7924 16050 8044 16051 7924 16051 8031 16051 7724 16052 7743 16052 7722 16052 7722 16053 7743 16053 7742 16053 7722 16054 7742 16054 7736 16054 7736 16055 7742 16055 7725 16055 7725 16056 7742 16056 6524 16056 7725 16057 6524 16057 7738 16057 7748 16058 7747 16058 7724 16058 7724 16059 7747 16059 7743 16059 7743 16060 7745 16060 7742 16060 7924 16061 7732 16061 7923 16061 7923 16062 7732 16062 7731 16062 7923 16063 7731 16063 7920 16063 7684 16064 8086 16064 8085 16064 7684 16065 8085 16065 7678 16065 8085 16066 7679 16066 7678 16066 7679 16067 8085 16067 8088 16067 7679 16068 8088 16068 7989 16068 7989 16069 8088 16069 7991 16069 7991 16070 8088 16070 7990 16070 7990 16071 8088 16071 8087 16071 8067 16072 8066 16072 7711 16072 7958 16073 8066 16073 7952 16073 7952 16074 8066 16074 8063 16074 7952 16075 8063 16075 7956 16075 7956 16076 8063 16076 7954 16076 7954 16077 8063 16077 7948 16077 7948 16078 8063 16078 8062 16078 7936 16079 8042 16079 7928 16079 7928 16080 8042 16080 8040 16080 7928 16081 8040 16081 7935 16081 7935 16082 8040 16082 7931 16082 7931 16083 8040 16083 7930 16083 7930 16084 8040 16084 8031 16084 7930 16085 8031 16085 7924 16085 8017 16086 7977 16086 8011 16086 8011 16087 7977 16087 7978 16087 7977 16088 8017 16088 7976 16088 7976 16089 8017 16089 7970 16089 7970 16090 8017 16090 7972 16090 7972 16091 8017 16091 8016 16091 8013 16092 8018 16092 7727 16092 7857 16093 7916 16093 7918 16093 7678 16094 7916 16094 7684 16094 7861 16095 7681 16095 7729 16095 7729 16096 7681 16096 7728 16096 7729 16097 7728 16097 7730 16097 7730 16098 7728 16098 7680 16098 7730 16099 7680 16099 7915 16099 7915 16100 7680 16100 7731 16100 7915 16101 7731 16101 7862 16101 7862 16102 7731 16102 7732 16102 7862 16103 7732 16103 7863 16103 7863 16104 7732 16104 7733 16104 7863 16105 7733 16105 7865 16105 7865 16106 7733 16106 7723 16106 7865 16107 7723 16107 7864 16107 7864 16108 7723 16108 7734 16108 7864 16109 7734 16109 7867 16109 7867 16110 7734 16110 7735 16110 7867 16111 7735 16111 7866 16111 7866 16112 7735 16112 7736 16112 7866 16113 7736 16113 7870 16113 7870 16114 7736 16114 7725 16114 7870 16115 7725 16115 7869 16115 7869 16116 7725 16116 7738 16116 7869 16117 7738 16117 7737 16117 7737 16118 7738 16118 6524 16118 7737 16119 6524 16119 7740 16119 7740 16120 6524 16120 7742 16120 7743 16121 7741 16121 7745 16121 7742 16122 7741 16122 7740 16122 7741 16123 7744 16123 7740 16123 7744 16124 7743 16124 7739 16124 7744 16125 7741 16125 7743 16125 7745 16126 7741 16126 7742 16126 7739 16127 7743 16127 7746 16127 7746 16128 7743 16128 7747 16128 7746 16129 7747 16129 7872 16129 7872 16130 7747 16130 7748 16130 7872 16131 7748 16131 7871 16131 7871 16132 7748 16132 7724 16132 7871 16133 7724 16133 7868 16133 7868 16134 7724 16134 7722 16134 7868 16135 7722 16135 7749 16135 7749 16136 7722 16136 7726 16136 7749 16137 7726 16137 7873 16137 7873 16138 7726 16138 7750 16138 7873 16139 7750 16139 7751 16139 7751 16140 7750 16140 7752 16140 7751 16141 7752 16141 7874 16141 7874 16142 7752 16142 7720 16142 7874 16143 7720 16143 7753 16143 7753 16144 7720 16144 7721 16144 7753 16145 7721 16145 7755 16145 7755 16146 7721 16146 7754 16146 7755 16147 7754 16147 7756 16147 7756 16148 7754 16148 7718 16148 7756 16149 7718 16149 7757 16149 7757 16150 7718 16150 7758 16150 7757 16151 7758 16151 7759 16151 7759 16152 7758 16152 7719 16152 7759 16153 7719 16153 7760 16153 7760 16154 7719 16154 7761 16154 7760 16155 7761 16155 7762 16155 7762 16156 7761 16156 7763 16156 7762 16157 7763 16157 7875 16157 7875 16158 7763 16158 7764 16158 7875 16159 7764 16159 7765 16159 7765 16160 7764 16160 7717 16160 7765 16161 7717 16161 7914 16161 7914 16162 7717 16162 7715 16162 7914 16163 7715 16163 7766 16163 7766 16164 7715 16164 7767 16164 7766 16165 7767 16165 7768 16165 7768 16166 7767 16166 7769 16166 7768 16167 7769 16167 7876 16167 7876 16168 7769 16168 7770 16168 7876 16169 7770 16169 7771 16169 7771 16170 7770 16170 7713 16170 7771 16171 7713 16171 7880 16171 7880 16172 7713 16172 7772 16172 7880 16173 7772 16173 7773 16173 7773 16174 7772 16174 7775 16174 7773 16175 7775 16175 7774 16175 7774 16176 7775 16176 7776 16176 7774 16177 7776 16177 7777 16177 7777 16178 7776 16178 7714 16178 7777 16179 7714 16179 7783 16179 7783 16180 7714 16180 7781 16180 7780 16181 7779 16181 7778 16181 7782 16182 7778 16182 7784 16182 7779 16183 7784 16183 7778 16183 7784 16184 7779 16184 7781 16184 7780 16185 7783 16185 7779 16185 7783 16186 7781 16186 7779 16186 7778 16187 7782 16187 7882 16187 7882 16188 7782 16188 7786 16188 7882 16189 7786 16189 7785 16189 7785 16190 7786 16190 7787 16190 7785 16191 7787 16191 7788 16191 7788 16192 7787 16192 7789 16192 7788 16193 7789 16193 7881 16193 7881 16194 7789 16194 7790 16194 7881 16195 7790 16195 7877 16195 7877 16196 7790 16196 7791 16196 7877 16197 7791 16197 7793 16197 7793 16198 7791 16198 7792 16198 7793 16199 7792 16199 7878 16199 7878 16200 7792 16200 7712 16200 7878 16201 7712 16201 7879 16201 7879 16202 7712 16202 7794 16202 7879 16203 7794 16203 7795 16203 7795 16204 7794 16204 7711 16204 7795 16205 7711 16205 7796 16205 7796 16206 7711 16206 7707 16206 7796 16207 7707 16207 7797 16207 7797 16208 7707 16208 7708 16208 7797 16209 7708 16209 7885 16209 7885 16210 7708 16210 7709 16210 7885 16211 7709 16211 7884 16211 7884 16212 7709 16212 7798 16212 7884 16213 7798 16213 7886 16213 7886 16214 7798 16214 7799 16214 7886 16215 7799 16215 7887 16215 7887 16216 7799 16216 7801 16216 7887 16217 7801 16217 7800 16217 7800 16218 7801 16218 7710 16218 7800 16219 7710 16219 7883 16219 7883 16220 7710 16220 7802 16220 7883 16221 7802 16221 7888 16221 7888 16222 7802 16222 7803 16222 7888 16223 7803 16223 7804 16223 7804 16224 7803 16224 7703 16224 7804 16225 7703 16225 7805 16225 7805 16226 7703 16226 7806 16226 7805 16227 7806 16227 7889 16227 7889 16228 7806 16228 7807 16228 7889 16229 7807 16229 7808 16229 7808 16230 7807 16230 7702 16230 7808 16231 7702 16231 7890 16231 7890 16232 7702 16232 7704 16232 7890 16233 7704 16233 7891 16233 7891 16234 7704 16234 7705 16234 7891 16235 7705 16235 7810 16235 7810 16236 7705 16236 7809 16236 7810 16237 7809 16237 7893 16237 7893 16238 7809 16238 7811 16238 7893 16239 7811 16239 7814 16239 7814 16240 7811 16240 7815 16240 7815 16241 7816 16241 7814 16241 7816 16242 7813 16242 7814 16242 7813 16243 7816 16243 7812 16243 7818 16244 7816 16244 7815 16244 7816 16245 7818 16245 7817 16245 7706 16246 7812 16246 7817 16246 7816 16247 7817 16247 7812 16247 7812 16248 7706 16248 7819 16248 7819 16249 7706 16249 10158 16249 7819 16250 10158 16250 7820 16250 7820 16251 10158 16251 7821 16251 7820 16252 7821 16252 7894 16252 7894 16253 7821 16253 7822 16253 7894 16254 7822 16254 7892 16254 7892 16255 7822 16255 7823 16255 7892 16256 7823 16256 7824 16256 7824 16257 7823 16257 7727 16257 7824 16258 7727 16258 7825 16258 7825 16259 7727 16259 7700 16259 7825 16260 7700 16260 7826 16260 7826 16261 7700 16261 7701 16261 7826 16262 7701 16262 7827 16262 7827 16263 7701 16263 7828 16263 7827 16264 7828 16264 7895 16264 7895 16265 7828 16265 7699 16265 7895 16266 7699 16266 7829 16266 7829 16267 7699 16267 7696 16267 7829 16268 7696 16268 7900 16268 7900 16269 7696 16269 7698 16269 7900 16270 7698 16270 7830 16270 7830 16271 7698 16271 7832 16271 7830 16272 7832 16272 7831 16272 7831 16273 7832 16273 10220 16273 7831 16274 10220 16274 7901 16274 7901 16275 10220 16275 7834 16275 7901 16276 7834 16276 7833 16276 7833 16277 7834 16277 7835 16277 7833 16278 7835 16278 7899 16278 7899 16279 7835 16279 7697 16279 7899 16280 7697 16280 7836 16280 7836 16281 7697 16281 7695 16281 7836 16282 7695 16282 7898 16282 7898 16283 7695 16283 7694 16283 7898 16284 7694 16284 7902 16284 7902 16285 7694 16285 7693 16285 7902 16286 7693 16286 7903 16286 7903 16287 7693 16287 7692 16287 7903 16288 7692 16288 7904 16288 7904 16289 7692 16289 7691 16289 7904 16290 7691 16290 7913 16290 7913 16291 7691 16291 7687 16291 7913 16292 7687 16292 7908 16292 7908 16293 7687 16293 7837 16293 7908 16294 7837 16294 7910 16294 7910 16295 7837 16295 7689 16295 7910 16296 7689 16296 7838 16296 7838 16297 7689 16297 7840 16297 7838 16298 7840 16298 7839 16298 7839 16299 7840 16299 7690 16299 7839 16300 7690 16300 7841 16300 7841 16301 7690 16301 7843 16301 7846 16302 7844 16302 7841 16302 7842 16303 7844 16303 7845 16303 7843 16304 7846 16304 7841 16304 7845 16305 7844 16305 7846 16305 7842 16306 7845 16306 7847 16306 7847 16307 6552 16307 7842 16307 7847 16308 7845 16308 7846 16308 7847 16309 7846 16309 7843 16309 7842 16310 6552 16310 7909 16310 7909 16311 6552 16311 7688 16311 7909 16312 7688 16312 7848 16312 7848 16313 7688 16313 7850 16313 7848 16314 7850 16314 7849 16314 7849 16315 7850 16315 7851 16315 7849 16316 7851 16316 7905 16316 7905 16317 7851 16317 7852 16317 7905 16318 7852 16318 7853 16318 7853 16319 7852 16319 7854 16319 7853 16320 7854 16320 7906 16320 7906 16321 7854 16321 7686 16321 7906 16322 7686 16322 7855 16322 7855 16323 7686 16323 7685 16323 7855 16324 7685 16324 7907 16324 7907 16325 7685 16325 7683 16325 7907 16326 7683 16326 7911 16326 7911 16327 7683 16327 7684 16327 7911 16328 7684 16328 7912 16328 7912 16329 7684 16329 7857 16329 7912 16330 7857 16330 7856 16330 7856 16331 7857 16331 7859 16331 7856 16332 7859 16332 7858 16332 7858 16333 7859 16333 7682 16333 7858 16334 7682 16334 7860 16334 7860 16335 7682 16335 6537 16335 7860 16336 6537 16336 7861 16336 7861 16337 6537 16337 7681 16337 7858 16338 7860 16338 7856 16338 7856 16339 7860 16339 7861 16339 7856 16340 7861 16340 7730 16340 7730 16341 7861 16341 7729 16341 7730 16342 7915 16342 7856 16342 7856 16343 7915 16343 7912 16343 7912 16344 7915 16344 7921 16344 7912 16345 7921 16345 7917 16345 7862 16346 7922 16346 7915 16346 7863 16347 8021 16347 7862 16347 7862 16348 8021 16348 8024 16348 7865 16349 8021 16349 7863 16349 7864 16350 8021 16350 7865 16350 7867 16351 8022 16351 7864 16351 7864 16352 8022 16352 8021 16352 7866 16353 7749 16353 7867 16353 7867 16354 7749 16354 8022 16354 7870 16355 7740 16355 7866 16355 7866 16356 7740 16356 7868 16356 7866 16357 7868 16357 7749 16357 7869 16358 7737 16358 7870 16358 7870 16359 7737 16359 7740 16359 7740 16360 7744 16360 7739 16360 7740 16361 7739 16361 7868 16361 7868 16362 7739 16362 7871 16362 7871 16363 7739 16363 7746 16363 7871 16364 7746 16364 7872 16364 8022 16365 7749 16365 7873 16365 8022 16366 7873 16366 8027 16366 8027 16367 7873 16367 7751 16367 8027 16368 7751 16368 7874 16368 8027 16369 7874 16369 7753 16369 8027 16370 7753 16370 8026 16370 8026 16371 7753 16371 7937 16371 8026 16372 7937 16372 7927 16372 7937 16373 7753 16373 7940 16373 7940 16374 7753 16374 7755 16374 7940 16375 7755 16375 7941 16375 7941 16376 7755 16376 7765 16376 7941 16377 7765 16377 7944 16377 7944 16378 7765 16378 7943 16378 7943 16379 7765 16379 7914 16379 7943 16380 7914 16380 7947 16380 7947 16381 7914 16381 8049 16381 7765 16382 7755 16382 7875 16382 7875 16383 7755 16383 7756 16383 7875 16384 7756 16384 7760 16384 7760 16385 7756 16385 7759 16385 7759 16386 7756 16386 7757 16386 7760 16387 7762 16387 7875 16387 7766 16388 8047 16388 7914 16388 7914 16389 8047 16389 8049 16389 7768 16390 8048 16390 7766 16390 7766 16391 8048 16391 8047 16391 7876 16392 8048 16392 7768 16392 7771 16393 8051 16393 7876 16393 7876 16394 8051 16394 8048 16394 7880 16395 7881 16395 7771 16395 7771 16396 7881 16396 7877 16396 7771 16397 7877 16397 8051 16397 8051 16398 7877 16398 7793 16398 8051 16399 7793 16399 7878 16399 8051 16400 7878 16400 7879 16400 8051 16401 7879 16401 8050 16401 8050 16402 7879 16402 7795 16402 8050 16403 7795 16403 7957 16403 8050 16404 7957 16404 7951 16404 7773 16405 7783 16405 7880 16405 7880 16406 7783 16406 7778 16406 7880 16407 7778 16407 7881 16407 7881 16408 7778 16408 7788 16408 7788 16409 7778 16409 7882 16409 7788 16410 7882 16410 7785 16410 7774 16411 7777 16411 7773 16411 7773 16412 7777 16412 7783 16412 7783 16413 7780 16413 7778 16413 7957 16414 7795 16414 7962 16414 7962 16415 7795 16415 7796 16415 7962 16416 7796 16416 7960 16416 7960 16417 7796 16417 7964 16417 7964 16418 7796 16418 7883 16418 7964 16419 7883 16419 7963 16419 7963 16420 7883 16420 7888 16420 7963 16421 7888 16421 7967 16421 7967 16422 7888 16422 7998 16422 7796 16423 7797 16423 7883 16423 7883 16424 7797 16424 7800 16424 7800 16425 7797 16425 7884 16425 7800 16426 7884 16426 7886 16426 7797 16427 7885 16427 7884 16427 7886 16428 7887 16428 7800 16428 7804 16429 8008 16429 7888 16429 7888 16430 8008 16430 7998 16430 7805 16431 8008 16431 7804 16431 7889 16432 8008 16432 7805 16432 7808 16433 8001 16433 7889 16433 7889 16434 8001 16434 8008 16434 7890 16435 7824 16435 7808 16435 7808 16436 7824 16436 7997 16436 7808 16437 7997 16437 8001 16437 7891 16438 7814 16438 7890 16438 7890 16439 7814 16439 7892 16439 7890 16440 7892 16440 7824 16440 7810 16441 7893 16441 7891 16441 7891 16442 7893 16442 7814 16442 7892 16443 7814 16443 7812 16443 7812 16444 7814 16444 7813 16444 7892 16445 7812 16445 7894 16445 7894 16446 7812 16446 7819 16446 7894 16447 7819 16447 7820 16447 7997 16448 7824 16448 7825 16448 7997 16449 7825 16449 7826 16449 7997 16450 7826 16450 8002 16450 8002 16451 7826 16451 7827 16451 8002 16452 7827 16452 7895 16452 8002 16453 7895 16453 8000 16453 8000 16454 7895 16454 7896 16454 7896 16455 7895 16455 7981 16455 7981 16456 7895 16456 7829 16456 7981 16457 7829 16457 7897 16457 7897 16458 7829 16458 7836 16458 7897 16459 7836 16459 7982 16459 7982 16460 7836 16460 7985 16460 7985 16461 7836 16461 7898 16461 7985 16462 7898 16462 7987 16462 7987 16463 7898 16463 8072 16463 7836 16464 7829 16464 7899 16464 7899 16465 7829 16465 7900 16465 7899 16466 7900 16466 7901 16466 7901 16467 7900 16467 7831 16467 7831 16468 7900 16468 7830 16468 7901 16469 7833 16469 7899 16469 7902 16470 8071 16470 7898 16470 7898 16471 8071 16471 8072 16471 7903 16472 8071 16472 7902 16472 7904 16473 8071 16473 7903 16473 7913 16474 8074 16474 7904 16474 7904 16475 8074 16475 8071 16475 7908 16476 7905 16476 7913 16476 7913 16477 7905 16477 7853 16477 7913 16478 7853 16478 8074 16478 8074 16479 7853 16479 8068 16479 8068 16480 7853 16480 7906 16480 8068 16481 7906 16481 7855 16481 8068 16482 7855 16482 8080 16482 8080 16483 7855 16483 7907 16483 8080 16484 7907 16484 7911 16484 8080 16485 7911 16485 8070 16485 8070 16486 7911 16486 7677 16486 8070 16487 7677 16487 7995 16487 7910 16488 7841 16488 7908 16488 7908 16489 7841 16489 7842 16489 7908 16490 7842 16490 7905 16490 7905 16491 7842 16491 7849 16491 7849 16492 7842 16492 7909 16492 7849 16493 7909 16493 7848 16493 7838 16494 7839 16494 7910 16494 7910 16495 7839 16495 7841 16495 7841 16496 7844 16496 7842 16496 7677 16497 7911 16497 7919 16497 7919 16498 7911 16498 7912 16498 7919 16499 7912 16499 7917 16499 7987 16500 8072 16500 7992 16500 7992 16501 8072 16501 8075 16501 7992 16502 8075 16502 7996 16502 7996 16503 8075 16503 7995 16503 7995 16504 8075 16504 8070 16504 8049 16505 7946 16505 7947 16505 7946 16506 8049 16506 8052 16506 7946 16507 8052 16507 7949 16507 7949 16508 8052 16508 7951 16508 7951 16509 8052 16509 8050 16509 7862 16510 8024 16510 7925 16510 8020 16511 7925 16511 8024 16511 7925 16512 8020 16512 7926 16512 7926 16513 8020 16513 7932 16513 7932 16514 8020 16514 8028 16514 7932 16515 8028 16515 7927 16515 7927 16516 8028 16516 8026 16516 7967 16517 7998 16517 7971 16517 7971 16518 7998 16518 7999 16518 7971 16519 7999 16519 7969 16519 7969 16520 7999 16520 7975 16520 7975 16521 7999 16521 8000 16521 7975 16522 8000 16522 7896 16522 7925 16523 7922 16523 7862 16523 7915 16524 7922 16524 7921 16524 7921 16525 7920 16525 7917 16525 7917 16526 7920 16526 7918 16526 7918 16527 7919 16527 7917 16527 7918 16528 7916 16528 7919 16528 7921 16529 7922 16529 7920 16529 7923 16530 7920 16530 7922 16530 7925 16531 7924 16531 7922 16531 7922 16532 7924 16532 7923 16532 7930 16533 7925 16533 7926 16533 7924 16534 7925 16534 7930 16534 7926 16535 7932 16535 7934 16535 7933 16536 7929 16536 7935 16536 7928 16537 7929 16537 7927 16537 7926 16538 7934 16538 7930 16538 7932 16539 7933 16539 7934 16539 7929 16540 7932 16540 7927 16540 7930 16541 7934 16541 7931 16541 7934 16542 7933 16542 7931 16542 7933 16543 7935 16543 7931 16543 7933 16544 7932 16544 7929 16544 7935 16545 7929 16545 7928 16545 7927 16546 7936 16546 7928 16546 7936 16547 7927 16547 7937 16547 7940 16548 7939 16548 7937 16548 7937 16549 7939 16549 7936 16549 7940 16550 7938 16550 7939 16550 7938 16551 7940 16551 7941 16551 7944 16552 7942 16552 7941 16552 7941 16553 7942 16553 7938 16553 7716 16554 7944 16554 7943 16554 7942 16555 7944 16555 7716 16555 7947 16556 7945 16556 7943 16556 7943 16557 7945 16557 7716 16557 7947 16558 7948 16558 7945 16558 7947 16559 7946 16559 7948 16559 7946 16560 7954 16560 7948 16560 7949 16561 7950 16561 7946 16561 7952 16562 7955 16562 7951 16562 7954 16563 7946 16563 7956 16563 7953 16564 7950 16564 7955 16564 7953 16565 7946 16565 7950 16565 7946 16566 7953 16566 7956 16566 7955 16567 7950 16567 7949 16567 7956 16568 7955 16568 7952 16568 7953 16569 7955 16569 7956 16569 7955 16570 7949 16570 7951 16570 7951 16571 7958 16571 7952 16571 7958 16572 7951 16572 7957 16572 7962 16573 7961 16573 7957 16573 7957 16574 7961 16574 7958 16574 7959 16575 7962 16575 7960 16575 7961 16576 7962 16576 7959 16576 7964 16577 7965 16577 7960 16577 7960 16578 7965 16578 7959 16578 7965 16579 7964 16579 7963 16579 7966 16580 7965 16580 7963 16580 7967 16581 7968 16581 7963 16581 7963 16582 7968 16582 7966 16582 7968 16583 7967 16583 7972 16583 7967 16584 7971 16584 7972 16584 7975 16585 7976 16585 7974 16585 7972 16586 7973 16586 7970 16586 7974 16587 7969 16587 7975 16587 7971 16588 7973 16588 7972 16588 7970 16589 7974 16589 7976 16589 7971 16590 7969 16590 7973 16590 7974 16591 7973 16591 7969 16591 7970 16592 7973 16592 7974 16592 7975 16593 7977 16593 7976 16593 7975 16594 7896 16594 7977 16594 7978 16595 7977 16595 7896 16595 7981 16596 7979 16596 7896 16596 7896 16597 7979 16597 7978 16597 7979 16598 7981 16598 7980 16598 7980 16599 7981 16599 7897 16599 7982 16600 7986 16600 7897 16600 7897 16601 7986 16601 7980 16601 7982 16602 7983 16602 7986 16602 7986 16603 7983 16603 7984 16603 7982 16604 7985 16604 7983 16604 7984 16605 7983 16605 7985 16605 7987 16606 7988 16606 7985 16606 7985 16607 7988 16607 7984 16607 7987 16608 7990 16608 7988 16608 7990 16609 7987 16609 7992 16609 7992 16610 7996 16610 7994 16610 7994 16611 7996 16611 7993 16611 7992 16612 7994 16612 7990 16612 7991 16613 7993 16613 7989 16613 7993 16614 7991 16614 7994 16614 7990 16615 7994 16615 7991 16615 7993 16616 7996 16616 7989 16616 7989 16617 7996 16617 7995 16617 7995 16618 7679 16618 7989 16618 8016 16619 8015 16619 8019 16619 8002 16620 8007 16620 7997 16620 8002 16621 8000 16621 8006 16621 7999 16622 8009 16622 8000 16622 8001 16623 7997 16623 8014 16623 8008 16624 8003 16624 7998 16624 7999 16625 7998 16625 8005 16625 7999 16626 8005 16626 8009 16626 8000 16627 8009 16627 8006 16627 8008 16628 8004 16628 8003 16628 8006 16629 8010 16629 8002 16629 8001 16630 8014 16630 8004 16630 8001 16631 8004 16631 8008 16631 8002 16632 8010 16632 8007 16632 7997 16633 8007 16633 8014 16633 7998 16634 8003 16634 8005 16634 8003 16635 8015 16635 8005 16635 8010 16636 8006 16636 8011 16636 8004 16637 8014 16637 8013 16637 8005 16638 8015 16638 8016 16638 8006 16639 8009 16639 8017 16639 8007 16640 8010 16640 8018 16640 8006 16641 8017 16641 8011 16641 8010 16642 8012 16642 8018 16642 8005 16643 8016 16643 8017 16643 8005 16644 8017 16644 8009 16644 8010 16645 8011 16645 8012 16645 8003 16646 8019 16646 8015 16646 8004 16647 8019 16647 8003 16647 8007 16648 8018 16648 8014 16648 8014 16649 8018 16649 8013 16649 8004 16650 8013 16650 8019 16650 8027 16651 8030 16651 8022 16651 8024 16652 8023 16652 8025 16652 8024 16653 8025 16653 8020 16653 8021 16654 8037 16654 8029 16654 8021 16655 8029 16655 8024 16655 8022 16656 8037 16656 8021 16656 8022 16657 8033 16657 8037 16657 8024 16658 8029 16658 8023 16658 8027 16659 8034 16659 8030 16659 8022 16660 8030 16660 8033 16660 8026 16661 8034 16661 8027 16661 8020 16662 8025 16662 8032 16662 8020 16663 8032 16663 8028 16663 8028 16664 8036 16664 8026 16664 8026 16665 8036 16665 8034 16665 8023 16666 8031 16666 8025 16666 8030 16667 8034 16667 8038 16667 8025 16668 8031 16668 8032 16668 8033 16669 8041 16669 8037 16669 8032 16670 8040 16670 8028 16670 8037 16671 8035 16671 8029 16671 8023 16672 8029 16672 8035 16672 8037 16673 8041 16673 8039 16673 8032 16674 8031 16674 8040 16674 8028 16675 8040 16675 8036 16675 8030 16676 8038 16676 8041 16676 8030 16677 8041 16677 8033 16677 8036 16678 8042 16678 8034 16678 8037 16679 8039 16679 8035 16679 8035 16680 8044 16680 8023 16680 8023 16681 8044 16681 8031 16681 8034 16682 8042 16682 8043 16682 8036 16683 8040 16683 8042 16683 8035 16684 8039 16684 8044 16684 8034 16685 8043 16685 8038 16685 8041 16686 8038 16686 8039 16686 8050 16687 8053 16687 8051 16687 8045 16688 8064 16688 8065 16688 8049 16689 8055 16689 8052 16689 8050 16690 8052 16690 8061 16690 8048 16691 8051 16691 8064 16691 8050 16692 8061 16692 8054 16692 8050 16693 8054 16693 8053 16693 8047 16694 8056 16694 8049 16694 8052 16695 8055 16695 8061 16695 8053 16696 8058 16696 8051 16696 8048 16697 8057 16697 8047 16697 8048 16698 8064 16698 8057 16698 8047 16699 8057 16699 8056 16699 8049 16700 8060 16700 8055 16700 8051 16701 8058 16701 8059 16701 8051 16702 8059 16702 8064 16702 8049 16703 8056 16703 8060 16703 8055 16704 8060 16704 8063 16704 8058 16705 8046 16705 8059 16705 8054 16706 8061 16706 8066 16706 8057 16707 8064 16707 8045 16707 8059 16708 8046 16708 8065 16708 8059 16709 8065 16709 8064 16709 8057 16710 8045 16710 8056 16710 8054 16711 8066 16711 8053 16711 8055 16712 8063 16712 8061 16712 8053 16713 8066 16713 8067 16713 8058 16714 8053 16714 8046 16714 8061 16715 8063 16715 8066 16715 8053 16716 8067 16716 8046 16716 8056 16717 8045 16717 8060 16717 8060 16718 8062 16718 8063 16718 8060 16719 8045 16719 8062 16719 8071 16720 8074 16720 8079 16720 8072 16721 8076 16721 8075 16721 8071 16722 8073 16722 8072 16722 8068 16723 8081 16723 8074 16723 8070 16724 8075 16724 8078 16724 8075 16725 8082 16725 8078 16725 8074 16726 8081 16726 8079 16726 8070 16727 8078 16727 8080 16727 8072 16728 8073 16728 8077 16728 8075 16729 8076 16729 8082 16729 8080 16730 8078 16730 8086 16730 8072 16731 8077 16731 8076 16731 8068 16732 8080 16732 8081 16732 8071 16733 8079 16733 8073 16733 8081 16734 8069 16734 8079 16734 8081 16735 8080 16735 8069 16735 8080 16736 8086 16736 8069 16736 8076 16737 8088 16737 8082 16737 8073 16738 8084 16738 8077 16738 8077 16739 8084 16739 8087 16739 8082 16740 8085 16740 8078 16740 8079 16741 8083 16741 8073 16741 8073 16742 8083 16742 8084 16742 8077 16743 8087 16743 8076 16743 8076 16744 8087 16744 8088 16744 8079 16745 8069 16745 8083 16745 8082 16746 8088 16746 8085 16746 8078 16747 8085 16747 8086 16747 8089 16748 8456 16748 8090 16748 8090 16749 8456 16749 8455 16749 8090 16750 8455 16750 8094 16750 8094 16751 8455 16751 8095 16751 8093 16752 8094 16752 8095 16752 8091 16753 8093 16753 8092 16753 8091 16754 8094 16754 8093 16754 8092 16755 10432 16755 8091 16755 10432 16756 8092 16756 10435 16756 10435 16757 8092 16757 3168 16757 10435 16758 3168 16758 8685 16758 8685 16759 3168 16759 8097 16759 8685 16760 8097 16760 8096 16760 8096 16761 8097 16761 8098 16761 8096 16762 8098 16762 8099 16762 8099 16763 8098 16763 8100 16763 8099 16764 8100 16764 8101 16764 8101 16765 8100 16765 8459 16765 8101 16766 8459 16766 8686 16766 8686 16767 8459 16767 8595 16767 8686 16768 8595 16768 8103 16768 8103 16769 8595 16769 8594 16769 8102 16770 8103 16770 8594 16770 8102 16771 8104 16771 8103 16771 8687 16772 8104 16772 8102 16772 8590 16773 8687 16773 8102 16773 8687 16774 8590 16774 8106 16774 8106 16775 8590 16775 8105 16775 8106 16776 8105 16776 8688 16776 8688 16777 8105 16777 8589 16777 8688 16778 8589 16778 8689 16778 8689 16779 8589 16779 8107 16779 8689 16780 8107 16780 8691 16780 8691 16781 8107 16781 8108 16781 8691 16782 8108 16782 8109 16782 8109 16783 8108 16783 8110 16783 8109 16784 8110 16784 10446 16784 10446 16785 8110 16785 3031 16785 10446 16786 3031 16786 8111 16786 8111 16787 3031 16787 8591 16787 8111 16788 8591 16788 8115 16788 8113 16789 8114 16789 8115 16789 8112 16790 8114 16790 8113 16790 8111 16791 8114 16791 8116 16791 8112 16792 8116 16792 8114 16792 8114 16793 8111 16793 8115 16793 8112 16794 8113 16794 8694 16794 8694 16795 8113 16795 8593 16795 8694 16796 8593 16796 8693 16796 8693 16797 8593 16797 8117 16797 8693 16798 8117 16798 8692 16798 8692 16799 8117 16799 8592 16799 8692 16800 8592 16800 8690 16800 8690 16801 8592 16801 8588 16801 8690 16802 8588 16802 8118 16802 8118 16803 8588 16803 8587 16803 8118 16804 8587 16804 8119 16804 8119 16805 8587 16805 8120 16805 8119 16806 8120 16806 8695 16806 8695 16807 8120 16807 8121 16807 8123 16808 8122 16808 8695 16808 8121 16809 8123 16809 8695 16809 8123 16810 8585 16810 8696 16810 8123 16811 8696 16811 8122 16811 8696 16812 8585 16812 8124 16812 8124 16813 8585 16813 8584 16813 8124 16814 8584 16814 8862 16814 8862 16815 8584 16815 8586 16815 8862 16816 8586 16816 8125 16816 8125 16817 8586 16817 8617 16817 8125 16818 8617 16818 8861 16818 8861 16819 8617 16819 8126 16819 8861 16820 8126 16820 8697 16820 8697 16821 8126 16821 8583 16821 8697 16822 8583 16822 8698 16822 8698 16823 8583 16823 8582 16823 8698 16824 8582 16824 8127 16824 8127 16825 8582 16825 8128 16825 8127 16826 8128 16826 8129 16826 8129 16827 8128 16827 8130 16827 8129 16828 8130 16828 8131 16828 8131 16829 8130 16829 8581 16829 8131 16830 8581 16830 8132 16830 8132 16831 8581 16831 8580 16831 8132 16832 8580 16832 8699 16832 8699 16833 8580 16833 8604 16833 8699 16834 8604 16834 8133 16834 8133 16835 8604 16835 8134 16835 8133 16836 8134 16836 8700 16836 8700 16837 8134 16837 8135 16837 8701 16838 8700 16838 8135 16838 8135 16839 8138 16839 8701 16839 8137 16840 8701 16840 8138 16840 8136 16841 8137 16841 8138 16841 8137 16842 8136 16842 8139 16842 8139 16843 8136 16843 8141 16843 8139 16844 8141 16844 8140 16844 8140 16845 8141 16845 8142 16845 8140 16846 8142 16846 8702 16846 8702 16847 8142 16847 8579 16847 8702 16848 8579 16848 8859 16848 8859 16849 8579 16849 8143 16849 8859 16850 8143 16850 8144 16850 8144 16851 8143 16851 8578 16851 8144 16852 8578 16852 8146 16852 8146 16853 8578 16853 8145 16853 8146 16854 8145 16854 8147 16854 8147 16855 8145 16855 8148 16855 8147 16856 8148 16856 8149 16856 8149 16857 8148 16857 8577 16857 8149 16858 8577 16858 8704 16858 8704 16859 8577 16859 8613 16859 8704 16860 8613 16860 8705 16860 8705 16861 8613 16861 8150 16861 8705 16862 8150 16862 8706 16862 8706 16863 8150 16863 8603 16863 8706 16864 8603 16864 8151 16864 8151 16865 8603 16865 8152 16865 8151 16866 8152 16866 8707 16866 8707 16867 8152 16867 8153 16867 8707 16868 8153 16868 8154 16868 8154 16869 8155 16869 8707 16869 8156 16870 8155 16870 8154 16870 8575 16871 8156 16871 8154 16871 8156 16872 8575 16872 8708 16872 8708 16873 8575 16873 8574 16873 8708 16874 8574 16874 8709 16874 8709 16875 8574 16875 8157 16875 8709 16876 8157 16876 8856 16876 8856 16877 8157 16877 8572 16877 8856 16878 8572 16878 8855 16878 8855 16879 8572 16879 8573 16879 8855 16880 8573 16880 8158 16880 8158 16881 8573 16881 8571 16881 8158 16882 8571 16882 8710 16882 8710 16883 8571 16883 8570 16883 8710 16884 8570 16884 8713 16884 8713 16885 8570 16885 8159 16885 8713 16886 8159 16886 8160 16886 8160 16887 8159 16887 8161 16887 8160 16888 8161 16888 8711 16888 8711 16889 8161 16889 8611 16889 8711 16890 8611 16890 8712 16890 8712 16891 8611 16891 8569 16891 8712 16892 8569 16892 8162 16892 8162 16893 8569 16893 8601 16893 8162 16894 8601 16894 8714 16894 8714 16895 8601 16895 8568 16895 8714 16896 8568 16896 8715 16896 8715 16897 8568 16897 8163 16897 8839 16898 8715 16898 8163 16898 8163 16899 8164 16899 8839 16899 8165 16900 8839 16900 8164 16900 8164 16901 8567 16901 8165 16901 8165 16902 8567 16902 8716 16902 8716 16903 8567 16903 8166 16903 8716 16904 8166 16904 8838 16904 8838 16905 8166 16905 8566 16905 8838 16906 8566 16906 8851 16906 8851 16907 8566 16907 8167 16907 8851 16908 8167 16908 8717 16908 8717 16909 8167 16909 8609 16909 8717 16910 8609 16910 8718 16910 8718 16911 8609 16911 8169 16911 8718 16912 8169 16912 8168 16912 8168 16913 8169 16913 8170 16913 8168 16914 8170 16914 8171 16914 8171 16915 8170 16915 8564 16915 8171 16916 8564 16916 8172 16916 8172 16917 8564 16917 8173 16917 8172 16918 8173 16918 8719 16918 8719 16919 8173 16919 8565 16919 8719 16920 8565 16920 8720 16920 8720 16921 8565 16921 8175 16921 8720 16922 8175 16922 8174 16922 8174 16923 8175 16923 8600 16923 8174 16924 8600 16924 8176 16924 8176 16925 8600 16925 8177 16925 8176 16926 8177 16926 8721 16926 8721 16927 8177 16927 8178 16927 8179 16928 8721 16928 8178 16928 8180 16929 8179 16929 8178 16929 8563 16930 8722 16930 8180 16930 8722 16931 8179 16931 8180 16931 8722 16932 8563 16932 8182 16932 8182 16933 8563 16933 8181 16933 8182 16934 8181 16934 8183 16934 8183 16935 8181 16935 8560 16935 8183 16936 8560 16936 8849 16936 8849 16937 8560 16937 8559 16937 8849 16938 8559 16938 8848 16938 8848 16939 8559 16939 8558 16939 8848 16940 8558 16940 8723 16940 8723 16941 8558 16941 8184 16941 8723 16942 8184 16942 8727 16942 8727 16943 8184 16943 8185 16943 8727 16944 8185 16944 8186 16944 8186 16945 8185 16945 8562 16945 8186 16946 8562 16946 8728 16946 8728 16947 8562 16947 8187 16947 8728 16948 8187 16948 8188 16948 8188 16949 8187 16949 8557 16949 8188 16950 8557 16950 8724 16950 8724 16951 8557 16951 8189 16951 8724 16952 8189 16952 8725 16952 8725 16953 8189 16953 8556 16953 8725 16954 8556 16954 8190 16954 8190 16955 8556 16955 8191 16955 8190 16956 8191 16956 8726 16956 8726 16957 8191 16957 8555 16957 8192 16958 8726 16958 8555 16958 8192 16959 8729 16959 8726 16959 8730 16960 8729 16960 8192 16960 8192 16961 8554 16961 8730 16961 8730 16962 8554 16962 8193 16962 8193 16963 8554 16963 8194 16963 8193 16964 8194 16964 8196 16964 8196 16965 8194 16965 8195 16965 8196 16966 8195 16966 8731 16966 8731 16967 8195 16967 8552 16967 8731 16968 8552 16968 8736 16968 8736 16969 8552 16969 8551 16969 8736 16970 8551 16970 8735 16970 8735 16971 8551 16971 8197 16971 8735 16972 8197 16972 8198 16972 8198 16973 8197 16973 8199 16973 8198 16974 8199 16974 8200 16974 8200 16975 8199 16975 8201 16975 8200 16976 8201 16976 8202 16976 8202 16977 8201 16977 8203 16977 8202 16978 8203 16978 8737 16978 8737 16979 8203 16979 8550 16979 8737 16980 8550 16980 8204 16980 8204 16981 8550 16981 8548 16981 8204 16982 8548 16982 8738 16982 8738 16983 8548 16983 8206 16983 8738 16984 8206 16984 8205 16984 8205 16985 8206 16985 8547 16985 8205 16986 8547 16986 8734 16986 8734 16987 8547 16987 8208 16987 8210 16988 8734 16988 8207 16988 8207 16989 8734 16989 8208 16989 8209 16990 8207 16990 8208 16990 8207 16991 8209 16991 8210 16991 8212 16992 8210 16992 8209 16992 8212 16993 8211 16993 8210 16993 8211 16994 8212 16994 8213 16994 8213 16995 8212 16995 8546 16995 8213 16996 8546 16996 8739 16996 8739 16997 8546 16997 8214 16997 8739 16998 8214 16998 8215 16998 8215 16999 8214 16999 8545 16999 8215 17000 8545 17000 8216 17000 8216 17001 8545 17001 8544 17001 8216 17002 8544 17002 8217 17002 8217 17003 8544 17003 8218 17003 8217 17004 8218 17004 8741 17004 8741 17005 8218 17005 8219 17005 8741 17006 8219 17006 8742 17006 8742 17007 8219 17007 8220 17007 8742 17008 8220 17008 8221 17008 8221 17009 8220 17009 8222 17009 8221 17010 8222 17010 8223 17010 8223 17011 8222 17011 8543 17011 8223 17012 8543 17012 8224 17012 8224 17013 8543 17013 8542 17013 8224 17014 8542 17014 8740 17014 8740 17015 8542 17015 8225 17015 8740 17016 8225 17016 8226 17016 8226 17017 8225 17017 8227 17017 8226 17018 8227 17018 8228 17018 8228 17019 8227 17019 8230 17019 8230 17020 8229 17020 8231 17020 8228 17021 8230 17021 8231 17021 8234 17022 8231 17022 8229 17022 8234 17023 8232 17023 8231 17023 8232 17024 8234 17024 8233 17024 8233 17025 8234 17025 8541 17025 8233 17026 8541 17026 8235 17026 8235 17027 8541 17027 8538 17027 8235 17028 8538 17028 8237 17028 8237 17029 8538 17029 8236 17029 8237 17030 8236 17030 8238 17030 8238 17031 8236 17031 8239 17031 8238 17032 8239 17032 8240 17032 8240 17033 8239 17033 8241 17033 8240 17034 8241 17034 8744 17034 8744 17035 8241 17035 8540 17035 8744 17036 8540 17036 8745 17036 8745 17037 8540 17037 8242 17037 8745 17038 8242 17038 8243 17038 8243 17039 8242 17039 8539 17039 8243 17040 8539 17040 8746 17040 8746 17041 8539 17041 8244 17041 8746 17042 8244 17042 8743 17042 8743 17043 8244 17043 8245 17043 8743 17044 8245 17044 8246 17044 8246 17045 8245 17045 8537 17045 8246 17046 8537 17046 8747 17046 8747 17047 8537 17047 8536 17047 8747 17048 8536 17048 8748 17048 8748 17049 8536 17049 8247 17049 8749 17050 8748 17050 8247 17050 8749 17051 8247 17051 8533 17051 8750 17052 8749 17052 8533 17052 8248 17053 8750 17053 8533 17053 8750 17054 8248 17054 8249 17054 8249 17055 8248 17055 8535 17055 8249 17056 8535 17056 8250 17056 8250 17057 8535 17057 8251 17057 8250 17058 8251 17058 8751 17058 8751 17059 8251 17059 8532 17059 8751 17060 8532 17060 8752 17060 8752 17061 8532 17061 8531 17061 8752 17062 8531 17062 8252 17062 8252 17063 8531 17063 8253 17063 8252 17064 8253 17064 8756 17064 8756 17065 8253 17065 8534 17065 8756 17066 8534 17066 8757 17066 8757 17067 8534 17067 8254 17067 8757 17068 8254 17068 8255 17068 8255 17069 8254 17069 8256 17069 8255 17070 8256 17070 8753 17070 8753 17071 8256 17071 8530 17071 8753 17072 8530 17072 8754 17072 8754 17073 8530 17073 8529 17073 8754 17074 8529 17074 8257 17074 8257 17075 8529 17075 8528 17075 8257 17076 8528 17076 8258 17076 8258 17077 8528 17077 8259 17077 8258 17078 8259 17078 8755 17078 8755 17079 8259 17079 8527 17079 8261 17080 8755 17080 8527 17080 8261 17081 8260 17081 8755 17081 8263 17082 8260 17082 8261 17082 8261 17083 8262 17083 8263 17083 8263 17084 8262 17084 8264 17084 8264 17085 8262 17085 8265 17085 8264 17086 8265 17086 8760 17086 8760 17087 8265 17087 8266 17087 8760 17088 8266 17088 8267 17088 8267 17089 8266 17089 8268 17089 8267 17090 8268 17090 8762 17090 8762 17091 8268 17091 8269 17091 8762 17092 8269 17092 8270 17092 8270 17093 8269 17093 8525 17093 8270 17094 8525 17094 8763 17094 8763 17095 8525 17095 8526 17095 8763 17096 8526 17096 8273 17096 8273 17097 8526 17097 8276 17097 8273 17098 8276 17098 8275 17098 8272 17099 8274 17099 8275 17099 8272 17100 8271 17100 8274 17100 8274 17101 8273 17101 8275 17101 8271 17102 8272 17102 8764 17102 8764 17103 8272 17103 8278 17103 8764 17104 8278 17104 8277 17104 8277 17105 8278 17105 8279 17105 8277 17106 8279 17106 8280 17106 8280 17107 8279 17107 8524 17107 8280 17108 8524 17108 8282 17108 8282 17109 8524 17109 8281 17109 8282 17110 8281 17110 8761 17110 8761 17111 8281 17111 8605 17111 8761 17112 8605 17112 8758 17112 8758 17113 8605 17113 8606 17113 8758 17114 8606 17114 8759 17114 8759 17115 8606 17115 8523 17115 8523 17116 8522 17116 8283 17116 8759 17117 8523 17117 8283 17117 8283 17118 8522 17118 8517 17118 8517 17119 8846 17119 8283 17119 8846 17120 8517 17120 8845 17120 8845 17121 8517 17121 8516 17121 8845 17122 8516 17122 8844 17122 8844 17123 8516 17123 8515 17123 8844 17124 8515 17124 8284 17124 8284 17125 8515 17125 8285 17125 8284 17126 8285 17126 8765 17126 8765 17127 8285 17127 8286 17127 8765 17128 8286 17128 8287 17128 8287 17129 8286 17129 8288 17129 8287 17130 8288 17130 8766 17130 8766 17131 8288 17131 6501 17131 8766 17132 6501 17132 8289 17132 8289 17133 6501 17133 6498 17133 6498 17134 8294 17134 8289 17134 8294 17135 8293 17135 8289 17135 8292 17136 8293 17136 8294 17136 8293 17137 8292 17137 8290 17137 8291 17138 8293 17138 8290 17138 8292 17139 8294 17139 6498 17139 8291 17140 8290 17140 8295 17140 8295 17141 8290 17141 8296 17141 8295 17142 8296 17142 8768 17142 8768 17143 8296 17143 8297 17143 8768 17144 8297 17144 8767 17144 8767 17145 8297 17145 8521 17145 8767 17146 8521 17146 8298 17146 8298 17147 8521 17147 8520 17147 8298 17148 8520 17148 8299 17148 8299 17149 8520 17149 8519 17149 8299 17150 8519 17150 8300 17150 8300 17151 8519 17151 8518 17151 8300 17152 8518 17152 8302 17152 8302 17153 8518 17153 8301 17153 8301 17154 8303 17154 8769 17154 8302 17155 8301 17155 8769 17155 8305 17156 8304 17156 8303 17156 8303 17157 8304 17157 8769 17157 8304 17158 8305 17158 8306 17158 8306 17159 8305 17159 8307 17159 8306 17160 8307 17160 8308 17160 8308 17161 8307 17161 8514 17161 8308 17162 8514 17162 8770 17162 8770 17163 8514 17163 8512 17163 8770 17164 8512 17164 8771 17164 8771 17165 8512 17165 8511 17165 8771 17166 8511 17166 8309 17166 8309 17167 8511 17167 8310 17167 8309 17168 8310 17168 8311 17168 8311 17169 8310 17169 8513 17169 8311 17170 8513 17170 8312 17170 8312 17171 8513 17171 8313 17171 8312 17172 8313 17172 8773 17172 8773 17173 8313 17173 8314 17173 8773 17174 8314 17174 8315 17174 8315 17175 8314 17175 8510 17175 8315 17176 8510 17176 8772 17176 8772 17177 8510 17177 8509 17177 8772 17178 8509 17178 8316 17178 8316 17179 8509 17179 8317 17179 8316 17180 8317 17180 8318 17180 8318 17181 8317 17181 8319 17181 8318 17182 8319 17182 8323 17182 8323 17183 8319 17183 8322 17183 8322 17184 8321 17184 8320 17184 8323 17185 8322 17185 8320 17185 8325 17186 8320 17186 8321 17186 8324 17187 8325 17187 8321 17187 8325 17188 8324 17188 8774 17188 8774 17189 8324 17189 8326 17189 8774 17190 8326 17190 8775 17190 8775 17191 8326 17191 8327 17191 8775 17192 8327 17192 8776 17192 8776 17193 8327 17193 8507 17193 8776 17194 8507 17194 8777 17194 8777 17195 8507 17195 8506 17195 8777 17196 8506 17196 8329 17196 8329 17197 8506 17197 8328 17197 8329 17198 8328 17198 8330 17198 8330 17199 8328 17199 8331 17199 8330 17200 8331 17200 8782 17200 8782 17201 8331 17201 8333 17201 8782 17202 8333 17202 8332 17202 8332 17203 8333 17203 8334 17203 8332 17204 8334 17204 8778 17204 8778 17205 8334 17205 8508 17205 8778 17206 8508 17206 8779 17206 8779 17207 8508 17207 8505 17207 8779 17208 8505 17208 8780 17208 8780 17209 8505 17209 8504 17209 8780 17210 8504 17210 8335 17210 8335 17211 8504 17211 8336 17211 8335 17212 8336 17212 8781 17212 8781 17213 8336 17213 8503 17213 8338 17214 8781 17214 8337 17214 8337 17215 8781 17215 8503 17215 8339 17216 8338 17216 8337 17216 8337 17217 8502 17217 8339 17217 8339 17218 8502 17218 8783 17218 8783 17219 8502 17219 8341 17219 8783 17220 8341 17220 8340 17220 8340 17221 8341 17221 8342 17221 8340 17222 8342 17222 8785 17222 8785 17223 8342 17223 8343 17223 8785 17224 8343 17224 8790 17224 8790 17225 8343 17225 8344 17225 8790 17226 8344 17226 8345 17226 8345 17227 8344 17227 8346 17227 8345 17228 8346 17228 8789 17228 8789 17229 8346 17229 8347 17229 8789 17230 8347 17230 8791 17230 8791 17231 8347 17231 8348 17231 8791 17232 8348 17232 8792 17232 8792 17233 8348 17233 8349 17233 8792 17234 8349 17234 8786 17234 8786 17235 8349 17235 8501 17235 8786 17236 8501 17236 8787 17236 8787 17237 8501 17237 8350 17237 8787 17238 8350 17238 8351 17238 8351 17239 8350 17239 8500 17239 8351 17240 8500 17240 8793 17240 8793 17241 8500 17241 8352 17241 8793 17242 8352 17242 8354 17242 8354 17243 8352 17243 8355 17243 8353 17244 8354 17244 8355 17244 8353 17245 8355 17245 8356 17245 8496 17246 8794 17246 8353 17246 8356 17247 8496 17247 8353 17247 8794 17248 8496 17248 8357 17248 8357 17249 8496 17249 8358 17249 8357 17250 8358 17250 8795 17250 8795 17251 8358 17251 8499 17251 8795 17252 8499 17252 8796 17252 8796 17253 8499 17253 8359 17253 8796 17254 8359 17254 8800 17254 8800 17255 8359 17255 8498 17255 8800 17256 8498 17256 8799 17256 8799 17257 8498 17257 8360 17257 8799 17258 8360 17258 8361 17258 8361 17259 8360 17259 8497 17259 8361 17260 8497 17260 8362 17260 8362 17261 8497 17261 8364 17261 8362 17262 8364 17262 8363 17262 8363 17263 8364 17263 8365 17263 8363 17264 8365 17264 8797 17264 8797 17265 8365 17265 8495 17265 8797 17266 8495 17266 8798 17266 8798 17267 8495 17267 8367 17267 8798 17268 8367 17268 8366 17268 8366 17269 8367 17269 8368 17269 8366 17270 8368 17270 8801 17270 8801 17271 8368 17271 8369 17271 8801 17272 8369 17272 8373 17272 8373 17273 8369 17273 8374 17273 8370 17274 8373 17274 8371 17274 8371 17275 8373 17275 8374 17275 8371 17276 8372 17276 8370 17276 8372 17277 8371 17277 8374 17277 8370 17278 8375 17278 8802 17278 8375 17279 8370 17279 8372 17279 8375 17280 8376 17280 8802 17280 8376 17281 8375 17281 8372 17281 8802 17282 8376 17282 8803 17282 8803 17283 8376 17283 8377 17283 8803 17284 8377 17284 8804 17284 8804 17285 8377 17285 8494 17285 8804 17286 8494 17286 8378 17286 8378 17287 8494 17287 8379 17287 8378 17288 8379 17288 8847 17288 8847 17289 8379 17289 8492 17289 8847 17290 8492 17290 8380 17290 8380 17291 8492 17291 8382 17291 8380 17292 8382 17292 8381 17292 8381 17293 8382 17293 8493 17293 8381 17294 8493 17294 8805 17294 8805 17295 8493 17295 8383 17295 8805 17296 8383 17296 8384 17296 8384 17297 8383 17297 8385 17297 8384 17298 8385 17298 8386 17298 8386 17299 8385 17299 8387 17299 8386 17300 8387 17300 8807 17300 8807 17301 8387 17301 8491 17301 8807 17302 8491 17302 8806 17302 8806 17303 8491 17303 8490 17303 8806 17304 8490 17304 8388 17304 8388 17305 8490 17305 8389 17305 8388 17306 8389 17306 8390 17306 8390 17307 8389 17307 8488 17307 8489 17308 8390 17308 8488 17308 8489 17309 8391 17309 8392 17309 8489 17310 8392 17310 8390 17310 8392 17311 8391 17311 8485 17311 8485 17312 8808 17312 8392 17312 8808 17313 8485 17313 8394 17313 8394 17314 8485 17314 8393 17314 8394 17315 8393 17315 8395 17315 8395 17316 8393 17316 8487 17316 8395 17317 8487 17317 8809 17317 8809 17318 8487 17318 8483 17318 8809 17319 8483 17319 8850 17319 8850 17320 8483 17320 8396 17320 8850 17321 8396 17321 8810 17321 8810 17322 8396 17322 8397 17322 8810 17323 8397 17323 8811 17323 8811 17324 8397 17324 8486 17324 8811 17325 8486 17325 8812 17325 8812 17326 8486 17326 8398 17326 8812 17327 8398 17327 8813 17327 8813 17328 8398 17328 8399 17328 8813 17329 8399 17329 8814 17329 8814 17330 8399 17330 8607 17330 8814 17331 8607 17331 8852 17331 8852 17332 8607 17332 8400 17332 8852 17333 8400 17333 8815 17333 8815 17334 8400 17334 8608 17334 8815 17335 8608 17335 8401 17335 8401 17336 8608 17336 8482 17336 8401 17337 8482 17337 8403 17337 8403 17338 8482 17338 8402 17338 8404 17339 8403 17339 8402 17339 8404 17340 8402 17340 8405 17340 8404 17341 8405 17341 8479 17341 8479 17342 8406 17342 8404 17342 8406 17343 8479 17343 8407 17343 8407 17344 8479 17344 8408 17344 8407 17345 8408 17345 8409 17345 8409 17346 8408 17346 8411 17346 8409 17347 8411 17347 8410 17347 8410 17348 8411 17348 8478 17348 8410 17349 8478 17349 8853 17349 8853 17350 8478 17350 8477 17350 8853 17351 8477 17351 8412 17351 8412 17352 8477 17352 8481 17352 8412 17353 8481 17353 8816 17353 8816 17354 8481 17354 8413 17354 8816 17355 8413 17355 8817 17355 8817 17356 8413 17356 8480 17356 8817 17357 8480 17357 8818 17357 8818 17358 8480 17358 8414 17358 8818 17359 8414 17359 8821 17359 8821 17360 8414 17360 8610 17360 8821 17361 8610 17361 8819 17361 8819 17362 8610 17362 8416 17362 8819 17363 8416 17363 8415 17363 8415 17364 8416 17364 8476 17364 8415 17365 8476 17365 8822 17365 8822 17366 8476 17366 8475 17366 8822 17367 8475 17367 8823 17367 8823 17368 8475 17368 8474 17368 8824 17369 8823 17369 8474 17369 8474 17370 8417 17370 8824 17370 8824 17371 8473 17371 8825 17371 8473 17372 8824 17372 8417 17372 8825 17373 8473 17373 8418 17373 8418 17374 8473 17374 8419 17374 8418 17375 8419 17375 8841 17375 8841 17376 8419 17376 8472 17376 8841 17377 8472 17377 8826 17377 8826 17378 8472 17378 8470 17378 8826 17379 8470 17379 8858 17379 8858 17380 8470 17380 8420 17380 8858 17381 8420 17381 8421 17381 8421 17382 8420 17382 8422 17382 8421 17383 8422 17383 8827 17383 8827 17384 8422 17384 8423 17384 8827 17385 8423 17385 8828 17385 8828 17386 8423 17386 8424 17386 8828 17387 8424 17387 8425 17387 8425 17388 8424 17388 8426 17388 8425 17389 8426 17389 8857 17389 8857 17390 8426 17390 8469 17390 8857 17391 8469 17391 8427 17391 8427 17392 8469 17392 8468 17392 8427 17393 8468 17393 8428 17393 8428 17394 8468 17394 8612 17394 8428 17395 8612 17395 8429 17395 8429 17396 8612 17396 8430 17396 8429 17397 8430 17397 8829 17397 8829 17398 8430 17398 8467 17398 8432 17399 8829 17399 8467 17399 8467 17400 8431 17400 8432 17400 8432 17401 8433 17401 8434 17401 8433 17402 8432 17402 8431 17402 8434 17403 8433 17403 8435 17403 8435 17404 8433 17404 8436 17404 8435 17405 8436 17405 8437 17405 8437 17406 8436 17406 8465 17406 8437 17407 8465 17407 8438 17407 8438 17408 8465 17408 8464 17408 8438 17409 8464 17409 8860 17409 8860 17410 8464 17410 8463 17410 8860 17411 8463 17411 8439 17411 8439 17412 8463 17412 8466 17412 8439 17413 8466 17413 8830 17413 8830 17414 8466 17414 8440 17414 8830 17415 8440 17415 8441 17415 8441 17416 8440 17416 8462 17416 8441 17417 8462 17417 8443 17417 8443 17418 8462 17418 8442 17418 8443 17419 8442 17419 8831 17419 8831 17420 8442 17420 8614 17420 8831 17421 8614 17421 8832 17421 8832 17422 8614 17422 8615 17422 8832 17423 8615 17423 8444 17423 8444 17424 8615 17424 8616 17424 8444 17425 8616 17425 8445 17425 8445 17426 8616 17426 8461 17426 8445 17427 8461 17427 8446 17427 8446 17428 8461 17428 8447 17428 8446 17429 8448 17429 8449 17429 8448 17430 8446 17430 8447 17430 8460 17431 8449 17431 8448 17431 8460 17432 8450 17432 8449 17432 8450 17433 8460 17433 8451 17433 8451 17434 8460 17434 8452 17434 8451 17435 8452 17435 8843 17435 8843 17436 8452 17436 8453 17436 8843 17437 8453 17437 8454 17437 8454 17438 8453 17438 8458 17438 8454 17439 8458 17439 8684 17439 8684 17440 8458 17440 8457 17440 8684 17441 8457 17441 8089 17441 8089 17442 8457 17442 8456 17442 8093 17443 8095 17443 8455 17443 8093 17444 8455 17444 8456 17444 8093 17445 8456 17445 8457 17445 8093 17446 8457 17446 8092 17446 8092 17447 8457 17447 8458 17447 8092 17448 8458 17448 8098 17448 8098 17449 8458 17449 8100 17449 8100 17450 8458 17450 8453 17450 8100 17451 8453 17451 8459 17451 8459 17452 8453 17452 8460 17452 8459 17453 8460 17453 8448 17453 8453 17454 8452 17454 8460 17454 8448 17455 8447 17455 9468 17455 8461 17456 8616 17456 8447 17456 8447 17457 8616 17457 9468 17457 8615 17458 8629 17458 8616 17458 8616 17459 8629 17459 8633 17459 8614 17460 8627 17460 8615 17460 8615 17461 8627 17461 8632 17461 8615 17462 8632 17462 8629 17462 8442 17463 8462 17463 8614 17463 8614 17464 8462 17464 8463 17464 8614 17465 8463 17465 8628 17465 8628 17466 8463 17466 8621 17466 8621 17467 8463 17467 8624 17467 8624 17468 8463 17468 8464 17468 8624 17469 8464 17469 8683 17469 8683 17470 8464 17470 8682 17470 8682 17471 8464 17471 8465 17471 8682 17472 8465 17472 8679 17472 8679 17473 8465 17473 8433 17473 8679 17474 8433 17474 8431 17474 8462 17475 8440 17475 8463 17475 8463 17476 8440 17476 8466 17476 8465 17477 8436 17477 8433 17477 8431 17478 8467 17478 9534 17478 8430 17479 8612 17479 8467 17479 8467 17480 8612 17480 9534 17480 8468 17481 8869 17481 8612 17481 8612 17482 8869 17482 8872 17482 8469 17483 8864 17483 8468 17483 8468 17484 8864 17484 8870 17484 8426 17485 8424 17485 8469 17485 8469 17486 8424 17486 8420 17486 8469 17487 8420 17487 8868 17487 8868 17488 8420 17488 8922 17488 8922 17489 8420 17489 8923 17489 8923 17490 8420 17490 8925 17490 8925 17491 8420 17491 8470 17491 8925 17492 8470 17492 8917 17492 8917 17493 8470 17493 8918 17493 8918 17494 8470 17494 8472 17494 8918 17495 8472 17495 8471 17495 8471 17496 8472 17496 8473 17496 8471 17497 8473 17497 8417 17497 8424 17498 8423 17498 8420 17498 8420 17499 8423 17499 8422 17499 8472 17500 8419 17500 8473 17500 8417 17501 8474 17501 9603 17501 8475 17502 8476 17502 8474 17502 8474 17503 8476 17503 9603 17503 8416 17504 8931 17504 8476 17504 8476 17505 8931 17505 8935 17505 8610 17506 8926 17506 8416 17506 8416 17507 8926 17507 8930 17507 8414 17508 8480 17508 8610 17508 8610 17509 8480 17509 8477 17509 8610 17510 8477 17510 8928 17510 8928 17511 8477 17511 8987 17511 8987 17512 8477 17512 8991 17512 8991 17513 8477 17513 8478 17513 8991 17514 8478 17514 8986 17514 8986 17515 8478 17515 8985 17515 8985 17516 8478 17516 8411 17516 8985 17517 8411 17517 8980 17517 8980 17518 8411 17518 8479 17518 8980 17519 8479 17519 8405 17519 8480 17520 8413 17520 8477 17520 8477 17521 8413 17521 8481 17521 8411 17522 8408 17522 8479 17522 8405 17523 8402 17523 9669 17523 8482 17524 8608 17524 8402 17524 8402 17525 8608 17525 9669 17525 8400 17526 8999 17526 8608 17526 8608 17527 8999 17527 9003 17527 8607 17528 8995 17528 8400 17528 8400 17529 8995 17529 8998 17529 8400 17530 8998 17530 8999 17530 8399 17531 8398 17531 8607 17531 8607 17532 8398 17532 8396 17532 8607 17533 8396 17533 8994 17533 8994 17534 8396 17534 9054 17534 9054 17535 8396 17535 9056 17535 9056 17536 8396 17536 8483 17536 9056 17537 8483 17537 9051 17537 9051 17538 8483 17538 8484 17538 8484 17539 8483 17539 8487 17539 8484 17540 8487 17540 9050 17540 9050 17541 8487 17541 8485 17541 9050 17542 8485 17542 8391 17542 8398 17543 8486 17543 8396 17543 8396 17544 8486 17544 8397 17544 8487 17545 8393 17545 8485 17545 8391 17546 8488 17546 9378 17546 8488 17547 8391 17547 8489 17547 8389 17548 8490 17548 8488 17548 8488 17549 8490 17549 9378 17549 9378 17550 8490 17550 9382 17550 9382 17551 8490 17551 8491 17551 9382 17552 8491 17552 9387 17552 9387 17553 8491 17553 8387 17553 9387 17554 8387 17554 9386 17554 9386 17555 8387 17555 8492 17555 9386 17556 8492 17556 9320 17556 9320 17557 8492 17557 9325 17557 9325 17558 8492 17558 8379 17558 9325 17559 8379 17559 9331 17559 9331 17560 8379 17560 9330 17560 9330 17561 8379 17561 8494 17561 9330 17562 8494 17562 9332 17562 9332 17563 8494 17563 8376 17563 9332 17564 8376 17564 8372 17564 8385 17565 8383 17565 8387 17565 8387 17566 8383 17566 8492 17566 8383 17567 8493 17567 8492 17567 8492 17568 8493 17568 8382 17568 8494 17569 8377 17569 8376 17569 8372 17570 8374 17570 9305 17570 8369 17571 8368 17571 8374 17571 8374 17572 8368 17572 9305 17572 9305 17573 8368 17573 9312 17573 9312 17574 8368 17574 8367 17574 9312 17575 8367 17575 9310 17575 9310 17576 8367 17576 9315 17576 9315 17577 8367 17577 8495 17577 9315 17578 8495 17578 9318 17578 9318 17579 8495 17579 8498 17579 9318 17580 8498 17580 9257 17580 9257 17581 8498 17581 9258 17581 9258 17582 8498 17582 9262 17582 9262 17583 8498 17583 8359 17583 9262 17584 8359 17584 9265 17584 9265 17585 8359 17585 9266 17585 9266 17586 8359 17586 8499 17586 9266 17587 8499 17587 9268 17587 9268 17588 8499 17588 8496 17588 9268 17589 8496 17589 8356 17589 8365 17590 8364 17590 8495 17590 8495 17591 8364 17591 8498 17591 8364 17592 8497 17592 8498 17592 8498 17593 8497 17593 8360 17593 8499 17594 8358 17594 8496 17594 8356 17595 8355 17595 9246 17595 8352 17596 8500 17596 8355 17596 8355 17597 8500 17597 9246 17597 9246 17598 8500 17598 9253 17598 9253 17599 8500 17599 8350 17599 9253 17600 8350 17600 9252 17600 9252 17601 8350 17601 8501 17601 9252 17602 8501 17602 9255 17602 9255 17603 8501 17603 8344 17603 9255 17604 8344 17604 9193 17604 9193 17605 8344 17605 9194 17605 9194 17606 8344 17606 8343 17606 9194 17607 8343 17607 9197 17607 9197 17608 8343 17608 9198 17608 9198 17609 8343 17609 8342 17609 9198 17610 8342 17610 9201 17610 9201 17611 8342 17611 8502 17611 9201 17612 8502 17612 8337 17612 8349 17613 8348 17613 8501 17613 8501 17614 8348 17614 8344 17614 8348 17615 8347 17615 8344 17615 8344 17616 8347 17616 8346 17616 8342 17617 8341 17617 8502 17617 8337 17618 8503 17618 9181 17618 8336 17619 8504 17619 8503 17619 8503 17620 8504 17620 9181 17620 9181 17621 8504 17621 9185 17621 9185 17622 8504 17622 8505 17622 9185 17623 8505 17623 9186 17623 9186 17624 8505 17624 8508 17624 9186 17625 8508 17625 9190 17625 9190 17626 8508 17626 8506 17626 9190 17627 8506 17627 9132 17627 9132 17628 8506 17628 9130 17628 9130 17629 8506 17629 8507 17629 9130 17630 8507 17630 9136 17630 9136 17631 8507 17631 9135 17631 9135 17632 8507 17632 8327 17632 9135 17633 8327 17633 9141 17633 9141 17634 8327 17634 8324 17634 9141 17635 8324 17635 8321 17635 8334 17636 8333 17636 8508 17636 8508 17637 8333 17637 8506 17637 8333 17638 8331 17638 8506 17638 8506 17639 8331 17639 8328 17639 8327 17640 8326 17640 8324 17640 8321 17641 8322 17641 9116 17641 8321 17642 9116 17642 9117 17642 8319 17643 8317 17643 8322 17643 8322 17644 8317 17644 9116 17644 9116 17645 8317 17645 9121 17645 9121 17646 8317 17646 8509 17646 9121 17647 8509 17647 9124 17647 9124 17648 8509 17648 8510 17648 9124 17649 8510 17649 9127 17649 9127 17650 8510 17650 9126 17650 9126 17651 8510 17651 8511 17651 9126 17652 8511 17652 9061 17652 9061 17653 8511 17653 9060 17653 9060 17654 8511 17654 9059 17654 9059 17655 8511 17655 8512 17655 9059 17656 8512 17656 9069 17656 9069 17657 8512 17657 9070 17657 9070 17658 8512 17658 8514 17658 9070 17659 8514 17659 9075 17659 9075 17660 8514 17660 8305 17660 9075 17661 8305 17661 8303 17661 8314 17662 8313 17662 8510 17662 8510 17663 8313 17663 8511 17663 8313 17664 8513 17664 8511 17664 8511 17665 8513 17665 8310 17665 8514 17666 8307 17666 8305 17666 8303 17667 8301 17667 8515 17667 8303 17668 8515 17668 9405 17668 9405 17669 8515 17669 8516 17669 9405 17670 8516 17670 9407 17670 9407 17671 8516 17671 9410 17671 9410 17672 8516 17672 8517 17672 9410 17673 8517 17673 9413 17673 9413 17674 8517 17674 8522 17674 8518 17675 8519 17675 8301 17675 8301 17676 8519 17676 8515 17676 8515 17677 8519 17677 8285 17677 8285 17678 8519 17678 8520 17678 8285 17679 8520 17679 8286 17679 8286 17680 8520 17680 6498 17680 8286 17681 6498 17681 6501 17681 8520 17682 8521 17682 6498 17682 6498 17683 8521 17683 8292 17683 8292 17684 8521 17684 8297 17684 8292 17685 8297 17685 8296 17685 8292 17686 8296 17686 8290 17686 6501 17687 8288 17687 8286 17687 9413 17688 8522 17688 8523 17688 9413 17689 8523 17689 9416 17689 8606 17690 9420 17690 8523 17690 8523 17691 9420 17691 9416 17691 8605 17692 9419 17692 8606 17692 8606 17693 9419 17693 9420 17693 8281 17694 8266 17694 8605 17694 8605 17695 8266 17695 8262 17695 8605 17696 8262 17696 8261 17696 8266 17697 8281 17697 8268 17697 8268 17698 8281 17698 8524 17698 8268 17699 8524 17699 8272 17699 8272 17700 8524 17700 8278 17700 8278 17701 8524 17701 8279 17701 8268 17702 8272 17702 8269 17702 8269 17703 8272 17703 8275 17703 8269 17704 8275 17704 8525 17704 8525 17705 8275 17705 8526 17705 8526 17706 8275 17706 8276 17706 8266 17707 8265 17707 8262 17707 8261 17708 8527 17708 9084 17708 8261 17709 9084 17709 9087 17709 8259 17710 8528 17710 8527 17710 8527 17711 8528 17711 9084 17711 9084 17712 8528 17712 9089 17712 9089 17713 8528 17713 8529 17713 9089 17714 8529 17714 9091 17714 9091 17715 8529 17715 9096 17715 9096 17716 8529 17716 8530 17716 9096 17717 8530 17717 9092 17717 9092 17718 8530 17718 9099 17718 9099 17719 8530 17719 8531 17719 9099 17720 8531 17720 9101 17720 9101 17721 8531 17721 9100 17721 9100 17722 8531 17722 8532 17722 9100 17723 8532 17723 9104 17723 9104 17724 8532 17724 8251 17724 9104 17725 8251 17725 9107 17725 9107 17726 8251 17726 8248 17726 9107 17727 8248 17727 8533 17727 8256 17728 8254 17728 8530 17728 8530 17729 8254 17729 8534 17729 8530 17730 8534 17730 8531 17730 8531 17731 8534 17731 8253 17731 8251 17732 8535 17732 8248 17732 8533 17733 8247 17733 9150 17733 8533 17734 9150 17734 9151 17734 8536 17735 8537 17735 8247 17735 8247 17736 8537 17736 9150 17736 9150 17737 8537 17737 9155 17737 9155 17738 8537 17738 8245 17738 9155 17739 8245 17739 9153 17739 9153 17740 8245 17740 9157 17740 9157 17741 8245 17741 8244 17741 9157 17742 8244 17742 9158 17742 9158 17743 8244 17743 9162 17743 9162 17744 8244 17744 8239 17744 9162 17745 8239 17745 9164 17745 9164 17746 8239 17746 9163 17746 9163 17747 8239 17747 8236 17747 9163 17748 8236 17748 9166 17748 9166 17749 8236 17749 8538 17749 9166 17750 8538 17750 9171 17750 9171 17751 8538 17751 8234 17751 9171 17752 8234 17752 8229 17752 8539 17753 8242 17753 8244 17753 8244 17754 8242 17754 8540 17754 8244 17755 8540 17755 8239 17755 8239 17756 8540 17756 8241 17756 8538 17757 8541 17757 8234 17757 8229 17758 8230 17758 9214 17758 8229 17759 9214 17759 9213 17759 8227 17760 8225 17760 8230 17760 8230 17761 8225 17761 9214 17761 9214 17762 8225 17762 9216 17762 9216 17763 8225 17763 8542 17763 9216 17764 8542 17764 9220 17764 9220 17765 8542 17765 8543 17765 9220 17766 8543 17766 9225 17766 9225 17767 8543 17767 9219 17767 9219 17768 8543 17768 9230 17768 9230 17769 8543 17769 8544 17769 9230 17770 8544 17770 9229 17770 9229 17771 8544 17771 9228 17771 9228 17772 8544 17772 8545 17772 9228 17773 8545 17773 9235 17773 9235 17774 8545 17774 9232 17774 9232 17775 8545 17775 8214 17775 9232 17776 8214 17776 9237 17776 9237 17777 8214 17777 8212 17777 9237 17778 8212 17778 8209 17778 8222 17779 8220 17779 8543 17779 8543 17780 8220 17780 8219 17780 8543 17781 8219 17781 8544 17781 8544 17782 8219 17782 8218 17782 8214 17783 8546 17783 8212 17783 8209 17784 8208 17784 9278 17784 8209 17785 9278 17785 9280 17785 8547 17786 8206 17786 8208 17786 8208 17787 8206 17787 9278 17787 9278 17788 8206 17788 9285 17788 9285 17789 8206 17789 8548 17789 9285 17790 8548 17790 9283 17790 9283 17791 8548 17791 8550 17791 9283 17792 8550 17792 8549 17792 8549 17793 8550 17793 9292 17793 9292 17794 8550 17794 8551 17794 9292 17795 8551 17795 9290 17795 9290 17796 8551 17796 8552 17796 9290 17797 8552 17797 9297 17797 9297 17798 8552 17798 9294 17798 9294 17799 8552 17799 8195 17799 9294 17800 8195 17800 8553 17800 8553 17801 8195 17801 8554 17801 8553 17802 8554 17802 8192 17802 8203 17803 8201 17803 8550 17803 8550 17804 8201 17804 8199 17804 8550 17805 8199 17805 8551 17805 8551 17806 8199 17806 8197 17806 8195 17807 8194 17807 8554 17807 8192 17808 8555 17808 9343 17808 8192 17809 9343 17809 9344 17809 8191 17810 8556 17810 8555 17810 8555 17811 8556 17811 9343 17811 9343 17812 8556 17812 9345 17812 9345 17813 8556 17813 8189 17813 9345 17814 8189 17814 9346 17814 9346 17815 8189 17815 9354 17815 9354 17816 8189 17816 8557 17816 9354 17817 8557 17817 9353 17817 9353 17818 8557 17818 9352 17818 9352 17819 8557 17819 9359 17819 9359 17820 8557 17820 8558 17820 9359 17821 8558 17821 9360 17821 9360 17822 8558 17822 8559 17822 9360 17823 8559 17823 9364 17823 9364 17824 8559 17824 9362 17824 9362 17825 8559 17825 8560 17825 9362 17826 8560 17826 8561 17826 8561 17827 8560 17827 8563 17827 8561 17828 8563 17828 8180 17828 8187 17829 8562 17829 8557 17829 8557 17830 8562 17830 8185 17830 8557 17831 8185 17831 8558 17831 8558 17832 8185 17832 8184 17832 8560 17833 8181 17833 8563 17833 8180 17834 8178 17834 9779 17834 8177 17835 8600 17835 8178 17835 8178 17836 8600 17836 9779 17836 8175 17837 9031 17837 8600 17837 8600 17838 9031 17838 9035 17838 8600 17839 9035 17839 9032 17839 8175 17840 8565 17840 9031 17840 9031 17841 8565 17841 9030 17841 8173 17842 8564 17842 8565 17842 8565 17843 8564 17843 8170 17843 8565 17844 8170 17844 8609 17844 8609 17845 8170 17845 8169 17845 8167 17846 9019 17846 8609 17846 8566 17847 9016 17847 8167 17847 8167 17848 9016 17848 9015 17848 8166 17849 8567 17849 8566 17849 8566 17850 8567 17850 9010 17850 8566 17851 9010 17851 9016 17851 8567 17852 8164 17852 9010 17852 9010 17853 8164 17853 9012 17853 9012 17854 8164 17854 9692 17854 9012 17855 9692 17855 9691 17855 8164 17856 8163 17856 9708 17856 8568 17857 8601 17857 8163 17857 8163 17858 8601 17858 9708 17858 8569 17859 8966 17859 8601 17859 8601 17860 8966 17860 8969 17860 8601 17861 8969 17861 8972 17861 8569 17862 8611 17862 8966 17862 8966 17863 8611 17863 8968 17863 8161 17864 8159 17864 8611 17864 8611 17865 8159 17865 8570 17865 8611 17866 8570 17866 8573 17866 8573 17867 8570 17867 8571 17867 8572 17868 8956 17868 8573 17868 8573 17869 8956 17869 8954 17869 8157 17870 8950 17870 8572 17870 8572 17871 8950 17871 8956 17871 8574 17872 8575 17872 8157 17872 8157 17873 8575 17873 8948 17873 8157 17874 8948 17874 8950 17874 8575 17875 8154 17875 8948 17875 8948 17876 8154 17876 8946 17876 8946 17877 8154 17877 9624 17877 8946 17878 9624 17878 9623 17878 8154 17879 8153 17879 9636 17879 8152 17880 8603 17880 8153 17880 8153 17881 8603 17881 9636 17881 8150 17882 8901 17882 8603 17882 8603 17883 8901 17883 8576 17883 8603 17884 8576 17884 8902 17884 8150 17885 8613 17885 8901 17885 8901 17886 8613 17886 8900 17886 8577 17887 8148 17887 8613 17887 8613 17888 8148 17888 8145 17888 8613 17889 8145 17889 8143 17889 8143 17890 8145 17890 8578 17890 8579 17891 8891 17891 8143 17891 8143 17892 8891 17892 8890 17892 8142 17893 8887 17893 8579 17893 8579 17894 8887 17894 8891 17894 8141 17895 8136 17895 8142 17895 8142 17896 8136 17896 8883 17896 8142 17897 8883 17897 8887 17897 8136 17898 8138 17898 8883 17898 8883 17899 8138 17899 8884 17899 8884 17900 8138 17900 9552 17900 8884 17901 9552 17901 9546 17901 8138 17902 8135 17902 9569 17902 8134 17903 8604 17903 8135 17903 8135 17904 8604 17904 9569 17904 8580 17905 8661 17905 8604 17905 8604 17906 8661 17906 8667 17906 8604 17907 8667 17907 8668 17907 8580 17908 8581 17908 8661 17908 8661 17909 8581 17909 8663 17909 8130 17910 8128 17910 8581 17910 8581 17911 8128 17911 8582 17911 8581 17912 8582 17912 8126 17912 8126 17913 8582 17913 8583 17913 8617 17914 8618 17914 8126 17914 8126 17915 8618 17915 8651 17915 8586 17916 8648 17916 8617 17916 8617 17917 8648 17917 8618 17917 8584 17918 8585 17918 8586 17918 8586 17919 8585 17919 8646 17919 8586 17920 8646 17920 8648 17920 8585 17921 8123 17921 8646 17921 8646 17922 8123 17922 8644 17922 8644 17923 8123 17923 9490 17923 8123 17924 8121 17924 9502 17924 8120 17925 8587 17925 8121 17925 8121 17926 8587 17926 9502 17926 8588 17927 8107 17927 8587 17927 8587 17928 8107 17928 8589 17928 8587 17929 8589 17929 9507 17929 9507 17930 8589 17930 8105 17930 9507 17931 8105 17931 8590 17931 9507 17932 8590 17932 8102 17932 8588 17933 8592 17933 8107 17933 8107 17934 8592 17934 8108 17934 8108 17935 8592 17935 8113 17935 8108 17936 8113 17936 8591 17936 8591 17937 8113 17937 8115 17937 8117 17938 8593 17938 8592 17938 8592 17939 8593 17939 8113 17939 8591 17940 3031 17940 8108 17940 8108 17941 3031 17941 8110 17941 8102 17942 8594 17942 9520 17942 9520 17943 8594 17943 8595 17943 9520 17944 8595 17944 9521 17944 9521 17945 8595 17945 8459 17945 9521 17946 8459 17946 9460 17946 9460 17947 8459 17947 8448 17947 9460 17948 8448 17948 9468 17948 8097 17949 3168 17949 8098 17949 8098 17950 3168 17950 8092 17950 9992 17951 9995 17951 9994 17951 9990 17952 9996 17952 9992 17952 9992 17953 9996 17953 9995 17953 9996 17954 9990 17954 10004 17954 10004 17955 9990 17955 8321 17955 8321 17956 9990 17956 9138 17956 8321 17957 9138 17957 9141 17957 9138 17958 9990 17958 10049 17958 9138 17959 10049 17959 10046 17959 9138 17960 10046 17960 9143 17960 9143 17961 10046 17961 10047 17961 9143 17962 10047 17962 10044 17962 9143 17963 10044 17963 9146 17963 9146 17964 10044 17964 10040 17964 9146 17965 10040 17965 10038 17965 9146 17966 10038 17966 10035 17966 10035 17967 10036 17967 9146 17967 9146 17968 10036 17968 9151 17968 9151 17969 10036 17969 10032 17969 9151 17970 10032 17970 8533 17970 8533 17971 10032 17971 10022 17971 10022 17972 10032 17972 10029 17972 10022 17973 10029 17973 10025 17973 10025 17974 10029 17974 10023 17974 9107 17975 10022 17975 10020 17975 9107 17976 10020 17976 8596 17976 8596 17977 10020 17977 10019 17977 8596 17978 10019 17978 9109 17978 9109 17979 10019 17979 10016 17979 10016 17980 10013 17980 9109 17980 9109 17981 10013 17981 9114 17981 9114 17982 10013 17982 10009 17982 9114 17983 10009 17983 9112 17983 9112 17984 10009 17984 10006 17984 10006 17985 10003 17985 9112 17985 9112 17986 10003 17986 9117 17986 9117 17987 10003 17987 10001 17987 9117 17988 10001 17988 10004 17988 9117 17989 10004 17989 8321 17989 9920 17990 9926 17990 9923 17990 9984 17991 9929 17991 9920 17991 9920 17992 9929 17992 9928 17992 9920 17993 9928 17993 9926 17993 9929 17994 9984 17994 8337 17994 8337 17995 9984 17995 9201 17995 9201 17996 9984 17996 9987 17996 9201 17997 9987 17997 9200 17997 9200 17998 9987 17998 9983 17998 9200 17999 9983 17999 9205 17999 9205 18000 9983 18000 9981 18000 9205 18001 9981 18001 9979 18001 9205 18002 9979 18002 9978 18002 9205 18003 9978 18003 9208 18003 9208 18004 9978 18004 9977 18004 9208 18005 9977 18005 9976 18005 9208 18006 9976 18006 9209 18006 9976 18007 9970 18007 9209 18007 9209 18008 9970 18008 9213 18008 9213 18009 9970 18009 9968 18009 9213 18010 9968 18010 9967 18010 9213 18011 9967 18011 8229 18011 8229 18012 9967 18012 9951 18012 9951 18013 9967 18013 9963 18013 9951 18014 9963 18014 9953 18014 9953 18015 9963 18015 9956 18015 9963 18016 9957 18016 9956 18016 9956 18017 9957 18017 9962 18017 9170 18018 9951 18018 9948 18018 9170 18019 9948 18019 9944 18019 9170 18020 9944 18020 9174 18020 9174 18021 9944 18021 9945 18021 9174 18022 9945 18022 9942 18022 9174 18023 9942 18023 9175 18023 9175 18024 9942 18024 9940 18024 9175 18025 9940 18025 9177 18025 9177 18026 9940 18026 9937 18026 9937 18027 9935 18027 9177 18027 9177 18028 9935 18028 9178 18028 9178 18029 9935 18029 9931 18029 9178 18030 9931 18030 9932 18030 9178 18031 9932 18031 9181 18031 9181 18032 9932 18032 9929 18032 9181 18033 9929 18033 8337 18033 9917 18034 9867 18034 9857 18034 9857 18035 9867 18035 9862 18035 9857 18036 9862 18036 9859 18036 9859 18037 9862 18037 9864 18037 9867 18038 9917 18038 8356 18038 8356 18039 9917 18039 9268 18039 9268 18040 9917 18040 9915 18040 9268 18041 9915 18041 9267 18041 9267 18042 9915 18042 9919 18042 9267 18043 9919 18043 9273 18043 9273 18044 9919 18044 9912 18044 9912 18045 9911 18045 9273 18045 9273 18046 9911 18046 9275 18046 9275 18047 9911 18047 9909 18047 9275 18048 9909 18048 9905 18048 9275 18049 9905 18049 9277 18049 9277 18050 9905 18050 9907 18050 9907 18051 9902 18051 9277 18051 9277 18052 9902 18052 9280 18052 9280 18053 9902 18053 9900 18053 9280 18054 9900 18054 9899 18054 9280 18055 9899 18055 8209 18055 8209 18056 9899 18056 9887 18056 9887 18057 9899 18057 9897 18057 9887 18058 9897 18058 9892 18058 9892 18059 9897 18059 9891 18059 9891 18060 9897 18060 9895 18060 9237 18061 9887 18061 9881 18061 9237 18062 9881 18062 9236 18062 9236 18063 9881 18063 9885 18063 9236 18064 9885 18064 9240 18064 9240 18065 9885 18065 9879 18065 9879 18066 9878 18066 9240 18066 9240 18067 9878 18067 9244 18067 9244 18068 9878 18068 9874 18068 9244 18069 9874 18069 9245 18069 9245 18070 9874 18070 9871 18070 9871 18071 9869 18071 9245 18071 9245 18072 9869 18072 9249 18072 9249 18073 9869 18073 9246 18073 9246 18074 9869 18074 9867 18074 9246 18075 9867 18075 8356 18075 9793 18076 9801 18076 9797 18076 9797 18077 9801 18077 9799 18077 9801 18078 9793 18078 9804 18078 9804 18079 9793 18079 8372 18079 8372 18080 9793 18080 9332 18080 9332 18081 9793 18081 9855 18081 9332 18082 9855 18082 9334 18082 9334 18083 9855 18083 9851 18083 9334 18084 9851 18084 9339 18084 9339 18085 9851 18085 9849 18085 9339 18086 9849 18086 9848 18086 9339 18087 9848 18087 8597 18087 8597 18088 9848 18088 9844 18088 8597 18089 9844 18089 9842 18089 8597 18090 9842 18090 9340 18090 9340 18091 9842 18091 9843 18091 9843 18092 9840 18092 9340 18092 9340 18093 9840 18093 9344 18093 9344 18094 9840 18094 9836 18094 9344 18095 9836 18095 8192 18095 8192 18096 9836 18096 9823 18096 9823 18097 9836 18097 9832 18097 9823 18098 9832 18098 9826 18098 9826 18099 9832 18099 9824 18099 9832 18100 9830 18100 9824 18100 9299 18101 9823 18101 9822 18101 9299 18102 9822 18102 9819 18102 9299 18103 9819 18103 8598 18103 8598 18104 9819 18104 9815 18104 9815 18105 9816 18105 8598 18105 8598 18106 9816 18106 9302 18106 9302 18107 9816 18107 9811 18107 9302 18108 9811 18108 9810 18108 9302 18109 9810 18109 8599 18109 9810 18110 9803 18110 8599 18110 8599 18111 9803 18111 9308 18111 9308 18112 9803 18112 9806 18112 9308 18113 9806 18113 9305 18113 9305 18114 9806 18114 9804 18114 9305 18115 9804 18115 8372 18115 9728 18116 9738 18116 9731 18116 9731 18117 9738 18117 9732 18117 9732 18118 9738 18118 9737 18118 9738 18119 9728 18119 9743 18119 9743 18120 9728 18120 8391 18120 8391 18121 9728 18121 9049 18121 8391 18122 9049 18122 9050 18122 9049 18123 9728 18123 9792 18123 9049 18124 9792 18124 9789 18124 9049 18125 9789 18125 9044 18125 9044 18126 9789 18126 9042 18126 9042 18127 9789 18127 9781 18127 9042 18128 9781 18128 9039 18128 9039 18129 9781 18129 9032 18129 9032 18130 9781 18130 8600 18130 9781 18131 9789 18131 9788 18131 9781 18132 9788 18132 9786 18132 9786 18133 9788 18133 9787 18133 9781 18134 9786 18134 9784 18134 9781 18135 9778 18135 8600 18135 8600 18136 9778 18136 9779 18136 8180 18137 9779 18137 9762 18137 9762 18138 9779 18138 9776 18138 9762 18139 9776 18139 9763 18139 9763 18140 9776 18140 9769 18140 9776 18141 9774 18141 9769 18141 9365 18142 9762 18142 9759 18142 9365 18143 9759 18143 9757 18143 9365 18144 9757 18144 9369 18144 9369 18145 9757 18145 9754 18145 9754 18146 9755 18146 9369 18146 9369 18147 9755 18147 9372 18147 9372 18148 9755 18148 9750 18148 9372 18149 9750 18149 9748 18149 9372 18150 9748 18150 9744 18150 9744 18151 9745 18151 9372 18151 9372 18152 9745 18152 9375 18152 9375 18153 9745 18153 9379 18153 9379 18154 9745 18154 9378 18154 9378 18155 9745 18155 9743 18155 9378 18156 9743 18156 8391 18156 9661 18157 9662 18157 9659 18157 9657 18158 9670 18158 9661 18158 9661 18159 9670 18159 9662 18159 9662 18160 9670 18160 9666 18160 9670 18161 9657 18161 9669 18161 9669 18162 9657 18162 9727 18162 9669 18163 9727 18163 8405 18163 8405 18164 9727 18164 8981 18164 8405 18165 8981 18165 8980 18165 8981 18166 9727 18166 9726 18166 8981 18167 9726 18167 9725 18167 8981 18168 9725 18168 8979 18168 8979 18169 9725 18169 8977 18169 8977 18170 9725 18170 9713 18170 8977 18171 9713 18171 8976 18171 8976 18172 9713 18172 8972 18172 8972 18173 9713 18173 8601 18173 9713 18174 9725 18174 9714 18174 9714 18175 9725 18175 9717 18175 9725 18176 9723 18176 9717 18176 9717 18177 9723 18177 9722 18177 9714 18178 9717 18178 9719 18178 9713 18179 9711 18179 8601 18179 8601 18180 9711 18180 9708 18180 8164 18181 9708 18181 9692 18181 9692 18182 9708 18182 9703 18182 9692 18183 9703 18183 9695 18183 9695 18184 9703 18184 9697 18184 9695 18185 9697 18185 9694 18185 9697 18186 9703 18186 9702 18186 9012 18187 9691 18187 9689 18187 9012 18188 9689 18188 9008 18188 9689 18189 9683 18189 9008 18189 9008 18190 9683 18190 9684 18190 9008 18191 9684 18191 9006 18191 9006 18192 9684 18192 9681 18192 9006 18193 9681 18193 9679 18193 9006 18194 9679 18194 9678 18194 9678 18195 9676 18195 9006 18195 9006 18196 9676 18196 9672 18196 9006 18197 9672 18197 8608 18197 8608 18198 9672 18198 9669 18198 9595 18199 9598 18199 9590 18199 9595 18200 9603 18200 9600 18200 9595 18201 9600 18201 9598 18201 9603 18202 9595 18202 9655 18202 9603 18203 9655 18203 8417 18203 8417 18204 9655 18204 8602 18204 8417 18205 8602 18205 8471 18205 8602 18206 9655 18206 9656 18206 8602 18207 9656 18207 9651 18207 8602 18208 9651 18208 8908 18208 8908 18209 9651 18209 8910 18209 8910 18210 9651 18210 9640 18210 8910 18211 9640 18211 8907 18211 8907 18212 9640 18212 8902 18212 8902 18213 9640 18213 8603 18213 9640 18214 9651 18214 9648 18214 9651 18215 9650 18215 9648 18215 9640 18216 9648 18216 9645 18216 9640 18217 9645 18217 9641 18217 9640 18218 9639 18218 8603 18218 8603 18219 9639 18219 9636 18219 8154 18220 9636 18220 9624 18220 9624 18221 9636 18221 9626 18221 9626 18222 9636 18222 9635 18222 9626 18223 9635 18223 9628 18223 9628 18224 9635 18224 9629 18224 8946 18225 9623 18225 9621 18225 8946 18226 9621 18226 8938 18226 9621 18227 9616 18227 8938 18227 8938 18228 9616 18228 9617 18228 8938 18229 9617 18229 8942 18229 8942 18230 9617 18230 9613 18230 8942 18231 9613 18231 9610 18231 9610 18232 9608 18232 8942 18232 8942 18233 9608 18233 8476 18233 8476 18234 9608 18234 9603 18234 9584 18235 9534 18235 9524 18235 9524 18236 9534 18236 9530 18236 9524 18237 9530 18237 9526 18237 9526 18238 9530 18238 9528 18238 9534 18239 9584 18239 8431 18239 8431 18240 9584 18240 8677 18240 8431 18241 8677 18241 8679 18241 8677 18242 9584 18242 9587 18242 8677 18243 9587 18243 9583 18243 8677 18244 9583 18244 8674 18244 8674 18245 9583 18245 8672 18245 8672 18246 9583 18246 9568 18246 8672 18247 9568 18247 8670 18247 8670 18248 9568 18248 8668 18248 8668 18249 9568 18249 8604 18249 9568 18250 9583 18250 9576 18250 9583 18251 9582 18251 9576 18251 9576 18252 9582 18252 9575 18252 9568 18253 9576 18253 9578 18253 9568 18254 9578 18254 9572 18254 9568 18255 9570 18255 8604 18255 8604 18256 9570 18256 9569 18256 8138 18257 9569 18257 9552 18257 9552 18258 9569 18258 9551 18258 9551 18259 9569 18259 9566 18259 9551 18260 9566 18260 9554 18260 9554 18261 9566 18261 9555 18261 9555 18262 9566 18262 9561 18262 8884 18263 9546 18263 9547 18263 8884 18264 9547 18264 8881 18264 9547 18265 9543 18265 8881 18265 8881 18266 9543 18266 9544 18266 8881 18267 9544 18267 8879 18267 8879 18268 9544 18268 9540 18268 8879 18269 9540 18269 9537 18269 9537 18270 9531 18270 8879 18270 8879 18271 9531 18271 9533 18271 8879 18272 9533 18272 8612 18272 8612 18273 9533 18273 9534 18273 9460 18274 9466 18274 9462 18274 9462 18275 9466 18275 9464 18275 9466 18276 9460 18276 9468 18276 9520 18277 9508 18277 9507 18277 9520 18278 9507 18278 8102 18278 9508 18279 9520 18279 9513 18279 9520 18280 9516 18280 9513 18280 9508 18281 9513 18281 9511 18281 9507 18282 9503 18282 8587 18282 8587 18283 9503 18283 9502 18283 8123 18284 9502 18284 9490 18284 9490 18285 9502 18285 9489 18285 9489 18286 9502 18286 9497 18286 9489 18287 9497 18287 9494 18287 9494 18288 9497 18288 9496 18288 8644 18289 9490 18289 9486 18289 8644 18290 9486 18290 8643 18290 9486 18291 9483 18291 8643 18291 8643 18292 9483 18292 9484 18292 8643 18293 9484 18293 8640 18293 8640 18294 9484 18294 9481 18294 8640 18295 9481 18295 9478 18295 8640 18296 9478 18296 9474 18296 9474 18297 9473 18297 8640 18297 8640 18298 9473 18298 9471 18298 8640 18299 9471 18299 8616 18299 8616 18300 9471 18300 9468 18300 9388 18301 9402 18301 9398 18301 9398 18302 9402 18302 9401 18302 9402 18303 9388 18303 9405 18303 9405 18304 9388 18304 8303 18304 8303 18305 9388 18305 9075 18305 9456 18306 9075 18306 9388 18306 9075 18307 9456 18307 9455 18307 9075 18308 9455 18308 9072 18308 9072 18309 9455 18309 9458 18309 9072 18310 9458 18310 9081 18310 9081 18311 9458 18311 9449 18311 9449 18312 9450 18312 9081 18312 9081 18313 9450 18313 9079 18313 9079 18314 9450 18314 9447 18314 9079 18315 9447 18315 9445 18315 9079 18316 9445 18316 9082 18316 9082 18317 9445 18317 9444 18317 9444 18318 9441 18318 9082 18318 9082 18319 9441 18319 9087 18319 9087 18320 9441 18320 9438 18320 9087 18321 9438 18321 9440 18321 9087 18322 9440 18322 8261 18322 8261 18323 9440 18323 9423 18323 9423 18324 9440 18324 9433 18324 9423 18325 9433 18325 9428 18325 9428 18326 9433 18326 9434 18326 8261 18327 9423 18327 8605 18327 8605 18328 9423 18328 9419 18328 9762 18329 9365 18329 8180 18329 8180 18330 9365 18330 8561 18330 9823 18331 9299 18331 8192 18331 8192 18332 9299 18332 8553 18332 9887 18333 9237 18333 8209 18333 9951 18334 9170 18334 8229 18334 8229 18335 9170 18335 9171 18335 10022 18336 9107 18336 8533 18336 8994 18337 8995 18337 8607 18337 9003 18338 9001 18338 8608 18338 8608 18339 9001 18339 9006 18339 8167 18340 9015 18340 9019 18340 9019 18341 9022 18341 8609 18341 8609 18342 9022 18342 8565 18342 9022 18343 9023 18343 8565 18343 8565 18344 9023 18344 9025 18344 8565 18345 9025 18345 9030 18345 8610 18346 8928 18346 8926 18346 8930 18347 8931 18347 8416 18347 8935 18348 8934 18348 8476 18348 8476 18349 8934 18349 8937 18349 8476 18350 8937 18350 8942 18350 8954 18351 8958 18351 8573 18351 8573 18352 8958 18352 8611 18352 8958 18353 8963 18353 8611 18353 8963 18354 8964 18354 8611 18354 8611 18355 8964 18355 8968 18355 8469 18356 8868 18356 8864 18356 8870 18357 8869 18357 8468 18357 8872 18358 8876 18358 8612 18358 8612 18359 8876 18359 8879 18359 8890 18360 8893 18360 8143 18360 8143 18361 8893 18361 8613 18361 8893 18362 8896 18362 8613 18362 8613 18363 8896 18363 8897 18363 8613 18364 8897 18364 8900 18364 8614 18365 8628 18365 8627 18365 8633 18366 8635 18366 8616 18366 8616 18367 8635 18367 8638 18367 8616 18368 8638 18368 8640 18368 8126 18369 8651 18369 8581 18369 8651 18370 8656 18370 8581 18370 8656 18371 8655 18371 8581 18371 8581 18372 8655 18372 8663 18372 8623 18373 8621 18373 8624 18373 8622 18374 8619 18374 8623 18374 8622 18375 8623 18375 8624 18375 8623 18376 8619 18376 8621 18376 8620 18377 8622 18377 8624 18377 8626 18378 8628 18378 8619 18378 8619 18379 8628 18379 8621 18379 8625 18380 8863 18380 8627 18380 8628 18381 8625 18381 8627 18381 8628 18382 8626 18382 8625 18382 8631 18383 8632 18383 8863 18383 8863 18384 8632 18384 8627 18384 8631 18385 8630 18385 8632 18385 8632 18386 8630 18386 8629 18386 8634 18387 8633 18387 8630 18387 8630 18388 8633 18388 8629 18388 8634 18389 8637 18389 8633 18389 8634 18390 8636 18390 8637 18390 8633 18391 8637 18391 8635 18391 8635 18392 8637 18392 8636 18392 8636 18393 8638 18393 8635 18393 8636 18394 8642 18394 8638 18394 8642 18395 8643 18395 8640 18395 8641 18396 8639 18396 8643 18396 8641 18397 8643 18397 8642 18397 8636 18398 8641 18398 8642 18398 8638 18399 8642 18399 8640 18399 8647 18400 8644 18400 8639 18400 8639 18401 8644 18401 8643 18401 8647 18402 8646 18402 8644 18402 8646 18403 8647 18403 8645 18403 8649 18404 8648 18404 8645 18404 8645 18405 8648 18405 8646 18405 8650 18406 8618 18406 8648 18406 8618 18407 8650 18407 8652 18407 8649 18408 8650 18408 8648 18408 8649 18409 8652 18409 8650 18409 8652 18410 8653 18410 8618 18410 8652 18411 8654 18411 8653 18411 8651 18412 8653 18412 8654 18412 8618 18413 8653 18413 8651 18413 8657 18414 8656 18414 8654 18414 8654 18415 8656 18415 8651 18415 8657 18416 8660 18416 8656 18416 8656 18417 8660 18417 8655 18417 8659 18418 8655 18418 8660 18418 8660 18419 8658 18419 8659 18419 8658 18420 8660 18420 8657 18420 8659 18421 8663 18421 8655 18421 8661 18422 8663 18422 8662 18422 8662 18423 8663 18423 8659 18423 8666 18424 8667 18424 8662 18424 8662 18425 8667 18425 8661 18425 8666 18426 8665 18426 8667 18426 8668 18427 8665 18427 8664 18427 8666 18428 8664 18428 8665 18428 8665 18429 8668 18429 8667 18429 8669 18430 8670 18430 8664 18430 8664 18431 8670 18431 8668 18431 8669 18432 8671 18432 8670 18432 8673 18433 8674 18433 8672 18433 8673 18434 8672 18434 8671 18434 8670 18435 8671 18435 8672 18435 8676 18436 8677 18436 8673 18436 8673 18437 8677 18437 8674 18437 8676 18438 8678 18438 8677 18438 8678 18439 8679 18439 8677 18439 8679 18440 8678 18440 8675 18440 8675 18441 8678 18441 8676 18441 8681 18442 8682 18442 8675 18442 8675 18443 8682 18443 8679 18443 8681 18444 8680 18444 8682 18444 8683 18445 8682 18445 8680 18445 8620 18446 8624 18446 8680 18446 8680 18447 8624 18447 8683 18447 8089 18448 8090 18448 8684 18448 8684 18449 8090 18449 8094 18449 8684 18450 8094 18450 8096 18450 8096 18451 8094 18451 10432 18451 8096 18452 10432 18452 10435 18452 8094 18453 8091 18453 10432 18453 10435 18454 8685 18454 8096 18454 8096 18455 8099 18455 8684 18455 8684 18456 8099 18456 8454 18456 8454 18457 8099 18457 8843 18457 8843 18458 8099 18458 8101 18458 8843 18459 8101 18459 9518 18459 9518 18460 8101 18460 8686 18460 9518 18461 8686 18461 8103 18461 9518 18462 8103 18462 8104 18462 8104 18463 8687 18463 9504 18463 9504 18464 8687 18464 8106 18464 9504 18465 8106 18465 8688 18465 9504 18466 8688 18466 9501 18466 9501 18467 8688 18467 8122 18467 9501 18468 8122 18468 9487 18468 9487 18469 8122 18469 8696 18469 9487 18470 8696 18470 8862 18470 8862 18471 8696 18471 8124 18471 8689 18472 8118 18472 8688 18472 8688 18473 8118 18473 8695 18473 8688 18474 8695 18474 8122 18474 8118 18475 8689 18475 8690 18475 8690 18476 8689 18476 8691 18476 8690 18477 8691 18477 8111 18477 8111 18478 8691 18478 10446 18478 10446 18479 8691 18479 8109 18479 8690 18480 8111 18480 8692 18480 8692 18481 8111 18481 8116 18481 8692 18482 8116 18482 8693 18482 8693 18483 8116 18483 8694 18483 8694 18484 8116 18484 8112 18484 8118 18485 8119 18485 8695 18485 8125 18486 8649 18486 8862 18486 8862 18487 8649 18487 8645 18487 8862 18488 8645 18488 8647 18488 8861 18489 8652 18489 8125 18489 8697 18490 8698 18490 8861 18490 8861 18491 8698 18491 8131 18491 8861 18492 8131 18492 8654 18492 8654 18493 8131 18493 8657 18493 8657 18494 8131 18494 8658 18494 8658 18495 8131 18495 8659 18495 8659 18496 8131 18496 8132 18496 8659 18497 8132 18497 8662 18497 8662 18498 8132 18498 8699 18498 8662 18499 8699 18499 8666 18499 8666 18500 8699 18500 8700 18500 8666 18501 8700 18501 8701 18501 8698 18502 8127 18502 8131 18502 8131 18503 8127 18503 8129 18503 8699 18504 8133 18504 8700 18504 8701 18505 8137 18505 9550 18505 8139 18506 8140 18506 8137 18506 8137 18507 8140 18507 9550 18507 8702 18508 8703 18508 8140 18508 8140 18509 8703 18509 8882 18509 8140 18510 8882 18510 8885 18510 8859 18511 8892 18511 8702 18511 8702 18512 8892 18512 8886 18512 8144 18513 8146 18513 8859 18513 8859 18514 8146 18514 8704 18514 8859 18515 8704 18515 8889 18515 8889 18516 8704 18516 8895 18516 8895 18517 8704 18517 8898 18517 8898 18518 8704 18518 8894 18518 8894 18519 8704 18519 8705 18519 8894 18520 8705 18520 8899 18520 8899 18521 8705 18521 8706 18521 8899 18522 8706 18522 8905 18522 8905 18523 8706 18523 8707 18523 8905 18524 8707 18524 8155 18524 8146 18525 8147 18525 8704 18525 8704 18526 8147 18526 8149 18526 8706 18527 8151 18527 8707 18527 8155 18528 8156 18528 9620 18528 8708 18529 8709 18529 8156 18529 8156 18530 8709 18530 9620 18530 8856 18531 8949 18531 8709 18531 8709 18532 8949 18532 8945 18532 8709 18533 8945 18533 8943 18533 8855 18534 8952 18534 8856 18534 8158 18535 8710 18535 8855 18535 8855 18536 8710 18536 8711 18536 8855 18537 8711 18537 8957 18537 8957 18538 8711 18538 8960 18538 8960 18539 8711 18539 8961 18539 8961 18540 8711 18540 8959 18540 8959 18541 8711 18541 8712 18541 8959 18542 8712 18542 8965 18542 8965 18543 8712 18543 8967 18543 8967 18544 8712 18544 8162 18544 8967 18545 8162 18545 8970 18545 8970 18546 8162 18546 8715 18546 8970 18547 8715 18547 8839 18547 8710 18548 8713 18548 8711 18548 8711 18549 8713 18549 8160 18549 8162 18550 8714 18550 8715 18550 8839 18551 8165 18551 9688 18551 8716 18552 8838 18552 8165 18552 8165 18553 8838 18553 9688 18553 8851 18554 9014 18554 8838 18554 8838 18555 9014 18555 9011 18555 8838 18556 9011 18556 9013 18556 8717 18557 9018 18557 8851 18557 8718 18558 8168 18558 8717 18558 8717 18559 8168 18559 8719 18559 8717 18560 8719 18560 9021 18560 9021 18561 8719 18561 9026 18561 9026 18562 8719 18562 9024 18562 9024 18563 8719 18563 8720 18563 9024 18564 8720 18564 9028 18564 9028 18565 8720 18565 9029 18565 9029 18566 8720 18566 8174 18566 9029 18567 8174 18567 9033 18567 9033 18568 8174 18568 8721 18568 9033 18569 8721 18569 8179 18569 8168 18570 8171 18570 8719 18570 8719 18571 8171 18571 8172 18571 8174 18572 8176 18572 8721 18572 8179 18573 8722 18573 9760 18573 8182 18574 8183 18574 8722 18574 8722 18575 8183 18575 9760 18575 8849 18576 9361 18576 8183 18576 8183 18577 9361 18577 9366 18577 8183 18578 9366 18578 9367 18578 8848 18579 9356 18579 8849 18579 8723 18580 8727 18580 8848 18580 8848 18581 8727 18581 8188 18581 8848 18582 8188 18582 9358 18582 9358 18583 8188 18583 9348 18583 9348 18584 8188 18584 9350 18584 9350 18585 8188 18585 9349 18585 9349 18586 8188 18586 8724 18586 9349 18587 8724 18587 9347 18587 9347 18588 8724 18588 8725 18588 9347 18589 8725 18589 9342 18589 9342 18590 8725 18590 8726 18590 9342 18591 8726 18591 8729 18591 8727 18592 8186 18592 8188 18592 8188 18593 8186 18593 8728 18593 8725 18594 8190 18594 8726 18594 8729 18595 8730 18595 9298 18595 8729 18596 9298 18596 8836 18596 8193 18597 8196 18597 8730 18597 8730 18598 8196 18598 9298 18598 9298 18599 8196 18599 9296 18599 9296 18600 8196 18600 8731 18600 9296 18601 8731 18601 9293 18601 9293 18602 8731 18602 8732 18602 8732 18603 8731 18603 8736 18603 8732 18604 8736 18604 9291 18604 9291 18605 8736 18605 8737 18605 9291 18606 8737 18606 9288 18606 9288 18607 8737 18607 9286 18607 9286 18608 8737 18608 9287 18608 9287 18609 8737 18609 8204 18609 9287 18610 8204 18610 9282 18610 9282 18611 8204 18611 9284 18611 9284 18612 8204 18612 8738 18612 9284 18613 8738 18613 8733 18613 8733 18614 8738 18614 8734 18614 8733 18615 8734 18615 8210 18615 8735 18616 8198 18616 8736 18616 8736 18617 8198 18617 8737 18617 8198 18618 8200 18618 8737 18618 8737 18619 8200 18619 8202 18619 8738 18620 8205 18620 8734 18620 8210 18621 8211 18621 9239 18621 8210 18622 9239 18622 9238 18622 8213 18623 8739 18623 8211 18623 8211 18624 8739 18624 9239 18624 9239 18625 8739 18625 9233 18625 9233 18626 8739 18626 8215 18626 9233 18627 8215 18627 9231 18627 9231 18628 8215 18628 9226 18628 9226 18629 8215 18629 8216 18629 9226 18630 8216 18630 9227 18630 9227 18631 8216 18631 8223 18631 9227 18632 8223 18632 9224 18632 9224 18633 8223 18633 9221 18633 9221 18634 8223 18634 9223 18634 9223 18635 8223 18635 8224 18635 9223 18636 8224 18636 9218 18636 9218 18637 8224 18637 9217 18637 9217 18638 8224 18638 8740 18638 9217 18639 8740 18639 9212 18639 9212 18640 8740 18640 8228 18640 9212 18641 8228 18641 8231 18641 8217 18642 8741 18642 8216 18642 8216 18643 8741 18643 8223 18643 8741 18644 8742 18644 8223 18644 8223 18645 8742 18645 8221 18645 8740 18646 8226 18646 8228 18646 8231 18647 8232 18647 9172 18647 8231 18648 9172 18648 9169 18648 8233 18649 8235 18649 8232 18649 8232 18650 8235 18650 9172 18650 9172 18651 8235 18651 9165 18651 9165 18652 8235 18652 8237 18652 9165 18653 8237 18653 9168 18653 9168 18654 8237 18654 9161 18654 9161 18655 8237 18655 8238 18655 9161 18656 8238 18656 9160 18656 9160 18657 8238 18657 8746 18657 9160 18658 8746 18658 9159 18658 9159 18659 8746 18659 9156 18659 9156 18660 8746 18660 8743 18660 9156 18661 8743 18661 9154 18661 9154 18662 8743 18662 8246 18662 9154 18663 8246 18663 9149 18663 9149 18664 8246 18664 8748 18664 9149 18665 8748 18665 8749 18665 8240 18666 8744 18666 8238 18666 8238 18667 8744 18667 8746 18667 8744 18668 8745 18668 8746 18668 8746 18669 8745 18669 8243 18669 8246 18670 8747 18670 8748 18670 8749 18671 8750 18671 9108 18671 8749 18672 9108 18672 9106 18672 8249 18673 8250 18673 8750 18673 8750 18674 8250 18674 9108 18674 9108 18675 8250 18675 9103 18675 9103 18676 8250 18676 8751 18676 9103 18677 8751 18677 9102 18677 9102 18678 8751 18678 9097 18678 9097 18679 8751 18679 8752 18679 9097 18680 8752 18680 9098 18680 9098 18681 8752 18681 8753 18681 9098 18682 8753 18682 9095 18682 9095 18683 8753 18683 9093 18683 9093 18684 8753 18684 8754 18684 9093 18685 8754 18685 9090 18685 9090 18686 8754 18686 8257 18686 9090 18687 8257 18687 9086 18687 9086 18688 8257 18688 8755 18688 9086 18689 8755 18689 8260 18689 8252 18690 8756 18690 8752 18690 8752 18691 8756 18691 8753 18691 8756 18692 8757 18692 8753 18692 8753 18693 8757 18693 8255 18693 8257 18694 8258 18694 8755 18694 8260 18695 8263 18695 8761 18695 8260 18696 8761 18696 9422 18696 9422 18697 8761 18697 9421 18697 9421 18698 8761 18698 8758 18698 9421 18699 8758 18699 9417 18699 9417 18700 8758 18700 8759 18700 9417 18701 8759 18701 9418 18701 9418 18702 8759 18702 9415 18702 9415 18703 8759 18703 8283 18703 8264 18704 8760 18704 8263 18704 8263 18705 8760 18705 8761 18705 8761 18706 8760 18706 8282 18706 8282 18707 8760 18707 8267 18707 8282 18708 8267 18708 8280 18708 8280 18709 8267 18709 8271 18709 8280 18710 8271 18710 8764 18710 8267 18711 8762 18711 8271 18711 8271 18712 8762 18712 8274 18712 8274 18713 8762 18713 8270 18713 8274 18714 8270 18714 8763 18714 8274 18715 8763 18715 8273 18715 8764 18716 8277 18716 8280 18716 9415 18717 8283 18717 9411 18717 9411 18718 8283 18718 8846 18718 8845 18719 9409 18719 8846 18719 8844 18720 9406 18720 8845 18720 8845 18721 9406 18721 9408 18721 8284 18722 8299 18722 8844 18722 8844 18723 8299 18723 8302 18723 8844 18724 8302 18724 8769 18724 8299 18725 8284 18725 8298 18725 8298 18726 8284 18726 8765 18726 8298 18727 8765 18727 8289 18727 8289 18728 8765 18728 8766 18728 8766 18729 8765 18729 8287 18729 8298 18730 8289 18730 8767 18730 8767 18731 8289 18731 8293 18731 8767 18732 8293 18732 8768 18732 8768 18733 8293 18733 8295 18733 8295 18734 8293 18734 8291 18734 8299 18735 8300 18735 8302 18735 8769 18736 8304 18736 9074 18736 8769 18737 9074 18737 9073 18737 8306 18738 8308 18738 8304 18738 8304 18739 8308 18739 9074 18739 9074 18740 8308 18740 9071 18740 9071 18741 8308 18741 8770 18741 9071 18742 8770 18742 9062 18742 9062 18743 8770 18743 8771 18743 9062 18744 8771 18744 9066 18744 9066 18745 8771 18745 9067 18745 9067 18746 8771 18746 9123 18746 9123 18747 8771 18747 8315 18747 9123 18748 8315 18748 9125 18748 9125 18749 8315 18749 9122 18749 9122 18750 8315 18750 8772 18750 9122 18751 8772 18751 9120 18751 9120 18752 8772 18752 8316 18752 9120 18753 8316 18753 9118 18753 9118 18754 8316 18754 8323 18754 9118 18755 8323 18755 8320 18755 8309 18756 8311 18756 8771 18756 8771 18757 8311 18757 8312 18757 8771 18758 8312 18758 8315 18758 8315 18759 8312 18759 8773 18759 8316 18760 8318 18760 8323 18760 8320 18761 8325 18761 9140 18761 8320 18762 9140 18762 9137 18762 8774 18763 8775 18763 8325 18763 8325 18764 8775 18764 9140 18764 9140 18765 8775 18765 9133 18765 9133 18766 8775 18766 8776 18766 9133 18767 8776 18767 9134 18767 9134 18768 8776 18768 9128 18768 9128 18769 8776 18769 8777 18769 9128 18770 8777 18770 9129 18770 9129 18771 8777 18771 9131 18771 9131 18772 8777 18772 9189 18772 9189 18773 8777 18773 8778 18773 9189 18774 8778 18774 9188 18774 9188 18775 8778 18775 9187 18775 9187 18776 8778 18776 8779 18776 9187 18777 8779 18777 9183 18777 9183 18778 8779 18778 9184 18778 9184 18779 8779 18779 8780 18779 9184 18780 8780 18780 9179 18780 9179 18781 8780 18781 8781 18781 9179 18782 8781 18782 8338 18782 8329 18783 8330 18783 8777 18783 8777 18784 8330 18784 8782 18784 8777 18785 8782 18785 8778 18785 8778 18786 8782 18786 8332 18786 8780 18787 8335 18787 8781 18787 8338 18788 8339 18788 9202 18788 8338 18789 9202 18789 9199 18789 8783 18790 8340 18790 8339 18790 8339 18791 8340 18791 9202 18791 9202 18792 8340 18792 8784 18792 8784 18793 8340 18793 8785 18793 8784 18794 8785 18794 9192 18794 9192 18795 8785 18795 8790 18795 9192 18796 8790 18796 9196 18796 9196 18797 8790 18797 9191 18797 9191 18798 8790 18798 9254 18798 9254 18799 8790 18799 8786 18799 9254 18800 8786 18800 9256 18800 9256 18801 8786 18801 8787 18801 9256 18802 8787 18802 9251 18802 9251 18803 8787 18803 9250 18803 9250 18804 8787 18804 8351 18804 9250 18805 8351 18805 8788 18805 8788 18806 8351 18806 8354 18806 8788 18807 8354 18807 8353 18807 8345 18808 8789 18808 8790 18808 8790 18809 8789 18809 8791 18809 8790 18810 8791 18810 8786 18810 8786 18811 8791 18811 8792 18811 8351 18812 8793 18812 8354 18812 8353 18813 8794 18813 9269 18813 8353 18814 9269 18814 9271 18814 8357 18815 8795 18815 8794 18815 8794 18816 8795 18816 9269 18816 9269 18817 8795 18817 9264 18817 9264 18818 8795 18818 8796 18818 9264 18819 8796 18819 9263 18819 9263 18820 8796 18820 9259 18820 9259 18821 8796 18821 8800 18821 9259 18822 8800 18822 9261 18822 9261 18823 8800 18823 9316 18823 9316 18824 8800 18824 8797 18824 9316 18825 8797 18825 9317 18825 9317 18826 8797 18826 8798 18826 9317 18827 8798 18827 9313 18827 9313 18828 8798 18828 9311 18828 9311 18829 8798 18829 8366 18829 9311 18830 8366 18830 9309 18830 9309 18831 8366 18831 8373 18831 9309 18832 8373 18832 8370 18832 8799 18833 8361 18833 8800 18833 8800 18834 8361 18834 8362 18834 8800 18835 8362 18835 8797 18835 8797 18836 8362 18836 8363 18836 8366 18837 8801 18837 8373 18837 8370 18838 8802 18838 9854 18838 8803 18839 8804 18839 8802 18839 8802 18840 8804 18840 9854 18840 8378 18841 9329 18841 8804 18841 8804 18842 9329 18842 9335 18842 8804 18843 9335 18843 9333 18843 8378 18844 8847 18844 9329 18844 9329 18845 8847 18845 9328 18845 9329 18846 9328 18846 9330 18846 8380 18847 8381 18847 8847 18847 8847 18848 8381 18848 8805 18848 8847 18849 8805 18849 8386 18849 8386 18850 8805 18850 8384 18850 8807 18851 9384 18851 8386 18851 8806 18852 9380 18852 8807 18852 8388 18853 8390 18853 8806 18853 8806 18854 8390 18854 9377 18854 8806 18855 9377 18855 9380 18855 8390 18856 8392 18856 9377 18856 9377 18857 8392 18857 9740 18857 9377 18858 9740 18858 9742 18858 9377 18859 9742 18859 9376 18859 8392 18860 8808 18860 9729 18860 8394 18861 8395 18861 8808 18861 8808 18862 8395 18862 9729 18862 8809 18863 9052 18863 8395 18863 8395 18864 9052 18864 9047 18864 8395 18865 9047 18865 9045 18865 8809 18866 8850 18866 9052 18866 9052 18867 8850 18867 9053 18867 8810 18868 8811 18868 8850 18868 8850 18869 8811 18869 8812 18869 8850 18870 8812 18870 8814 18870 8814 18871 8812 18871 8813 18871 8852 18872 8993 18872 8814 18872 8814 18873 8993 18873 8992 18873 8815 18874 8997 18874 8852 18874 8401 18875 8403 18875 8815 18875 8815 18876 8403 18876 9000 18876 8815 18877 9000 18877 8997 18877 8403 18878 8404 18878 9000 18878 9000 18879 8404 18879 9668 18879 9000 18880 9668 18880 9673 18880 9000 18881 9673 18881 9002 18881 8404 18882 8406 18882 9658 18882 8407 18883 8409 18883 8406 18883 8406 18884 8409 18884 9658 18884 8410 18885 8854 18885 8409 18885 8409 18886 8854 18886 8984 18886 8409 18887 8984 18887 8983 18887 8410 18888 8853 18888 8854 18888 8854 18889 8853 18889 8988 18889 8412 18890 8816 18890 8853 18890 8853 18891 8816 18891 8817 18891 8853 18892 8817 18892 8821 18892 8821 18893 8817 18893 8818 18893 8819 18894 8820 18894 8821 18894 8821 18895 8820 18895 8927 18895 8415 18896 8929 18896 8819 18896 8819 18897 8929 18897 8820 18897 8822 18898 8823 18898 8415 18898 8415 18899 8823 18899 8932 18899 8415 18900 8932 18900 8929 18900 8823 18901 8824 18901 8932 18901 8932 18902 8824 18902 9605 18902 8932 18903 9605 18903 9604 18903 8932 18904 9604 18904 8933 18904 8824 18905 8825 18905 9589 18905 8418 18906 8841 18906 8825 18906 8825 18907 8841 18907 9589 18907 8826 18908 8916 18908 8841 18908 8841 18909 8916 18909 8912 18909 8841 18910 8912 18910 8914 18910 8826 18911 8858 18911 8916 18911 8916 18912 8858 18912 8915 18912 8916 18913 8915 18913 8917 18913 8421 18914 8827 18914 8858 18914 8858 18915 8827 18915 8828 18915 8858 18916 8828 18916 8857 18916 8857 18917 8828 18917 8425 18917 8427 18918 8865 18918 8857 18918 8857 18919 8865 18919 8867 18919 8428 18920 8871 18920 8427 18920 8427 18921 8871 18921 8865 18921 8429 18922 8829 18922 8428 18922 8428 18923 8829 18923 8873 18923 8428 18924 8873 18924 8871 18924 8829 18925 8432 18925 8873 18925 8873 18926 8432 18926 9529 18926 8873 18927 9529 18927 8875 18927 8432 18928 8434 18928 9585 18928 8435 18929 8437 18929 8434 18929 8434 18930 8437 18930 9585 18930 8438 18931 8681 18931 8437 18931 8437 18932 8681 18932 8675 18932 8437 18933 8675 18933 8676 18933 8438 18934 8860 18934 8681 18934 8681 18935 8860 18935 8680 18935 8439 18936 8830 18936 8860 18936 8860 18937 8830 18937 8441 18937 8860 18938 8441 18938 8831 18938 8831 18939 8441 18939 8443 18939 8832 18940 8863 18940 8831 18940 8831 18941 8863 18941 8625 18941 8444 18942 8630 18942 8832 18942 8445 18943 8446 18943 8444 18943 8444 18944 8446 18944 8634 18944 8444 18945 8634 18945 8630 18945 8446 18946 8449 18946 8634 18946 8634 18947 8449 18947 9469 18947 8634 18948 9469 18948 9470 18948 8634 18949 9470 18949 8636 18949 8449 18950 8450 18950 9459 18950 8451 18951 8843 18951 8450 18951 8450 18952 8843 18952 9459 18952 9989 18953 9998 18953 8320 18953 9989 18954 8320 18954 9137 18954 9998 18955 9989 18955 9991 18955 9998 18956 9991 18956 9999 18956 9999 18957 9991 18957 9993 18957 9999 18958 9993 18958 9997 18958 8833 18959 9998 18959 10000 18959 8833 18960 10000 18960 10002 18960 8833 18961 10002 18961 9115 18961 9115 18962 10002 18962 10005 18962 9115 18963 10005 18963 10007 18963 9115 18964 10007 18964 10010 18964 9115 18965 10010 18965 9111 18965 9111 18966 10012 18966 9110 18966 9110 18967 10012 18967 10014 18967 10014 18968 10017 18968 9110 18968 9110 18969 10017 18969 9106 18969 9106 18970 10017 18970 10018 18970 9106 18971 10018 18971 10021 18971 9106 18972 10021 18972 8749 18972 10021 18973 10027 18973 10030 18973 10021 18974 10030 18974 8749 18974 8749 18975 10030 18975 9148 18975 8749 18976 9148 18976 9149 18976 10027 18977 10021 18977 10024 18977 10027 18978 10024 18978 10028 18978 9148 18979 10030 18979 10031 18979 9148 18980 10031 18980 10033 18980 9148 18981 10033 18981 9147 18981 9147 18982 10033 18982 10039 18982 9147 18983 10039 18983 10037 18983 9147 18984 10037 18984 9144 18984 9144 18985 10037 18985 10043 18985 9144 18986 10043 18986 9142 18986 9142 18987 10043 18987 10042 18987 10042 18988 10045 18988 9142 18988 9142 18989 10045 18989 9137 18989 9137 18990 10045 18990 10048 18990 9137 18991 10048 18991 9989 18991 9921 18992 9930 18992 9985 18992 9985 18993 9930 18993 8338 18993 9985 18994 8338 18994 9199 18994 9930 18995 9921 18995 9927 18995 9927 18996 9921 18996 8834 18996 8834 18997 9921 18997 9922 18997 9921 18998 9924 18998 9922 18998 9179 18999 9930 18999 9934 18999 9179 19000 9934 19000 9182 19000 9182 19001 9934 19001 9933 19001 9182 19002 9933 19002 9938 19002 9182 19003 9938 19003 9939 19003 9182 19004 9939 19004 8835 19004 8835 19005 9939 19005 9946 19005 9946 19006 9947 19006 8835 19006 8835 19007 9947 19007 9169 19007 9169 19008 9947 19008 9949 19008 9169 19009 9949 19009 8231 19009 9950 19010 9964 19010 9949 19010 9949 19011 9964 19011 9966 19011 9949 19012 9966 19012 8231 19012 8231 19013 9966 19013 9211 19013 8231 19014 9211 19014 9212 19014 9964 19015 9950 19015 9954 19015 9964 19016 9954 19016 9960 19016 9211 19017 9966 19017 9971 19017 9211 19018 9971 19018 9969 19018 9211 19019 9969 19019 9210 19019 9210 19020 9969 19020 9973 19020 9210 19021 9973 19021 9974 19021 9210 19022 9974 19022 9206 19022 9206 19023 9974 19023 9980 19023 9206 19024 9980 19024 9204 19024 9204 19025 9980 19025 9982 19025 9982 19026 9986 19026 9204 19026 9204 19027 9986 19027 9199 19027 9199 19028 9986 19028 9985 19028 9858 19029 9865 19029 9916 19029 9916 19030 9865 19030 8353 19030 9916 19031 8353 19031 9271 19031 9865 19032 9858 19032 9856 19032 9865 19033 9856 19033 9863 19033 9863 19034 9856 19034 9860 19034 9247 19035 9865 19035 9870 19035 9247 19036 9870 19036 9868 19036 9247 19037 9868 19037 9242 19037 9242 19038 9868 19038 9875 19038 9242 19039 9875 19039 9873 19039 9242 19040 9873 19040 9241 19040 9241 19041 9873 19041 9877 19041 9241 19042 9877 19042 9243 19042 9243 19043 9877 19043 9880 19043 9880 19044 9883 19044 9243 19044 9243 19045 9883 19045 9238 19045 9238 19046 9883 19046 9882 19046 9238 19047 9882 19047 9884 19047 9238 19048 9884 19048 8210 19048 9884 19049 9894 19049 9898 19049 9884 19050 9898 19050 8210 19050 8210 19051 9898 19051 9279 19051 8210 19052 9279 19052 8733 19052 9894 19053 9884 19053 9888 19053 9894 19054 9888 19054 9890 19054 9279 19055 9898 19055 9901 19055 9279 19056 9901 19056 9274 19056 9274 19057 9901 19057 9906 19057 9906 19058 9904 19058 9274 19058 9274 19059 9904 19059 9276 19059 9276 19060 9904 19060 9910 19060 9276 19061 9910 19061 9270 19061 9270 19062 9910 19062 9913 19062 9270 19063 9913 19063 9271 19063 9913 19064 9914 19064 9271 19064 9271 19065 9914 19065 9918 19065 9271 19066 9918 19066 9916 19066 8370 19067 9854 19067 9802 19067 9802 19068 9854 19068 9800 19068 9800 19069 9854 19069 9795 19069 9800 19070 9795 19070 9798 19070 9798 19071 9795 19071 9794 19071 9309 19072 9802 19072 9805 19072 9309 19073 9805 19073 9307 19073 9307 19074 9805 19074 9808 19074 9307 19075 9808 19075 9304 19075 9304 19076 9808 19076 9807 19076 9807 19077 9812 19077 9304 19077 9304 19078 9812 19078 9303 19078 9303 19079 9812 19079 9814 19079 9303 19080 9814 19080 9301 19080 9301 19081 9814 19081 9817 19081 9817 19082 9818 19082 9301 19082 9301 19083 9818 19083 8836 19083 8836 19084 9818 19084 9820 19084 8836 19085 9820 19085 9821 19085 8836 19086 9821 19086 8729 19086 9825 19087 9833 19087 9821 19087 9821 19088 9833 19088 9838 19088 9821 19089 9838 19089 8729 19089 8729 19090 9838 19090 9341 19090 8729 19091 9341 19091 9342 19091 9833 19092 9825 19092 9831 19092 9831 19093 9825 19093 9827 19093 9341 19094 9838 19094 9837 19094 9341 19095 9837 19095 9835 19095 9341 19096 9835 19096 9337 19096 9337 19097 9835 19097 9839 19097 9337 19098 9839 19098 9841 19098 9337 19099 9841 19099 9338 19099 9338 19100 9841 19100 9846 19100 9338 19101 9846 19101 9847 19101 9847 19102 9850 19102 9338 19102 9336 19103 9850 19103 9333 19103 9333 19104 9850 19104 9853 19104 9333 19105 9853 19105 8804 19105 9853 19106 9852 19106 8804 19106 8804 19107 9852 19107 9854 19107 8392 19108 9729 19108 9740 19108 9740 19109 9729 19109 9735 19109 9735 19110 9729 19110 9730 19110 9735 19111 9730 19111 9733 19111 9735 19112 9733 19112 9739 19112 9376 19113 9742 19113 9741 19113 9376 19114 9741 19114 9374 19114 9741 19115 9747 19115 9374 19115 9747 19116 9746 19116 9374 19116 9374 19117 9746 19117 9749 19117 9374 19118 9749 19118 9370 19118 9370 19119 9749 19119 9753 19119 9370 19120 9753 19120 9752 19120 9752 19121 9756 19121 9370 19121 9370 19122 9756 19122 9758 19122 9370 19123 9758 19123 8183 19123 8183 19124 9758 19124 9760 19124 9760 19125 9771 19125 9777 19125 9760 19126 9777 19126 8179 19126 8179 19127 9777 19127 9034 19127 8179 19128 9034 19128 9033 19128 9771 19129 9760 19129 9761 19129 9771 19130 9761 19130 9767 19130 9767 19131 9761 19131 9765 19131 9034 19132 9777 19132 9780 19132 9034 19133 9780 19133 9782 19133 9034 19134 9782 19134 9037 19134 9037 19135 9782 19135 9040 19135 9040 19136 9782 19136 9790 19136 9040 19137 9790 19137 9043 19137 9043 19138 9790 19138 9045 19138 9045 19139 9790 19139 8395 19139 9790 19140 9782 19140 8837 19140 9790 19141 8837 19141 9783 19141 9783 19142 9787 19142 9790 19142 9790 19143 9791 19143 8395 19143 8395 19144 9791 19144 9729 19144 8404 19145 9658 19145 9668 19145 9668 19146 9658 19146 9660 19146 9668 19147 9660 19147 9667 19147 9667 19148 9660 19148 9665 19148 9665 19149 9660 19149 9664 19149 9002 19150 9673 19150 9671 19150 9671 19151 9675 19151 9002 19151 9002 19152 9675 19152 9005 19152 9675 19153 9674 19153 9005 19153 9005 19154 9674 19154 9677 19154 9005 19155 9677 19155 9007 19155 9007 19156 9677 19156 9685 19156 9007 19157 9685 19157 9682 19157 9682 19158 9686 19158 9007 19158 9007 19159 9686 19159 9687 19159 9007 19160 9687 19160 8838 19160 8838 19161 9687 19161 9688 19161 9688 19162 9706 19162 9707 19162 9688 19163 9707 19163 8839 19163 8839 19164 9707 19164 8971 19164 8839 19165 8971 19165 8970 19165 9706 19166 9688 19166 9693 19166 9706 19167 9693 19167 9699 19167 9699 19168 9693 19168 9704 19168 8971 19169 9707 19169 9709 19169 8971 19170 9709 19170 8974 19170 8974 19171 9709 19171 8975 19171 8975 19172 9709 19172 8840 19172 8975 19173 8840 19173 8978 19173 8978 19174 8840 19174 8983 19174 8983 19175 8840 19175 8409 19175 8840 19176 9709 19176 9724 19176 9724 19177 9709 19177 9720 19177 9720 19178 9709 19178 9715 19178 9715 19179 9709 19179 9712 19179 9720 19180 9721 19180 9724 19180 8409 19181 8840 19181 9658 19181 8824 19182 9589 19182 9605 19182 9605 19183 9589 19183 9601 19183 9601 19184 9589 19184 9596 19184 9601 19185 9596 19185 9597 19185 9597 19186 9596 19186 9591 19186 8933 19187 9604 19187 9607 19187 8933 19188 9607 19188 8941 19188 9607 19189 9611 19189 8941 19189 8941 19190 9611 19190 9612 19190 8941 19191 9612 19191 8939 19191 8939 19192 9612 19192 9614 19192 8939 19193 9614 19193 9618 19193 9618 19194 9619 19194 8939 19194 8939 19195 9619 19195 9622 19195 8939 19196 9622 19196 8709 19196 8709 19197 9622 19197 9620 19197 9620 19198 9630 19198 9637 19198 9620 19199 9637 19199 8155 19199 8155 19200 9637 19200 8903 19200 8155 19201 8903 19201 8905 19201 9630 19202 9620 19202 9625 19202 9630 19203 9625 19203 9634 19203 8903 19204 9637 19204 9638 19204 8903 19205 9638 19205 9643 19205 8903 19206 9643 19206 8906 19206 8906 19207 9643 19207 8909 19207 8909 19208 9643 19208 9653 19208 8909 19209 9653 19209 8911 19209 8911 19210 9653 19210 8914 19210 8914 19211 9653 19211 8841 19211 9653 19212 9643 19212 9642 19212 9653 19213 9642 19213 9644 19213 9644 19214 9642 19214 9646 19214 9644 19215 9652 19215 9653 19215 9644 19216 9649 19216 9652 19216 9653 19217 9654 19217 8841 19217 8841 19218 9654 19218 9589 19218 8432 19219 9585 19219 9529 19219 9529 19220 9585 19220 9522 19220 9529 19221 9522 19221 9525 19221 9525 19222 9522 19222 9523 19222 8875 19223 9529 19223 9532 19223 8875 19224 9532 19224 8877 19224 9532 19225 9536 19225 8877 19225 8877 19226 9536 19226 9538 19226 8877 19227 9538 19227 8878 19227 8878 19228 9538 19228 9541 19228 8878 19229 9541 19229 9542 19229 9542 19230 9548 19230 8878 19230 8878 19231 9548 19231 9545 19231 8878 19232 9545 19232 8140 19232 8140 19233 9545 19233 9550 19233 9550 19234 9567 19234 8701 19234 8701 19235 9567 19235 8664 19235 8701 19236 8664 19236 8666 19236 9567 19237 9550 19237 9564 19237 9564 19238 9550 19238 9549 19238 9564 19239 9549 19239 9559 19239 9559 19240 9549 19240 9553 19240 8664 19241 9567 19241 9571 19241 8664 19242 9571 19242 8669 19242 8669 19243 9571 19243 8671 19243 8671 19244 9571 19244 9588 19244 8671 19245 9588 19245 8673 19245 8673 19246 9588 19246 8676 19246 8676 19247 9588 19247 8437 19247 9588 19248 9571 19248 9581 19248 9581 19249 9571 19249 9573 19249 9581 19250 9573 19250 9579 19250 9579 19251 9573 19251 9574 19251 9579 19252 9580 19252 9581 19252 9588 19253 9586 19253 8437 19253 8437 19254 9586 19254 9585 19254 8449 19255 9459 19255 9469 19255 9469 19256 9459 19256 9467 19256 9467 19257 9459 19257 8842 19257 9467 19258 8842 19258 9461 19258 9467 19259 9461 19259 9465 19259 8636 19260 9470 19260 9475 19260 9475 19261 9476 19261 8636 19261 8636 19262 9476 19262 9477 19262 8636 19263 9477 19263 8641 19263 8641 19264 9477 19264 9479 19264 8641 19265 9479 19265 9482 19265 9482 19266 9485 19266 8641 19266 8641 19267 9485 19267 9488 19267 8641 19268 9488 19268 8862 19268 8862 19269 9488 19269 9487 19269 9501 19270 9487 19270 9499 19270 9499 19271 9487 19271 9492 19271 9499 19272 9492 19272 9495 19272 9495 19273 9492 19273 9491 19273 9505 19274 9517 19274 9504 19274 9504 19275 9517 19275 9518 19275 9504 19276 9518 19276 8104 19276 9517 19277 9505 19277 9515 19277 9515 19278 9505 19278 9509 19278 9515 19279 9514 19279 9517 19279 9518 19280 9519 19280 8843 19280 8843 19281 9519 19281 9459 19281 9389 19282 9404 19282 8769 19282 9389 19283 8769 19283 9073 19283 9404 19284 9389 19284 9390 19284 9404 19285 9390 19285 9400 19285 9400 19286 9390 19286 9391 19286 8769 19287 9404 19287 8844 19287 8844 19288 9404 19288 9406 19288 9408 19289 9409 19289 8845 19289 9409 19290 9411 19290 8846 19290 9422 19291 9436 19291 9439 19291 9422 19292 9439 19292 8260 19292 8260 19293 9439 19293 9085 19293 8260 19294 9085 19294 9086 19294 9436 19295 9422 19295 9435 19295 9435 19296 9422 19296 9426 19296 9435 19297 9426 19297 9427 19297 9427 19298 9426 19298 9424 19298 9435 19299 9427 19299 9430 19299 9085 19300 9439 19300 9437 19300 9085 19301 9437 19301 9083 19301 9083 19302 9437 19302 9442 19302 9083 19303 9442 19303 9446 19303 9083 19304 9446 19304 9077 19304 9077 19305 9446 19305 9451 19305 9077 19306 9451 19306 9076 19306 9076 19307 9451 19307 9453 19307 9453 19308 9452 19308 9076 19308 9076 19309 9452 19309 9073 19309 9073 19310 9452 19310 9454 19310 9073 19311 9454 19311 9457 19311 9073 19312 9457 19312 9389 19312 9385 19313 9322 19313 8847 19313 8847 19314 9322 19314 9321 19314 8847 19315 9321 19315 9328 19315 9850 19316 9336 19316 9338 19316 9358 19317 9357 19317 8848 19317 8848 19318 9357 19318 9356 19318 9356 19319 9361 19319 8849 19319 8183 19320 9367 19320 9368 19320 8183 19321 9368 19321 9370 19321 8807 19322 9380 19322 9384 19322 9384 19323 9380 19323 9381 19323 9384 19324 9385 19324 8386 19324 8386 19325 9385 19325 8847 19325 9802 19326 9309 19326 8370 19326 9865 19327 9247 19327 8353 19327 8353 19328 9247 19328 8788 19328 9930 19329 9179 19329 8338 19329 9998 19330 8833 19330 8320 19330 8320 19331 8833 19331 9118 19331 9057 19332 8850 19332 8992 19332 8992 19333 8850 19333 8814 19333 8850 19334 9057 19334 9055 19334 9055 19335 9053 19335 8850 19335 9021 19336 9020 19336 8717 19336 8717 19337 9020 19337 9018 19337 9018 19338 9014 19338 8851 19338 8838 19339 9013 19339 9009 19339 8838 19340 9009 19340 9007 19340 8852 19341 8997 19341 8993 19341 8993 19342 8997 19342 8996 19342 8990 19343 8853 19343 8927 19343 8927 19344 8853 19344 8821 19344 8990 19345 8989 19345 8853 19345 8853 19346 8989 19346 8988 19346 8957 19347 8955 19347 8855 19347 8855 19348 8955 19348 8952 19348 8952 19349 8949 19349 8856 19349 8709 19350 8943 19350 8939 19350 8939 19351 8943 19351 8944 19351 8919 19352 8858 19352 8866 19352 8866 19353 8858 19353 8857 19353 8866 19354 8857 19354 8867 19354 8919 19355 8920 19355 8858 19355 8858 19356 8920 19356 8924 19356 8924 19357 8915 19357 8858 19357 8889 19358 8892 19358 8859 19358 8886 19359 8703 19359 8702 19359 8140 19360 8885 19360 8880 19360 8140 19361 8880 19361 8878 19361 8619 19362 8860 19362 8626 19362 8626 19363 8860 19363 8831 19363 8626 19364 8831 19364 8625 19364 8619 19365 8622 19365 8860 19365 8860 19366 8622 19366 8620 19366 8620 19367 8680 19367 8860 19367 8861 19368 8654 19368 8652 19368 8652 19369 8649 19369 8125 19369 8862 19370 8647 19370 8639 19370 8862 19371 8639 19371 8641 19371 8832 19372 8630 19372 8863 19372 8863 19373 8630 19373 8631 19373 8868 19374 8867 19374 8864 19374 8864 19375 8867 19375 8865 19375 8866 19376 8867 19376 8868 19376 8865 19377 8870 19377 8864 19377 8869 19378 8870 19378 8871 19378 8870 19379 8865 19379 8871 19379 8873 19380 8872 19380 8871 19380 8871 19381 8872 19381 8869 19381 8873 19382 8874 19382 8872 19382 8874 19383 8876 19383 8872 19383 8876 19384 8874 19384 8875 19384 8874 19385 8873 19385 8875 19385 8877 19386 8876 19386 8875 19386 8881 19387 8878 19387 8880 19387 8878 19388 8876 19388 8877 19388 8878 19389 8881 19389 8876 19389 8876 19390 8881 19390 8879 19390 8885 19391 8884 19391 8880 19391 8880 19392 8884 19392 8881 19392 8885 19393 8883 19393 8884 19393 8883 19394 8885 19394 8882 19394 8703 19395 8887 19395 8882 19395 8882 19396 8887 19396 8883 19396 8888 19397 8891 19397 8887 19397 8891 19398 8888 19398 8886 19398 8703 19399 8888 19399 8887 19399 8703 19400 8886 19400 8888 19400 8892 19401 8891 19401 8886 19401 8892 19402 8890 19402 8891 19402 8892 19403 8889 19403 8890 19403 8890 19404 8889 19404 8893 19404 8895 19405 8896 19405 8889 19405 8889 19406 8896 19406 8893 19406 8897 19407 8896 19407 8898 19407 8897 19408 8898 19408 8894 19408 8896 19409 8895 19409 8898 19409 8894 19410 8900 19410 8897 19410 8894 19411 8899 19411 8900 19411 8901 19412 8900 19412 8899 19412 8905 19413 8576 19413 8899 19413 8899 19414 8576 19414 8901 19414 8905 19415 8904 19415 8576 19415 8902 19416 8904 19416 8903 19416 8905 19417 8903 19417 8904 19417 8902 19418 8576 19418 8904 19418 8906 19419 8907 19419 8903 19419 8903 19420 8907 19420 8902 19420 8908 19421 8909 19421 8911 19421 8909 19422 8908 19422 8907 19422 8908 19423 8910 19423 8907 19423 8906 19424 8909 19424 8907 19424 8914 19425 8602 19425 8911 19425 8911 19426 8602 19426 8908 19426 8914 19427 8913 19427 8602 19427 8913 19428 8471 19428 8602 19428 8471 19429 8913 19429 8912 19429 8912 19430 8913 19430 8914 19430 8916 19431 8918 19431 8912 19431 8912 19432 8918 19432 8471 19432 8916 19433 8917 19433 8918 19433 8924 19434 8925 19434 8915 19434 8915 19435 8925 19435 8917 19435 8920 19436 8919 19436 8921 19436 8920 19437 8921 19437 8924 19437 8921 19438 8919 19438 8922 19438 8925 19439 8924 19439 8921 19439 8921 19440 8923 19440 8925 19440 8923 19441 8921 19441 8922 19441 8866 19442 8868 19442 8919 19442 8919 19443 8868 19443 8922 19443 8927 19444 8926 19444 8928 19444 8820 19445 8926 19445 8927 19445 8820 19446 8930 19446 8926 19446 8820 19447 8929 19447 8930 19447 8931 19448 8930 19448 8929 19448 8932 19449 8935 19449 8929 19449 8929 19450 8935 19450 8931 19450 8932 19451 8936 19451 8935 19451 8932 19452 8933 19452 8936 19452 8936 19453 8934 19453 8935 19453 8934 19454 8936 19454 8933 19454 8941 19455 8937 19455 8933 19455 8933 19456 8937 19456 8934 19456 8941 19457 8940 19457 8942 19457 8937 19458 8941 19458 8942 19458 8938 19459 8940 19459 8944 19459 8940 19460 8939 19460 8944 19460 8942 19461 8940 19461 8938 19461 8939 19462 8940 19462 8941 19462 8938 19463 8944 19463 8943 19463 8943 19464 8946 19464 8938 19464 8943 19465 8947 19465 8946 19465 8947 19466 8948 19466 8946 19466 8948 19467 8947 19467 8945 19467 8945 19468 8947 19468 8943 19468 8949 19469 8950 19469 8945 19469 8945 19470 8950 19470 8948 19470 8951 19471 8956 19471 8950 19471 8956 19472 8951 19472 8952 19472 8949 19473 8951 19473 8950 19473 8949 19474 8952 19474 8951 19474 8952 19475 8953 19475 8956 19475 8953 19476 8957 19476 8958 19476 8953 19477 8955 19477 8957 19477 8956 19478 8953 19478 8954 19478 8954 19479 8953 19479 8958 19479 8953 19480 8952 19480 8955 19480 8960 19481 8963 19481 8957 19481 8957 19482 8963 19482 8958 19482 8963 19483 8962 19483 8964 19483 8962 19484 8959 19484 8964 19484 8960 19485 8961 19485 8962 19485 8960 19486 8962 19486 8963 19486 8959 19487 8962 19487 8961 19487 8965 19488 8968 19488 8959 19488 8959 19489 8968 19489 8964 19489 8966 19490 8968 19490 8967 19490 8967 19491 8968 19491 8965 19491 8970 19492 8969 19492 8967 19492 8967 19493 8969 19493 8966 19493 8970 19494 8973 19494 8969 19494 8972 19495 8973 19495 8971 19495 8970 19496 8971 19496 8973 19496 8969 19497 8973 19497 8972 19497 8974 19498 8976 19498 8971 19498 8971 19499 8976 19499 8972 19499 8975 19500 8978 19500 8977 19500 8979 19501 8977 19501 8978 19501 8974 19502 8975 19502 8976 19502 8977 19503 8976 19503 8975 19503 8983 19504 8981 19504 8978 19504 8978 19505 8981 19505 8979 19505 8983 19506 8982 19506 8981 19506 8982 19507 8980 19507 8981 19507 8980 19508 8982 19508 8984 19508 8984 19509 8982 19509 8983 19509 8854 19510 8985 19510 8984 19510 8984 19511 8985 19511 8980 19511 8985 19512 8988 19512 8986 19512 8854 19513 8988 19513 8985 19513 8988 19514 8991 19514 8986 19514 8989 19515 8991 19515 8988 19515 8989 19516 8987 19516 8991 19516 8987 19517 8989 19517 8990 19517 8927 19518 8928 19518 8990 19518 8990 19519 8928 19519 8987 19519 8995 19520 8992 19520 8993 19520 8995 19521 8994 19521 8992 19521 8996 19522 8998 19522 8993 19522 8993 19523 8998 19523 8995 19523 8996 19524 8997 19524 8999 19524 8996 19525 8999 19525 8998 19525 9000 19526 9003 19526 8997 19526 8997 19527 9003 19527 8999 19527 9000 19528 9004 19528 9003 19528 9000 19529 9002 19529 9004 19529 9004 19530 9001 19530 9003 19530 9001 19531 9004 19531 9002 19531 9005 19532 9006 19532 9002 19532 9002 19533 9006 19533 9001 19533 9007 19534 9008 19534 9006 19534 9005 19535 9007 19535 9006 19535 9008 19536 9007 19536 9009 19536 9013 19537 9012 19537 9009 19537 9009 19538 9012 19538 9008 19538 9013 19539 9010 19539 9012 19539 9010 19540 9013 19540 9011 19540 9014 19541 9016 19541 9011 19541 9011 19542 9016 19542 9010 19542 9017 19543 9015 19543 9016 19543 9015 19544 9017 19544 9018 19544 9014 19545 9017 19545 9016 19545 9014 19546 9018 19546 9017 19546 9018 19547 9019 19547 9015 19547 9020 19548 9021 19548 9019 19548 9018 19549 9020 19549 9019 19549 9019 19550 9021 19550 9022 19550 9026 19551 9023 19551 9021 19551 9021 19552 9023 19552 9022 19552 9026 19553 9027 19553 9023 19553 9024 19554 9025 19554 9027 19554 9027 19555 9025 19555 9023 19555 9027 19556 9026 19556 9024 19556 9028 19557 9030 19557 9024 19557 9024 19558 9030 19558 9025 19558 9031 19559 9030 19559 9029 19559 9029 19560 9030 19560 9028 19560 9033 19561 9035 19561 9029 19561 9029 19562 9035 19562 9031 19562 9033 19563 9036 19563 9035 19563 9032 19564 9036 19564 9034 19564 9033 19565 9034 19565 9036 19565 9036 19566 9032 19566 9035 19566 9037 19567 9039 19567 9034 19567 9034 19568 9039 19568 9032 19568 9037 19569 9038 19569 9039 19569 9044 19570 9041 19570 9043 19570 9041 19571 9040 19571 9043 19571 9040 19572 9041 19572 9038 19572 9038 19573 9041 19573 9042 19573 9042 19574 9041 19574 9044 19574 9039 19575 9038 19575 9042 19575 9037 19576 9040 19576 9038 19576 9046 19577 9045 19577 9044 19577 9046 19578 9044 19578 9043 19578 9046 19579 9043 19579 9045 19579 9045 19580 9049 19580 9044 19580 9045 19581 9048 19581 9049 19581 9048 19582 9050 19582 9049 19582 9050 19583 9048 19583 9047 19583 9047 19584 9048 19584 9045 19584 9052 19585 8484 19585 9047 19585 9047 19586 8484 19586 9050 19586 9053 19587 9051 19587 8484 19587 9052 19588 9053 19588 8484 19588 9055 19589 9056 19589 9053 19589 9053 19590 9056 19590 9051 19590 9056 19591 9057 19591 9054 19591 9056 19592 9055 19592 9057 19592 8992 19593 8994 19593 9057 19593 9057 19594 8994 19594 9054 19594 9123 19595 9126 19595 9067 19595 9067 19596 9126 19596 9061 19596 9062 19597 9063 19597 9059 19597 9059 19598 9063 19598 9065 19598 9060 19599 9068 19599 9061 19599 9068 19600 9067 19600 9061 19600 9065 19601 9068 19601 9058 19601 9062 19602 9066 19602 9065 19602 9066 19603 9068 19603 9065 19603 9058 19604 9068 19604 9064 19604 9064 19605 9068 19605 9060 19605 9063 19606 9062 19606 9065 19606 9059 19607 9065 19607 9064 19607 9060 19608 9059 19608 9064 19608 9068 19609 9066 19609 9067 19609 9062 19610 9059 19610 9069 19610 9071 19611 9069 19611 9070 19611 9071 19612 9062 19612 9069 19612 9071 19613 9070 19613 9074 19613 9074 19614 9070 19614 9075 19614 9073 19615 9075 19615 9072 19615 9073 19616 9074 19616 9075 19616 9073 19617 9072 19617 9076 19617 9076 19618 9072 19618 9081 19618 9083 19619 9078 19619 9082 19619 9082 19620 9078 19620 9080 19620 9077 19621 9076 19621 9080 19621 9081 19622 9080 19622 9076 19622 9077 19623 9080 19623 9078 19623 9082 19624 9080 19624 9079 19624 9079 19625 9080 19625 9081 19625 9083 19626 9077 19626 9078 19626 9083 19627 9082 19627 9085 19627 9085 19628 9082 19628 9087 19628 9086 19629 9088 19629 9084 19629 9087 19630 9088 19630 9085 19630 9086 19631 9085 19631 9088 19631 9084 19632 9088 19632 9087 19632 9086 19633 9084 19633 9090 19633 9090 19634 9084 19634 9089 19634 9089 19635 9091 19635 9090 19635 9091 19636 9093 19636 9090 19636 9093 19637 9091 19637 9096 19637 9095 19638 9094 19638 9092 19638 9092 19639 9094 19639 9096 19639 9094 19640 9093 19640 9096 19640 9094 19641 9095 19641 9093 19641 9095 19642 9092 19642 9098 19642 9098 19643 9092 19643 9099 19643 9098 19644 9099 19644 9101 19644 9098 19645 9101 19645 9097 19645 9101 19646 9100 19646 9097 19646 9097 19647 9100 19647 9102 19647 9100 19648 9105 19648 9102 19648 9103 19649 9105 19649 9104 19649 9103 19650 9102 19650 9105 19650 9105 19651 9100 19651 9104 19651 9103 19652 9104 19652 9108 19652 9108 19653 9104 19653 9107 19653 9108 19654 8596 19654 9106 19654 8596 19655 9108 19655 9107 19655 9106 19656 8596 19656 9110 19656 9110 19657 8596 19657 9109 19657 9113 19658 9109 19658 9112 19658 9115 19659 9111 19659 9113 19659 9113 19660 9111 19660 9110 19660 9109 19661 9113 19661 9110 19661 9114 19662 9112 19662 9109 19662 9113 19663 9112 19663 9115 19663 9115 19664 9112 19664 8833 19664 8833 19665 9112 19665 9117 19665 9118 19666 9119 19666 9116 19666 8833 19667 9119 19667 9118 19667 9117 19668 9119 19668 8833 19668 9117 19669 9116 19669 9119 19669 9118 19670 9116 19670 9120 19670 9120 19671 9116 19671 9121 19671 9120 19672 9121 19672 9124 19672 9122 19673 9120 19673 9124 19673 9125 19674 9122 19674 9127 19674 9123 19675 9125 19675 9127 19675 9127 19676 9122 19676 9124 19676 9123 19677 9127 19677 9126 19677 9189 19678 9190 19678 9131 19678 9131 19679 9190 19679 9132 19679 9129 19680 9130 19680 9128 19680 9130 19681 9129 19681 9132 19681 9132 19682 9129 19682 9131 19682 9128 19683 9130 19683 9134 19683 9134 19684 9130 19684 9136 19684 9135 19685 9134 19685 9136 19685 9133 19686 9134 19686 9135 19686 9133 19687 9135 19687 9140 19687 9140 19688 9135 19688 9141 19688 9137 19689 9139 19689 9138 19689 9139 19690 9141 19690 9138 19690 9141 19691 9139 19691 9140 19691 9140 19692 9139 19692 9137 19692 9137 19693 9138 19693 9142 19693 9142 19694 9138 19694 9143 19694 9147 19695 9145 19695 9146 19695 9144 19696 9142 19696 9143 19696 9144 19697 9145 19697 9147 19697 9144 19698 9143 19698 9145 19698 9143 19699 9146 19699 9145 19699 9147 19700 9146 19700 9148 19700 9148 19701 9146 19701 9151 19701 9149 19702 9152 19702 9150 19702 9151 19703 9152 19703 9148 19703 9149 19704 9148 19704 9152 19704 9151 19705 9150 19705 9152 19705 9149 19706 9150 19706 9154 19706 9154 19707 9150 19707 9155 19707 9154 19708 9155 19708 9153 19708 9154 19709 9153 19709 9156 19709 9156 19710 9153 19710 9157 19710 9157 19711 9159 19711 9156 19711 9158 19712 9159 19712 9157 19712 9159 19713 9158 19713 9160 19713 9160 19714 9158 19714 9162 19714 9164 19715 9161 19715 9160 19715 9163 19716 9161 19716 9164 19716 9162 19717 9164 19717 9160 19717 9161 19718 9163 19718 9168 19718 9167 19719 9163 19719 9166 19719 9163 19720 9167 19720 9168 19720 9165 19721 9167 19721 9166 19721 9165 19722 9168 19722 9167 19722 9165 19723 9166 19723 9172 19723 9172 19724 9166 19724 9171 19724 9169 19725 9173 19725 9170 19725 9173 19726 9171 19726 9170 19726 9171 19727 9173 19727 9172 19727 9173 19728 9169 19728 9172 19728 9169 19729 9170 19729 8835 19729 8835 19730 9170 19730 9174 19730 9182 19731 9176 19731 9177 19731 9176 19732 9175 19732 9177 19732 9182 19733 8835 19733 9176 19733 9175 19734 9176 19734 9174 19734 9174 19735 9176 19735 8835 19735 9182 19736 9177 19736 9178 19736 9179 19737 9180 19737 9181 19737 9179 19738 9182 19738 9180 19738 9180 19739 9178 19739 9181 19739 9178 19740 9180 19740 9182 19740 9179 19741 9181 19741 9184 19741 9184 19742 9181 19742 9185 19742 9186 19743 9184 19743 9185 19743 9183 19744 9184 19744 9186 19744 9183 19745 9186 19745 9187 19745 9187 19746 9190 19746 9189 19746 9190 19747 9187 19747 9186 19747 9187 19748 9189 19748 9188 19748 9254 19749 9255 19749 9191 19749 9191 19750 9255 19750 9193 19750 9195 19751 9193 19751 9194 19751 9196 19752 9191 19752 9195 19752 9195 19753 9191 19753 9193 19753 9196 19754 9194 19754 9192 19754 9195 19755 9194 19755 9196 19755 9192 19756 9194 19756 9197 19756 8784 19757 9197 19757 9198 19757 8784 19758 9192 19758 9197 19758 8784 19759 9198 19759 9202 19759 9202 19760 9198 19760 9201 19760 9199 19761 9201 19761 9200 19761 9199 19762 9202 19762 9201 19762 9199 19763 9200 19763 9204 19763 9204 19764 9200 19764 9205 19764 9203 19765 9204 19765 9205 19765 9203 19766 9205 19766 9204 19766 9210 19767 9207 19767 9209 19767 9206 19768 9204 19768 9208 19768 9205 19769 9208 19769 9204 19769 9206 19770 9208 19770 9207 19770 9210 19771 9206 19771 9207 19771 9208 19772 9209 19772 9207 19772 9210 19773 9209 19773 9211 19773 9211 19774 9209 19774 9213 19774 9212 19775 9215 19775 9214 19775 9213 19776 9215 19776 9211 19776 9212 19777 9211 19777 9215 19777 9214 19778 9215 19778 9213 19778 9212 19779 9214 19779 9217 19779 9217 19780 9214 19780 9216 19780 9216 19781 9220 19781 9218 19781 9218 19782 9217 19782 9216 19782 9218 19783 9220 19783 9223 19783 9219 19784 9224 19784 9222 19784 9225 19785 9222 19785 9220 19785 9221 19786 9223 19786 9222 19786 9224 19787 9221 19787 9222 19787 9222 19788 9223 19788 9220 19788 9219 19789 9222 19789 9225 19789 9224 19790 9219 19790 9227 19790 9227 19791 9219 19791 9230 19791 9228 19792 9226 19792 9229 19792 9229 19793 9227 19793 9230 19793 9227 19794 9229 19794 9226 19794 9226 19795 9228 19795 9231 19795 9231 19796 9228 19796 9235 19796 9234 19797 9235 19797 9232 19797 9235 19798 9234 19798 9231 19798 9233 19799 9234 19799 9232 19799 9233 19800 9231 19800 9234 19800 9233 19801 9232 19801 9239 19801 9239 19802 9232 19802 9237 19802 9239 19803 9236 19803 9238 19803 9236 19804 9239 19804 9237 19804 9238 19805 9236 19805 9243 19805 9243 19806 9236 19806 9240 19806 9245 19807 9242 19807 9244 19807 9243 19808 9240 19808 9244 19808 9242 19809 9241 19809 9243 19809 9243 19810 9244 19810 9242 19810 9242 19811 9245 19811 9247 19811 9247 19812 9245 19812 9249 19812 8788 19813 9248 19813 9246 19813 8788 19814 9247 19814 9248 19814 9246 19815 9248 19815 9249 19815 9249 19816 9248 19816 9247 19816 8788 19817 9246 19817 9250 19817 9250 19818 9246 19818 9253 19818 9250 19819 9253 19819 9251 19819 9251 19820 9253 19820 9252 19820 9251 19821 9252 19821 9256 19821 9252 19822 9254 19822 9256 19822 9252 19823 9255 19823 9254 19823 9316 19824 9318 19824 9261 19824 9261 19825 9318 19825 9257 19825 9260 19826 9257 19826 9258 19826 9260 19827 9261 19827 9257 19827 9262 19828 9259 19828 9260 19828 9260 19829 9258 19829 9262 19829 9260 19830 9259 19830 9261 19830 9259 19831 9262 19831 9263 19831 9263 19832 9262 19832 9265 19832 9264 19833 9265 19833 9266 19833 9263 19834 9265 19834 9264 19834 9264 19835 9266 19835 9269 19835 9269 19836 9266 19836 9268 19836 9271 19837 9268 19837 9267 19837 9271 19838 9269 19838 9268 19838 9271 19839 9267 19839 9273 19839 9272 19840 9271 19840 9273 19840 9272 19841 9273 19841 9270 19841 9272 19842 9270 19842 9271 19842 9276 19843 9270 19843 9275 19843 9273 19844 9275 19844 9270 19844 9277 19845 9274 19845 9275 19845 9275 19846 9274 19846 9276 19846 9274 19847 9277 19847 9279 19847 9279 19848 9277 19848 9280 19848 8733 19849 9281 19849 9278 19849 9280 19850 9281 19850 9279 19850 8733 19851 9279 19851 9281 19851 9278 19852 9281 19852 9280 19852 8733 19853 9278 19853 9284 19853 9284 19854 9278 19854 9285 19854 9284 19855 9285 19855 9282 19855 9285 19856 9283 19856 9282 19856 9282 19857 9283 19857 9287 19857 9288 19858 9289 19858 8549 19858 9286 19859 9287 19859 9289 19859 9288 19860 9286 19860 9289 19860 9289 19861 9287 19861 9283 19861 8549 19862 9289 19862 9283 19862 9288 19863 8549 19863 9291 19863 9291 19864 8549 19864 9292 19864 9290 19865 9291 19865 9292 19865 9290 19866 8732 19866 9291 19866 8732 19867 9290 19867 9293 19867 9293 19868 9290 19868 9297 19868 9295 19869 9297 19869 9294 19869 9297 19870 9295 19870 9293 19870 9296 19871 9295 19871 9294 19871 9296 19872 9293 19872 9295 19872 9296 19873 9294 19873 9298 19873 9298 19874 9294 19874 8553 19874 8836 19875 9300 19875 9299 19875 9300 19876 8553 19876 9299 19876 8553 19877 9300 19877 9298 19877 9298 19878 9300 19878 8836 19878 8836 19879 9299 19879 9301 19879 9301 19880 9299 19880 8598 19880 8598 19881 9302 19881 9301 19881 9301 19882 9302 19882 9303 19882 9303 19883 9302 19883 9304 19883 8599 19884 9304 19884 9302 19884 9304 19885 8599 19885 9307 19885 9307 19886 8599 19886 9308 19886 9309 19887 9306 19887 9305 19887 9309 19888 9307 19888 9306 19888 9306 19889 9308 19889 9305 19889 9308 19890 9306 19890 9307 19890 9309 19891 9305 19891 9311 19891 9311 19892 9305 19892 9312 19892 9313 19893 9311 19893 9314 19893 9310 19894 9314 19894 9312 19894 9312 19895 9314 19895 9311 19895 9313 19896 9314 19896 9310 19896 9313 19897 9310 19897 9317 19897 9317 19898 9310 19898 9315 19898 9317 19899 9319 19899 9316 19899 9317 19900 9315 19900 9319 19900 9316 19901 9319 19901 9318 19901 9318 19902 9319 19902 9315 19902 9385 19903 9386 19903 9322 19903 9322 19904 9386 19904 9320 19904 9323 19905 9322 19905 9320 19905 9325 19906 9321 19906 9323 19906 9327 19907 9323 19907 9324 19907 9324 19908 9323 19908 9326 19908 9327 19909 9325 19909 9323 19909 9326 19910 9325 19910 9327 19910 9323 19911 9325 19911 9326 19911 9322 19912 9323 19912 9321 19912 9320 19913 9325 19913 9323 19913 9321 19914 9325 19914 9328 19914 9328 19915 9325 19915 9331 19915 9331 19916 9330 19916 9328 19916 9329 19917 9330 19917 9335 19917 9335 19918 9330 19918 9332 19918 9333 19919 9332 19919 9334 19919 9333 19920 9335 19920 9332 19920 9333 19921 9334 19921 9336 19921 9336 19922 9334 19922 9339 19922 9339 19923 9338 19923 9336 19923 9338 19924 9339 19924 9337 19924 9340 19925 9337 19925 8597 19925 9339 19926 8597 19926 9337 19926 9337 19927 9340 19927 9341 19927 9341 19928 9340 19928 9344 19928 9342 19929 9344 19929 9343 19929 9341 19930 9344 19930 9342 19930 9342 19931 9343 19931 9347 19931 9347 19932 9343 19932 9345 19932 9345 19933 9346 19933 9347 19933 9346 19934 9349 19934 9347 19934 9349 19935 9346 19935 9354 19935 9355 19936 9349 19936 9354 19936 9355 19937 9354 19937 9353 19937 9355 19938 9353 19938 9351 19938 9355 19939 9350 19939 9349 19939 9350 19940 9355 19940 9351 19940 9348 19941 9350 19941 9351 19941 9352 19942 9348 19942 9351 19942 9352 19943 9351 19943 9353 19943 9348 19944 9352 19944 9358 19944 9358 19945 9352 19945 9359 19945 9357 19946 9358 19946 9360 19946 9356 19947 9357 19947 9360 19947 9360 19948 9358 19948 9359 19948 9356 19949 9360 19949 9364 19949 9363 19950 9364 19950 9362 19950 9364 19951 9363 19951 9356 19951 9361 19952 9363 19952 9362 19952 9361 19953 9356 19953 9363 19953 9361 19954 9362 19954 9366 19954 9366 19955 9362 19955 8561 19955 9367 19956 8561 19956 9365 19956 8561 19957 9367 19957 9366 19957 9367 19958 9365 19958 9368 19958 9368 19959 9365 19959 9369 19959 9374 19960 9371 19960 9375 19960 9374 19961 9370 19961 9371 19961 9369 19962 9371 19962 9368 19962 9371 19963 9372 19963 9375 19963 9371 19964 9370 19964 9368 19964 9369 19965 9372 19965 9371 19965 9373 19966 9374 19966 9375 19966 9373 19967 9375 19967 9374 19967 9374 19968 9375 19968 9376 19968 9376 19969 9375 19969 9379 19969 9377 19970 9379 19970 9378 19970 9379 19971 9377 19971 9376 19971 9377 19972 9378 19972 9380 19972 9380 19973 9378 19973 9382 19973 9387 19974 9383 19974 9382 19974 9382 19975 9383 19975 9380 19975 9381 19976 9383 19976 9387 19976 9380 19977 9383 19977 9381 19977 9381 19978 9387 19978 9384 19978 9385 19979 9384 19979 9386 19979 9386 19980 9384 19980 9387 19980 9389 19981 9456 19981 9388 19981 9390 19982 9389 19982 9398 19982 9389 19983 9388 19983 9398 19983 9390 19984 9398 19984 9397 19984 9393 19985 9392 19985 9390 19985 9396 19986 9392 19986 9394 19986 9396 19987 9391 19987 9392 19987 9393 19988 9390 19988 9397 19988 9395 19989 9394 19989 9397 19989 9394 19990 9395 19990 9396 19990 9398 19991 9396 19991 9395 19991 9392 19992 9391 19992 9390 19992 9397 19993 9394 19993 9393 19993 9398 19994 9395 19994 9397 19994 9400 19995 9399 19995 9401 19995 9399 19996 9391 19996 9396 19996 9399 19997 9400 19997 9391 19997 9396 19998 9398 19998 9401 19998 9396 19999 9401 19999 9399 19999 9400 20000 9401 20000 9402 20000 9404 20001 9403 20001 9405 20001 9405 20002 9403 20002 9402 20002 9402 20003 9403 20003 9400 20003 9403 20004 9404 20004 9400 20004 9406 20005 9405 20005 9407 20005 9406 20006 9407 20006 9408 20006 9406 20007 9404 20007 9405 20007 9407 20008 9410 20008 9408 20008 9408 20009 9410 20009 9409 20009 9410 20010 9412 20010 9409 20010 9411 20011 9412 20011 9413 20011 9412 20012 9410 20012 9413 20012 9411 20013 9409 20013 9412 20013 9415 20014 9414 20014 9416 20014 9411 20015 9413 20015 9414 20015 9415 20016 9411 20016 9414 20016 9414 20017 9413 20017 9416 20017 9416 20018 9418 20018 9415 20018 9416 20019 9417 20019 9418 20019 9420 20020 9417 20020 9416 20020 9422 20021 9421 20021 9423 20021 9421 20022 9417 20022 9420 20022 9421 20023 9420 20023 9419 20023 9423 20024 9421 20024 9419 20024 9428 20025 9426 20025 9423 20025 9423 20026 9426 20026 9422 20026 9424 20027 9428 20027 9425 20027 9428 20028 9424 20028 9426 20028 9430 20029 9425 20029 9434 20029 9427 20030 9425 20030 9430 20030 9427 20031 9424 20031 9425 20031 9425 20032 9428 20032 9434 20032 9430 20033 9434 20033 9431 20033 9435 20034 9430 20034 9433 20034 9433 20035 9431 20035 9432 20035 9429 20036 9431 20036 9434 20036 9433 20037 9430 20037 9431 20037 9429 20038 9433 20038 9432 20038 9429 20039 9434 20039 9433 20039 9439 20040 9436 20040 9440 20040 9433 20041 9436 20041 9435 20041 9440 20042 9436 20042 9433 20042 9437 20043 9438 20043 9441 20043 9439 20044 9440 20044 9438 20044 9437 20045 9439 20045 9438 20045 9442 20046 9441 20046 9444 20046 9437 20047 9441 20047 9442 20047 9444 20048 9443 20048 9442 20048 9446 20049 9443 20049 9445 20049 9442 20050 9443 20050 9446 20050 9444 20051 9445 20051 9443 20051 9451 20052 9448 20052 9450 20052 9448 20053 9445 20053 9447 20053 9451 20054 9446 20054 9448 20054 9446 20055 9445 20055 9448 20055 9447 20056 9450 20056 9448 20056 9453 20057 9450 20057 9449 20057 9450 20058 9453 20058 9451 20058 9452 20059 9453 20059 9449 20059 9458 20060 9452 20060 9449 20060 9452 20061 9458 20061 9454 20061 9457 20062 9455 20062 9389 20062 9455 20063 9454 20063 9458 20063 9389 20064 9455 20064 9456 20064 9455 20065 9457 20065 9454 20065 9459 20066 9521 20066 9460 20066 9462 20067 9459 20067 9460 20067 9462 20068 8842 20068 9459 20068 9461 20069 8842 20069 9462 20069 9465 20070 9463 20070 9464 20070 9461 20071 9463 20071 9465 20071 9461 20072 9462 20072 9463 20072 9464 20073 9463 20073 9462 20073 9464 20074 9466 20074 9465 20074 9466 20075 9467 20075 9465 20075 9467 20076 9466 20076 9468 20076 9467 20077 9468 20077 9469 20077 9473 20078 9470 20078 9471 20078 9470 20079 9469 20079 9468 20079 9475 20080 9470 20080 9473 20080 9468 20081 9471 20081 9470 20081 9476 20082 9472 20082 9474 20082 9473 20083 9472 20083 9475 20083 9472 20084 9476 20084 9475 20084 9474 20085 9472 20085 9473 20085 9474 20086 9477 20086 9476 20086 9478 20087 9477 20087 9474 20087 9479 20088 9480 20088 9484 20088 9480 20089 9478 20089 9481 20089 9477 20090 9478 20090 9480 20090 9480 20091 9479 20091 9477 20091 9481 20092 9484 20092 9480 20092 9482 20093 9484 20093 9483 20093 9484 20094 9482 20094 9479 20094 9486 20095 9485 20095 9483 20095 9485 20096 9482 20096 9483 20096 9490 20097 9487 20097 9488 20097 9490 20098 9488 20098 9486 20098 9488 20099 9485 20099 9486 20099 9489 20100 9487 20100 9490 20100 9487 20101 9489 20101 9492 20101 9491 20102 9492 20102 9494 20102 9492 20103 9489 20103 9494 20103 9495 20104 9493 20104 9496 20104 9495 20105 9491 20105 9493 20105 9491 20106 9494 20106 9493 20106 9493 20107 9494 20107 9496 20107 9496 20108 9499 20108 9495 20108 9499 20109 9496 20109 9497 20109 9501 20110 9498 20110 9502 20110 9502 20111 9498 20111 9497 20111 9497 20112 9498 20112 9499 20112 9498 20113 9501 20113 9499 20113 9504 20114 9500 20114 9507 20114 9500 20115 9502 20115 9503 20115 9507 20116 9500 20116 9503 20116 9500 20117 9501 20117 9502 20117 9500 20118 9504 20118 9501 20118 9505 20119 9506 20119 9508 20119 9504 20120 9507 20120 9506 20120 9508 20121 9506 20121 9507 20121 9506 20122 9505 20122 9504 20122 9509 20123 9505 20123 9510 20123 9508 20124 9510 20124 9505 20124 9509 20125 9510 20125 9511 20125 9510 20126 9508 20126 9511 20126 9515 20127 9512 20127 9513 20127 9512 20128 9511 20128 9513 20128 9515 20129 9509 20129 9512 20129 9509 20130 9511 20130 9512 20130 9513 20131 9514 20131 9515 20131 9513 20132 9516 20132 9514 20132 9518 20133 9517 20133 9520 20133 9516 20134 9517 20134 9514 20134 9520 20135 9517 20135 9516 20135 9519 20136 9518 20136 9520 20136 9521 20137 9519 20137 9520 20137 9519 20138 9521 20138 9459 20138 9522 20139 9584 20139 9524 20139 9522 20140 9585 20140 9584 20140 9523 20141 9522 20141 9524 20141 9525 20142 9527 20142 9528 20142 9527 20143 9524 20143 9526 20143 9523 20144 9527 20144 9525 20144 9523 20145 9524 20145 9527 20145 9526 20146 9528 20146 9527 20146 9525 20147 9528 20147 9530 20147 9529 20148 9525 20148 9530 20148 9529 20149 9530 20149 9534 20149 9531 20150 9532 20150 9533 20150 9533 20151 9529 20151 9534 20151 9533 20152 9532 20152 9529 20152 9536 20153 9535 20153 9537 20153 9535 20154 9532 20154 9531 20154 9536 20155 9532 20155 9535 20155 9531 20156 9537 20156 9535 20156 9537 20157 9538 20157 9536 20157 9540 20158 9538 20158 9537 20158 9541 20159 9539 20159 9544 20159 9538 20160 9540 20160 9539 20160 9539 20161 9541 20161 9538 20161 9540 20162 9544 20162 9539 20162 9542 20163 9541 20163 9544 20163 9542 20164 9544 20164 9543 20164 9547 20165 9548 20165 9543 20165 9548 20166 9542 20166 9543 20166 9550 20167 9545 20167 9552 20167 9548 20168 9547 20168 9545 20168 9545 20169 9546 20169 9552 20169 9546 20170 9545 20170 9547 20170 9551 20171 9550 20171 9552 20171 9550 20172 9551 20172 9549 20172 9554 20173 9549 20173 9551 20173 9553 20174 9549 20174 9554 20174 9553 20175 9554 20175 9555 20175 9559 20176 9556 20176 9561 20176 9553 20177 9555 20177 9556 20177 9556 20178 9559 20178 9553 20178 9555 20179 9561 20179 9556 20179 9558 20180 9557 20180 9559 20180 9564 20181 9560 20181 9558 20181 9561 20182 9564 20182 9559 20182 9557 20183 9562 20183 9559 20183 9563 20184 9558 20184 9560 20184 9563 20185 9562 20185 9557 20185 9564 20186 9562 20186 9563 20186 9560 20187 9564 20187 9563 20187 9562 20188 9564 20188 9559 20188 9566 20189 9564 20189 9561 20189 9559 20190 9564 20190 9558 20190 9567 20191 9565 20191 9569 20191 9566 20192 9565 20192 9564 20192 9565 20193 9567 20193 9564 20193 9566 20194 9569 20194 9565 20194 9571 20195 9570 20195 9568 20195 9570 20196 9571 20196 9567 20196 9569 20197 9570 20197 9567 20197 9572 20198 9573 20198 9568 20198 9573 20199 9572 20199 9574 20199 9571 20200 9568 20200 9573 20200 9578 20201 9574 20201 9572 20201 9579 20202 9577 20202 9575 20202 9577 20203 9578 20203 9576 20203 9579 20204 9574 20204 9577 20204 9574 20205 9578 20205 9577 20205 9576 20206 9575 20206 9577 20206 9575 20207 9580 20207 9579 20207 9582 20208 9580 20208 9575 20208 9588 20209 9581 20209 9583 20209 9583 20210 9581 20210 9582 20210 9581 20211 9580 20211 9582 20211 9585 20212 9587 20212 9584 20212 9585 20213 9586 20213 9587 20213 9588 20214 9583 20214 9587 20214 9587 20215 9586 20215 9588 20215 9655 20216 9595 20216 9589 20216 9595 20217 9596 20217 9589 20217 9590 20218 9591 20218 9592 20218 9590 20219 9592 20219 9594 20219 9595 20220 9591 20220 9596 20220 9592 20221 9591 20221 9595 20221 9590 20222 9594 20222 9593 20222 9590 20223 9593 20223 9595 20223 9595 20224 9593 20224 9592 20224 9597 20225 9599 20225 9600 20225 9599 20226 9590 20226 9598 20226 9591 20227 9590 20227 9599 20227 9599 20228 9597 20228 9591 20228 9598 20229 9600 20229 9599 20229 9601 20230 9597 20230 9600 20230 9605 20231 9602 20231 9603 20231 9602 20232 9600 20232 9603 20232 9605 20233 9601 20233 9602 20233 9600 20234 9602 20234 9601 20234 9604 20235 9608 20235 9607 20235 9606 20236 9605 20236 9603 20236 9604 20237 9606 20237 9608 20237 9608 20238 9606 20238 9603 20238 9605 20239 9606 20239 9604 20239 9611 20240 9609 20240 9610 20240 9610 20241 9609 20241 9608 20241 9609 20242 9607 20242 9608 20242 9607 20243 9609 20243 9611 20243 9610 20244 9612 20244 9611 20244 9613 20245 9612 20245 9610 20245 9614 20246 9615 20246 9617 20246 9612 20247 9613 20247 9615 20247 9615 20248 9614 20248 9612 20248 9613 20249 9617 20249 9615 20249 9618 20250 9617 20250 9616 20250 9617 20251 9618 20251 9614 20251 9621 20252 9619 20252 9616 20252 9619 20253 9618 20253 9616 20253 9620 20254 9622 20254 9624 20254 9624 20255 9622 20255 9623 20255 9622 20256 9619 20256 9621 20256 9623 20257 9622 20257 9621 20257 9626 20258 9620 20258 9624 20258 9620 20259 9626 20259 9625 20259 9625 20260 9626 20260 9628 20260 9634 20261 9627 20261 9629 20261 9625 20262 9627 20262 9634 20262 9625 20263 9628 20263 9627 20263 9628 20264 9629 20264 9627 20264 9633 20265 9629 20265 9631 20265 9630 20266 9634 20266 9635 20266 9633 20267 9634 20267 9629 20267 9632 20268 9631 20268 9635 20268 9635 20269 9631 20269 9629 20269 9635 20270 9634 20270 9633 20270 9635 20271 9633 20271 9632 20271 9630 20272 9635 20272 9636 20272 9630 20273 9636 20273 9637 20273 9640 20274 9643 20274 9638 20274 9638 20275 9636 20275 9639 20275 9640 20276 9638 20276 9639 20276 9638 20277 9637 20277 9636 20277 9646 20278 9642 20278 9641 20278 9640 20279 9642 20279 9643 20279 9641 20280 9642 20280 9640 20280 9646 20281 9641 20281 9645 20281 9644 20282 9646 20282 9645 20282 9649 20283 9647 20283 9650 20283 9647 20284 9645 20284 9648 20284 9644 20285 9647 20285 9649 20285 9644 20286 9645 20286 9647 20286 9648 20287 9650 20287 9647 20287 9652 20288 9649 20288 9650 20288 9651 20289 9653 20289 9650 20289 9650 20290 9653 20290 9652 20290 9589 20291 9656 20291 9655 20291 9656 20292 9654 20292 9653 20292 9589 20293 9654 20293 9656 20293 9656 20294 9653 20294 9651 20294 9660 20295 9657 20295 9661 20295 9727 20296 9657 20296 9658 20296 9660 20297 9658 20297 9657 20297 9660 20298 9661 20298 9664 20298 9664 20299 9661 20299 9659 20299 9665 20300 9663 20300 9666 20300 9663 20301 9659 20301 9662 20301 9664 20302 9659 20302 9663 20302 9663 20303 9665 20303 9664 20303 9662 20304 9666 20304 9663 20304 9666 20305 9667 20305 9665 20305 9670 20306 9667 20306 9666 20306 9670 20307 9668 20307 9667 20307 9669 20308 9668 20308 9670 20308 9671 20309 9672 20309 9676 20309 9673 20310 9668 20310 9672 20310 9673 20311 9672 20311 9671 20311 9668 20312 9669 20312 9672 20312 9671 20313 9676 20313 9675 20313 9676 20314 9678 20314 9675 20314 9678 20315 9674 20315 9675 20315 9677 20316 9678 20316 9679 20316 9678 20317 9677 20317 9674 20317 9685 20318 9680 20318 9684 20318 9680 20319 9679 20319 9681 20319 9677 20320 9679 20320 9680 20320 9680 20321 9685 20321 9677 20321 9681 20322 9684 20322 9680 20322 9682 20323 9684 20323 9683 20323 9684 20324 9682 20324 9685 20324 9689 20325 9686 20325 9683 20325 9686 20326 9682 20326 9683 20326 9686 20327 9689 20327 9687 20327 9688 20328 9690 20328 9692 20328 9691 20329 9690 20329 9689 20329 9687 20330 9689 20330 9690 20330 9688 20331 9687 20331 9690 20331 9690 20332 9691 20332 9692 20332 9695 20333 9688 20333 9692 20333 9688 20334 9695 20334 9693 20334 9694 20335 9693 20335 9695 20335 9704 20336 9696 20336 9702 20336 9696 20337 9694 20337 9697 20337 9693 20338 9696 20338 9704 20338 9693 20339 9694 20339 9696 20339 9697 20340 9702 20340 9696 20340 9699 20341 9702 20341 9703 20341 9701 20342 9698 20342 9704 20342 9700 20343 9701 20343 9699 20343 9699 20344 9704 20344 9698 20344 9700 20345 9699 20345 9698 20345 9699 20346 9701 20346 9702 20346 9702 20347 9701 20347 9704 20347 9699 20348 9703 20348 9706 20348 9707 20349 9705 20349 9708 20349 9705 20350 9703 20350 9708 20350 9706 20351 9703 20351 9705 20351 9707 20352 9706 20352 9705 20352 9709 20353 9710 20353 9713 20353 9709 20354 9707 20354 9710 20354 9707 20355 9708 20355 9711 20355 9710 20356 9707 20356 9711 20356 9713 20357 9710 20357 9711 20357 9712 20358 9709 20358 9714 20358 9714 20359 9709 20359 9713 20359 9714 20360 9716 20360 9712 20360 9715 20361 9716 20361 9719 20361 9719 20362 9716 20362 9714 20362 9715 20363 9712 20363 9716 20363 9720 20364 9718 20364 9722 20364 9718 20365 9719 20365 9717 20365 9720 20366 9715 20366 9718 20366 9715 20367 9719 20367 9718 20367 9717 20368 9722 20368 9718 20368 9722 20369 9721 20369 9720 20369 9723 20370 9721 20370 9722 20370 8840 20371 9724 20371 9725 20371 9723 20372 9724 20372 9721 20372 9725 20373 9724 20373 9723 20373 9658 20374 9726 20374 9727 20374 8840 20375 9726 20375 9658 20375 9726 20376 8840 20376 9725 20376 9730 20377 9729 20377 9731 20377 9731 20378 9729 20378 9728 20378 9733 20379 9730 20379 9731 20379 9739 20380 9734 20380 9737 20380 9734 20381 9731 20381 9732 20381 9733 20382 9734 20382 9739 20382 9733 20383 9731 20383 9734 20383 9732 20384 9737 20384 9734 20384 9737 20385 9736 20385 9739 20385 9735 20386 9736 20386 9738 20386 9739 20387 9736 20387 9735 20387 9738 20388 9736 20388 9737 20388 9740 20389 9738 20389 9743 20389 9740 20390 9735 20390 9738 20390 9742 20391 9743 20391 9745 20391 9742 20392 9740 20392 9743 20392 9744 20393 9741 20393 9745 20393 9741 20394 9742 20394 9745 20394 9747 20395 9748 20395 9746 20395 9747 20396 9744 20396 9748 20396 9741 20397 9744 20397 9747 20397 9749 20398 9746 20398 9750 20398 9748 20399 9750 20399 9746 20399 9753 20400 9751 20400 9755 20400 9749 20401 9751 20401 9753 20401 9749 20402 9750 20402 9751 20402 9750 20403 9755 20403 9751 20403 9752 20404 9755 20404 9754 20404 9753 20405 9755 20405 9752 20405 9757 20406 9756 20406 9754 20406 9756 20407 9752 20407 9754 20407 9756 20408 9757 20408 9758 20408 9760 20409 9758 20409 9759 20409 9758 20410 9757 20410 9759 20410 9762 20411 9760 20411 9759 20411 9761 20412 9760 20412 9762 20412 9763 20413 9761 20413 9762 20413 9761 20414 9763 20414 9765 20414 9764 20415 9765 20415 9769 20415 9769 20416 9765 20416 9763 20416 9767 20417 9766 20417 9775 20417 9767 20418 9765 20418 9764 20418 9767 20419 9764 20419 9766 20419 9764 20420 9775 20420 9766 20420 9769 20421 9775 20421 9764 20421 9770 20422 9768 20422 9775 20422 9775 20423 9772 20423 9767 20423 9771 20424 9772 20424 9774 20424 9774 20425 9770 20425 9769 20425 9769 20426 9770 20426 9775 20426 9772 20427 9771 20427 9767 20427 9772 20428 9768 20428 9773 20428 9773 20429 9774 20429 9772 20429 9774 20430 9773 20430 9770 20430 9775 20431 9768 20431 9772 20431 9771 20432 9774 20432 9776 20432 9777 20433 9776 20433 9779 20433 9771 20434 9776 20434 9777 20434 9781 20435 9782 20435 9780 20435 9780 20436 9779 20436 9778 20436 9781 20437 9780 20437 9778 20437 9780 20438 9777 20438 9779 20438 9781 20439 8837 20439 9782 20439 9784 20440 8837 20440 9781 20440 8837 20441 9784 20441 9783 20441 9787 20442 9785 20442 9786 20442 9785 20443 9784 20443 9786 20443 9783 20444 9785 20444 9787 20444 9783 20445 9784 20445 9785 20445 9790 20446 9788 20446 9789 20446 9787 20447 9788 20447 9790 20447 9729 20448 9792 20448 9728 20448 9792 20449 9790 20449 9789 20449 9729 20450 9791 20450 9792 20450 9792 20451 9791 20451 9790 20451 9793 20452 9797 20452 9795 20452 9795 20453 9854 20453 9793 20453 9797 20454 9794 20454 9795 20454 9798 20455 9796 20455 9799 20455 9794 20456 9797 20456 9796 20456 9796 20457 9798 20457 9794 20457 9796 20458 9797 20458 9799 20458 9800 20459 9798 20459 9799 20459 9800 20460 9799 20460 9801 20460 9802 20461 9801 20461 9804 20461 9802 20462 9800 20462 9801 20462 9806 20463 9802 20463 9804 20463 9806 20464 9805 20464 9802 20464 9805 20465 9806 20465 9803 20465 9808 20466 9805 20466 9803 20466 9807 20467 9809 20467 9810 20467 9803 20468 9809 20468 9808 20468 9809 20469 9807 20469 9808 20469 9810 20470 9809 20470 9803 20470 9812 20471 9810 20471 9811 20471 9810 20472 9812 20472 9807 20472 9814 20473 9813 20473 9816 20473 9812 20474 9813 20474 9814 20474 9812 20475 9811 20475 9813 20475 9811 20476 9816 20476 9813 20476 9817 20477 9816 20477 9815 20477 9816 20478 9817 20478 9814 20478 9819 20479 9818 20479 9815 20479 9818 20480 9817 20480 9815 20480 9821 20481 9820 20481 9823 20481 9822 20482 9820 20482 9819 20482 9820 20483 9818 20483 9819 20483 9823 20484 9820 20484 9822 20484 9826 20485 9821 20485 9823 20485 9825 20486 9821 20486 9826 20486 9826 20487 9827 20487 9825 20487 9824 20488 9827 20488 9826 20488 9831 20489 9828 20489 9830 20489 9827 20490 9824 20490 9828 20490 9828 20491 9824 20491 9829 20491 9828 20492 9829 20492 9830 20492 9830 20493 9829 20493 9824 20493 9831 20494 9827 20494 9828 20494 9830 20495 9833 20495 9831 20495 9833 20496 9830 20496 9832 20496 9838 20497 9832 20497 9836 20497 9838 20498 9833 20498 9832 20498 9835 20499 9834 20499 9840 20499 9835 20500 9837 20500 9834 20500 9834 20501 9838 20501 9836 20501 9834 20502 9837 20502 9838 20502 9840 20503 9834 20503 9836 20503 9839 20504 9835 20504 9840 20504 9843 20505 9839 20505 9840 20505 9841 20506 9843 20506 9842 20506 9841 20507 9839 20507 9843 20507 9846 20508 9845 20508 9848 20508 9845 20509 9842 20509 9844 20509 9846 20510 9841 20510 9845 20510 9841 20511 9842 20511 9845 20511 9844 20512 9848 20512 9845 20512 9848 20513 9847 20513 9846 20513 9849 20514 9847 20514 9848 20514 9851 20515 9850 20515 9849 20515 9849 20516 9850 20516 9847 20516 9850 20517 9851 20517 9853 20517 9854 20518 9855 20518 9793 20518 9854 20519 9852 20519 9855 20519 9852 20520 9853 20520 9855 20520 9855 20521 9853 20521 9851 20521 9856 20522 9858 20522 9857 20522 9917 20523 9858 20523 9916 20523 9857 20524 9858 20524 9917 20524 9860 20525 9856 20525 9859 20525 9859 20526 9856 20526 9857 20526 9863 20527 9861 20527 9864 20527 9860 20528 9861 20528 9863 20528 9861 20529 9860 20529 9859 20529 9859 20530 9864 20530 9861 20530 9863 20531 9864 20531 9862 20531 9866 20532 9862 20532 9867 20532 9865 20533 9863 20533 9866 20533 9867 20534 9865 20534 9866 20534 9866 20535 9863 20535 9862 20535 9869 20536 9868 20536 9870 20536 9870 20537 9865 20537 9867 20537 9869 20538 9870 20538 9867 20538 9869 20539 9871 20539 9868 20539 9875 20540 9868 20540 9871 20540 9871 20541 9872 20541 9875 20541 9873 20542 9872 20542 9874 20542 9873 20543 9875 20543 9872 20543 9871 20544 9874 20544 9872 20544 9877 20545 9876 20545 9878 20545 9876 20546 9874 20546 9878 20546 9873 20547 9874 20547 9876 20547 9876 20548 9877 20548 9873 20548 9880 20549 9878 20549 9879 20549 9880 20550 9877 20550 9878 20550 9885 20551 9883 20551 9879 20551 9883 20552 9880 20552 9879 20552 9884 20553 9882 20553 9887 20553 9882 20554 9883 20554 9885 20554 9882 20555 9881 20555 9887 20555 9881 20556 9882 20556 9885 20556 9888 20557 9886 20557 9892 20557 9886 20558 9887 20558 9892 20558 9888 20559 9884 20559 9886 20559 9887 20560 9886 20560 9884 20560 9890 20561 9888 20561 9889 20561 9892 20562 9889 20562 9888 20562 9890 20563 9889 20563 9891 20563 9891 20564 9889 20564 9892 20564 9894 20565 9893 20565 9895 20565 9890 20566 9893 20566 9894 20566 9890 20567 9891 20567 9893 20567 9893 20568 9891 20568 9895 20568 9895 20569 9897 20569 9894 20569 9898 20570 9896 20570 9899 20570 9894 20571 9897 20571 9896 20571 9899 20572 9896 20572 9897 20572 9898 20573 9894 20573 9896 20573 9901 20574 9903 20574 9902 20574 9903 20575 9899 20575 9900 20575 9902 20576 9903 20576 9900 20576 9903 20577 9898 20577 9899 20577 9903 20578 9901 20578 9898 20578 9906 20579 9901 20579 9902 20579 9906 20580 9902 20580 9907 20580 9907 20581 9904 20581 9906 20581 9905 20582 9904 20582 9907 20582 9910 20583 9908 20583 9911 20583 9908 20584 9905 20584 9909 20584 9910 20585 9904 20585 9908 20585 9904 20586 9905 20586 9908 20586 9909 20587 9911 20587 9908 20587 9911 20588 9913 20588 9910 20588 9912 20589 9913 20589 9911 20589 9912 20590 9914 20590 9913 20590 9919 20591 9914 20591 9912 20591 9916 20592 9915 20592 9917 20592 9918 20593 9919 20593 9915 20593 9918 20594 9914 20594 9919 20594 9915 20595 9916 20595 9918 20595 9920 20596 9921 20596 9984 20596 9985 20597 9984 20597 9921 20597 9921 20598 9920 20598 9924 20598 9922 20599 9924 20599 9923 20599 9920 20600 9923 20600 9924 20600 8834 20601 9925 20601 9926 20601 9922 20602 9925 20602 8834 20602 9922 20603 9923 20603 9925 20603 9923 20604 9926 20604 9925 20604 9928 20605 8834 20605 9926 20605 9928 20606 9927 20606 8834 20606 9930 20607 9927 20607 9929 20607 9928 20608 9929 20608 9927 20608 9934 20609 9931 20609 9933 20609 9932 20610 9930 20610 9929 20610 9934 20611 9932 20611 9931 20611 9930 20612 9932 20612 9934 20612 9933 20613 9931 20613 9935 20613 9938 20614 9936 20614 9937 20614 9933 20615 9935 20615 9936 20615 9933 20616 9936 20616 9938 20616 9937 20617 9936 20617 9935 20617 9939 20618 9938 20618 9940 20618 9937 20619 9940 20619 9938 20619 9946 20620 9941 20620 9942 20620 9941 20621 9940 20621 9942 20621 9939 20622 9941 20622 9946 20622 9939 20623 9940 20623 9941 20623 9945 20624 9946 20624 9942 20624 9947 20625 9943 20625 9944 20625 9944 20626 9943 20626 9945 20626 9945 20627 9943 20627 9946 20627 9943 20628 9947 20628 9946 20628 9947 20629 9944 20629 9948 20629 9947 20630 9948 20630 9949 20630 9951 20631 9949 20631 9948 20631 9950 20632 9952 20632 9953 20632 9952 20633 9951 20633 9953 20633 9952 20634 9950 20634 9951 20634 9951 20635 9950 20635 9949 20635 9954 20636 9950 20636 9953 20636 9954 20637 9953 20637 9956 20637 9960 20638 9955 20638 9962 20638 9954 20639 9955 20639 9960 20639 9954 20640 9956 20640 9955 20640 9955 20641 9956 20641 9962 20641 9964 20642 9960 20642 9959 20642 9962 20643 9957 20643 9960 20643 9959 20644 9958 20644 9964 20644 9961 20645 9959 20645 9960 20645 9958 20646 9961 20646 9964 20646 9957 20647 9961 20647 9960 20647 9964 20648 9961 20648 9957 20648 9964 20649 9957 20649 9963 20649 9963 20650 9965 20650 9964 20650 9966 20651 9964 20651 9965 20651 9967 20652 9966 20652 9965 20652 9963 20653 9967 20653 9965 20653 9970 20654 9969 20654 9971 20654 9971 20655 9967 20655 9968 20655 9970 20656 9971 20656 9968 20656 9971 20657 9966 20657 9967 20657 9973 20658 9972 20658 9976 20658 9976 20659 9972 20659 9970 20659 9973 20660 9969 20660 9972 20660 9969 20661 9970 20661 9972 20661 9974 20662 9973 20662 9976 20662 9980 20663 9975 20663 9978 20663 9975 20664 9976 20664 9977 20664 9980 20665 9974 20665 9975 20665 9974 20666 9976 20666 9975 20666 9977 20667 9978 20667 9975 20667 9979 20668 9982 20668 9980 20668 9978 20669 9979 20669 9980 20669 9982 20670 9979 20670 9981 20670 9986 20671 9981 20671 9983 20671 9986 20672 9982 20672 9981 20672 9985 20673 9988 20673 9984 20673 9985 20674 9986 20674 9988 20674 9988 20675 9986 20675 9983 20675 9988 20676 9983 20676 9987 20676 9988 20677 9987 20677 9984 20677 9991 20678 9989 20678 9992 20678 9992 20679 9989 20679 9990 20679 9993 20680 9991 20680 9994 20680 9991 20681 9992 20681 9994 20681 9997 20682 9994 20682 9995 20682 9993 20683 9994 20683 9997 20683 9999 20684 9997 20684 9996 20684 9995 20685 9996 20685 9997 20685 10004 20686 9998 20686 9996 20686 9996 20687 9998 20687 9999 20687 10000 20688 9998 20688 10004 20688 10000 20689 10004 20689 10002 20689 10003 20690 10002 20690 10001 20690 10002 20691 10004 20691 10001 20691 10007 20692 10008 20692 10006 20692 10008 20693 10005 20693 10003 20693 10003 20694 10005 20694 10002 20694 10008 20695 10003 20695 10006 20695 10007 20696 10005 20696 10008 20696 10010 20697 10007 20697 10009 20697 10006 20698 10009 20698 10007 20698 10012 20699 10011 20699 10013 20699 9111 20700 10011 20700 10012 20700 10010 20701 10009 20701 10011 20701 10011 20702 9111 20702 10010 20702 10009 20703 10013 20703 10011 20703 10014 20704 10013 20704 10016 20704 10014 20705 10012 20705 10013 20705 10017 20706 10015 20706 10019 20706 10019 20707 10015 20707 10016 20707 10017 20708 10014 20708 10015 20708 10016 20709 10015 20709 10014 20709 10021 20710 10020 20710 10022 20710 10020 20711 10017 20711 10019 20711 10018 20712 10020 20712 10021 20712 10020 20713 10018 20713 10017 20713 10025 20714 10021 20714 10022 20714 10021 20715 10025 20715 10024 20715 10024 20716 10025 20716 10023 20716 10028 20717 10026 20717 10029 20717 10028 20718 10024 20718 10026 20718 10024 20719 10023 20719 10026 20719 10026 20720 10023 20720 10029 20720 10029 20721 10027 20721 10028 20721 10029 20722 10030 20722 10027 20722 10032 20723 10030 20723 10029 20723 10036 20724 10033 20724 10031 20724 10036 20725 10031 20725 10032 20725 10031 20726 10030 20726 10032 20726 10039 20727 10034 20727 10035 20727 10033 20728 10034 20728 10039 20728 10035 20729 10034 20729 10036 20729 10034 20730 10033 20730 10036 20730 10039 20731 10035 20731 10038 20731 10037 20732 10039 20732 10038 20732 10043 20733 10041 20733 10044 20733 10041 20734 10038 20734 10040 20734 10043 20735 10037 20735 10041 20735 10037 20736 10038 20736 10041 20736 10040 20737 10044 20737 10041 20737 10044 20738 10042 20738 10043 20738 10047 20739 10042 20739 10044 20739 10045 20740 10047 20740 10046 20740 10047 20741 10045 20741 10042 20741 9989 20742 10048 20742 9990 20742 10048 20743 10049 20743 9990 20743 10049 20744 10045 20744 10046 20744 10049 20745 10048 20745 10045 20745 10249 20746 10250 20746 10051 20746 10051 20747 10250 20747 10050 20747 10308 20748 10050 20748 10311 20748 10308 20749 10051 20749 10050 20749 10198 20750 10052 20750 10095 20750 10095 20751 10052 20751 10098 20751 10095 20752 10098 20752 10096 20752 10198 20753 10195 20753 10052 20753 10052 20754 10251 20754 10098 20754 10098 20755 10251 20755 10091 20755 10091 20756 10251 20756 10248 20756 10091 20757 10248 20757 10254 20757 10092 20758 10250 20758 10251 20758 10053 20759 10363 20759 10092 20759 10092 20760 10363 20760 10365 20760 10191 20761 10363 20761 10053 20761 10190 20762 10363 20762 10191 20762 10055 20763 10054 20763 10190 20763 10190 20764 10054 20764 10366 20764 10188 20765 10184 20765 10055 20765 10055 20766 10184 20766 10056 20766 10055 20767 10056 20767 10054 20767 10187 20768 10057 20768 10188 20768 10188 20769 10057 20769 10184 20769 10056 20770 10184 20770 10186 20770 10056 20771 10186 20771 10058 20771 10058 20772 10186 20772 10059 20772 10058 20773 10059 20773 10180 20773 10366 20774 10054 20774 10060 20774 10366 20775 10060 20775 10361 20775 10361 20776 10060 20776 10061 20776 10361 20777 10061 20777 10362 20777 10362 20778 10061 20778 10306 20778 10362 20779 10306 20779 10364 20779 10364 20780 10306 20780 10307 20780 10306 20781 10061 20781 10303 20781 10303 20782 10061 20782 10062 20782 10303 20783 10062 20783 10301 20783 10301 20784 10062 20784 10166 20784 10301 20785 10166 20785 10299 20785 10299 20786 10166 20786 10065 20786 10299 20787 10065 20787 10296 20787 10296 20788 10065 20788 10325 20788 10166 20789 10062 20789 10169 20789 10169 20790 10062 20790 10063 20790 10169 20791 10063 20791 10172 20791 10172 20792 10063 20792 10173 20792 10173 20793 10063 20793 10064 20793 10172 20794 10171 20794 10169 20794 10066 20795 10323 20795 10065 20795 10066 20796 10312 20796 10323 20796 10067 20797 10312 20797 10066 20797 10068 20798 10155 20798 10067 20798 10067 20799 10155 20799 10154 20799 10067 20800 10154 20800 10312 20800 10312 20801 10154 20801 10069 20801 10312 20802 10069 20802 10324 20802 10324 20803 10069 20803 10321 20803 10321 20804 10069 20804 10070 20804 10321 20805 10070 20805 10071 20805 10321 20806 10071 20806 10289 20806 10074 20807 10160 20807 10068 20807 10068 20808 10160 20808 10072 20808 10068 20809 10072 20809 10155 20809 10155 20810 10072 20810 10156 20810 10156 20811 10072 20811 10073 20811 10156 20812 10073 20812 10157 20812 10164 20813 10162 20813 10074 20813 10074 20814 10162 20814 10160 20814 10160 20815 10161 20815 10072 20815 10071 20816 10070 20816 10284 20816 10284 20817 10070 20817 10152 20817 10284 20818 10152 20818 10285 20818 10285 20819 10152 20819 10281 20819 10281 20820 10152 20820 10075 20820 10281 20821 10075 20821 10282 20821 10282 20822 10075 20822 10144 20822 10282 20823 10144 20823 10354 20823 10152 20824 10151 20824 10075 20824 10075 20825 10151 20825 10076 20825 10076 20826 10151 20826 10077 20826 10076 20827 10077 20827 10147 20827 10149 20828 10148 20828 10151 20828 10151 20829 10148 20829 10077 20829 10141 20830 10348 20830 10144 20830 10144 20831 10348 20831 10354 20831 10141 20832 10350 20832 10348 20832 10078 20833 10351 20833 10141 20833 10141 20834 10351 20834 10350 20834 10138 20835 10080 20835 10078 20835 10078 20836 10080 20836 10351 20836 10137 20837 10131 20837 10138 20837 10138 20838 10131 20838 10079 20838 10138 20839 10079 20839 10080 20839 10136 20840 10134 20840 10137 20840 10137 20841 10134 20841 10131 20841 10131 20842 10133 20842 3145 20842 10131 20843 3145 20843 10079 20843 10079 20844 3145 20844 10130 20844 10130 20845 3145 20845 3041 20845 10130 20846 3041 20846 10081 20846 10351 20847 10080 20847 10126 20847 10351 20848 10126 20848 10125 20848 10351 20849 10125 20849 10352 20849 10352 20850 10125 20850 10124 20850 10352 20851 10124 20851 10353 20851 10353 20852 10124 20852 10273 20852 10353 20853 10273 20853 10093 20853 10273 20854 10124 20854 10270 20854 10270 20855 10124 20855 10082 20855 10270 20856 10082 20856 10271 20856 10271 20857 10082 20857 10083 20857 10271 20858 10083 20858 10266 20858 10266 20859 10083 20859 10267 20859 10267 20860 10083 20860 10085 20860 10267 20861 10085 20861 10265 20861 10265 20862 10085 20862 10338 20862 10083 20863 10082 20863 10118 20863 10118 20864 10082 20864 10123 20864 10118 20865 10123 20865 3031 20865 3031 20866 10123 20866 3156 20866 3156 20867 10123 20867 10084 20867 3031 20868 10120 20868 10118 20868 10117 20869 10339 20869 10085 20869 10085 20870 10339 20870 10336 20870 10116 20871 10339 20871 10117 20871 10115 20872 10339 20872 10116 20872 10088 20873 10105 20873 10115 20873 10115 20874 10105 20874 10086 20874 10115 20875 10086 20875 10339 20875 10339 20876 10086 20876 10333 20876 10333 20877 10086 20877 10102 20877 10333 20878 10102 20878 10334 20878 10334 20879 10102 20879 10100 20879 10334 20880 10100 20880 10087 20880 10334 20881 10087 20881 10257 20881 10334 20882 10257 20882 10335 20882 10335 20883 10257 20883 10259 20883 10090 20884 8092 20884 10088 20884 10088 20885 8092 20885 10112 20885 10088 20886 10112 20886 10105 20886 10105 20887 10112 20887 10089 20887 10089 20888 10112 20888 10108 20888 10089 20889 10108 20889 10106 20889 10114 20890 3168 20890 10090 20890 10090 20891 3168 20891 8092 20891 8092 20892 10110 20892 10112 20892 10257 20893 10087 20893 10253 20893 10253 20894 10087 20894 10091 20894 10253 20895 10091 20895 10254 20895 10092 20896 10365 20896 10050 20896 10368 20897 10050 20897 10365 20897 10050 20898 10368 20898 10311 20898 10311 20899 10368 20899 10310 20899 10310 20900 10368 20900 10364 20900 10310 20901 10364 20901 10307 20901 10366 20902 10363 20902 10190 20902 10282 20903 10354 20903 10279 20903 10279 20904 10354 20904 10349 20904 10279 20905 10349 20905 10276 20905 10276 20906 10349 20906 10093 20906 10093 20907 10349 20907 10353 20907 10085 20908 10336 20908 10338 20908 10265 20909 10338 20909 10340 20909 10265 20910 10340 20910 10258 20910 10258 20911 10340 20911 10263 20911 10263 20912 10340 20912 10259 20912 10259 20913 10340 20913 10335 20913 10320 20914 10292 20914 10296 20914 10292 20915 10320 20915 10322 20915 10292 20916 10322 20916 10293 20916 10293 20917 10322 20917 10289 20917 10289 20918 10322 20918 10321 20918 10323 20919 10325 20919 10065 20919 10325 20920 10320 20920 10296 20920 10050 20921 10250 20921 10092 20921 10197 20922 10095 20922 10094 20922 10094 20923 10095 20923 10096 20923 10094 20924 10096 20924 10097 20924 10097 20925 10096 20925 10098 20925 10097 20926 10098 20926 10200 20926 10200 20927 10098 20927 10091 20927 10200 20928 10091 20928 10099 20928 10099 20929 10091 20929 10087 20929 10099 20930 10087 20930 10101 20930 10101 20931 10087 20931 10100 20931 10101 20932 10100 20932 10102 20932 10101 20933 10102 20933 10202 20933 10202 20934 10102 20934 10086 20934 10202 20935 10086 20935 10103 20935 10103 20936 10086 20936 10105 20936 10103 20937 10105 20937 10104 20937 10104 20938 10105 20938 10089 20938 10104 20939 10089 20939 10107 20939 10107 20940 10089 20940 10106 20940 10107 20941 10106 20941 10203 20941 10203 20942 10106 20942 10108 20942 10203 20943 10108 20943 10109 20943 10109 20944 10108 20944 10112 20944 10110 20945 10204 20945 10109 20945 10110 20946 8092 20946 10111 20946 10204 20947 10110 20947 10111 20947 10110 20948 10109 20948 10112 20948 10111 20949 8092 20949 10113 20949 10113 20950 8092 20950 3168 20950 10113 20951 3168 20951 10207 20951 10207 20952 3168 20952 10114 20952 10207 20953 10114 20953 10206 20953 10206 20954 10114 20954 10090 20954 10206 20955 10090 20955 10205 20955 10205 20956 10090 20956 10088 20956 10205 20957 10088 20957 10201 20957 10201 20958 10088 20958 10115 20958 10201 20959 10115 20959 10208 20959 10208 20960 10115 20960 10116 20960 10208 20961 10116 20961 10117 20961 10208 20962 10117 20962 10209 20962 10209 20963 10117 20963 10085 20963 10209 20964 10085 20964 10210 20964 10210 20965 10085 20965 10083 20965 10210 20966 10083 20966 10212 20966 10212 20967 10083 20967 10118 20967 10212 20968 10118 20968 10119 20968 10119 20969 10118 20969 10120 20969 10119 20970 10120 20970 10121 20970 10121 20971 10120 20971 3031 20971 10121 20972 3031 20972 6562 20972 6562 20973 3031 20973 3156 20973 6562 20974 3156 20974 10213 20974 10213 20975 3156 20975 10084 20975 10213 20976 10084 20976 10122 20976 10122 20977 10084 20977 10123 20977 10122 20978 10123 20978 10211 20978 10211 20979 10123 20979 10082 20979 10211 20980 10082 20980 10246 20980 10246 20981 10082 20981 10124 20981 10246 20982 10124 20982 10127 20982 10127 20983 10124 20983 10125 20983 10127 20984 10125 20984 10126 20984 10127 20985 10126 20985 10128 20985 10128 20986 10126 20986 10080 20986 10128 20987 10080 20987 10215 20987 10215 20988 10080 20988 10079 20988 10215 20989 10079 20989 10129 20989 10129 20990 10079 20990 10130 20990 10129 20991 10130 20991 10217 20991 10217 20992 10130 20992 10081 20992 10217 20993 10081 20993 6445 20993 6445 20994 10081 20994 3041 20994 6445 20995 3041 20995 6551 20995 6551 20996 3041 20996 3145 20996 10131 20997 7843 20997 10133 20997 10133 20998 10132 20998 6551 20998 10133 20999 6551 20999 3145 20999 7843 21000 10132 21000 10133 21000 7843 21001 10131 21001 7690 21001 7690 21002 10131 21002 10134 21002 7690 21003 10134 21003 10135 21003 10135 21004 10134 21004 10136 21004 10135 21005 10136 21005 10216 21005 10216 21006 10136 21006 10137 21006 10216 21007 10137 21007 10139 21007 10139 21008 10137 21008 10138 21008 10139 21009 10138 21009 10140 21009 10140 21010 10138 21010 10078 21010 10140 21011 10078 21011 10142 21011 10142 21012 10078 21012 10141 21012 10142 21013 10141 21013 10143 21013 10143 21014 10141 21014 10214 21014 10214 21015 10141 21015 10144 21015 10214 21016 10144 21016 10218 21016 10218 21017 10144 21017 10075 21017 10218 21018 10075 21018 10145 21018 10145 21019 10075 21019 10076 21019 10145 21020 10076 21020 10146 21020 10146 21021 10076 21021 10147 21021 10146 21022 10147 21022 7834 21022 7834 21023 10147 21023 10077 21023 7834 21024 10077 21024 10220 21024 10220 21025 10077 21025 10148 21025 10220 21026 10148 21026 10221 21026 10221 21027 10148 21027 10149 21027 10221 21028 10149 21028 10150 21028 10150 21029 10149 21029 10151 21029 10150 21030 10151 21030 10219 21030 10219 21031 10151 21031 10152 21031 10219 21032 10152 21032 10247 21032 10247 21033 10152 21033 10070 21033 10247 21034 10070 21034 10222 21034 10222 21035 10070 21035 10069 21035 10222 21036 10069 21036 10223 21036 10223 21037 10069 21037 10225 21037 10225 21038 10069 21038 10154 21038 10225 21039 10154 21039 10153 21039 10153 21040 10154 21040 10155 21040 10153 21041 10155 21041 10228 21041 10228 21042 10155 21042 10156 21042 10228 21043 10156 21043 10227 21043 10227 21044 10156 21044 10157 21044 10227 21045 10157 21045 10158 21045 10158 21046 10157 21046 10073 21046 10158 21047 10073 21047 7706 21047 7706 21048 10073 21048 10072 21048 10159 21049 10229 21049 10072 21049 10229 21050 7706 21050 10072 21050 10161 21051 10159 21051 10072 21051 10159 21052 10161 21052 10160 21052 10159 21053 10160 21053 10230 21053 10230 21054 10160 21054 10162 21054 10230 21055 10162 21055 10231 21055 10231 21056 10162 21056 10164 21056 10231 21057 10164 21057 10163 21057 10163 21058 10164 21058 10074 21058 10163 21059 10074 21059 10226 21059 10226 21060 10074 21060 10068 21060 10226 21061 10068 21061 10224 21061 10224 21062 10068 21062 10067 21062 10224 21063 10067 21063 10232 21063 10232 21064 10067 21064 10066 21064 10232 21065 10066 21065 10233 21065 10233 21066 10066 21066 10165 21066 10165 21067 10066 21067 10065 21067 10165 21068 10065 21068 10167 21068 10167 21069 10065 21069 10166 21069 10167 21070 10166 21070 10236 21070 10236 21071 10166 21071 10169 21071 10236 21072 10169 21072 10168 21072 10168 21073 10169 21073 10171 21073 10168 21074 10171 21074 10170 21074 10170 21075 10171 21075 10172 21075 10170 21076 10172 21076 10174 21076 10174 21077 10172 21077 10173 21077 10174 21078 10173 21078 10175 21078 10175 21079 10173 21079 10064 21079 10175 21080 10064 21080 10176 21080 10176 21081 10064 21081 10063 21081 10176 21082 10063 21082 10234 21082 10234 21083 10063 21083 10062 21083 10234 21084 10062 21084 10235 21084 10235 21085 10062 21085 10061 21085 10235 21086 10061 21086 10237 21086 10237 21087 10061 21087 10060 21087 10237 21088 10060 21088 10177 21088 10177 21089 10060 21089 10178 21089 10178 21090 10060 21090 10054 21090 10178 21091 10054 21091 10240 21091 10240 21092 10054 21092 10056 21092 10240 21093 10056 21093 10179 21093 10179 21094 10056 21094 10058 21094 10179 21095 10058 21095 10245 21095 10245 21096 10058 21096 10180 21096 10245 21097 10180 21097 10181 21097 10181 21098 10180 21098 10059 21098 10181 21099 10059 21099 10183 21099 10183 21100 10059 21100 10186 21100 10241 21101 10182 21101 10184 21101 10186 21102 10185 21102 10183 21102 10182 21103 10185 21103 10184 21103 10185 21104 10186 21104 10184 21104 10185 21105 10182 21105 10183 21105 10241 21106 10184 21106 10242 21106 10242 21107 10184 21107 10057 21107 10242 21108 10057 21108 10244 21108 10244 21109 10057 21109 10187 21109 10244 21110 10187 21110 10243 21110 10243 21111 10187 21111 10188 21111 10243 21112 10188 21112 10238 21112 10238 21113 10188 21113 10055 21113 10238 21114 10055 21114 10189 21114 10189 21115 10055 21115 10190 21115 10189 21116 10190 21116 10239 21116 10239 21117 10190 21117 10191 21117 10239 21118 10191 21118 10053 21118 10239 21119 10053 21119 10192 21119 10192 21120 10053 21120 10092 21120 10192 21121 10092 21121 10193 21121 10193 21122 10092 21122 10251 21122 10193 21123 10251 21123 10199 21123 10199 21124 10251 21124 10052 21124 10199 21125 10052 21125 10194 21125 10194 21126 10052 21126 10195 21126 10194 21127 10195 21127 10196 21127 10196 21128 10195 21128 10198 21128 10196 21129 10198 21129 10197 21129 10197 21130 10198 21130 10095 21130 10194 21131 10196 21131 10199 21131 10199 21132 10196 21132 10197 21132 10199 21133 10197 21133 10097 21133 10097 21134 10197 21134 10094 21134 10097 21135 10200 21135 10199 21135 10199 21136 10200 21136 10193 21136 10193 21137 10200 21137 10252 21137 10099 21138 10255 21138 10200 21138 10101 21139 10332 21139 10099 21139 10101 21140 10331 21140 10332 21140 10202 21141 10331 21141 10101 21141 10103 21142 10201 21142 10202 21142 10202 21143 10201 21143 10326 21143 10202 21144 10326 21144 10331 21144 10104 21145 10109 21145 10103 21145 10103 21146 10109 21146 10205 21146 10103 21147 10205 21147 10201 21147 10107 21148 10203 21148 10104 21148 10104 21149 10203 21149 10109 21149 10109 21150 10204 21150 10111 21150 10109 21151 10111 21151 10205 21151 10205 21152 10111 21152 10206 21152 10206 21153 10111 21153 10113 21153 10206 21154 10113 21154 10207 21154 10326 21155 10201 21155 10208 21155 10326 21156 10208 21156 10329 21156 10329 21157 10208 21157 10328 21157 10328 21158 10208 21158 10209 21158 10328 21159 10209 21159 10264 21159 10328 21160 10264 21160 10327 21160 10264 21161 10209 21161 10268 21161 10268 21162 10209 21162 10210 21162 10268 21163 10210 21163 10272 21163 10272 21164 10210 21164 10211 21164 10272 21165 10211 21165 10269 21165 10269 21166 10211 21166 10246 21166 10269 21167 10246 21167 10275 21167 10275 21168 10246 21168 10342 21168 10211 21169 10210 21169 10122 21169 10122 21170 10210 21170 10212 21170 10122 21171 10212 21171 6562 21171 6562 21172 10212 21172 10121 21172 10121 21173 10212 21173 10119 21173 6562 21174 10213 21174 10122 21174 10127 21175 10342 21175 10246 21175 10127 21176 10345 21176 10342 21176 10128 21177 10344 21177 10127 21177 10127 21178 10344 21178 10345 21178 10215 21179 10139 21179 10128 21179 10128 21180 10139 21180 10140 21180 10128 21181 10140 21181 10344 21181 10344 21182 10140 21182 10142 21182 10344 21183 10142 21183 10346 21183 10346 21184 10142 21184 10143 21184 10346 21185 10143 21185 10343 21185 10343 21186 10143 21186 10214 21186 10343 21187 10214 21187 10280 21187 10343 21188 10280 21188 10278 21188 10129 21189 6551 21189 10215 21189 10215 21190 6551 21190 7843 21190 10215 21191 7843 21191 10139 21191 10139 21192 7843 21192 10216 21192 10216 21193 7843 21193 7690 21193 10216 21194 7690 21194 10135 21194 10217 21195 6445 21195 10129 21195 10129 21196 6445 21196 6551 21196 7843 21197 6551 21197 10132 21197 10280 21198 10214 21198 10218 21198 10280 21199 10218 21199 10283 21199 10283 21200 10218 21200 10287 21200 10287 21201 10218 21201 10219 21201 10287 21202 10219 21202 10286 21202 10286 21203 10219 21203 10247 21203 10286 21204 10247 21204 10288 21204 10288 21205 10247 21205 10317 21205 10218 21206 10145 21206 10219 21206 10219 21207 10145 21207 10150 21207 10150 21208 10145 21208 7834 21208 10150 21209 7834 21209 10220 21209 10145 21210 10146 21210 7834 21210 10220 21211 10221 21211 10150 21211 10222 21212 10317 21212 10247 21212 10222 21213 10314 21213 10317 21213 10223 21214 10314 21214 10222 21214 10225 21215 10316 21215 10223 21215 10223 21216 10316 21216 10314 21216 10153 21217 10224 21217 10225 21217 10225 21218 10224 21218 10316 21218 10228 21219 7706 21219 10153 21219 10153 21220 7706 21220 10226 21220 10153 21221 10226 21221 10224 21221 10227 21222 10158 21222 10228 21222 10228 21223 10158 21223 7706 21223 10226 21224 7706 21224 10159 21224 10159 21225 7706 21225 10229 21225 10226 21226 10159 21226 10163 21226 10163 21227 10159 21227 10230 21227 10163 21228 10230 21228 10231 21228 10316 21229 10224 21229 10232 21229 10316 21230 10232 21230 10313 21230 10313 21231 10232 21231 10233 21231 10313 21232 10233 21232 10165 21232 10313 21233 10165 21233 10295 21233 10313 21234 10295 21234 10315 21234 10295 21235 10165 21235 10298 21235 10298 21236 10165 21236 10167 21236 10298 21237 10167 21237 10297 21237 10297 21238 10167 21238 10234 21238 10297 21239 10234 21239 10300 21239 10300 21240 10234 21240 10302 21240 10302 21241 10234 21241 10235 21241 10302 21242 10235 21242 10304 21242 10304 21243 10235 21243 10357 21243 10234 21244 10167 21244 10176 21244 10176 21245 10167 21245 10236 21245 10176 21246 10236 21246 10174 21246 10174 21247 10236 21247 10170 21247 10170 21248 10236 21248 10168 21248 10174 21249 10175 21249 10176 21249 10237 21250 10355 21250 10235 21250 10235 21251 10355 21251 10357 21251 10177 21252 10355 21252 10237 21252 10178 21253 10355 21253 10177 21253 10240 21254 10238 21254 10178 21254 10178 21255 10238 21255 10189 21255 10178 21256 10189 21256 10355 21256 10355 21257 10189 21257 10356 21257 10356 21258 10189 21258 10239 21258 10356 21259 10239 21259 10358 21259 10358 21260 10239 21260 10192 21260 10358 21261 10192 21261 10359 21261 10359 21262 10192 21262 10051 21262 10179 21263 10183 21263 10240 21263 10240 21264 10183 21264 10241 21264 10240 21265 10241 21265 10238 21265 10238 21266 10241 21266 10243 21266 10243 21267 10241 21267 10242 21267 10243 21268 10242 21268 10244 21268 10245 21269 10181 21269 10179 21269 10179 21270 10181 21270 10183 21270 10183 21271 10182 21271 10241 21271 10051 21272 10192 21272 10249 21272 10249 21273 10192 21273 10193 21273 10249 21274 10193 21274 10252 21274 10357 21275 10360 21275 10304 21275 10304 21276 10360 21276 10305 21276 10305 21277 10360 21277 10309 21277 10309 21278 10360 21278 10308 21278 10308 21279 10360 21279 10359 21279 10308 21280 10359 21280 10051 21280 10341 21281 10274 21281 10342 21281 10342 21282 10274 21282 10275 21282 10274 21283 10341 21283 10277 21283 10277 21284 10341 21284 10278 21284 10278 21285 10341 21285 10343 21285 10099 21286 10332 21286 10256 21286 10330 21287 10262 21287 10332 21287 10332 21288 10262 21288 10256 21288 10262 21289 10330 21289 10261 21289 10261 21290 10330 21290 10260 21290 10260 21291 10330 21291 10327 21291 10260 21292 10327 21292 10264 21292 10288 21293 10317 21293 10319 21293 10288 21294 10319 21294 10291 21294 10291 21295 10319 21295 10290 21295 10290 21296 10319 21296 10294 21296 10294 21297 10319 21297 10315 21297 10294 21298 10315 21298 10295 21298 10256 21299 10255 21299 10099 21299 10200 21300 10255 21300 10252 21300 10252 21301 10254 21301 10248 21301 10249 21302 10248 21302 10250 21302 10249 21303 10252 21303 10248 21303 10251 21304 10250 21304 10248 21304 10252 21305 10253 21305 10254 21305 10255 21306 10253 21306 10252 21306 10256 21307 10257 21307 10255 21307 10255 21308 10257 21308 10253 21308 10256 21309 10262 21309 10257 21309 10262 21310 10259 21310 10257 21310 10262 21311 10263 21311 10259 21311 10261 21312 10260 21312 10263 21312 10262 21313 10261 21313 10263 21313 10258 21314 10263 21314 10260 21314 10260 21315 10264 21315 10258 21315 10258 21316 10264 21316 10265 21316 10268 21317 10267 21317 10264 21317 10264 21318 10267 21318 10265 21318 10267 21319 10272 21319 10266 21319 10268 21320 10272 21320 10267 21320 10272 21321 10271 21321 10266 21321 10272 21322 10269 21322 10271 21322 10271 21323 10269 21323 10270 21323 10275 21324 10273 21324 10269 21324 10269 21325 10273 21325 10270 21325 10275 21326 10274 21326 10273 21326 10273 21327 10274 21327 10093 21327 10277 21328 10279 21328 10276 21328 10093 21329 10277 21329 10276 21329 10093 21330 10274 21330 10277 21330 10278 21331 10279 21331 10277 21331 10278 21332 10280 21332 10282 21332 10278 21333 10282 21333 10279 21333 10280 21334 10283 21334 10282 21334 10282 21335 10283 21335 10281 21335 10287 21336 10285 21336 10283 21336 10283 21337 10285 21337 10281 21337 10287 21338 10284 21338 10285 21338 10286 21339 10284 21339 10287 21339 10288 21340 10071 21340 10286 21340 10286 21341 10071 21341 10284 21341 10288 21342 10289 21342 10071 21342 10288 21343 10291 21343 10289 21343 10290 21344 10294 21344 10292 21344 10293 21345 10289 21345 10291 21345 10290 21346 10293 21346 10291 21346 10292 21347 10293 21347 10290 21347 10294 21348 10295 21348 10292 21348 10292 21349 10295 21349 10296 21349 10298 21350 10299 21350 10295 21350 10295 21351 10299 21351 10296 21351 10299 21352 10298 21352 10297 21352 10301 21353 10299 21353 10297 21353 10300 21354 10301 21354 10297 21354 10300 21355 10303 21355 10301 21355 10303 21356 10300 21356 10302 21356 10304 21357 10306 21357 10302 21357 10302 21358 10306 21358 10303 21358 10306 21359 10305 21359 10307 21359 10304 21360 10305 21360 10306 21360 10309 21361 10307 21361 10305 21361 10307 21362 10309 21362 10310 21362 10309 21363 10308 21363 10310 21363 10310 21364 10308 21364 10311 21364 10314 21365 10316 21365 10312 21365 10317 21366 10318 21366 10319 21366 10315 21367 10325 21367 10313 21367 10317 21368 10314 21368 10324 21368 10313 21369 10325 21369 10323 21369 10313 21370 10323 21370 10316 21370 10317 21371 10324 21371 10321 21371 10319 21372 10318 21372 10322 21372 10315 21373 10319 21373 10320 21373 10316 21374 10323 21374 10312 21374 10319 21375 10322 21375 10320 21375 10318 21376 10317 21376 10321 21376 10318 21377 10321 21377 10322 21377 10315 21378 10320 21378 10325 21378 10314 21379 10312 21379 10324 21379 10326 21380 10329 21380 10339 21380 10327 21381 10330 21381 10340 21381 10327 21382 10338 21382 10328 21382 10331 21383 10334 21383 10332 21383 10329 21384 10328 21384 10337 21384 10327 21385 10340 21385 10338 21385 10326 21386 10339 21386 10331 21386 10331 21387 10333 21387 10334 21387 10329 21388 10337 21388 10339 21388 10339 21389 10333 21389 10331 21389 10332 21390 10335 21390 10330 21390 10332 21391 10334 21391 10335 21391 10330 21392 10335 21392 10340 21392 10328 21393 10336 21393 10337 21393 10328 21394 10338 21394 10336 21394 10337 21395 10336 21395 10339 21395 10342 21396 10345 21396 10352 21396 10341 21397 10347 21397 10343 21397 10344 21398 10346 21398 10350 21398 10345 21399 10344 21399 10351 21399 10346 21400 10348 21400 10350 21400 10347 21401 10341 21401 10349 21401 10343 21402 10347 21402 10354 21402 10343 21403 10354 21403 10346 21403 10345 21404 10351 21404 10352 21404 10346 21405 10354 21405 10348 21405 10342 21406 10352 21406 10353 21406 10347 21407 10349 21407 10354 21407 10342 21408 10353 21408 10341 21408 10344 21409 10350 21409 10351 21409 10341 21410 10353 21410 10349 21410 10364 21411 10367 21411 10362 21411 10355 21412 10356 21412 10366 21412 10360 21413 10357 21413 10367 21413 10357 21414 10362 21414 10367 21414 10360 21415 10367 21415 10364 21415 10356 21416 10363 21416 10366 21416 10355 21417 10366 21417 10361 21417 10357 21418 10355 21418 10361 21418 10358 21419 10359 21419 10365 21419 10358 21420 10363 21420 10356 21420 10357 21421 10361 21421 10362 21421 10359 21422 10368 21422 10365 21422 10358 21423 10365 21423 10363 21423 10359 21424 10360 21424 10368 21424 10360 21425 10364 21425 10368 21425 10574 21426 10369 21426 10568 21426 10568 21427 10369 21427 10414 21427 10414 21428 10631 21428 10568 21428 10370 21429 10371 21429 10417 21429 10417 21430 10371 21430 10373 21430 10417 21431 10373 21431 10418 21431 10370 21432 10372 21432 10371 21432 10371 21433 10522 21433 10373 21433 10373 21434 10522 21434 10421 21434 10421 21435 10522 21435 10573 21435 10421 21436 10573 21436 10576 21436 10374 21437 10369 21437 10522 21437 10519 21438 10680 21438 10374 21438 10374 21439 10680 21439 10674 21439 10519 21440 10678 21440 10680 21440 10375 21441 10678 21441 10519 21441 10518 21442 10379 21442 10375 21442 10375 21443 10379 21443 10678 21443 10376 21444 10514 21444 10518 21444 10518 21445 10514 21445 10506 21445 10518 21446 10506 21446 10379 21446 10516 21447 10377 21447 10376 21447 10376 21448 10377 21448 10514 21448 10506 21449 10514 21449 10509 21449 10509 21450 10514 21450 10511 21450 10506 21451 10509 21451 10378 21451 10378 21452 10509 21452 10508 21452 10378 21453 10508 21453 10507 21453 10678 21454 10379 21454 10380 21454 10678 21455 10380 21455 10681 21455 10681 21456 10380 21456 10677 21456 10677 21457 10380 21457 10381 21457 10677 21458 10381 21458 10627 21458 10677 21459 10627 21459 10679 21459 10679 21460 10627 21460 10629 21460 10627 21461 10381 21461 10622 21461 10622 21462 10381 21462 10502 21462 10622 21463 10502 21463 10624 21463 10624 21464 10502 21464 10382 21464 10624 21465 10382 21465 10619 21465 10619 21466 10382 21466 10416 21466 10619 21467 10416 21467 10640 21467 10382 21468 10502 21468 10383 21468 10383 21469 10502 21469 10501 21469 10383 21470 10501 21470 10386 21470 10386 21471 10501 21471 10384 21471 10384 21472 10501 21472 10385 21472 10386 21473 10497 21473 10383 21473 10387 21474 10640 21474 10416 21474 10387 21475 10642 21475 10640 21475 10415 21476 10642 21476 10387 21476 10392 21477 10482 21477 10415 21477 10415 21478 10482 21478 10388 21478 10415 21479 10388 21479 10642 21479 10642 21480 10388 21480 10389 21480 10642 21481 10389 21481 10643 21481 10643 21482 10389 21482 10390 21482 10643 21483 10390 21483 10395 21483 10643 21484 10395 21484 10391 21484 10643 21485 10391 21485 10641 21485 10641 21486 10391 21486 10615 21486 10494 21487 10486 21487 10392 21487 10392 21488 10486 21488 10488 21488 10392 21489 10488 21489 10482 21489 10482 21490 10488 21490 10393 21490 10393 21491 10488 21491 7426 21491 10393 21492 7426 21492 10394 21492 10492 21493 10489 21493 10494 21493 10494 21494 10489 21494 10486 21494 10486 21495 10485 21495 10488 21495 10391 21496 10395 21496 10610 21496 10610 21497 10395 21497 10396 21497 10610 21498 10396 21498 10608 21498 10608 21499 10396 21499 10607 21499 10607 21500 10396 21500 10397 21500 10607 21501 10397 21501 10606 21501 10606 21502 10397 21502 10398 21502 10606 21503 10398 21503 10603 21503 10603 21504 10398 21504 10667 21504 10396 21505 10400 21505 10397 21505 10397 21506 10400 21506 10475 21506 10475 21507 10400 21507 10476 21507 10475 21508 10476 21508 10399 21508 10477 21509 7415 21509 10400 21509 10400 21510 7415 21510 10476 21510 10471 21511 10669 21511 10398 21511 10471 21512 10668 21512 10669 21512 10470 21513 10668 21513 10471 21513 10402 21514 10668 21514 10470 21514 10401 21515 10459 21515 10402 21515 10402 21516 10459 21516 10668 21516 10469 21517 10464 21517 10401 21517 10401 21518 10464 21518 10403 21518 10401 21519 10403 21519 10459 21519 10467 21520 10404 21520 10469 21520 10469 21521 10404 21521 10464 21521 10464 21522 10405 21522 6553 21522 10464 21523 6553 21523 10403 21523 10403 21524 6553 21524 10460 21524 10460 21525 6553 21525 10462 21525 10460 21526 10462 21526 10461 21526 10668 21527 10459 21527 10658 21527 10658 21528 10459 21528 10406 21528 10658 21529 10406 21529 10455 21529 10658 21530 10455 21530 10407 21530 10658 21531 10407 21531 10670 21531 10670 21532 10407 21532 10594 21532 10594 21533 10407 21533 10591 21533 10591 21534 10407 21534 10453 21534 10591 21535 10453 21535 10592 21535 10592 21536 10453 21536 10444 21536 10592 21537 10444 21537 10590 21537 10590 21538 10444 21538 10587 21538 10587 21539 10444 21539 10443 21539 10587 21540 10443 21540 10584 21540 10584 21541 10443 21541 10654 21541 10444 21542 10453 21542 10408 21542 10408 21543 10453 21543 10451 21543 10408 21544 10451 21544 6563 21544 6563 21545 10451 21545 10447 21545 10447 21546 10451 21546 10449 21546 6563 21547 10445 21547 10408 21547 10441 21548 10650 21548 10443 21548 10443 21549 10650 21549 10654 21549 10409 21550 10655 21550 10441 21550 10441 21551 10655 21551 10650 21551 10410 21552 10655 21552 10409 21552 10439 21553 10428 21553 10410 21553 10410 21554 10428 21554 10427 21554 10410 21555 10427 21555 10655 21555 10655 21556 10427 21556 10652 21556 10652 21557 10427 21557 10423 21557 10652 21558 10423 21558 10651 21558 10651 21559 10423 21559 10422 21559 10651 21560 10422 21560 10656 21560 10656 21561 10422 21561 10578 21561 10438 21562 6645 21562 10439 21562 10439 21563 6645 21563 10433 21563 10439 21564 10433 21564 10428 21564 10428 21565 10433 21565 10429 21565 10429 21566 10433 21566 10411 21566 10429 21567 10411 21567 10412 21567 10413 21568 10436 21568 10438 21568 10438 21569 10436 21569 6645 21569 10578 21570 10422 21570 10421 21570 10578 21571 10421 21571 10576 21571 10374 21572 10674 21572 10369 21572 10674 21573 10414 21573 10369 21573 10414 21574 10674 21574 10679 21574 10414 21575 10679 21575 10630 21575 10630 21576 10679 21576 10629 21576 10398 21577 10669 21577 10667 21577 10603 21578 10667 21578 10602 21578 10602 21579 10667 21579 10600 21579 10600 21580 10667 21580 10599 21580 10599 21581 10667 21581 10670 21581 10599 21582 10670 21582 10594 21582 10584 21583 10654 21583 10657 21583 10584 21584 10657 21584 10585 21584 10585 21585 10657 21585 10580 21585 10580 21586 10657 21586 10578 21586 10578 21587 10657 21587 10656 21587 10638 21588 10612 21588 10640 21588 10640 21589 10612 21589 10619 21589 10612 21590 10638 21590 10616 21590 10616 21591 10638 21591 10641 21591 10616 21592 10641 21592 10615 21592 10522 21593 10369 21593 10573 21593 10525 21594 10417 21594 10419 21594 10419 21595 10417 21595 10418 21595 10419 21596 10418 21596 10526 21596 10526 21597 10418 21597 10373 21597 10526 21598 10373 21598 10420 21598 10420 21599 10373 21599 10421 21599 10420 21600 10421 21600 10529 21600 10529 21601 10421 21601 10422 21601 10529 21602 10422 21602 10424 21602 10424 21603 10422 21603 10423 21603 10424 21604 10423 21604 10425 21604 10425 21605 10423 21605 10426 21605 10426 21606 10423 21606 10427 21606 10426 21607 10427 21607 10530 21607 10530 21608 10427 21608 10428 21608 10530 21609 10428 21609 10532 21609 10532 21610 10428 21610 10429 21610 10532 21611 10429 21611 10531 21611 10531 21612 10429 21612 10412 21612 10531 21613 10412 21613 10430 21613 10430 21614 10412 21614 10411 21614 10430 21615 10411 21615 10434 21615 10434 21616 10411 21616 10433 21616 10431 21617 6645 21617 10432 21617 10433 21618 10431 21618 10434 21618 10433 21619 6645 21619 10431 21619 10432 21620 6645 21620 10435 21620 10435 21621 6645 21621 10436 21621 10435 21622 10436 21622 10437 21622 10437 21623 10436 21623 10413 21623 10437 21624 10413 21624 10534 21624 10534 21625 10413 21625 10438 21625 10534 21626 10438 21626 10533 21626 10533 21627 10438 21627 10439 21627 10533 21628 10439 21628 10535 21628 10535 21629 10439 21629 10410 21629 10535 21630 10410 21630 10440 21630 10440 21631 10410 21631 10409 21631 10440 21632 10409 21632 10441 21632 10440 21633 10441 21633 10442 21633 10442 21634 10441 21634 10443 21634 10442 21635 10443 21635 10536 21635 10536 21636 10443 21636 10444 21636 10536 21637 10444 21637 10538 21637 10538 21638 10444 21638 10408 21638 10538 21639 10408 21639 10539 21639 10539 21640 10408 21640 10445 21640 10539 21641 10445 21641 10446 21641 10446 21642 10445 21642 6563 21642 10446 21643 6563 21643 10537 21643 10537 21644 6563 21644 10447 21644 10537 21645 10447 21645 10448 21645 10448 21646 10447 21646 10449 21646 10448 21647 10449 21647 10450 21647 10450 21648 10449 21648 10451 21648 10450 21649 10451 21649 10452 21649 10452 21650 10451 21650 10453 21650 10452 21651 10453 21651 10454 21651 10454 21652 10453 21652 10407 21652 10454 21653 10407 21653 10456 21653 10456 21654 10407 21654 10455 21654 10456 21655 10455 21655 10406 21655 10456 21656 10406 21656 10457 21656 10457 21657 10406 21657 10459 21657 10457 21658 10459 21658 10458 21658 10458 21659 10459 21659 10403 21659 10458 21660 10403 21660 10542 21660 10542 21661 10403 21661 10460 21661 10542 21662 10460 21662 10545 21662 10545 21663 10460 21663 10461 21663 10545 21664 10461 21664 3147 21664 3147 21665 10461 21665 10462 21665 3147 21666 10462 21666 3144 21666 3144 21667 10462 21667 6553 21667 10463 21668 3144 21668 6553 21668 10405 21669 10464 21669 10544 21669 10463 21670 10405 21670 10544 21670 10405 21671 10463 21671 6553 21671 10544 21672 10464 21672 10465 21672 10465 21673 10464 21673 10404 21673 10465 21674 10404 21674 10466 21674 10466 21675 10404 21675 10467 21675 10466 21676 10467 21676 10468 21676 10468 21677 10467 21677 10469 21677 10468 21678 10469 21678 10543 21678 10543 21679 10469 21679 10401 21679 10543 21680 10401 21680 10540 21680 10540 21681 10401 21681 10402 21681 10540 21682 10402 21682 10541 21682 10541 21683 10402 21683 10470 21683 10541 21684 10470 21684 10471 21684 10541 21685 10471 21685 10472 21685 10472 21686 10471 21686 10398 21686 10472 21687 10398 21687 10473 21687 10473 21688 10398 21688 10397 21688 10473 21689 10397 21689 10547 21689 10547 21690 10397 21690 10475 21690 10547 21691 10475 21691 10474 21691 10474 21692 10475 21692 10399 21692 10474 21693 10399 21693 10549 21693 10549 21694 10399 21694 10476 21694 10549 21695 10476 21695 10548 21695 10548 21696 10476 21696 7415 21696 10548 21697 7415 21697 10478 21697 10478 21698 7415 21698 10477 21698 10478 21699 10477 21699 10479 21699 10479 21700 10477 21700 10400 21700 10479 21701 10400 21701 10546 21701 10546 21702 10400 21702 10396 21702 10546 21703 10396 21703 10550 21703 10550 21704 10396 21704 10395 21704 10550 21705 10395 21705 10480 21705 10480 21706 10395 21706 10390 21706 10480 21707 10390 21707 10389 21707 10480 21708 10389 21708 10481 21708 10481 21709 10389 21709 10388 21709 10481 21710 10388 21710 10551 21710 10551 21711 10388 21711 10482 21711 10551 21712 10482 21712 10555 21712 10555 21713 10482 21713 10393 21713 10555 21714 10393 21714 10554 21714 10554 21715 10393 21715 10394 21715 10554 21716 10394 21716 10483 21716 10483 21717 10394 21717 7426 21717 10483 21718 7426 21718 10484 21718 10484 21719 7426 21719 10488 21719 10487 21720 10485 21720 10486 21720 10485 21721 10487 21721 10488 21721 10487 21722 10484 21722 10488 21722 10487 21723 10486 21723 10490 21723 10490 21724 10486 21724 10489 21724 10490 21725 10489 21725 10491 21725 10491 21726 10489 21726 10492 21726 10491 21727 10492 21727 10493 21727 10493 21728 10492 21728 10494 21728 10493 21729 10494 21729 10552 21729 10552 21730 10494 21730 10392 21730 10552 21731 10392 21731 10553 21731 10553 21732 10392 21732 10415 21732 10553 21733 10415 21733 10556 21733 10556 21734 10415 21734 10387 21734 10556 21735 10387 21735 10557 21735 10557 21736 10387 21736 10558 21736 10558 21737 10387 21737 10416 21737 10558 21738 10416 21738 10495 21738 10495 21739 10416 21739 10382 21739 10495 21740 10382 21740 10561 21740 10561 21741 10382 21741 10383 21741 10561 21742 10383 21742 10496 21742 10496 21743 10383 21743 10497 21743 10496 21744 10497 21744 10562 21744 10562 21745 10497 21745 10386 21745 10562 21746 10386 21746 10498 21746 10498 21747 10386 21747 10384 21747 10498 21748 10384 21748 10499 21748 10499 21749 10384 21749 10385 21749 10499 21750 10385 21750 10500 21750 10500 21751 10385 21751 10501 21751 10500 21752 10501 21752 10559 21752 10559 21753 10501 21753 10502 21753 10559 21754 10502 21754 10560 21754 10560 21755 10502 21755 10381 21755 10560 21756 10381 21756 10563 21756 10563 21757 10381 21757 10380 21757 10563 21758 10380 21758 10503 21758 10503 21759 10380 21759 10504 21759 10504 21760 10380 21760 10379 21760 10504 21761 10379 21761 10505 21761 10505 21762 10379 21762 10506 21762 10505 21763 10506 21763 10571 21763 10571 21764 10506 21764 10378 21764 10571 21765 10378 21765 10570 21765 10570 21766 10378 21766 10507 21766 10570 21767 10507 21767 10572 21767 10572 21768 10507 21768 10508 21768 10572 21769 10508 21769 10510 21769 10510 21770 10508 21770 10509 21770 10510 21771 10509 21771 10512 21771 10512 21772 10509 21772 10511 21772 10512 21773 10511 21773 10513 21773 10513 21774 10511 21774 10514 21774 10513 21775 10514 21775 10569 21775 10569 21776 10514 21776 10377 21776 10569 21777 10377 21777 10515 21777 10515 21778 10377 21778 10516 21778 10515 21779 10516 21779 10517 21779 10517 21780 10516 21780 10376 21780 10517 21781 10376 21781 10565 21781 10565 21782 10376 21782 10518 21782 10565 21783 10518 21783 10566 21783 10566 21784 10518 21784 10375 21784 10566 21785 10375 21785 10520 21785 10520 21786 10375 21786 10519 21786 10520 21787 10519 21787 10567 21787 10567 21788 10519 21788 10521 21788 10521 21789 10519 21789 10374 21789 10521 21790 10374 21790 10528 21790 10528 21791 10374 21791 10522 21791 10528 21792 10522 21792 10527 21792 10527 21793 10522 21793 10371 21793 10527 21794 10371 21794 10523 21794 10523 21795 10371 21795 10372 21795 10523 21796 10372 21796 10524 21796 10524 21797 10372 21797 10370 21797 10524 21798 10370 21798 10525 21798 10525 21799 10370 21799 10417 21799 10523 21800 10524 21800 10527 21800 10527 21801 10524 21801 10525 21801 10527 21802 10525 21802 10526 21802 10526 21803 10525 21803 10419 21803 10526 21804 10420 21804 10527 21804 10527 21805 10420 21805 10528 21805 10528 21806 10420 21806 10575 21806 10529 21807 10577 21807 10420 21807 10424 21808 10648 21808 10529 21808 10529 21809 10648 21809 10647 21809 10425 21810 10648 21810 10424 21810 10426 21811 10648 21811 10425 21811 10530 21812 10535 21812 10426 21812 10426 21813 10535 21813 10649 21813 10532 21814 10434 21814 10530 21814 10530 21815 10434 21815 10533 21815 10530 21816 10533 21816 10535 21816 10531 21817 10430 21817 10532 21817 10532 21818 10430 21818 10434 21818 10434 21819 10431 21819 10432 21819 10434 21820 10432 21820 10533 21820 10533 21821 10432 21821 10534 21821 10534 21822 10432 21822 10435 21822 10534 21823 10435 21823 10437 21823 10649 21824 10535 21824 10440 21824 10649 21825 10440 21825 10645 21825 10645 21826 10440 21826 10442 21826 10645 21827 10442 21827 10586 21827 10645 21828 10586 21828 10644 21828 10644 21829 10586 21829 10583 21829 10586 21830 10442 21830 10588 21830 10588 21831 10442 21831 10536 21831 10588 21832 10536 21832 10589 21832 10589 21833 10536 21833 10452 21833 10589 21834 10452 21834 10593 21834 10593 21835 10452 21835 10454 21835 10593 21836 10454 21836 10595 21836 10595 21837 10454 21837 10666 21837 10452 21838 10536 21838 10450 21838 10450 21839 10536 21839 10538 21839 10450 21840 10538 21840 10537 21840 10537 21841 10538 21841 10446 21841 10446 21842 10538 21842 10539 21842 10537 21843 10448 21843 10450 21843 10456 21844 10660 21844 10454 21844 10456 21845 10663 21845 10660 21845 10457 21846 10663 21846 10456 21846 10458 21847 10543 21847 10457 21847 10457 21848 10543 21848 10540 21848 10457 21849 10540 21849 10663 21849 10663 21850 10540 21850 10659 21850 10659 21851 10540 21851 10541 21851 10659 21852 10541 21852 10664 21852 10664 21853 10541 21853 10661 21853 10661 21854 10541 21854 10472 21854 10661 21855 10472 21855 10662 21855 10662 21856 10472 21856 10601 21856 10662 21857 10601 21857 10596 21857 10542 21858 3144 21858 10458 21858 10458 21859 3144 21859 10544 21859 10458 21860 10544 21860 10543 21860 10543 21861 10544 21861 10468 21861 10468 21862 10544 21862 10465 21862 10468 21863 10465 21863 10466 21863 10545 21864 3147 21864 10542 21864 10542 21865 3147 21865 3144 21865 3144 21866 10463 21866 10544 21866 10601 21867 10472 21867 10605 21867 10605 21868 10472 21868 10473 21868 10605 21869 10473 21869 10604 21869 10604 21870 10473 21870 10609 21870 10609 21871 10473 21871 10546 21871 10609 21872 10546 21872 10611 21872 10611 21873 10546 21873 10550 21873 10611 21874 10550 21874 10637 21874 10473 21875 10547 21875 10546 21875 10546 21876 10547 21876 10479 21876 10479 21877 10547 21877 10549 21877 10479 21878 10549 21878 10548 21878 10547 21879 10474 21879 10549 21879 10548 21880 10478 21880 10479 21880 10480 21881 10632 21881 10550 21881 10550 21882 10632 21882 10637 21882 10480 21883 10635 21883 10632 21883 10481 21884 10635 21884 10480 21884 10551 21885 10553 21885 10481 21885 10481 21886 10553 21886 10635 21886 10555 21887 10484 21887 10551 21887 10551 21888 10484 21888 10552 21888 10551 21889 10552 21889 10553 21889 10554 21890 10483 21890 10555 21890 10555 21891 10483 21891 10484 21891 10552 21892 10484 21892 10487 21892 10552 21893 10487 21893 10493 21893 10493 21894 10487 21894 10490 21894 10493 21895 10490 21895 10491 21895 10635 21896 10553 21896 10556 21896 10635 21897 10556 21897 10634 21897 10634 21898 10556 21898 10557 21898 10634 21899 10557 21899 10558 21899 10634 21900 10558 21900 10633 21900 10633 21901 10558 21901 10618 21901 10618 21902 10558 21902 10620 21902 10620 21903 10558 21903 10495 21903 10620 21904 10495 21904 10621 21904 10621 21905 10495 21905 10559 21905 10621 21906 10559 21906 10623 21906 10623 21907 10559 21907 10625 21907 10625 21908 10559 21908 10560 21908 10625 21909 10560 21909 10626 21909 10626 21910 10560 21910 10675 21910 10559 21911 10495 21911 10500 21911 10500 21912 10495 21912 10561 21912 10500 21913 10561 21913 10498 21913 10498 21914 10561 21914 10562 21914 10562 21915 10561 21915 10496 21915 10498 21916 10499 21916 10500 21916 10563 21917 10564 21917 10560 21917 10560 21918 10564 21918 10675 21918 10503 21919 10672 21919 10563 21919 10563 21920 10672 21920 10564 21920 10504 21921 10672 21921 10503 21921 10505 21922 10565 21922 10504 21922 10504 21923 10565 21923 10566 21923 10504 21924 10566 21924 10672 21924 10672 21925 10566 21925 10673 21925 10673 21926 10566 21926 10520 21926 10673 21927 10520 21927 10671 21927 10671 21928 10520 21928 10567 21928 10671 21929 10567 21929 10521 21929 10671 21930 10521 21930 10568 21930 10671 21931 10568 21931 10676 21931 10571 21932 10510 21932 10505 21932 10505 21933 10510 21933 10513 21933 10505 21934 10513 21934 10565 21934 10565 21935 10513 21935 10517 21935 10517 21936 10513 21936 10569 21936 10517 21937 10569 21937 10515 21937 10570 21938 10572 21938 10571 21938 10571 21939 10572 21939 10510 21939 10510 21940 10512 21940 10513 21940 10568 21941 10521 21941 10574 21941 10574 21942 10521 21942 10528 21942 10574 21943 10528 21943 10575 21943 10626 21944 10675 21944 10628 21944 10628 21945 10675 21945 10676 21945 10628 21946 10676 21946 10631 21946 10631 21947 10676 21947 10568 21947 10595 21948 10666 21948 10598 21948 10598 21949 10666 21949 10662 21949 10598 21950 10662 21950 10597 21950 10597 21951 10662 21951 10596 21951 10660 21952 10666 21952 10454 21952 10529 21953 10647 21953 10579 21953 10646 21954 10579 21954 10647 21954 10579 21955 10646 21955 10581 21955 10581 21956 10646 21956 10582 21956 10582 21957 10646 21957 10644 21957 10582 21958 10644 21958 10583 21958 10649 21959 10648 21959 10426 21959 10611 21960 10637 21960 10614 21960 10614 21961 10637 21961 10636 21961 10614 21962 10636 21962 10613 21962 10613 21963 10636 21963 10617 21963 10617 21964 10636 21964 10633 21964 10617 21965 10633 21965 10618 21965 10579 21966 10577 21966 10529 21966 10420 21967 10577 21967 10575 21967 10575 21968 10576 21968 10573 21968 10369 21969 10574 21969 10573 21969 10574 21970 10575 21970 10573 21970 10576 21971 10577 21971 10578 21971 10576 21972 10575 21972 10577 21972 10579 21973 10578 21973 10577 21973 10579 21974 10581 21974 10580 21974 10579 21975 10580 21975 10578 21975 10581 21976 10582 21976 10580 21976 10583 21977 10585 21977 10582 21977 10585 21978 10580 21978 10582 21978 10586 21979 10584 21979 10583 21979 10585 21980 10583 21980 10584 21980 10588 21981 10587 21981 10586 21981 10586 21982 10587 21982 10584 21982 10589 21983 10590 21983 10588 21983 10590 21984 10587 21984 10588 21984 10589 21985 10592 21985 10590 21985 10593 21986 10591 21986 10592 21986 10592 21987 10589 21987 10593 21987 10595 21988 10594 21988 10593 21988 10593 21989 10594 21989 10591 21989 10598 21990 10599 21990 10595 21990 10594 21991 10595 21991 10599 21991 10597 21992 10600 21992 10599 21992 10600 21993 10597 21993 10602 21993 10598 21994 10597 21994 10599 21994 10602 21995 10597 21995 10596 21995 10596 21996 10601 21996 10602 21996 10603 21997 10602 21997 10601 21997 10605 21998 10606 21998 10601 21998 10601 21999 10606 21999 10603 21999 10605 22000 10604 22000 10606 22000 10606 22001 10604 22001 10607 22001 10609 22002 10608 22002 10604 22002 10604 22003 10608 22003 10607 22003 10610 22004 10609 22004 10611 22004 10610 22005 10608 22005 10609 22005 10611 22006 10391 22006 10610 22006 10611 22007 10614 22007 10391 22007 10614 22008 10615 22008 10391 22008 10612 22009 10616 22009 10617 22009 10617 22010 10616 22010 10613 22010 10615 22011 10614 22011 10616 22011 10614 22012 10613 22012 10616 22012 10612 22013 10618 22013 10619 22013 10617 22014 10618 22014 10612 22014 10620 22015 10619 22015 10618 22015 10619 22016 10620 22016 10624 22016 10621 22017 10624 22017 10620 22017 10623 22018 10624 22018 10621 22018 10624 22019 10623 22019 10622 22019 10625 22020 10622 22020 10623 22020 10626 22021 10627 22021 10625 22021 10625 22022 10627 22022 10622 22022 10626 22023 10628 22023 10627 22023 10628 22024 10629 22024 10627 22024 10630 22025 10628 22025 10631 22025 10630 22026 10631 22026 10414 22026 10629 22027 10628 22027 10630 22027 10636 22028 10638 22028 10633 22028 10635 22029 10639 22029 10632 22029 10632 22030 10643 22030 10637 22030 10635 22031 10642 22031 10639 22031 10636 22032 10641 22032 10638 22032 10635 22033 10634 22033 10642 22033 10636 22034 10637 22034 10641 22034 10633 22035 10638 22035 10640 22035 10632 22036 10639 22036 10643 22036 10634 22037 10633 22037 10640 22037 10634 22038 10640 22038 10642 22038 10637 22039 10643 22039 10641 22039 10639 22040 10642 22040 10643 22040 10645 22041 10644 22041 10654 22041 10647 22042 10656 22042 10646 22042 10644 22043 10646 22043 10653 22043 10646 22044 10657 22044 10653 22044 10647 22045 10648 22045 10651 22045 10644 22046 10653 22046 10654 22046 10645 22047 10654 22047 10650 22047 10646 22048 10656 22048 10657 22048 10647 22049 10651 22049 10656 22049 10645 22050 10650 22050 10649 22050 10649 22051 10655 22051 10648 22051 10649 22052 10650 22052 10655 22052 10648 22053 10655 22053 10652 22053 10648 22054 10652 22054 10651 22054 10653 22055 10657 22055 10654 22055 10670 22056 10665 22056 10658 22056 10661 22057 10669 22057 10664 22057 10666 22058 10667 22058 10662 22058 10664 22059 10669 22059 10659 22059 10662 22060 10667 22060 10661 22060 10663 22061 10659 22061 10668 22061 10660 22062 10663 22062 10665 22062 10666 22063 10670 22063 10667 22063 10663 22064 10658 22064 10665 22064 10660 22065 10665 22065 10666 22065 10666 22066 10665 22066 10670 22066 10661 22067 10667 22067 10669 22067 10659 22068 10669 22068 10668 22068 10663 22069 10668 22069 10658 22069 10676 22070 10675 22070 10679 22070 10671 22071 10680 22071 10673 22071 10671 22072 10676 22072 10674 22072 10675 22073 10564 22073 10677 22073 10564 22074 10672 22074 10681 22074 10673 22075 10680 22075 10678 22075 10564 22076 10681 22076 10677 22076 10672 22077 10673 22077 10678 22077 10672 22078 10678 22078 10681 22078 10671 22079 10674 22079 10680 22079 10675 22080 10677 22080 10679 22080 10676 22081 10679 22081 10674 22081 10928 22082 10930 22082 10682 22082 10682 22083 10930 22083 10684 22083 11005 22084 10682 22084 10683 22084 10682 22085 10684 22085 10683 22085 10877 22086 10873 22086 10737 22086 10737 22087 10873 22087 10687 22087 10737 22088 10687 22088 10685 22088 10877 22089 10874 22089 10873 22089 10873 22090 10686 22090 10687 22090 10687 22091 10686 22091 10740 22091 10740 22092 10686 22092 10931 22092 10740 22093 10931 22093 10932 22093 10871 22094 10930 22094 10686 22094 10686 22095 10930 22095 10931 22095 10870 22096 11094 22096 10871 22096 10871 22097 11094 22097 11096 22097 10688 22098 11094 22098 10870 22098 10869 22099 11094 22099 10688 22099 10689 22100 11097 22100 10869 22100 10869 22101 11097 22101 11094 22101 10690 22102 10852 22102 10689 22102 10689 22103 10852 22103 11097 22103 10691 22104 10863 22104 10690 22104 10690 22105 10863 22105 10692 22105 10690 22106 10692 22106 10852 22106 10867 22107 10865 22107 10691 22107 10691 22108 10865 22108 10863 22108 10692 22109 10863 22109 10857 22109 10857 22110 10863 22110 10860 22110 10692 22111 10857 22111 10693 22111 10693 22112 10857 22112 10694 22112 10693 22113 10694 22113 10695 22113 11097 22114 10852 22114 10696 22114 11097 22115 10696 22115 10697 22115 11097 22116 10697 22116 11098 22116 11098 22117 10697 22117 10698 22117 11098 22118 10698 22118 10699 22118 11098 22119 10699 22119 11095 22119 11095 22120 10699 22120 10998 22120 11095 22121 10998 22121 11099 22121 10998 22122 10699 22122 10993 22122 10993 22123 10699 22123 10846 22123 10993 22124 10846 22124 10700 22124 10700 22125 10846 22125 10837 22125 10700 22126 10837 22126 10989 22126 10989 22127 10837 22127 10990 22127 10990 22128 10837 22128 10701 22128 10990 22129 10701 22129 10988 22129 10988 22130 10701 22130 11026 22130 10837 22131 10846 22131 10838 22131 10838 22132 10846 22132 10845 22132 10838 22133 10845 22133 10840 22133 10840 22134 10845 22134 10842 22134 10842 22135 10845 22135 10844 22135 10840 22136 10839 22136 10838 22136 10702 22137 11028 22137 10701 22137 10703 22138 11028 22138 10702 22138 10833 22139 11028 22139 10703 22139 10831 22140 11022 22140 10833 22140 10833 22141 11022 22141 11028 22141 10708 22142 10816 22142 10831 22142 10831 22143 10816 22143 10814 22143 10831 22144 10814 22144 11022 22144 11022 22145 10814 22145 10704 22145 11022 22146 10704 22146 11029 22146 11029 22147 10704 22147 10705 22147 11029 22148 10705 22148 10706 22148 11029 22149 10706 22149 11030 22149 11030 22150 10706 22150 10707 22150 11030 22151 10707 22151 11027 22151 11027 22152 10707 22152 10978 22152 11027 22153 10978 22153 10981 22153 10830 22154 10820 22154 10708 22154 10708 22155 10820 22155 10827 22155 10708 22156 10827 22156 10816 22156 10816 22157 10827 22157 10817 22157 10817 22158 10827 22158 10709 22158 10817 22159 10709 22159 10710 22159 10829 22160 10828 22160 10830 22160 10830 22161 10828 22161 10820 22161 10820 22162 10823 22162 10827 22162 10978 22163 10707 22163 10712 22163 10712 22164 10707 22164 10711 22164 10712 22165 10711 22165 10977 22165 10977 22166 10711 22166 10973 22166 10973 22167 10711 22167 10713 22167 10973 22168 10713 22168 10974 22168 10974 22169 10713 22169 10803 22169 10974 22170 10803 22170 10734 22170 10734 22171 10803 22171 11066 22171 10734 22172 11066 22172 11075 22172 10711 22173 10714 22173 10713 22173 10713 22174 10714 22174 10715 22174 10715 22175 10714 22175 1938 22175 10715 22176 1938 22176 10806 22176 10808 22177 10716 22177 10714 22177 10714 22178 10716 22178 1938 22178 10717 22179 11066 22179 10803 22179 10800 22180 10718 22180 10717 22180 10717 22181 10718 22181 11066 22181 10719 22182 10718 22182 10800 22182 10799 22183 10718 22183 10719 22183 10797 22184 10722 22184 10799 22184 10799 22185 10722 22185 11072 22185 10799 22186 11072 22186 10718 22186 10796 22187 2065 22187 10797 22187 10797 22188 2065 22188 10720 22188 10797 22189 10720 22189 10722 22189 10721 22190 2073 22190 10796 22190 10796 22191 2073 22191 2065 22191 2065 22192 10792 22192 10789 22192 2065 22193 10789 22193 10720 22193 10720 22194 10789 22194 10785 22194 10785 22195 10789 22195 3584 22195 10785 22196 3584 22196 10788 22196 11072 22197 10722 22197 10723 22197 11072 22198 10723 22198 10724 22198 11072 22199 10724 22199 11054 22199 11054 22200 10724 22200 10725 22200 11054 22201 10725 22201 10727 22201 11054 22202 10727 22202 11073 22202 11073 22203 10727 22203 10726 22203 11073 22204 10726 22204 11074 22204 10726 22205 10727 22205 10957 22205 10957 22206 10727 22206 10779 22206 10957 22207 10779 22207 10954 22207 10954 22208 10779 22208 10770 22208 10954 22209 10770 22209 10953 22209 10953 22210 10770 22210 10952 22210 10952 22211 10770 22211 10735 22211 10952 22212 10735 22212 10948 22212 10948 22213 10735 22213 11051 22213 10770 22214 10779 22214 10728 22214 10728 22215 10779 22215 10777 22215 10728 22216 10777 22216 10774 22216 10774 22217 10777 22217 3590 22217 3590 22218 10777 22218 10775 22218 10774 22219 10772 22219 10728 22219 10768 22220 11052 22220 10735 22220 10735 22221 11052 22221 11051 22221 10765 22222 11052 22222 10768 22222 10729 22223 11045 22223 10765 22223 10765 22224 11045 22224 11052 22224 10763 22225 11045 22225 10729 22225 10762 22226 10746 22226 10763 22226 10763 22227 10746 22227 10744 22227 10763 22228 10744 22228 11045 22228 11045 22229 10744 22229 11047 22229 11047 22230 10744 22230 10730 22230 11047 22231 10730 22231 10731 22231 11047 22232 10731 22232 11048 22232 11048 22233 10731 22233 10741 22233 11048 22234 10741 22234 10732 22234 11048 22235 10732 22235 11049 22235 11049 22236 10732 22236 10936 22236 11049 22237 10936 22237 10946 22237 10761 22238 3606 22238 10762 22238 10762 22239 3606 22239 10753 22239 10762 22240 10753 22240 10746 22240 10746 22241 10753 22241 10747 22241 10747 22242 10753 22242 10750 22242 10747 22243 10750 22243 10748 22243 10760 22244 10733 22244 10761 22244 10761 22245 10733 22245 3606 22245 3606 22246 10757 22246 10753 22246 10936 22247 10732 22247 10934 22247 10934 22248 10732 22248 10740 22248 10934 22249 10740 22249 10932 22249 10871 22250 11096 22250 10684 22250 11100 22251 10684 22251 11096 22251 10684 22252 11100 22252 10683 22252 10683 22253 11100 22253 10999 22253 10999 22254 11100 22254 11003 22254 11003 22255 11100 22255 11002 22255 11002 22256 11100 22256 10996 22256 10996 22257 11100 22257 11099 22257 10996 22258 11099 22258 10998 22258 10734 22259 11075 22259 10965 22259 10965 22260 11075 22260 10968 22260 10968 22261 11075 22261 10962 22261 10962 22262 11075 22262 11074 22262 10962 22263 11074 22263 10961 22263 10961 22264 11074 22264 10726 22264 10948 22265 11051 22265 10941 22265 10941 22266 11051 22266 11050 22266 10941 22267 11050 22267 10943 22267 10943 22268 11050 22268 11049 22268 10943 22269 11049 22269 10945 22269 10945 22270 11049 22270 10946 22270 10988 22271 11024 22271 10986 22271 10986 22272 11024 22272 10736 22272 10736 22273 11024 22273 10985 22273 10985 22274 11024 22274 10981 22274 10981 22275 11024 22275 11027 22275 11028 22276 11026 22276 10701 22276 11026 22277 11024 22277 10988 22277 10684 22278 10930 22278 10871 22278 10879 22279 10737 22279 10738 22279 10738 22280 10737 22280 10685 22280 10738 22281 10685 22281 10739 22281 10739 22282 10685 22282 10687 22282 10739 22283 10687 22283 10927 22283 10927 22284 10687 22284 10740 22284 10927 22285 10740 22285 10925 22285 10925 22286 10740 22286 10732 22286 10925 22287 10732 22287 10880 22287 10880 22288 10732 22288 10741 22288 10880 22289 10741 22289 10881 22289 10881 22290 10741 22290 10731 22290 10881 22291 10731 22291 10742 22291 10742 22292 10731 22292 10730 22292 10742 22293 10730 22293 10882 22293 10882 22294 10730 22294 10744 22294 10882 22295 10744 22295 10743 22295 10743 22296 10744 22296 10746 22296 10743 22297 10746 22297 10745 22297 10745 22298 10746 22298 10747 22298 10745 22299 10747 22299 10884 22299 10884 22300 10747 22300 10748 22300 10884 22301 10748 22301 10749 22301 10749 22302 10748 22302 10750 22302 10749 22303 10750 22303 10755 22303 10755 22304 10750 22304 10753 22304 10754 22305 10756 22305 10752 22305 3606 22306 10752 22306 10756 22306 10756 22307 10753 22307 10757 22307 3606 22308 10756 22308 10757 22308 10753 22309 10754 22309 10755 22309 6992 22310 10752 22310 3606 22310 10751 22311 10754 22311 10752 22311 10752 22312 6992 22312 10751 22312 10754 22313 10751 22313 10755 22313 10756 22314 10754 22314 10753 22314 6992 22315 3606 22315 10758 22315 10758 22316 3606 22316 10733 22316 10758 22317 10733 22317 10759 22317 10759 22318 10733 22318 10760 22318 10759 22319 10760 22319 10885 22319 10885 22320 10760 22320 10761 22320 10885 22321 10761 22321 10883 22321 10883 22322 10761 22322 10762 22322 10883 22323 10762 22323 10886 22323 10886 22324 10762 22324 10763 22324 10886 22325 10763 22325 10764 22325 10764 22326 10763 22326 10729 22326 10764 22327 10729 22327 10766 22327 10766 22328 10729 22328 10765 22328 10766 22329 10765 22329 10767 22329 10767 22330 10765 22330 10768 22330 10767 22331 10768 22331 10887 22331 10887 22332 10768 22332 10735 22332 10887 22333 10735 22333 10769 22333 10769 22334 10735 22334 10770 22334 10769 22335 10770 22335 10771 22335 10771 22336 10770 22336 10728 22336 10771 22337 10728 22337 10773 22337 10773 22338 10728 22338 10772 22338 10773 22339 10772 22339 10892 22339 10892 22340 10772 22340 10774 22340 10892 22341 10774 22341 10891 22341 10891 22342 10774 22342 3590 22342 10891 22343 3590 22343 10893 22343 10893 22344 3590 22344 10775 22344 10893 22345 10775 22345 10890 22345 10890 22346 10775 22346 10777 22346 10890 22347 10777 22347 10776 22347 10776 22348 10777 22348 10779 22348 10776 22349 10779 22349 10778 22349 10778 22350 10779 22350 10727 22350 10778 22351 10727 22351 10780 22351 10780 22352 10727 22352 10725 22352 10780 22353 10725 22353 10781 22353 10781 22354 10725 22354 10724 22354 10781 22355 10724 22355 10894 22355 10894 22356 10724 22356 10723 22356 10894 22357 10723 22357 10782 22357 10782 22358 10723 22358 10722 22358 10782 22359 10722 22359 10783 22359 10783 22360 10722 22360 10720 22360 10783 22361 10720 22361 10784 22361 10784 22362 10720 22362 10785 22362 10784 22363 10785 22363 10786 22363 10786 22364 10785 22364 10788 22364 10786 22365 10788 22365 10787 22365 10787 22366 10788 22366 3584 22366 10787 22367 3584 22367 10791 22367 10791 22368 3584 22368 10789 22368 10791 22369 10789 22369 10794 22369 10793 22370 10792 22370 2065 22370 10790 22371 10794 22371 10792 22371 10792 22372 10794 22372 10789 22372 10790 22373 10792 22373 10793 22373 10791 22374 10794 22374 10790 22374 10793 22375 2065 22375 10898 22375 10898 22376 2065 22376 2073 22376 10898 22377 2073 22377 10899 22377 10899 22378 2073 22378 10721 22378 10899 22379 10721 22379 10897 22379 10897 22380 10721 22380 10796 22380 10897 22381 10796 22381 10795 22381 10795 22382 10796 22382 10797 22382 10795 22383 10797 22383 10895 22383 10895 22384 10797 22384 10799 22384 10895 22385 10799 22385 10798 22385 10798 22386 10799 22386 10719 22386 10798 22387 10719 22387 10896 22387 10896 22388 10719 22388 10800 22388 10896 22389 10800 22389 10801 22389 10801 22390 10800 22390 10717 22390 10801 22391 10717 22391 10802 22391 10802 22392 10717 22392 10803 22392 10802 22393 10803 22393 10900 22393 10900 22394 10803 22394 10713 22394 10900 22395 10713 22395 10804 22395 10804 22396 10713 22396 10715 22396 10804 22397 10715 22397 10805 22397 10805 22398 10715 22398 10806 22398 10805 22399 10806 22399 10902 22399 10902 22400 10806 22400 1938 22400 10902 22401 1938 22401 10807 22401 10807 22402 1938 22402 10716 22402 10807 22403 10716 22403 10809 22403 10809 22404 10716 22404 10808 22404 10809 22405 10808 22405 10810 22405 10810 22406 10808 22406 10714 22406 10810 22407 10714 22407 10901 22407 10901 22408 10714 22408 10711 22408 10901 22409 10711 22409 10903 22409 10903 22410 10711 22410 10707 22410 10903 22411 10707 22411 10811 22411 10811 22412 10707 22412 10706 22412 10811 22413 10706 22413 10904 22413 10904 22414 10706 22414 10705 22414 10904 22415 10705 22415 10812 22415 10812 22416 10705 22416 10704 22416 10812 22417 10704 22417 10813 22417 10813 22418 10704 22418 10814 22418 10813 22419 10814 22419 10815 22419 10815 22420 10814 22420 10816 22420 10815 22421 10816 22421 10818 22421 10818 22422 10816 22422 10817 22422 10818 22423 10817 22423 10819 22423 10819 22424 10817 22424 10710 22424 10819 22425 10710 22425 10907 22425 10907 22426 10710 22426 10709 22426 10907 22427 10709 22427 10821 22427 10821 22428 10709 22428 10827 22428 10827 22429 10822 22429 10821 22429 10820 22430 10825 22430 10824 22430 10822 22431 10826 22431 10821 22431 10825 22432 10826 22432 10824 22432 10826 22433 10822 22433 10824 22433 10822 22434 10823 22434 10824 22434 10823 22435 10822 22435 10827 22435 10824 22436 10823 22436 10820 22436 10825 22437 10820 22437 10909 22437 10909 22438 10820 22438 10828 22438 10909 22439 10828 22439 10910 22439 10910 22440 10828 22440 10829 22440 10910 22441 10829 22441 10908 22441 10908 22442 10829 22442 10830 22442 10908 22443 10830 22443 10905 22443 10905 22444 10830 22444 10708 22444 10905 22445 10708 22445 10906 22445 10906 22446 10708 22446 10831 22446 10906 22447 10831 22447 10832 22447 10832 22448 10831 22448 10833 22448 10832 22449 10833 22449 10834 22449 10834 22450 10833 22450 10703 22450 10834 22451 10703 22451 10911 22451 10911 22452 10703 22452 10702 22452 10911 22453 10702 22453 10835 22453 10835 22454 10702 22454 10701 22454 10835 22455 10701 22455 10912 22455 10912 22456 10701 22456 10837 22456 10912 22457 10837 22457 10836 22457 10836 22458 10837 22458 10838 22458 10836 22459 10838 22459 10916 22459 10916 22460 10838 22460 10839 22460 10916 22461 10839 22461 10915 22461 10915 22462 10839 22462 10840 22462 10915 22463 10840 22463 10841 22463 10841 22464 10840 22464 10842 22464 10841 22465 10842 22465 10843 22465 10843 22466 10842 22466 10844 22466 10843 22467 10844 22467 10914 22467 10914 22468 10844 22468 10845 22468 10914 22469 10845 22469 10913 22469 10913 22470 10845 22470 10846 22470 10913 22471 10846 22471 10924 22471 10924 22472 10846 22472 10699 22472 10924 22473 10699 22473 10847 22473 10847 22474 10699 22474 10698 22474 10847 22475 10698 22475 10848 22475 10848 22476 10698 22476 10697 22476 10848 22477 10697 22477 10849 22477 10849 22478 10697 22478 10696 22478 10849 22479 10696 22479 10850 22479 10850 22480 10696 22480 10852 22480 10850 22481 10852 22481 10851 22481 10851 22482 10852 22482 10692 22482 10851 22483 10692 22483 10853 22483 10853 22484 10692 22484 10693 22484 10853 22485 10693 22485 10854 22485 10854 22486 10693 22486 10695 22486 10854 22487 10695 22487 10923 22487 10923 22488 10695 22488 10694 22488 10923 22489 10694 22489 10862 22489 10862 22490 10694 22490 10857 22490 10855 22491 10862 22491 10857 22491 10858 22492 10859 22492 10863 22492 10861 22493 10855 22493 10859 22493 10855 22494 10856 22494 10859 22494 10856 22495 10860 22495 10859 22495 10859 22496 10860 22496 10863 22496 10860 22497 10856 22497 10857 22497 10859 22498 10858 22498 10861 22498 10855 22499 10857 22499 10856 22499 10858 22500 10863 22500 10864 22500 10864 22501 10863 22501 10865 22501 10864 22502 10865 22502 10922 22502 10922 22503 10865 22503 10867 22503 10922 22504 10867 22504 10866 22504 10866 22505 10867 22505 10691 22505 10866 22506 10691 22506 10917 22506 10917 22507 10691 22507 10690 22507 10917 22508 10690 22508 10868 22508 10868 22509 10690 22509 10689 22509 10868 22510 10689 22510 10918 22510 10918 22511 10689 22511 10869 22511 10918 22512 10869 22512 10919 22512 10919 22513 10869 22513 10688 22513 10919 22514 10688 22514 10920 22514 10920 22515 10688 22515 10870 22515 10920 22516 10870 22516 10921 22516 10921 22517 10870 22517 10871 22517 10921 22518 10871 22518 10872 22518 10872 22519 10871 22519 10686 22519 10872 22520 10686 22520 10878 22520 10878 22521 10686 22521 10873 22521 10878 22522 10873 22522 10875 22522 10875 22523 10873 22523 10874 22523 10875 22524 10874 22524 10876 22524 10876 22525 10874 22525 10877 22525 10876 22526 10877 22526 10879 22526 10879 22527 10877 22527 10737 22527 10875 22528 10876 22528 10878 22528 10878 22529 10876 22529 10879 22529 10878 22530 10879 22530 10739 22530 10739 22531 10879 22531 10738 22531 10739 22532 10927 22532 10878 22532 10878 22533 10927 22533 10872 22533 10872 22534 10927 22534 10933 22534 10872 22535 10933 22535 10929 22535 10925 22536 10935 22536 10927 22536 10927 22537 10935 22537 10933 22537 10880 22538 11033 22538 10925 22538 10925 22539 11033 22539 11031 22539 10881 22540 11033 22540 10880 22540 10742 22541 11035 22541 10881 22541 10881 22542 11035 22542 11033 22542 10882 22543 11035 22543 10742 22543 10743 22544 10886 22544 10882 22544 10882 22545 10886 22545 11032 22545 10882 22546 11032 22546 11035 22546 10745 22547 10755 22547 10743 22547 10743 22548 10755 22548 10883 22548 10743 22549 10883 22549 10886 22549 10884 22550 10749 22550 10745 22550 10745 22551 10749 22551 10755 22551 10755 22552 10751 22552 6992 22552 10755 22553 6992 22553 10883 22553 10883 22554 6992 22554 10885 22554 10885 22555 6992 22555 10758 22555 10885 22556 10758 22556 10759 22556 11032 22557 10886 22557 10764 22557 11032 22558 10764 22558 10766 22558 11032 22559 10766 22559 10767 22559 11032 22560 10767 22560 11041 22560 11041 22561 10767 22561 10887 22561 11041 22562 10887 22562 11034 22562 11034 22563 10887 22563 10888 22563 11034 22564 10888 22564 10942 22564 10888 22565 10887 22565 10950 22565 10950 22566 10887 22566 10769 22566 10950 22567 10769 22567 10951 22567 10951 22568 10769 22568 10776 22568 10951 22569 10776 22569 10955 22569 10955 22570 10776 22570 10889 22570 10889 22571 10776 22571 10778 22571 10889 22572 10778 22572 10959 22572 10959 22573 10778 22573 11058 22573 10776 22574 10769 22574 10890 22574 10890 22575 10769 22575 10771 22575 10890 22576 10771 22576 10891 22576 10891 22577 10771 22577 10892 22577 10892 22578 10771 22578 10773 22578 10891 22579 10893 22579 10890 22579 10780 22580 11055 22580 10778 22580 10781 22581 11060 22581 10780 22581 10780 22582 11060 22582 11055 22582 10894 22583 11060 22583 10781 22583 10782 22584 11060 22584 10894 22584 10783 22585 10795 22585 10782 22585 10782 22586 10795 22586 10895 22586 10782 22587 10895 22587 11060 22587 11060 22588 10895 22588 11064 22588 11064 22589 10895 22589 10798 22589 11064 22590 10798 22590 11053 22590 11053 22591 10798 22591 10896 22591 11053 22592 10896 22592 10801 22592 11053 22593 10801 22593 10802 22593 11053 22594 10802 22594 11056 22594 11056 22595 10802 22595 10970 22595 11056 22596 10970 22596 11059 22596 10784 22597 10791 22597 10783 22597 10783 22598 10791 22598 10793 22598 10783 22599 10793 22599 10795 22599 10795 22600 10793 22600 10897 22600 10897 22601 10793 22601 10898 22601 10897 22602 10898 22602 10899 22602 10786 22603 10787 22603 10784 22603 10784 22604 10787 22604 10791 22604 10791 22605 10790 22605 10793 22605 10970 22606 10802 22606 10972 22606 10972 22607 10802 22607 10900 22607 10972 22608 10900 22608 10971 22608 10971 22609 10900 22609 10975 22609 10975 22610 10900 22610 10901 22610 10975 22611 10901 22611 10976 22611 10976 22612 10901 22612 10903 22612 10976 22613 10903 22613 10979 22613 10979 22614 10903 22614 11010 22614 10900 22615 10804 22615 10901 22615 10901 22616 10804 22616 10810 22616 10810 22617 10804 22617 10902 22617 10810 22618 10902 22618 10807 22618 10804 22619 10805 22619 10902 22619 10807 22620 10809 22620 10810 22620 10811 22621 11015 22621 10903 22621 10903 22622 11015 22622 11010 22622 10904 22623 11021 22623 10811 22623 10811 22624 11021 22624 11015 22624 10812 22625 11021 22625 10904 22625 10813 22626 11021 22626 10812 22626 10815 22627 10906 22627 10813 22627 10813 22628 10906 22628 11021 22628 10818 22629 10821 22629 10815 22629 10815 22630 10821 22630 10905 22630 10815 22631 10905 22631 10906 22631 10819 22632 10907 22632 10818 22632 10818 22633 10907 22633 10821 22633 10905 22634 10821 22634 10825 22634 10825 22635 10821 22635 10826 22635 10905 22636 10825 22636 10908 22636 10908 22637 10825 22637 10909 22637 10908 22638 10909 22638 10910 22638 11021 22639 10906 22639 11007 22639 11007 22640 10906 22640 10832 22640 11007 22641 10832 22641 10834 22641 11007 22642 10834 22642 11012 22642 11012 22643 10834 22643 10911 22643 11012 22644 10911 22644 10835 22644 11012 22645 10835 22645 11013 22645 11013 22646 10835 22646 11008 22646 11008 22647 10835 22647 10987 22647 11008 22648 10987 22648 10983 22648 10987 22649 10835 22649 10991 22649 10991 22650 10835 22650 10912 22650 10991 22651 10912 22651 10992 22651 10992 22652 10912 22652 10913 22652 10992 22653 10913 22653 10994 22653 10994 22654 10913 22654 10995 22654 10995 22655 10913 22655 10924 22655 10995 22656 10924 22656 10997 22656 10997 22657 10924 22657 11082 22657 10913 22658 10912 22658 10914 22658 10914 22659 10912 22659 10836 22659 10914 22660 10836 22660 10841 22660 10841 22661 10836 22661 10915 22661 10915 22662 10836 22662 10916 22662 10841 22663 10843 22663 10914 22663 10847 22664 11077 22664 10924 22664 10924 22665 11077 22665 11082 22665 10848 22666 11077 22666 10847 22666 10849 22667 11077 22667 10848 22667 10850 22668 11080 22668 10849 22668 10849 22669 11080 22669 11077 22669 10851 22670 10917 22670 10850 22670 10850 22671 10917 22671 10868 22671 10850 22672 10868 22672 11080 22672 11080 22673 10868 22673 10918 22673 11080 22674 10918 22674 10919 22674 11080 22675 10919 22675 11079 22675 11079 22676 10919 22676 10920 22676 11079 22677 10920 22677 11076 22677 11076 22678 10920 22678 10921 22678 11076 22679 10921 22679 10682 22679 10853 22680 10862 22680 10851 22680 10851 22681 10862 22681 10858 22681 10851 22682 10858 22682 10917 22682 10917 22683 10858 22683 10866 22683 10866 22684 10858 22684 10864 22684 10866 22685 10864 22685 10922 22685 10854 22686 10923 22686 10853 22686 10853 22687 10923 22687 10862 22687 10862 22688 10855 22688 10861 22688 10862 22689 10861 22689 10858 22689 10682 22690 10921 22690 10928 22690 10928 22691 10921 22691 10872 22691 10928 22692 10872 22692 10929 22692 10997 22693 11082 22693 11000 22693 11000 22694 11082 22694 11078 22694 11000 22695 11078 22695 11006 22695 11006 22696 11078 22696 11005 22696 11005 22697 11078 22697 10682 22697 10682 22698 11078 22698 11076 22698 10959 22699 11058 22699 10958 22699 10958 22700 11058 22700 11059 22700 10958 22701 11059 22701 10964 22701 10964 22702 11059 22702 10967 22702 10967 22703 11059 22703 10963 22703 10963 22704 11059 22704 10969 22704 10969 22705 11059 22705 10970 22705 10778 22706 11055 22706 11058 22706 10925 22707 11031 22707 10937 22707 11031 22708 10938 22708 10937 22708 10938 22709 11031 22709 10940 22709 10940 22710 11031 22710 10944 22710 10944 22711 11031 22711 10942 22711 10942 22712 11031 22712 11034 22712 10979 22713 11010 22713 11009 22713 10979 22714 11009 22714 10980 22714 10980 22715 11009 22715 11011 22715 10980 22716 11011 22716 10926 22716 10926 22717 11011 22717 10984 22717 10984 22718 11011 22718 10983 22718 10983 22719 11011 22719 11008 22719 10937 22720 10935 22720 10925 22720 10933 22721 10932 22721 10929 22721 10929 22722 10932 22722 10931 22722 10928 22723 10931 22723 10930 22723 10931 22724 10928 22724 10929 22724 10934 22725 10933 22725 10935 22725 10933 22726 10934 22726 10932 22726 10937 22727 10936 22727 10935 22727 10935 22728 10936 22728 10934 22728 10937 22729 10939 22729 10936 22729 10939 22730 10946 22730 10936 22730 10946 22731 10939 22731 10938 22731 10937 22732 10938 22732 10939 22732 10940 22733 10946 22733 10938 22733 10944 22734 10943 22734 10947 22734 10947 22735 10943 22735 10945 22735 10941 22736 10943 22736 10942 22736 10944 22737 10947 22737 10940 22737 10943 22738 10944 22738 10942 22738 10946 22739 10940 22739 10945 22739 10947 22740 10945 22740 10940 22740 10942 22741 10949 22741 10941 22741 10948 22742 10949 22742 10888 22742 10949 22743 10942 22743 10888 22743 10941 22744 10949 22744 10948 22744 10950 22745 10952 22745 10888 22745 10888 22746 10952 22746 10948 22746 10950 22747 10951 22747 10952 22747 10952 22748 10951 22748 10953 22748 10955 22749 10954 22749 10951 22749 10951 22750 10954 22750 10953 22750 10955 22751 10956 22751 10954 22751 10954 22752 10956 22752 10957 22752 10955 22753 10889 22753 10956 22753 10957 22754 10956 22754 10889 22754 10959 22755 10726 22755 10889 22755 10889 22756 10726 22756 10957 22756 10959 22757 10960 22757 10726 22757 10960 22758 10961 22758 10726 22758 10961 22759 10960 22759 10958 22759 10960 22760 10959 22760 10958 22760 10964 22761 10962 22761 10958 22761 10958 22762 10962 22762 10961 22762 10966 22763 10967 22763 10968 22763 10965 22764 10963 22764 10969 22764 10966 22765 10968 22765 10962 22765 10964 22766 10966 22766 10962 22766 10967 22767 10966 22767 10964 22767 10968 22768 10967 22768 10963 22768 10968 22769 10963 22769 10965 22769 10969 22770 10970 22770 10965 22770 10965 22771 10970 22771 10734 22771 10972 22772 10974 22772 10970 22772 10970 22773 10974 22773 10734 22773 10973 22774 10974 22774 10971 22774 10971 22775 10974 22775 10972 22775 10975 22776 10977 22776 10971 22776 10971 22777 10977 22777 10973 22777 10976 22778 10977 22778 10975 22778 10712 22779 10977 22779 10976 22779 10979 22780 10978 22780 10976 22780 10976 22781 10978 22781 10712 22781 10978 22782 10979 22782 10981 22782 10981 22783 10979 22783 10980 22783 10926 22784 10981 22784 10980 22784 10736 22785 10982 22785 10983 22785 10985 22786 10984 22786 10982 22786 10984 22787 10985 22787 10926 22787 10981 22788 10926 22788 10985 22788 10982 22789 10984 22789 10983 22789 10736 22790 10985 22790 10982 22790 10983 22791 10986 22791 10736 22791 10983 22792 10988 22792 10986 22792 10988 22793 10983 22793 10987 22793 10991 22794 10990 22794 10987 22794 10987 22795 10990 22795 10988 22795 10990 22796 10991 22796 10989 22796 10989 22797 10991 22797 10992 22797 10994 22798 10700 22798 10992 22798 10992 22799 10700 22799 10989 22799 10993 22800 10994 22800 10995 22800 10700 22801 10994 22801 10993 22801 10997 22802 10998 22802 10995 22802 10995 22803 10998 22803 10993 22803 10997 22804 11000 22804 10998 22804 10996 22805 10998 22805 11000 22805 11000 22806 11002 22806 10996 22806 11000 22807 11006 22807 11004 22807 11000 22808 11004 22808 11002 22808 11006 22809 11001 22809 11004 22809 10999 22810 11001 22810 11006 22810 10999 22811 11006 22811 11005 22811 11003 22812 11001 22812 10999 22812 11002 22813 11004 22813 11003 22813 11001 22814 11003 22814 11004 22814 11005 22815 10683 22815 10999 22815 11022 22816 11025 22816 11028 22816 11007 22817 11020 22817 11021 22817 11008 22818 11011 22818 11014 22818 11010 22819 11027 22819 11009 22819 11013 22820 11026 22820 11012 22820 11008 22821 11017 22821 11013 22821 11013 22822 11017 22822 11026 22822 11014 22823 11011 22823 11016 22823 11008 22824 11014 22824 11017 22824 11020 22825 11007 22825 11025 22825 11011 22826 11009 22826 11016 22826 11009 22827 11018 22827 11016 22827 11012 22828 11025 22828 11007 22828 11009 22829 11027 22829 11018 22829 11015 22830 11021 22830 11029 22830 11014 22831 11019 22831 11017 22831 11012 22832 11026 22832 11023 22832 11012 22833 11023 22833 11025 22833 11015 22834 11029 22834 11030 22834 11014 22835 11016 22835 11019 22835 11023 22836 11028 22836 11025 22836 11020 22837 11025 22837 11022 22837 11020 22838 11022 22838 11021 22838 11026 22839 11028 22839 11023 22839 11010 22840 11015 22840 11030 22840 11010 22841 11030 22841 11027 22841 11019 22842 11016 22842 11024 22842 11021 22843 11022 22843 11029 22843 11018 22844 11024 22844 11016 22844 11018 22845 11027 22845 11024 22845 11017 22846 11019 22846 11026 22846 11019 22847 11024 22847 11026 22847 11032 22848 11041 22848 11036 22848 11034 22849 11040 22849 11041 22849 11035 22850 11032 22850 11044 22850 11031 22851 11033 22851 11043 22851 11035 22852 11038 22852 11033 22852 11031 22853 11043 22853 11039 22853 11033 22854 11038 22854 11043 22854 11031 22855 11039 22855 11037 22855 11031 22856 11037 22856 11034 22856 11035 22857 11044 22857 11038 22857 11032 22858 11036 22858 11044 22858 11039 22859 11046 22859 11037 22859 11034 22860 11042 22860 11040 22860 11039 22861 11043 22861 11049 22861 11039 22862 11049 22862 11046 22862 11034 22863 11037 22863 11042 22863 11044 22864 11036 22864 11045 22864 11041 22865 11040 22865 11036 22865 11042 22866 11051 22866 11040 22866 11037 22867 11046 22867 11050 22867 11042 22868 11037 22868 11051 22868 11043 22869 11038 22869 11048 22869 11043 22870 11048 22870 11049 22870 11037 22871 11050 22871 11051 22871 11036 22872 11040 22872 11052 22872 11038 22873 11044 22873 11047 22873 11038 22874 11047 22874 11048 22874 11045 22875 11047 22875 11044 22875 11046 22876 11049 22876 11050 22876 11036 22877 11052 22877 11045 22877 11040 22878 11051 22878 11052 22878 11053 22879 11057 22879 11064 22879 11055 22880 11061 22880 11058 22880 11056 22881 11059 22881 11063 22881 11055 22882 11060 22882 11062 22882 11055 22883 11062 22883 11061 22883 11058 22884 11069 22884 11059 22884 11056 22885 11066 22885 11053 22885 11058 22886 11061 22886 11069 22886 11059 22887 11069 22887 11068 22887 11064 22888 11057 22888 11067 22888 11059 22889 11068 22889 11070 22889 11059 22890 11070 22890 11063 22890 11053 22891 11066 22891 11071 22891 11053 22892 11071 22892 11057 22892 11060 22893 11064 22893 11065 22893 11060 22894 11065 22894 11062 22894 11064 22895 11067 22895 11065 22895 11057 22896 11071 22896 11067 22896 11056 22897 11063 22897 11066 22897 11062 22898 11054 22898 11061 22898 11068 22899 11069 22899 11074 22899 11062 22900 11065 22900 11054 22900 11061 22901 11073 22901 11069 22901 11061 22902 11054 22902 11073 22902 11065 22903 11067 22903 11072 22903 11065 22904 11072 22904 11054 22904 11069 22905 11073 22905 11074 22905 11067 22906 11071 22906 10718 22906 11068 22907 11074 22907 11075 22907 11068 22908 11075 22908 11070 22908 11070 22909 11075 22909 11063 22909 11067 22910 10718 22910 11072 22910 11063 22911 11075 22911 11066 22911 11071 22912 11066 22912 10718 22912 11077 22913 11093 22913 11082 22913 11076 22914 11078 22914 11081 22914 11080 22915 11090 22915 11077 22915 11076 22916 11081 22916 11087 22916 11078 22917 11084 22917 11081 22917 11080 22918 11083 22918 11090 22918 11079 22919 11088 22919 11080 22919 11082 22920 11093 22920 11089 22920 11076 22921 11087 22921 11079 22921 11082 22922 11091 22922 11078 22922 11080 22923 11088 22923 11083 22923 11078 22924 11091 22924 11086 22924 11078 22925 11086 22925 11084 22925 11082 22926 11089 22926 11091 22926 11081 22927 11085 22927 11087 22927 11077 22928 11090 22928 11093 22928 11081 22929 11092 22929 11085 22929 11081 22930 11084 22930 11092 22930 11079 22931 11087 22931 11088 22931 11083 22932 11088 22932 11097 22932 11083 22933 11097 22933 11090 22933 11087 22934 11085 22934 11094 22934 11087 22935 11094 22935 11088 22935 11089 22936 11093 22936 11095 22936 11089 22937 11095 22937 11091 22937 11086 22938 11091 22938 11099 22938 11086 22939 11099 22939 11084 22939 11085 22940 11092 22940 11096 22940 11093 22941 11090 22941 11098 22941 11093 22942 11098 22942 11095 22942 11088 22943 11094 22943 11097 22943 11092 22944 11084 22944 11100 22944 11092 22945 11100 22945 11096 22945 11085 22946 11096 22946 11094 22946 11090 22947 11097 22947 11098 22947 11084 22948 11099 22948 11100 22948 11091 22949 11095 22949 11099 22949 11338 22950 11337 22950 11102 22950 11102 22951 11337 22951 11103 22951 11333 22952 11103 22952 11101 22952 11103 22953 11333 22953 11102 22953 11276 22954 11106 22954 11277 22954 11277 22955 11106 22955 11104 22955 11277 22956 11104 22956 11105 22956 11276 22957 11274 22957 11106 22957 11106 22958 11272 22958 11104 22958 11104 22959 11272 22959 11155 22959 11155 22960 11272 22960 11336 22960 11155 22961 11336 22961 11342 22961 11150 22962 11337 22962 11272 22962 11272 22963 11337 22963 11336 22963 11107 22964 11508 22964 11150 22964 11150 22965 11508 22965 11511 22965 11271 22966 11508 22966 11107 22966 11270 22967 11506 22967 11271 22967 11271 22968 11506 22968 11508 22968 11268 22969 11512 22969 11270 22969 11270 22970 11512 22970 11506 22970 11267 22971 11108 22971 11268 22971 11268 22972 11108 22972 11512 22972 11266 22973 11259 22973 11267 22973 11267 22974 11259 22974 11248 22974 11267 22975 11248 22975 11108 22975 11265 22976 11264 22976 11266 22976 11266 22977 11264 22977 11259 22977 11248 22978 11259 22978 11262 22978 11262 22979 11259 22979 11256 22979 11248 22980 11262 22980 11250 22980 11250 22981 11262 22981 11253 22981 11250 22982 11253 22982 11251 22982 11512 22983 11108 22983 11109 22983 11512 22984 11109 22984 11110 22984 11512 22985 11110 22985 11510 22985 11510 22986 11110 22986 11244 22986 11510 22987 11244 22987 11513 22987 11513 22988 11244 22988 11111 22988 11513 22989 11111 22989 11414 22989 11513 22990 11414 22990 11415 22990 11414 22991 11111 22991 11411 22991 11411 22992 11111 22992 11241 22992 11411 22993 11241 22993 11408 22993 11408 22994 11241 22994 11112 22994 11408 22995 11112 22995 11406 22995 11406 22996 11112 22996 11404 22996 11404 22997 11112 22997 11116 22997 11404 22998 11116 22998 11401 22998 11401 22999 11116 22999 11444 22999 11112 23000 11241 23000 11113 23000 11113 23001 11241 23001 11114 23001 11113 23002 11114 23002 11238 23002 11238 23003 11114 23003 11239 23003 11239 23004 11114 23004 11115 23004 11238 23005 11237 23005 11113 23005 11233 23006 11441 23006 11116 23006 11117 23007 11441 23007 11233 23007 11231 23008 11439 23008 11117 23008 11117 23009 11439 23009 11441 23009 11230 23010 11439 23010 11231 23010 11229 23011 11214 23011 11230 23011 11230 23012 11214 23012 11118 23012 11230 23013 11118 23013 11439 23013 11439 23014 11118 23014 11437 23014 11437 23015 11118 23015 11213 23015 11437 23016 11213 23016 11423 23016 11423 23017 11213 23017 11212 23017 11423 23018 11212 23018 11119 23018 11423 23019 11119 23019 11211 23019 11423 23020 11211 23020 11443 23020 11443 23021 11211 23021 11392 23021 11443 23022 11392 23022 11442 23022 11228 23023 11220 23023 11229 23023 11229 23024 11220 23024 11218 23024 11229 23025 11218 23025 11214 23025 11214 23026 11218 23026 11120 23026 11120 23027 11218 23027 11121 23027 11120 23028 11121 23028 11215 23028 11225 23029 11122 23029 11228 23029 11228 23030 11122 23030 11220 23030 11220 23031 11219 23031 11218 23031 11392 23032 11211 23032 11123 23032 11123 23033 11211 23033 11124 23033 11123 23034 11124 23034 11391 23034 11391 23035 11124 23035 11388 23035 11388 23036 11124 23036 11200 23036 11388 23037 11200 23037 11384 23037 11384 23038 11200 23038 11198 23038 11384 23039 11198 23039 11380 23039 11380 23040 11198 23040 11490 23040 11124 23041 11209 23041 11200 23041 11200 23042 11209 23042 11201 23042 11201 23043 11209 23043 11203 23043 11201 23044 11203 23044 11202 23044 11207 23045 11204 23045 11209 23045 11209 23046 11204 23046 11203 23046 11197 23047 11478 23047 11198 23047 11198 23048 11478 23048 11490 23048 11196 23049 11478 23049 11197 23049 11125 23050 11478 23050 11196 23050 11151 23051 11485 23051 11125 23051 11125 23052 11485 23052 11478 23052 11192 23053 11126 23053 11151 23053 11151 23054 11126 23054 11485 23054 11127 23055 11185 23055 11192 23055 11192 23056 11185 23056 11181 23056 11192 23057 11181 23057 11126 23057 11191 23058 11189 23058 11127 23058 11127 23059 11189 23059 11185 23059 11185 23060 11187 23060 11184 23060 11185 23061 11184 23061 11181 23061 11181 23062 11184 23062 11128 23062 11128 23063 11184 23063 6968 23063 11128 23064 6968 23064 11129 23064 11485 23065 11126 23065 11130 23065 11485 23066 11130 23066 11131 23066 11485 23067 11131 23067 11486 23067 11486 23068 11131 23068 11132 23068 11486 23069 11132 23069 11133 23069 11486 23070 11133 23070 11488 23070 11488 23071 11133 23071 11369 23071 11369 23072 11133 23072 11367 23072 11367 23073 11133 23073 11134 23073 11367 23074 11134 23074 11364 23074 11364 23075 11134 23075 11135 23075 11364 23076 11135 23076 11363 23076 11363 23077 11135 23077 11361 23077 11361 23078 11135 23078 11140 23078 11361 23079 11140 23079 11358 23079 11358 23080 11140 23080 11461 23080 11135 23081 11134 23081 11136 23081 11136 23082 11134 23082 11138 23082 11136 23083 11138 23083 6979 23083 6979 23084 11138 23084 11137 23084 11137 23085 11138 23085 11139 23085 6979 23086 11176 23086 11136 23086 11141 23087 11152 23087 11140 23087 11142 23088 11152 23088 11141 23088 11173 23089 11152 23089 11142 23089 11143 23090 11464 23090 11173 23090 11173 23091 11464 23091 11152 23091 11148 23092 11162 23092 11143 23092 11143 23093 11162 23093 11144 23093 11143 23094 11144 23094 11464 23094 11464 23095 11144 23095 11463 23095 11463 23096 11144 23096 11160 23096 11463 23097 11160 23097 11145 23097 11463 23098 11145 23098 11462 23098 11462 23099 11145 23099 11146 23099 11462 23100 11146 23100 11465 23100 11465 23101 11146 23101 11156 23101 11465 23102 11156 23102 11460 23102 11460 23103 11156 23103 11346 23103 11460 23104 11346 23104 11349 23104 11147 23105 7066 23105 11148 23105 11148 23106 7066 23106 11171 23106 11148 23107 11171 23107 11162 23107 11162 23108 11171 23108 11163 23108 11163 23109 11171 23109 11149 23109 11163 23110 11149 23110 11164 23110 11172 23111 7065 23111 11147 23111 11147 23112 7065 23112 7066 23112 7066 23113 11170 23113 11171 23113 11346 23114 11156 23114 11344 23114 11344 23115 11156 23115 11155 23115 11344 23116 11155 23116 11342 23116 11150 23117 11511 23117 11103 23117 11103 23118 11511 23118 11101 23118 11101 23119 11511 23119 11421 23119 11421 23120 11511 23120 11498 23120 11421 23121 11498 23121 11418 23121 11418 23122 11498 23122 11415 23122 11415 23123 11498 23123 11513 23123 11380 23124 11490 23124 11489 23124 11380 23125 11489 23125 11379 23125 11379 23126 11489 23126 11378 23126 11378 23127 11489 23127 11374 23127 11374 23128 11489 23128 11488 23128 11374 23129 11488 23129 11369 23129 11140 23130 11152 23130 11461 23130 11358 23131 11461 23131 11359 23131 11359 23132 11461 23132 11457 23132 11359 23133 11457 23133 11356 23133 11356 23134 11457 23134 11348 23134 11348 23135 11457 23135 11349 23135 11349 23136 11457 23136 11460 23136 11444 23137 11399 23137 11401 23137 11399 23138 11444 23138 11440 23138 11399 23139 11440 23139 11396 23139 11396 23140 11440 23140 11442 23140 11396 23141 11442 23141 11395 23141 11395 23142 11442 23142 11392 23142 11116 23143 11441 23143 11444 23143 11103 23144 11337 23144 11150 23144 11279 23145 11277 23145 11153 23145 11153 23146 11277 23146 11105 23146 11153 23147 11105 23147 11154 23147 11154 23148 11105 23148 11104 23148 11154 23149 11104 23149 11280 23149 11280 23150 11104 23150 11155 23150 11280 23151 11155 23151 11334 23151 11334 23152 11155 23152 11156 23152 11334 23153 11156 23153 11157 23153 11157 23154 11156 23154 11146 23154 11157 23155 11146 23155 11158 23155 11158 23156 11146 23156 11145 23156 11158 23157 11145 23157 11159 23157 11159 23158 11145 23158 11160 23158 11159 23159 11160 23159 11161 23159 11161 23160 11160 23160 11144 23160 11161 23161 11144 23161 11281 23161 11281 23162 11144 23162 11162 23162 11281 23163 11162 23163 11284 23163 11284 23164 11162 23164 11163 23164 11284 23165 11163 23165 11165 23165 11165 23166 11163 23166 11164 23166 11165 23167 11164 23167 11166 23167 11166 23168 11164 23168 11149 23168 11166 23169 11149 23169 11285 23169 11285 23170 11149 23170 11171 23170 11167 23171 11285 23171 11171 23171 11170 23172 11167 23172 11171 23172 3610 23173 11169 23173 7066 23173 11167 23174 11170 23174 11169 23174 11169 23175 11170 23175 7066 23175 3610 23176 11168 23176 11169 23176 11167 23177 11169 23177 11168 23177 11168 23178 11285 23178 11167 23178 3610 23179 7066 23179 3683 23179 3683 23180 7066 23180 7065 23180 3683 23181 7065 23181 11287 23181 11287 23182 7065 23182 11172 23182 11287 23183 11172 23183 11286 23183 11286 23184 11172 23184 11147 23184 11286 23185 11147 23185 11282 23185 11282 23186 11147 23186 11148 23186 11282 23187 11148 23187 11283 23187 11283 23188 11148 23188 11143 23188 11283 23189 11143 23189 11288 23189 11288 23190 11143 23190 11173 23190 11288 23191 11173 23191 11289 23191 11289 23192 11173 23192 11142 23192 11289 23193 11142 23193 11290 23193 11290 23194 11142 23194 11141 23194 11290 23195 11141 23195 11291 23195 11291 23196 11141 23196 11140 23196 11291 23197 11140 23197 11292 23197 11292 23198 11140 23198 11135 23198 11292 23199 11135 23199 11174 23199 11174 23200 11135 23200 11136 23200 11174 23201 11136 23201 11175 23201 11175 23202 11136 23202 11176 23202 11175 23203 11176 23203 3591 23203 3591 23204 11176 23204 6979 23204 3591 23205 6979 23205 11177 23205 11177 23206 6979 23206 11137 23206 11177 23207 11137 23207 11178 23207 11178 23208 11137 23208 11139 23208 11178 23209 11139 23209 11294 23209 11294 23210 11139 23210 11138 23210 11294 23211 11138 23211 11293 23211 11293 23212 11138 23212 11134 23212 11293 23213 11134 23213 11296 23213 11296 23214 11134 23214 11133 23214 11296 23215 11133 23215 11295 23215 11295 23216 11133 23216 11132 23216 11295 23217 11132 23217 11297 23217 11297 23218 11132 23218 11131 23218 11297 23219 11131 23219 11298 23219 11298 23220 11131 23220 11130 23220 11298 23221 11130 23221 11179 23221 11179 23222 11130 23222 11126 23222 11179 23223 11126 23223 11180 23223 11180 23224 11126 23224 11181 23224 11180 23225 11181 23225 11302 23225 11302 23226 11181 23226 11128 23226 11302 23227 11128 23227 11182 23227 11182 23228 11128 23228 11129 23228 11182 23229 11129 23229 3664 23229 3664 23230 11129 23230 6968 23230 3664 23231 6968 23231 3662 23231 3662 23232 6968 23232 11184 23232 11183 23233 3662 23233 11186 23233 11185 23234 11186 23234 11187 23234 2641 23235 11186 23235 11185 23235 3662 23236 11187 23236 11186 23236 2641 23237 11183 23237 11186 23237 3662 23238 11184 23238 11187 23238 2641 23239 11185 23239 2631 23239 2631 23240 11185 23240 11189 23240 2631 23241 11189 23241 11188 23241 11188 23242 11189 23242 11191 23242 11188 23243 11191 23243 11190 23243 11190 23244 11191 23244 11127 23244 11190 23245 11127 23245 11299 23245 11299 23246 11127 23246 11192 23246 11299 23247 11192 23247 11193 23247 11193 23248 11192 23248 11151 23248 11193 23249 11151 23249 11194 23249 11194 23250 11151 23250 11125 23250 11194 23251 11125 23251 11300 23251 11300 23252 11125 23252 11196 23252 11300 23253 11196 23253 11195 23253 11195 23254 11196 23254 11197 23254 11195 23255 11197 23255 11301 23255 11301 23256 11197 23256 11198 23256 11301 23257 11198 23257 11303 23257 11303 23258 11198 23258 11200 23258 11303 23259 11200 23259 11199 23259 11199 23260 11200 23260 11201 23260 11199 23261 11201 23261 11306 23261 11306 23262 11201 23262 11202 23262 11306 23263 11202 23263 11305 23263 11305 23264 11202 23264 11203 23264 11305 23265 11203 23265 11205 23265 11205 23266 11203 23266 11204 23266 11205 23267 11204 23267 11206 23267 11206 23268 11204 23268 11207 23268 11206 23269 11207 23269 11304 23269 11304 23270 11207 23270 11209 23270 11304 23271 11209 23271 11208 23271 11208 23272 11209 23272 11124 23272 11208 23273 11124 23273 11210 23273 11210 23274 11124 23274 11211 23274 11210 23275 11211 23275 11307 23275 11307 23276 11211 23276 11119 23276 11307 23277 11119 23277 11308 23277 11308 23278 11119 23278 11212 23278 11308 23279 11212 23279 11309 23279 11309 23280 11212 23280 11213 23280 11309 23281 11213 23281 11310 23281 11310 23282 11213 23282 11118 23282 11310 23283 11118 23283 11311 23283 11311 23284 11118 23284 11214 23284 11311 23285 11214 23285 11313 23285 11313 23286 11214 23286 11120 23286 11313 23287 11120 23287 11312 23287 11312 23288 11120 23288 11215 23288 11312 23289 11215 23289 11216 23289 11216 23290 11215 23290 11121 23290 11216 23291 11121 23291 2612 23291 2612 23292 11121 23292 11218 23292 11222 23293 11223 23293 11221 23293 11218 23294 11223 23294 2612 23294 11217 23295 11221 23295 11220 23295 11223 23296 11222 23296 2612 23296 11221 23297 11219 23297 11220 23297 11221 23298 11217 23298 11222 23298 11219 23299 11221 23299 11223 23299 11219 23300 11223 23300 11218 23300 11217 23301 11220 23301 11314 23301 11314 23302 11220 23302 11122 23302 11314 23303 11122 23303 11224 23303 11224 23304 11122 23304 11225 23304 11224 23305 11225 23305 11226 23305 11226 23306 11225 23306 11228 23306 11226 23307 11228 23307 11227 23307 11227 23308 11228 23308 11229 23308 11227 23309 11229 23309 11315 23309 11315 23310 11229 23310 11230 23310 11315 23311 11230 23311 11316 23311 11316 23312 11230 23312 11231 23312 11316 23313 11231 23313 11232 23313 11232 23314 11231 23314 11117 23314 11232 23315 11117 23315 11317 23315 11317 23316 11117 23316 11233 23316 11317 23317 11233 23317 11234 23317 11234 23318 11233 23318 11116 23318 11234 23319 11116 23319 11319 23319 11319 23320 11116 23320 11112 23320 11319 23321 11112 23321 11320 23321 11320 23322 11112 23322 11113 23322 11320 23323 11113 23323 11235 23323 11235 23324 11113 23324 11237 23324 11235 23325 11237 23325 11236 23325 11236 23326 11237 23326 11238 23326 11236 23327 11238 23327 11322 23327 11322 23328 11238 23328 11239 23328 11322 23329 11239 23329 11240 23329 11240 23330 11239 23330 11115 23330 11240 23331 11115 23331 11321 23331 11321 23332 11115 23332 11114 23332 11321 23333 11114 23333 11318 23333 11318 23334 11114 23334 11241 23334 11318 23335 11241 23335 11242 23335 11242 23336 11241 23336 11111 23336 11242 23337 11111 23337 11243 23337 11243 23338 11111 23338 11244 23338 11243 23339 11244 23339 11323 23339 11323 23340 11244 23340 11110 23340 11323 23341 11110 23341 11245 23341 11245 23342 11110 23342 11109 23342 11245 23343 11109 23343 11246 23343 11246 23344 11109 23344 11108 23344 11246 23345 11108 23345 11247 23345 11247 23346 11108 23346 11248 23346 11247 23347 11248 23347 11249 23347 11249 23348 11248 23348 11250 23348 11249 23349 11250 23349 11252 23349 11252 23350 11250 23350 11251 23350 11252 23351 11251 23351 11254 23351 11254 23352 11251 23352 11253 23352 11254 23353 11253 23353 11255 23353 11255 23354 11253 23354 11262 23354 11262 23355 11263 23355 11255 23355 11260 23356 11257 23356 11263 23356 11260 23357 11261 23357 11259 23357 11256 23358 11261 23358 11262 23358 11261 23359 11256 23359 11259 23359 11260 23360 11258 23360 11257 23360 11258 23361 11260 23361 11259 23361 11260 23362 11263 23362 11261 23362 11261 23363 11263 23363 11262 23363 11263 23364 11257 23364 11255 23364 11258 23365 11259 23365 11329 23365 11329 23366 11259 23366 11264 23366 11329 23367 11264 23367 11331 23367 11331 23368 11264 23368 11265 23368 11331 23369 11265 23369 11330 23369 11330 23370 11265 23370 11266 23370 11330 23371 11266 23371 11328 23371 11328 23372 11266 23372 11267 23372 11328 23373 11267 23373 11324 23373 11324 23374 11267 23374 11268 23374 11324 23375 11268 23375 11269 23375 11269 23376 11268 23376 11270 23376 11269 23377 11270 23377 11325 23377 11325 23378 11270 23378 11271 23378 11325 23379 11271 23379 11326 23379 11326 23380 11271 23380 11107 23380 11326 23381 11107 23381 11327 23381 11327 23382 11107 23382 11150 23382 11327 23383 11150 23383 11332 23383 11332 23384 11150 23384 11272 23384 11332 23385 11272 23385 11278 23385 11278 23386 11272 23386 11106 23386 11278 23387 11106 23387 11273 23387 11273 23388 11106 23388 11274 23388 11273 23389 11274 23389 11275 23389 11275 23390 11274 23390 11276 23390 11275 23391 11276 23391 11279 23391 11279 23392 11276 23392 11277 23392 11273 23393 11275 23393 11278 23393 11278 23394 11275 23394 11279 23394 11278 23395 11279 23395 11154 23395 11154 23396 11279 23396 11153 23396 11154 23397 11280 23397 11278 23397 11278 23398 11280 23398 11332 23398 11332 23399 11280 23399 11340 23399 11332 23400 11340 23400 11339 23400 11334 23401 11341 23401 11280 23401 11280 23402 11341 23402 11340 23402 11157 23403 11449 23403 11334 23403 11158 23404 11449 23404 11157 23404 11159 23405 11445 23405 11158 23405 11158 23406 11445 23406 11449 23406 11161 23407 11445 23407 11159 23407 11281 23408 11283 23408 11161 23408 11161 23409 11283 23409 11445 23409 11284 23410 11285 23410 11281 23410 11281 23411 11285 23411 11282 23411 11281 23412 11282 23412 11283 23412 11165 23413 11166 23413 11284 23413 11284 23414 11166 23414 11285 23414 11285 23415 11168 23415 3610 23415 11285 23416 3610 23416 11282 23416 11282 23417 3610 23417 11286 23417 11286 23418 3610 23418 3683 23418 11286 23419 3683 23419 11287 23419 11445 23420 11283 23420 11452 23420 11452 23421 11283 23421 11288 23421 11452 23422 11288 23422 11289 23422 11452 23423 11289 23423 11447 23423 11447 23424 11289 23424 11290 23424 11447 23425 11290 23425 11291 23425 11447 23426 11291 23426 11448 23426 11448 23427 11291 23427 11357 23427 11448 23428 11357 23428 11350 23428 11357 23429 11291 23429 11362 23429 11362 23430 11291 23430 11292 23430 11362 23431 11292 23431 11360 23431 11360 23432 11292 23432 11293 23432 11360 23433 11293 23433 11366 23433 11366 23434 11293 23434 11365 23434 11365 23435 11293 23435 11296 23435 11365 23436 11296 23436 11368 23436 11368 23437 11296 23437 11467 23437 11293 23438 11292 23438 11294 23438 11294 23439 11292 23439 11174 23439 11294 23440 11174 23440 11177 23440 11177 23441 11174 23441 3591 23441 3591 23442 11174 23442 11175 23442 11177 23443 11178 23443 11294 23443 11295 23444 11467 23444 11296 23444 11297 23445 11467 23445 11295 23445 11298 23446 11472 23446 11297 23446 11297 23447 11472 23447 11467 23447 11179 23448 11480 23448 11298 23448 11298 23449 11480 23449 11472 23449 11180 23450 11299 23450 11179 23450 11179 23451 11299 23451 11193 23451 11179 23452 11193 23452 11480 23452 11480 23453 11193 23453 11194 23453 11480 23454 11194 23454 11476 23454 11476 23455 11194 23455 11300 23455 11476 23456 11300 23456 11471 23456 11471 23457 11300 23457 11195 23457 11471 23458 11195 23458 11301 23458 11471 23459 11301 23459 11381 23459 11471 23460 11381 23460 11372 23460 11302 23461 3662 23461 11180 23461 11180 23462 3662 23462 2641 23462 11180 23463 2641 23463 11299 23463 11299 23464 2641 23464 11190 23464 11190 23465 2641 23465 2631 23465 11190 23466 2631 23466 11188 23466 11182 23467 3664 23467 11302 23467 11302 23468 3664 23468 3662 23468 2641 23469 3662 23469 11183 23469 11381 23470 11301 23470 11382 23470 11382 23471 11301 23471 11303 23471 11382 23472 11303 23472 11386 23472 11386 23473 11303 23473 11390 23473 11390 23474 11303 23474 11208 23474 11390 23475 11208 23475 11389 23475 11389 23476 11208 23476 11210 23476 11389 23477 11210 23477 11393 23477 11393 23478 11210 23478 11424 23478 11393 23479 11424 23479 11425 23479 11303 23480 11199 23480 11208 23480 11208 23481 11199 23481 11304 23481 11304 23482 11199 23482 11305 23482 11304 23483 11305 23483 11205 23483 11199 23484 11306 23484 11305 23484 11205 23485 11206 23485 11304 23485 11307 23486 11424 23486 11210 23486 11308 23487 11428 23487 11307 23487 11307 23488 11428 23488 11424 23488 11309 23489 11428 23489 11308 23489 11310 23490 11430 23490 11309 23490 11309 23491 11430 23491 11428 23491 11311 23492 11315 23492 11310 23492 11310 23493 11315 23493 11430 23493 11313 23494 2612 23494 11311 23494 11311 23495 2612 23495 11227 23495 11311 23496 11227 23496 11315 23496 11312 23497 11216 23497 11313 23497 11313 23498 11216 23498 2612 23498 11227 23499 2612 23499 11217 23499 11217 23500 2612 23500 11222 23500 11227 23501 11217 23501 11226 23501 11226 23502 11217 23502 11314 23502 11226 23503 11314 23503 11224 23503 11430 23504 11315 23504 11316 23504 11430 23505 11316 23505 11232 23505 11430 23506 11232 23506 11317 23506 11430 23507 11317 23507 11234 23507 11430 23508 11234 23508 11427 23508 11427 23509 11234 23509 11426 23509 11426 23510 11234 23510 11400 23510 11400 23511 11234 23511 11405 23511 11405 23512 11234 23512 11319 23512 11405 23513 11319 23513 11407 23513 11407 23514 11319 23514 11318 23514 11407 23515 11318 23515 11410 23515 11410 23516 11318 23516 11409 23516 11409 23517 11318 23517 11242 23517 11409 23518 11242 23518 11413 23518 11413 23519 11242 23519 11491 23519 11318 23520 11319 23520 11321 23520 11321 23521 11319 23521 11320 23521 11321 23522 11320 23522 11322 23522 11322 23523 11320 23523 11236 23523 11236 23524 11320 23524 11235 23524 11322 23525 11240 23525 11321 23525 11243 23526 11493 23526 11242 23526 11242 23527 11493 23527 11491 23527 11323 23528 11493 23528 11243 23528 11245 23529 11493 23529 11323 23529 11246 23530 11493 23530 11245 23530 11247 23531 11328 23531 11246 23531 11246 23532 11328 23532 11324 23532 11246 23533 11324 23533 11493 23533 11493 23534 11324 23534 11492 23534 11492 23535 11324 23535 11269 23535 11492 23536 11269 23536 11325 23536 11492 23537 11325 23537 11326 23537 11492 23538 11326 23538 11327 23538 11492 23539 11327 23539 11494 23539 11494 23540 11327 23540 11102 23540 11494 23541 11102 23541 11497 23541 11249 23542 11255 23542 11247 23542 11247 23543 11255 23543 11258 23543 11247 23544 11258 23544 11328 23544 11328 23545 11258 23545 11330 23545 11330 23546 11258 23546 11329 23546 11330 23547 11329 23547 11331 23547 11252 23548 11254 23548 11249 23548 11249 23549 11254 23549 11255 23549 11255 23550 11257 23550 11258 23550 11102 23551 11327 23551 11338 23551 11338 23552 11327 23552 11332 23552 11338 23553 11332 23553 11339 23553 11413 23554 11491 23554 11420 23554 11420 23555 11491 23555 11419 23555 11419 23556 11491 23556 11497 23556 11419 23557 11497 23557 11333 23557 11333 23558 11497 23558 11102 23558 11470 23559 11368 23559 11467 23559 11368 23560 11470 23560 11370 23560 11370 23561 11470 23561 11375 23561 11375 23562 11470 23562 11475 23562 11375 23563 11475 23563 11373 23563 11373 23564 11475 23564 11372 23564 11372 23565 11475 23565 11471 23565 11334 23566 11449 23566 11347 23566 11446 23567 11345 23567 11449 23567 11449 23568 11345 23568 11347 23568 11345 23569 11446 23569 11335 23569 11335 23570 11446 23570 11352 23570 11352 23571 11446 23571 11354 23571 11354 23572 11446 23572 11350 23572 11350 23573 11446 23573 11448 23573 11393 23574 11425 23574 11394 23574 11394 23575 11425 23575 11397 23575 11397 23576 11425 23576 11402 23576 11402 23577 11425 23577 11426 23577 11402 23578 11426 23578 11400 23578 11347 23579 11341 23579 11334 23579 11340 23580 11342 23580 11339 23580 11339 23581 11342 23581 11336 23581 11338 23582 11336 23582 11337 23582 11339 23583 11336 23583 11338 23583 11340 23584 11343 23584 11342 23584 11343 23585 11344 23585 11342 23585 11340 23586 11341 23586 11343 23586 11344 23587 11343 23587 11341 23587 11347 23588 11346 23588 11341 23588 11341 23589 11346 23589 11344 23589 11347 23590 11345 23590 11346 23590 11349 23591 11346 23591 11345 23591 11335 23592 11349 23592 11345 23592 11356 23593 11354 23593 11350 23593 11353 23594 11348 23594 11349 23594 11335 23595 11353 23595 11349 23595 11351 23596 11352 23596 11354 23596 11335 23597 11352 23597 11353 23597 11352 23598 11351 23598 11353 23598 11355 23599 11351 23599 11354 23599 11348 23600 11351 23600 11355 23600 11351 23601 11348 23601 11353 23601 11348 23602 11355 23602 11356 23602 11356 23603 11355 23603 11354 23603 11350 23604 11359 23604 11356 23604 11350 23605 11357 23605 11359 23605 11358 23606 11359 23606 11357 23606 11362 23607 11361 23607 11357 23607 11357 23608 11361 23608 11358 23608 11363 23609 11362 23609 11360 23609 11361 23610 11362 23610 11363 23610 11366 23611 11364 23611 11360 23611 11360 23612 11364 23612 11363 23612 11364 23613 11366 23613 11367 23613 11367 23614 11366 23614 11365 23614 11368 23615 11369 23615 11365 23615 11365 23616 11369 23616 11367 23616 11369 23617 11368 23617 11370 23617 11374 23618 11369 23618 11370 23618 11375 23619 11374 23619 11370 23619 11373 23620 11372 23620 11371 23620 11373 23621 11377 23621 11376 23621 11377 23622 11371 23622 11378 23622 11379 23623 11371 23623 11372 23623 11375 23624 11376 23624 11374 23624 11377 23625 11378 23625 11376 23625 11374 23626 11376 23626 11378 23626 11375 23627 11373 23627 11376 23627 11373 23628 11371 23628 11377 23628 11378 23629 11371 23629 11379 23629 11372 23630 11380 23630 11379 23630 11380 23631 11372 23631 11381 23631 11382 23632 11384 23632 11381 23632 11381 23633 11384 23633 11380 23633 11382 23634 11388 23634 11384 23634 11382 23635 11386 23635 11385 23635 11382 23636 11386 23636 11388 23636 11387 23637 11385 23637 11386 23637 11385 23638 11383 23638 11386 23638 11386 23639 11382 23639 11385 23639 11383 23640 11387 23640 11386 23640 11390 23641 11391 23641 11386 23641 11386 23642 11391 23642 11388 23642 11123 23643 11391 23643 11389 23643 11391 23644 11390 23644 11389 23644 11393 23645 11392 23645 11389 23645 11389 23646 11392 23646 11123 23646 11393 23647 11394 23647 11392 23647 11392 23648 11394 23648 11395 23648 11402 23649 11398 23649 11397 23649 11394 23650 11397 23650 11395 23650 11396 23651 11398 23651 11402 23651 11398 23652 11396 23652 11397 23652 11396 23653 11395 23653 11397 23653 11396 23654 11402 23654 11399 23654 11402 23655 11400 23655 11399 23655 11399 23656 11400 23656 11401 23656 11405 23657 11404 23657 11400 23657 11400 23658 11404 23658 11401 23658 11405 23659 11403 23659 11404 23659 11404 23660 11403 23660 11406 23660 11406 23661 11403 23661 11407 23661 11403 23662 11405 23662 11407 23662 11410 23663 11408 23663 11407 23663 11407 23664 11408 23664 11406 23664 11408 23665 11410 23665 11411 23665 11411 23666 11410 23666 11409 23666 11413 23667 11414 23667 11409 23667 11409 23668 11414 23668 11411 23668 11413 23669 11412 23669 11414 23669 11414 23670 11412 23670 11415 23670 11415 23671 11412 23671 11420 23671 11420 23672 11412 23672 11413 23672 11416 23673 11417 23673 11418 23673 11421 23674 11422 23674 11333 23674 11420 23675 11416 23675 11415 23675 11420 23676 11419 23676 11417 23676 11422 23677 11417 23677 11419 23677 11422 23678 11419 23678 11333 23678 11418 23679 11417 23679 11422 23679 11418 23680 11422 23680 11421 23680 11416 23681 11420 23681 11417 23681 11415 23682 11416 23682 11418 23682 11333 23683 11101 23683 11421 23683 11425 23684 11432 23684 11426 23684 11430 23685 11438 23685 11428 23685 11424 23686 11428 23686 11429 23686 11425 23687 11424 23687 11433 23687 11425 23688 11433 23688 11442 23688 11425 23689 11442 23689 11432 23689 11430 23690 11427 23690 11431 23690 11424 23691 11434 23691 11433 23691 11427 23692 11426 23692 11435 23692 11430 23693 11436 23693 11438 23693 11424 23694 11429 23694 11434 23694 11426 23695 11444 23695 11435 23695 11430 23696 11431 23696 11436 23696 11428 23697 11438 23697 11437 23697 11428 23698 11437 23698 11429 23698 11427 23699 11435 23699 11431 23699 11426 23700 11432 23700 11444 23700 11429 23701 11437 23701 11423 23701 11433 23702 11434 23702 11443 23702 11433 23703 11443 23703 11442 23703 11432 23704 11442 23704 11440 23704 11431 23705 11435 23705 11441 23705 11436 23706 11431 23706 11439 23706 11432 23707 11440 23707 11444 23707 11429 23708 11423 23708 11434 23708 11435 23709 11444 23709 11441 23709 11436 23710 11439 23710 11438 23710 11438 23711 11439 23711 11437 23711 11431 23712 11441 23712 11439 23712 11434 23713 11423 23713 11443 23713 11461 23714 11466 23714 11457 23714 11449 23715 11445 23715 11455 23715 11448 23716 11446 23716 11456 23716 11447 23717 11448 23717 11450 23717 11446 23718 11449 23718 11451 23718 11447 23719 11453 23719 11452 23719 11447 23720 11450 23720 11454 23720 11450 23721 11461 23721 11454 23721 11446 23722 11451 23722 11456 23722 11449 23723 11455 23723 11458 23723 11447 23724 11454 23724 11453 23724 11445 23725 11459 23725 11455 23725 11450 23726 11448 23726 11461 23726 11449 23727 11458 23727 11451 23727 11452 23728 11453 23728 11464 23728 11452 23729 11464 23729 11445 23729 11445 23730 11463 23730 11459 23730 11451 23731 11457 23731 11456 23731 11456 23732 11466 23732 11448 23732 11454 23733 11461 23733 11152 23733 11445 23734 11464 23734 11463 23734 11451 23735 11458 23735 11460 23735 11451 23736 11460 23736 11457 23736 11458 23737 11455 23737 11465 23737 11455 23738 11459 23738 11462 23738 11458 23739 11465 23739 11460 23739 11448 23740 11466 23740 11461 23740 11454 23741 11152 23741 11453 23741 11456 23742 11457 23742 11466 23742 11459 23743 11463 23743 11462 23743 11455 23744 11462 23744 11465 23744 11453 23745 11152 23745 11464 23745 11470 23746 11474 23746 11475 23746 11475 23747 11468 23747 11471 23747 11485 23748 11487 23748 11478 23748 11467 23749 11469 23749 11470 23749 11467 23750 11472 23750 11473 23750 11467 23751 11473 23751 11469 23751 11480 23752 11476 23752 11481 23752 11472 23753 11480 23753 11482 23753 11472 23754 11482 23754 11473 23754 11468 23755 11479 23755 11471 23755 11473 23756 11477 23756 11469 23756 11468 23757 11475 23757 11479 23757 11471 23758 11484 23758 11476 23758 11471 23759 11479 23759 11484 23759 11473 23760 11482 23760 11486 23760 11476 23761 11484 23761 11478 23761 11476 23762 11478 23762 11481 23762 11473 23763 11486 23763 11477 23763 11475 23764 11474 23764 11479 23764 11469 23765 11477 23765 11483 23765 11469 23766 11483 23766 11470 23766 11474 23767 11470 23767 11489 23767 11470 23768 11483 23768 11489 23768 11474 23769 11489 23769 11479 23769 11480 23770 11481 23770 11487 23770 11480 23771 11487 23771 11482 23771 11483 23772 11477 23772 11488 23772 11479 23773 11490 23773 11484 23773 11484 23774 11490 23774 11478 23774 11482 23775 11487 23775 11485 23775 11479 23776 11489 23776 11490 23776 11481 23777 11478 23777 11487 23777 11482 23778 11485 23778 11486 23778 11477 23779 11486 23779 11488 23779 11483 23780 11488 23780 11489 23780 11493 23781 11496 23781 11491 23781 11511 23782 11509 23782 11498 23782 11491 23783 11504 23783 11507 23783 11491 23784 11502 23784 11497 23784 11492 23785 11501 23785 11495 23785 11492 23786 11495 23786 11493 23786 11492 23787 11494 23787 11501 23787 11494 23788 11497 23788 11503 23788 11491 23789 11507 23789 11498 23789 11491 23790 11498 23790 11502 23790 11493 23791 11505 23791 11496 23791 11491 23792 11496 23792 11504 23792 11494 23793 11503 23793 11499 23793 11494 23794 11499 23794 11501 23794 11493 23795 11500 23795 11505 23795 11493 23796 11495 23796 11500 23796 11497 23797 11509 23797 11503 23797 11497 23798 11502 23798 11509 23798 11495 23799 11501 23799 11506 23799 11496 23800 11505 23800 11504 23800 11495 23801 11506 23801 11500 23801 11501 23802 11499 23802 11508 23802 11504 23803 11505 23803 11513 23803 11501 23804 11508 23804 11506 23804 11505 23805 11510 23805 11513 23805 11502 23806 11498 23806 11509 23806 11500 23807 11510 23807 11505 23807 11503 23808 11509 23808 11511 23808 11503 23809 11511 23809 11499 23809 11504 23810 11513 23810 11507 23810 11500 23811 11506 23811 11512 23811 11500 23812 11512 23812 11510 23812 11499 23813 11511 23813 11508 23813 11507 23814 11513 23814 11498 23814 11528 23815 11539 23815 11534 23815 11526 23816 11539 23816 11528 23816 11531 23817 11514 23817 11526 23817 11534 23818 11514 23818 11531 23818 11514 23819 11539 23819 11526 23819 11539 23820 11514 23820 11534 23820 11518 23821 11538 23821 11519 23821 11515 23822 11516 23822 11518 23822 11518 23823 11516 23823 11538 23823 11517 23824 11516 23824 11515 23824 11519 23825 11516 23825 11517 23825 11538 23826 11516 23826 11519 23826 11519 23827 11517 23827 11521 23827 11521 23828 11517 23828 11522 23828 11521 23829 11535 23829 11520 23829 11522 23830 11536 23830 11521 23830 11521 23831 11536 23831 11535 23831 11523 23832 11536 23832 11522 23832 11520 23833 11536 23833 11523 23833 11535 23834 11536 23834 11520 23834 11520 23835 11523 23835 11524 23835 11524 23836 11523 23836 11530 23836 11527 23837 11524 23837 11529 23837 11529 23838 11524 23838 11530 23838 11527 23839 11525 23839 11528 23839 11529 23840 11525 23840 11527 23840 11526 23841 11537 23841 11529 23841 11528 23842 11525 23842 11526 23842 11526 23843 11525 23843 11537 23843 11529 23844 11537 23844 11525 23844 11532 23845 11531 23845 11515 23845 11515 23846 11531 23846 11517 23846 11517 23847 11531 23847 11526 23847 11517 23848 11526 23848 11522 23848 11522 23849 11526 23849 11529 23849 11522 23850 11529 23850 11523 23850 11523 23851 11529 23851 11530 23851 11534 23852 11531 23852 11533 23852 11533 23853 11531 23853 11532 23853 11533 23854 11532 23854 11518 23854 11518 23855 11532 23855 11515 23855 11533 23856 11518 23856 11534 23856 11534 23857 11518 23857 11519 23857 11534 23858 11519 23858 11528 23858 11528 23859 11519 23859 11521 23859 11528 23860 11521 23860 11527 23860 11527 23861 11521 23861 11520 23861 11527 23862 11520 23862 11524 23862 11552 23863 11564 23863 11542 23863 11553 23864 11564 23864 11552 23864 11540 23865 11541 23865 11553 23865 11542 23866 11541 23866 11540 23866 11541 23867 11564 23867 11553 23867 11564 23868 11541 23868 11542 23868 11541 23869 11543 23869 11545 23869 11541 23870 11545 23870 11543 23870 11546 23871 11565 23871 11557 23871 11544 23872 11543 23872 11546 23872 11546 23873 11543 23873 11565 23873 11545 23874 11543 23874 11544 23874 11565 23875 11543 23875 11545 23875 11565 23876 11545 23876 11557 23876 11557 23877 11545 23877 11548 23877 11548 23878 11545 23878 11547 23878 11548 23879 11561 23879 11559 23879 11547 23880 11563 23880 11548 23880 11548 23881 11563 23881 11561 23881 11549 23882 11563 23882 11547 23882 11559 23883 11563 23883 11549 23883 11561 23884 11563 23884 11559 23884 11559 23885 11549 23885 11550 23885 11550 23886 11549 23886 11551 23886 11558 23887 11550 23887 11554 23887 11554 23888 11550 23888 11551 23888 11558 23889 11560 23889 11552 23889 11554 23890 11560 23890 11558 23890 11553 23891 11562 23891 11554 23891 11552 23892 11560 23892 11553 23892 11553 23893 11560 23893 11562 23893 11554 23894 11562 23894 11560 23894 11555 23895 11540 23895 11544 23895 11544 23896 11540 23896 11545 23896 11545 23897 11540 23897 11553 23897 11545 23898 11553 23898 11547 23898 11547 23899 11553 23899 11554 23899 11547 23900 11554 23900 11549 23900 11549 23901 11554 23901 11551 23901 11542 23902 11540 23902 11556 23902 11556 23903 11540 23903 11555 23903 11556 23904 11555 23904 11546 23904 11546 23905 11555 23905 11544 23905 11556 23906 11546 23906 11542 23906 11542 23907 11546 23907 11557 23907 11542 23908 11557 23908 11552 23908 11552 23909 11557 23909 11548 23909 11552 23910 11548 23910 11558 23910 11558 23911 11548 23911 11559 23911 11558 23912 11559 23912 11550 23912 11567 23913 11591 23913 11566 23913 11581 23914 11591 23914 11567 23914 11583 23915 11568 23915 11581 23915 11566 23916 11568 23916 11583 23916 11568 23917 11591 23917 11581 23917 11591 23918 11568 23918 11566 23918 11569 23919 11590 23919 11570 23919 11572 23920 11573 23920 11569 23920 11569 23921 11573 23921 11590 23921 11571 23922 11573 23922 11572 23922 11570 23923 11573 23923 11571 23923 11590 23924 11573 23924 11570 23924 11570 23925 11571 23925 11576 23925 11576 23926 11571 23926 11574 23926 11576 23927 11587 23927 11577 23927 11574 23928 11589 23928 11576 23928 11576 23929 11589 23929 11587 23929 11575 23930 11589 23930 11574 23930 11577 23931 11589 23931 11575 23931 11587 23932 11589 23932 11577 23932 11577 23933 11575 23933 11585 23933 11585 23934 11575 23934 11582 23934 11579 23935 11585 23935 11578 23935 11578 23936 11585 23936 11582 23936 11579 23937 11586 23937 11567 23937 11578 23938 11586 23938 11579 23938 11581 23939 11588 23939 11578 23939 11567 23940 11586 23940 11581 23940 11581 23941 11586 23941 11588 23941 11578 23942 11588 23942 11586 23942 11580 23943 11583 23943 11572 23943 11572 23944 11583 23944 11571 23944 11571 23945 11583 23945 11581 23945 11571 23946 11581 23946 11574 23946 11574 23947 11581 23947 11578 23947 11574 23948 11578 23948 11575 23948 11575 23949 11578 23949 11582 23949 11566 23950 11583 23950 11584 23950 11584 23951 11583 23951 11580 23951 11584 23952 11580 23952 11569 23952 11569 23953 11580 23953 11572 23953 11584 23954 11569 23954 11566 23954 11566 23955 11569 23955 11570 23955 11566 23956 11570 23956 11567 23956 11567 23957 11570 23957 11576 23957 11567 23958 11576 23958 11579 23958 11579 23959 11576 23959 11577 23959 11579 23960 11577 23960 11585 23960 11605 23961 11616 23961 11609 23961 11602 23962 11616 23962 11605 23962 11606 23963 11617 23963 11602 23963 11609 23964 11617 23964 11606 23964 11617 23965 11616 23965 11602 23965 11616 23966 11617 23966 11609 23966 11596 23967 11615 23967 11594 23967 11592 23968 11593 23968 11596 23968 11596 23969 11593 23969 11615 23969 11595 23970 11593 23970 11592 23970 11594 23971 11593 23971 11595 23971 11615 23972 11593 23972 11594 23972 11594 23973 11595 23973 11610 23973 11610 23974 11595 23974 11598 23974 11610 23975 11613 23975 11599 23975 11598 23976 11614 23976 11610 23976 11610 23977 11614 23977 11613 23977 11597 23978 11614 23978 11598 23978 11599 23979 11614 23979 11597 23979 11613 23980 11614 23980 11599 23980 11599 23981 11597 23981 11611 23981 11611 23982 11597 23982 11600 23982 11601 23983 11611 23983 11603 23983 11603 23984 11611 23984 11600 23984 11601 23985 11612 23985 11605 23985 11603 23986 11612 23986 11601 23986 11602 23987 11604 23987 11603 23987 11605 23988 11612 23988 11602 23988 11602 23989 11612 23989 11604 23989 11603 23990 11604 23990 11612 23990 11608 23991 11606 23991 11592 23991 11592 23992 11606 23992 11595 23992 11595 23993 11606 23993 11602 23993 11595 23994 11602 23994 11598 23994 11598 23995 11602 23995 11603 23995 11598 23996 11603 23996 11597 23996 11597 23997 11603 23997 11600 23997 11609 23998 11606 23998 11607 23998 11607 23999 11606 23999 11608 23999 11607 24000 11608 24000 11596 24000 11596 24001 11608 24001 11592 24001 11607 24002 11596 24002 11609 24002 11609 24003 11596 24003 11594 24003 11609 24004 11594 24004 11605 24004 11605 24005 11594 24005 11610 24005 11605 24006 11610 24006 11601 24006 11601 24007 11610 24007 11599 24007 11601 24008 11599 24008 11611 24008 11618 24009 11642 24009 11636 24009 11619 24010 11642 24010 11618 24010 11620 24011 11621 24011 11619 24011 11621 24012 11642 24012 11619 24012 11621 24013 11620 24013 11642 24013 11642 24014 11620 24014 11636 24014 11621 24015 11625 24015 11623 24015 11621 24016 11623 24016 11625 24016 11626 24017 11643 24017 11622 24017 11624 24018 11625 24018 11626 24018 11626 24019 11625 24019 11643 24019 11623 24020 11625 24020 11624 24020 11643 24021 11625 24021 11623 24021 11643 24022 11623 24022 11622 24022 11622 24023 11623 24023 11637 24023 11637 24024 11623 24024 11628 24024 11637 24025 11639 24025 11627 24025 11628 24026 11641 24026 11637 24026 11637 24027 11641 24027 11639 24027 11629 24028 11641 24028 11628 24028 11627 24029 11641 24029 11629 24029 11639 24030 11641 24030 11627 24030 11627 24031 11629 24031 11630 24031 11630 24032 11629 24032 11633 24032 11632 24033 11630 24033 11631 24033 11631 24034 11630 24034 11633 24034 11632 24035 11638 24035 11618 24035 11631 24036 11638 24036 11632 24036 11619 24037 11640 24037 11631 24037 11618 24038 11638 24038 11619 24038 11619 24039 11638 24039 11640 24039 11631 24040 11640 24040 11638 24040 11635 24041 11620 24041 11624 24041 11624 24042 11620 24042 11623 24042 11623 24043 11620 24043 11619 24043 11623 24044 11619 24044 11628 24044 11628 24045 11619 24045 11631 24045 11628 24046 11631 24046 11629 24046 11629 24047 11631 24047 11633 24047 11636 24048 11620 24048 11634 24048 11634 24049 11620 24049 11635 24049 11634 24050 11635 24050 11626 24050 11626 24051 11635 24051 11624 24051 11634 24052 11626 24052 11636 24052 11636 24053 11626 24053 11622 24053 11636 24054 11622 24054 11618 24054 11618 24055 11622 24055 11637 24055 11618 24056 11637 24056 11632 24056 11632 24057 11637 24057 11627 24057 11632 24058 11627 24058 11630 24058 11644 24059 11667 24059 11646 24059 11661 24060 11667 24060 11644 24060 11645 24061 11669 24061 11661 24061 11646 24062 11669 24062 11645 24062 11669 24063 11667 24063 11661 24063 11667 24064 11669 24064 11646 24064 11663 24065 11668 24065 11647 24065 11649 24066 11650 24066 11663 24066 11663 24067 11650 24067 11668 24067 11648 24068 11650 24068 11649 24068 11647 24069 11650 24069 11648 24069 11668 24070 11650 24070 11647 24070 11647 24071 11648 24071 11653 24071 11653 24072 11648 24072 11651 24072 11653 24073 11665 24073 11654 24073 11651 24074 11666 24074 11653 24074 11653 24075 11666 24075 11665 24075 11652 24076 11666 24076 11651 24076 11654 24077 11666 24077 11652 24077 11665 24078 11666 24078 11654 24078 11654 24079 11652 24079 11655 24079 11655 24080 11652 24080 11662 24080 11656 24081 11655 24081 11657 24081 11657 24082 11655 24082 11662 24082 11656 24083 11659 24083 11644 24083 11657 24084 11659 24084 11656 24084 11661 24085 11658 24085 11657 24085 11644 24086 11659 24086 11661 24086 11661 24087 11659 24087 11658 24087 11657 24088 11658 24088 11659 24088 11660 24089 11645 24089 11649 24089 11649 24090 11645 24090 11648 24090 11648 24091 11645 24091 11661 24091 11648 24092 11661 24092 11651 24092 11651 24093 11661 24093 11657 24093 11651 24094 11657 24094 11652 24094 11652 24095 11657 24095 11662 24095 11646 24096 11645 24096 11664 24096 11664 24097 11645 24097 11660 24097 11664 24098 11660 24098 11663 24098 11663 24099 11660 24099 11649 24099 11664 24100 11663 24100 11646 24100 11646 24101 11663 24101 11647 24101 11646 24102 11647 24102 11644 24102 11644 24103 11647 24103 11653 24103 11644 24104 11653 24104 11656 24104 11656 24105 11653 24105 11654 24105 11656 24106 11654 24106 11655 24106 11683 24107 11670 24107 11672 24107 11688 24108 11670 24108 11683 24108 11671 24109 11673 24109 11688 24109 11672 24110 11673 24110 11671 24110 11673 24111 11670 24111 11688 24111 11670 24112 11673 24112 11672 24112 11675 24113 11695 24113 11678 24113 11677 24114 11674 24114 11675 24114 11675 24115 11674 24115 11695 24115 11676 24116 11674 24116 11677 24116 11678 24117 11674 24117 11676 24117 11695 24118 11674 24118 11678 24118 11678 24119 11676 24119 11681 24119 11681 24120 11676 24120 11687 24120 11681 24121 11692 24121 11679 24121 11681 24122 11687 24122 11692 24122 11680 24123 11694 24123 11687 24123 11679 24124 11694 24124 11680 24124 11692 24125 11687 24125 11694 24125 11692 24126 11694 24126 11679 24126 11679 24127 11680 24127 11682 24127 11682 24128 11680 24128 11689 24128 11686 24129 11682 24129 11685 24129 11685 24130 11682 24130 11689 24130 11686 24131 11684 24131 11683 24131 11685 24132 11684 24132 11686 24132 11688 24133 11693 24133 11685 24133 11683 24134 11684 24134 11688 24134 11688 24135 11684 24135 11693 24135 11685 24136 11693 24136 11684 24136 11691 24137 11671 24137 11677 24137 11677 24138 11671 24138 11676 24138 11676 24139 11671 24139 11688 24139 11676 24140 11688 24140 11687 24140 11687 24141 11688 24141 11685 24141 11687 24142 11685 24142 11680 24142 11680 24143 11685 24143 11689 24143 11672 24144 11671 24144 11690 24144 11690 24145 11671 24145 11691 24145 11690 24146 11691 24146 11675 24146 11675 24147 11691 24147 11677 24147 11690 24148 11675 24148 11672 24148 11672 24149 11675 24149 11678 24149 11672 24150 11678 24150 11683 24150 11683 24151 11678 24151 11681 24151 11683 24152 11681 24152 11686 24152 11686 24153 11681 24153 11679 24153 11686 24154 11679 24154 11682 24154 11693 24155 11694 24155 11687 24155 11693 24156 11687 24156 11694 24156 11698 24157 11696 24157 11697 24157 11714 24158 11696 24158 11698 24158 11699 24159 11700 24159 11714 24159 11697 24160 11700 24160 11699 24160 11700 24161 11696 24161 11714 24161 11696 24162 11700 24162 11697 24162 11700 24163 11703 24163 11705 24163 11700 24164 11705 24164 11703 24164 11704 24165 11721 24165 11702 24165 11701 24166 11703 24166 11704 24166 11704 24167 11703 24167 11721 24167 11705 24168 11703 24168 11701 24168 11721 24169 11703 24169 11705 24169 11721 24170 11705 24170 11702 24170 11702 24171 11705 24171 11708 24171 11708 24172 11705 24172 11706 24172 11708 24173 11719 24173 11709 24173 11706 24174 11720 24174 11708 24174 11708 24175 11720 24175 11719 24175 11707 24176 11720 24176 11706 24176 11709 24177 11720 24177 11707 24177 11719 24178 11720 24178 11709 24178 11709 24179 11707 24179 11717 24179 11717 24180 11707 24180 11710 24180 11713 24181 11717 24181 11711 24181 11711 24182 11717 24182 11710 24182 11713 24183 11718 24183 11698 24183 11711 24184 11718 24184 11713 24184 11714 24185 11712 24185 11711 24185 11698 24186 11718 24186 11714 24186 11714 24187 11718 24187 11712 24187 11711 24188 11712 24188 11718 24188 11716 24189 11699 24189 11701 24189 11701 24190 11699 24190 11705 24190 11705 24191 11699 24191 11714 24191 11705 24192 11714 24192 11706 24192 11706 24193 11714 24193 11711 24193 11706 24194 11711 24194 11707 24194 11707 24195 11711 24195 11710 24195 11697 24196 11699 24196 11715 24196 11715 24197 11699 24197 11716 24197 11715 24198 11716 24198 11704 24198 11704 24199 11716 24199 11701 24199 11715 24200 11704 24200 11697 24200 11697 24201 11704 24201 11702 24201 11697 24202 11702 24202 11698 24202 11698 24203 11702 24203 11708 24203 11698 24204 11708 24204 11713 24204 11713 24205 11708 24205 11709 24205 11713 24206 11709 24206 11717 24206 11736 24207 11747 24207 11722 24207 11739 24208 11747 24208 11736 24208 11740 24209 11723 24209 11739 24209 11722 24210 11723 24210 11740 24210 11723 24211 11747 24211 11739 24211 11747 24212 11723 24212 11722 24212 11728 24213 11746 24213 11724 24213 11725 24214 11726 24214 11728 24214 11728 24215 11726 24215 11746 24215 11727 24216 11726 24216 11725 24216 11724 24217 11726 24217 11727 24217 11746 24218 11726 24218 11724 24218 11724 24219 11727 24219 11732 24219 11732 24220 11727 24220 11730 24220 11732 24221 11743 24221 11729 24221 11730 24222 11744 24222 11732 24222 11732 24223 11744 24223 11743 24223 11731 24224 11744 24224 11730 24224 11729 24225 11744 24225 11731 24225 11743 24226 11744 24226 11729 24226 11729 24227 11731 24227 11734 24227 11734 24228 11731 24228 11733 24228 11735 24229 11734 24229 11737 24229 11737 24230 11734 24230 11733 24230 11735 24231 11738 24231 11736 24231 11737 24232 11738 24232 11735 24232 11739 24233 11745 24233 11737 24233 11736 24234 11738 24234 11739 24234 11739 24235 11738 24235 11745 24235 11737 24236 11745 24236 11738 24236 11741 24237 11740 24237 11725 24237 11725 24238 11740 24238 11727 24238 11727 24239 11740 24239 11739 24239 11727 24240 11739 24240 11730 24240 11730 24241 11739 24241 11737 24241 11730 24242 11737 24242 11731 24242 11731 24243 11737 24243 11733 24243 11722 24244 11740 24244 11742 24244 11742 24245 11740 24245 11741 24245 11742 24246 11741 24246 11728 24246 11728 24247 11741 24247 11725 24247 11742 24248 11728 24248 11722 24248 11722 24249 11728 24249 11724 24249 11722 24250 11724 24250 11736 24250 11736 24251 11724 24251 11732 24251 11736 24252 11732 24252 11735 24252 11735 24253 11732 24253 11729 24253 11735 24254 11729 24254 11734 24254 11749 24255 11750 24255 11748 24255 11765 24256 11750 24256 11749 24256 11767 24257 11751 24257 11765 24257 11748 24258 11751 24258 11767 24258 11751 24259 11750 24259 11765 24259 11750 24260 11751 24260 11748 24260 11755 24261 11756 24261 11757 24261 11753 24262 11754 24262 11755 24262 11755 24263 11754 24263 11756 24263 11752 24264 11754 24264 11753 24264 11757 24265 11754 24265 11752 24265 11756 24266 11754 24266 11757 24266 11757 24267 11752 24267 11760 24267 11760 24268 11752 24268 11758 24268 11760 24269 11772 24269 11761 24269 11760 24270 11758 24270 11772 24270 11759 24271 11773 24271 11758 24271 11761 24272 11773 24272 11759 24272 11772 24273 11758 24273 11773 24273 11772 24274 11773 24274 11761 24274 11761 24275 11759 24275 11762 24275 11762 24276 11759 24276 11769 24276 11766 24277 11762 24277 11768 24277 11768 24278 11762 24278 11769 24278 11766 24279 11763 24279 11749 24279 11768 24280 11763 24280 11766 24280 11765 24281 11764 24281 11768 24281 11749 24282 11763 24282 11765 24282 11765 24283 11763 24283 11764 24283 11768 24284 11764 24284 11763 24284 11771 24285 11767 24285 11753 24285 11753 24286 11767 24286 11752 24286 11752 24287 11767 24287 11765 24287 11752 24288 11765 24288 11758 24288 11758 24289 11765 24289 11768 24289 11758 24290 11768 24290 11759 24290 11759 24291 11768 24291 11769 24291 11748 24292 11767 24292 11770 24292 11770 24293 11767 24293 11771 24293 11770 24294 11771 24294 11755 24294 11755 24295 11771 24295 11753 24295 11770 24296 11755 24296 11748 24296 11748 24297 11755 24297 11757 24297 11748 24298 11757 24298 11749 24298 11749 24299 11757 24299 11760 24299 11749 24300 11760 24300 11766 24300 11766 24301 11760 24301 11761 24301 11766 24302 11761 24302 11762 24302 11764 24303 11773 24303 11758 24303 11764 24304 11758 24304 11773 24304 11774 24305 11798 24305 11793 24305 11788 24306 11798 24306 11774 24306 11791 24307 11775 24307 11788 24307 11793 24308 11775 24308 11791 24308 11775 24309 11798 24309 11788 24309 11798 24310 11775 24310 11793 24310 11779 24311 11799 24311 11780 24311 11777 24312 11776 24312 11779 24312 11779 24313 11776 24313 11799 24313 11778 24314 11776 24314 11777 24314 11780 24315 11776 24315 11778 24315 11799 24316 11776 24316 11780 24316 11780 24317 11778 24317 11783 24317 11783 24318 11778 24318 11781 24318 11783 24319 11795 24319 11784 24319 11781 24320 11797 24320 11783 24320 11783 24321 11797 24321 11795 24321 11782 24322 11797 24322 11781 24322 11784 24323 11797 24323 11782 24323 11795 24324 11797 24324 11784 24324 11784 24325 11782 24325 11785 24325 11785 24326 11782 24326 11786 24326 11794 24327 11785 24327 11787 24327 11787 24328 11785 24328 11786 24328 11794 24329 11789 24329 11774 24329 11787 24330 11789 24330 11794 24330 11788 24331 11796 24331 11787 24331 11774 24332 11789 24332 11788 24332 11788 24333 11789 24333 11796 24333 11787 24334 11796 24334 11789 24334 11790 24335 11791 24335 11777 24335 11777 24336 11791 24336 11778 24336 11778 24337 11791 24337 11788 24337 11778 24338 11788 24338 11781 24338 11781 24339 11788 24339 11787 24339 11781 24340 11787 24340 11782 24340 11782 24341 11787 24341 11786 24341 11793 24342 11791 24342 11792 24342 11792 24343 11791 24343 11790 24343 11792 24344 11790 24344 11779 24344 11779 24345 11790 24345 11777 24345 11792 24346 11779 24346 11793 24346 11793 24347 11779 24347 11780 24347 11793 24348 11780 24348 11774 24348 11774 24349 11780 24349 11783 24349 11774 24350 11783 24350 11794 24350 11794 24351 11783 24351 11784 24351 11794 24352 11784 24352 11785 24352 11818 24353 11800 24353 11801 24353 11812 24354 11800 24354 11818 24354 11824 24355 11825 24355 11812 24355 11825 24356 11800 24356 11812 24356 11825 24357 11824 24357 11800 24357 11800 24358 11824 24358 11801 24358 11817 24359 11823 24359 11802 24359 11803 24360 11804 24360 11817 24360 11817 24361 11804 24361 11823 24361 11805 24362 11804 24362 11803 24362 11802 24363 11804 24363 11805 24363 11823 24364 11804 24364 11802 24364 11802 24365 11805 24365 11808 24365 11808 24366 11805 24366 11813 24366 11808 24367 11820 24367 11806 24367 11813 24368 11821 24368 11808 24368 11808 24369 11821 24369 11820 24369 11807 24370 11821 24370 11813 24370 11806 24371 11821 24371 11807 24371 11820 24372 11821 24372 11806 24372 11806 24373 11807 24373 11819 24373 11819 24374 11807 24374 11815 24374 11810 24375 11819 24375 11814 24375 11814 24376 11819 24376 11815 24376 11810 24377 11809 24377 11818 24377 11814 24378 11809 24378 11810 24378 11812 24379 11822 24379 11814 24379 11818 24380 11809 24380 11812 24380 11812 24381 11809 24381 11822 24381 11814 24382 11822 24382 11809 24382 11811 24383 11824 24383 11803 24383 11803 24384 11824 24384 11805 24384 11805 24385 11824 24385 11812 24385 11805 24386 11812 24386 11813 24386 11813 24387 11812 24387 11814 24387 11813 24388 11814 24388 11807 24388 11807 24389 11814 24389 11815 24389 11801 24390 11824 24390 11816 24390 11816 24391 11824 24391 11811 24391 11816 24392 11811 24392 11817 24392 11817 24393 11811 24393 11803 24393 11816 24394 11817 24394 11801 24394 11801 24395 11817 24395 11802 24395 11801 24396 11802 24396 11818 24396 11818 24397 11802 24397 11808 24397 11818 24398 11808 24398 11810 24398 11810 24399 11808 24399 11806 24399 11810 24400 11806 24400 11819 24400 11836 24401 11850 24401 11826 24401 11838 24402 11850 24402 11836 24402 11827 24403 11828 24403 11838 24403 11828 24404 11850 24404 11838 24404 11828 24405 11827 24405 11850 24405 11850 24406 11827 24406 11826 24406 11830 24407 11851 24407 11832 24407 11831 24408 11829 24408 11830 24408 11830 24409 11829 24409 11851 24409 11839 24410 11829 24410 11831 24410 11832 24411 11829 24411 11839 24411 11851 24412 11829 24412 11832 24412 11832 24413 11839 24413 11834 24413 11834 24414 11839 24414 11840 24414 11834 24415 11846 24415 11844 24415 11840 24416 11848 24416 11834 24416 11834 24417 11848 24417 11846 24417 11833 24418 11848 24418 11840 24418 11844 24419 11848 24419 11833 24419 11846 24420 11848 24420 11844 24420 11844 24421 11833 24421 11845 24421 11845 24422 11833 24422 11841 24422 11835 24423 11845 24423 11837 24423 11837 24424 11845 24424 11841 24424 11835 24425 11849 24425 11836 24425 11837 24426 11849 24426 11835 24426 11838 24427 11847 24427 11837 24427 11836 24428 11849 24428 11838 24428 11838 24429 11849 24429 11847 24429 11837 24430 11847 24430 11849 24430 11843 24431 11827 24431 11831 24431 11831 24432 11827 24432 11839 24432 11839 24433 11827 24433 11838 24433 11839 24434 11838 24434 11840 24434 11840 24435 11838 24435 11837 24435 11840 24436 11837 24436 11833 24436 11833 24437 11837 24437 11841 24437 11826 24438 11827 24438 11842 24438 11842 24439 11827 24439 11843 24439 11842 24440 11843 24440 11830 24440 11830 24441 11843 24441 11831 24441 11842 24442 11830 24442 11826 24442 11826 24443 11830 24443 11832 24443 11826 24444 11832 24444 11836 24444 11836 24445 11832 24445 11834 24445 11836 24446 11834 24446 11835 24446 11835 24447 11834 24447 11844 24447 11835 24448 11844 24448 11845 24448 11867 24449 11852 24449 11869 24449 11863 24450 11852 24450 11867 24450 11870 24451 11853 24451 11863 24451 11869 24452 11853 24452 11870 24452 11853 24453 11852 24453 11863 24453 11852 24454 11853 24454 11869 24454 11853 24455 11855 24455 11854 24455 11853 24456 11854 24456 11855 24456 11858 24457 11878 24457 11873 24457 11856 24458 11855 24458 11858 24458 11858 24459 11855 24459 11878 24459 11857 24460 11855 24460 11856 24460 11873 24461 11854 24461 11857 24461 11857 24462 11854 24462 11855 24462 11878 24463 11855 24463 11854 24463 11878 24464 11854 24464 11873 24464 11873 24465 11857 24465 11874 24465 11874 24466 11857 24466 11859 24466 11874 24467 11876 24467 11860 24467 11859 24468 11877 24468 11874 24468 11874 24469 11877 24469 11876 24469 11861 24470 11877 24470 11859 24470 11860 24471 11877 24471 11861 24471 11876 24472 11877 24472 11860 24472 11860 24473 11861 24473 11862 24473 11862 24474 11861 24474 11868 24474 11875 24475 11862 24475 11864 24475 11864 24476 11862 24476 11868 24476 11875 24477 11865 24477 11867 24477 11864 24478 11865 24478 11875 24478 11863 24479 11866 24479 11864 24479 11867 24480 11865 24480 11863 24480 11863 24481 11865 24481 11866 24481 11864 24482 11866 24482 11865 24482 11871 24483 11870 24483 11856 24483 11856 24484 11870 24484 11857 24484 11857 24485 11870 24485 11863 24485 11857 24486 11863 24486 11859 24486 11859 24487 11863 24487 11864 24487 11859 24488 11864 24488 11861 24488 11861 24489 11864 24489 11868 24489 11869 24490 11870 24490 11872 24490 11872 24491 11870 24491 11871 24491 11872 24492 11871 24492 11858 24492 11858 24493 11871 24493 11856 24493 11872 24494 11858 24494 11869 24494 11869 24495 11858 24495 11873 24495 11869 24496 11873 24496 11867 24496 11867 24497 11873 24497 11874 24497 11867 24498 11874 24498 11875 24498 11875 24499 11874 24499 11860 24499 11875 24500 11860 24500 11862 24500 11893 24501 11880 24501 11899 24501 11881 24502 11880 24502 11893 24502 11894 24503 11879 24503 11881 24503 11899 24504 11879 24504 11894 24504 11879 24505 11880 24505 11881 24505 11880 24506 11879 24506 11899 24506 11879 24507 11884 24507 11882 24507 11879 24508 11882 24508 11884 24508 11885 24509 11904 24509 11886 24509 11883 24510 11884 24510 11885 24510 11885 24511 11884 24511 11904 24511 11882 24512 11884 24512 11883 24512 11904 24513 11884 24513 11882 24513 11904 24514 11882 24514 11886 24514 11886 24515 11882 24515 11887 24515 11887 24516 11882 24516 11895 24516 11887 24517 11901 24517 11900 24517 11887 24518 11895 24518 11901 24518 11896 24519 11903 24519 11895 24519 11900 24520 11903 24520 11896 24520 11901 24521 11895 24521 11903 24521 11901 24522 11903 24522 11900 24522 11900 24523 11896 24523 11889 24523 11889 24524 11896 24524 11890 24524 11888 24525 11889 24525 11892 24525 11892 24526 11889 24526 11890 24526 11888 24527 11891 24527 11893 24527 11892 24528 11891 24528 11888 24528 11881 24529 11902 24529 11892 24529 11893 24530 11891 24530 11881 24530 11881 24531 11891 24531 11902 24531 11892 24532 11902 24532 11891 24532 11898 24533 11894 24533 11883 24533 11883 24534 11894 24534 11882 24534 11882 24535 11894 24535 11881 24535 11882 24536 11881 24536 11895 24536 11895 24537 11881 24537 11892 24537 11895 24538 11892 24538 11896 24538 11896 24539 11892 24539 11890 24539 11899 24540 11894 24540 11897 24540 11897 24541 11894 24541 11898 24541 11897 24542 11898 24542 11885 24542 11885 24543 11898 24543 11883 24543 11897 24544 11885 24544 11899 24544 11899 24545 11885 24545 11886 24545 11899 24546 11886 24546 11893 24546 11893 24547 11886 24547 11887 24547 11893 24548 11887 24548 11888 24548 11888 24549 11887 24549 11900 24549 11888 24550 11900 24550 11889 24550 11902 24551 11903 24551 11895 24551 11902 24552 11895 24552 11903 24552 11923 24553 11930 24553 11905 24553 11920 24554 11930 24554 11923 24554 11906 24555 11907 24555 11920 24555 11905 24556 11907 24556 11906 24556 11907 24557 11930 24557 11920 24557 11930 24558 11907 24558 11905 24558 11911 24559 11931 24559 11912 24559 11909 24560 11910 24560 11911 24560 11911 24561 11910 24561 11931 24561 11908 24562 11910 24562 11909 24562 11912 24563 11910 24563 11908 24563 11931 24564 11910 24564 11912 24564 11912 24565 11908 24565 11917 24565 11917 24566 11908 24566 11914 24566 11917 24567 11927 24567 11913 24567 11914 24568 11929 24568 11917 24568 11917 24569 11929 24569 11927 24569 11916 24570 11915 24570 11914 24570 11913 24571 11915 24571 11916 24571 11914 24572 11915 24572 11929 24572 11927 24573 11929 24573 11915 24573 11927 24574 11915 24574 11913 24574 11913 24575 11916 24575 11918 24575 11918 24576 11916 24576 11919 24576 11922 24577 11918 24577 11921 24577 11921 24578 11918 24578 11919 24578 11922 24579 11926 24579 11923 24579 11921 24580 11926 24580 11922 24580 11920 24581 11928 24581 11921 24581 11923 24582 11926 24582 11920 24582 11920 24583 11926 24583 11928 24583 11921 24584 11928 24584 11926 24584 11924 24585 11906 24585 11909 24585 11909 24586 11906 24586 11908 24586 11908 24587 11906 24587 11920 24587 11908 24588 11920 24588 11914 24588 11914 24589 11920 24589 11921 24589 11914 24590 11921 24590 11916 24590 11916 24591 11921 24591 11919 24591 11905 24592 11906 24592 11925 24592 11925 24593 11906 24593 11924 24593 11925 24594 11924 24594 11911 24594 11911 24595 11924 24595 11909 24595 11925 24596 11911 24596 11905 24596 11905 24597 11911 24597 11912 24597 11905 24598 11912 24598 11923 24598 11923 24599 11912 24599 11917 24599 11923 24600 11917 24600 11922 24600 11922 24601 11917 24601 11913 24601 11922 24602 11913 24602 11918 24602 11928 24603 11915 24603 11929 24603 11928 24604 11929 24604 11915 24604 11932 24605 11956 24605 11949 24605 11933 24606 11956 24606 11932 24606 11934 24607 11935 24607 11933 24607 11949 24608 11935 24608 11934 24608 11935 24609 11956 24609 11933 24609 11956 24610 11935 24610 11949 24610 11950 24611 11957 24611 11951 24611 11937 24612 11936 24612 11950 24612 11950 24613 11936 24613 11957 24613 11938 24614 11936 24614 11937 24614 11951 24615 11936 24615 11938 24615 11957 24616 11936 24616 11951 24616 11951 24617 11938 24617 11941 24617 11941 24618 11938 24618 11940 24618 11941 24619 11952 24619 11942 24619 11941 24620 11940 24620 11952 24620 11939 24621 11954 24621 11940 24621 11942 24622 11954 24622 11939 24622 11952 24623 11940 24623 11954 24623 11952 24624 11954 24624 11942 24624 11942 24625 11939 24625 11943 24625 11943 24626 11939 24626 11944 24626 11945 24627 11943 24627 11946 24627 11946 24628 11943 24628 11944 24628 11945 24629 11955 24629 11932 24629 11946 24630 11955 24630 11945 24630 11933 24631 11953 24631 11946 24631 11932 24632 11955 24632 11933 24632 11933 24633 11955 24633 11953 24633 11946 24634 11953 24634 11955 24634 11947 24635 11934 24635 11937 24635 11937 24636 11934 24636 11938 24636 11938 24637 11934 24637 11933 24637 11938 24638 11933 24638 11940 24638 11940 24639 11933 24639 11946 24639 11940 24640 11946 24640 11939 24640 11939 24641 11946 24641 11944 24641 11949 24642 11934 24642 11948 24642 11948 24643 11934 24643 11947 24643 11948 24644 11947 24644 11950 24644 11950 24645 11947 24645 11937 24645 11948 24646 11950 24646 11949 24646 11949 24647 11950 24647 11951 24647 11949 24648 11951 24648 11932 24648 11932 24649 11951 24649 11941 24649 11932 24650 11941 24650 11945 24650 11945 24651 11941 24651 11942 24651 11945 24652 11942 24652 11943 24652 11953 24653 11940 24653 11954 24653 11940 24654 11953 24654 11954 24654 11972 24655 11960 24655 11979 24655 11975 24656 11960 24656 11972 24656 11958 24657 11959 24657 11975 24657 11979 24658 11959 24658 11958 24658 11959 24659 11960 24659 11975 24659 11960 24660 11959 24660 11979 24660 11964 24661 11983 24661 11965 24661 11961 24662 11962 24662 11964 24662 11964 24663 11962 24663 11983 24663 11963 24664 11962 24664 11961 24664 11965 24665 11962 24665 11963 24665 11983 24666 11962 24666 11965 24666 11965 24667 11963 24667 11966 24667 11966 24668 11963 24668 11967 24668 11966 24669 11981 24669 11969 24669 11967 24670 11968 24670 11966 24670 11966 24671 11968 24671 11981 24671 11977 24672 11968 24672 11967 24672 11969 24673 11968 24673 11977 24673 11981 24674 11968 24674 11969 24674 11969 24675 11977 24675 11971 24675 11971 24676 11977 24676 11970 24676 11980 24677 11971 24677 11974 24677 11974 24678 11971 24678 11970 24678 11980 24679 11973 24679 11972 24679 11974 24680 11973 24680 11980 24680 11975 24681 11982 24681 11974 24681 11972 24682 11973 24682 11975 24682 11975 24683 11973 24683 11982 24683 11974 24684 11982 24684 11973 24684 11976 24685 11958 24685 11961 24685 11961 24686 11958 24686 11963 24686 11963 24687 11958 24687 11975 24687 11963 24688 11975 24688 11967 24688 11967 24689 11975 24689 11974 24689 11967 24690 11974 24690 11977 24690 11977 24691 11974 24691 11970 24691 11979 24692 11958 24692 11978 24692 11978 24693 11958 24693 11976 24693 11978 24694 11976 24694 11964 24694 11964 24695 11976 24695 11961 24695 11978 24696 11964 24696 11979 24696 11979 24697 11964 24697 11965 24697 11979 24698 11965 24698 11972 24698 11972 24699 11965 24699 11966 24699 11972 24700 11966 24700 11980 24700 11980 24701 11966 24701 11969 24701 11980 24702 11969 24702 11971 24702 12002 24703 12008 24703 12001 24703 11994 24704 12008 24704 12002 24704 11984 24705 11985 24705 11994 24705 12001 24706 11985 24706 11984 24706 11985 24707 12008 24707 11994 24707 12008 24708 11985 24708 12001 24708 12000 24709 12009 24709 11988 24709 11986 24710 11987 24710 12000 24710 12000 24711 11987 24711 12009 24711 11996 24712 11987 24712 11986 24712 11988 24713 11987 24713 11996 24713 12009 24714 11987 24714 11988 24714 11988 24715 11996 24715 12003 24715 12003 24716 11996 24716 11989 24716 12003 24717 12005 24717 11991 24717 12003 24718 11989 24718 12005 24718 11990 24719 12007 24719 11989 24719 11991 24720 12007 24720 11990 24720 12005 24721 11989 24721 12007 24721 12005 24722 12007 24722 11991 24722 11991 24723 11990 24723 11992 24723 11992 24724 11990 24724 11997 24724 11995 24725 11992 24725 11993 24725 11993 24726 11992 24726 11997 24726 11995 24727 12004 24727 12002 24727 11993 24728 12004 24728 11995 24728 11994 24729 12006 24729 11993 24729 12002 24730 12004 24730 11994 24730 11994 24731 12004 24731 12006 24731 11993 24732 12006 24732 12004 24732 11999 24733 11984 24733 11986 24733 11986 24734 11984 24734 11996 24734 11996 24735 11984 24735 11994 24735 11996 24736 11994 24736 11989 24736 11989 24737 11994 24737 11993 24737 11989 24738 11993 24738 11990 24738 11990 24739 11993 24739 11997 24739 12001 24740 11984 24740 11998 24740 11998 24741 11984 24741 11999 24741 11998 24742 11999 24742 12000 24742 12000 24743 11999 24743 11986 24743 11998 24744 12000 24744 12001 24744 12001 24745 12000 24745 11988 24745 12001 24746 11988 24746 12002 24746 12002 24747 11988 24747 12003 24747 12002 24748 12003 24748 11995 24748 11995 24749 12003 24749 11991 24749 11995 24750 11991 24750 11992 24750 12007 24751 12006 24751 11989 24751 11989 24752 12006 24752 12007 24752 12011 24753 12035 24753 12010 24753 12026 24754 12035 24754 12011 24754 12012 24755 12013 24755 12026 24755 12010 24756 12013 24756 12012 24756 12013 24757 12035 24757 12026 24757 12035 24758 12013 24758 12010 24758 12014 24759 12013 24759 12017 24759 12017 24760 12013 24760 12014 24760 12018 24761 12016 24761 12019 24761 12015 24762 12014 24762 12018 24762 12018 24763 12014 24763 12016 24763 12017 24764 12014 24764 12015 24764 12016 24765 12014 24765 12017 24765 12016 24766 12017 24766 12019 24766 12019 24767 12017 24767 12021 24767 12021 24768 12017 24768 12028 24768 12021 24769 12032 24769 12022 24769 12021 24770 12028 24770 12032 24770 12020 24771 12033 24771 12028 24771 12022 24772 12033 24772 12020 24772 12032 24773 12028 24773 12033 24773 12032 24774 12033 24774 12022 24774 12022 24775 12020 24775 12031 24775 12031 24776 12020 24776 12029 24776 12023 24777 12031 24777 12024 24777 12024 24778 12031 24778 12029 24778 12023 24779 12034 24779 12011 24779 12024 24780 12034 24780 12023 24780 12026 24781 12025 24781 12024 24781 12011 24782 12034 24782 12026 24782 12026 24783 12034 24783 12025 24783 12024 24784 12025 24784 12034 24784 12027 24785 12012 24785 12015 24785 12015 24786 12012 24786 12017 24786 12017 24787 12012 24787 12026 24787 12017 24788 12026 24788 12028 24788 12028 24789 12026 24789 12024 24789 12028 24790 12024 24790 12020 24790 12020 24791 12024 24791 12029 24791 12010 24792 12012 24792 12030 24792 12030 24793 12012 24793 12027 24793 12030 24794 12027 24794 12018 24794 12018 24795 12027 24795 12015 24795 12030 24796 12018 24796 12010 24796 12010 24797 12018 24797 12019 24797 12010 24798 12019 24798 12011 24798 12011 24799 12019 24799 12021 24799 12011 24800 12021 24800 12023 24800 12023 24801 12021 24801 12022 24801 12023 24802 12022 24802 12031 24802 12025 24803 12033 24803 12028 24803 12025 24804 12028 24804 12033 24804 12037 24805 12038 24805 12040 24805 12036 24806 12038 24806 12037 24806 12039 24807 12041 24807 12036 24807 12040 24808 12041 24808 12039 24808 12041 24809 12038 24809 12036 24809 12038 24810 12041 24810 12040 24810 12041 24811 12043 24811 12042 24811 12043 24812 12041 24812 12042 24812 12056 24813 12061 24813 12044 24813 12052 24814 12043 24814 12056 24814 12056 24815 12043 24815 12061 24815 12042 24816 12043 24816 12052 24816 12061 24817 12043 24817 12042 24817 12061 24818 12042 24818 12044 24818 12044 24819 12042 24819 12045 24819 12045 24820 12042 24820 12046 24820 12045 24821 12058 24821 12047 24821 12046 24822 12060 24822 12045 24822 12045 24823 12060 24823 12058 24823 12053 24824 12060 24824 12046 24824 12047 24825 12060 24825 12053 24825 12058 24826 12060 24826 12047 24826 12047 24827 12053 24827 12057 24827 12057 24828 12053 24828 12054 24828 12048 24829 12057 24829 12050 24829 12050 24830 12057 24830 12054 24830 12048 24831 12049 24831 12037 24831 12050 24832 12049 24832 12048 24832 12036 24833 12059 24833 12050 24833 12037 24834 12049 24834 12036 24834 12036 24835 12049 24835 12059 24835 12050 24836 12059 24836 12049 24836 12051 24837 12039 24837 12052 24837 12052 24838 12039 24838 12042 24838 12042 24839 12039 24839 12036 24839 12042 24840 12036 24840 12046 24840 12046 24841 12036 24841 12050 24841 12046 24842 12050 24842 12053 24842 12053 24843 12050 24843 12054 24843 12040 24844 12039 24844 12055 24844 12055 24845 12039 24845 12051 24845 12055 24846 12051 24846 12056 24846 12056 24847 12051 24847 12052 24847 12055 24848 12056 24848 12040 24848 12040 24849 12056 24849 12044 24849 12040 24850 12044 24850 12037 24850 12037 24851 12044 24851 12045 24851 12037 24852 12045 24852 12048 24852 12048 24853 12045 24853 12047 24853 12048 24854 12047 24854 12057 24854 12063 24855 12062 24855 12064 24855 12077 24856 12062 24856 12063 24856 12087 24857 12065 24857 12077 24857 12065 24858 12062 24858 12077 24858 12065 24859 12087 24859 12062 24859 12062 24860 12087 24860 12064 24860 12069 24861 12086 24861 12070 24861 12066 24862 12067 24862 12069 24862 12069 24863 12067 24863 12086 24863 12068 24864 12067 24864 12066 24864 12070 24865 12067 24865 12068 24865 12086 24866 12067 24866 12070 24866 12070 24867 12068 24867 12071 24867 12071 24868 12068 24868 12072 24868 12071 24869 12083 24869 12073 24869 12072 24870 12084 24870 12071 24870 12071 24871 12084 24871 12083 24871 12074 24872 12084 24872 12072 24872 12073 24873 12084 24873 12074 24873 12083 24874 12084 24874 12073 24874 12073 24875 12074 24875 12075 24875 12075 24876 12074 24876 12076 24876 12079 24877 12075 24877 12078 24877 12078 24878 12075 24878 12076 24878 12079 24879 12082 24879 12063 24879 12078 24880 12082 24880 12079 24880 12077 24881 12085 24881 12078 24881 12063 24882 12082 24882 12077 24882 12077 24883 12082 24883 12085 24883 12078 24884 12085 24884 12082 24884 12080 24885 12087 24885 12066 24885 12066 24886 12087 24886 12068 24886 12068 24887 12087 24887 12077 24887 12068 24888 12077 24888 12072 24888 12072 24889 12077 24889 12078 24889 12072 24890 12078 24890 12074 24890 12074 24891 12078 24891 12076 24891 12064 24892 12087 24892 12081 24892 12081 24893 12087 24893 12080 24893 12081 24894 12080 24894 12069 24894 12069 24895 12080 24895 12066 24895 12081 24896 12069 24896 12064 24896 12064 24897 12069 24897 12070 24897 12064 24898 12070 24898 12063 24898 12063 24899 12070 24899 12071 24899 12063 24900 12071 24900 12079 24900 12079 24901 12071 24901 12073 24901 12079 24902 12073 24902 12075 24902 12102 24903 12111 24903 12089 24903 12090 24904 12111 24904 12102 24904 12088 24905 12113 24905 12090 24905 12089 24906 12113 24906 12088 24906 12113 24907 12111 24907 12090 24907 12111 24908 12113 24908 12089 24908 12091 24909 12112 24909 12095 24909 12092 24910 12093 24910 12091 24910 12091 24911 12093 24911 12112 24911 12094 24912 12093 24912 12092 24912 12095 24913 12093 24913 12094 24913 12112 24914 12093 24914 12095 24914 12095 24915 12094 24915 12097 24915 12097 24916 12094 24916 12103 24916 12097 24917 12108 24917 12098 24917 12103 24918 12110 24918 12097 24918 12097 24919 12110 24919 12108 24919 12096 24920 12110 24920 12103 24920 12098 24921 12110 24921 12096 24921 12108 24922 12110 24922 12098 24922 12098 24923 12096 24923 12106 24923 12106 24924 12096 24924 12099 24924 12101 24925 12106 24925 12100 24925 12100 24926 12106 24926 12099 24926 12101 24927 12107 24927 12102 24927 12100 24928 12107 24928 12101 24928 12090 24929 12109 24929 12100 24929 12102 24930 12107 24930 12090 24930 12090 24931 12107 24931 12109 24931 12100 24932 12109 24932 12107 24932 12104 24933 12088 24933 12092 24933 12092 24934 12088 24934 12094 24934 12094 24935 12088 24935 12090 24935 12094 24936 12090 24936 12103 24936 12103 24937 12090 24937 12100 24937 12103 24938 12100 24938 12096 24938 12096 24939 12100 24939 12099 24939 12089 24940 12088 24940 12105 24940 12105 24941 12088 24941 12104 24941 12105 24942 12104 24942 12091 24942 12091 24943 12104 24943 12092 24943 12105 24944 12091 24944 12089 24944 12089 24945 12091 24945 12095 24945 12089 24946 12095 24946 12102 24946 12102 24947 12095 24947 12097 24947 12102 24948 12097 24948 12101 24948 12101 24949 12097 24949 12098 24949 12101 24950 12098 24950 12106 24950 12129 24951 12139 24951 12130 24951 12126 24952 12139 24952 12129 24952 12114 24953 12115 24953 12126 24953 12130 24954 12115 24954 12114 24954 12115 24955 12139 24955 12126 24955 12139 24956 12115 24956 12130 24956 12119 24957 12138 24957 12120 24957 12117 24958 12116 24958 12119 24958 12119 24959 12116 24959 12138 24959 12118 24960 12116 24960 12117 24960 12120 24961 12116 24961 12118 24961 12138 24962 12116 24962 12120 24962 12120 24963 12118 24963 12123 24963 12123 24964 12118 24964 12121 24964 12123 24965 12136 24965 12124 24965 12121 24966 12137 24966 12123 24966 12123 24967 12137 24967 12136 24967 12122 24968 12137 24968 12121 24968 12124 24969 12137 24969 12122 24969 12136 24970 12137 24970 12124 24970 12124 24971 12122 24971 12134 24971 12134 24972 12122 24972 12125 24972 12133 24973 12134 24973 12127 24973 12127 24974 12134 24974 12125 24974 12133 24975 12135 24975 12129 24975 12127 24976 12135 24976 12133 24976 12126 24977 12128 24977 12127 24977 12129 24978 12135 24978 12126 24978 12126 24979 12135 24979 12128 24979 12127 24980 12128 24980 12135 24980 12132 24981 12114 24981 12117 24981 12117 24982 12114 24982 12118 24982 12118 24983 12114 24983 12126 24983 12118 24984 12126 24984 12121 24984 12121 24985 12126 24985 12127 24985 12121 24986 12127 24986 12122 24986 12122 24987 12127 24987 12125 24987 12130 24988 12114 24988 12131 24988 12131 24989 12114 24989 12132 24989 12131 24990 12132 24990 12119 24990 12119 24991 12132 24991 12117 24991 12131 24992 12119 24992 12130 24992 12130 24993 12119 24993 12120 24993 12130 24994 12120 24994 12129 24994 12129 24995 12120 24995 12123 24995 12129 24996 12123 24996 12133 24996 12133 24997 12123 24997 12124 24997 12133 24998 12124 24998 12134 24998</p>\n                </triangles>\n            </mesh>\n        </geometry>\n    </library_geometries>\n    <library_visual_scenes>\n        <visual_scene id=\"VisualSceneNode\" name=\"VisualScene\">\n            <node id=\"node\" name=\"node\">\n                <instance_geometry url=\"#shape0-lib\">\n                    <bind_material>\n                        <technique_common/>\n                    </bind_material>\n                </instance_geometry>\n            </node>\n        </visual_scene>\n    </library_visual_scenes>\n    <scene>\n        <instance_visual_scene url=\"#VisualSceneNode\"/>\n    </scene>\n</COLLADA>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/ur3e_base/model.config",
    "content": "<?xml version=\"1.0\" ?>\n<model>\n    <name>ur3e_base</name>\n    <version>1.0</version>\n    <sdf version=\"1.6\">model.sdf</sdf>\n    <author>\n        <name></name>\n        <email></email>\n    </author>\n    <description></description>\n</model>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/ur3e_base/model.sdf",
    "content": "<?xml version='1.0'?>\n<sdf version='1.6'>\n  <model name='ur3e_base'>\n    <link name='base'>\n      <pose frame=''>0 0 0 0 0 3.1415</pose>\n      <self_collide>0</self_collide>\n      <kinematic>0</kinematic>\n      <gravity>1</gravity>\n      <inertial>\n        <mass>50</mass>\n        <pose frame=''>0 0 0 0 0 0</pose>\n        <inertia>\n          <ixx>1</ixx>\n          <ixy>0</ixy>\n          <ixz>0</ixz>\n          <iyy>1</iyy>\n          <iyz>0</iyz>\n          <izz>1</izz>\n        </inertia>\n      </inertial>\n      <visual name='base_visual'>\n        <transparency> 0.1 </transparency>\n        <geometry>\n          <mesh>\n            <uri>model://ur3e_base/meshes/ur3e_base.stl</uri>\n            <scale>1 1 1</scale>\n          </mesh>\n        </geometry>\n        <material>\n          <script>\n            <name>Gazebo/DarkGrey</name>\n          </script>\n        </material>\n      </visual>\n      <collision name='collision'>\n        <max_contacts>10</max_contacts>\n        <geometry>\n          <mesh>\n            <uri>model://ur3e_base/meshes/ur3e_base.stl</uri>\n            <scale>1 1 1</scale>\n          </mesh>\n        </geometry>\n        <surface>\n          <friction>\n            <ode>\n              <mu>1</mu>\n              <mu2>1</mu2>\n              <fdir1>0 0 0</fdir1>\n              <slip1>0.1</slip1>\n              <slip2>0.1</slip2>\n            </ode>\n            <torsional>\n              <coefficient>1</coefficient>\n              <patch_radius>0</patch_radius>\n              <surface_radius>0</surface_radius>\n              <use_patch_radius>1</use_patch_radius>\n              <ode>\n                <slip>0</slip>\n              </ode>\n            </torsional>\n          </friction>\n          <bounce>\n            <restitution_coefficient>0</restitution_coefficient>\n            <threshold>1e+06</threshold>\n          </bounce>\n          <contact>\n            <collide_without_contact>0</collide_without_contact>\n            <collide_without_contact_bitmask>1</collide_without_contact_bitmask>\n            <collide_bitmask>1</collide_bitmask>\n            <ode>\n              <soft_cfm>0</soft_cfm>\n              <soft_erp>0.1</soft_erp>\n              <kp>1e+13</kp>\n              <kd>1</kd>\n              <max_vel>0.01</max_vel>\n              <min_depth>0</min_depth>\n            </ode>\n            <bullet>\n              <split_impulse>1</split_impulse>\n              <split_impulse_penetration_threshold>-0.01</split_impulse_penetration_threshold>\n              <soft_cfm>0</soft_cfm>\n              <soft_erp>0.1</soft_erp>\n              <kp>1e+13</kp>\n              <kd>1</kd>\n            </bullet>\n          </contact>\n        </surface>\n      </collision>\n    </link>\n    <static>1</static>\n    <allow_auto_disable>1</allow_auto_disable>\n  </model>\n</sdf>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/ur3e_base/model_base.sdf",
    "content": "<?xml version='1.0'?>\n<sdf version='1.6'>\n  <model name='ur3e_base'>\n    <link name='base'>\n      <pose frame=''>-0.15 -1.35 0.14 0 1.57070 1.57070</pose>\n      <self_collide>0</self_collide>\n      <kinematic>0</kinematic>\n      <gravity>1</gravity>\n      <inertial>\n        <mass>1</mass>\n        <pose frame=''>0 0 0 0 0 0</pose>\n        <inertia>\n          <ixx>1</ixx>\n          <ixy>0</ixy>\n          <ixz>0</ixz>\n          <iyy>1</iyy>\n          <iyz>0</iyz>\n          <izz>1</izz>\n        </inertia>\n      </inertial>\n      <visual name='base_visual'>\n        <transparency> 0.2 </transparency>\n        <geometry>\n          <mesh>\n            <uri>model://ur3e_base/meshes/ur3e_base.dae</uri>\n            <scale>1 1 1</scale>\n          </mesh>\n        </geometry>\n        <material>\n          <script>\n            <name>Gazebo/DarkGrey</name>\n            <uri>__default__</uri>\n          </script>\n          <shader type='pixel'>\n            <normal_map>__default__</normal_map>\n          </shader>\n          <ambient>0.175 0.175 0.175 1</ambient>\n          <diffuse>0.175 0.175 0.175 1</diffuse>\n          <specular>0.175 0.175 0.175 1</specular>\n          <emissive>0 0 0 1</emissive>\n        </material>\n        <pose frame=''>0 0 0 0 -0 0</pose>\n        <transparency>0</transparency>\n        <cast_shadows>1</cast_shadows>\n      </visual>\n      <collision name='collision_top'>\n        <laser_retro>0</laser_retro>\n        <max_contacts>5</max_contacts>\n        <pose frame=''>0 0 1.62 0 -0 0</pose>\n        <geometry>\n          <box>\n            <size>0.101665 0.433 0.099897</size>\n          </box>\n        </geometry>\n        <surface>\n          <friction>\n            <ode>\n              <mu>1</mu>\n              <mu2>1</mu2>\n              <fdir1>0 0 0</fdir1>\n              <slip1>0</slip1>\n              <slip2>0</slip2>\n            </ode>\n            <torsional>\n              <coefficient>1</coefficient>\n              <patch_radius>0</patch_radius>\n              <surface_radius>0</surface_radius>\n              <use_patch_radius>1</use_patch_radius>\n              <ode>\n                <slip>0</slip>\n              </ode>\n            </torsional>\n          </friction>\n          <bounce>\n            <restitution_coefficient>0</restitution_coefficient>\n            <threshold>1e+06</threshold>\n          </bounce>\n          <contact>\n            <collide_without_contact>0</collide_without_contact>\n            <collide_without_contact_bitmask>1</collide_without_contact_bitmask>\n            <collide_bitmask>1</collide_bitmask>\n            <ode>\n              <soft_cfm>0</soft_cfm>\n              <soft_erp>0.2</soft_erp>\n              <kp>1e+13</kp>\n              <kd>1</kd>\n              <max_vel>0.01</max_vel>\n              <min_depth>0</min_depth>\n            </ode>\n            <bullet>\n              <split_impulse>1</split_impulse>\n              <split_impulse_penetration_threshold>-0.01</split_impulse_penetration_threshold>\n              <soft_cfm>0</soft_cfm>\n              <soft_erp>0.2</soft_erp>\n              <kp>1e+13</kp>\n              <kd>1</kd>\n            </bullet>\n          </contact>\n        </surface>\n      </collision>\n      <collision name='base_collision'>\n        <laser_retro>0</laser_retro>\n        <max_contacts>5</max_contacts>\n        <pose frame=''>0 0 0.845 0 -0 0</pose>\n        <geometry>\n          <box>\n            <size>0.101665 0.100287 1.45</size>\n          </box>\n        </geometry>\n        <surface>\n          <friction>\n            <ode>\n              <mu>1</mu>\n              <mu2>1</mu2>\n              <fdir1>0 0 0</fdir1>\n              <slip1>0</slip1>\n              <slip2>0</slip2>\n            </ode>\n            <torsional>\n              <coefficient>1</coefficient>\n              <patch_radius>0</patch_radius>\n              <surface_radius>0</surface_radius>\n              <use_patch_radius>1</use_patch_radius>\n              <ode>\n                <slip>0</slip>\n              </ode>\n            </torsional>\n          </friction>\n          <bounce>\n            <restitution_coefficient>0</restitution_coefficient>\n            <threshold>1e+06</threshold>\n          </bounce>\n          <contact>\n            <collide_without_contact>0</collide_without_contact>\n            <collide_without_contact_bitmask>1</collide_without_contact_bitmask>\n            <collide_bitmask>1</collide_bitmask>\n            <ode>\n              <soft_cfm>0</soft_cfm>\n              <soft_erp>0.2</soft_erp>\n              <kp>1e+13</kp>\n              <kd>1</kd>\n              <max_vel>0.01</max_vel>\n              <min_depth>0</min_depth>\n            </ode>\n            <bullet>\n              <split_impulse>1</split_impulse>\n              <split_impulse_penetration_threshold>-0.01</split_impulse_penetration_threshold>\n              <soft_cfm>0</soft_cfm>\n              <soft_erp>0.2</soft_erp>\n              <kp>1e+13</kp>\n              <kd>1</kd>\n            </bullet>\n          </contact>\n        </surface>\n      </collision>\n    </link>\n    <static>1</static>\n    <allow_auto_disable>1</allow_auto_disable>\n  </model>\n</sdf>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/ur3e_table/model.config",
    "content": "<?xml version=\"1.0\" ?>\n<model>\n    <name>ur3e_table</name>\n    <version>1.0</version>\n    <sdf version=\"1.6\">model.sdf</sdf>\n    <author>\n        <name></name>\n        <email></email>\n    </author>\n    <description></description>\n</model>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/ur3e_table/model.sdf",
    "content": "<?xml version='1.0'?>\n<sdf version='1.6'>\n  <model name='ur3e_table'>\n    <link name='table'>\n      <pose frame=''>0 0 0 0 0 3.1415</pose>\n      <gravity>1</gravity>\n      <inertial>\n        <mass>50</mass>\n        <inertia>\n          <ixx>1</ixx>\n          <ixy>0</ixy>\n          <ixz>0</ixz>\n          <iyy>1</iyy>\n          <iyz>0</iyz>\n          <izz>1</izz>\n        </inertia>\n      </inertial>\n      <visual name='table_visual'>\n        <geometry>\n          <mesh>\n            <uri>model://ur3e_table/meshes/ur3e_table.stl</uri>\n            <scale>1 1 1</scale>\n          </mesh>\n        </geometry>\n        <material>\n          <script>\n            <name>Gazebo/Grey</name>\n            <uri>__default__</uri>\n          </script>\n        </material>\n        <pose frame=''>0 0 0 0 -0 0</pose>\n        <transparency>0</transparency>\n        <cast_shadows>1</cast_shadows>\n      </visual>\n      <collision name='table_collision'>\n        <laser_retro>0</laser_retro>\n        <max_contacts>10</max_contacts>\n        <pose frame=''>0 0 0 0 0 0</pose>\n        <geometry>\n          <mesh>\n            <uri>model://ur3e_table/meshes/ur3e_table.stl</uri>\n            <scale>1 1 1</scale>\n          </mesh>\n        </geometry>\n        <surface>\n          <friction>\n            <ode>\n              <mu>1</mu>\n              <mu2>1</mu2>\n              <fdir1>0 0 0</fdir1>\n              <slip1>0.1</slip1>\n              <slip2>0.1</slip2>\n            </ode>\n            <torsional>\n              <coefficient>1</coefficient>\n              <patch_radius>0</patch_radius>\n              <surface_radius>0</surface_radius>\n              <use_patch_radius>1</use_patch_radius>\n              <ode>\n                <slip>0</slip>\n              </ode>\n            </torsional>\n          </friction>\n          <bounce>\n            <restitution_coefficient>0</restitution_coefficient>\n            <threshold>1e+06</threshold>\n          </bounce>\n          <contact>\n            <collide_without_contact>0</collide_without_contact>\n            <collide_without_contact_bitmask>1</collide_without_contact_bitmask>\n            <collide_bitmask>1</collide_bitmask>\n            <ode>\n              <soft_cfm>0</soft_cfm>\n              <soft_erp>0.2</soft_erp>\n              <kp>1e+13</kp>\n              <kd>1</kd>\n              <max_vel>0.01</max_vel>\n              <min_depth>0</min_depth>\n            </ode>\n            <bullet>\n              <split_impulse>1</split_impulse>\n              <split_impulse_penetration_threshold>-0.01</split_impulse_penetration_threshold>\n              <soft_cfm>0</soft_cfm>\n              <soft_erp>0.2</soft_erp>\n              <kp>1e+13</kp>\n              <kd>1</kd>\n            </bullet>\n          </contact>\n        </surface>\n      </collision>\n    </link>\n    <static>1</static>\n    <allow_auto_disable>1</allow_auto_disable>\n  </model>\n</sdf>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/ur_base/model.config",
    "content": "<?xml version=\"1.0\"?>\n\n<model>\n  <name>ur_base</name>\n  <version>1.0</version>\n  <sdf version=\"1.6\">model.sdf</sdf>\n\n  <author>\n    <name>TODO</name>\n    <email>todo@todo.todo</email>\n  </author>\n\n  <description>\n    Base of the UR robot\n  </description>\n</model>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/ur_base/model.sdf",
    "content": "<?xml version=\"1.0\"?>\n\n<sdf version=\"1.6\">\n  <model name=\"ur_base\">\n    <static>true</static>\n\n    <link name=\"top_plate\">\n      <pose>0 0 0.67501 0 0 0</pose>\n      <collision name=\"top_plate_collision\">\n        <geometry>\n          <box>\n            <size>0.5 0.5 0.02</size>\n          </box>\n        </geometry>\n        <surface>\n          <contact>\n            <collide_bitmask>0x01</collide_bitmask>\n          </contact>\n        </surface>\n      </collision>\n      <visual name=\"top_plate_visual\">\n        <geometry>\n          <box>\n            <size>0.5 0.5 0.02</size>\n          </box>\n        </geometry>\n        <material>\n          <script>\n            <uri>model://media/materials/scripts/gazebo.material</uri>\n            <name>Gazebo/Grey</name>\n          </script>\n        </material>\n      </visual>\n    </link>\n    <link name=\"leg1\">\n      <pose>0.22 0.22 0.35 0 0 0</pose>\n      <!-- <collision name=\"leg1_collision\">\n        <geometry>\n          <box>\n            <size>0.04 0.04 0.655</size>\n          </box>\n        </geometry>\n      </collision> -->\n      <visual name=\"leg1_visual\">\n        <geometry>\n          <box>\n            <size>0.04 0.04 0.655</size>\n          </box>\n        </geometry>\n        <material>\n          <script>\n            <uri>model://media/materials/scripts/gazebo.material</uri>\n            <name>Gazebo/Grey</name>\n          </script>\n        </material>\n      </visual>\n    </link>\n    <link name=\"leg2\">\n      <pose>-0.22 0.22 0.35 0 0 0</pose>\n      <!-- <collision name=\"leg2_collision\">\n        <geometry>\n          <box>\n            <size>0.04 0.04 0.655</size>\n          </box>\n        </geometry>\n      </collision> -->\n      <visual name=\"leg2_visual\">\n        <geometry>\n          <box>\n            <size>0.04 0.04 0.655</size>\n          </box>\n        </geometry>\n        <material>\n          <script>\n            <uri>model://media/materials/scripts/gazebo.material</uri>\n            <name>Gazebo/Grey</name>\n          </script>\n        </material>\n      </visual>\n    </link>\n    <link name=\"leg3\">\n      <pose>0.22 -0.22 0.35 0 0 0</pose>\n      <!-- <collision name=\"leg3_collision\">\n        <geometry>\n          <box>\n            <size>0.04 0.04 0.655</size>\n          </box>\n        </geometry>\n      </collision> -->\n      <visual name=\"leg3_visual\">\n        <geometry>\n          <box>\n            <size>0.04 0.04 0.655</size>\n          </box>\n        </geometry>\n        <material>\n          <script>\n            <uri>model://media/materials/scripts/gazebo.material</uri>\n            <name>Gazebo/Grey</name>\n          </script>\n        </material>\n      </visual>\n    </link>\n    <link name=\"leg4\">\n      <pose>-0.22 -0.22 0.35 0 0 0</pose>\n      <!-- <collision name=\"leg4_collision\">\n        <geometry>\n          <box>\n            <size>0.04 0.04 0.655</size>\n          </box>\n        </geometry>\n      </collision> -->\n      <visual name=\"leg4_visual\">\n        <geometry>\n          <box>\n            <size>0.04 0.04 0.655</size>\n          </box>\n        </geometry>\n        <material>\n          <script>\n            <uri>model://media/materials/scripts/gazebo.material</uri>\n            <name>Gazebo/Grey</name>\n          </script>\n        </material>\n      </visual>\n    </link>\n  </model>\n</sdf>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/visual_marker/model.config",
    "content": "<?xml version=\"1.0\"?>\n\n<model>\n  <name>Visual marker</name>\n  <version>1.0</version>\n  <sdf version='1.5'>model.sdf</sdf>\n\n  <author>\n    <name>Cristian beltran</name>\n    <email>nanaki07@gmail.com</email>\n  </author>\n\n  <description>\n    Simple visual marker\n  </description>\n</model>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/visual_marker/model.sdf",
    "content": "<?xml version='1.0'?>\n<sdf version='1.6'>\n  <model name='visual_marker'>\n    <static>true</static>\n    <link name='marker'>\n      <pose frame=''>0.0 0.0 0.0 0 0 0</pose>\n      <self_collide>0</self_collide>\n      <kinematic>0</kinematic>\n      <gravity>0</gravity>\n      <visual name='visual_z'>\n        <pose frame=''>0 0 0.005 0 0 0</pose>\n        <geometry>\n          <cylinder>\n            <length>0.01</length>\n            <radius>0.001</radius>\n          </cylinder>\n        </geometry>\n        <material>\n          <script>\n            <uri>model://media/materials/scripts/gazebo.material</uri>\n            <name>Gazebo/Blue</name>\n          </script>\n        </material>\n        <transparency>0.5</transparency>\n      </visual>\n            <visual name='visual_y'>\n        <pose frame=''>0 0.005 0 1.5707 0 0</pose>\n        <geometry>\n          <cylinder>\n            <length>0.01</length>\n            <radius>0.001</radius>\n          </cylinder>\n        </geometry>\n        <material>\n          <script>\n            <uri>model://media/materials/scripts/gazebo.material</uri>\n            <name>Gazebo/Green</name>\n          </script>\n        </material>\n        <transparency>0.5</transparency>\n      </visual>\n            <visual name='visual_x'>\n        <pose frame=''>0.005 0 0 0 1.5707 0</pose>\n        <geometry>\n          <cylinder>\n            <length>0.01</length>\n            <radius>0.001</radius>\n          </cylinder>\n        </geometry>\n        <material>\n          <script>\n            <uri>model://media/materials/scripts/gazebo.material</uri>\n            <name>Gazebo/Red</name>\n          </script>\n        </material>\n        <transparency>0.5</transparency>\n      </visual>\n    </link>\n    <allow_auto_disable>1</allow_auto_disable>\n  </model>\n</sdf>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/wood_cube/model.config",
    "content": "<?xml version=\"1.0\"?>\n\n<model>\n  <name>Wood cube 10cm</name>\n  <version>1.0</version>\n  <sdf version='1.5'>model.sdf</sdf>\n\n  <author>\n    <name>Nate Koenig</name>\n    <email>nate@osrfoundation.org</email>\n  </author>\n\n  <description>\n    A 10x10x10 cm wooden cube.\n  </description>\n</model>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/wood_cube/model.rsdf",
    "content": "<?xml version=\"1.0\" ?>\n<%\n  # Wood block with dimensions 10 x 10 x 10 cm\n  # SI units (length in meters)\n\n  # Geometry\n  dx = 0.10\n  dy = 0.10\n  dz = 0.10\n\n  # Inertia\n  mass = 0.5167\n  ixx  = mass/12.0 * (dy**2 + dz**2)\n  iyy  = mass/12.0 * (dz**2 + dx**2)\n  izz  = mass/12.0 * (dx**2 + dy**2)\n%>\n<sdf version=\"1.5\">\n  <model name=\"wood_cube_10cm\">\n    <link name=\"link\">\n      <pose>0 0 <%= dz/2 %> 0 0 0</pose>\n      <inertial>\n        <mass><%= mass %></mass>\n        <inertia>\n          <ixx><%= ixx %></ixx>\n          <ixy>0</ixy>\n          <ixz>0</ixz>\n          <iyy><%= iyy %></iyy>\n          <iyz>0</iyz>\n          <izz><%= izz %></izz>\n        </inertia>\n      </inertial>\n\n      <collision name=\"collision\">\n        <geometry>\n          <box>\n            <size><%= dx %> <%= dy %> <%= dz %></size>\n          </box>\n        </geometry>\n        <surface>\n          <contact>\n            <ode>\n              <max_vel>0.1</max_vel>\n              <min_depth>0.001</min_depth>\n            </ode>\n          </contact>\n        </surface>\n      </collision>\n\n      <visual name=\"visual\">\n        <geometry>\n          <box>\n            <size><%= dx %> <%= dy %> <%= dz %></size>\n          </box>\n        </geometry>\n        <material>\n          <script>\n            <uri>model://media/materials/scripts/gazebo.material</uri>\n            <name>Gazebo/Wood</name>\n          </script>\n        </material>\n      </visual>\n\n    </link>\n  </model>\n</sdf>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/wood_cube/model.sdf",
    "content": "<?xml version=\"1.0\" ?>\n<sdf version=\"1.5\">\n  <model name=\"wood_cube_10cm\">\n    <link name=\"link\">\n      <pose>0 0 0.05 0 0 0</pose>\n      <inertial>\n        <mass>.6</mass>\n        <inertia>\n          <ixx>0.0008611666666666669</ixx>\n          <ixy>0</ixy>\n          <ixz>0</ixz>\n          <iyy>0.0008611666666666669</iyy>\n          <iyz>0</iyz>\n          <izz>0.0008611666666666669</izz>\n        </inertia>\n      </inertial>\n\n      <collision name=\"collision\">\n        <geometry>\n          <box>\n            <size>0.1 0.1 0.1</size>\n          </box>\n        </geometry>\n        <surface>\n          <contact>\n            <!-- Red Pine coefficients for longitudinal axis of the wood\n                 according to:\n                 http://www.fpl.fs.fed.us/documnts/fplgtr/fplgtr113/ch04.pdf -->\n            <poissons_ratio>0.347</poissons_ratio>\n            <elastic_modulus>8.8e+09</elastic_modulus>\n            <ode>\n              <kp>100000</kp>\n              <kd>100</kd>\n              <max_vel>100.0</max_vel>\n              <min_depth>0.001</min_depth>\n            </ode>\n          </contact>\n          <friction>\n            <torsional>\n              <coefficient>1.0</coefficient>\n              <use_patch_radius>0</use_patch_radius>\n              <surface_radius>0.01</surface_radius>\n            </torsional>\n          </friction>\n        </surface>\n      </collision>\n\n      <visual name=\"visual\">\n        <geometry>\n          <box>\n            <size>0.1 0.1 0.1</size>\n          </box>\n        </geometry>\n        <material>\n          <script>\n            <uri>model://media/materials/scripts/gazebo.material</uri>\n            <name>Gazebo/Wood</name>\n          </script>\n        </material>\n      </visual>\n\n    </link>\n  </model>\n</sdf>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/wooden_peg/model.config",
    "content": "<?xml version=\"1.0\"?>\n\n<model>\n  <name>Wooden Peg</name>\n  <version>1.0</version>\n  <sdf version='1.5'>model.sdf</sdf>\n\n  <author>\n    <name>Jackie Kay</name>\n    <email>jackie@osrfoundation.org</email>\n  </author>\n\n  <description>\n    An 8cm high wooden peg.\n  </description>\n</model>\n\n"
  },
  {
    "path": "ur_gripper_gazebo/models/wooden_peg/model.rsdf",
    "content": "<?xml version=\"1.0\" ?>\n<%\n  # SI units (length in meters)\n\n  # Geometry\n  # Height\n  h  = 0.08\n  # diameter\n  d = 0.0195\n  r = d/2.0\n\n  # Inertia\n  mass = 0.0175\n  ixx  = mass/12.0 * (3*r**2  + h**2 )\n  iyy  = mass/12.0 * (3*r**2  + h**2 )\n  izz  = mass/2.0 * r**2\n%>\n<sdf version=\"1.5\">\n  <model name=\"wooden_peg\">\n    <link name=\"link\">\n      <pose>0 0 <%= h/2 %> 0 0 0</pose>\n      <inertial>\n        <mass><%= mass %></mass>\n        <inertia>\n          <ixx><%= ixx %></ixx>\n          <ixy>0</ixy>\n          <ixz>0</ixz>\n          <iyy><%= iyy %></iyy>\n          <iyz>0</iyz>\n          <izz><%= izz %></izz>\n        </inertia>\n      </inertial>\n\n      <collision name=\"collision\">\n        <geometry>\n          <cylinder>\n            <radius> <%= r %> </radius>\n            <length> <%= h  %> </length>\n          </cylinder>\n        </geometry>\n      </collision>\n\n      <visual name=\"visual\">\n        <geometry>\n          <cylinder>\n            <radius> <%= r %> </radius>\n            <length> <%= h  %> </length>\n          </cylinder>\n        </geometry>\n        <material>\n          <script>\n            <uri>model://media/materials/scripts/gazebo.material</uri>\n            <name>Gazebo/Wood</name>\n          </script>\n        </material>\n      </visual>\n\n    </link>\n  </model>\n</sdf>\n"
  },
  {
    "path": "ur_gripper_gazebo/models/wooden_peg/model.sdf",
    "content": "<?xml version=\"1.0\" ?>\n<sdf version=\"1.5\">\n  <model name=\"wooden_peg\">\n    <link name=\"link\">\n      <pose>0 0 0.04 0 0 0</pose>\n      <inertial>\n        <mass>0.0175</mass>\n        <inertia>\n          <ixx>9.749231770833334e-06</ixx>\n          <ixy>0</ixy>\n          <ixz>0</ixz>\n          <iyy>9.749231770833334e-06</iyy>\n          <iyz>0</iyz>\n          <izz>8.317968750000001e-07</izz>\n        </inertia>\n      </inertial>\n\n      <collision name=\"collision\">\n        <geometry>\n          <cylinder>\n            <radius> 0.00975 </radius>\n            <length> 0.08 </length>\n          </cylinder>\n        </geometry>\n        <surface>\n          <contact>\n            <!-- Red Pine coefficients for longitudinal axis of the wood\n                 according to:\n                 http://www.fpl.fs.fed.us/documnts/fplgtr/fplgtr113/ch04.pdf -->\n            <poissons_ratio>0.347</poissons_ratio>\n            <elastic_modulus>8.8e+09</elastic_modulus>\n            <ode>\n              <kp>100000</kp>\n              <kd>100</kd>\n              <max_vel>100.0</max_vel>\n              <min_depth>0.001</min_depth>\n            </ode>\n          </contact>\n          <friction>\n            <torsional>\n              <coefficient>1.0</coefficient>\n              <use_patch_radius>0</use_patch_radius>\n              <surface_radius>0.01</surface_radius>\n            </torsional>\n          </friction>\n        </surface>\n      </collision>\n\n      <visual name=\"visual\">\n        <geometry>\n          <cylinder>\n            <radius> 0.00975 </radius>\n            <length> 0.08 </length>\n          </cylinder>\n        </geometry>\n        <material>\n          <script>\n            <uri>model://media/materials/scripts/gazebo.material</uri>\n            <name>Gazebo/Wood</name>\n          </script>\n        </material>\n      </visual>\n\n    </link>\n  </model>\n</sdf>\n"
  },
  {
    "path": "ur_gripper_gazebo/package.xml",
    "content": "<?xml version=\"1.0\"?>\n<package format=\"2\">\n  <name>ur_gripper_gazebo</name>\n  <version>0.1.2</version>\n  <description>\n    Gazebo simulation for the UR5 robot with a robotiq gripper\n  </description>\n\n  <author email=\"beltran@hlab.sys.es.osaka-u.ac.jp\">Cristian Beltran</author>\n  <maintainer email=\"beltran@hlab.sys.es.osaka-u.ac.jp\">Cristian Beltran</maintainer>\n  <license>BSD</license>\n\n  <buildtool_depend>catkin</buildtool_depend>\n  <exec_depend>ur_gripper_description</exec_depend>\n  <exec_depend>robotiq_gazebo</exec_depend>\n  <exec_depend>gazebo</exec_depend>\n\n  <export>\n      <gazebo gazebo_media_path=\"${prefix}\" />\n  </export>\n\n</package>\n"
  },
  {
    "path": "ur_gripper_gazebo/scripts/gazebo_to_tf.py",
    "content": "#!/usr/bin/python\nimport rospy\n\nfrom gazebo_msgs.msg import ModelStates\n\nimport tf\nimport rospy\n\nfrom ur_control import conversions\n\n\nclass GazeboToTf:\n    \"\"\" Class to handle ROS-Gazebo model respawn \"\"\"\n\n    def __init__(self):\n        rospy.Subscriber(\"/gazebo/model_states\", ModelStates, self.callback)\n        self.tf_publisher = tf.TransformBroadcaster()\n        self.time_now = rospy.Time.now()\n\n    def callback(self, data):\n        if rospy.Time.now() is not self.time_now:\n            for i in range(len(data.name)):\n                # get model state of all objects\n                self.tf_publisher.sendTransform(conversions.from_point(data.pose[i].position),\n                                                conversions.from_quaternion(data.pose[i].orientation),\n                                                rospy.Time.now(),\n                                                data.name[i],\n                                                \"world\")\n            self.time_now = rospy.Time.now()\n\n\nif __name__ == '__main__':\n    rospy.init_node('gazebo_to_tf')\n    g2tf = GazeboToTf()\n    rospy.spin()\n"
  },
  {
    "path": "ur_gripper_gazebo/scripts/spawner.py",
    "content": "#!/usr/bin/python3\n# Example of adding/removing models to gazebo simulator\nimport argparse\nimport rospy\nimport numpy as np\nimport copy\n\nfrom ur_gazebo.gazebo_spawner import GazeboModels\nfrom ur_gazebo.model import Model\nfrom ur_gazebo.basic_models import SPHERE, PEG_BOARD, BOX, SPHERE_COLLISION\n\nrospy.init_node('gazebo_spawner_ur3e')\nspawner = GazeboModels('ur_gripper_gazebo')\n\n\ndef place_target():\n    sphere = SPHERE % (\"target\", \"0.02\", \"GreenTransparent\")\n    model_names = [\"target\"]\n    objpose = [[0.0131,  0.4019,  0.3026]]\n    objpose = [[-0.13101034,  0.37818616,  0.50852045], [0, 0, 0]]\n\n    models = [Model(model_names[0], objpose[0], file_type='string', string_model=sphere, reference_frame=\"world\")]\n    spawner.load_models(models)\n\n\ndef place_ball():\n    sphere = SPHERE_COLLISION.format(\"ball\", \"0.1\", \"Yellow\", \"0.1\", 2e5)\n    model_names = [\"ball\"]\n    objpose = [[0.608678,  0.0,  (0.25939 + 0.685)], [0, 0, 0]]\n    #  0.25939 + 0.685\n    models = [Model(model_names[0], objpose[0], file_type='string', string_model=sphere, reference_frame=\"world\")]\n    spawner.load_models(models)\n\n\ndef place_cube():\n    cube_lenght = \"0.2\"\n    obj = BOX % (\"box\", cube_lenght, cube_lenght, cube_lenght, \"Yellow\", cube_lenght, cube_lenght, cube_lenght)\n    model_names = [\"box\"]\n    objpose = [[0.618678,  0.0,  0.955148], [0, 0.0, 0, 0.0]]\n\n    models = [Model(model_names[0], objpose[0], file_type='string', string_model=obj, reference_frame=\"world\")]\n    spawner.load_models(models)\n\ndef place_models():\n    model_names = [\"multi_peg_board\"]\n    model_names = [\"simple_peg_board\"]\n    objpose = [[-0.45, -0.20, 0.86], [0, 0.1986693, 0, 0.9800666]]\n    models = [Model(model_names[0], objpose[0], orientation=objpose[1])]\n    spawner.load_models(models)\n\n\ndef place_soft():\n    name = \"simple_peg_board\"\n    objpose = [[-0.3349516,  0.00327044,  0.45290458], [-0.50128434, -0.49779569,  0.50398595,  0.496]]\n\n    stiffness = 1e5\n    g = 0\n    if stiffness > 1e5:\n        g = np.interp(stiffness, [1e5, 1e6], [1, 0])\n    else:\n        g = np.interp(stiffness, [1e4, 1e5], [0, 1])\n    b = np.interp(stiffness, [1e4, 1e5], [1, 0])\n    r = np.interp(stiffness, [1e5, 1e6], [0, 1])\n    string_model = PEG_BOARD.format(r, g, b, stiffness)\n    models = [[Model(name, objpose[0], orientation=objpose[1], file_type='string', string_model=string_model, reference_frame=\"base_link\")]]\n    spawner.load_models(models)\n\n\ndef place_door():\n    name = \"hinged_door\"\n    objpose = [[-0.40, 0.20, 0.76], [0, 0, 0.9238795, 0.3826834]]\n    models = [[Model(name, objpose[0], orientation=objpose[1])]]\n    spawner.load_models(models)\n\n\ndef place_aruco():\n    name = \"Apriltag36_11_00000\"\n    # objpose = [[-0.53, 0.25, 0.82], [0,0,0]] # world coordinates\n    objpose = [[0.20, -0.30, 1.00], [0, 0, 0]]  # world coordinates\n    objpose = [[-0.65, 0.0, 0.78], [0, 0, np.pi/8.0]]  # world coordinates\n    models = [Model(name, objpose[0], orientation=objpose[1], file_type='sdf', reference_frame=\"world\")]\n    spawner.load_models(models)\n\n\ndef main():\n    \"\"\" Main function to be run. \"\"\"\n    parser = argparse.ArgumentParser(description='Test force control')\n    parser.add_argument('--place', action='store_true',\n                        help='Place models')\n    parser.add_argument('--target', action='store_true',\n                        help='Place targets')\n    parser.add_argument('--soft', action='store_true',\n                        help='Place soft peg board')\n    parser.add_argument('--door', action='store_true',\n                        help='Place door')\n    parser.add_argument('--aruco', action='store_true',\n                        help='Place aruco marker')\n    parser.add_argument('--ball', action='store_true',\n                        help='Place ball with collision')\n    parser.add_argument('--cube', action='store_true',\n                        help='Place cube with collision')\n    args = parser.parse_args()\n\n    if args.place:\n        place_models()\n    if args.target:\n        place_target()\n    if args.soft:\n        place_soft()\n    if args.door:\n        place_door()\n    if args.aruco:\n        place_aruco()\n    if args.ball:\n        place_ball()\n    if args.cube:\n        place_cube()\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "ur_gripper_gazebo/scripts/world_publisher.py",
    "content": "#!/usr/bin/env python3\n# tf2 workaround for Python3\nimport sys\nsys.path[:0] = ['/usr/local/lib/python3.6/dist-packages/'] \n\nimport tf\nimport rospy\nimport numpy as np\nfrom gazebo_msgs.msg import ModelStates, ModelState\nfrom apriltag_ros.msg import AprilTagDetectionArray\nfrom tf2_msgs.msg import TFMessage\nfrom ur_control import conversions, transformations\nfrom pyquaternion import Quaternion\n\nrospy.init_node('gazebo_models_tf')\n\ndef gazebo_callback(msg):\n    global robot\n    robot = []\n    world = np.zeros(7)\n    world[6] = 1\n    for i, obj_name in enumerate(msg.name):\n        if obj_name.endswith(\"robot\"):\n            pose = msg.pose[i]\n            robot = np.concatenate([conversions.from_point(pose.position), conversions.from_quaternion(pose.orientation)])\n            # subtract robot_position to camera_position\n            world[:3] -= robot[:3]\n            world[:3] = Quaternion(np.roll(robot[3:],1)).inverse.rotate(world[:3])\n            world[3:] = np.roll((Quaternion(axis=[1.0, 0.0, 0.0], degrees=-90).inverse * Quaternion(np.roll(world[3:],1))).elements,-1)\n            world[3:] = transformations.vector_from_pyquaternion(transformations.vector_to_pyquaternion([0.5,-0.5,-0.5,0.5]).inverse)\n            # world[3:] = np.roll((Quaternion(axis=[0.0, 0.0, 0.0], degrees=0).inverse * Quaternion(np.roll(world[3:],1))).elements,-1)\n            # print(world)orientation\n            br.sendTransform(world[:3],\n                            world[3:],\n                            rospy.Time.now(),\n                            \"sim_world\",\n                            \"base_link\")\n\nrospy.Subscriber(\"/gazebo/model_states\", ModelStates, gazebo_callback)\n\nbr = tf.TransformBroadcaster()\nrate = rospy.Rate(100.0)\nwhile not rospy.is_shutdown():\n    rate.sleep()"
  },
  {
    "path": "ur_gripper_gazebo/setup.py",
    "content": "#!/usr/bin/env python\n\nfrom distutils.core import setup\nfrom catkin_pkg.python_setup import generate_distutils_setup\n\nd = generate_distutils_setup(\n    packages=['ur_gazebo'],\n    package_dir={'': 'src'}\n)\n\nsetup(**d)\n"
  },
  {
    "path": "ur_gripper_gazebo/src/ur_gazebo/__init__.py",
    "content": "\n"
  },
  {
    "path": "ur_gripper_gazebo/src/ur_gazebo/basic_models.py",
    "content": "SPHERE = '<?xml version=\"1.0\" ?> \\\n<sdf version=\"1.5\"> \\\n  <model name=\"%s\"> \\\n    <static>true</static> \\\n    <link name=\"link\"> \\\n      <pose>0 0 0 0 0 0</pose> \\\n      <visual name=\"visual\"> \\\n        <transparency> 0.5 </transparency> \\\n        <geometry> \\\n          <sphere> \\\n            <radius>%s</radius> \\\n          </sphere> \\\n        </geometry> \\\n        <material> \\\n          <script> \\\n            <uri>model://media/materials/scripts/gazebo.material</uri> \\\n            <name>Gazebo/%s</name> \\\n          </script> \\\n        </material> \\\n      </visual> \\\n    </link> \\\n  </model> \\\n</sdf>'\n\nSPHERE_COLLISION = '<?xml version=\"1.0\" ?> \\\n<sdf version=\"1.5\"> \\\n  <model name=\"{}\"> \\\n    <static>true</static> \\\n    <link name=\"link\"> \\\n      <pose>0 0 0 0 0 0</pose> \\\n      <visual name=\"visual\"> \\\n        <transparency> 0.5 </transparency> \\\n        <geometry> \\\n          <sphere> \\\n            <radius>{}</radius> \\\n          </sphere> \\\n        </geometry> \\\n        <material> \\\n          <script> \\\n            <uri>model://media/materials/scripts/gazebo.material</uri> \\\n            <name>Gazebo/{}</name> \\\n          </script> \\\n        </material> \\\n      </visual> \\\n      <collision name=\"collision\"> \\\n        <pose frame=''>0 0 0 0 0 0</pose> \\\n        <laser_retro>0</laser_retro> \\\n        <max_contacts>10</max_contacts> \\\n        <geometry> \\\n          <sphere> \\\n            <radius>{}</radius> \\\n          </sphere> \\\n        </geometry> \\\n        <surface> \\\n          <friction> \\\n            <ode> \\\n              <mu>1</mu> \\\n              <mu2>1</mu2> \\\n              <fdir1>0 0 0</fdir1> \\\n              <slip1>0.1</slip1> \\\n              <slip2>0.1</slip2> \\\n            </ode> \\\n            <torsional> \\\n              <coefficient>1</coefficient> \\\n              <patch_radius>0</patch_radius> \\\n              <surface_radius>0</surface_radius> \\\n              <use_patch_radius>1</use_patch_radius> \\\n              <ode> \\\n                <slip>0</slip> \\\n              </ode> \\\n            </torsional> \\\n          </friction> \\\n          <bounce> \\\n            <restitution_coefficient>0</restitution_coefficient> \\\n            <threshold>1e+06</threshold> \\\n          </bounce> \\\n          <contact> \\\n            <collide_without_contact>0</collide_without_contact> \\\n            <collide_without_contact_bitmask>1</collide_without_contact_bitmask> \\\n            <collide_bitmask>1</collide_bitmask> \\\n            <ode> \\\n              <kp>{}</kp> \\\n              <kd>1</kd> \\\n              <max_vel>0.01</max_vel> \\\n              <min_depth>0</min_depth> \\\n            </ode> \\\n          </contact> \\\n        </surface> \\\n      </collision> \\\n    </link> \\\n  </model> \\\n</sdf>'\n\nBOX = '<?xml version=\"1.0\" ?> \\\n<sdf version=\"1.5\"> \\\n  <model name=\"%s\"> \\\n    <static>true</static> \\\n    <link name=\"link\"> \\\n      <pose>0 0 0 0 0 0</pose> \\\n      <visual name=\"visual\"> \\\n        <transparency> 0.2 </transparency> \\\n        <geometry> \\\n          <box> \\\n            <size>%s %s %s</size> \\\n          </box> \\\n        </geometry> \\\n        <material> \\\n          <script> \\\n            <uri>model://media/materials/scripts/gazebo.material</uri> \\\n            <name>Gazebo/%s</name> \\\n          </script> \\\n        </material> \\\n      </visual> \\\n      <collision name=\"boxcollision\"> \\\n        <pose frame=''>0 0 0 0 0 0</pose> \\\n        <laser_retro>0</laser_retro> \\\n        <max_contacts>10</max_contacts> \\\n        <geometry> \\\n          <box> \\\n            <size>%s %s %s</size> \\\n          </box> \\\n        </geometry> \\\n        <surface> \\\n          <friction> \\\n            <ode> \\\n              <mu>1</mu> \\\n              <mu2>1</mu2> \\\n              <fdir1>0 0 0</fdir1> \\\n              <slip1>0.1</slip1> \\\n              <slip2>0.1</slip2> \\\n            </ode> \\\n            <torsional> \\\n              <coefficient>1</coefficient> \\\n              <patch_radius>0</patch_radius> \\\n              <surface_radius>0</surface_radius> \\\n              <use_patch_radius>1</use_patch_radius> \\\n              <ode> \\\n                <slip>0</slip> \\\n              </ode> \\\n            </torsional> \\\n          </friction> \\\n          <bounce> \\\n            <restitution_coefficient>0</restitution_coefficient> \\\n            <threshold>1e+06</threshold> \\\n          </bounce> \\\n          <contact> \\\n            <collide_without_contact>0</collide_without_contact> \\\n            <collide_without_contact_bitmask>1</collide_without_contact_bitmask> \\\n            <collide_bitmask>1</collide_bitmask> \\\n            <ode> \\\n              <kp>1e5</kp> \\\n              <kd>1</kd> \\\n              <max_vel>0.01</max_vel> \\\n              <min_depth>0</min_depth> \\\n            </ode> \\\n          </contact> \\\n        </surface> \\\n      </collision> \\\n    </link> \\\n    <static>1</static> \\\n  </model> \\\n</sdf>'\n\nPEG_BOARD = \"<?xml version='1.0'?> \\\n<sdf version='1.6'> \\\n  <model name='simple_peg_board'> \\\n    <static>true</static> \\\n    <link name='board'> \\\n      <pose frame=''>0.0 0.0 -0.01 1.5707 0 0</pose> \\\n      <self_collide>0</self_collide> \\\n      <kinematic>0</kinematic> \\\n      <gravity>0</gravity> \\\n      <inertial> \\\n        <mass>1</mass> \\\n        <pose frame=''>0 0 0 0 0 0</pose> \\\n        <inertia> \\\n          <ixx>0.999223</ixx> \\\n          <ixy>0.039421</ixy> \\\n          <ixz>0.000141</ixz> \\\n          <iyy>0.999222</iyy> \\\n          <iyz>-0.001474</iyz> \\\n          <izz>0.999999</izz> \\\n        </inertia> \\\n      </inertial> \\\n      <visual name='visual'> \\\n        <transparency> {} </transparency> \\\n        <pose frame=''>0 0 0 0 0 0</pose> \\\n        <geometry> \\\n          <mesh> \\\n            <uri>model://simple_peg_board/meshes/simple_board.dae</uri> \\\n              <scale>0.97 0.97 0.97</scale> \\\n          </mesh> \\\n        </geometry> \\\n        <material> \\\n          <ambient>0 0 0 1</ambient> \\\n          <diffuse>0 0 0 1</diffuse> \\\n          <specular>0 0 0 0</specular> \\\n          <emissive>{} {} {} 1</emissive> \\\n        </material> \\\n        <transparency>0</transparency> \\\n        <cast_shadows>1</cast_shadows> \\\n      </visual> \\\n      <collision name='collision'> \\\n        <pose frame=''>0 0 0 0 0 0</pose> \\\n        <laser_retro>0</laser_retro> \\\n        <max_contacts>10</max_contacts> \\\n        <geometry> \\\n          <mesh> \\\n            <uri>model://simple_peg_board/meshes/simple_board.dae</uri> \\\n            <scale>0.97 0.97 0.97</scale> \\\n          </mesh> \\\n        </geometry> \\\n        <surface> \\\n          <friction> \\\n            <ode> \\\n              <mu>1</mu> \\\n              <mu2>1</mu2> \\\n              <fdir1>0 0 0</fdir1> \\\n              <slip1>0.1</slip1> \\\n              <slip2>0.1</slip2> \\\n            </ode> \\\n            <torsional> \\\n              <coefficient>1</coefficient> \\\n              <patch_radius>0</patch_radius> \\\n              <surface_radius>0</surface_radius> \\\n              <use_patch_radius>1</use_patch_radius> \\\n              <ode> \\\n                <slip>0</slip> \\\n              </ode> \\\n            </torsional> \\\n          </friction> \\\n          <bounce> \\\n            <restitution_coefficient>0</restitution_coefficient> \\\n            <threshold>1e+06</threshold> \\\n          </bounce> \\\n          <contact> \\\n            <collide_without_contact>0</collide_without_contact> \\\n            <collide_without_contact_bitmask>1</collide_without_contact_bitmask> \\\n            <collide_bitmask>1</collide_bitmask> \\\n            <ode> \\\n              <kp>{}</kp> \\\n              <kd>1</kd> \\\n              <max_vel>0.01</max_vel> \\\n              <min_depth>0</min_depth> \\\n            </ode> \\\n          </contact> \\\n        </surface> \\\n      </collision> \\\n    </link> \\\n    <static>1</static> \\\n    <allow_auto_disable>1</allow_auto_disable> \\\n  </model> \\\n</sdf>\""
  },
  {
    "path": "ur_gripper_gazebo/src/ur_gazebo/gazebo_spawner.py",
    "content": "import copy\nimport rospy\nimport rospkg\n\nfrom gazebo_msgs.msg import ModelStates, ModelState\nfrom gazebo_msgs.srv import (\n    SpawnModel,\n    DeleteModel,\n)\n\n\ndef delete_gazebo_models(models):\n    # This will be called on ROS Exit, deleting Gazebo models\n    # Do not wait for the Gazebo Delete Model service, since\n    # Gazebo should already be running. If the service is not\n    # available since Gazebo has been killed, it is fine to error out\n    try:\n        delete_model = rospy.ServiceProxy('/gazebo/delete_model', DeleteModel)\n        for m in models:\n            delete_model(m)\n\n    except rospy.ServiceException as e:\n        rospy.loginfo(\"Delete Model service call failed: {0}\".format(e))\n\n\nclass GazeboModels:\n    \"\"\" Class to handle ROS-Gazebo model respawn \"\"\"\n\n    def __init__(self, model_pkg):\n        self.loaded_models = []\n        self._pub_model_state = rospy.Publisher('/gazebo/set_model_state',\n                                                ModelState, queue_size=10)\n        rospy.Subscriber(\"/gazebo/model_states\", ModelStates, self._gazebo_callback)\n        rospy.sleep(0.5)\n        delete_gazebo_models(self.loaded_models)\n        rospy.sleep(1.0)\n        # Get Models' Path\n        # get an instance of RosPack with the default search paths\n        rospack = rospkg.RosPack()\n        # get the file path for rospy_tutorials\n        packpath = rospack.get_path(model_pkg)\n        self.model_path = packpath + '/models/'\n\n    def load_models(self, models):\n        for m in models:\n            if m.file_type == 'urdf':\n                self.load_urdf_model(m)\n            elif m.file_type == 'sdf' or m.file_type == 'string':\n                self.load_sdf_model(m)\n\n    def _gazebo_callback(self, data):\n        self.loaded_models = []\n        for obj_name in data.name:\n            if obj_name.endswith(\"_tmp\"):\n                self.loaded_models.append(obj_name)\n\n    def reset_models(self, models):\n        for m in models:\n            self.reset_model(m)\n\n    def reset_model(self, model):\n        \"\"\" Delete/create model if already exists, create otherwise \"\"\"\n        m_id = model.model_id if model.model_id is not None else model.name\n        m_id += '_tmp'\n        if m_id in self.loaded_models:\n            delete_gazebo_models([m_id])\n            rospy.sleep(0.5)\n        self.load_models([model])\n\n    def update_models_state(self, models):\n        for m in models:\n            self.update_model_state(m)\n\n    def update_model_state(self, model):\n        m_id = model.model_id if model.model_id is not None else model.name\n        m_id += '_tmp'\n        if m_id in self.loaded_models:\n            model_state = ModelState(model_name=m_id, pose=model.pose, reference_frame=model.reference_frame)\n            for _ in range(100):\n                self._pub_model_state.publish(model_state)\n        else:\n            self.load_models([model])\n\n    def load_urdf_model(self, model):\n        # Spawn Block URDF\n        rospy.wait_for_service('/gazebo/spawn_urdf_model')\n        try:\n            m_id = model.model_id if model.model_id is not None else model.name\n            spawn_urdf = rospy.ServiceProxy('/gazebo/spawn_urdf_model', SpawnModel)\n            spawn_urdf(m_id+\"_tmp\", self.load_xml(model.name, filetype=\"urdf\"), \"/\",\n                       model.pose, model.reference_frame)\n        except IOError:\n            self.load_sdf_model(model)\n        except rospy.ServiceException as e:\n            rospy.logerr(\"Spawn URDF service call failed: {0}\".format(e))\n\n    def load_sdf_model(self, model):\n        # Spawn model SDF\n        rospy.wait_for_service('/gazebo/spawn_sdf_model')\n        try:\n            spawn_sdf = rospy.ServiceProxy('/gazebo/spawn_sdf_model', SpawnModel)\n            m_id = model.model_id if model.model_id is not None else model.name\n            if model.string_model is None:\n                spawn_sdf(m_id+\"_tmp\", self.load_xml(model.name), \"/\",\n                          model.pose, model.reference_frame)\n            else:\n                spawn_sdf(m_id+\"_tmp\", model.string_model, \"/\",\n                          model.pose, model.reference_frame)\n        except rospy.ServiceException as e:\n            rospy.logerr(\"Spawn SDF service call failed: {0}\".format(e))\n\n    def load_xml(self, model_name, filetype=\"sdf\"):\n        # Load File\n        with open(self.model_path + model_name + \"/model.%s\" % filetype, \"r\") as table_file:\n            return table_file.read().replace('\\n', '')\n"
  },
  {
    "path": "ur_gripper_gazebo/src/ur_gazebo/model.py",
    "content": "import copy\nfrom ur_control import transformations\nfrom geometry_msgs.msg import (\n    Pose,\n    Point,\n    Quaternion\n)\n\nclass Model(object):\n    \"\"\" Model object \"\"\"\n    def __init__(self, name, position, orientation=[0,0,0,1], file_type='urdf', string_model=None, reference_frame=\"world\", model_id=None):\n        \"\"\"\n        Model representation for Gazebo spawner\n        name string: name of the model as it is called in the sdf/urdf\n        position array[3]: x, y, z position\n        orienation array[4]: ax, ay, az, w\n        file_type string: type of model sdf, urdf, or string\n        string_model string: full xml representing a sdf model\n        reference_frame string: frame of reference for the position/orientation of the model \n        \"\"\"\n        self.name = name\n        self.posearr = position\n        self.set_pose(position, orientation)\n        self.file_type = file_type\n        self.string_model = string_model\n        self.reference_frame = reference_frame\n        self.model_id = model_id\n\n    def set_pose(self, position, orientation=[0,0,0,1]):\n        self.posearr = position\n        if len(orientation) == 3:\n            self.orietarr = transformations.quaternion_from_euler(orientation[0], orientation[1], orientation[2])\n        else:\n            self.orietarr = orientation\n        self.orientation = Quaternion(x=self.orietarr[0], y=self.orietarr[1], z=self.orietarr[2], w=self.orietarr[3]) if isinstance(orientation, list) else Quaternion()\n        self.pose = Pose(position=Point(x=position[0], y=position[1], z=position[2]), orientation=self.orientation)\n\n    def get_rotation(self):\n        return self.orietarr\n\n    def get_pose(self):\n        return self.posearr\n"
  },
  {
    "path": "ur_gripper_gazebo/urdf/ur_gripper_85.xacro",
    "content": "<?xml version=\"1.0\"?>\n<robot xmlns:xacro=\"http://wiki.ros.org/xacro\" name=\"ur_robot_gazebo\">\n  <!--\n    This is a top-level xacro instantiating the Gazebo-specific version of the\n    'ur_robot' macro (ie: 'ur_robot_gazebo') and passing it values for all its\n    required arguments.\n    This file should be considered the Gazebo-specific variant of the file\n    with the same name in the ur_description package. It accepts the same\n    arguments, but instead of configuring everything for a real robot, will\n    generate a Gazebo-compatible URDF with a ros_control hardware_interface\n    attached to it.\n    Only use this top-level xacro if you plan on spawning the robot in Gazebo\n    'by itself', without any gripper or any other geometry attached.\n    If you need to attach an end-effector, camera or need to integrate the\n    robot into a larger workcell and want to spawn that as a single entity in\n    Gazebo, DO NOT EDIT THIS FILE.\n    Instead: create a new top-level xacro, give it a proper name, include the\n    required '.xacro' files, instantiate the models (ie: call the macros) and\n    connect everything by adding the appropriate joints.\n  -->\n\n  <!--\n    Import main macro.\n    NOTE: this imports the Gazebo-wrapper main macro, NOT the regular\n          xacro macro (which is hosted by ur_description).\n  -->\n  <xacro:include filename=\"$(find ur_gazebo)/urdf/ur_macro.xacro\"/>\n\n  <!--Declare arguments -->\n  <xacro:arg name=\"joint_limit_params\" default=\"\"/>\n  <xacro:arg name=\"physical_params\" default=\"\"/>\n  <xacro:arg name=\"kinematics_params\" default=\"\"/>\n  <xacro:arg name=\"visual_params\" default=\"\"/>\n  <!--\n    legal values:\n      - hardware_interface/PositionJointInterface\n      - hardware_interface/VelocityJointInterface\n      - hardware_interface/EffortJointInterface\n    NOTE: this value must correspond to the controller configured in the\n          controller .yaml files in the 'config' directory.\n  -->\n  <xacro:arg name=\"transmission_hw_interface\" default=\"hardware_interface/PositionJointInterface\"/>\n  <xacro:arg name=\"safety_limits\" default=\"false\"/>\n  <xacro:arg name=\"safety_pos_margin\" default=\"0.15\"/>\n  <xacro:arg name=\"safety_k_position\" default=\"20\"/>\n\n  <!-- Instantiate the Gazebo robot and pass it all the required arguments. -->\n  <xacro:ur_robot_gazebo\n    prefix=\"\"\n    joint_limits_parameters_file=\"$(arg joint_limit_params)\"\n    kinematics_parameters_file=\"$(arg kinematics_params)\"\n    physical_parameters_file=\"$(arg physical_params)\"\n    visual_parameters_file=\"$(arg visual_params)\"\n    transmission_hw_interface=\"$(arg transmission_hw_interface)\"\n    safety_limits=\"$(arg safety_limits)\"\n    safety_pos_margin=\"$(arg safety_pos_margin)\"\n    safety_k_position=\"$(arg safety_k_position)\"\n  />\n\n  <!--\n    Attach the Gazebo model to Gazebo's world frame.\n    Note: if you're looking to integrate a UR into a larger scene and need\n    to add EEFs or other parts, DO NOT change this file or the 'world' link\n    here. Create a NEW xacro instead and decide whether you need to add\n    a 'world' link there.\n  -->\n  <link name=\"world\"/>\n  <joint name=\"world_joint\" type=\"fixed\">\n    <parent link=\"world\"/>\n    <child link=\"base_link\"/>\n    <origin xyz=\"0 0 0\" rpy=\"0 0 0\"/>\n  </joint>\n\n  <!-- Gripper -->\n\n  <xacro:arg name=\"grasp_plugin\" default=\"false\" />\n\n  <xacro:include filename=\"$(find robotiq_description)/urdf/robotiq_85_gripper.urdf.xacro\" />\n  \n  <!-- Robotiq Coupler -->\n  <!--  + Height added by the coupler: 8mm -->\n  <!--  + Reference frame: at the middle (4mm) -->\n  <link name=\"robotiq_coupler\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/robotiq_85_coupler.stl\" />\n      </geometry>\n      <material name=\"flat_black\">\n        <color rgba=\"0 0 0 1.0\"/>\n      </material>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/robotiq_85_coupler.stl\" />\n      </geometry>\n    </collision>\n    <inertial>\n      <origin xyz=\"2.073e-05   1.45286e-03  -1.1049e-03\" rpy=\"0 0 0\" />\n      <mass value=\"0.168\" />\n      <inertia ixx=\"6.69695624e-05\" ixy=\"5.21511788e-09\" ixz=\"-2.74383009e-08\" \n               iyy=\"7.85088161e-05\" iyz=\"5.41105193e-07\" izz=\"1.41819717e-04\"/>\n    </inertial>\n  </link>\n\n  <joint name=\"robotiq_coupler_joint\" type=\"fixed\">\n    <origin xyz=\"0 0 0.004\" rpy=\"0 0 ${-pi/2.0}\" />\n    <parent link=\"tool0\"/>\n    <child link=\"robotiq_coupler\"/>\n  </joint>\n  <gazebo reference=\"robotiq_coupler\">\n    <mu1>0.9</mu1>\n    <mu2>0.9</mu2>\n    <material>Gazebo/FlatBlack</material>\n  </gazebo>\n\n  <!-- Equivalent to the OpenRAVE manipulator denso_robotiq_85_gripper -->\n  <link name=\"gripper_tip_link\" />\n  <joint name=\"manipulator_dummy_joint\" type=\"fixed\">\n    <origin xyz=\"0 0 0.1441\" rpy=\"0 0 0\" />\n    <parent link=\"robotiq_coupler\"/>\n    <child link=\"gripper_tip_link\"/>\n  </joint>\n    \n  <!-- Attach the robotiq 85 gripper -->\n  <xacro:robotiq_85_gripper prefix=\"\" parent=\"robotiq_coupler\" >\n    <origin xyz=\"0 0 0.004\" rpy=\"0 ${-pi/2} ${pi}\"/>\n  </xacro:robotiq_85_gripper> \n  \n  <!-- Gazebo Force/Torque sensor plugin -->\n  <gazebo reference=\"wrist_3_joint\">\n    <provideFeedback>true</provideFeedback>\n  </gazebo>\n  <!-- <gazebo reference=\"wrist_3_joint\">\n    <preserveFixedJoint>true</preserveFixedJoint>\n  </gazebo> -->\n  <gazebo>\n    <plugin name=\"ft_sensor\" filename=\"libgazebo_ros_ft_sensor.so\">\n      <updateRate>125.0</updateRate>\n      <topicName>wrench</topicName>\n      <gaussianNoise>0.0</gaussianNoise>\n      <jointName>wrist_3_joint</jointName>\n    </plugin>\n  </gazebo>\n  \n  <!-- Gazebo grasping plugin \n      grasp_plugin False = gazebo_gripper \n      grasp_plugin True = custom gazebo_grasp_fix\n  -->\n  <xacro:if value=\"$(arg grasp_plugin)\">\n    <gazebo>\n      <plugin name=\"gazebo_grasp_fix\" filename=\"libgazebo_grasp_fix.so\">\n            <arm>\n              <arm_name>robotiq_85</arm_name>\n              <palm_link>wrist_3_link</palm_link>\n              <gripper_link>robotiq_85_left_finger_tip_link</gripper_link>\n              <gripper_link>robotiq_85_right_finger_tip_link</gripper_link>\n            </arm>\n          <forces_angle_tolerance>100</forces_angle_tolerance>\n          <update_rate>100</update_rate>\n          <grip_count_threshold>5</grip_count_threshold>\n          <max_grip_count>30</max_grip_count>\n          <release_tolerance>0.0015</release_tolerance>\n          <disable_collisions_on_attach>false</disable_collisions_on_attach>\n          <contact_topic>__default_topic__</contact_topic>\n        </plugin>\n    </gazebo>\n  </xacro:if>\n  <xacro:unless value=\"$(arg grasp_plugin)\">\n    <gazebo>\n      <gripper name=\"gazebo_gripper\">\n        <grasp_check>\n          <attach_steps>2</attach_steps>    \n          <detach_steps>2</detach_steps>    \n          <min_contact_count>3</min_contact_count>\n        </grasp_check>\n        <gripper_link>robotiq_85_left_finger_tip_link</gripper_link>\n        <gripper_link>robotiq_85_right_finger_tip_link</gripper_link>\n        <palm_link>wrist_3_link</palm_link>\n      </gripper>\n    </gazebo> \n  </xacro:unless>\n\n  <!-- Gazebo grasping plugin -->\n</robot>"
  },
  {
    "path": "ur_gripper_gazebo/urdf/ur_gripper_hande.xacro",
    "content": "<?xml version=\"1.0\"?>\n<robot xmlns:xacro=\"http://wiki.ros.org/xacro\" name=\"ur_robot_gazebo\">\n  <!--\n    This is a top-level xacro instantiating the Gazebo-specific version of the\n    'ur_robot' macro (ie: 'ur_robot_gazebo') and passing it values for all its\n    required arguments.\n    This file should be considered the Gazebo-specific variant of the file\n    with the same name in the ur_description package. It accepts the same\n    arguments, but instead of configuring everything for a real robot, will\n    generate a Gazebo-compatible URDF with a ros_control hardware_interface\n    attached to it.\n    Only use this top-level xacro if you plan on spawning the robot in Gazebo\n    'by itself', without any gripper or any other geometry attached.\n    If you need to attach an end-effector, camera or need to integrate the\n    robot into a larger workcell and want to spawn that as a single entity in\n    Gazebo, DO NOT EDIT THIS FILE.\n    Instead: create a new top-level xacro, give it a proper name, include the\n    required '.xacro' files, instantiate the models (ie: call the macros) and\n    connect everything by adding the appropriate joints.\n  -->\n\n  <!--\n    Import main macro.\n    NOTE: this imports the Gazebo-wrapper main macro, NOT the regular\n          xacro macro (which is hosted by ur_description).\n  -->\n  <xacro:include filename=\"$(find ur_gazebo)/urdf/ur_macro.xacro\"/>\n\n  <!--Declare arguments -->\n  <xacro:arg name=\"joint_limit_params\" default=\"\"/>\n  <xacro:arg name=\"physical_params\" default=\"\"/>\n  <xacro:arg name=\"kinematics_params\" default=\"\"/>\n  <xacro:arg name=\"visual_params\" default=\"\"/>\n  <!--\n    legal values:\n      - hardware_interface/PositionJointInterface\n      - hardware_interface/VelocityJointInterface\n      - hardware_interface/EffortJointInterface\n    NOTE: this value must correspond to the controller configured in the\n          controller .yaml files in the 'config' directory.\n  -->\n  <xacro:arg name=\"transmission_hw_interface\" default=\"hardware_interface/PositionJointInterface\"/>\n  <xacro:arg name=\"safety_limits\" default=\"false\"/>\n  <xacro:arg name=\"safety_pos_margin\" default=\"0.15\"/>\n  <xacro:arg name=\"safety_k_position\" default=\"20\"/>\n\n  <!-- Instantiate the Gazebo robot and pass it all the required arguments. -->\n  <xacro:ur_robot_gazebo\n    prefix=\"\"\n    joint_limits_parameters_file=\"$(arg joint_limit_params)\"\n    kinematics_parameters_file=\"$(arg kinematics_params)\"\n    physical_parameters_file=\"$(arg physical_params)\"\n    visual_parameters_file=\"$(arg visual_params)\"\n    transmission_hw_interface=\"$(arg transmission_hw_interface)\"\n    safety_limits=\"$(arg safety_limits)\"\n    safety_pos_margin=\"$(arg safety_pos_margin)\"\n    safety_k_position=\"$(arg safety_k_position)\"\n  />\n\n  <!--\n    Attach the Gazebo model to Gazebo's world frame.\n    Note: if you're looking to integrate a UR into a larger scene and need\n    to add EEFs or other parts, DO NOT change this file or the 'world' link\n    here. Create a NEW xacro instead and decide whether you need to add\n    a 'world' link there.\n  -->\n  <link name=\"world\"/>\n  <joint name=\"world_joint\" type=\"fixed\">\n    <parent link=\"world\"/>\n    <child link=\"base_link\"/>\n    <origin xyz=\"0 0 0\" rpy=\"0 0 0\"/>\n  </joint>\n\n  <!-- Gripper -->\n\n  <xacro:arg name=\"grasp_plugin\" default=\"false\" />\n  <xacro:include filename=\"$(find robotiq_description)/urdf/robotiq_hande_gripper.urdf.xacro\" />\n  \n  <!-- Robotiq Coupler -->\n  <!--  + Height added by the coupler: 8mm -->\n  <!--  + Reference frame: at the middle (4mm) -->\n  <link name=\"robotiq_coupler\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/robotiq_85_coupler.stl\" />\n      </geometry>\n      <material name=\"flat_black\">\n        <color rgba=\"0 0 0 1.0\"/>\n      </material>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/robotiq_85_coupler.stl\" />\n      </geometry>\n    </collision>\n    <inertial>\n      <origin xyz=\"2.073e-05   1.45286e-03  -1.1049e-03\" rpy=\"0 0 0\" />\n      <mass value=\"0.168\" />\n      <inertia ixx=\"6.69695624e-05\" ixy=\"5.21511788e-09\" ixz=\"-2.74383009e-08\" \n               iyy=\"7.85088161e-05\" iyz=\"5.41105193e-07\" izz=\"1.41819717e-04\"/>\n    </inertial>\n  </link>\n\n  <joint name=\"robotiq_coupler_joint\" type=\"fixed\">\n    <origin xyz=\"0 0 0.004\" rpy=\"0 0 ${-pi/2.0}\" />\n    <parent link=\"tool0\"/>\n    <child link=\"robotiq_coupler\"/>\n  </joint>\n  <gazebo reference=\"robotiq_coupler\">\n    <mu1>0.9</mu1>\n    <mu2>0.9</mu2>\n    <material>Gazebo/FlatBlack</material>\n  </gazebo>\n\n  <!-- Equivalent to the OpenRAVE manipulator denso_robotiq_hande_gripper -->\n  <link name=\"gripper_tip_link\" />\n  <joint name=\"manipulator_dummy_joint\" type=\"fixed\">\n    <origin xyz=\"0 0 0.1441\" rpy=\"0 0 0\" />\n    <parent link=\"robotiq_coupler\"/>\n    <child link=\"gripper_tip_link\"/>\n  </joint>\n    \n  <!-- Attach the robotiq hand-e gripper -->\n  <xacro:robotiq_hande_gripper prefix=\"\" parent=\"robotiq_coupler\" >\n    <origin xyz=\"0 0 0.004\" rpy=\"0 0 ${-pi/2}\"/>\n  </xacro:robotiq_hande_gripper> \n\n  <!-- Gazebo Force/Torque sensor plugin -->\n  <gazebo reference=\"wrist_3_joint\">\n    <provideFeedback>true</provideFeedback>\n  </gazebo>\n  <!-- <gazebo reference=\"wrist_3_joint\">\n    <preserveFixedJoint>true</preserveFixedJoint>\n  </gazebo> -->\n  <gazebo>\n    <plugin name=\"ft_sensor\" filename=\"libgazebo_ros_ft_sensor.so\">\n      <updateRate>500.0</updateRate>\n      <topicName>wrench</topicName>\n      <gaussianNoise>0.0</gaussianNoise>\n      <jointName>wrist_3_joint</jointName>\n    </plugin>\n  </gazebo>\n  \n  <!-- Gazebo grasping plugin \n      grasp_plugin True = custom gazebo_grasp_fix\n      grasp_plugin False = gazebo_gripper \n  -->\n  <xacro:if value=\"$(arg grasp_plugin)\">\n    <gazebo>\n      <plugin name=\"gazebo_grasp_fix\" filename=\"libgazebo_grasp_fix.so\">\n            <arm>\n              <arm_name>robotiq_hande</arm_name>\n              <palm_link>wrist_3_link</palm_link>\n              <gripper_link>hande_right_finger</gripper_link>\n              <gripper_link>hande_left_finger</gripper_link>\n            </arm>\n          <forces_angle_tolerance>100</forces_angle_tolerance>\n          <update_rate>100</update_rate>\n          <grip_count_threshold>5</grip_count_threshold>\n          <max_grip_count>30</max_grip_count>\n          <release_tolerance>0.0015</release_tolerance>\n          <disable_collisions_on_attach>false</disable_collisions_on_attach>\n          <contact_topic>__default_topic__</contact_topic>\n        </plugin>\n    </gazebo>\n  </xacro:if>\n  <xacro:unless value=\"$(arg grasp_plugin)\">\n    <gazebo>\n      <gripper name=\"gazebo_gripper\">\n        <grasp_check>\n          <attach_steps>2</attach_steps>    \n          <detach_steps>2</detach_steps>    \n          <min_contact_count>3</min_contact_count>\n        </grasp_check>\n        <gripper_link>hande_right_finger</gripper_link>\n        <gripper_link>hande_left_finger</gripper_link>\n        <palm_link>wrist_3_link</palm_link>\n      </gripper>\n    </gazebo> \n  </xacro:unless>\n\n  <!-- Gazebo grasping plugin -->\n</robot>"
  },
  {
    "path": "ur_gripper_gazebo/worlds/cubes_task.world",
    "content": "<?xml version=\"1.0\" ?>\n\n<sdf version=\"1.6\">\n\n  <world name=\"ur3_cubes\">\n    \n    <gui>\n      <camera name='user_camera'>\n        <pose frame=''>1.28552 1.43709 1.77307 0 0.43 -1.99519</pose>\n        <view_controller>orbit</view_controller>\n        <projection_type>perspective</projection_type>\n      </camera>\n    </gui>\n\n    <gravity>0 0 -9.81</gravity>\n\n    <physics name=\"default_physics\" default=\"0\" type=\"ode\">\n      <max_step_size>0.001</max_step_size>\n      <real_time_factor>1</real_time_factor>\n      <real_time_update_rate>1000</real_time_update_rate>\n    </physics>\n\n    <!-- A gazebo links attacher -->\n    <plugin name=\"ros_link_attacher_plugin\" filename=\"libgazebo_ros_link_attacher.so\"/>\n\n    <scene>\n      <ambient>0.4 0.4 0.4 1</ambient>\n      <background>0.40 0.43 0.67 1</background>\n      <shadows>1</shadows>\n    </scene>\n\n    <!-- Light Source -->\n    <include>\n      <uri>model://sun</uri>\n    </include>\n\n    <!-- A ground plane -->\n    <include>\n      <uri>model://floor</uri>\n      <pose>0 0 0 0 0 0</pose>\n    </include>\n\n    <!-- A gazebo links attacher -->\n    <!-- <plugin name=\"ros_link_attacher_plugin\" -->\n    <!--         filename=\"libgazebo_ros_link_attacher.so\"/> -->\n\n    <!-- The robot base -->\n    <model name=\"ur_base\">\n      <include>\n        <uri>model://ur_base</uri>\n        <pose>0 0 0 0 0 0</pose>\n      </include>\n    </model>\n\n    <!-- Table -->\n    <!-- Table top is at (x,y,z) = (0.7, 0, 0.775) -->\n    <!-- Table top size is 0.9x0.9 -->\n    <model name='cafe_table'>\n      <link name='cafe_table::link'>\n        <pose frame=''>0.75 0 0 0 -0 0</pose>\n        <self_collide>0</self_collide>\n        <kinematic>0</kinematic>\n        <gravity>1</gravity>\n        <inertial>\n          <mass>1</mass>\n          <pose frame=''>0 0 0 0 -0 0</pose>\n          <inertia>\n            <ixx>1</ixx>\n            <ixy>0</ixy>\n            <ixz>0</ixz>\n            <iyy>1</iyy>\n            <iyz>0</iyz>\n            <izz>1</izz>\n          </inertia>\n        </inertial>\n        <visual name='visual'>\n          <geometry>\n            <mesh>\n              <uri>model://cafe_table/meshes/cafe_table.dae</uri>\n              <scale>1 0.8 1</scale>\n            </mesh>\n          </geometry>\n          <material>\n            <shader type='pixel'>\n              <normal_map>__default__</normal_map>\n            </shader>\n          </material>\n          <pose frame=''>0 0 0 0 -0 0</pose>\n          <cast_shadows>1</cast_shadows>\n          <transparency>0</transparency>\n        </visual>\n        <collision name='surface'>\n          <laser_retro>0</laser_retro>\n          <max_contacts>10</max_contacts>\n          <pose frame=''>0 0 0.755 0 -0 0</pose>\n          <geometry>\n            <box>\n              <size>0.913 0.913 0.04</size>\n            </box>\n          </geometry>\n          <surface>\n            <friction>\n              <ode>\n                <mu>1</mu>\n                <mu2>1</mu2>\n                <fdir1>0 0 0</fdir1>\n                <slip1>0</slip1>\n                <slip2>0</slip2>\n              </ode>\n              <torsional>\n                <coefficient>1</coefficient>\n                <patch_radius>0</patch_radius>\n                <surface_radius>0</surface_radius>\n                <use_patch_radius>1</use_patch_radius>\n                <ode>\n                  <slip>0</slip>\n                </ode>\n              </torsional>\n            </friction>\n            <bounce>\n              <restitution_coefficient>0</restitution_coefficient>\n              <threshold>1e+06</threshold>\n            </bounce>\n            <contact>\n              <collide_without_contact>0</collide_without_contact>\n              <collide_without_contact_bitmask>1</collide_without_contact_bitmask>\n              <collide_bitmask>1</collide_bitmask>\n              <ode>\n                <soft_cfm>0</soft_cfm>\n                <soft_erp>0.2</soft_erp>\n                <kp>1e+13</kp>\n                <kd>1</kd>\n                <max_vel>0.01</max_vel>\n                <min_depth>0</min_depth>\n              </ode>\n              <bullet>\n                <split_impulse>1</split_impulse>\n                <split_impulse_penetration_threshold>-0.01</split_impulse_penetration_threshold>\n                <soft_cfm>0</soft_cfm>\n                <soft_erp>0.2</soft_erp>\n                <kp>1e+13</kp>\n                <kd>1</kd>\n              </bullet>\n            </contact>\n          </surface>\n        </collision>\n        <collision name='column'>\n          <laser_retro>0</laser_retro>\n          <max_contacts>10</max_contacts>\n          <pose frame=''>0 0 0.37 0 -0 0</pose>\n          <geometry>\n            <box>\n              <size>0.042 0.042 0.74</size>\n            </box>\n          </geometry>\n          <surface>\n            <friction>\n              <ode>\n                <mu>1</mu>\n                <mu2>1</mu2>\n                <fdir1>0 0 0</fdir1>\n                <slip1>0</slip1>\n                <slip2>0</slip2>\n              </ode>\n              <torsional>\n                <coefficient>1</coefficient>\n                <patch_radius>0</patch_radius>\n                <surface_radius>0</surface_radius>\n                <use_patch_radius>1</use_patch_radius>\n                <ode>\n                  <slip>0</slip>\n                </ode>\n              </torsional>\n            </friction>\n            <bounce>\n              <restitution_coefficient>0</restitution_coefficient>\n              <threshold>1e+06</threshold>\n            </bounce>\n            <contact>\n              <collide_without_contact>0</collide_without_contact>\n              <collide_without_contact_bitmask>1</collide_without_contact_bitmask>\n              <collide_bitmask>1</collide_bitmask>\n              <ode>\n                <soft_cfm>0</soft_cfm>\n                <soft_erp>0.2</soft_erp>\n                <kp>1e+13</kp>\n                <kd>1</kd>\n                <max_vel>0.01</max_vel>\n                <min_depth>0</min_depth>\n              </ode>\n              <bullet>\n                <split_impulse>1</split_impulse>\n                <split_impulse_penetration_threshold>-0.01</split_impulse_penetration_threshold>\n                <soft_cfm>0</soft_cfm>\n                <soft_erp>0.2</soft_erp>\n                <kp>1e+13</kp>\n                <kd>1</kd>\n              </bullet>\n            </contact>\n          </surface>\n        </collision>\n        <collision name='base'>\n          <laser_retro>0</laser_retro>\n          <max_contacts>10</max_contacts>\n          <pose frame=''>0 0 0.02 0 -0 0</pose>\n          <geometry>\n            <box>\n              <size>0.56 0.56 0.04</size>\n            </box>\n          </geometry>\n          <surface>\n            <friction>\n              <ode>\n                <mu>1</mu>\n                <mu2>1</mu2>\n                <fdir1>0 0 0</fdir1>\n                <slip1>0</slip1>\n                <slip2>0</slip2>\n              </ode>\n              <torsional>\n                <coefficient>1</coefficient>\n                <patch_radius>0</patch_radius>\n                <surface_radius>0</surface_radius>\n                <use_patch_radius>1</use_patch_radius>\n                <ode>\n                  <slip>0</slip>\n                </ode>\n              </torsional>\n            </friction>\n            <bounce>\n              <restitution_coefficient>0</restitution_coefficient>\n              <threshold>1e+06</threshold>\n            </bounce>\n            <contact>\n              <collide_without_contact>0</collide_without_contact>\n              <collide_without_contact_bitmask>1</collide_without_contact_bitmask>\n              <collide_bitmask>1</collide_bitmask>\n              <ode>\n                <soft_cfm>0</soft_cfm>\n                <soft_erp>0.2</soft_erp>\n                <kp>1e+13</kp>\n                <kd>1</kd>\n                <max_vel>0.01</max_vel>\n                <min_depth>0</min_depth>\n              </ode>\n              <bullet>\n                <split_impulse>1</split_impulse>\n                <split_impulse_penetration_threshold>-0.01</split_impulse_penetration_threshold>\n                <soft_cfm>0</soft_cfm>\n                <soft_erp>0.2</soft_erp>\n                <kp>1e+13</kp>\n                <kd>1</kd>\n              </bullet>\n            </contact>\n          </surface>\n        </collision>\n      </link>\n      <static>1</static>\n      <allow_auto_disable>1</allow_auto_disable>\n      <pose frame=''>0 0 0 0 -0 0</pose>\n    </model>\n\n    <!-- Cubes -->\n    <model name=\"cube1\">\n      <pose>0.4 -0.2 0.775 0 0 0</pose>\n      <link name=\"link\">\n        <pose>0 0 0.02 0 0 0</pose>\n        <inertial>\n          <mass>0.0565</mass>\n          <inertia>\n            <ixx>2.3541666666666672e-05</ixx>\n            <ixy>0</ixy>\n            <ixz>0</ixz>\n            <iyy>2.3541666666666672e-05</iyy>\n            <iyz>0</iyz>\n            <izz>2.3541666666666672e-05</izz>\n          </inertia>\n        </inertial>\n        <collision name=\"collision\">\n          <geometry>\n            <box>\n              <size>0.04 0.04 0.04</size>\n            </box>\n          </geometry>\n          <surface>\n            <contact>\n              <poissons_ratio>0.347</poissons_ratio>\n              <elastic_modulus>8.8e+09</elastic_modulus>\n              <ode>\n                <kp>100000</kp>\n                <kd>1</kd>\n                <max_vel>1.0</max_vel>\n                <min_depth>0.001</min_depth>\n              </ode>\n            </contact>\n            <friction>\n              <torsional>\n                <coefficient>1.0</coefficient>\n                <use_patch_radius>0</use_patch_radius>\n                <surface_radius>0.05</surface_radius>\n              </torsional>\n            </friction>\n          </surface>\n        </collision>\n        <visual name=\"visual\">\n          <geometry>\n            <box>\n              <size>0.04 0.04 0.04</size>\n            </box>\n          </geometry>\n          <material>\n            <script>\n              <uri>model://media/materials/scripts/gazebo.material</uri>\n              <name>Gazebo/Wood</name>\n            </script>\n          </material>\n        </visual>\n      </link>\n    </model>\n\n    <model name=\"cube2\">\n      <pose>0.4 0 0.775 0 0 0</pose>\n      <link name=\"link\">\n        <pose>0 0 0.02 0 0 0</pose>\n        <inertial>\n          <mass>0.0565</mass>\n          <inertia>\n            <ixx>2.3541666666666672e-05</ixx>\n            <ixy>0</ixy>\n            <ixz>0</ixz>\n            <iyy>2.3541666666666672e-05</iyy>\n            <iyz>0</iyz>\n            <izz>2.3541666666666672e-05</izz>\n          </inertia>\n        </inertial>\n        <collision name=\"collision\">\n          <geometry>\n            <box>\n              <size>0.04 0.04 0.04</size>\n            </box>\n          </geometry>\n          <surface>\n            <contact>\n              <poissons_ratio>0.347</poissons_ratio>\n              <elastic_modulus>8.8e+09</elastic_modulus>\n              <ode>\n                <kp>100000</kp>\n                <kd>1</kd>\n                <max_vel>1.0</max_vel>\n                <min_depth>0.001</min_depth>\n              </ode>\n            </contact>\n            <friction>\n              <torsional>\n                <coefficient>1.0</coefficient>\n                <use_patch_radius>0</use_patch_radius>\n                <surface_radius>0.05</surface_radius>\n              </torsional>\n            </friction>\n          </surface>\n        </collision>\n        <visual name=\"visual\">\n          <geometry>\n            <box>\n              <size>0.04 0.04 0.04</size>\n            </box>\n          </geometry>\n          <material>\n            <script>\n              <uri>model://media/materials/scripts/gazebo.material</uri>\n              <name>CeilingTiled</name>\n            </script>\n          </material>\n        </visual>\n      </link>\n    </model>\n\n    <model name=\"cube3\">\n      <pose>0.4 0.2 0.775 0 0 0</pose>\n      <link name=\"link\">\n        <pose>0 0 0.02 0 0 0</pose>\n        <inertial>\n          <mass>0.0565</mass>\n          <inertia>\n            <ixx>2.3541666666666672e-05</ixx>\n            <ixy>0</ixy>\n            <ixz>0</ixz>\n            <iyy>2.3541666666666672e-05</iyy>\n            <iyz>0</iyz>\n            <izz>2.3541666666666672e-05</izz>\n          </inertia>\n        </inertial>\n        <collision name=\"collision\">\n          <geometry>\n            <box>\n              <size>0.04 0.04 0.04</size>\n            </box>\n          </geometry>\n          <surface>\n            <contact>\n              <poissons_ratio>0.347</poissons_ratio>\n              <elastic_modulus>8.8e+09</elastic_modulus>\n              <ode>\n                <kp>100000</kp>\n                <kd>1</kd>\n                <max_vel>1.0</max_vel>\n                <min_depth>0.001</min_depth>\n              </ode>\n            </contact>\n            <friction>\n              <torsional>\n                <coefficient>1.0</coefficient>\n                <use_patch_radius>0</use_patch_radius>\n                <surface_radius>0.05</surface_radius>\n              </torsional>\n            </friction>\n          </surface>\n        </collision>\n        <visual name=\"visual\">\n          <geometry>\n            <box>\n              <size>0.04 0.04 0.04</size>\n            </box>\n          </geometry>\n          <material>\n            <script>\n              <uri>model://media/materials/scripts/gazebo.material</uri>\n              <name>Gazebo/WoodPallet</name>\n            </script>\n          </material>\n        </visual>\n      </link>\n    </model>\n\n  </world>\n\n</sdf>\n"
  },
  {
    "path": "ur_gripper_gazebo/worlds/ur3e.world",
    "content": "<?xml version=\"1.0\" ?>\n\n<sdf version=\"1.6\">\n\n  <world name=\"ur3e\">\n    \n    <gui>\n      <camera name='user_camera'>\n        <pose frame=''>0.846027 1.34839 1.39925 0 0.314 -2.35919</pose>\n        <view_controller>orbit</view_controller>\n        <projection_type>perspective</projection_type>\n      </camera>\n    </gui>\n\n    <gravity>0 0 -9.81</gravity>\n\n    <physics name=\"default_physics\" default=\"0\" type=\"ode\">\n      <max_step_size>0.001</max_step_size>\n      <real_time_factor>1</real_time_factor>\n      <real_time_update_rate>1000</real_time_update_rate>\n    </physics>\n\n    <!-- A gazebo links attacher -->\n    <plugin name=\"ros_link_attacher_plugin\" filename=\"libgazebo_ros_link_attacher.so\"/>\n\n    <scene>\n      <ambient>0.6 0.6 0.6 1</ambient>\n      <background>1.0 1.0 1.0 1</background>\n      <shadows>1</shadows>\n    </scene>\n\n    <!-- Light Source -->\n    <include>\n      <uri>model://sun</uri>\n    </include>\n\n    <!-- A ground plane -->\n    <include>\n      <uri>model://floor</uri>\n      <pose>0 0 0 0 0 0</pose>\n    </include>\n\n    <!-- A gazebo links attacher -->\n    <!-- <plugin name=\"ros_link_attacher_plugin\" -->\n    <!--         filename=\"libgazebo_ros_link_attacher.so\"/> -->\n\n    <!-- The robot base -->\n    <model name=\"ur3e_base\">\n      <include>\n        <uri>model://ur3e_base</uri>\n        <pose>0.0 0.48 0 0 0 0</pose>\n      </include>\n    </model>\n\n   </world>\n\n</sdf>\n"
  },
  {
    "path": "ur_hande_moveit_config/.setup_assistant",
    "content": "moveit_setup_assistant_config:\n  URDF:\n    package: ur_gripper_gazebo\n    relative_path: urdf/ur_gripper_hande.xacro\n    xacro_args: joint_limit_params:='$(find ur_description)/config/ur3e/joint_limits.yaml' \n                kinematics_params:='$(find ur_description)/config/ur3e/default_kinematics.yaml'\n                physical_params:='$(find ur_description)/config/ur3e/physical_parameters.yaml'\n                visual_params:='$(find ur_description)/config/ur3e/visual_parameters.yaml'\n                transmission_hw_interface:=hardware_interface/PositionJointInterface\n                safety_limits:=false\n                safety_pos_margin:=0.15\n                safety_k_position:=20\n                dual_arm:=true\n                grasp_plugin:=false\n  SRDF:\n    relative_path: config/ur_robot_gazebo.srdf\n  CONFIG:\n    author_name: Cristian Beltran\n    author_email: cristianbehe@gmail.com\n    generated_timestamp: 1634277939\n"
  },
  {
    "path": "ur_hande_moveit_config/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.1.3)\nproject(ur_hande_moveit_config)\n\nfind_package(catkin REQUIRED)\n\ncatkin_package()\n\ninstall(DIRECTORY launch DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}\n  PATTERN \"setup_assistant.launch\" EXCLUDE)\ninstall(DIRECTORY config DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION})\n"
  },
  {
    "path": "ur_hande_moveit_config/config/cartesian_limits.yaml",
    "content": "cartesian_limits:\n  max_trans_vel: 1\n  max_trans_acc: 2.25\n  max_trans_dec: -5\n  max_rot_vel: 1.57\n"
  },
  {
    "path": "ur_hande_moveit_config/config/chomp_planning.yaml",
    "content": "planning_time_limit: 10.0\nmax_iterations: 200\nmax_iterations_after_collision_free: 5\nsmoothness_cost_weight: 0.1\nobstacle_cost_weight: 1.0\nlearning_rate: 0.01\nsmoothness_cost_velocity: 0.0\nsmoothness_cost_acceleration: 1.0\nsmoothness_cost_jerk: 0.0\nridge_factor: 0.01\nuse_pseudo_inverse: false\npseudo_inverse_ridge_factor: 1e-4\njoint_update_limit: 0.1\ncollision_clearence: 0.2\ncollision_threshold: 0.07\nuse_stochastic_descent: true\nenable_failure_recovery: true\nmax_recovery_attempts: 5"
  },
  {
    "path": "ur_hande_moveit_config/config/fake_controllers.yaml",
    "content": "controller_list:\n  - name: fake_arm_controller\n    type: $(arg execution_type)\n    joints:\n      - shoulder_pan_joint\n      - shoulder_lift_joint\n      - elbow_joint\n      - wrist_1_joint\n      - wrist_2_joint\n      - wrist_3_joint\n  - name: fake_gripper_controller\n    type: $(arg execution_type)\n    joints:\n      - hande_left_finger_joint\ninitial:  # Define initial robot poses.\n#  - group: arm\n#    pose: home\n\n  []"
  },
  {
    "path": "ur_hande_moveit_config/config/joint_limits.yaml",
    "content": "# joint_limits.yaml allows the dynamics properties specified in the URDF to be overwritten or augmented as needed\n# Specific joint properties can be changed with the keys [max_position, min_position, max_velocity, max_acceleration]\n# Joint limits can be turned off with [has_velocity_limits, has_acceleration_limits]\njoint_limits:\n  elbow_joint:\n    has_velocity_limits: true\n    max_velocity: 3.14159265359\n    has_acceleration_limits: false\n    max_acceleration: 0\n  hande_left_finger_joint:\n    has_velocity_limits: true\n    max_velocity: 0.15\n    has_acceleration_limits: false\n    max_acceleration: 0\n  hande_right_finger_joint:\n    has_velocity_limits: true\n    max_velocity: 0.15\n    has_acceleration_limits: false\n    max_acceleration: 0\n  shoulder_lift_joint:\n    has_velocity_limits: true\n    max_velocity: 3.14159265359\n    has_acceleration_limits: false\n    max_acceleration: 0\n  shoulder_pan_joint:\n    has_velocity_limits: true\n    max_velocity: 3.14159265359\n    has_acceleration_limits: false\n    max_acceleration: 0\n  wrist_1_joint:\n    has_velocity_limits: true\n    max_velocity: 6.28318530718\n    has_acceleration_limits: false\n    max_acceleration: 0\n  wrist_2_joint:\n    has_velocity_limits: true\n    max_velocity: 6.28318530718\n    has_acceleration_limits: false\n    max_acceleration: 0\n  wrist_3_joint:\n    has_velocity_limits: true\n    max_velocity: 6.28318530718\n    has_acceleration_limits: false\n    max_acceleration: 0"
  },
  {
    "path": "ur_hande_moveit_config/config/kinematics.yaml",
    "content": "arm:\n  kinematics_solver: trac_ik_kinematics_plugin/TRAC_IKKinematicsPlugin\n  kinematics_solver_search_resolution: 0.005\n  kinematics_solver_timeout: 0.005"
  },
  {
    "path": "ur_hande_moveit_config/config/ompl_planning.yaml",
    "content": "planner_configs:\n  SBL:\n    type: geometric::SBL\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n  EST:\n    type: geometric::EST\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0 setup()\n    goal_bias: 0.05  # When close to goal select goal, with this probability. default: 0.05\n  LBKPIECE:\n    type: geometric::LBKPIECE\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n    border_fraction: 0.9  # Fraction of time focused on boarder default: 0.9\n    min_valid_path_fraction: 0.5  # Accept partially valid moves above fraction. default: 0.5\n  BKPIECE:\n    type: geometric::BKPIECE\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n    border_fraction: 0.9  # Fraction of time focused on boarder default: 0.9\n    failed_expansion_score_factor: 0.5  # When extending motion fails, scale score by factor. default: 0.5\n    min_valid_path_fraction: 0.5  # Accept partially valid moves above fraction. default: 0.5\n  KPIECE:\n    type: geometric::KPIECE\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n    goal_bias: 0.05  # When close to goal select goal, with this probability. default: 0.05\n    border_fraction: 0.9  # Fraction of time focused on boarder default: 0.9 (0.0,1.]\n    failed_expansion_score_factor: 0.5  # When extending motion fails, scale score by factor. default: 0.5\n    min_valid_path_fraction: 0.5  # Accept partially valid moves above fraction. default: 0.5\n  RRT:\n    type: geometric::RRT\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n    goal_bias: 0.05  # When close to goal select goal, with this probability? default: 0.05\n  RRTConnect:\n    type: geometric::RRTConnect\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n  RRTstar:\n    type: geometric::RRTstar\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n    goal_bias: 0.05  # When close to goal select goal, with this probability? default: 0.05\n    delay_collision_checking: 1  # Stop collision checking as soon as C-free parent found. default 1\n  TRRT:\n    type: geometric::TRRT\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n    goal_bias: 0.05  # When close to goal select goal, with this probability? default: 0.05\n    max_states_failed: 10  # when to start increasing temp. default: 10\n    temp_change_factor: 2.0  # how much to increase or decrease temp. default: 2.0\n    min_temperature: 10e-10  # lower limit of temp change. default: 10e-10\n    init_temperature: 10e-6  # initial temperature. default: 10e-6\n    frountier_threshold: 0.0  # dist new state to nearest neighbor to disqualify as frontier. default: 0.0 set in setup()\n    frountierNodeRatio: 0.1  # 1/10, or 1 nonfrontier for every 10 frontier. default: 0.1\n    k_constant: 0.0  # value used to normalize expresssion. default: 0.0 set in setup()\n  PRM:\n    type: geometric::PRM\n    max_nearest_neighbors: 10  # use k nearest neighbors. default: 10\n  PRMstar:\n    type: geometric::PRMstar\n  FMT:\n    type: geometric::FMT\n    num_samples: 1000  # number of states that the planner should sample. default: 1000\n    radius_multiplier: 1.1  # multiplier used for the nearest neighbors search radius. default: 1.1\n    nearest_k: 1  # use Knearest strategy. default: 1\n    cache_cc: 1  # use collision checking cache. default: 1\n    heuristics: 0  # activate cost to go heuristics. default: 0\n    extended_fmt: 1  # activate the extended FMT*: adding new samples if planner does not finish successfully. default: 1\n  BFMT:\n    type: geometric::BFMT\n    num_samples: 1000  # number of states that the planner should sample. default: 1000\n    radius_multiplier: 1.0  # multiplier used for the nearest neighbors search radius. default: 1.0\n    nearest_k: 1  # use the Knearest strategy. default: 1\n    balanced: 0  # exploration strategy: balanced true expands one tree every iteration. False will select the tree with lowest maximum cost to go. default: 1\n    optimality: 1  # termination strategy: optimality true finishes when the best possible path is found. Otherwise, the algorithm will finish when the first feasible path is found. default: 1\n    heuristics: 1  # activates cost to go heuristics. default: 1\n    cache_cc: 1  # use the collision checking cache. default: 1\n    extended_fmt: 1  # Activates the extended FMT*: adding new samples if planner does not finish successfully. default: 1\n  PDST:\n    type: geometric::PDST\n  STRIDE:\n    type: geometric::STRIDE\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n    goal_bias: 0.05  # When close to goal select goal, with this probability. default: 0.05\n    use_projected_distance: 0  # whether nearest neighbors are computed based on distances in a projection of the state rather distances in the state space itself. default: 0\n    degree: 16  # desired degree of a node in the Geometric Near-neightbor Access Tree (GNAT). default: 16\n    max_degree: 18  # max degree of a node in the GNAT. default: 12\n    min_degree: 12  # min degree of a node in the GNAT. default: 12\n    max_pts_per_leaf: 6  # max points per leaf in the GNAT. default: 6\n    estimated_dimension: 0.0  # estimated dimension of the free space. default: 0.0\n    min_valid_path_fraction: 0.2  # Accept partially valid moves above fraction. default: 0.2\n  BiTRRT:\n    type: geometric::BiTRRT\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n    temp_change_factor: 0.1  # how much to increase or decrease temp. default: 0.1\n    init_temperature: 100  # initial temperature. default: 100\n    frountier_threshold: 0.0  # dist new state to nearest neighbor to disqualify as frontier. default: 0.0 set in setup()\n    frountier_node_ratio: 0.1  # 1/10, or 1 nonfrontier for every 10 frontier. default: 0.1\n    cost_threshold: 1e300  # the cost threshold. Any motion cost that is not better will not be expanded. default: inf\n  LBTRRT:\n    type: geometric::LBTRRT\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n    goal_bias: 0.05  # When close to goal select goal, with this probability. default: 0.05\n    epsilon: 0.4  # optimality approximation factor. default: 0.4\n  BiEST:\n    type: geometric::BiEST\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n  ProjEST:\n    type: geometric::ProjEST\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n    goal_bias: 0.05  # When close to goal select goal, with this probability. default: 0.05\n  LazyPRM:\n    type: geometric::LazyPRM\n    range: 0.0  # Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()\n  LazyPRMstar:\n    type: geometric::LazyPRMstar\n  SPARS:\n    type: geometric::SPARS\n    stretch_factor: 3.0  # roadmap spanner stretch factor. multiplicative upper bound on path quality. It does not make sense to make this parameter more than 3. default: 3.0\n    sparse_delta_fraction: 0.25  # delta fraction for connection distance. This value represents the visibility range of sparse samples. default: 0.25\n    dense_delta_fraction: 0.001  # delta fraction for interface detection. default: 0.001\n    max_failures: 1000  # maximum consecutive failure limit. default: 1000\n  SPARStwo:\n    type: geometric::SPARStwo\n    stretch_factor: 3.0  # roadmap spanner stretch factor. multiplicative upper bound on path quality. It does not make sense to make this parameter more than 3. default: 3.0\n    sparse_delta_fraction: 0.25  # delta fraction for connection distance. This value represents the visibility range of sparse samples. default: 0.25\n    dense_delta_fraction: 0.001  # delta fraction for interface detection. default: 0.001\n    max_failures: 5000  # maximum consecutive failure limit. default: 5000\narm:\n  default_planner_config: RRT\n  planner_configs:\n    - SBL\n    - EST\n    - LBKPIECE\n    - BKPIECE\n    - KPIECE\n    - RRT\n    - RRTConnect\n    - RRTstar\n    - TRRT\n    - PRM\n    - PRMstar\n    - FMT\n    - BFMT\n    - PDST\n    - STRIDE\n    - BiTRRT\n    - LBTRRT\n    - BiEST\n    - ProjEST\n    - LazyPRM\n    - LazyPRMstar\n    - SPARS\n    - SPARStwo\ngripper:\n  planner_configs:\n    - SBL\n    - EST\n    - LBKPIECE\n    - BKPIECE\n    - KPIECE\n    - RRT\n    - RRTConnect\n    - RRTstar\n    - TRRT\n    - PRM\n    - PRMstar\n    - FMT\n    - BFMT\n    - PDST\n    - STRIDE\n    - BiTRRT\n    - LBTRRT\n    - BiEST\n    - ProjEST\n    - LazyPRM\n    - LazyPRMstar\n    - SPARS\n    - SPARStwo\n"
  },
  {
    "path": "ur_hande_moveit_config/config/ros_controllers.yaml",
    "content": "# Simulation settings for using moveit_sim_controllers\nmoveit_sim_hw_interface:\n  joint_model_group: todo_group_name\n  joint_model_group_pose: todo_state_name\n# Settings for ros_control_boilerplate control loop\ngeneric_hw_control_loop:\n  loop_hz: 300\n  cycle_time_error_threshold: 0.01\n# Settings for ros_control hardware interface\nhardware_interface:\n  joints:\n    - shoulder_pan_joint\n    - shoulder_lift_joint\n    - elbow_joint\n    - wrist_1_joint\n    - wrist_2_joint\n    - wrist_3_joint\n    - hande_left_finger_joint\n  sim_control_mode: 1  # 0: position, 1: velocity\n# Publish all joint states\n# Creates the /joint_states topic necessary in ROS\njoint_state_controller:\n  type: joint_state_controller/JointStateController\n  publish_rate: 50\ncontroller_list:\n  - name: scaled_pos_joint_traj_controller\n    action_ns: follow_joint_trajectory\n    default: True\n    type: FollowJointTrajectory\n    joints:\n      - shoulder_pan_joint\n      - shoulder_lift_joint\n      - elbow_joint\n      - wrist_1_joint\n      - wrist_2_joint\n      - wrist_3_joint\n  - name: gripper_controller\n    action_ns: gripper_cmd\n    default: True\n    type: GripperCommand\n    joints:\n      - hande_left_finger_joint"
  },
  {
    "path": "ur_hande_moveit_config/config/sensors_3d.yaml",
    "content": "# The name of this file shouldn't be changed, or else the Setup Assistant won't detect it\nsensors:\n  - {}"
  },
  {
    "path": "ur_hande_moveit_config/config/ur3e.urdf",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<!-- =================================================================================== -->\n<!-- |    This document was autogenerated by xacro from /root/ros_ws/src/ros_ur3/ur_gripper_gazebo/urdf/ur_gripper_hande.xacro | -->\n<!-- |    EDITING THIS FILE BY HAND IS NOT RECOMMENDED                                 | -->\n<!-- =================================================================================== -->\n<robot name=\"ur_robot_gazebo\">\n    <!--\n    This is a top-level xacro instantiating the Gazebo-specific version of the\n    'ur_robot' macro (ie: 'ur_robot_gazebo') and passing it values for all its\n    required arguments.\n    This file should be considered the Gazebo-specific variant of the file\n    with the same name in the ur_description package. It accepts the same\n    arguments, but instead of configuring everything for a real robot, will\n    generate a Gazebo-compatible URDF with a ros_control hardware_interface\n    attached to it.\n    Only use this top-level xacro if you plan on spawning the robot in Gazebo\n    'by itself', without any gripper or any other geometry attached.\n    If you need to attach an end-effector, camera or need to integrate the\n    robot into a larger workcell and want to spawn that as a single entity in\n    Gazebo, DO NOT EDIT THIS FILE.\n    Instead: create a new top-level xacro, give it a proper name, include the\n    required '.xacro' files, instantiate the models (ie: call the macros) and\n    connect everything by adding the appropriate joints.\n  -->\n    <!--\n    Main xacro macro definition of the \"Gazebo robot\" model.\n\n    This wraps the model of the real robot and adds all elements and parameters\n    required by Gazebo.\n\n    It also adds the gazebo_ros_control plugin.\n\n    NOTE: this is NOT a URDF. It cannot directly be loaded by consumers\n    expecting a flattened '.urdf' file. See the top-level '.xacro' for that\n    (but note: that .xacro must still be processed by the xacro command).\n\n    For use in '.launch' files: use one of the 'load_urX.launch' convenience\n    launch files.\n\n    NOTE: this Gazebo model makes use of the same set of parameter files as the\n    main xacro macro (in ur_description). It is therefor possible to use the\n    kinematic calibration exported from a REAL UR robot. Please refer to the\n    ur_macro.xacro in ur_description for more information about this.\n\n    Main author of the migration to yaml configs: Ludovic Delval.\n\n    Contributors to previous versions (in no particular order):\n\n     - Felix Messmer\n     - Kelsey Hawkins\n     - Shaun Edwards\n     - Alexander Bubeck\n     - Nadia Hammoudeh Garcia\n     - G. vd. Hoorn\n     - Dave Niewinski\n     - Andy Zelenak\n     - Miguel Prada\n     - Mathias Luedtke\n     - Hans-Joachim Krauch\n     - Felix Exner\n  -->\n    <!--\n    Base UR robot series xacro macro.\n\n    NOTE: this is NOT a URDF. It cannot directly be loaded by consumers\n    expecting a flattened '.urdf' file. See the top-level '.xacro' for that\n    (but note: that .xacro must still be processed by the xacro command).\n\n    For use in '.launch' files: use one of the 'load_urX.launch' convenience\n    launch files.\n\n    This file models the base kinematic chain of a UR robot, which then gets\n    parameterised by various configuration files to convert it into a UR3(e),\n    UR5(e), UR10(e) or UR16e.\n\n    NOTE: the default kinematic parameters (ie: link lengths, frame locations,\n    offets, etc) do not correspond to any particular robot. They are defaults\n    only. There WILL be non-zero offsets between the Forward Kinematics results\n    in TF (ie: robot_state_publisher) and the values reported by the Teach\n    Pendant.\n\n    For accurate (and robot-specific) transforms, the 'kinematics_parameters_file'\n    parameter MUST point to a .yaml file containing the appropriate values for\n    the targetted robot.\n\n    If using the UniversalRobots/Universal_Robots_ROS_Driver, follow the steps\n    described in the readme of that repository to extract the kinematic\n    calibration from the controller and generate the required .yaml file.\n\n    Main author of the migration to yaml configs: Ludovic Delval.\n\n    Contributors to previous versions (in no particular order):\n\n     - Felix Messmer\n     - Kelsey Hawkins\n     - Wim Meeussen\n     - Shaun Edwards\n     - Nadia Hammoudeh Garcia\n     - Dave Hershberger\n     - G. vd. Hoorn\n     - Philip Long\n     - Dave Coleman\n     - Miguel Prada\n     - Mathias Luedtke\n     - Marcel Schnirring\n     - Felix von Drigalski\n     - Felix Exner\n     - Jimmy Da Silva\n     - Ajit Krisshna N L\n     - Muhammad Asif Rana\n  -->\n    <!--\n    NOTE: the macro defined in this file is NOT part of the public API of this\n          package. Users CANNOT rely on this file being available, or stored in\n          this location. Nor can they rely on the existence of the macro.\n  -->\n    <transmission name=\"shoulder_pan_trans\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"shoulder_pan_joint\">\n            <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"shoulder_pan_motor\">\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <transmission name=\"shoulder_lift_trans\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"shoulder_lift_joint\">\n            <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"shoulder_lift_motor\">\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <transmission name=\"elbow_trans\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"elbow_joint\">\n            <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"elbow_motor\">\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <transmission name=\"wrist_1_trans\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"wrist_1_joint\">\n            <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"wrist_1_motor\">\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <transmission name=\"wrist_2_trans\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"wrist_2_joint\">\n            <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"wrist_2_motor\">\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <transmission name=\"wrist_3_trans\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"wrist_3_joint\">\n            <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"wrist_3_motor\">\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <!-- links: main serial chain -->\n    <link name=\"base_link\" />\n    <link name=\"base_link_inertia\">\n        <visual>\n            <origin rpy=\"0 0 3.14159265359\" xyz=\"0 0 0\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/visual/base.dae\" />\n            </geometry>\n            <material name=\"LightGrey\">\n                <color rgba=\"0.7 0.7 0.7 1.0\" />\n            </material>\n        </visual>\n        <collision>\n            <origin rpy=\"0 0 3.14159265359\" xyz=\"0 0 0\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/collision/base.stl\" />\n            </geometry>\n        </collision>\n        \n<inertial>\n            <mass value=\"2.0\" />\n            <origin rpy=\"0 0 0\" xyz=\"0 0 0\" />\n            <inertia ixx=\"0.0030531654454\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.0030531654454\" iyz=\"0.0\" izz=\"0.005625\" />\n        </inertial>\n\n    </link>\n    <link name=\"shoulder_link\">\n        <visual>\n            <origin rpy=\"0 0 3.14159265359\" xyz=\"0 0 0\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/visual/shoulder.dae\" />\n            </geometry>\n            <material name=\"LightGrey\">\n                <color rgba=\"0.7 0.7 0.7 1.0\" />\n            </material>\n        </visual>\n        <collision>\n            <origin rpy=\"0 0 3.14159265359\" xyz=\"0 0 0\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/collision/shoulder.stl\" />\n            </geometry>\n        </collision>\n        \n<inertial>\n            <mass value=\"2.0\" />\n            <origin rpy=\"0 0 0\" xyz=\"0 0 0\" />\n            <inertia ixx=\"0.0080931634294\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.0080931634294\" iyz=\"0.0\" izz=\"0.005625\" />\n        </inertial>\n\n    </link>\n    <link name=\"upper_arm_link\">\n        <visual>\n            <origin rpy=\"1.57079632679 0 -1.57079632679\" xyz=\"0 0 0.12\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/visual/upperarm.dae\" />\n            </geometry>\n            <material name=\"LightGrey\">\n                <color rgba=\"0.7 0.7 0.7 1.0\" />\n            </material>\n        </visual>\n        <collision>\n            <origin rpy=\"1.57079632679 0 -1.57079632679\" xyz=\"0 0 0.12\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/collision/upperarm.stl\" />\n            </geometry>\n        </collision>\n        \n<inertial>\n            <mass value=\"3.42\" />\n            <origin rpy=\"0 1.57079632679 0\" xyz=\"-0.121825 0.0 0.12\" />\n            <inertia ixx=\"0.0217284832211\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.0217284832211\" iyz=\"0.0\" izz=\"0.00961875\" />\n        </inertial>\n\n    </link>\n    <link name=\"forearm_link\">\n        <visual>\n            <origin rpy=\"1.57079632679 0 -1.57079632679\" xyz=\"0 0 0.027\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/visual/forearm.dae\" />\n            </geometry>\n            <material name=\"LightGrey\">\n                <color rgba=\"0.7 0.7 0.7 1.0\" />\n            </material>\n        </visual>\n        <collision>\n            <origin rpy=\"1.57079632679 0 -1.57079632679\" xyz=\"0 0 0.027\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/collision/forearm.stl\" />\n            </geometry>\n        </collision>\n        \n<inertial>\n            <mass value=\"1.26\" />\n            <origin rpy=\"0 1.57079632679 0\" xyz=\"-0.1066 0.0 0.027\" />\n            <inertia ixx=\"0.00654456758217\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.00654456758217\" iyz=\"0.0\" izz=\"0.00354375\" />\n        </inertial>\n\n    </link>\n    <link name=\"wrist_1_link\">\n        <visual>\n            <!-- TODO: Move this to a parameter -->\n            <origin rpy=\"1.57079632679 0 0\" xyz=\"0 0 -0.104\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/visual/wrist1.dae\" />\n            </geometry>\n            <material name=\"LightGrey\">\n                <color rgba=\"0.7 0.7 0.7 1.0\" />\n            </material>\n        </visual>\n        <collision>\n            <origin rpy=\"1.57079632679 0 0\" xyz=\"0 0 -0.104\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/collision/wrist1.stl\" />\n            </geometry>\n        </collision>\n        \n<inertial>\n            <mass value=\"0.8\" />\n            <origin rpy=\"0 0 0\" xyz=\"0 0 0\" />\n            <inertia ixx=\"0.002084999166\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.002084999166\" iyz=\"0.0\" izz=\"0.00225\" />\n        </inertial>\n\n    </link>\n    <link name=\"wrist_2_link\">\n        <visual>\n            <origin rpy=\"0 0 0\" xyz=\"0 0 -0.08535\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/visual/wrist2.dae\" />\n            </geometry>\n            <material name=\"LightGrey\">\n                <color rgba=\"0.7 0.7 0.7 1.0\" />\n            </material>\n        </visual>\n        <collision>\n            <origin rpy=\"0 0 0\" xyz=\"0 0 -0.08535\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/collision/wrist2.stl\" />\n            </geometry>\n        </collision>\n        \n<inertial>\n            <mass value=\"0.8\" />\n            <origin rpy=\"0 0 0\" xyz=\"0 0 0\" />\n            <inertia ixx=\"0.002084999166\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.002084999166\" iyz=\"0.0\" izz=\"0.00225\" />\n        </inertial>\n\n    </link>\n    <link name=\"wrist_3_link\">\n        <visual>\n            <origin rpy=\"1.57079632679 0 0\" xyz=\"0 0 -0.0921\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/visual/wrist3.dae\" />\n            </geometry>\n            <material name=\"LightGrey\">\n                <color rgba=\"0.7 0.7 0.7 1.0\" />\n            </material>\n        </visual>\n        <collision>\n            <origin rpy=\"1.57079632679 0 0\" xyz=\"0 0 -0.0921\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/collision/wrist3.stl\" />\n            </geometry>\n        </collision>\n        \n<inertial>\n            <mass value=\"0.35\" />\n            <origin rpy=\"0 0 0\" xyz=\"0.0 0.0 -0.02\" />\n            <inertia ixx=\"0.00013626661216\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.00013626661216\" iyz=\"0.0\" izz=\"0.0001792\" />\n        </inertial>\n\n    </link>\n    <!-- joints: main serial chain -->\n    <joint name=\"base_link-base_link_inertia\" type=\"fixed\">\n        <parent link=\"base_link\" />\n        <child link=\"base_link_inertia\" />\n        <!-- 'base_link' is REP-103 aligned (so X+ forward), while the internal\n           frames of the robot/controller have X+ pointing backwards.\n           Use the joint between 'base_link' and 'base_link_inertia' (a dummy\n           link/frame) to introduce the necessary rotation over Z (of pi rad).\n      -->\n        <origin rpy=\"0 0 3.14159265359\" xyz=\"0 0 0\" />\n    </joint>\n    <joint name=\"shoulder_pan_joint\" type=\"revolute\">\n        <parent link=\"base_link_inertia\" />\n        <child link=\"shoulder_link\" />\n        <origin rpy=\"0 0 0\" xyz=\"0 0 0.15185\" />\n        <axis xyz=\"0 0 1\" />\n        <limit effort=\"56.0\" lower=\"-6.28318530718\" upper=\"6.28318530718\" velocity=\"3.14159265359\" />\n        <dynamics damping=\"0\" friction=\"0\" />\n    </joint>\n    <joint name=\"shoulder_lift_joint\" type=\"revolute\">\n        <parent link=\"shoulder_link\" />\n        <child link=\"upper_arm_link\" />\n        <origin rpy=\"1.570796327 0 0\" xyz=\"0 0 0\" />\n        <axis xyz=\"0 0 1\" />\n        <limit effort=\"56.0\" lower=\"-6.28318530718\" upper=\"6.28318530718\" velocity=\"3.14159265359\" />\n        <dynamics damping=\"0\" friction=\"0\" />\n    </joint>\n    <joint name=\"elbow_joint\" type=\"revolute\">\n        <parent link=\"upper_arm_link\" />\n        <child link=\"forearm_link\" />\n        <origin rpy=\"0 0 0\" xyz=\"-0.24355 0 0\" />\n        <axis xyz=\"0 0 1\" />\n        <limit effort=\"28.0\" lower=\"-3.14159265359\" upper=\"3.14159265359\" velocity=\"3.14159265359\" />\n        <dynamics damping=\"0\" friction=\"0\" />\n    </joint>\n    <joint name=\"wrist_1_joint\" type=\"revolute\">\n        <parent link=\"forearm_link\" />\n        <child link=\"wrist_1_link\" />\n        <origin rpy=\"0 0 0\" xyz=\"-0.2132 0 0.13105\" />\n        <axis xyz=\"0 0 1\" />\n        <limit effort=\"12.0\" lower=\"-6.28318530718\" upper=\"6.28318530718\" velocity=\"6.28318530718\" />\n        <dynamics damping=\"0\" friction=\"0\" />\n    </joint>\n    <joint name=\"wrist_2_joint\" type=\"revolute\">\n        <parent link=\"wrist_1_link\" />\n        <child link=\"wrist_2_link\" />\n        <origin rpy=\"1.570796327 0 0\" xyz=\"0 -0.08535 -1.75055776238e-11\" />\n        <axis xyz=\"0 0 1\" />\n        <limit effort=\"12.0\" lower=\"-6.28318530718\" upper=\"6.28318530718\" velocity=\"6.28318530718\" />\n        <dynamics damping=\"0\" friction=\"0\" />\n    </joint>\n    <joint name=\"wrist_3_joint\" type=\"revolute\">\n        <parent link=\"wrist_2_link\" />\n        <child link=\"wrist_3_link\" />\n        <origin rpy=\"1.57079632659 3.14159265359 3.14159265359\" xyz=\"0 0.0921 -1.88900257663e-11\" />\n        <axis xyz=\"0 0 1\" />\n        <limit effort=\"12.0\" lower=\"-6.28318530718\" upper=\"6.28318530718\" velocity=\"6.28318530718\" />\n        <dynamics damping=\"0\" friction=\"0\" />\n    </joint>\n    <!-- ROS-Industrial 'base' frame: base_link to UR 'Base' Coordinates transform -->\n    <link name=\"base\" />\n    <joint name=\"base_link-base_fixed_joint\" type=\"fixed\">\n        <!-- Note the rotation over Z of pi radians: as base_link is REP-103\n           aligned (ie: has X+ forward, Y+ left and Z+ up), this is needed\n           to correctly align 'base' with the 'Base' coordinate system of\n           the UR controller.\n      -->\n        <origin rpy=\"0 0 3.14159265359\" xyz=\"0 0 0\" />\n        <parent link=\"base_link\" />\n        <child link=\"base\" />\n    </joint>\n    <!-- ROS-Industrial 'flange' frame: attachment point for EEF models -->\n    <link name=\"flange\" />\n    <joint name=\"wrist_3-flange\" type=\"fixed\">\n        <parent link=\"wrist_3_link\" />\n        <child link=\"flange\" />\n        <origin rpy=\"0 -1.57079632679 -1.57079632679\" xyz=\"0 0 0\" />\n    </joint>\n    <!-- ROS-Industrial 'tool0' frame: all-zeros tool frame -->\n    <link name=\"tool0\" />\n    <joint name=\"flange-tool0\" type=\"fixed\">\n        <!-- default toolframe: X+ left, Y+ up, Z+ front -->\n        <origin rpy=\"1.57079632679 0 1.57079632679\" xyz=\"0 0 0\" />\n        <parent link=\"flange\" />\n        <child link=\"tool0\" />\n    </joint>\n    <!-- Configure self collision properties per link -->\n    <gazebo reference=\"shoulder_link\">\n        <selfCollide>true</selfCollide>\n    </gazebo>\n    <gazebo reference=\"upper_arm_link\">\n        <selfCollide>true</selfCollide>\n    </gazebo>\n    <gazebo reference=\"forearm_link\">\n        <selfCollide>true</selfCollide>\n    </gazebo>\n    <gazebo reference=\"wrist_1_link\">\n        <selfCollide>true</selfCollide>\n    </gazebo>\n    <gazebo reference=\"wrist_3_link\">\n        <selfCollide>true</selfCollide>\n    </gazebo>\n    <gazebo reference=\"wrist_2_link\">\n        <selfCollide>true</selfCollide>\n    </gazebo>\n    <gazebo reference=\"ee_link\">\n        <selfCollide>true</selfCollide>\n    </gazebo>\n    <!--\n      Inject Gazebo ROS Control plugin, which allows us to use ros_control\n      controllers to control the virtual robot hw.\n    -->\n    <gazebo>\n        <plugin filename=\"libgazebo_ros_control.so\" name=\"ros_control\">\n            <!--robotNamespace>/</robotNamespace-->\n            <!--robotSimType>gazebo_ros_control/DefaultRobotHWSim</robotSimType-->\n        </plugin>\n    </gazebo>\n    <!--\n    Attach the Gazebo model to Gazebo's world frame.\n    Note: if you're looking to integrate a UR into a larger scene and need\n    to add EEFs or other parts, DO NOT change this file or the 'world' link\n    here. Create a NEW xacro instead and decide whether you need to add\n    a 'world' link there.\n  -->\n    <link name=\"world\" />\n    <joint name=\"world_joint\" type=\"fixed\">\n        <parent link=\"world\" />\n        <child link=\"base_link\" />\n        <origin rpy=\"0 0 0\" xyz=\"0 0 0\" />\n    </joint>\n    <!-- Gripper -->\n    <!--\n  Author: Cristian Beltran\n-->\n    <!-- Robotiq Coupler -->\n    <!--  + Height added by the coupler: 8mm -->\n    <!--  + Reference frame: at the middle (4mm) -->\n    <link name=\"robotiq_coupler\">\n        <visual>\n            <geometry>\n                <mesh filename=\"package://robotiq_description/meshes/robotiq_85_coupler.stl\" />\n            </geometry>\n            <material name=\"flat_black\">\n                <color rgba=\"0 0 0 1.0\"/>\n            </material>\n        </visual>\n        <collision>\n            <geometry>\n                <mesh filename=\"package://robotiq_description/meshes/robotiq_85_coupler.stl\" />\n            </geometry>\n        </collision>\n        \n<inertial>\n            <origin rpy=\"0 0 0\" xyz=\"2.073e-05   1.45286e-03  -1.1049e-03\" />\n            <mass value=\"0.168\" />\n            <inertia ixx=\"6.69695624e-05\" ixy=\"5.21511788e-09\" ixz=\"-2.74383009e-08\" iyy=\"7.85088161e-05\" iyz=\"5.41105193e-07\" izz=\"1.41819717e-04\" />\n        </inertial>\n\n    </link>\n    <joint name=\"robotiq_coupler_joint\" type=\"fixed\">\n        <origin rpy=\"0 0 -1.57079632679\" xyz=\"0 0 0.004\" />\n        <parent link=\"tool0\" />\n        <child link=\"robotiq_coupler\" />\n    </joint>\n    <gazebo reference=\"robotiq_coupler\">\n        <mu1>0.9</mu1>\n        <mu2>0.9</mu2>\n        <material>Gazebo/FlatBlack</material>\n    </gazebo>\n    <!-- Equivalent to the OpenRAVE manipulator denso_robotiq_hande_gripper -->\n    <link name=\"gripper_tip_link\" />\n    <joint name=\"manipulator_dummy_joint\" type=\"fixed\">\n        <origin rpy=\"0 0 0\" xyz=\"0 0 0.1441\" />\n        <parent link=\"robotiq_coupler\" />\n        <child link=\"gripper_tip_link\" />\n    </joint>\n    <joint name=\"robotiq_hande_base_joint\" type=\"fixed\">\n        <parent link=\"robotiq_coupler\" />\n        <child link=\"hand_e_link\" />\n        <origin rpy=\"0 0 -1.57079632679\" xyz=\"0 0 0.004\" />\n    </joint>\n    <link name=\"hand_e_link\">\n        \n<inertial>\n            <origin rpy=\"0 0 0\" xyz=\"0 0 0.04607\" />\n            <mass value=\"0.86387\" />\n            <inertia ixx=\"1017560E-9\" ixy=\"0\" ixz=\"2235E-9\" iyy=\"1028041E-9\" iyz=\"0\" izz=\"489810E-9\" />\n        </inertial>\n\n        <visual>\n            <origin rpy=\"0 0 0\" xyz=\"0 0 0\" />\n            <geometry>\n                <mesh filename=\"package://robotiq_description/meshes/hande/hand-e.dae\" scale=\"1.0 1.0 1.0\" />\n            </geometry>\n            <material name=\"Dark\">\n                <color rgba=\".1 0.1 0.1 1.0\" />\n            </material>\n        </visual>\n        <collision>\n            <origin rpy=\"0 0 0\" xyz=\"0 0 0\" />\n            <geometry>\n                <mesh filename=\"package://robotiq_description/meshes/hande/hand-e-collision.dae\" scale=\"1.0 1.0 1.0\" />\n            </geometry>\n        </collision>\n    </link>\n    <link name=\"hande_left_finger\">\n        \n<inertial>\n            <origin rpy=\"0 0 0\" xyz=\"0.02262 -0.00759 0.00738\" />\n            <mass value=\"0.03804\" />\n            <inertia ixx=\"13567E-9\" ixy=\"1849E-9\" ixz=\"3622E-9\" iyy=\"15784E-9\" iyz=\"3616E-9\" izz=\"7478E-9\" />\n        </inertial>\n\n        <visual>\n            <origin rpy=\"0 0 0\" xyz=\"0 0 0\" />\n            <geometry>\n                <mesh filename=\"package://robotiq_description/meshes/hande/finger_1.dae\" scale=\"1.0 1.0 1.0\" />\n            </geometry>\n            <material name=\"DarkGray\">\n                <color rgba=\".4 0.4 0.4 1.0\" />\n            </material>\n        </visual>\n        <collision>\n            <origin rpy=\"0 0 0\" xyz=\"0 0 0\" />\n            <geometry>\n                <mesh filename=\"package://robotiq_description/meshes/hande/finger_1-collision.dae\" scale=\"1.0 1.0 1.0\" />\n            </geometry>\n        </collision>\n    </link>\n    <link name=\"hande_right_finger\">\n        \n<inertial>\n            <origin rpy=\"0 0 0\" xyz=\"-0.02262 0.00759 0.00738\" />\n            <mass value=\"0.03804\" />\n            <inertia ixx=\"13567E-9\" ixy=\"1849E-9\" ixz=\"-3622E-9\" iyy=\"15784E-9\" iyz=\"-3616E-9\" izz=\"7478E-9\" />\n        </inertial>\n\n        <visual>\n            <origin rpy=\"0 0 0\" xyz=\"0 0 0\" />\n            <geometry>\n                <mesh filename=\"package://robotiq_description/meshes/hande/finger_2.dae\" scale=\"1.0 1.0 1.0\" />\n            </geometry>\n            <material name=\"DarkGray\">\n                <color rgba=\".4 0.4 0.4 1.0\" />\n            </material>\n        </visual>\n        <collision>\n            <origin rpy=\"0 0 0\" xyz=\"0 0 0\" />\n            <geometry>\n                <mesh filename=\"package://robotiq_description/meshes/hande/finger_2-collision.dae\" scale=\"1.0 1.0 1.0\" />\n            </geometry>\n        </collision>\n    </link>\n    <gazebo reference=\"hand_e_link\">\n        <material>Gazebo/FlatBlack</material>\n    </gazebo>\n    <gazebo reference=\"hande_right_finger\">\n        <material>Gazebo/Grey</material>\n    </gazebo>\n    <gazebo reference=\"hande_left_finger\">\n        <material>Gazebo/Grey</material>\n    </gazebo>\n    <joint name=\"hande_left_finger_joint\" type=\"prismatic\">\n        <origin rpy=\"0 0 0\" xyz=\"0 0 0.099\" />\n        <parent link=\"hand_e_link\" />\n        <child link=\"hande_left_finger\" />\n        <axis xyz=\"-1 0 0\" />\n        <limit effort=\"130\" lower=\"0\" upper=\"0.025\" velocity=\"0.15\" />\n    </joint>\n    <joint name=\"hande_right_finger_joint\" type=\"prismatic\">\n        <origin rpy=\"0 0 0\" xyz=\"0 0 0.099\" />\n        <parent link=\"hand_e_link\" />\n        <child link=\"hande_right_finger\" />\n        <axis xyz=\"1 0 0\" />\n        <limit effort=\"130\" lower=\"0\" upper=\"0.025\" velocity=\"0.15\" />\n        <mimic joint=\"hande_left_finger_joint\" multiplier=\"1\" offset=\"0\" />\n    </joint>\n    <!-- Improve grasping physics -->\n    <gazebo reference=\"hande_left_finger\">\n        <kp>1000000.0</kp>\n        <kd>1.0</kd>\n        <mu1>1.0</mu1>\n        <mu2>1.0</mu2>\n        <minDepth>0.001</minDepth>\n    </gazebo>\n    <gazebo reference=\"hande_right_finger\">\n        <kp>1000000.0</kp>\n        <kd>1.0</kd>\n        <mu1>1.0</mu1>\n        <mu2>1.0</mu2>\n        <minDepth>0.001</minDepth>\n    </gazebo>\n    <transmission name=\"hande_left_finger_trans\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"hande_left_finger_joint\">\n            <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"hande_left_finger_motor\">\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <!-- <transmission name=\"${prefix}hande_right_finger_trans\">\n      <type>transmission_interface/SimpleTransmission</type>\n      <joint name=\"${prefix}hande_right_finger_joint\">\n        <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>\n      </joint>\n      <actuator name=\"${prefix}hande_right_finger_motor\">\n        <mechanicalReduction>1</mechanicalReduction>\n      </actuator>\n    </transmission> -->\n    <!-- Mimic joints -->\n    <gazebo>\n        <plugin filename=\"libgazebo_mimic_joint_plugin.so\" name=\"mimic_robotiq_hande\">\n            <joint>hande_left_finger_joint</joint>\n            <mimicJoint>hande_right_finger_joint</mimicJoint>\n            <multiplier>1.0</multiplier>\n            <offset>0.0</offset>\n        </plugin>\n    </gazebo>\n    <!-- Gazebo Force/Torque sensor plugin -->\n    <gazebo reference=\"wrist_3_joint\">\n        <provideFeedback>true</provideFeedback>\n    </gazebo>\n    <!-- <gazebo reference=\"wrist_3_joint\">\n    <preserveFixedJoint>true</preserveFixedJoint>\n  </gazebo> -->\n    <gazebo>\n        <plugin filename=\"libgazebo_ros_ft_sensor.so\" name=\"ft_sensor\">\n            <updateRate>500.0</updateRate>\n            <topicName>wrench</topicName>\n            <gaussianNoise>0.0</gaussianNoise>\n            <jointName>wrist_3_joint</jointName>\n        </plugin>\n    </gazebo>\n    <gazebo>\n        <gripper name=\"gazebo_gripper\">\n            <grasp_check>\n                <attach_steps>2</attach_steps>\n                <detach_steps>2</detach_steps>\n                <min_contact_count>3</min_contact_count>\n            </grasp_check>\n            <gripper_link>hande_right_finger</gripper_link>\n            <gripper_link>hande_left_finger</gripper_link>\n            <palm_link>hand_e_link</palm_link>\n        </gripper>\n    </gazebo>\n    <!-- Gazebo grasping plugin -->\n    <transmission name=\"trans_shoulder_pan_joint\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"shoulder_pan_joint\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"shoulder_pan_joint_motor\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <transmission name=\"trans_shoulder_lift_joint\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"shoulder_lift_joint\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"shoulder_lift_joint_motor\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <transmission name=\"trans_elbow_joint\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"elbow_joint\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"elbow_joint_motor\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <transmission name=\"trans_wrist_1_joint\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"wrist_1_joint\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"wrist_1_joint_motor\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <transmission name=\"trans_wrist_2_joint\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"wrist_2_joint\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"wrist_2_joint_motor\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <transmission name=\"trans_wrist_3_joint\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"wrist_3_joint\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"wrist_3_joint_motor\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <transmission name=\"trans_hande_left_finger_joint\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"hande_left_finger_joint\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"hande_left_finger_joint_motor\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <transmission name=\"trans_hande_right_finger_joint\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"hande_right_finger_joint\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"hande_right_finger_joint_motor\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <gazebo>\n        <plugin name=\"gazebo_ros_control\" filename=\"libgazebo_ros_control.so\">\n            <robotNamespace>/</robotNamespace>\n        </plugin>\n    </gazebo>\n</robot>\n\n<transmission name=\"shoulder_pan_trans\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"shoulder_pan_joint\">\n            <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"shoulder_pan_motor\">\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <transmission name=\"shoulder_lift_trans\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"shoulder_lift_joint\">\n            <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"shoulder_lift_motor\">\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <transmission name=\"elbow_trans\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"elbow_joint\">\n            <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"elbow_motor\">\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <transmission name=\"wrist_1_trans\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"wrist_1_joint\">\n            <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"wrist_1_motor\">\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <transmission name=\"wrist_2_trans\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"wrist_2_joint\">\n            <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"wrist_2_motor\">\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <transmission name=\"wrist_3_trans\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"wrist_3_joint\">\n            <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"wrist_3_motor\">\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <!-- links: main serial chain -->\n    <link name=\"base_link\" />\n    <link name=\"base_link_inertia\">\n        <visual>\n            <origin rpy=\"0 0 3.14159265359\" xyz=\"0 0 0\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/visual/base.dae\" />\n            </geometry>\n            <material name=\"LightGrey\">\n                <color rgba=\"0.7 0.7 0.7 1.0\" />\n            </material>\n        </visual>\n        <collision>\n            <origin rpy=\"0 0 3.14159265359\" xyz=\"0 0 0\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/collision/base.stl\" />\n            </geometry>\n        </collision>\n        <inertial>\n            <mass value=\"2.0\" />\n            <origin rpy=\"0 0 0\" xyz=\"0 0 0\" />\n            <inertia ixx=\"0.0030531654454\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.0030531654454\" iyz=\"0.0\" izz=\"0.005625\" />\n        </inertial>\n    </link>\n    <link name=\"shoulder_link\">\n        <visual>\n            <origin rpy=\"0 0 3.14159265359\" xyz=\"0 0 0\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/visual/shoulder.dae\" />\n            </geometry>\n            <material name=\"LightGrey\">\n                <color rgba=\"0.7 0.7 0.7 1.0\" />\n            </material>\n        </visual>\n        <collision>\n            <origin rpy=\"0 0 3.14159265359\" xyz=\"0 0 0\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/collision/shoulder.stl\" />\n            </geometry>\n        </collision>\n        <inertial>\n            <mass value=\"2.0\" />\n            <origin rpy=\"0 0 0\" xyz=\"0 0 0\" />\n            <inertia ixx=\"0.0080931634294\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.0080931634294\" iyz=\"0.0\" izz=\"0.005625\" />\n        </inertial>\n    </link>\n    <link name=\"upper_arm_link\">\n        <visual>\n            <origin rpy=\"1.57079632679 0 -1.57079632679\" xyz=\"0 0 0.12\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/visual/upperarm.dae\" />\n            </geometry>\n            <material name=\"LightGrey\">\n                <color rgba=\"0.7 0.7 0.7 1.0\" />\n            </material>\n        </visual>\n        <collision>\n            <origin rpy=\"1.57079632679 0 -1.57079632679\" xyz=\"0 0 0.12\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/collision/upperarm.stl\" />\n            </geometry>\n        </collision>\n        <inertial>\n            <mass value=\"3.42\" />\n            <origin rpy=\"0 1.57079632679 0\" xyz=\"-0.121825 0.0 0.12\" />\n            <inertia ixx=\"0.0217284832211\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.0217284832211\" iyz=\"0.0\" izz=\"0.00961875\" />\n        </inertial>\n    </link>\n    <link name=\"forearm_link\">\n        <visual>\n            <origin rpy=\"1.57079632679 0 -1.57079632679\" xyz=\"0 0 0.027\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/visual/forearm.dae\" />\n            </geometry>\n            <material name=\"LightGrey\">\n                <color rgba=\"0.7 0.7 0.7 1.0\" />\n            </material>\n        </visual>\n        <collision>\n            <origin rpy=\"1.57079632679 0 -1.57079632679\" xyz=\"0 0 0.027\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/collision/forearm.stl\" />\n            </geometry>\n        </collision>\n        <inertial>\n            <mass value=\"1.26\" />\n            <origin rpy=\"0 1.57079632679 0\" xyz=\"-0.1066 0.0 0.027\" />\n            <inertia ixx=\"0.00654456758217\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.00654456758217\" iyz=\"0.0\" izz=\"0.00354375\" />\n        </inertial>\n    </link>\n    <link name=\"wrist_1_link\">\n        <visual>\n            <!-- TODO: Move this to a parameter -->\n            <origin rpy=\"1.57079632679 0 0\" xyz=\"0 0 -0.104\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/visual/wrist1.dae\" />\n            </geometry>\n            <material name=\"LightGrey\">\n                <color rgba=\"0.7 0.7 0.7 1.0\" />\n            </material>\n        </visual>\n        <collision>\n            <origin rpy=\"1.57079632679 0 0\" xyz=\"0 0 -0.104\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/collision/wrist1.stl\" />\n            </geometry>\n        </collision>\n        <inertial>\n            <mass value=\"0.8\" />\n            <origin rpy=\"0 0 0\" xyz=\"0 0 0\" />\n            <inertia ixx=\"0.002084999166\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.002084999166\" iyz=\"0.0\" izz=\"0.00225\" />\n        </inertial>\n    </link>\n    <link name=\"wrist_2_link\">\n        <visual>\n            <origin rpy=\"0 0 0\" xyz=\"0 0 -0.08535\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/visual/wrist2.dae\" />\n            </geometry>\n            <material name=\"LightGrey\">\n                <color rgba=\"0.7 0.7 0.7 1.0\" />\n            </material>\n        </visual>\n        <collision>\n            <origin rpy=\"0 0 0\" xyz=\"0 0 -0.08535\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/collision/wrist2.stl\" />\n            </geometry>\n        </collision>\n        <inertial>\n            <mass value=\"0.8\" />\n            <origin rpy=\"0 0 0\" xyz=\"0 0 0\" />\n            <inertia ixx=\"0.002084999166\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.002084999166\" iyz=\"0.0\" izz=\"0.00225\" />\n        </inertial>\n    </link>\n    <link name=\"wrist_3_link\">\n        <visual>\n            <origin rpy=\"1.57079632679 0 0\" xyz=\"0 0 -0.0921\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/visual/wrist3.dae\" />\n            </geometry>\n            <material name=\"LightGrey\">\n                <color rgba=\"0.7 0.7 0.7 1.0\" />\n            </material>\n        </visual>\n        <collision>\n            <origin rpy=\"1.57079632679 0 0\" xyz=\"0 0 -0.0921\" />\n            <geometry>\n                <mesh filename=\"package://ur_description/meshes/ur3e/collision/wrist3.stl\" />\n            </geometry>\n        </collision>\n        <inertial>\n            <mass value=\"0.35\" />\n            <origin rpy=\"0 0 0\" xyz=\"0.0 0.0 -0.02\" />\n            <inertia ixx=\"0.00013626661216\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.00013626661216\" iyz=\"0.0\" izz=\"0.0001792\" />\n        </inertial>\n    </link>\n    <!-- joints: main serial chain -->\n    <joint name=\"base_link-base_link_inertia\" type=\"fixed\">\n        <parent link=\"base_link\" />\n        <child link=\"base_link_inertia\" />\n        <!-- 'base_link' is REP-103 aligned (so X+ forward), while the internal\n           frames of the robot/controller have X+ pointing backwards.\n           Use the joint between 'base_link' and 'base_link_inertia' (a dummy\n           link/frame) to introduce the necessary rotation over Z (of pi rad).\n      -->\n        <origin rpy=\"0 0 3.14159265359\" xyz=\"0 0 0\" />\n    </joint>\n    <joint name=\"shoulder_pan_joint\" type=\"revolute\">\n        <parent link=\"base_link_inertia\" />\n        <child link=\"shoulder_link\" />\n        <origin rpy=\"0 0 0\" xyz=\"0 0 0.15185\" />\n        <axis xyz=\"0 0 1\" />\n        <limit effort=\"56.0\" lower=\"-6.28318530718\" upper=\"6.28318530718\" velocity=\"3.14159265359\" />\n        <dynamics damping=\"0\" friction=\"0\" />\n    </joint>\n    <joint name=\"shoulder_lift_joint\" type=\"revolute\">\n        <parent link=\"shoulder_link\" />\n        <child link=\"upper_arm_link\" />\n        <origin rpy=\"1.570796327 0 0\" xyz=\"0 0 0\" />\n        <axis xyz=\"0 0 1\" />\n        <limit effort=\"56.0\" lower=\"-6.28318530718\" upper=\"6.28318530718\" velocity=\"3.14159265359\" />\n        <dynamics damping=\"0\" friction=\"0\" />\n    </joint>\n    <joint name=\"elbow_joint\" type=\"revolute\">\n        <parent link=\"upper_arm_link\" />\n        <child link=\"forearm_link\" />\n        <origin rpy=\"0 0 0\" xyz=\"-0.24355 0 0\" />\n        <axis xyz=\"0 0 1\" />\n        <limit effort=\"28.0\" lower=\"-3.14159265359\" upper=\"3.14159265359\" velocity=\"3.14159265359\" />\n        <dynamics damping=\"0\" friction=\"0\" />\n    </joint>\n    <joint name=\"wrist_1_joint\" type=\"revolute\">\n        <parent link=\"forearm_link\" />\n        <child link=\"wrist_1_link\" />\n        <origin rpy=\"0 0 0\" xyz=\"-0.2132 0 0.13105\" />\n        <axis xyz=\"0 0 1\" />\n        <limit effort=\"12.0\" lower=\"-6.28318530718\" upper=\"6.28318530718\" velocity=\"6.28318530718\" />\n        <dynamics damping=\"0\" friction=\"0\" />\n    </joint>\n    <joint name=\"wrist_2_joint\" type=\"revolute\">\n        <parent link=\"wrist_1_link\" />\n        <child link=\"wrist_2_link\" />\n        <origin rpy=\"1.570796327 0 0\" xyz=\"0 -0.08535 -1.75055776238e-11\" />\n        <axis xyz=\"0 0 1\" />\n        <limit effort=\"12.0\" lower=\"-6.28318530718\" upper=\"6.28318530718\" velocity=\"6.28318530718\" />\n        <dynamics damping=\"0\" friction=\"0\" />\n    </joint>\n    <joint name=\"wrist_3_joint\" type=\"revolute\">\n        <parent link=\"wrist_2_link\" />\n        <child link=\"wrist_3_link\" />\n        <origin rpy=\"1.57079632659 3.14159265359 3.14159265359\" xyz=\"0 0.0921 -1.88900257663e-11\" />\n        <axis xyz=\"0 0 1\" />\n        <limit effort=\"12.0\" lower=\"-6.28318530718\" upper=\"6.28318530718\" velocity=\"6.28318530718\" />\n        <dynamics damping=\"0\" friction=\"0\" />\n    </joint>\n    <!-- ROS-Industrial 'base' frame: base_link to UR 'Base' Coordinates transform -->\n    <link name=\"base\" />\n    <joint name=\"base_link-base_fixed_joint\" type=\"fixed\">\n        <!-- Note the rotation over Z of pi radians: as base_link is REP-103\n           aligned (ie: has X+ forward, Y+ left and Z+ up), this is needed\n           to correctly align 'base' with the 'Base' coordinate system of\n           the UR controller.\n      -->\n        <origin rpy=\"0 0 3.14159265359\" xyz=\"0 0 0\" />\n        <parent link=\"base_link\" />\n        <child link=\"base\" />\n    </joint>\n    <!-- ROS-Industrial 'flange' frame: attachment point for EEF models -->\n    <link name=\"flange\" />\n    <joint name=\"wrist_3-flange\" type=\"fixed\">\n        <parent link=\"wrist_3_link\" />\n        <child link=\"flange\" />\n        <origin rpy=\"0 -1.57079632679 -1.57079632679\" xyz=\"0 0 0\" />\n    </joint>\n    <!-- ROS-Industrial 'tool0' frame: all-zeros tool frame -->\n    <link name=\"tool0\" />\n    <joint name=\"flange-tool0\" type=\"fixed\">\n        <!-- default toolframe: X+ left, Y+ up, Z+ front -->\n        <origin rpy=\"1.57079632679 0 1.57079632679\" xyz=\"0 0 0\" />\n        <parent link=\"flange\" />\n        <child link=\"tool0\" />\n    </joint>\n    <!-- Configure self collision properties per link -->\n    <gazebo reference=\"shoulder_link\">\n        <selfCollide>true</selfCollide>\n    </gazebo>\n    <gazebo reference=\"upper_arm_link\">\n        <selfCollide>true</selfCollide>\n    </gazebo>\n    <gazebo reference=\"forearm_link\">\n        <selfCollide>true</selfCollide>\n    </gazebo>\n    <gazebo reference=\"wrist_1_link\">\n        <selfCollide>true</selfCollide>\n    </gazebo>\n    <gazebo reference=\"wrist_3_link\">\n        <selfCollide>true</selfCollide>\n    </gazebo>\n    <gazebo reference=\"wrist_2_link\">\n        <selfCollide>true</selfCollide>\n    </gazebo>\n    <gazebo reference=\"ee_link\">\n        <selfCollide>true</selfCollide>\n    </gazebo>\n    <!--\n      Inject Gazebo ROS Control plugin, which allows us to use ros_control\n      controllers to control the virtual robot hw.\n    -->\n    <gazebo>\n        <plugin filename=\"libgazebo_ros_control.so\" name=\"ros_control\">\n            <!--robotNamespace>/</robotNamespace-->\n            <!--robotSimType>gazebo_ros_control/DefaultRobotHWSim</robotSimType-->\n        </plugin>\n    </gazebo>\n    <!--\n    Attach the Gazebo model to Gazebo's world frame.\n    Note: if you're looking to integrate a UR into a larger scene and need\n    to add EEFs or other parts, DO NOT change this file or the 'world' link\n    here. Create a NEW xacro instead and decide whether you need to add\n    a 'world' link there.\n  -->\n    <link name=\"world\" />\n    <joint name=\"world_joint\" type=\"fixed\">\n        <parent link=\"world\" />\n        <child link=\"base_link\" />\n        <origin rpy=\"0 0 0\" xyz=\"0 0 0\" />\n    </joint>\n    <!-- Gripper -->\n    <!--\n  Author: Cristian Beltran\n-->\n    <!-- Robotiq Coupler -->\n    <!--  + Height added by the coupler: 8mm -->\n    <!--  + Reference frame: at the middle (4mm) -->\n    <link name=\"robotiq_coupler\">\n        <visual>\n            <geometry>\n                <mesh filename=\"package://robotiq_description/meshes/robotiq_85_coupler.stl\" />\n            </geometry>\n            <material name=\"flat_black\">\n                <color rgba=\"0 0 0 1.0\"/>\n            </material>\n        </visual>\n        <collision>\n            <geometry>\n                <mesh filename=\"package://robotiq_description/meshes/robotiq_85_coupler.stl\" />\n            </geometry>\n        </collision>\n        <inertial>\n            <origin rpy=\"0 0 0\" xyz=\"2.073e-05   1.45286e-03  -1.1049e-03\" />\n            <mass value=\"0.168\" />\n            <inertia ixx=\"6.69695624e-05\" ixy=\"5.21511788e-09\" ixz=\"-2.74383009e-08\" iyy=\"7.85088161e-05\" iyz=\"5.41105193e-07\" izz=\"1.41819717e-04\" />\n        </inertial>\n    </link>\n    <joint name=\"robotiq_coupler_joint\" type=\"fixed\">\n        <origin rpy=\"0 0 -1.57079632679\" xyz=\"0 0 0.004\" />\n        <parent link=\"tool0\" />\n        <child link=\"robotiq_coupler\" />\n    </joint>\n    <gazebo reference=\"robotiq_coupler\">\n        <mu1>0.9</mu1>\n        <mu2>0.9</mu2>\n        <material>Gazebo/FlatBlack</material>\n    </gazebo>\n    <!-- Equivalent to the OpenRAVE manipulator denso_robotiq_hande_gripper -->\n    <link name=\"gripper_tip_link\" />\n    <joint name=\"manipulator_dummy_joint\" type=\"fixed\">\n        <origin rpy=\"0 0 0\" xyz=\"0 0 0.1441\" />\n        <parent link=\"robotiq_coupler\" />\n        <child link=\"gripper_tip_link\" />\n    </joint>\n    <joint name=\"robotiq_hande_base_joint\" type=\"fixed\">\n        <parent link=\"robotiq_coupler\" />\n        <child link=\"hand_e_link\" />\n        <origin rpy=\"0 0 -1.57079632679\" xyz=\"0 0 0.004\" />\n    </joint>\n    <link name=\"hand_e_link\">\n        <inertial>\n            <origin rpy=\"0 0 0\" xyz=\"0 0 0.04607\" />\n            <mass value=\"0.86387\" />\n            <inertia ixx=\"1017560E-9\" ixy=\"0\" ixz=\"2235E-9\" iyy=\"1028041E-9\" iyz=\"0\" izz=\"489810E-9\" />\n        </inertial>\n        <visual>\n            <origin rpy=\"0 0 0\" xyz=\"0 0 0\" />\n            <geometry>\n                <mesh filename=\"package://robotiq_description/meshes/hande/hand-e.dae\" scale=\"1.0 1.0 1.0\" />\n            </geometry>\n            <material name=\"Dark\">\n                <color rgba=\".1 0.1 0.1 1.0\" />\n            </material>\n        </visual>\n        <collision>\n            <origin rpy=\"0 0 0\" xyz=\"0 0 0\" />\n            <geometry>\n                <mesh filename=\"package://robotiq_description/meshes/hande/hand-e-collision.dae\" scale=\"1.0 1.0 1.0\" />\n            </geometry>\n        </collision>\n    </link>\n    <link name=\"hande_left_finger\">\n        <inertial>\n            <origin rpy=\"0 0 0\" xyz=\"0.02262 -0.00759 0.00738\" />\n            <mass value=\"0.03804\" />\n            <inertia ixx=\"13567E-9\" ixy=\"1849E-9\" ixz=\"3622E-9\" iyy=\"15784E-9\" iyz=\"3616E-9\" izz=\"7478E-9\" />\n        </inertial>\n        <visual>\n            <origin rpy=\"0 0 0\" xyz=\"0 0 0\" />\n            <geometry>\n                <mesh filename=\"package://robotiq_description/meshes/hande/finger_1.dae\" scale=\"1.0 1.0 1.0\" />\n            </geometry>\n            <material name=\"DarkGray\">\n                <color rgba=\".4 0.4 0.4 1.0\" />\n            </material>\n        </visual>\n        <collision>\n            <origin rpy=\"0 0 0\" xyz=\"0 0 0\" />\n            <geometry>\n                <mesh filename=\"package://robotiq_description/meshes/hande/finger_1-collision.dae\" scale=\"1.0 1.0 1.0\" />\n            </geometry>\n        </collision>\n    </link>\n    <link name=\"hande_right_finger\">\n        <inertial>\n            <origin rpy=\"0 0 0\" xyz=\"-0.02262 0.00759 0.00738\" />\n            <mass value=\"0.03804\" />\n            <inertia ixx=\"13567E-9\" ixy=\"1849E-9\" ixz=\"-3622E-9\" iyy=\"15784E-9\" iyz=\"-3616E-9\" izz=\"7478E-9\" />\n        </inertial>\n        <visual>\n            <origin rpy=\"0 0 0\" xyz=\"0 0 0\" />\n            <geometry>\n                <mesh filename=\"package://robotiq_description/meshes/hande/finger_2.dae\" scale=\"1.0 1.0 1.0\" />\n            </geometry>\n            <material name=\"DarkGray\">\n                <color rgba=\".4 0.4 0.4 1.0\" />\n            </material>\n        </visual>\n        <collision>\n            <origin rpy=\"0 0 0\" xyz=\"0 0 0\" />\n            <geometry>\n                <mesh filename=\"package://robotiq_description/meshes/hande/finger_2-collision.dae\" scale=\"1.0 1.0 1.0\" />\n            </geometry>\n        </collision>\n    </link>\n    <gazebo reference=\"hand_e_link\">\n        <material>Gazebo/FlatBlack</material>\n    </gazebo>\n    <gazebo reference=\"hande_right_finger\">\n        <material>Gazebo/Grey</material>\n    </gazebo>\n    <gazebo reference=\"hande_left_finger\">\n        <material>Gazebo/Grey</material>\n    </gazebo>\n    <joint name=\"hande_left_finger_joint\" type=\"prismatic\">\n        <origin rpy=\"0 0 0\" xyz=\"0 0 0.099\" />\n        <parent link=\"hand_e_link\" />\n        <child link=\"hande_left_finger\" />\n        <axis xyz=\"-1 0 0\" />\n        <limit effort=\"130\" lower=\"0\" upper=\"0.025\" velocity=\"0.15\" />\n    </joint>\n    <joint name=\"hande_right_finger_joint\" type=\"prismatic\">\n        <origin rpy=\"0 0 0\" xyz=\"0 0 0.099\" />\n        <parent link=\"hand_e_link\" />\n        <child link=\"hande_right_finger\" />\n        <axis xyz=\"1 0 0\" />\n        <limit effort=\"130\" lower=\"0\" upper=\"0.025\" velocity=\"0.15\" />\n        <mimic joint=\"hande_left_finger_joint\" multiplier=\"1\" offset=\"0\" />\n    </joint>\n    <!-- Improve grasping physics -->\n    <gazebo reference=\"hande_left_finger\">\n        <kp>1000000.0</kp>\n        <kd>1.0</kd>\n        <mu1>1.0</mu1>\n        <mu2>1.0</mu2>\n        <minDepth>0.001</minDepth>\n    </gazebo>\n    <gazebo reference=\"hande_right_finger\">\n        <kp>1000000.0</kp>\n        <kd>1.0</kd>\n        <mu1>1.0</mu1>\n        <mu2>1.0</mu2>\n        <minDepth>0.001</minDepth>\n    </gazebo>\n    <transmission name=\"hande_left_finger_trans\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"hande_left_finger_joint\">\n            <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"hande_left_finger_motor\">\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <!-- <transmission name=\"${prefix}hande_right_finger_trans\">\n      <type>transmission_interface/SimpleTransmission</type>\n      <joint name=\"${prefix}hande_right_finger_joint\">\n        <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>\n      </joint>\n      <actuator name=\"${prefix}hande_right_finger_motor\">\n        <mechanicalReduction>1</mechanicalReduction>\n      </actuator>\n    </transmission> -->\n    <!-- Mimic joints -->\n    <gazebo>\n        <plugin filename=\"libgazebo_mimic_joint_plugin.so\" name=\"mimic_robotiq_hande\">\n            <joint>hande_left_finger_joint</joint>\n            <mimicJoint>hande_right_finger_joint</mimicJoint>\n            <multiplier>1.0</multiplier>\n            <offset>0.0</offset>\n        </plugin>\n    </gazebo>\n    <!-- Gazebo Force/Torque sensor plugin -->\n    <gazebo reference=\"wrist_3_joint\">\n        <provideFeedback>true</provideFeedback>\n    </gazebo>\n    <!-- <gazebo reference=\"wrist_3_joint\">\n    <preserveFixedJoint>true</preserveFixedJoint>\n  </gazebo> -->\n    <gazebo>\n        <plugin filename=\"libgazebo_ros_ft_sensor.so\" name=\"ft_sensor\">\n            <updateRate>500.0</updateRate>\n            <topicName>wrench</topicName>\n            <gaussianNoise>0.0</gaussianNoise>\n            <jointName>wrist_3_joint</jointName>\n        </plugin>\n    </gazebo>\n    <gazebo>\n        <gripper name=\"gazebo_gripper\">\n            <grasp_check>\n                <attach_steps>2</attach_steps>\n                <detach_steps>2</detach_steps>\n                <min_contact_count>3</min_contact_count>\n            </grasp_check>\n            <gripper_link>hande_right_finger</gripper_link>\n            <gripper_link>hande_left_finger</gripper_link>\n            <palm_link>hand_e_link</palm_link>\n        </gripper>\n    </gazebo>\n    <!-- Gazebo grasping plugin -->\n    <transmission name=\"trans_shoulder_pan_joint\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"shoulder_pan_joint\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"shoulder_pan_joint_motor\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <transmission name=\"trans_shoulder_lift_joint\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"shoulder_lift_joint\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"shoulder_lift_joint_motor\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <transmission name=\"trans_elbow_joint\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"elbow_joint\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"elbow_joint_motor\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <transmission name=\"trans_wrist_1_joint\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"wrist_1_joint\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"wrist_1_joint_motor\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <transmission name=\"trans_wrist_2_joint\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"wrist_2_joint\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"wrist_2_joint_motor\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <transmission name=\"trans_wrist_3_joint\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"wrist_3_joint\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"wrist_3_joint_motor\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <transmission name=\"trans_hande_left_finger_joint\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"hande_left_finger_joint\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"hande_left_finger_joint_motor\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <transmission name=\"trans_hande_right_finger_joint\">\n        <type>transmission_interface/SimpleTransmission</type>\n        <joint name=\"hande_right_finger_joint\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n        </joint>\n        <actuator name=\"hande_right_finger_joint_motor\">\n            <hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>\n            <mechanicalReduction>1</mechanicalReduction>\n        </actuator>\n    </transmission>\n    <gazebo>\n        <plugin name=\"gazebo_ros_control\" filename=\"libgazebo_ros_control.so\">\n            <robotNamespace>/</robotNamespace>\n        </plugin>\n    </gazebo>\n</robot>\n"
  },
  {
    "path": "ur_hande_moveit_config/config/ur3e_hande.urdf",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- =================================================================================== -->\n<!-- |    This document was autogenerated by xacro from ur3e_robotiq_hande_gripper.urdf.xacro | -->\n<!-- |    EDITING THIS FILE BY HAND IS NOT RECOMMENDED                                 | -->\n<!-- =================================================================================== -->\n<robot name=\"ur3\">\n  <gazebo>\n    <plugin filename=\"libgazebo_ros_control.so\" name=\"gazebo_ros_control\">\n      <!-- <robotNamespace>/</robotNamespace>\n      <robotSimType>gazebo_ros_control/DefaultRobotHWSim</robotSimType>\n      <legacyModeNS>true</legacyModeNS> -->\n    </plugin>\n  </gazebo>\n  <!--\n  Author: Felix Messmer\n-->\n  <!-- measured from model -->\n  <link name=\"base_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/visual/base.dae\"/>\n      </geometry>\n      <material name=\"LightGrey\">\n        <color rgba=\"0.7 0.7 0.7 1.0\"/>\n      </material>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/collision/base.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"2.0\"/>\n      <origin rpy=\"0 0 0\" xyz=\"0.0 0.0 0.0\"/>\n      <inertia ixx=\"0.0030531654454\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.0030531654454\" iyz=\"0.0\" izz=\"0.005625\"/>\n    </inertial>\n  </link>\n  <joint name=\"shoulder_pan_joint\" type=\"revolute\">\n    <parent link=\"base_link\"/>\n    <child link=\"shoulder_link\"/>\n    <origin rpy=\"0.0 0.0 0.0\" xyz=\"0.0 0.0 0.152\"/>\n    <axis xyz=\"0 0 1\"/>\n    <limit effort=\"330.0\" lower=\"-6.28318530718\" upper=\"6.28318530718\" velocity=\"3.14\"/>\n    <dynamics damping=\"0.0\" friction=\"0.0\"/>\n  </joint>\n  <link name=\"shoulder_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/visual/shoulder.dae\"/>\n      </geometry>\n      <material name=\"LightGrey\">\n        <color rgba=\"0.7 0.7 0.7 1.0\"/>\n      </material>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/collision/shoulder.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"2.0\"/>\n      <origin rpy=\"0 0 0\" xyz=\"0.0 0.0 0.0\"/>\n      <inertia ixx=\"0.0080931634294\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.0080931634294\" iyz=\"0.0\" izz=\"0.005625\"/>\n    </inertial>\n  </link>\n  <joint name=\"shoulder_lift_joint\" type=\"revolute\">\n    <parent link=\"shoulder_link\"/>\n    <child link=\"upper_arm_link\"/>\n    <origin rpy=\"0.0 1.57079632679 0.0\" xyz=\"0.0 0.12 0.0\"/>\n    <axis xyz=\"0 1 0\"/>\n    <limit effort=\"330.0\" lower=\"-6.28318530718\" upper=\"6.28318530718\" velocity=\"3.14\"/>\n    <dynamics damping=\"0.0\" friction=\"0.0\"/>\n  </joint>\n  <link name=\"upper_arm_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/visual/upperarm.dae\"/>\n      </geometry>\n      <material name=\"LightGrey\">\n        <color rgba=\"0.7 0.7 0.7 1.0\"/>\n      </material>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/collision/upperarm.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"3.42\"/>\n      <origin rpy=\"0 0 0\" xyz=\"0.0 0.0 0.122\"/>\n      <inertia ixx=\"0.0217771262891\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.0217771262891\" iyz=\"0.0\" izz=\"0.00961875\"/>\n    </inertial>\n  </link>\n  <joint name=\"elbow_joint\" type=\"revolute\">\n    <parent link=\"upper_arm_link\"/>\n    <child link=\"forearm_link\"/>\n    <origin rpy=\"0.0 0.0 0.0\" xyz=\"0.0 -0.093 0.244\"/>\n    <axis xyz=\"0 1 0\"/>\n    <limit effort=\"150.0\" lower=\"-6.28318530718\" upper=\"6.28318530718\" velocity=\"3.14\"/>\n    <dynamics damping=\"0.0\" friction=\"0.0\"/>\n  </joint>\n  <link name=\"forearm_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/visual/forearm.dae\"/>\n      </geometry>\n      <material name=\"LightGrey\">\n        <color rgba=\"0.7 0.7 0.7 1.0\"/>\n      </material>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/collision/forearm.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"1.26\"/>\n      <origin rpy=\"0 0 0\" xyz=\"0.0 0.0 0.1065\"/>\n      <inertia ixx=\"0.00653561738575\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.00653561738575\" iyz=\"0.0\" izz=\"0.00354375\"/>\n    </inertial>\n  </link>\n  <joint name=\"wrist_1_joint\" type=\"revolute\">\n    <parent link=\"forearm_link\"/>\n    <child link=\"wrist_1_link\"/>\n    <origin rpy=\"0.0 1.57079632679 0.0\" xyz=\"0.0 0.0 0.213\"/>\n    <axis xyz=\"0 1 0\"/>\n    <limit effort=\"54.0\" lower=\"-6.28318530718\" upper=\"6.28318530718\" velocity=\"6.28\"/>\n    <dynamics damping=\"0.0\" friction=\"0.0\"/>\n  </joint>\n  <link name=\"wrist_1_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/visual/wrist1.dae\"/>\n      </geometry>\n      <material name=\"LightGrey\">\n        <color rgba=\"0.7 0.7 0.7 1.0\"/>\n      </material>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/collision/wrist1.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"0.8\"/>\n      <origin rpy=\"0 0 0\" xyz=\"0.0 0.0 0.0\"/>\n      <inertia ixx=\"0.002084999166\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.002084999166\" iyz=\"0.0\" izz=\"0.00225\"/>\n    </inertial>\n  </link>\n  <joint name=\"wrist_2_joint\" type=\"revolute\">\n    <parent link=\"wrist_1_link\"/>\n    <child link=\"wrist_2_link\"/>\n    <origin rpy=\"0.0 0.0 0.0\" xyz=\"0.0 0.104 0.0\"/>\n    <axis xyz=\"0 0 1\"/>\n    <limit effort=\"54.0\" lower=\"-6.28318530718\" upper=\"6.28318530718\" velocity=\"6.28\"/>\n    <dynamics damping=\"0.0\" friction=\"0.0\"/>\n  </joint>\n  <link name=\"wrist_2_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/visual/wrist2.dae\"/>\n      </geometry>\n      <material name=\"LightGrey\">\n        <color rgba=\"0.7 0.7 0.7 1.0\"/>\n      </material>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/collision/wrist2.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"0.8\"/>\n      <origin rpy=\"0 0 0\" xyz=\"0.0 0.0 0.0\"/>\n      <inertia ixx=\"0.002084999166\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.002084999166\" iyz=\"0.0\" izz=\"0.00225\"/>\n    </inertial>\n  </link>\n  <joint name=\"wrist_3_joint\" type=\"revolute\">\n    <parent link=\"wrist_2_link\"/>\n    <child link=\"wrist_3_link\"/>\n    <origin rpy=\"0.0 0.0 0.0\" xyz=\"0.0 0.0 0.085\"/>\n    <axis xyz=\"0 1 0\"/>\n    <limit effort=\"54.0\" lower=\"-6.28318530718\" upper=\"6.28318530718\" velocity=\"6.28\"/>\n    <dynamics damping=\"0.0\" friction=\"0.0\"/>\n  </joint>\n  <link name=\"wrist_3_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/visual/wrist3.dae\"/>\n      </geometry>\n      <material name=\"LightGrey\">\n        <color rgba=\"0.7 0.7 0.7 1.0\"/>\n      </material>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/collision/wrist3.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"0.35\"/>\n      <origin rpy=\"0 0 0\" xyz=\"0.0 0.0 0.0\"/>\n      <inertia ixx=\"0.000912187135125\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.000912187135125\" iyz=\"0.0\" izz=\"0.000984375\"/>\n    </inertial>\n  </link>\n  <joint name=\"ee_fixed_joint\" type=\"fixed\">\n    <parent link=\"wrist_3_link\"/>\n    <child link=\"ee_link\"/>\n    <origin rpy=\"0.0 0.0 1.57079632679\" xyz=\"0.0 0.092 0.0\"/>\n  </joint>\n  <link name=\"ee_link\">\n    <collision>\n      <geometry>\n        <box size=\"0.01 0.01 0.01\"/>\n      </geometry>\n      <origin rpy=\"0 0 0\" xyz=\"-0.01 0 0\"/>\n    </collision>\n  </link>\n  <transmission name=\"shoulder_pan_trans\">\n    <type>transmission_interface/SimpleTransmission</type>\n    <joint name=\"shoulder_pan_joint\">\n      <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>\n    </joint>\n    <actuator name=\"shoulder_pan_motor\">\n      <mechanicalReduction>1</mechanicalReduction>\n    </actuator>\n  </transmission>\n  <transmission name=\"shoulder_lift_trans\">\n    <type>transmission_interface/SimpleTransmission</type>\n    <joint name=\"shoulder_lift_joint\">\n      <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>\n    </joint>\n    <actuator name=\"shoulder_lift_motor\">\n      <mechanicalReduction>1</mechanicalReduction>\n    </actuator>\n  </transmission>\n  <transmission name=\"elbow_trans\">\n    <type>transmission_interface/SimpleTransmission</type>\n    <joint name=\"elbow_joint\">\n      <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>\n    </joint>\n    <actuator name=\"elbow_motor\">\n      <mechanicalReduction>1</mechanicalReduction>\n    </actuator>\n  </transmission>\n  <transmission name=\"wrist_1_trans\">\n    <type>transmission_interface/SimpleTransmission</type>\n    <joint name=\"wrist_1_joint\">\n      <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>\n    </joint>\n    <actuator name=\"wrist_1_motor\">\n      <mechanicalReduction>1</mechanicalReduction>\n    </actuator>\n  </transmission>\n  <transmission name=\"wrist_2_trans\">\n    <type>transmission_interface/SimpleTransmission</type>\n    <joint name=\"wrist_2_joint\">\n      <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>\n    </joint>\n    <actuator name=\"wrist_2_motor\">\n      <mechanicalReduction>1</mechanicalReduction>\n    </actuator>\n  </transmission>\n  <transmission name=\"wrist_3_trans\">\n    <type>transmission_interface/SimpleTransmission</type>\n    <joint name=\"wrist_3_joint\">\n      <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>\n    </joint>\n    <actuator name=\"wrist_3_motor\">\n      <mechanicalReduction>1</mechanicalReduction>\n    </actuator>\n  </transmission>\n  <!-- <xacro:ur_arm_transmission prefix=\"${prefix}\" joint_interface=\"VelocityJointInterface\" /> -->\n  <gazebo reference=\"shoulder_link\">\n    <selfCollide>true</selfCollide>\n    <implicitSpringDamper>1</implicitSpringDamper>\n  </gazebo>\n  <gazebo reference=\"upper_arm_link\">\n    <selfCollide>true</selfCollide>\n    <implicitSpringDamper>1</implicitSpringDamper>\n  </gazebo>\n  <gazebo reference=\"forearm_link\">\n    <selfCollide>true</selfCollide>\n    <implicitSpringDamper>1</implicitSpringDamper>\n  </gazebo>\n  <gazebo reference=\"wrist_1_link\">\n    <selfCollide>true</selfCollide>\n    <implicitSpringDamper>1</implicitSpringDamper>\n  </gazebo>\n  <gazebo reference=\"wrist_3_link\">\n    <selfCollide>true</selfCollide>\n    <implicitSpringDamper>1</implicitSpringDamper>\n  </gazebo>\n  <gazebo reference=\"wrist_2_link\">\n    <selfCollide>true</selfCollide>\n    <implicitSpringDamper>1</implicitSpringDamper>\n  </gazebo>\n  <gazebo reference=\"ee_link\">\n    <selfCollide>true</selfCollide>\n    <implicitSpringDamper>1</implicitSpringDamper>\n  </gazebo>\n  <!-- ROS base_link to UR 'Base' Coordinates transform -->\n  <link name=\"base\"/>\n  <joint name=\"base_link-base_fixed_joint\" type=\"fixed\">\n    <!-- NOTE: this rotation is only needed as long as base_link itself is\n                 not corrected wrt the real robot (ie: rotated over 180\n                 degrees)\n      -->\n    <origin rpy=\"0 0 -3.14159265359\" xyz=\"0 0 0\"/>\n    <parent link=\"base_link\"/>\n    <child link=\"base\"/>\n  </joint>\n  <!-- Frame coincident with all-zeros TCP on UR controller -->\n  <link name=\"tool0\"/>\n  <joint name=\"wrist_3_link-tool0_fixed_joint\" type=\"fixed\">\n    <origin rpy=\"-1.57079632679 0 0\" xyz=\"0 0.092 0\"/>\n    <parent link=\"wrist_3_link\"/>\n    <child link=\"tool0\"/>\n  </joint>\n  <gazebo reference=\"wrist_3_link-tool0_fixed_joint\">\n    <disableFixedJointLumping>true</disableFixedJointLumping>\n  </gazebo>\n  <link name=\"world\"/>\n  <joint name=\"world_joint\" type=\"fixed\">\n    <parent link=\"world\"/>\n    <child link=\"base_link\"/>\n    <origin rpy=\"0.0 0.0 0.0\" xyz=\"0.0 0.0 0.0\"/>\n  </joint>\n  <!--\n  Author: Cristian Beltran\n-->\n  <!-- Robotiq Coupler -->\n  <!--  + Height added by the coupler: 8mm -->\n  <!--  + Reference frame: at the middle (4mm) -->\n  <link name=\"robotiq_coupler\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/robotiq_85_coupler.stl\"/>\n      </geometry>\n      <material name=\"flat_black\">\n        <color rgba=\"0 0 0 1.0\"/>\n      </material>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/robotiq_85_coupler.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <origin rpy=\"0 0 0\" xyz=\"2.073e-05   1.45286e-03  -1.1049e-03\"/>\n      <mass value=\"0.168\"/>\n      <inertia ixx=\"6.69695624e-05\" ixy=\"5.21511788e-09\" ixz=\"-2.74383009e-08\" iyy=\"7.85088161e-05\" iyz=\"5.41105193e-07\" izz=\"1.41819717e-04\"/>\n    </inertial>\n  </link>\n  <joint name=\"robotiq_coupler_joint\" type=\"fixed\">\n    <origin rpy=\"0 0 -1.57079632679\" xyz=\"0 0 0.004\"/>\n    <parent link=\"tool0\"/>\n    <child link=\"robotiq_coupler\"/>\n  </joint>\n  <gazebo reference=\"robotiq_coupler\">\n    <mu1>0.9</mu1>\n    <mu2>0.9</mu2>\n    <material>Gazebo/FlatBlack</material>\n  </gazebo>\n  <!-- Equivalent to the OpenRAVE manipulator denso_robotiq_hande_gripper -->\n  <link name=\"ur3_robotiq_hande_gripper\"/>\n  <joint name=\"manipulator_dummy_joint\" type=\"fixed\">\n    <origin rpy=\"0 0 0\" xyz=\"0 0 0.1441\"/>\n    <parent link=\"robotiq_coupler\"/>\n    <child link=\"ur3_robotiq_hande_gripper\"/>\n  </joint>\n  <joint name=\"robotiq_hande_base_joint\" type=\"fixed\">\n    <parent link=\"robotiq_coupler\"/>\n    <child link=\"hand_e_link\"/>\n    <origin rpy=\"0 0 1.57079632679\" xyz=\"0 0 0.004\"/>\n  </joint>\n  <link name=\"hand_e_link\">\n    <inertial>\n      <origin rpy=\"0 0 0\" xyz=\"0 0 0.04607\"/>\n      <mass value=\"0.86387\"/>\n      <inertia ixx=\"1017560E-9\" ixy=\"0\" ixz=\"2235E-9\" iyy=\"1028041E-9\" iyz=\"0\" izz=\"489810E-9\"/>\n    </inertial>\n    <visual>\n      <origin rpy=\"0 0 0\" xyz=\"0 0 0\"/>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/hande/hand-e.dae\" scale=\"1.0 1.0 1.0\"/>\n      </geometry>\n      <material name=\"Dark\">\n        <color rgba=\".1 0.1 0.1 1.0\"/>\n      </material>\n    </visual>\n    <collision>\n      <origin rpy=\"0 0 0\" xyz=\"0 0 0\"/>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/hande/hand-e.dae\" scale=\"1.0 1.0 1.0\"/>\n      </geometry>\n    </collision>\n  </link>\n  <link name=\"hande_left_finger\">\n    <inertial>\n      <origin rpy=\"0 0 0\" xyz=\"0.02262 -0.00759 0.00738\"/>\n      <mass value=\"0.03804\"/>\n      <inertia ixx=\"13567E-9\" ixy=\"1849E-9\" ixz=\"3622E-9\" iyy=\"15784E-9\" iyz=\"3616E-9\" izz=\"7478E-9\"/>\n    </inertial>\n    <visual>\n      <origin rpy=\"0 0 0\" xyz=\"0 0 0\"/>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/hande/finger_1.dae\" scale=\"1.0 1.0 1.0\"/>\n      </geometry>\n      <material name=\"DarkGray\">\n        <color rgba=\".4 0.4 0.4 1.0\"/>\n      </material>\n    </visual>\n    <collision>\n      <origin rpy=\"0 0 0\" xyz=\"0 0 0\"/>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/hande/finger_1.dae\" scale=\"1.0 1.0 1.0\"/>\n      </geometry>\n    </collision>\n  </link>\n  <link name=\"hande_right_finger\">\n    <inertial>\n      <origin rpy=\"0 0 0\" xyz=\"-0.02262 0.00759 0.00738\"/>\n      <mass value=\"0.03804\"/>\n      <inertia ixx=\"13567E-9\" ixy=\"1849E-9\" ixz=\"-3622E-9\" iyy=\"15784E-9\" iyz=\"-3616E-9\" izz=\"7478E-9\"/>\n    </inertial>\n    <visual>\n      <origin rpy=\"0 0 0\" xyz=\"0 0 0\"/>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/hande/finger_2.dae\" scale=\"1.0 1.0 1.0\"/>\n      </geometry>\n      <material name=\"DarkGray\">\n        <color rgba=\".4 0.4 0.4 1.0\"/>\n      </material>\n    </visual>\n    <collision>\n      <origin rpy=\"0 0 0\" xyz=\"0 0 0\"/>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/hande/finger_2.dae\" scale=\"1.0 1.0 1.0\"/>\n      </geometry>\n    </collision>\n  </link>\n  <gazebo reference=\"hand_e_link\">\n    <material>Gazebo/FlatBlack</material>\n  </gazebo>\n  <gazebo reference=\"hande_right_finger\">\n    <material>Gazebo/Grey</material>\n  </gazebo>\n  <gazebo reference=\"hande_left_finger\">\n    <material>Gazebo/Grey</material>\n  </gazebo>\n  <joint name=\"hande_left_finger_joint\" type=\"prismatic\">\n    <origin rpy=\"0 0 0\" xyz=\"0 0 0.099\"/>\n    <parent link=\"hand_e_link\"/>\n    <child link=\"hande_left_finger\"/>\n    <axis xyz=\"-1 0 0\"/>\n    <limit effort=\"130\" lower=\"0\" upper=\"0.025\" velocity=\"0.15\"/>\n  </joint>\n  <joint name=\"hande_right_finger_joint\" type=\"prismatic\">\n    <origin rpy=\"0 0 0\" xyz=\"0 0 0.099\"/>\n    <parent link=\"hand_e_link\"/>\n    <child link=\"hande_right_finger\"/>\n    <axis xyz=\"1 0 0\"/>\n    <limit effort=\"130\" lower=\"0\" upper=\"0.025\" velocity=\"0.15\"/>\n    <mimic joint=\"hande_left_finger_joint\" multiplier=\"1\" offset=\"0\"/>\n  </joint>\n  <!-- Improve grasping physics -->\n  <gazebo reference=\"hande_left_finger\">\n    <kp>1000000.0</kp>\n    <kd>1.0</kd>\n    <mu1>1.0</mu1>\n    <mu2>1.0</mu2>\n    <minDepth>0.001</minDepth>\n  </gazebo>\n  <gazebo reference=\"hande_right_finger\">\n    <kp>1000000.0</kp>\n    <kd>1.0</kd>\n    <mu1>1.0</mu1>\n    <mu2>1.0</mu2>\n    <minDepth>0.001</minDepth>\n  </gazebo>\n  <!-- <transmission name=\"${prefix}hande_left_finger_trans\">\n      <type>transmission_interface/SimpleTransmission</type>\n      <joint name=\"${prefix}hande_left_finger_joint\">\n        <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>\n      </joint>\n      <actuator name=\"${prefix}hande_left_finger_motor\">\n        <mechanicalReduction>1</mechanicalReduction>\n      </actuator>\n    </transmission> -->\n  <transmission name=\"hande_right_finger_trans\">\n    <type>transmission_interface/SimpleTransmission</type>\n    <joint name=\"hande_right_finger_joint\">\n      <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>\n    </joint>\n    <actuator name=\"hande_right_finger_motor\">\n      <mechanicalReduction>1</mechanicalReduction>\n    </actuator>\n  </transmission>\n  <!-- Mimic joints -->\n  <gazebo>\n    <plugin filename=\"libgazebo_mimic_joint_plugin.so\" name=\"mimic_robotiq_hande\">\n      <joint>hande_right_finger_joint</joint>\n      <mimicJoint>hande_left_finger_joint</mimicJoint>\n      <multiplier>1.0</multiplier>\n      <offset>0.0</offset>\n    </plugin>\n  </gazebo>\n  <!-- <link name=\"aruco_marker\">\n    <visual>\n      <geometry>\n        <box size=\"0.1 0.1 0.01\"/>\n      </geometry>\n    </visual>\n  </link>\n  <joint name=\"aruco_dummy_joint\" type=\"fixed\">\n    <origin rpy=\"0 1.57079632679 1.57079632679\" xyz=\"0 0 0.20\"/>\n    <parent link=\"robotiq_coupler\"/>\n    <child link=\"aruco_marker\"/>\n  </joint> -->\n  <!-- <gazebo reference=\"aruco_marker\">\n    <material>CB/Apriltag36_11_00000</material>\n  </gazebo> -->\n  <!-- Gazebo FT sensor plugin -->\n  <gazebo reference=\"wrist_3_link-tool0_fixed_joint\">\n    <provideFeedback>true</provideFeedback>\n  </gazebo>\n  <gazebo>\n    <plugin filename=\"libgazebo_ros_ft_sensor.so\" name=\"ft_sensor\">\n      <updateRate>400.0</updateRate>\n      <topicName>wrench</topicName>\n      <gaussianNoise>0.0</gaussianNoise>\n      <jointName>wrist_3_link-tool0_fixed_joint</jointName>\n    </plugin>\n  </gazebo>\n  <gazebo>\n    <gripper name=\"gazebo_gripper\">\n      <grasp_check>\n        <attach_steps>2</attach_steps>\n        <detach_steps>2</detach_steps>\n        <min_contact_count>3</min_contact_count>\n      </grasp_check>\n      <gripper_link>hande_right_finger</gripper_link>\n      <gripper_link>hande_left_finger</gripper_link>\n      <palm_link>hand_e_link</palm_link>\n    </gripper>\n  </gazebo>\n  <!-- Gazebo grasping plugin -->\n</robot>\n"
  },
  {
    "path": "ur_hande_moveit_config/config/ur_robot_gazebo.srdf",
    "content": "<?xml version=\"1.0\" ?>\n<!--This does not replace URDF, and is not an extension of URDF.\n    This is a format for representing semantic information about the robot structure.\n    A URDF file must exist for this robot as well, where the joints and the links that are referenced are defined\n-->\n<robot name=\"ur_robot_gazebo\">\n    <!--GROUPS: Representation of a set of joints and links. This can be useful for specifying DOF to plan for, defining arms, end effectors, etc-->\n    <!--LINKS: When a link is specified, the parent joint of that link (if it exists) is automatically included-->\n    <!--JOINTS: When a joint is specified, the child link of that joint (which will always exist) is automatically included-->\n    <!--CHAINS: When a chain is specified, all the links along the chain (including endpoints) are included in the group. Additionally, all the joints that are parents to included links are also included. This means that joints along the chain and the parent joint of the base link are included in the group-->\n    <!--SUBGROUPS: Groups can also be formed by referencing to already defined group names-->\n    <group name=\"arm\">\n        <chain base_link=\"base_link\" tip_link=\"tool0\" />\n    </group>\n    <group name=\"gripper\">\n        <joint name=\"robotiq_coupler_joint\" />\n        <joint name=\"manipulator_dummy_joint\" />\n        <joint name=\"robotiq_hande_base_joint\" />\n        <joint name=\"hande_left_finger_joint\" />\n        <joint name=\"hande_right_finger_joint\" />\n    </group>\n    <!--END EFFECTOR: Purpose: Represent information about an end effector.-->\n    <end_effector name=\"gripper\" parent_link=\"tool0\" group=\"gripper\" parent_group=\"arm\" />\n    <!--VIRTUAL JOINT: Purpose: this element defines a virtual joint between a robot link and an external frame of reference (considered fixed with respect to the robot)-->\n    <virtual_joint name=\"fixed_base\" type=\"fixed\" parent_frame=\"base_link\" child_link=\"world\" />\n    <!--PASSIVE JOINT: Purpose: this element is used to mark joints that are not actuated-->\n    <passive_joint name=\"hande_right_finger_joint\" />\n    <!--DISABLE COLLISIONS: By default it is assumed that any link of the robot could potentially come into collision with any other link in the robot. This tag disables collision checking between a specified pair of links. -->\n    <disable_collisions link1=\"base_link_inertia\" link2=\"shoulder_link\" reason=\"Adjacent\" />\n    <disable_collisions link1=\"base_link_inertia\" link2=\"upper_arm_link\" reason=\"Never\" />\n    <disable_collisions link1=\"base_link_inertia\" link2=\"wrist_1_link\" reason=\"Never\" />\n    <disable_collisions link1=\"base_link_inertia\" link2=\"wrist_2_link\" reason=\"Never\" />\n    <disable_collisions link1=\"forearm_link\" link2=\"upper_arm_link\" reason=\"Adjacent\" />\n    <disable_collisions link1=\"forearm_link\" link2=\"wrist_1_link\" reason=\"Adjacent\" />\n    <disable_collisions link1=\"hand_e_link\" link2=\"hande_left_finger\" reason=\"Adjacent\" />\n    <disable_collisions link1=\"hand_e_link\" link2=\"hande_right_finger\" reason=\"Adjacent\" />\n    <disable_collisions link1=\"hand_e_link\" link2=\"robotiq_coupler\" reason=\"Adjacent\" />\n    <disable_collisions link1=\"hand_e_link\" link2=\"wrist_1_link\" reason=\"Never\" />\n    <disable_collisions link1=\"hand_e_link\" link2=\"wrist_2_link\" reason=\"Never\" />\n    <disable_collisions link1=\"hand_e_link\" link2=\"wrist_3_link\" reason=\"Never\" />\n    <disable_collisions link1=\"hande_left_finger\" link2=\"robotiq_coupler\" reason=\"Never\" />\n    <disable_collisions link1=\"hande_left_finger\" link2=\"wrist_1_link\" reason=\"Never\" />\n    <disable_collisions link1=\"hande_left_finger\" link2=\"wrist_2_link\" reason=\"Never\" />\n    <disable_collisions link1=\"hande_left_finger\" link2=\"wrist_3_link\" reason=\"Never\" />\n    <disable_collisions link1=\"hande_right_finger\" link2=\"robotiq_coupler\" reason=\"Never\" />\n    <disable_collisions link1=\"hande_right_finger\" link2=\"wrist_1_link\" reason=\"Never\" />\n    <disable_collisions link1=\"hande_right_finger\" link2=\"wrist_2_link\" reason=\"Never\" />\n    <disable_collisions link1=\"hande_right_finger\" link2=\"wrist_3_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_coupler\" link2=\"wrist_1_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_coupler\" link2=\"wrist_2_link\" reason=\"Never\" />\n    <disable_collisions link1=\"robotiq_coupler\" link2=\"wrist_3_link\" reason=\"Adjacent\" />\n    <disable_collisions link1=\"shoulder_link\" link2=\"upper_arm_link\" reason=\"Adjacent\" />\n    <disable_collisions link1=\"shoulder_link\" link2=\"wrist_1_link\" reason=\"Never\" />\n    <disable_collisions link1=\"shoulder_link\" link2=\"wrist_2_link\" reason=\"Never\" />\n    <disable_collisions link1=\"wrist_1_link\" link2=\"wrist_2_link\" reason=\"Adjacent\" />\n    <disable_collisions link1=\"wrist_1_link\" link2=\"wrist_3_link\" reason=\"Never\" />\n    <disable_collisions link1=\"wrist_2_link\" link2=\"wrist_3_link\" reason=\"Adjacent\" />\n</robot>\n"
  },
  {
    "path": "ur_hande_moveit_config/launch/chomp_planning_pipeline.launch.xml",
    "content": "<launch>\n  <!-- CHOMP Plugin for MoveIt! -->\n  <arg name=\"planning_plugin\" value=\"chomp_interface/CHOMPPlanner\" />\n\n  <!-- define capabilites that are loaded on start (space seperated) -->\n  <arg name=\"capabilities\" default=\"\"/>\n\n  <!-- inhibit capabilites (space seperated) -->\n  <arg name=\"disable_capabilities\" default=\"\"/>\n\n  <arg name=\"start_state_max_bounds_error\" value=\"0.1\" />\n  <!-- The request adapters (plugins) used when planning.\n       ORDER MATTERS -->\n  <arg name=\"planning_adapters\"\n       value=\"default_planner_request_adapters/AddTimeParameterization\n              default_planner_request_adapters/ResolveConstraintFrames\n              default_planner_request_adapters/FixWorkspaceBounds\n              default_planner_request_adapters/FixStartStateBounds\n              default_planner_request_adapters/FixStartStateCollision\n              default_planner_request_adapters/FixStartStatePathConstraints\"\n              />\n\n  <param name=\"planning_plugin\" value=\"$(arg planning_plugin)\" />\n  <param name=\"request_adapters\" value=\"$(arg planning_adapters)\" />\n  <param name=\"start_state_max_bounds_error\" value=\"$(arg start_state_max_bounds_error)\" />\n  <param name=\"capabilities\" value=\"$(arg capabilities)\" />\n  <param name=\"disable_capabilities\" value=\"$(arg disable_capabilities)\" />\n\n  <rosparam command=\"load\" file=\"$(find ur_hande_moveit_config)/config/chomp_planning.yaml\" />\n</launch>\n"
  },
  {
    "path": "ur_hande_moveit_config/launch/default_warehouse_db.launch",
    "content": "<launch>\n\n  <arg name=\"reset\" default=\"false\"/>\n  <!-- If not specified, we'll use a default database location -->\n  <arg name=\"moveit_warehouse_database_path\" default=\"$(find ur_hande_moveit_config)/default_warehouse_mongo_db\" />\n\n  <!-- Launch the warehouse with the configured database location -->\n  <include file=\"$(find ur_hande_moveit_config)/launch/warehouse.launch\">\n    <arg name=\"moveit_warehouse_database_path\" value=\"$(arg moveit_warehouse_database_path)\" />\n  </include>\n\n  <!-- If we want to reset the database, run this node -->\n  <node if=\"$(arg reset)\" name=\"$(anon moveit_default_db_reset)\" type=\"moveit_init_demo_warehouse\" pkg=\"moveit_ros_warehouse\" respawn=\"false\" output=\"screen\" />\n\n</launch>\n"
  },
  {
    "path": "ur_hande_moveit_config/launch/demo.launch",
    "content": "<launch>\n\n  <!-- specify the planning pipeline -->\n  <arg name=\"pipeline\" default=\"ompl\" />\n\n  <!-- By default, we do not start a database (it can be large) -->\n  <arg name=\"db\" default=\"false\" />\n  <!-- Allow user to specify database location -->\n  <arg name=\"db_path\" default=\"$(find ur_hande_moveit_config)/default_warehouse_mongo_db\" />\n\n  <!-- By default, we are not in debug mode -->\n  <arg name=\"debug\" default=\"false\" />\n\n  <!-- By default, we will load or override the robot_description -->\n  <arg name=\"load_robot_description\" default=\"true\"/>\n\n  <!-- Set execution mode for fake execution controllers -->\n  <arg name=\"execution_type\" default=\"interpolate\" />\n\n  <!--\n  By default, hide joint_state_publisher's GUI\n\n  MoveIt!'s \"demo\" mode replaces the real robot driver with the joint_state_publisher.\n  The latter one maintains and publishes the current joint configuration of the simulated robot.\n  It also provides a GUI to move the simulated robot around \"manually\".\n  This corresponds to moving around the real robot without the use of MoveIt.\n  -->\n  <arg name=\"use_gui\" default=\"false\" />\n  <arg name=\"use_rviz\" default=\"true\" />\n\n  <!-- If needed, broadcast static tf for robot root -->\n\n\n  <!-- We do not have a robot connected, so publish fake joint states -->\n  <node name=\"joint_state_publisher\" pkg=\"joint_state_publisher\" type=\"joint_state_publisher\" unless=\"$(arg use_gui)\">\n    <rosparam param=\"source_list\">[move_group/fake_controller_joint_states]</rosparam>\n  </node>\n  <node name=\"joint_state_publisher\" pkg=\"joint_state_publisher_gui\" type=\"joint_state_publisher_gui\" if=\"$(arg use_gui)\">\n    <rosparam param=\"source_list\">[move_group/fake_controller_joint_states]</rosparam>\n  </node>\n\n  <!-- Given the published joint states, publish tf for the robot links -->\n  <node name=\"robot_state_publisher\" pkg=\"robot_state_publisher\" type=\"robot_state_publisher\" respawn=\"true\" output=\"screen\" />\n\n  <!-- Run the main MoveIt! executable without trajectory execution (we do not have controllers configured by default) -->\n  <include file=\"$(find ur_hande_moveit_config)/launch/move_group.launch\">\n    <arg name=\"allow_trajectory_execution\" value=\"true\"/>\n    <arg name=\"fake_execution\" value=\"true\"/>\n    <arg name=\"execution_type\" value=\"$(arg execution_type)\"/>\n    <arg name=\"info\" value=\"true\"/>\n    <arg name=\"debug\" value=\"$(arg debug)\"/>\n    <arg name=\"pipeline\" value=\"$(arg pipeline)\"/>\n    <arg name=\"load_robot_description\" value=\"$(arg load_robot_description)\"/>\n  </include>\n\n  <!-- Run Rviz and load the default config to see the state of the move_group node -->\n  <include file=\"$(find ur_hande_moveit_config)/launch/moveit_rviz.launch\" if=\"$(arg use_rviz)\">\n    <arg name=\"rviz_config\" value=\"$(find ur_hande_moveit_config)/launch/moveit.rviz\"/>\n    <arg name=\"debug\" value=\"$(arg debug)\"/>\n  </include>\n\n  <!-- If database loading was enabled, start mongodb as well -->\n  <include file=\"$(find ur_hande_moveit_config)/launch/default_warehouse_db.launch\" if=\"$(arg db)\">\n    <arg name=\"moveit_warehouse_database_path\" value=\"$(arg db_path)\"/>\n  </include>\n\n</launch>\n"
  },
  {
    "path": "ur_hande_moveit_config/launch/demo_gazebo.launch",
    "content": "<launch>\n\n  <!-- By default, we do not start a database (it can be large) -->\n  <arg name=\"db\" default=\"false\" />\n  <!-- Allow user to specify database location -->\n  <arg name=\"db_path\" default=\"$(find ur_hande_moveit_config)/default_warehouse_mongo_db\" />\n\n  <!-- By default, we are not in debug mode -->\n  <arg name=\"debug\" default=\"false\" />\n\n  <!-- By default, we won't load or override the robot_description -->\n  <arg name=\"load_robot_description\" default=\"false\"/>\n\n  <!--\n  By default, hide joint_state_publisher's GUI\n\n  MoveIt!'s \"demo\" mode replaces the real robot driver with the joint_state_publisher.\n  The latter one maintains and publishes the current joint configuration of the simulated robot.\n  It also provides a GUI to move the simulated robot around \"manually\".\n  This corresponds to moving around the real robot without the use of MoveIt.\n  -->\n  <arg name=\"use_gui\" default=\"false\" />\n\n  <!-- Gazebo specific options -->\n  <arg name=\"gazebo_gui\" default=\"true\"/>\n  <arg name=\"paused\" default=\"false\"/>\n  <!-- By default, use the urdf location provided from the package -->\n  <arg name=\"urdf_path\" default=\"$(find ur_gripper_gazebo)/urdf/ur_gripper_hande.xacro\"/>\n\n  <!-- launch the gazebo simulator and spawn the robot -->\n  <include file=\"$(find ur_hande_moveit_config)/launch/gazebo.launch\" >\n    <arg name=\"paused\" value=\"$(arg paused)\"/>\n    <arg name=\"gazebo_gui\" value=\"$(arg gazebo_gui)\"/>\n    <arg name=\"urdf_path\" value=\"$(arg urdf_path)\"/>\n  </include>\n\n  <!-- If needed, broadcast static tf for robot root -->\n  \n\n  <!-- We do not have a robot connected, so publish fake joint states -->\n  <node name=\"joint_state_publisher\" pkg=\"joint_state_publisher\" type=\"joint_state_publisher\" unless=\"$(arg use_gui)\">\n    <rosparam param=\"source_list\">[move_group/fake_controller_joint_states]</rosparam>\n    <rosparam param=\"source_list\">[/joint_states]</rosparam>\n  </node>\n  <node name=\"joint_state_publisher\" pkg=\"joint_state_publisher_gui\" type=\"joint_state_publisher_gui\" if=\"$(arg use_gui)\">\n    <rosparam param=\"source_list\">[move_group/fake_controller_joint_states]</rosparam>\n    <rosparam param=\"source_list\">[/joint_states]</rosparam>\n  </node>\n\n  <!-- Given the published joint states, publish tf for the robot links -->\n  <node name=\"robot_state_publisher\" pkg=\"robot_state_publisher\" type=\"robot_state_publisher\" respawn=\"true\" output=\"screen\" />\n\n  <!-- Run the main MoveIt! executable without trajectory execution (we do not have controllers configured by default) -->\n  <include file=\"$(find ur_hande_moveit_config)/launch/move_group.launch\">\n    <arg name=\"allow_trajectory_execution\" value=\"true\"/>\n    <arg name=\"fake_execution\" value=\"false\"/>\n    <arg name=\"info\" value=\"true\"/>\n    <arg name=\"debug\" value=\"$(arg debug)\"/>\n    <arg name=\"load_robot_description\" value=\"$(arg load_robot_description)\"/>\n  </include>\n\n  <!-- Run Rviz and load the default config to see the state of the move_group node -->\n  <include file=\"$(find ur_hande_moveit_config)/launch/moveit_rviz.launch\">\n    <arg name=\"rviz_config\" value=\"$(find ur_hande_moveit_config)/launch/moveit.rviz\"/>\n    <arg name=\"debug\" value=\"$(arg debug)\"/>\n  </include>\n\n  <!-- If database loading was enabled, start mongodb as well -->\n  <include file=\"$(find ur_hande_moveit_config)/launch/default_warehouse_db.launch\" if=\"$(arg db)\">\n    <arg name=\"moveit_warehouse_database_path\" value=\"$(arg db_path)\"/>\n  </include>\n\n</launch>\n"
  },
  {
    "path": "ur_hande_moveit_config/launch/fake_moveit_controller_manager.launch.xml",
    "content": "<launch>\n\n  <!-- execute the trajectory in 'interpolate' mode or jump to goal position in 'last point' mode -->\n  <arg name=\"execution_type\" default=\"interpolate\" />\n\n  <!-- Set the param that trajectory_execution_manager needs to find the controller plugin -->\n  <param name=\"moveit_controller_manager\" value=\"moveit_fake_controller_manager/MoveItFakeControllerManager\"/>\n\n  <!-- The rest of the params are specific to this plugin -->\n  <rosparam subst_value=\"true\" file=\"$(find ur_hande_moveit_config)/config/fake_controllers.yaml\"/>\n\n</launch>\n"
  },
  {
    "path": "ur_hande_moveit_config/launch/gazebo.launch",
    "content": "<?xml version=\"1.0\"?>\n<launch>\n  <arg name=\"paused\" default=\"false\"/>\n  <arg name=\"gazebo_gui\" default=\"true\"/>\n  <arg name=\"urdf_path\" default=\"$(find ur_gripper_gazebo)/urdf/ur_gripper_hande.xacro\"/>\n\n  <!-- startup simulated world -->\n  <include file=\"$(find gazebo_ros)/launch/empty_world.launch\">\n    <arg name=\"world_name\" default=\"worlds/empty.world\"/>\n    <arg name=\"paused\" value=\"$(arg paused)\"/>\n    <arg name=\"gui\" value=\"$(arg gazebo_gui)\"/>\n  </include>\n\n  <!-- send robot urdf to param server -->\n  <param name=\"robot_description\" textfile=\"$(arg urdf_path)\" />\n\n  <!-- push robot_description to factory and spawn robot in gazebo at the origin, change x,y,z arguments to spawn in a different position -->\n  <node name=\"spawn_gazebo_model\" pkg=\"gazebo_ros\" type=\"spawn_model\" args=\"-urdf -param robot_description -model robot -x 0 -y 0 -z 0\"\n    respawn=\"false\" output=\"screen\" />\n\n  <include file=\"$(find ur_hande_moveit_config)/launch/ros_controllers.launch\"/>\n\n</launch>\n"
  },
  {
    "path": "ur_hande_moveit_config/launch/gazebo_static_tf.launch",
    "content": "<launch>\n    <node pkg=\"tf\" type=\"static_transform_publisher\" name=\"floorworld_broadcaster\" args=\"0 0 0 0 0 0 floor world 100\" />\n    <node pkg=\"tf\" type=\"static_transform_publisher\" name=\"arm_broadcaster\" args=\"0.11 0.685 -1.5707 0 0 0 world base_link 100\" />\n</launch>"
  },
  {
    "path": "ur_hande_moveit_config/launch/joystick_control.launch",
    "content": "<launch>\n  <!-- See moveit_ros/visualization/doc/joystick.rst for documentation -->\n\n  <arg name=\"dev\" default=\"/dev/input/js0\" />\n\n  <!-- Launch joy node -->\n  <node pkg=\"joy\" type=\"joy_node\" name=\"joy\">\n    <param name=\"dev\" value=\"$(arg dev)\" /> <!-- Customize this to match the location your joystick is plugged in on-->\n    <param name=\"deadzone\" value=\"0.2\" />\n    <param name=\"autorepeat_rate\" value=\"40\" />\n    <param name=\"coalesce_interval\" value=\"0.025\" />\n  </node>\n\n  <!-- Launch python interface -->\n  <node pkg=\"moveit_ros_visualization\" type=\"moveit_joy.py\" output=\"screen\" name=\"moveit_joy\"/>\n\n</launch>\n"
  },
  {
    "path": "ur_hande_moveit_config/launch/move_group.launch",
    "content": "<launch>\n  <!-- Specific ur robot -->\n  <arg name=\"ur_robot\" default=\"ur3e\"/>\n\n  <!-- GDB Debug Option -->\n  <arg name=\"debug\" default=\"false\" />\n  <arg unless=\"$(arg debug)\" name=\"launch_prefix\" value=\"\" />\n  <arg     if=\"$(arg debug)\" name=\"launch_prefix\"\n           value=\"gdb -x $(find ur_hande_moveit_config)/launch/gdb_settings.gdb --ex run --args\" />\n\n  <!-- Verbose Mode Option -->\n  <arg name=\"info\" default=\"$(arg debug)\" />\n  <arg unless=\"$(arg info)\" name=\"command_args\" value=\"\" />\n  <arg     if=\"$(arg info)\" name=\"command_args\" value=\"--debug\" />\n\n  <!-- move_group settings -->\n  <arg name=\"pipeline\" default=\"ompl\" />\n  <arg name=\"allow_trajectory_execution\" default=\"true\"/>\n  <arg name=\"fake_execution\" default=\"false\"/>\n  <arg name=\"execution_type\" default=\"interpolate\"/> <!-- set to 'last point' to skip intermediate trajectory in fake execution -->\n  <arg name=\"max_safe_path_cost\" default=\"1\"/>\n  <arg name=\"jiggle_fraction\" default=\"0.05\" />\n  <arg name=\"publish_monitored_planning_scene\" default=\"true\"/>\n\n  <arg name=\"capabilities\" default=\"\"/>\n  <arg name=\"disable_capabilities\" default=\"\"/>\n  <!-- load these non-default MoveGroup capabilities (space seperated) -->\n  <!--\n  <arg name=\"capabilities\" value=\"\n                a_package/AwsomeMotionPlanningCapability\n                another_package/GraspPlanningPipeline\n                \" />\n  -->\n\n  <!-- inhibit these default MoveGroup capabilities (space seperated) -->\n  <!--\n  <arg name=\"disable_capabilities\" value=\"\n                move_group/MoveGroupKinematicsService\n                move_group/ClearOctomapService\n                \" />\n  -->\n\n  <arg name=\"load_robot_description\" default=\"true\" />\n  <!-- load URDF, SRDF and joint_limits configuration -->\n  <include file=\"$(find ur_hande_moveit_config)/launch/planning_context.launch\">\n    <arg name=\"ur_robot\" default=\"$(arg ur_robot)\"/>\n    <arg name=\"load_robot_description\" value=\"$(arg load_robot_description)\" />\n  </include>\n\n  <!-- Planning Functionality -->\n  <include ns=\"move_group\" file=\"$(find ur_hande_moveit_config)/launch/planning_pipeline.launch.xml\">\n    <arg name=\"pipeline\" value=\"$(arg pipeline)\" />\n    <param name=\"capabilities\" value=\"$(arg capabilities)\"/>\n    <param name=\"disable_capabilities\" value=\"$(arg disable_capabilities)\"/>\n  </include>\n\n  <!-- Trajectory Execution Functionality -->\n  <include ns=\"move_group\" file=\"$(find ur_hande_moveit_config)/launch/trajectory_execution.launch.xml\" if=\"$(arg allow_trajectory_execution)\">\n    <arg name=\"moveit_manage_controllers\" value=\"true\" />\n    <arg name=\"moveit_controller_manager\" value=\"ur_robot_gazebo\" unless=\"$(arg fake_execution)\"/>\n    <arg name=\"moveit_controller_manager\" value=\"fake\" if=\"$(arg fake_execution)\"/>\n    <arg name=\"execution_type\" value=\"$(arg execution_type)\" />\n  </include>\n\n  <!-- Sensors Functionality -->\n  <include ns=\"move_group\" file=\"$(find ur_hande_moveit_config)/launch/sensor_manager.launch.xml\" if=\"$(arg allow_trajectory_execution)\">\n    <arg name=\"moveit_sensor_manager\" value=\"ur_robot_gazebo\" />\n  </include>\n\n  <!-- Start the actual move_group node/action server -->\n  <node name=\"move_group\" launch-prefix=\"$(arg launch_prefix)\" pkg=\"moveit_ros_move_group\" type=\"move_group\" respawn=\"false\" output=\"screen\" args=\"$(arg command_args)\">\n    <!-- Set the display variable, in case OpenGL code is used internally -->\n    <env name=\"DISPLAY\" value=\"$(optenv DISPLAY :0)\" />\n\n    <param name=\"allow_trajectory_execution\" value=\"$(arg allow_trajectory_execution)\"/>\n    <param name=\"max_safe_path_cost\" value=\"$(arg max_safe_path_cost)\"/>\n    <param name=\"jiggle_fraction\" value=\"$(arg jiggle_fraction)\" />\n\n\n    <!-- Publish the planning scene of the physical robot so that rviz plugin can know actual robot -->\n    <param name=\"planning_scene_monitor/publish_planning_scene\" value=\"$(arg publish_monitored_planning_scene)\" />\n    <param name=\"planning_scene_monitor/publish_geometry_updates\" value=\"$(arg publish_monitored_planning_scene)\" />\n    <param name=\"planning_scene_monitor/publish_state_updates\" value=\"$(arg publish_monitored_planning_scene)\" />\n    <param name=\"planning_scene_monitor/publish_transforms_updates\" value=\"$(arg publish_monitored_planning_scene)\" />\n  </node>\n\n</launch>\n"
  },
  {
    "path": "ur_hande_moveit_config/launch/moveit.rviz",
    "content": "Panels:\n  - Class: rviz/Displays\n    Help Height: 84\n    Name: Displays\n    Property Tree Widget:\n      Expanded:\n        - /MotionPlanning1\n      Splitter Ratio: 0.74256\n    Tree Height: 664\n  - Class: rviz/Help\n    Name: Help\n  - Class: rviz/Views\n    Expanded:\n      - /Current View1\n    Name: Views\n    Splitter Ratio: 0.5\nVisualization Manager:\n  Class: \"\"\n  Displays:\n    - Alpha: 0.5\n      Cell Size: 1\n      Class: rviz/Grid\n      Color: 160; 160; 164\n      Enabled: true\n      Line Style:\n        Line Width: 0.03\n        Value: Lines\n      Name: Grid\n      Normal Cell Count: 0\n      Offset:\n        X: 0\n        Y: 0\n        Z: 0\n      Plane: XY\n      Plane Cell Count: 10\n      Reference Frame: <Fixed Frame>\n      Value: true\n    - Class: moveit_rviz_plugin/MotionPlanning\n      Enabled: true\n      MoveIt_Goal_Tolerance: 0\n      MoveIt_Planning_Time: 5\n      MoveIt_Use_Constraint_Aware_IK: true\n      MoveIt_Warehouse_Host: 127.0.0.1\n      MoveIt_Warehouse_Port: 33829\n      Name: MotionPlanning\n      Planned Path:\n        Links:\n          base_bellow_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          base_footprint:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          base_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          bl_caster_l_wheel_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          bl_caster_r_wheel_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          bl_caster_rotation_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          br_caster_l_wheel_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          br_caster_r_wheel_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          br_caster_rotation_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          double_stereo_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          fl_caster_l_wheel_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          fl_caster_r_wheel_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          fl_caster_rotation_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          fr_caster_l_wheel_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          fr_caster_r_wheel_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          fr_caster_rotation_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          head_mount_kinect_ir_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          head_mount_kinect_rgb_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          head_mount_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          head_mount_prosilica_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          head_pan_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          head_plate_frame:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          head_tilt_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_elbow_flex_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_forearm_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_forearm_roll_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_gripper_l_finger_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_gripper_l_finger_tip_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_gripper_motor_accelerometer_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_gripper_palm_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_gripper_r_finger_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_gripper_r_finger_tip_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_shoulder_lift_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_shoulder_pan_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_upper_arm_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_upper_arm_roll_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_wrist_flex_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_wrist_roll_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          laser_tilt_mount_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_elbow_flex_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_forearm_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_forearm_roll_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_gripper_l_finger_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_gripper_l_finger_tip_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_gripper_motor_accelerometer_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_gripper_palm_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_gripper_r_finger_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_gripper_r_finger_tip_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_shoulder_lift_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_shoulder_pan_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_upper_arm_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_upper_arm_roll_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_wrist_flex_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_wrist_roll_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          sensor_mount_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          torso_lift_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n        Loop Animation: true\n        Robot Alpha: 0.5\n        Show Robot Collision: false\n        Show Robot Visual: true\n        Show Trail: false\n        State Display Time: 0.05 s\n        Trajectory Topic: move_group/display_planned_path\n      Planning Metrics:\n        Payload: 1\n        Show Joint Torques: false\n        Show Manipulability: false\n        Show Manipulability Index: false\n        Show Weight Limit: false\n      Planning Request:\n        Colliding Link Color: 255; 0; 0\n        Goal State Alpha: 1\n        Goal State Color: 250; 128; 0\n        Interactive Marker Size: 0\n        Joint Violation Color: 255; 0; 255\n        Planning Group: left_arm\n        Query Goal State: true\n        Query Start State: false\n        Show Workspace: false\n        Start State Alpha: 1\n        Start State Color: 0; 255; 0\n      Planning Scene Topic: move_group/monitored_planning_scene\n      Robot Description: robot_description\n      Scene Geometry:\n        Scene Alpha: 1\n        Scene Color: 50; 230; 50\n        Scene Display Time: 0.2\n        Show Scene Geometry: true\n        Voxel Coloring: Z-Axis\n        Voxel Rendering: Occupied Voxels\n      Scene Robot:\n        Attached Body Color: 150; 50; 150\n        Links:\n          base_bellow_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          base_footprint:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          base_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          bl_caster_l_wheel_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          bl_caster_r_wheel_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          bl_caster_rotation_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          br_caster_l_wheel_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          br_caster_r_wheel_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          br_caster_rotation_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          double_stereo_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          fl_caster_l_wheel_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          fl_caster_r_wheel_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          fl_caster_rotation_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          fr_caster_l_wheel_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          fr_caster_r_wheel_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          fr_caster_rotation_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          head_mount_kinect_ir_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          head_mount_kinect_rgb_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          head_mount_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          head_mount_prosilica_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          head_pan_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          head_plate_frame:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          head_tilt_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_elbow_flex_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_forearm_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_forearm_roll_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_gripper_l_finger_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_gripper_l_finger_tip_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_gripper_motor_accelerometer_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_gripper_palm_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_gripper_r_finger_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_gripper_r_finger_tip_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_shoulder_lift_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_shoulder_pan_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_upper_arm_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_upper_arm_roll_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_wrist_flex_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          l_wrist_roll_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          laser_tilt_mount_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_elbow_flex_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_forearm_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_forearm_roll_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_gripper_l_finger_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_gripper_l_finger_tip_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_gripper_motor_accelerometer_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_gripper_palm_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_gripper_r_finger_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_gripper_r_finger_tip_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_shoulder_lift_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_shoulder_pan_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_upper_arm_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_upper_arm_roll_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_wrist_flex_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          r_wrist_roll_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          sensor_mount_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n          torso_lift_link:\n            Alpha: 1\n            Show Axes: false\n            Show Trail: false\n            Value: true\n        Robot Alpha: 0.5\n        Show Scene Robot: true\n      Value: true\n  Enabled: true\n  Global Options:\n    Background Color: 48; 48; 48\n    Fixed Frame: world\n  Name: root\n  Tools:\n    - Class: rviz/Interact\n      Hide Inactive Objects: true\n    - Class: rviz/MoveCamera\n    - Class: rviz/Select\n  Value: true\n  Views:\n    Current:\n      Class: rviz/XYOrbit\n      Distance: 2.9965\n      Focal Point:\n        X: 0.113567\n        Y: 0.10592\n        Z: 2.23518e-07\n      Name: Current View\n      Near Clip Distance: 0.01\n      Pitch: 0.509797\n      Target Frame: /world\n      Value: XYOrbit (rviz)\n      Yaw: 5.65995\n    Saved: ~\nWindow Geometry:\n  Displays:\n    collapsed: false\n  Height: 1337\n  Help:\n    collapsed: false\n  Hide Left Dock: false\n  Hide Right Dock: false\n  Motion Planning:\n    collapsed: false\n  QMainWindow State: 000000ff00000000fd0000000100000000000002a2000004bcfc0200000005fb000000100044006900730070006c00610079007301000000410000032d000000dd00fffffffb0000000800480065006c00700000000342000000bb0000007600fffffffb0000000a0056006900650077007300000003b0000000b0000000b000fffffffb0000000c00430061006d00650072006100000002ff000001610000000000000000fb0000001e004d006f00740069006f006e00200050006c0061006e006e0069006e00670100000374000001890000017400ffffff0000047a000004bc00000001000000020000000100000002fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000\n  Views:\n    collapsed: false\n  Width: 1828\n  X: 459\n  Y: -243\n"
  },
  {
    "path": "ur_hande_moveit_config/launch/moveit_rviz.launch",
    "content": "<launch>\n\n  <arg name=\"debug\" default=\"false\" />\n  <arg unless=\"$(arg debug)\" name=\"launch_prefix\" value=\"\" />\n  <arg     if=\"$(arg debug)\" name=\"launch_prefix\" value=\"gdb --ex run --args\" />\n\n  <arg name=\"rviz_config\" default=\"\" />\n  <arg     if=\"$(eval rviz_config=='')\" name=\"command_args\" value=\"\" />\n  <arg unless=\"$(eval rviz_config=='')\" name=\"command_args\" value=\"-d $(arg rviz_config)\" />\n\n  <node name=\"$(anon rviz)\" launch-prefix=\"$(arg launch_prefix)\" pkg=\"rviz\" type=\"rviz\" respawn=\"false\"\n        args=\"$(arg command_args)\" output=\"screen\">\n  </node>\n\n</launch>\n"
  },
  {
    "path": "ur_hande_moveit_config/launch/ompl_planning_pipeline.launch.xml",
    "content": "<launch>\n\n  <!-- OMPL Plugin for MoveIt! -->\n  <arg name=\"planning_plugin\" value=\"ompl_interface/OMPLPlanner\" />\n\n  <!-- define capabilites that are loaded on start (space seperated) -->\n  <arg name=\"capabilities\" default=\"\"/>\n\n  <!-- inhibit capabilites (space seperated) -->\n  <arg name=\"disable_capabilities\" default=\"\"/>\n\n  <!-- The request adapters (plugins) used when planning with OMPL.\n       ORDER MATTERS -->\n  <arg name=\"planning_adapters\" value=\"default_planner_request_adapters/AddTimeParameterization\n\t\t\t\t       default_planner_request_adapters/FixWorkspaceBounds\n\t\t\t\t       default_planner_request_adapters/FixStartStateBounds\n\t\t\t\t       default_planner_request_adapters/FixStartStateCollision\n\t\t\t\t       default_planner_request_adapters/FixStartStatePathConstraints\" />\n\n  <arg name=\"start_state_max_bounds_error\" value=\"0.1\" />\n\n  <param name=\"planning_plugin\" value=\"$(arg planning_plugin)\" />\n  <param name=\"request_adapters\" value=\"$(arg planning_adapters)\" />\n  <param name=\"start_state_max_bounds_error\" value=\"$(arg start_state_max_bounds_error)\" />\n  <param name=\"capabilities\" value=\"$(arg capabilities)\" />\n  <param name=\"disable_capabilities\" value=\"$(arg disable_capabilities)\" />\n\n  <rosparam command=\"load\" file=\"$(find ur_hande_moveit_config)/config/ompl_planning.yaml\"/>\n\n</launch>\n"
  },
  {
    "path": "ur_hande_moveit_config/launch/pilz_industrial_motion_planner_planning_pipeline.launch.xml",
    "content": "<launch>\n\n  <!-- Pilz Command Planner Plugin for MoveIt -->\n  <arg name=\"planning_plugin\" value=\"pilz_industrial_motion_planner::CommandPlanner\" />\n\n  <!-- The request adapters (plugins) used when planning.\n       ORDER MATTERS -->\n  <arg name=\"planning_adapters\" value=\"\" />\n\n  <!-- define capabilites that are loaded on start (space seperated) -->\n  <arg name=\"capabilities\" default=\"\"/>\n\n  <!-- inhibit capabilites (space seperated) -->\n  <arg name=\"disable_capabilities\" default=\"\"/>\n\n  <arg name=\"start_state_max_bounds_error\" value=\"0.1\" />\n\n  <param name=\"planning_plugin\" value=\"$(arg planning_plugin)\" />\n  <param name=\"request_adapters\" value=\"$(arg planning_adapters)\" />\n  <param name=\"start_state_max_bounds_error\" value=\"$(arg start_state_max_bounds_error)\" />\n\n  <!-- MoveGroup capabilities to load, append sequence capability -->\n  <param name=\"capabilities\" value=\"$(arg capabilities)\n                                    pilz_industrial_motion_planner/MoveGroupSequenceAction\n                                    pilz_industrial_motion_planner/MoveGroupSequenceService\n                                   \" />\n  <param name=\"disable_capabilities\" value=\"$(arg disable_capabilities)\" />\n</launch>\n"
  },
  {
    "path": "ur_hande_moveit_config/launch/planning_context.launch",
    "content": "<launch>\n  <arg name=\"ur_robot\" default=\"ur3e\"/>\n\n  <!-- By default we do not overwrite the URDF. Change the following to true to change the default behavior -->\n  <arg name=\"load_robot_description\" default=\"false\"/>\n\n  <!-- The name of the parameter under which the URDF is loaded -->\n  <arg name=\"robot_description\" default=\"robot_description\"/>\n\n  <!-- Load universal robot description format (URDF) -->\n  <param if=\"$(arg load_robot_description)\" name=\"$(arg robot_description)\" command=\"xacro joint_limit_params:='$(find ur_description)/config/$(arg ur_robot)/joint_limits.yaml'\n                                                                                           kinematics_params:='$(find ur_description)/config/$(arg ur_robot)/default_kinematics.yaml'\n                                                                                           physical_params:='$(find ur_description)/config/$(arg ur_robot)/physical_parameters.yaml'\n                                                                                           visual_params:='$(find ur_description)/config/$(arg ur_robot)/visual_parameters.yaml'\n                                                                                           transmission_hw_interface:=hardware_interface/PositionJointInterface\n                                                                                           safety_limits:=false\n                                                                                           safety_pos_margin:=0.15\n                                                                                           safety_k_position:=20\n                                                                                           dual_arm:=true\n                                                                                           grasp_plugin:=false\n                                                                                           '$(find ur_gripper_gazebo)/urdf/ur_gripper_hande.xacro'\"/>\n\n  <!-- The semantic description that corresponds to the URDF -->\n  <param name=\"$(arg robot_description)_semantic\" textfile=\"$(find ur_hande_moveit_config)/config/ur_robot_gazebo.srdf\" />\n\n  <!-- Load updated joint limits (override information from URDF) -->\n  <group ns=\"$(arg robot_description)_planning\">\n    <rosparam command=\"load\" file=\"$(find ur_hande_moveit_config)/config/joint_limits.yaml\"/>\n    <rosparam command=\"load\" file=\"$(find ur_hande_moveit_config)/config/cartesian_limits.yaml\"/>\n  </group>\n\n  <!-- Load default settings for kinematics; these settings are overridden by settings in a node's namespace -->\n  <group ns=\"$(arg robot_description)_kinematics\">\n    <rosparam command=\"load\" file=\"$(find ur_hande_moveit_config)/config/kinematics.yaml\"/>\n\n  </group>\n\n</launch>\n"
  },
  {
    "path": "ur_hande_moveit_config/launch/planning_pipeline.launch.xml",
    "content": "<launch>\n\n  <!-- This file makes it easy to include different planning pipelines;\n       It is assumed that all planning pipelines are named XXX_planning_pipeline.launch  -->\n\n  <arg name=\"pipeline\" default=\"ompl\" />\n\n  <!-- define capabilites that are loaded on start (space seperated) -->\n  <arg name=\"capabilities\" default=\"\"/>\n\n  <!-- inhibit capabilites (space seperated) -->\n  <arg name=\"disable_capabilities\" default=\"\"/>\n\n  <include file=\"$(find ur_hande_moveit_config)/launch/$(arg pipeline)_planning_pipeline.launch.xml\">\n    <arg name=\"capabilities\" value=\"$(arg capabilities)\"/>\n    <arg name=\"disable_capabilities\" value=\"$(arg disable_capabilities)\"/>\n  </include>\n\n</launch>\n"
  },
  {
    "path": "ur_hande_moveit_config/launch/ros_controllers.launch",
    "content": "<?xml version=\"1.0\"?>\n<launch>\n\n  <!-- Load joint controller configurations from YAML file to parameter server -->\n  <rosparam file=\"$(find ur_hande_moveit_config)/config/ros_controllers.yaml\" command=\"load\"/>\n\n  <!-- Load the controllers -->\n  <node name=\"controller_spawner\" pkg=\"controller_manager\" type=\"spawner\" respawn=\"false\"\n    output=\"screen\" args=\"\"/>\n\n</launch>\n"
  },
  {
    "path": "ur_hande_moveit_config/launch/run_benchmark_ompl.launch",
    "content": "<launch>\n\n  <!-- This argument must specify the list of .cfg files to process for benchmarking -->\n  <arg name=\"cfg\" />\n\n  <!-- Load URDF -->\n  <include file=\"$(find ur_hande_moveit_config)/launch/planning_context.launch\">\n    <arg name=\"load_robot_description\" value=\"true\"/>\n  </include>\n\n  <!-- Start the database -->\n  <include file=\"$(find ur_hande_moveit_config)/launch/warehouse.launch\">\n    <arg name=\"moveit_warehouse_database_path\" value=\"moveit_ompl_benchmark_warehouse\"/>\n  </include>\n\n  <!-- Start Benchmark Executable -->\n  <node name=\"$(anon moveit_benchmark)\" pkg=\"moveit_ros_benchmarks\" type=\"moveit_run_benchmark\" args=\"$(arg cfg) --benchmark-planners\" respawn=\"false\" output=\"screen\">\n    <rosparam command=\"load\" file=\"$(find ur_hande_moveit_config)/config/ompl_planning.yaml\"/>\n  </node>\n\n</launch>\n"
  },
  {
    "path": "ur_hande_moveit_config/launch/sensor_manager.launch.xml",
    "content": "<launch>\n\n  <!-- This file makes it easy to include the settings for sensor managers -->\n\n  <!-- Params for 3D sensors config -->\n  <rosparam command=\"load\" file=\"$(find ur_hande_moveit_config)/config/sensors_3d.yaml\" />\n\n  <!-- Params for the octomap monitor -->\n  <!--  <param name=\"octomap_frame\" type=\"string\" value=\"some frame in which the robot moves\" /> -->\n  <param name=\"octomap_resolution\" type=\"double\" value=\"0.025\" />\n  <param name=\"max_range\" type=\"double\" value=\"5.0\" />\n\n  <!-- Load the robot specific sensor manager; this sets the moveit_sensor_manager ROS parameter -->\n  <arg name=\"moveit_sensor_manager\" default=\"ur_robot_gazebo\" />\n  <include file=\"$(find ur_hande_moveit_config)/launch/$(arg moveit_sensor_manager)_moveit_sensor_manager.launch.xml\" />\n\n</launch>\n"
  },
  {
    "path": "ur_hande_moveit_config/launch/setup_assistant.launch",
    "content": "<!-- Re-launch the MoveIt! Setup Assistant with this configuration package already loaded -->\n<launch>\n\n  <!-- Debug Info -->\n  <arg name=\"debug\" default=\"false\" />\n  <arg unless=\"$(arg debug)\" name=\"launch_prefix\" value=\"\" />\n  <arg     if=\"$(arg debug)\" name=\"launch_prefix\" value=\"gdb --ex run --args\" />\n\n  <!-- Run -->\n  <node pkg=\"moveit_setup_assistant\" type=\"moveit_setup_assistant\" name=\"moveit_setup_assistant\"\n        args=\"--config_pkg=ur_hande_moveit_config\"\n        launch-prefix=\"$(arg launch_prefix)\"\n        output=\"screen\" />\n\n</launch>\n"
  },
  {
    "path": "ur_hande_moveit_config/launch/start_moveit.launch",
    "content": "<launch>\n  <!-- Specific ur robot -->\n  <arg name=\"ur_robot\" default=\"ur3e\"/>\n\n  <!-- By default, we do not start a database (it can be large) -->\n  <arg name=\"db\" default=\"false\" />\n  <!-- Allow user to specify database location -->\n  <arg name=\"db_path\" default=\"$(find ur_hande_moveit_config)/default_warehouse_mongo_db\" />\n\n  <!-- By default, we are not in debug mode -->\n  <arg name=\"debug\" default=\"false\" />\n\n  <!--\n  By default, hide joint_state_publisher's GUI\n\n  MoveIt!'s \"demo\" mode replaces the real robot driver with the joint_state_publisher.\n  The latter one maintains and publishes the current joint configuration of the simulated robot.\n  It also provides a GUI to move the simulated robot around \"manually\".\n  This corresponds to moving around the real robot without the use of MoveIt.\n  -->\n  <arg name=\"use_gui\" default=\"false\" />\n\n  <!-- Gazebo specific options -->\n  <arg name=\"gazebo_gui\" default=\"true\"/>\n  <arg name=\"paused\" default=\"false\"/>\n  <!-- By default, use the urdf location provided from the package -->\n  <!-- <arg name=\"urdf_path\" default=\"$(find ur_hande_moveit_config)/config/ur3e_hande.urdf\"/> -->\n\n  <!-- launch the gazebo simulator and spawn the robot -->\n  <!-- <include file=\"$(find ur_hande_moveit_config)/launch/gazebo.launch\" >\n    <arg name=\"paused\" value=\"$(arg paused)\"/>\n    <arg name=\"gazebo_gui\" value=\"$(arg gazebo_gui)\"/>\n    <arg name=\"urdf_path\" value=\"$(arg urdf_path)\"/>\n  </include> -->\n\n  <remap from=\"/follow_joint_trajectory\" to=\"/arm_controller/follow_joint_trajectory\"/>\n  <!-- <include file=\"$(find ur_hande_moveit_config)/launch/ros_controllers.launch\"/> -->\n\n  <!-- If needed, broadcast static tf for robot root -->\n  <!-- <include file=\"$(find ur_hande_moveit_config)/launch/gazebo_static_tf.launch\"/> -->\n\n  <!-- We do not have a robot connected, so publish fake joint states -->\n  <!-- <node name=\"joint_state_publisher\" pkg=\"joint_state_publisher\" type=\"joint_state_publisher\">\n    <param name=\"use_gui\" value=\"$(arg use_gui)\"/>\n    <rosparam param=\"source_list\" subst_value=\"True\">[/joint_states]</rosparam>\n  </node> -->\n\n  <!-- Given the published joint states, publish tf for the robot links -->\n  <!-- <node name=\"robot_state_publisher\" pkg=\"robot_state_publisher\" type=\"robot_state_publisher\" respawn=\"true\" output=\"screen\" /> -->\n\n  <!-- Run the main MoveIt! executable without trajectory execution (we do not have controllers configured by default) -->\n  <!-- <group ns=\"\"> -->\n  <!-- <group ns=\"test\"> -->\n  <include file=\"$(find ur_hande_moveit_config)/launch/move_group.launch\">\n    <arg name=\"ur_robot\" default=\"$(arg ur_robot)\"/>\n    <arg name=\"allow_trajectory_execution\" value=\"true\"/>\n    <arg name=\"fake_execution\" value=\"false\"/>\n    <arg name=\"info\" value=\"true\"/>\n    <arg name=\"debug\" value=\"$(arg debug)\"/>\n  </include>  \n  <!-- </group> -->\n\n  <!-- Run Rviz and load the default config to see the state of the move_group node -->\n\n  <node name=\"$(anon rviz)\" launch-prefix=\"\" pkg=\"rviz\" type=\"rviz\" respawn=\"false\"\n\targs=\"-d $(find ur_hande_moveit_config)/launch/moveit.rviz\" output=\"screen\">\n    <rosparam command=\"load\" file=\"$(find ur_hande_moveit_config)/config/kinematics.yaml\"/>\n  </node>\n\n  <!-- If database loading was enabled, start mongodb as well -->\n  <include file=\"$(find ur_hande_moveit_config)/launch/default_warehouse_db.launch\" if=\"$(arg db)\">\n    <arg name=\"moveit_warehouse_database_path\" value=\"$(arg db_path)\"/>\n  </include>\n\n</launch>\n"
  },
  {
    "path": "ur_hande_moveit_config/launch/trajectory_execution.launch.xml",
    "content": "<launch>\n\n  <!-- This file makes it easy to include the settings for trajectory execution  -->\n\n  <arg name=\"execution_type\" default=\"interpolate\" />\n\n  <!-- Flag indicating whether MoveIt! is allowed to load/unload  or switch controllers -->\n  <arg name=\"moveit_manage_controllers\" default=\"true\"/>\n  <param name=\"moveit_manage_controllers\" value=\"$(arg moveit_manage_controllers)\"/>\n\n  <!-- When determining the expected duration of a trajectory, this multiplicative factor is applied to get the allowed duration of execution -->\n  <param name=\"trajectory_execution/allowed_execution_duration_scaling\" value=\"1.2\"/> <!-- default 1.2 -->\n  <!-- Allow more than the expected execution time before triggering a trajectory cancel (applied after scaling) -->\n  <param name=\"trajectory_execution/allowed_goal_duration_margin\" value=\"0.5\"/> <!-- default 0.5 -->\n  <!-- Allowed joint-value tolerance for validation that trajectory's first point matches current robot state -->\n  <param name=\"trajectory_execution/allowed_start_tolerance\" value=\"0.01\"/> <!-- default 0.01 -->\n\n  <!-- Load the robot specific controller manager; this sets the moveit_controller_manager ROS parameter -->\n  <arg name=\"moveit_controller_manager\" default=\"ur_robot_gazebo\" />\n  <include file=\"$(find ur_hande_moveit_config)/launch/$(arg moveit_controller_manager)_moveit_controller_manager.launch.xml\">\n    <arg name=\"execution_type\" value=\"$(arg execution_type)\" />\n  </include>\n\n</launch>\n"
  },
  {
    "path": "ur_hande_moveit_config/launch/ur_robot_gazebo_moveit_controller_manager.launch.xml",
    "content": "<launch>\n  <arg name=\"execution_type\" default=\"interpolate\" />\n\n  <!-- loads moveit_controller_manager on the parameter server which is taken as argument\n    if no argument is passed, moveit_simple_controller_manager will be set -->\n  <arg name=\"moveit_controller_manager\" default=\"moveit_simple_controller_manager/MoveItSimpleControllerManager\" />\n  <param name=\"moveit_controller_manager\" value=\"$(arg moveit_controller_manager)\"/>\n\n  <!-- loads ros_controllers to the param server -->\n  <rosparam file=\"$(find ur_hande_moveit_config)/config/ros_controllers.yaml\"/>\n</launch>\n"
  },
  {
    "path": "ur_hande_moveit_config/launch/ur_robot_gazebo_moveit_sensor_manager.launch.xml",
    "content": "<launch>\n\n</launch>\n"
  },
  {
    "path": "ur_hande_moveit_config/launch/warehouse.launch",
    "content": "<launch>\n\n  <!-- The path to the database must be specified -->\n  <arg name=\"moveit_warehouse_database_path\" />\n\n  <!-- Load warehouse parameters -->\n  <include file=\"$(find ur_hande_moveit_config)/launch/warehouse_settings.launch.xml\" />\n\n  <!-- Run the DB server -->\n  <node name=\"$(anon mongo_wrapper_ros)\" cwd=\"ROS_HOME\" type=\"mongo_wrapper_ros.py\" pkg=\"warehouse_ros_mongo\">\n    <param name=\"overwrite\" value=\"false\"/>\n    <param name=\"database_path\" value=\"$(arg moveit_warehouse_database_path)\" />\n  </node>\n\n</launch>\n"
  },
  {
    "path": "ur_hande_moveit_config/launch/warehouse_settings.launch.xml",
    "content": "<launch>\n  <!-- Set the parameters for the warehouse and run the mongodb server. -->\n\n  <!-- The default DB port for moveit (not default MongoDB port to avoid potential conflicts) -->\n  <arg name=\"moveit_warehouse_port\" default=\"33829\" />\n\n  <!-- The default DB host for moveit -->\n  <arg name=\"moveit_warehouse_host\" default=\"localhost\" />\n\n  <!-- Set parameters for the warehouse -->\n  <param name=\"warehouse_port\" value=\"$(arg moveit_warehouse_port)\"/>\n  <param name=\"warehouse_host\" value=\"$(arg moveit_warehouse_host)\"/>\n  <param name=\"warehouse_exec\" value=\"mongod\" />\n  <param name=\"warehouse_plugin\" value=\"warehouse_ros_mongo::MongoDatabaseConnection\" />\n\n</launch>\n"
  },
  {
    "path": "ur_hande_moveit_config/package.xml",
    "content": "<package>\n\n  <name>ur_hande_moveit_config</name>\n  <version>0.3.0</version>\n  <description>\n     An automatically generated package with all the configuration and launch files for using the ur_robot_gazebo with the MoveIt! Motion Planning Framework\n  </description>\n  <author email=\"cristianbehe@gmail.com\">Cristian Beltran</author>\n  <maintainer email=\"cristianbehe@gmail.com\">Cristian Beltran</maintainer>\n\n  <license>BSD</license>\n\n  <url type=\"website\">http://moveit.ros.org/</url>\n  <url type=\"bugtracker\">https://github.com/ros-planning/moveit/issues</url>\n  <url type=\"repository\">https://github.com/ros-planning/moveit</url>\n\n  <buildtool_depend>catkin</buildtool_depend>\n\n  <run_depend>moveit_ros_move_group</run_depend>\n  <run_depend>moveit_fake_controller_manager</run_depend>\n  <run_depend>moveit_kinematics</run_depend>\n  <run_depend>moveit_planners_ompl</run_depend>\n  <run_depend>moveit_ros_visualization</run_depend>\n  <run_depend>moveit_setup_assistant</run_depend>\n  <run_depend>moveit_simple_controller_manager</run_depend>\n  <run_depend>joint_state_publisher</run_depend>\n  <run_depend>joint_state_publisher_gui</run_depend>\n  <run_depend>robot_state_publisher</run_depend>\n  <run_depend>rviz</run_depend>\n  <run_depend>tf2_ros</run_depend>\n  <run_depend>xacro</run_depend>\n  <!-- This package is referenced in the warehouse launch files, but does not build out of the box at the moment. Commented the dependency until this works. -->\n  <!-- <run_depend>warehouse_ros_mongo</run_depend> -->\n    <run_depend>ur_gripper_gazebo</run_depend>\n\n\n</package>\n"
  },
  {
    "path": "ur_handeye_calibration/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.1.3)\nproject(ur_handeye_calibration)\n\n## Add support for C++11, supported in ROS Kinetic and newer\n# add_definitions(-std=c++11)\n\n## Find catkin macros and libraries\n## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)\n## is used, also find other catkin packages\nfind_package(catkin REQUIRED COMPONENTS\n  rospy\n)\n\ncatkin_package(\n#  INCLUDE_DIRS include\n#  LIBRARIES ur3e_rl\n#  CATKIN_DEPENDS ur3e_openai rospy\n#  DEPENDS system_lib\n)\n\n###########\n## Build ##\n###########\n\n## Specify additional locations of header files\n## Your package locations should be listed before other locations\n# include_directories(include)\ninclude_directories(\n  ${catkin_INCLUDE_DIRS}\n)\n\n## Declare a C++ library\n# add_library(${PROJECT_NAME}\n#   src/${PROJECT_NAME}/ur3e_rl.cpp\n# )\n\n## Add cmake target dependencies of the library\n## as an example, code may need to be generated before libraries\n## either from message generation or dynamic reconfigure\n# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})\n\n## Declare a C++ executable\n## With catkin_make all packages are built within a single CMake context\n## The recommended prefix ensures that target names across packages don't collide\n# add_executable(${PROJECT_NAME}_node src/ur3e_rl_exam.cpp)\n\n## Rename C++ executable without prefix\n## The above recommended prefix causes long target names, the following renames the\n## target back to the shorter version for ease of user use\n## e.g. \"rosrun someones_pkg node\" instead of \"rosrun someones_pkg someones_pkg_node\"\n# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX \"\")\n\n## Add cmake target dependencies of the executable\n## same as for the library above\n# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})\n\n## Specify libraries to link a library or executable target against\n# target_link_libraries(${PROJECT_NAME}_node\n#   ${catkin_LIBRARIES}\n# )\n\n#############\n## Install ##\n#############\n\n# all install targets should use catkin DESTINATION variables\n# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html\n\n## Mark executable scripts (Python etc.) for installation\n## in contrast to setup.py, you can choose the destination\n# install(PROGRAMS\n#   scripts/my_python_script\n#   DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}\n# )\n\n## Mark executables and/or libraries for installation\n# install(TARGETS ${PROJECT_NAME} ${PROJECT_NAME}_node\n#   ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}\n#   LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}\n#   RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}\n# )\n\n## Mark cpp header files for installation\n# install(DIRECTORY include/${PROJECT_NAME}/\n#   DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}\n#   FILES_MATCHING PATTERN \"*.h\"\n#   PATTERN \".svn\" EXCLUDE\n# )\n\n## Mark other files for installation (e.g. launch and bag files, etc.)\n# install(FILES\n#   # myfile1\n#   # myfile2\n#   DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}\n# )\n\n#############\n## Testing ##\n#############\n\n## Add gtest based cpp test target and link libraries\n# catkin_add_gtest(${PROJECT_NAME}-test test/test_ur3e_rl.cpp)\n# if(TARGET ${PROJECT_NAME}-test)\n#   target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME})\n# endif()\n\n## Add folders to be run by python nosetests\n# catkin_add_nosetests(test)\n"
  },
  {
    "path": "ur_handeye_calibration/config/settings.yaml",
    "content": "# AprilTag 3 code parameters\n# Find descriptions in apriltag/include/apriltag.h:struct apriltag_detector\n#                      apriltag/include/apriltag.h:struct apriltag_family\ntag_family:        'tag36h11' # options: tagStandard52h13, tagStandard41h12, tag36h11, tag25h9, tag16h5, tagCustom48h12, tagCircle21h7, tagCircle49h12\ntag_threads:       2          # default: 2\ntag_decimate:      1.0        # default: 1.0\ntag_blur:          0.0        # default: 0.0\ntag_refine_edges:  1          # default: 1\ntag_debug:         0          # default: 0\n# Other parameters\npublish_tf:        true       # default: false"
  },
  {
    "path": "ur_handeye_calibration/config/tags.yaml",
    "content": "standalone_tags:\n    [\n      {id: 0, size: 0.08},\n      # {id: 1, size: 0.05},\n    ]"
  },
  {
    "path": "ur_handeye_calibration/launch/apriltag_detect.launch",
    "content": "<launch>\n  <arg name=\"launch_prefix\" default=\"\" /> <!-- set to value=\"gdbserver localhost:10000\" for remote debugging -->\n  <arg name=\"node_namespace\" default=\"apriltag_ros_continuous_node\" />\n  <arg name=\"camera_name\" default=\"/camera/color\" />\n  <arg name=\"camera_frame\" default=\"camera\" />\n  <arg name=\"image_topic\" default=\"image_raw\" />\n\n  <!-- Set parameters -->\n  <rosparam command=\"load\" file=\"$(find ur_handeye_calibration)/config/settings.yaml\" ns=\"$(arg node_namespace)\" />\n  <rosparam command=\"load\" file=\"$(find ur_handeye_calibration)/config/tags.yaml\" ns=\"$(arg node_namespace)\" />\n  \n  <node pkg=\"apriltag_ros\" type=\"apriltag_ros_continuous_node\" name=\"$(arg node_namespace)\" clear_params=\"true\" output=\"screen\" launch-prefix=\"$(arg launch_prefix)\" >\n    <!-- Remap topics from those used in code to those on the ROS network -->\n    <remap from=\"image_rect\" to=\"$(arg camera_name)/$(arg image_topic)\" />\n    <remap from=\"camera_info\" to=\"$(arg camera_name)/camera_info\" />\n\n    <param name=\"camera_frame\" type=\"str\" value=\"$(arg camera_frame)\" />\n    <param name=\"publish_tag_detections_image\" type=\"bool\" value=\"true\" />      <!-- default: false -->\n  </node>\n</launch>"
  },
  {
    "path": "ur_handeye_calibration/launch/aruco_detect.launch",
    "content": "<launch>\n    <arg name=\"marker_size\" default=\"0.08\" doc=\"Size of the ArUco marker used, in meters\" />\n    <arg name=\"marker_id\" default=\"0\" doc=\"The ID of the ArUco marker used\" />\n\n    <include file =\"$(find aruco_detect)/launch/aruco_detect.launch\">\n  \t\t<arg name=\"camera\" default=\"/camera/color\"/> <!-- which mode of camera is used-->\n  \t\t<arg name=\"image\" default=\"image_raw\"/>\n      <arg name=\"transport\" default=\"raw\"/>\n  \t</include>\n\n    <!-- start ArUco -->\n    <node name=\"aruco_tracker\" pkg=\"aruco_ros\" type=\"single\">\n        <remap from=\"/camera_info\" to=\"/camera/color/camera_info\" />\n        <remap from=\"/image\" to=\"/camera/color/image_raw\" />\n        <param name=\"image_is_rectified\" value=\"True\"/>\n        <param name=\"marker_size\"        value=\"$(arg marker_size)\"/>\n        <param name=\"marker_id\"          value=\"$(arg marker_id)\"/>\n        <param name=\"reference_frame\"    value=\"camera\"/>\n        <param name=\"camera_frame\"       value=\"camera\"/>\n        <!-- <param name=\"reference_frame\"    value=\"camera_link\"/> -->\n        <!-- <param name=\"camera_frame\"       value=\"camera_rgb_optical_frame\"/> -->\n        <param name=\"marker_frame\"       value=\"camera_marker\" />\n    </node>\n\n</launch>"
  },
  {
    "path": "ur_handeye_calibration/launch/camera.launch",
    "content": "<launch>\n    <param name=\"/realsense2_camera/robot_description\" \n           command=\"$(find xacro)/xacro --inorder '$(find ur_gripper_description)/urdf/realsense_rs435.urdf.xacro'\" />\n    \n    <node name=\"spawn_gazebo_model_realsense2_camera\" pkg=\"gazebo_ros\" type=\"spawn_model\"\n          args=\"-urdf -param realsense2_camera/robot_description \n                -model realsense2_camera \n                -x -0.5 -y 0.0 -z 1.80 \n                -P 1.57079632679 -Y 1.57079632679\" respawn=\"false\" output=\"screen\" />\n</launch>\n"
  },
  {
    "path": "ur_handeye_calibration/launch/ur3e_fixed_handeye_calibration.launch",
    "content": "<?xml version=\"1.0\" ?>\n<launch>\n    <!-- The input reference frames -->\n    <arg name=\"ur_calibration_ns\" default=\"/\" />\n\n    <arg name=\"robot_base_frame\" default=\"base_link\" />\n    <arg name=\"robot_effector_frame\" default=\"tool0\" />\n    <arg name=\"tracking_base_frame\" default=\"camera\" />\n    <arg name=\"tracking_marker_frame\" default=\"tag_0\" />\n\n    <arg name=\"online\" default=\"false\"/>\n\n    <node name=\"handeye_server\" pkg=\"handeye\" type=\"handeye_server.py\"/>\n\n    <group ns=\"$(arg ur_calibration_ns)\">\n        <param name=\"robot_base_frame\" value=\"$(arg robot_base_frame)\" />\n        <param name=\"robot_effector_frame\" value=\"$(arg robot_effector_frame)\" />\n        <param name=\"tracking_base_frame\" value=\"$(arg tracking_base_frame)\" />\n        <param name=\"tracking_marker_frame\" value=\"$(arg tracking_marker_frame)\" />\n        <param name=\"online\" value=\"$(arg online)\" />\n\n        <node name=\"ur_handeye_calibration_capturer\"\n            pkg=\"ur_handeye_calibration\"\n            type=\"calibrator.py\"\n            output=\"screen\" >\n        </node>\n    </group>\n</launch>"
  },
  {
    "path": "ur_handeye_calibration/package.xml",
    "content": "<?xml version=\"1.0\"?>\n<package>\n  <name>ur_handeye_calibration</name>\n  <version>0.1.0</version>\n  <description>The ur_handeye_calibration package</description>\n\n  <maintainer email=\"beltran@hlab.sys.es.osaka-u.ac.jp\">Cristian Beltran</maintainer>\n\n  <license>MIT</license>\n\n  <buildtool_depend>catkin</buildtool_depend>\n  \n</package>\n"
  },
  {
    "path": "ur_handeye_calibration/scripts/calibrate.py",
    "content": "# tf2 workaround for Python3\nimport sys\nsys.path[:0] = ['/usr/local/lib/python3.6/dist-packages/'] \n\nimport tf\nimport rospy\nimport rospkg\n\nfrom handeye import HandEyeCalibrator, Setup, solver\nimport numpy as np\nnp.set_printoptions(suppress=True)\nnp.set_printoptions(linewidth=np.inf)\nimport baldor as br\nfrom pyquaternion import Quaternion\nfrom ur_control import transformations as tr\n\n# get an instance of RosPack with the default search paths\nrospack = rospkg.RosPack()\n# get the file path for rospy_tutorials\npackpath = rospack.get_path(\"ur_handeye_calibration\")\ncalibration_file = rospy.get_param( ns + \"calibration_file\", default=packpath + '/config/calibration_data_apriltag.npy')\n\ndef calibrate_simulation(cto_poses, bte_poses):\n    calibrator = HandEyeCalibrator(setup=Setup.Fixed)\n    for cto_pose, bte_pose in zip(cto_poses, bte_poses):\n        bte = tr.pose_to_transform(bte_pose)\n        cto = tr.pose_to_transform(cto_pose)\n        calibrator.assess_tcp_pose(bte)\n        calibrator.add_sample(bte, cto)\n\n    Xest = calibrator.solve(method=solver.Daniilidis1999)\n    Xpose = tr.pose_quaternion_from_matrix(Xest)\n    print(\"via Daniilidis1999:\", Xpose)\n\n    rot_rmse, trans_rmse = calibrator.compute_reprojection_error(Xest)\n    assert(rot_rmse > br._FLOAT_EPS)\n    assert(trans_rmse > br._FLOAT_EPS)\n\n    rospy.init_node('ur3_force_control')\n\n    tfbr = tf.TransformBroadcaster()\n    rate = rospy.Rate(10.0)\n    while not rospy.is_shutdown():\n        tfbr.sendTransform(Xpose[:3],\n                         Xpose[3:],\n                         rospy.Time.now(),\n                         \"camera_es_link\",\n                         \"base_link\")\n        rate.sleep()\n\n\n\ndef main():\n    \"\"\" Main function to be run. \"\"\"\n    \n    all_poses = np.load(calibration_file)\n    # print(all_poses) \n    cto_poses = all_poses[:,0,:] # camera to object\n    bte_poses = all_poses[:,1,:] # base to end-effector\n\n    calibrate_simulation(cto_poses, bte_poses)\n\n\nif __name__ == \"__main__\":\n    main()\n\n"
  },
  {
    "path": "ur_handeye_calibration/scripts/calibrator.py",
    "content": "#!/usr/bin/env python3\n# tf2 workaround for Python3\nimport sys\nsys.path[:0] = ['/usr/local/lib/python3.6/dist-packages/'] \n\nimport rospy\nimport rospkg\nimport tf\nimport timeit\nimport numpy as np\nnp.set_printoptions(suppress=True)\nnp.set_printoptions(linewidth=np.inf)\n\nfrom ur_control import transformations, conversions\nfrom ur_control.constants import ROBOT_GAZEBO, ROBOT_UR_RTDE_DRIVER, ROBOT_GAZEBO_DUAL_RIGHT\nfrom ur_control.compliance_controller import ComplianceController\n\nfrom handeye.srv import CalibrateHandEye, CalibrateHandEyeRequest\n\nimport signal\ndef signal_handler(sig, frame):\n    print('You pressed Ctrl+C!')\n    sys.exit(0)\nsignal.signal(signal.SIGINT, signal_handler)\n\nrospy.init_node('ur_handeye_calibration_capture')\nglobal listener\nlistener = tf.TransformListener()\n\nns = rospy.get_param(\"ur_calibration_ns\", default=\"/\")\nns += \"\" if ns.endswith(\"/\") else \"/\"\n\ncamera_frame = rospy.get_param( ns + \"tracking_base_frame\", default=\"camera_link\")\nmarker_frame = rospy.get_param( ns + \"tracking_marker_frame\", default=\"marker_link\")\nrobot_frame = rospy.get_param( ns + \"robot_base_frame\", default=\"base_link\")\nendeffector_frame = rospy.get_param( ns + \"robot_effector_frame\", default=\"ee_link\")\n\ncamera_setup = rospy.get_param( ns + \"camera_setup\", default=\"Fixed\")\ncalibration_solver = rospy.get_param( ns + \"solver\", default=\"Daniilidis1999\")\n\n# get an instance of RosPack with the default search paths\nrospack = rospkg.RosPack()\n# get the file path for rospy_tutorials\npackpath = rospack.get_path(\"ur_handeye_calibration\")\nsavefolder = rospy.get_param( ns + \"calibration_file\", default=packpath + '/config/')\nprint(\"wdf\", savefolder)\n\n# driver = ROBOT_GAZEBO_DUAL_RIGHT #ROBOT_GAZEBO\ndriver = ROBOT_GAZEBO #ROBOT_GAZEBO\n\narm = None\ntf_data = []\n\ndef append_tf_data():\n    try:\n        rospy.sleep(0.1)\n\n        trans, rot = listener.lookupTransform(camera_frame, marker_frame, rospy.Time(0))\n        objTocamera = trans + rot\n        # print(\"btc\", np.round(objTocamera[:3],4))\n        \n        trans, rot = listener.lookupTransform(robot_frame, endeffector_frame, rospy.Time(0))\n        eeTobase = trans + rot\n        # print(\"bte\", np.round(eeTobase[:3],4))\n\n        tf_data.append([objTocamera, eeTobase])\n    except (tf.LookupException, tf.ConnectivityException, tf.ExtrapolationException):\n        print(\"Failed =(\")\n\ndef rotate_wrist(q, changes):\n    cq = np.copy(q)\n    for change in changes:\n        for p in change:\n            cq[p[0]] = p[1]\n        arm.set_joint_positions(cq, wait=True, target_time=0.5)\n        append_tf_data()\n        # input(\"Enter to continue\")\n\n\ndef move_arm(wait=True):\n    q = [2.37191, -1.88688, -1.82035,  0.4766 ,  2.31206,  3.18758]\n    arm.set_joint_positions(positions=q, wait=wait, target_time=0.5)\n    initial_ee = arm.end_effector(q)\n\n    deltas = [\n        [0.0, 0.03, 0.08, 0.13, 0.18], # x\n        [0.0, 0.03, 0.08, 0.13, 0.18], # y\n        [0.0, 0.03, 0.08, 0.13, 0.18], # z\n        ]\n\n    X = 5\n    Y = 5\n    Z = 3\n\n    pose_changes = [\n                    [[4, 2.05], [5, 3.20]],\n                    [[4, 2.3], [5, 3.20]],\n                    [[4, 2.1936], [5, 3.8]],\n                    [[4, 2.05], [5, 3.8]],\n                    [[4, 2.3], [5, 3.8]],\n                    [[4, 2.1936], [5, 2.6]],\n                    [[4, 2.05], [5, 2.6]],\n                    [[4, 2.3], [5, 2.6]],\n                    ]\n\n    for i in range(Z):\n        x = y = 0\n        dx = 0\n        dy = -1\n        for _ in range(max(X, Y)**2):\n            if (-X/2 < x <= X/2) and (-Y/2 < y <= Y/2):\n                delta = np.zeros(6)\n                delta[0] = deltas[0][x+1]\n                delta[2] = deltas[2][y+1]\n                delta[1] = deltas[1][i]\n                cpose = transformations.pose_euler_to_quaternion(initial_ee, delta, ee_rotation=False)\n                arm.set_target_pose(pose=cpose, wait=True, target_time=0.5)\n                # input(\"Enter to continue\")\n                append_tf_data()\n\n                q = arm.joint_angles()\n                rotate_wrist(q, pose_changes)\n\n            if x == y or (x < 0 and x == -y) or (x > 0 and x == 1-y):\n                dx, dy = -dy, dx\n            x, y = x+dx, y+dy\n\ndef main():\n    \"\"\" Main function to be run. \"\"\"\n\n    online = rospy.get_param(ns + \"online\", default=False)\n\n    if online:\n        global arm\n        arm = ComplianceController(ft_sensor=False, driver=driver, ee_transform=[-0.,   -0.,   0.05,  0,    0.,    0.,    1.  ])\n        move_arm()\n        np.save(savefolder + \"calibration_data_apriltag.npy\", tf_data)\n    else:\n        tf_data = np.load(savefolder + \"calibration_data_apriltag.npy\")\n\n    srv = rospy.ServiceProxy('handeye_calibration', CalibrateHandEye)\n    srv.wait_for_service(timeout=2.0)\n    req = CalibrateHandEyeRequest()\n    req.setup = camera_setup\n    req.solver = calibration_solver\n    # Populate the request\n    bte = []\n    cto = []\n    for data in tf_data:\n        cto.append(conversions.to_pose_msg(data[0]))\n        bte.append(conversions.to_pose_msg(data[1]))\n    \n    req.effector_wrt_world.poses = bte\n    req.object_wrt_sensor.poses = cto\n\n    response = srv.call(req)\n    print(\"success\",response.success)\n    print(\"rotation_rmse\",response.rotation_rmse)\n    print(\"translation_rmse\",response.translation_rmse)\n    print(\"sensor_frame\",response.sensor_frame)\n\n\nif __name__ == \"__main__\":\n    main()\n\n"
  },
  {
    "path": "ur_handeye_calibration/scripts/capture_camera_poses.py",
    "content": "#!/usr/bin/env python3\n# tf2 workaround for Python3\nimport sys\nsys.path[:0] = ['/usr/local/lib/python3.6/dist-packages/'] \n\nimport rospy\nimport rospkg\nimport tf\nimport numpy as np\nnp.set_printoptions(suppress=True)\nnp.set_printoptions(linewidth=np.inf)\n\nfrom ur_control import transformations\nfrom ur_control.constants import ROBOT_GAZEBO, ROBOT_UR_RTDE_DRIVER, ROBOT_GAZEBO_DUAL_RIGHT\nfrom ur_control.compliance_controller import ComplianceController\nimport timeit\n\nimport sys\nimport signal\ndef signal_handler(sig, frame):\n    print('You pressed Ctrl+C!')\n    sys.exit(0)\nsignal.signal(signal.SIGINT, signal_handler)\n\n\nrospy.init_node('ur_handeye_calibration_capture')\nlistener = tf.TransformListener()\narm = None\ntf_data = []\n\nns = rospy.get_param(\"ur_calibration_ns\", default=\"/\")\nns += \"\" if ns.endswith(\"/\") else \"/\"\n\ncamera_frame = rospy.get_param( ns + \"tracking_base_frame\", default=\"camera_link\")\nmarker_frame = rospy.get_param( ns + \"tracking_marker_frame\", default=\"marker_link\")\nrobot_frame = rospy.get_param( ns + \"robot_base_frame\", default=\"base_link\")\nendeffector_frame = rospy.get_param( ns + \"robot_effector_frame\", default=\"ee_link\")\n# get an instance of RosPack with the default search paths\nrospack = rospkg.RosPack()\n# get the file path for rospy_tutorials\npackpath = rospack.get_path(\"ur_handeye_calibration\")\nsavefolder = rospy.get_param( ns + \"save_to\", default=packpath + '/config/')\n\ndef append_tf_data():\n    try:\n        rospy.sleep(0.1)\n\n        trans, rot = listener.lookupTransform(camera_frame, marker_frame, rospy.Time(0))\n        objTocamera = trans + rot\n        # print(\"btc\", np.round(objTocamera[:3],4))\n        \n        trans, rot = listener.lookupTransform(robot_frame, endeffector_frame, rospy.Time(0))\n        eeTobase = trans + rot\n        # print(\"bte\", np.round(eeTobase[:3],4))\n\n        tf_data.append([objTocamera, eeTobase])\n    except (tf.LookupException, tf.ConnectivityException, tf.ExtrapolationException):\n        print(\"Failed =(\")\n\ndef rotate_wrist(q, changes):\n    cq = np.copy(q)\n    for change in changes:\n        for p in change:\n            cq[p[0]] = p[1]\n        arm.set_joint_positions(cq, wait=True, target_time=0.5)\n        append_tf_data()\n        # input(\"Enter to continue\")\n\n\ndef move_arm(wait=True):\n    q = [2.37191, -1.88688, -1.82035,  0.4766 ,  2.31206,  3.18758]\n    arm.set_joint_positions(positions=q, wait=wait, target_time=0.5)\n    initial_ee = arm.end_effector(q)\n\n    deltas = [\n        [0.0, 0.03, 0.08, 0.13, 0.18], # x\n        [0.0, 0.03, 0.08, 0.13, 0.18], # y\n        [0.0, 0.03, 0.08, 0.13, 0.18], # z\n        ]\n\n    X = 5\n    Y = 5\n    Z = 3\n\n    pose_changes = [\n                    [[4, 2.05], [5, 3.20]],\n                    [[4, 2.3], [5, 3.20]],\n                    [[4, 2.1936], [5, 3.8]],\n                    [[4, 2.05], [5, 3.8]],\n                    [[4, 2.3], [5, 3.8]],\n                    [[4, 2.1936], [5, 2.6]],\n                    [[4, 2.05], [5, 2.6]],\n                    [[4, 2.3], [5, 2.6]],\n                    ]\n\n    for i in range(Z):\n        x = y = 0\n        dx = 0\n        dy = -1\n        for _ in range(max(X, Y)**2):\n            if (-X/2 < x <= X/2) and (-Y/2 < y <= Y/2):\n                delta = np.zeros(6)\n                delta[0] = deltas[0][x+1]\n                delta[2] = deltas[2][y+1]\n                delta[1] = deltas[1][i]\n                cpose = transformations.pose_euler_to_quaternion(initial_ee, delta, ee_rotation=False)\n                arm.set_target_pose(pose=cpose, wait=True, target_time=0.5)\n                # input(\"Enter to continue\")\n                append_tf_data()\n\n                q = arm.joint_angles()\n                rotate_wrist(q, pose_changes)\n\n            if x == y or (x < 0 and x == -y) or (x > 0 and x == 1-y):\n                dx, dy = -dy, dx\n            x, y = x+dx, y+dy\n\n    np.save(savefolder + \"calibration_data_apriltag\", tf_data)\n\n\ndef main():\n    \"\"\" Main function to be run. \"\"\"\n    # driver = ROBOT_GAZEBO_DUAL_RIGHT #ROBOT_GAZEBO\n    driver = ROBOT_GAZEBO #ROBOT_GAZEBO\n\n    global arm\n    arm = ComplianceController(ft_sensor=False, driver=driver, ee_transform=[-0.,   -0.,   0.05,  0,    0.,    0.,    1.  ])\n\n    real_start_time = timeit.default_timer()\n    ros_start_time = rospy.get_time()\n\n    move_arm()\n\n    print(\"real time\", round(timeit.default_timer() - real_start_time, 3))\n    print(\"ros time\", round(rospy.get_time() - ros_start_time, 3))\n\n\nif __name__ == \"__main__\":\n    main()\n\n"
  },
  {
    "path": "ur_pykdl/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.1.3)\nproject(ur_pykdl)\n\nfind_package(catkin\n  REQUIRED\n  COMPONENTS\n  rospy\n  geometry_msgs\n  sensor_msgs\n  tf\n)\n\ncatkin_python_setup()\n\ncatkin_package(\n  CATKIN_DEPENDS\n  rospy\n  geometry_msgs\n  sensor_msgs\n  tf\n  DEPENDS\n)\n\ninstall(\n  DIRECTORY scripts/\n  DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}\n  USE_SOURCE_PERMISSIONS\n)\n"
  },
  {
    "path": "ur_pykdl/LICENSE",
    "content": "Copyright (c) 2013-2014, Rethink Robotics\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice,\n   this list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\n   notice, this list of conditions and the following disclaimer in the\n   documentation and/or other materials provided with the distribution.\n3. Neither the name of the Rethink Robotics nor the names of its\n   contributors may be used to endorse or promote products derived from\n   this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.\n"
  },
  {
    "path": "ur_pykdl/package.xml",
    "content": "<?xml version=\"1.0\"?>\n<package>\n  <name>ur_pykdl</name>\n  <version>0.1.0</version>\n  <description>\n    Simple implementation of PyKDL, kdl_parser_py\n  </description>\n\n  <author email=\"beltran@hlab.sys.es.osaka-u.ac.jp\">Cristian Beltran</author>\n  <maintainer email=\"beltran@hlab.sys.es.osaka-u.ac.jp\">Cristian Beltran</maintainer>\n  <license>BSD</license>\n\n  <buildtool_depend>catkin</buildtool_depend>\n\n  <build_depend>rospy</build_depend>\n  <build_depend>geometry_msgs</build_depend>\n  <build_depend>sensor_msgs</build_depend>\n  <build_depend>tf</build_depend>\n\n  <run_depend>rospy</run_depend>\n  <run_depend>geometry_msgs</run_depend>\n  <run_depend>sensor_msgs</run_depend>\n  <run_depend>tf</run_depend>\n\n</package>\n"
  },
  {
    "path": "ur_pykdl/scripts/display_urdf.py",
    "content": "#!/usr/bin/python\n\n# Copyright (c) 2013-2014, Rethink Robotics\n# All rights reserved.\n#\n# Redistribution and use in source and binary forms, with or without\n# modification, are permitted provided that the following conditions are met:\n#\n# 1. Redistributions of source code must retain the above copyright notice,\n#    this list of conditions and the following disclaimer.\n# 2. Redistributions in binary form must reproduce the above copyright\n#    notice, this list of conditions and the following disclaimer in the\n#    documentation and/or other materials provided with the distribution.\n# 3. Neither the name of the Rethink Robotics nor the names of its\n#    contributors may be used to endorse or promote products derived from\n#    this software without specific prior written permission.\n#\n# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n# POSSIBILITY OF SUCH DAMAGE.\n\nimport sys\nimport argparse\n\nfrom urdf_parser_py.urdf import URDF\n\n\ndef main():\n    parser = argparse.ArgumentParser(usage='Load an URDF file')\n    parser.add_argument('file', type=argparse.FileType('r'), nargs='?',\n                        default=None, help='File to load. Use - for stdin')\n    parser.add_argument('-o', '--output', type=argparse.FileType('w'),\n                        default=None, help='Dump file to XML')\n    args = parser.parse_args()\n\n    if args.file is None:\n        print('FROM PARAM SERVER')\n        robot = URDF.from_parameter_server()\n    else:\n        print('FROM STRING')\n        robot = URDF.from_xml_string(args.file.read())\n\n    print(robot)\n\n    if args.output is not None:\n        args.output.write(robot.to_xml_string())\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "ur_pykdl/scripts/ur_kinematics.py",
    "content": "#!/usr/bin/python\n\n# Copyright (c) 2013-2014, Rethink Robotics\n# All rights reserved.\n#\n# Redistribution and use in source and binary forms, with or without\n# modification, are permitted provided that the following conditions are met:\n#\n# 1. Redistributions of source code must retain the above copyright notice,\n#    this list of conditions and the following disclaimer.\n# 2. Redistributions in binary form must reproduce the above copyright\n#    notice, this list of conditions and the following disclaimer in the\n#    documentation and/or other materials provided with the distribution.\n# 3. Neither the name of the Rethink Robotics nor the names of its\n#    contributors may be used to endorse or promote products derived from\n#    this software without specific prior written permission.\n#\n# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n# POSSIBILITY OF SUCH DAMAGE.\n\nimport rospy\n\nfrom ur_pykdl import ur_kinematics\n\n\ndef main():\n    rospy.init_node('ur_kinematics')\n    print('*** ur PyKDL Kinematics ***\\n')\n    kin = ur_kinematics('right')\n\n    print('\\n*** ur Description ***\\n')\n    kin.print_robot_description()\n    print('\\n*** ur KDL Chain ***\\n')\n    kin.print_kdl_chain()\n    # FK Position\n    print('\\n*** ur Position FK ***\\n')\n    print((kin.forward_position_kinematics()))\n    # FK Velocity\n    # print '\\n*** ur Velocity FK ***\\n'\n    # kin.forward_velocity_kinematics()\n    # IK\n    print('\\n*** ur Position IK ***\\n')\n    pos = [0.582583, -0.180819, 0.216003]\n    rot = [0.03085, 0.9945, 0.0561, 0.0829]\n    print((kin.inverse_kinematics(pos)))  # position, don't care orientation\n    print('\\n*** ur Pose IK ***\\n')\n    print((kin.inverse_kinematics(pos, rot)))  # position & orientation\n    # Jacobian\n    print('\\n*** ur Jacobian ***\\n')\n    print((kin.jacobian()))\n    # Jacobian Transpose\n    print('\\n*** ur Jacobian Tranpose***\\n')\n    print((kin.jacobian_transpose()))\n    # Jacobian Pseudo-Inverse (Moore-Penrose)\n    print('\\n*** ur Jacobian Pseudo-Inverse (Moore-Penrose)***\\n')\n    print((kin.jacobian_pseudo_inverse()))\n    # Joint space mass matrix\n    print('\\n*** ur Joint Inertia ***\\n')\n    print((kin.inertia()))\n    # Cartesian space mass matrix\n    print('\\n*** ur Cartesian Inertia ***\\n')\n    print((kin.cart_inertia()))\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "ur_pykdl/setup.py",
    "content": "#!/usr/bin/env python\nfrom distutils.core import setup\nfrom catkin_pkg.python_setup import generate_distutils_setup\n\nd = generate_distutils_setup()\nd['packages'] = ['ur_pykdl', 'ur_kdl', 'urdf_parser_py']\nd['package_dir'] = {'': 'src'}\n\nsetup(**d)\n"
  },
  {
    "path": "ur_pykdl/src/ur_kdl/__init__.py",
    "content": "from .kdl_parser import (\n    euler_to_quat,\n    urdf_pose_to_kdl_frame,\n    urdf_joint_to_kdl_joint,\n    urdf_inertial_to_kdl_rbi,\n    kdl_tree_from_urdf_model,\n)\n"
  },
  {
    "path": "ur_pykdl/src/ur_kdl/kdl_kinematics.py",
    "content": "#!/usr/bin/env python\n#\n# Provides wrappers for PyKDL kinematics.\n#\n# Copyright (c) 2012, Georgia Tech Research Corporation\n# All rights reserved.\n#\n# Redistribution and use in source and binary forms, with or without\n# modification, are permitted provided that the following conditions are met:\n#     * Redistributions of source code must retain the above copyright\n#       notice, this list of conditions and the following disclaimer.\n#     * Redistributions in binary form must reproduce the above copyright\n#       notice, this list of conditions and the following disclaimer in the\n#       documentation and/or other materials provided with the distribution.\n#     * Neither the name of the Georgia Tech Research Corporation nor the\n#       names of its contributors may be used to endorse or promote products\n#       derived from this software without specific prior written permission.\n#\n# THIS SOFTWARE IS PROVIDED BY GEORGIA TECH RESEARCH CORPORATION ''AS IS'' AND\n# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n# DISCLAIMED. IN NO EVENT SHALL GEORGIA TECH BE LIABLE FOR ANY DIRECT, INDIRECT,\n# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\n# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n#\n# Author: Kelsey Hawkins\n\nimport numpy as np\n\nimport rospy\n\nimport PyKDL as kdl\n\nimport hrl_geom.transformations as trans\nfrom hrl_geom.pose_converter import PoseConv\nfrom .kdl_parser import kdl_tree_from_urdf_model\nfrom urdf_parser_py.urdf import URDF\n\ndef create_kdl_kin(base_link, end_link, urdf_filename=None):\n    if urdf_filename is None:\n        robot = URDF.load_from_parameter_server(verbose=False)\n    else:\n        robot = URDF.load_xml_file(urdf_filename, verbose=False)\n    return KDLKinematics(robot, base_link, end_link)\n\n##\n# Provides wrappers for performing KDL functions on a designated kinematic\n# chain given a URDF representation of a robot.\n\nclass KDLKinematics(object):\n    ##\n    # Constructor\n    # @param urdf URDF object of robot.\n    # @param base_link Name of the root link of the kinematic chain.\n    # @param end_link Name of the end link of the kinematic chain.\n    # @param kdl_tree Optional KDL.Tree object to use. If None, one will be generated\n    #                          from the URDF.\n    def __init__(self, urdf, base_link, end_link, kdl_tree=None):\n        if kdl_tree is None:\n            kdl_tree = kdl_tree_from_urdf_model(urdf)\n        self.tree = kdl_tree\n        self.urdf = urdf\n\n        base_link = base_link.split(\"/\")[-1] # for dealing with tf convention\n        end_link = end_link.split(\"/\")[-1] # for dealing with tf convention\n        self.chain = kdl_tree.getChain(base_link, end_link)\n        self.base_link = base_link\n        self.end_link = end_link\n\n        # record joint information in easy-to-use lists\n        self.joint_limits_lower = []\n        self.joint_limits_upper = []\n        self.joint_safety_lower = []\n        self.joint_safety_upper = []\n        self.joint_types = []\n        for jnt_name in self.get_joint_names():\n            jnt = urdf.joints[jnt_name]\n            if jnt.limits is not None:\n                self.joint_limits_lower.append(jnt.limits.lower)\n                self.joint_limits_upper.append(jnt.limits.upper)\n            else:\n                self.joint_limits_lower.append(None)\n                self.joint_limits_upper.append(None)\n            if jnt.safety is not None:\n                self.joint_safety_lower.append(jnt.safety.lower)\n                self.joint_safety_upper.append(jnt.safety.upper)\n            elif jnt.limits is not None:\n                self.joint_safety_lower.append(jnt.limits.lower)\n                self.joint_safety_upper.append(jnt.limits.upper)\n            else:\n                self.joint_safety_lower.append(None)\n                self.joint_safety_upper.append(None)\n            self.joint_types.append(jnt.joint_type)\n        def replace_none(x, v):\n            if x is None:\n                return v\n            return x\n        self.joint_limits_lower = np.array([replace_none(jl, -np.inf) \n                                            for jl in self.joint_limits_lower])\n        self.joint_limits_upper = np.array([replace_none(jl, np.inf) \n                                            for jl in self.joint_limits_upper])\n        self.joint_safety_lower = np.array([replace_none(jl, -np.inf) \n                                            for jl in self.joint_safety_lower])\n        self.joint_safety_upper = np.array([replace_none(jl, np.inf) \n                                            for jl in self.joint_safety_upper])\n        self.joint_types = np.array(self.joint_types)\n        self.num_joints = len(self.get_joint_names())\n\n        self._fk_kdl = kdl.ChainFkSolverPos_recursive(self.chain)\n        self._ik_v_kdl = kdl.ChainIkSolverVel_pinv(self.chain)\n        self._ik_p_kdl = kdl.ChainIkSolverPos_NR(self.chain, self._fk_kdl, self._ik_v_kdl)\n        self._jac_kdl = kdl.ChainJntToJacSolver(self.chain)\n        self._dyn_kdl = kdl.ChainDynParam(self.chain, kdl.Vector.Zero())\n\n    ##\n    # @return List of link names in the kinematic chain.\n    def get_link_names(self, joints=False, fixed=True):\n        return self.urdf.get_chain(self.base_link, self.end_link, joints, fixed)\n\n    ##\n    # @return List of joint names in the kinematic chain.\n    def get_joint_names(self, links=False, fixed=False):\n        return self.urdf.get_chain(self.base_link, self.end_link,\n                                   links=links, fixed=fixed)\n\n    def get_joint_limits(self):\n        return self.joint_limits_lower, self.joint_limits_upper\n\n    def FK(self, q, link_number=None):\n        if link_number is not None:\n            end_link = self.get_link_names(fixed=False)[link_number]\n        else:\n            end_link = None\n        homo_mat = self.forward(q, end_link)\n        pos, rot = PoseConv.to_pos_rot(homo_mat)\n        return pos, rot\n\n\n    ##\n    # Forward kinematics on the given joint angles, returning the location of the\n    # end_link in the base_link's frame.\n    # @param q List of joint angles for the full kinematic chain.\n    # @param end_link Name of the link the pose should be obtained for.\n    # @param base_link Name of the root link frame the end_link should be found in.\n    # @return 4x4 numpy.mat homogeneous transformation\n    def forward(self, q, end_link=None, base_link=None):\n        link_names = self.get_link_names()\n        if end_link is None:\n            end_link = self.chain.getNrOfSegments()\n        else:\n            end_link = end_link.split(\"/\")[-1]\n            if end_link in link_names:\n                end_link = link_names.index(end_link)\n            else:\n                print((\"Target segment %s not in KDL chain\" % end_link))\n                return None\n        if base_link is None:\n            base_link = 0\n        else:\n            base_link = base_link.split(\"/\")[-1]\n            if base_link in link_names:\n                base_link = link_names.index(base_link)\n            else:\n                print((\"Base segment %s not in KDL chain\" % base_link))\n                return None\n        base_trans = self._do_kdl_fk(q, base_link)\n        if base_trans is None:\n            print(\"FK KDL failure on base transformation.\")\n        end_trans = self._do_kdl_fk(q, end_link)\n        if end_trans is None:\n            print(\"FK KDL failure on end transformation.\")\n        return base_trans**-1 * end_trans\n\n    def _do_kdl_fk(self, q, link_number):\n        endeffec_frame = kdl.Frame()\n        kinematics_status = self._fk_kdl.JntToCart(joint_list_to_kdl(q),\n                                                   endeffec_frame,\n                                                   link_number)\n        if kinematics_status >= 0:\n            p = endeffec_frame.p\n            M = endeffec_frame.M\n            return np.mat([[M[0,0], M[0,1], M[0,2], p.x()], \n                           [M[1,0], M[1,1], M[1,2], p.y()], \n                           [M[2,0], M[2,1], M[2,2], p.z()],\n                           [     0,      0,      0,     1]])\n        else:\n            return None\n\n    ##\n    # Inverse kinematics for a given pose, returning the joint angles required\n    # to obtain the target pose.\n    # @param pose Pose-like object represeting the target pose of the end effector.\n    # @param q_guess List of joint angles to seed the IK search.\n    # @param min_joints List of joint angles to lower bound the angles on the IK search.\n    #                   If None, the safety limits are used.\n    # @param max_joints List of joint angles to upper bound the angles on the IK search.\n    #                   If None, the safety limits are used.\n    # @return np.array of joint angles needed to reach the pose or None if no solution was found.\n    def inverse(self, pose, q_guess=None, min_joints=None, max_joints=None):\n        pos, rot = PoseConv.to_pos_rot(pose)\n        pos_kdl = kdl.Vector(pos[0,0], pos[1,0], pos[2,0])\n        rot_kdl = kdl.Rotation(rot[0,0], rot[0,1], rot[0,2],\n                               rot[1,0], rot[1,1], rot[1,2],\n                               rot[2,0], rot[2,1], rot[2,2])\n        frame_kdl = kdl.Frame(rot_kdl, pos_kdl)\n        if min_joints is None:\n            min_joints = self.joint_safety_lower\n        if max_joints is None:\n            max_joints = self.joint_safety_upper\n        mins_kdl = joint_list_to_kdl(min_joints)\n        maxs_kdl = joint_list_to_kdl(max_joints)\n        ik_p_kdl = kdl.ChainIkSolverPos_NR_JL(self.chain, mins_kdl, maxs_kdl, \n                                              self._fk_kdl, self._ik_v_kdl)\n\n        if q_guess == None:\n            # use the midpoint of the joint limits as the guess\n            lower_lim = np.where(np.isfinite(min_joints), min_joints, 0.)\n            upper_lim = np.where(np.isfinite(max_joints), max_joints, 0.)\n            q_guess = (lower_lim + upper_lim) / 2.0\n            q_guess = np.where(np.isnan(q_guess), [0.]*len(q_guess), q_guess)\n\n        q_kdl = kdl.JntArray(self.num_joints)\n        q_guess_kdl = joint_list_to_kdl(q_guess)\n        if ik_p_kdl.CartToJnt(q_guess_kdl, frame_kdl, q_kdl) >= 0:\n            return np.array(joint_kdl_to_list(q_kdl))\n        else:\n            return None\n\n    ##\n    # Repeats IK for different sets of random initial angles until a solution is found\n    # or the call times out.\n    # @param pose Pose-like object represeting the target pose of the end effector.\n    # @param timeout Time in seconds to look for a solution.\n    # @return np.array of joint angles needed to reach the pose or None if no solution was found.\n    def inverse_search(self, pose, timeout=1.):\n        st_time = rospy.get_time()\n        while not rospy.is_shutdown() and rospy.get_time() - st_time < timeout:\n            q_init = self.random_joint_angles()\n            q_ik = self.inverse(pose, q_init)\n            if q_ik is not None:\n                return q_ik\n        return None\n\n    ##\n    # Returns the Jacobian matrix at the end_link for the given joint angles.\n    # @param q List of joint angles.\n    # @return 6xN np.mat Jacobian\n    # @param pos Point in base frame where the jacobian is acting on.\n    #            If None, we assume the end_link\n    def jacobian(self, q, pos=None):\n        j_kdl = kdl.Jacobian(self.num_joints)\n        q_kdl = joint_list_to_kdl(q)\n        self._jac_kdl.JntToJac(q_kdl, j_kdl)\n        if pos is not None:\n            ee_pos = self.forward(q)[:3,3]\n            pos_kdl = kdl.Vector(pos[0]-ee_pos[0], pos[1]-ee_pos[1], \n                                  pos[2]-ee_pos[2])\n            j_kdl.changeRefPoint(pos_kdl)\n        return kdl_to_mat(j_kdl)\n\n    ##\n    # Returns the joint space mass matrix at the end_link for the given joint angles.\n    # @param q List of joint angles.\n    # @return NxN np.mat Inertia matrix\n    def inertia(self, q):\n        h_kdl = kdl.JntSpaceInertiaMatrix(self.num_joints)\n        self._dyn_kdl.JntToMass(joint_list_to_kdl(q), h_kdl)\n        return kdl_to_mat(h_kdl)\n\n    ##\n    # Returns the cartesian space mass matrix at the end_link for the given joint angles.\n    # @param q List of joint angles.\n    # @return 6x6 np.mat Cartesian inertia matrix\n    def cart_inertia(self, q):\n        H = self.inertia(q)\n        J = self.jacobian(q)\n        return np.linalg.inv(J * np.linalg.inv(H) * J.T)\n\n    ##\n    # Tests to see if the given joint angles are in the joint limits.\n    # @param List of joint angles.\n    # @return True if joint angles in joint limits.\n    def joints_in_limits(self, q):\n        lower_lim = self.joint_limits_lower\n        upper_lim = self.joint_limits_upper\n        return np.all([q >= lower_lim, q <= upper_lim], 0)\n\n    ##\n    # Tests to see if the given joint angles are in the joint safety limits.\n    # @param List of joint angles.\n    # @return True if joint angles in joint safety limits.\n    def joints_in_safe_limits(self, q):\n        lower_lim = self.joint_safety_lower\n        upper_lim = self.joint_safety_upper\n        return np.all([q >= lower_lim, q <= upper_lim], 0)\n\n    ##\n    # Clips joint angles to the safety limits.\n    # @param List of joint angles.\n    # @return np.array list of clipped joint angles.\n    def clip_joints_safe(self, q):\n        lower_lim = self.joint_safety_lower\n        upper_lim = self.joint_safety_upper\n        return np.clip(q, lower_lim, upper_lim)\n\n    ##\n    # Returns a set of random joint angles distributed uniformly in the safety limits.\n    # @return np.array list of random joint angles.\n    def random_joint_angles(self):\n        lower_lim = self.joint_safety_lower\n        upper_lim = self.joint_safety_upper\n        lower_lim = np.where(np.isfinite(lower_lim), lower_lim, -np.pi)\n        upper_lim = np.where(np.isfinite(upper_lim), upper_lim, np.pi)\n        zip_lims = list(zip(lower_lim, upper_lim))\n        return np.array([np.random.uniform(min_lim, max_lim) for min_lim, max_lim in zip_lims])\n\n    ##\n    # Returns a difference between the two sets of joint angles while insuring\n    # that the shortest angle is returned for the continuous joints.\n    # @param q1 List of joint angles.\n    # @param q2 List of joint angles.\n    # @return np.array of wrapped joint angles for retval = q1 - q2\n    def difference_joints(self, q1, q2):\n        diff = np.array(q1) - np.array(q2)\n        diff_mod = np.mod(diff, 2 * np.pi)\n        diff_alt = diff_mod - 2 * np.pi \n        for i, continuous in enumerate(self.joint_types == 'continuous'):\n            if continuous:\n                if diff_mod[i] < -diff_alt[i]:\n                    diff[i] = diff_mod[i]\n                else:\n                    diff[i] = diff_alt[i]\n        return diff\n\n    ##\n    # Performs an IK search while trying to balance the demands of reaching the goal,\n    # maintaining a posture, and prioritizing rotation or position.\n    def inverse_biased(self, pose, q_init, q_bias, q_bias_weights, rot_weight=1., \n                       bias_vel=0.01, num_iter=100):\n        # This code is potentially volitile\n        q_out = np.mat(self.inverse_search(pose)).T\n        for i in range(num_iter):\n            pos_fk, rot_fk = PoseConv.to_pos_rot(self.forward(q_out))\n            delta_twist = np.mat(np.zeros((6, 1)))\n            pos_delta = pos - pos_fk\n            delta_twist[:3,0] = pos_delta\n            rot_delta = np.mat(np.eye(4))\n            rot_delta[:3,:3] = rot * rot_fk.T\n            rot_delta_angles = np.mat(trans.euler_from_matrix(rot_delta)).T\n            delta_twist[3:6,0] = rot_delta_angles\n            J = self.jacobian(q_out)\n            J[3:6,:] *= np.sqrt(rot_weight)\n            delta_twist[3:6,0] *= np.sqrt(rot_weight)\n            J_tinv = np.linalg.inv(J.T * J + np.diag(q_bias_weights) * np.eye(len(q_init))) * J.T\n            q_bias_diff = q_bias - q_out\n            q_bias_diff_normed = q_bias_diff * bias_vel / np.linalg.norm(q_bias_diff)\n            delta_q = q_bias_diff_normed + J_tinv * (delta_twist - J * q_bias_diff_normed)\n            q_out += delta_q \n            q_out = np.mat(self.clip_joints_safe(q_out.T.A[0])).T\n        return q_out\n\n    ##\n    # inverse_biased with random restarts.\n    def inverse_biased_search(self, pos, rot, q_bias, q_bias_weights, rot_weight=1., \n                              bias_vel=0.01, num_iter=100, num_search=20):\n        # This code is potentially volitile\n        q_sol_min = []\n        min_val = 1000000.\n        for i in range(num_search):\n            q_init = self.random_joint_angles()\n            q_sol = self.inverse_biased(pos, rot, q_init, q_bias, q_bias_weights, rot_weight=1., \n                                        bias_vel=bias_vel, num_iter=num_iter)\n            cur_val = np.linalg.norm(np.diag(q_bias_weights) * (q_sol - q_bias)) \n            if cur_val < min_val:\n                min_val = cur_val\n                q_sol_min = q_sol\n        return q_sol_min\n        \n\ndef kdl_to_mat(m):\n    mat =  np.mat(np.zeros((m.rows(), m.columns())))\n    for i in range(m.rows()):\n        for j in range(m.columns()):\n            mat[i,j] = m[i,j]\n    return mat\n\ndef joint_kdl_to_list(q):\n    if q == None:\n        return None\n    return [q[i] for i in range(q.rows())]\n\ndef joint_list_to_kdl(q):\n    if q is None:\n        return None\n    if type(q) == np.matrix and q.shape[1] == 0:\n        q = q.T.tolist()[0]\n    q_kdl = kdl.JntArray(len(q))\n    for i, q_i in enumerate(q):\n        q_kdl[i] = q_i\n    return q_kdl\n\ndef main():\n    import sys\n    def usage():\n        print(\"Tests for kdl_parser:\\n\")\n        print(\"kdl_parser <urdf file>\")\n        print(\"\\tLoad the URDF from file.\")\n        print(\"kdl_parser\")\n        print(\"\\tLoad the URDF from the parameter server.\")\n        sys.exit(1)\n\n    if len(sys.argv) > 2:\n        usage()\n    if len(sys.argv) == 2 and (sys.argv[1] == \"-h\" or sys.argv[1] == \"--help\"):\n        usage()\n    if (len(sys.argv) == 1):\n        robot = URDF.load_from_parameter_server(verbose=False)\n    else:\n        robot = URDF.load_xml_file(sys.argv[1], verbose=False)\n\n    if True:\n        import random\n        base_link = robot.get_root()\n        end_link = list(robot.links.keys())[random.randint(0, len(robot.links)-1)]\n        print((\"Root link: %s; Random end link: %s\" % (base_link, end_link)))\n        kdl_kin = KDLKinematics(robot, base_link, end_link)\n        q = kdl_kin.random_joint_angles()\n        print((\"Random angles:\", q))\n        pose = kdl_kin.forward(q)\n        print((\"FK:\", pose))\n        q_new = kdl_kin.inverse(pose)\n        print((\"IK (not necessarily the same):\", q_new))\n        if q_new is not None:\n            pose_new = kdl_kin.forward(q_new)\n            print((\"FK on IK:\", pose_new))\n            print((\"Error:\", np.linalg.norm(pose_new * pose**-1 - np.mat(np.eye(4)))))\n        else:\n            print(\"IK failure\")\n        J = kdl_kin.jacobian(q)\n        print((\"Jacobian:\", J))\n        M = kdl_kin.inertia(q)\n        print((\"Inertia matrix:\", M))\n        if False:\n            M_cart = kdl_kin.cart_inertia(q)\n            print((\"Cartesian inertia matrix:\", M_cart))\n\n    if True:\n        rospy.init_node(\"kdl_kinematics\")\n        num_times = 20\n        while not rospy.is_shutdown() and num_times > 0:\n            base_link = robot.get_root()\n            end_link = list(robot.links.keys())[random.randint(0, len(robot.links)-1)]\n            print((\"Root link: %s; Random end link: %s\" % (base_link, end_link)))\n            kdl_kin = KDLKinematics(robot, base_link, end_link)\n            q = kdl_kin.random_joint_angles()\n            pose = kdl_kin.forward(q)\n            q_guess = kdl_kin.random_joint_angles()\n            q_new = kdl_kin.inverse(pose, q_guess)\n            if q_new is None:\n                print(\"Bad IK, trying search...\")\n                q_search = kdl_kin.inverse_search(pose)\n                pose_search = kdl_kin.forward(q_search)\n                print((\"Result error:\", np.linalg.norm(pose_search * pose**-1 - np.mat(np.eye(4)))))\n            num_times -= 1\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "ur_pykdl/src/ur_kdl/kdl_parser.py",
    "content": "#!/usr/bin/env python\n#\n# A parser for converting Python URDF objects into KDL Trees.\n#\n# Copyright (c) 2012, Georgia Tech Research Corporation\n# All rights reserved.\n#\n# Redistribution and use in source and binary forms, with or without\n# modification, are permitted provided that the following conditions are met:\n#     * Redistributions of source code must retain the above copyright\n#       notice, this list of conditions and the following disclaimer.\n#     * Redistributions in binary form must reproduce the above copyright\n#       notice, this list of conditions and the following disclaimer in the\n#       documentation and/or other materials provided with the distribution.\n#     * Neither the name of the Georgia Tech Research Corporation nor the\n#       names of its contributors may be used to endorse or promote products\n#       derived from this software without specific prior written permission.\n#\n# THIS SOFTWARE IS PROVIDED BY GEORGIA TECH RESEARCH CORPORATION ''AS IS'' AND\n# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n# DISCLAIMED. IN NO EVENT SHALL GEORGIA TECH BE LIABLE FOR ANY DIRECT, INDIRECT,\n# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\n# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\n# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n#\n# Author: Kelsey Hawkins\n# Kyle Maroney\n\nimport numpy as np\n\nimport rospy\n\nimport PyKDL as kdl\n\nfrom urdf_parser_py.urdf import URDF\n\ndef euler_to_quat(r, p, y):\n    sr, sp, sy = np.sin(r/2.0), np.sin(p/2.0), np.sin(y/2.0)\n    cr, cp, cy = np.cos(r/2.0), np.cos(p/2.0), np.cos(y/2.0)\n    return [sr*cp*cy - cr*sp*sy,\n            cr*sp*cy + sr*cp*sy,\n            cr*cp*sy - sr*sp*cy,\n            cr*cp*cy + sr*sp*sy]\n\ndef urdf_pose_to_kdl_frame(pose):\n    pos = [0., 0., 0.]\n    rot = [0., 0., 0.]\n    if pose is not None:\n        if pose.position is not None:\n            pos = pose.position\n        if pose.rotation is not None:\n            rot = pose.rotation\n    return kdl.Frame(kdl.Rotation.Quaternion(*euler_to_quat(*rot)),\n                     kdl.Vector(*pos))\n\ndef _toKdlPose(pose):\n    # URDF might have RPY OR XYZ unspecified. Both default to zeros\n    rpy = pose.rpy if pose and pose.rpy and len(pose.rpy) == 3 else [0, 0, 0]\n    xyz = pose.xyz if pose and pose.xyz and len(pose.xyz) == 3 else [0, 0, 0]\n\n    return kdl.Frame(\n          kdl.Rotation.RPY(*rpy),\n          kdl.Vector(*xyz))\n\ndef urdf_joint_to_kdl_joint(jnt):\n\n    fixed = lambda j,F: kdl.Joint(j.name, getattr(kdl.Joint, 'None'))\n    rotational = lambda j,F: kdl.Joint(j.name, F.p, F.M * kdl.Vector(*j.axis), kdl.Joint.RotAxis)\n    translational = lambda j,F: kdl.Joint(j.name, F.p, F.M * kdl.Vector(*j.axis), kdl.Joint.TransAxis)\n\n    type_map = {\n            'fixed': fixed,\n            'revolute': rotational,\n            'continuous': rotational,\n            'prismatic': translational,\n            'floating': fixed,\n            'planar': fixed,\n            'unknown': fixed,\n            }\n\n    return type_map[jnt.type](jnt, _toKdlPose(jnt.origin))\n\ndef urdf_inertial_to_kdl_rbi(i):\n    origin = urdf_pose_to_kdl_frame(i.origin)\n    rbi = kdl.RigidBodyInertia(i.mass, origin.p,\n                               kdl.RotationalInertia(i.inertia.ixx,\n                                                     i.inertia.iyy,\n                                                     i.inertia.izz,\n                                                     i.inertia.ixy,\n                                                     i.inertia.ixz,\n                                                     i.inertia.iyz))\n    return origin.M * rbi\n\n# Returns a PyKDL.Tree generated from a urdf_parser_py.urdf.URDF object.\ndef kdl_tree_from_urdf_model(urdf):\n    root = urdf.get_root()\n    tree = kdl.Tree(root)\n    def add_children_to_tree(parent):\n        if parent in urdf.child_map:\n            for joint, child_name in urdf.child_map[parent]:\n                for lidx, link in enumerate(urdf.links):\n                    if child_name == link.name:\n                        child = urdf.links[lidx]\n                        if child.inertial is not None:\n                            kdl_inert = urdf_inertial_to_kdl_rbi(child.inertial)\n                        else:\n                            kdl_inert = kdl.RigidBodyInertia()\n                        for jidx, jnt in enumerate(urdf.joints):\n                            if jnt.name == joint:\n                                kdl_jnt = urdf_joint_to_kdl_joint(urdf.joints[jidx])\n                                kdl_origin = urdf_pose_to_kdl_frame(urdf.joints[jidx].origin)\n                                kdl_sgm = kdl.Segment(child_name, kdl_jnt,\n                                                      kdl_origin, kdl_inert)\n                                tree.addSegment(kdl_sgm, parent)\n                                add_children_to_tree(child_name)\n    add_children_to_tree(root)\n    return tree\n\ndef main():\n    import sys\n    def usage():\n        print(\"Tests for kdl_parser:\\n\")\n        print(\"kdl_parser <urdf file>\")\n        print(\"\\tLoad the URDF from file.\")\n        print(\"kdl_parser\")\n        print(\"\\tLoad the URDF from the parameter server.\")\n        sys.exit(1)\n\n    if len(sys.argv) > 2:\n        usage()\n    if len(sys.argv) == 2 and (sys.argv[1] == \"-h\" or sys.argv[1] == \"--help\"):\n        usage()\n    if (len(sys.argv) == 1):\n        robot = URDF.load_from_parameter_server(verbose=False)\n    else:\n        robot = URDF.load_xml_file(sys.argv[1], verbose=False)\n    tree = kdl_tree_from_urdf_model(robot)\n    num_non_fixed_joints = 0\n    for j in robot.joints:\n        if robot.joints[j].joint_type != 'fixed':\n            num_non_fixed_joints += 1\n    print(\"URDF non-fixed joints: %d;\" % num_non_fixed_joints)\n    print(\"KDL joints: %d\" % tree.getNrOfJoints())\n    print(\"URDF joints: %d; KDL segments: %d\" %(len(robot.joints),\n                                                tree.getNrofSegments()))\n    import random\n    base_link = robot.get_root()\n    end_link = list(robot.links.keys())[random.randint(0, len(robot.links)-1)]\n    chain = tree.getChain(base_link, end_link)\n    print(\"Root link: %s; Random end link: %s\" % (base_link, end_link))\n    for i in range(chain.getNrOfSegments()):\n        print(chain.getSegment(i).getName())\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "ur_pykdl/src/ur_pykdl/__init__.py",
    "content": "\n# Copyright (c) 2013-2014, Rethink Robotics\n# All rights reserved.\n#\n# Redistribution and use in source and binary forms, with or without\n# modification, are permitted provided that the following conditions are met:\n#\n# 1. Redistributions of source code must retain the above copyright notice,\n#    this list of conditions and the following disclaimer.\n# 2. Redistributions in binary form must reproduce the above copyright\n#    notice, this list of conditions and the following disclaimer in the\n#    documentation and/or other materials provided with the distribution.\n# 3. Neither the name of the Rethink Robotics nor the names of its\n#    contributors may be used to endorse or promote products derived from\n#    this software without specific prior written permission.\n#\n# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n# POSSIBILITY OF SUCH DAMAGE.\n\nfrom .ur_pykdl import (\n    ur_kinematics,\n)\n"
  },
  {
    "path": "ur_pykdl/src/ur_pykdl/ur_pykdl.py",
    "content": "#!/usr/bin/python\n\n# Copyright (c) 2013-2014, Rethink Robotics\n# All rights reserved.\n#\n# Redistribution and use in source and binary forms, with or without\n# modification, are permitted provided that the following conditions are met:\n#\n# 1. Redistributions of source code must retain the above copyright notice,\n#    this list of conditions and the following disclaimer.\n# 2. Redistributions in binary form must reproduce the above copyright\n#    notice, this list of conditions and the following disclaimer in the\n#    documentation and/or other materials provided with the distribution.\n# 3. Neither the name of the Rethink Robotics nor the names of its\n#    contributors may be used to endorse or promote products derived from\n#    this software without specific prior written permission.\n#\n# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n# POSSIBILITY OF SUCH DAMAGE.\n\nimport numpy as np\nimport PyKDL\n\nimport rospy\nimport rospkg\n\nfrom ur_kdl.kdl_parser import kdl_tree_from_urdf_model\nfrom urdf_parser_py.urdf import URDF\nfrom ur_control import transformations\n\n# Set constants for joints\nSHOULDER_PAN_JOINT = 'shoulder_pan_joint'\nSHOULDER_LIFT_JOINT = 'shoulder_lift_joint'\nELBOW_JOINT = 'elbow_joint'\nWRIST_1_JOINT = 'wrist_1_joint'\nWRIST_2_JOINT = 'wrist_2_joint'\nWRIST_3_JOINT = 'wrist_3_joint'\n\n# Set constants for links\nBASE_LINK = 'base_link'\nSHOULDER_LINK = 'shoulder_link'\nUPPER_ARM_LINK = 'upper_arm_link'\nFOREARM_LINK = 'forearm_link'\nWRIST_1_LINK = 'wrist_1_link'\nWRIST_2_LINK = 'wrist_2_link'\nWRIST_3_LINK = 'wrist_3_link'\nEE_LINK = 'ur3_robotiq_85_gripper'\nEE_LINK = 'ee_link'\n\n# Only edit these when editing the robot joints and links.\n# The lengths of these arrays define numerous parameters in GPS.\nJOINT_ORDER = [SHOULDER_PAN_JOINT, SHOULDER_LIFT_JOINT, ELBOW_JOINT,\n               WRIST_1_JOINT, WRIST_2_JOINT, WRIST_3_JOINT]\nLINK_NAMES = [BASE_LINK, SHOULDER_LINK, UPPER_ARM_LINK, FOREARM_LINK,\n              WRIST_1_LINK, WRIST_2_LINK, WRIST_3_LINK]\n\n\ndef frame_to_list(frame):\n    pos = frame.p\n    rot = PyKDL.Rotation(frame.M)\n    rot = rot.GetQuaternion()\n    return np.array([pos[0], pos[1], pos[2],\n                     rot[0], rot[1], rot[2], rot[3]])\n\n\nclass ur_kinematics(object):\n    \"\"\"\n    UR Kinematics with PyKDL\n    \"\"\"\n\n    def __init__(self, base_link=None, ee_link=None, robot=None, prefix=None, rospackage=None):\n        if robot:\n            rospack = rospkg.RosPack()\n            rospackage_ = rospackage if rospackage is not None else 'ur_pykdl'\n            pykdl_dir = rospack.get_path(rospackage_)\n            TREE_PATH = pykdl_dir + '/urdf/' + robot + '.urdf'\n            self._ur = URDF.from_xml_file(TREE_PATH)\n        else:\n            self._ur = URDF.from_parameter_server()\n\n        self._kdl_tree = kdl_tree_from_urdf_model(self._ur)\n        self._base_link = BASE_LINK if base_link is None else base_link\n\n        self._tip_link = EE_LINK if ee_link is None else ee_link\n        self._tip_frame = PyKDL.Frame()\n        self._arm_chain = self._kdl_tree.getChain(self._base_link,\n                                                  self._tip_link)\n\n        # UR Interface Limb Instances\n        self._joint_names = JOINT_ORDER if prefix is None else [prefix + joint for joint in JOINT_ORDER]\n        self._num_jnts = len(self._joint_names)\n\n        # KDL Solvers\n        self._fk_p_kdl = PyKDL.ChainFkSolverPos_recursive(self._arm_chain)\n        self._fk_v_kdl = PyKDL.ChainFkSolverVel_recursive(self._arm_chain)\n        self._ik_v_kdl = PyKDL.ChainIkSolverVel_pinv(self._arm_chain)\n        self._ik_p_kdl = PyKDL.ChainIkSolverPos_NR(self._arm_chain,\n                                                   self._fk_p_kdl,\n                                                   self._ik_v_kdl)\n        self._jac_kdl = PyKDL.ChainJntToJacSolver(self._arm_chain)\n        self._dyn_kdl = PyKDL.ChainDynParam(self._arm_chain,\n                                            PyKDL.Vector.Zero())\n\n    def print_robot_description(self):\n        nf_joints = 0\n        for j in self._ur.joints:\n            if j.type != 'fixed':\n                nf_joints += 1\n        print((\"URDF non-fixed joints: %d;\" % nf_joints))\n        print((\"URDF total joints: %d\" % len(self._ur.joints)))\n        print((\"URDF links: %d\" % len(self._ur.links)))\n        print((\"KDL joints: %d\" % self._kdl_tree.getNrOfJoints()))\n        print((\"KDL segments: %d\" % self._kdl_tree.getNrOfSegments()))\n\n    def print_kdl_chain(self):\n        for idx in range(self._arm_chain.getNrOfSegments()):\n            print(('* ' + self._arm_chain.getSegment(idx).getName()))\n\n    def joints_to_kdl(self, type, values):\n        kdl_array = PyKDL.JntArray(self._num_jnts)\n\n        cur_type_values = values\n\n        for idx in range(self._num_jnts):\n            kdl_array[idx] = cur_type_values[idx]\n        if type == 'velocities':\n            kdl_array = PyKDL.JntArrayVel(kdl_array)\n        return kdl_array\n\n    def kdl_to_mat(self, data):\n        mat = np.mat(np.zeros((data.rows(), data.columns())))\n        for i in range(data.rows()):\n            for j in range(data.columns()):\n                mat[i, j] = data[i, j]\n        return mat\n\n    def end_effector_transform(self, joint_values, tip_link=None):\n        pose = self.forward(joint_values, tip_link)\n        translation = np.array([pose[:3]])\n        transform = transformations.quaternion_matrix(pose[3:])\n        transform[:3, 3] = translation\n        return transform\n\n    def forward(self, joint_values, tip_link=None):\n        if not tip_link or tip_link == self._tip_link:\n            return self.forward_position_kinematics(joint_values)\n\n        arm_chain = self._kdl_tree.getChain(self._base_link,\n                                            tip_link)\n        fk_p_kdl = PyKDL.ChainFkSolverPos_recursive(arm_chain)\n        end_frame = PyKDL.Frame()\n        fk_p_kdl.JntToCart(self.joints_to_kdl('positions', joint_values),\n                           end_frame)\n        return frame_to_list(end_frame)\n\n    def forward_position_kinematics(self, joint_values):\n        end_frame = PyKDL.Frame()\n        self._fk_p_kdl.JntToCart(self.joints_to_kdl('positions', joint_values),\n                                 end_frame)\n        return frame_to_list(end_frame)\n\n    def forward_velocity_kinematics(self, joint_velocities):\n        end_frame = PyKDL.FrameVel()\n        self._fk_v_kdl.JntToCart(self.joints_to_kdl('velocities', joint_velocities),\n                                 end_frame)\n        return end_frame.GetTwist()\n\n    def inverse_kinematics(self, position, orientation=None, seed=None):\n        ik = PyKDL.ChainIkSolverVel_pinv(self._arm_chain)\n        pos = PyKDL.Vector(position[0], position[1], position[2])\n        if isinstance(orientation, (np.ndarray, np.generic, list)):\n            rot = PyKDL.Rotation()\n            rot = rot.Quaternion(orientation[0], orientation[1],\n                                 orientation[2], orientation[3])\n        # Populate seed with current angles if not provided\n        seed_array = PyKDL.JntArray(self._num_jnts)\n        if isinstance(seed, (np.ndarray, np.generic, list)):\n            seed_array.resize(len(seed))\n            for idx, jnt in enumerate(seed):\n                seed_array[idx] = jnt\n        else:\n            seed_array = self.joints_to_kdl('positions', None)  # TODO: Fixme\n\n        # Make IK Call\n        if orientation.size != 0:\n            goal_pose = PyKDL.Frame(rot, pos)\n        else:\n            goal_pose = PyKDL.Frame(pos)\n        result_angles = PyKDL.JntArray(self._num_jnts)\n\n        if self._ik_p_kdl.CartToJnt(seed_array, goal_pose, result_angles) >= 0:\n            result = np.array(list(result_angles))\n            return result\n        else:\n            return None\n\n    def jacobian(self, joint_values=None):\n        jacobian = PyKDL.Jacobian(self._num_jnts)\n        self._jac_kdl.JntToJac(self.joints_to_kdl('positions', joint_values), jacobian)\n        return self.kdl_to_mat(jacobian)\n\n    def jacobian_transpose(self, joint_values=None):\n        return self.jacobian(joint_values).T\n\n    def jacobian_pseudo_inverse(self, joint_values=None):\n        return np.linalg.pinv(self.jacobian(joint_values))\n\n    def inertia(self, joint_values=None):\n        inertia = PyKDL.JntSpaceInertiaMatrix(self._num_jnts)\n        self._dyn_kdl.JntToMass(self.joints_to_kdl('positions', joint_values), inertia)\n        return self.kdl_to_mat(inertia)\n\n    def cart_inertia(self, joint_values=None):\n        js_inertia = self.inertia(joint_values)\n        jacobian = self.jacobian(joint_values)\n        return np.linalg.inv(jacobian * np.linalg.inv(js_inertia) * jacobian.T)\n"
  },
  {
    "path": "ur_pykdl/urdf/ur3.urdf",
    "content": "<?xml version=\"1.0\" ?>\n<!-- =================================================================================== -->\n<!-- |    This document was autogenerated by xacro from ur3_robotiq85_gripper.urdf.xacro | -->\n<!-- |    EDITING THIS FILE BY HAND IS NOT RECOMMENDED                                 | -->\n<!-- =================================================================================== -->\n<robot name=\"ur3\" xmlns:xacro=\"http://ros.org/wiki/xacro\">\n  <!-- measured from model -->\n  <link name=\"base_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://ur_description/meshes/ur3/visual/base.dae\"/>\n      </geometry>\n    </visual>\n    <inertial>\n      <mass value=\"2.0\"/>\n      <origin rpy=\"0 0 0\" xyz=\"0.0 0.0 0.0\"/>\n      <inertia ixx=\"0.0030531654454\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.0030531654454\" iyz=\"0.0\" izz=\"0.005625\"/>\n    </inertial>\n  </link>\n  <joint name=\"shoulder_pan_joint\" type=\"revolute\">\n    <parent link=\"base_link\"/>\n    <child link=\"shoulder_link\"/>\n    <origin rpy=\"0.0 0.0 0.0\" xyz=\"0.0 0.0 0.1519\"/>\n    <axis xyz=\"0 0 1\"/>\n    <limit effort=\"330.0\" lower=\"-3.14159265359\" upper=\"3.14159265359\" velocity=\"2.16\"/>\n    <dynamics damping=\"0.5\" friction=\"0.0\"/>\n  </joint>\n  <link name=\"shoulder_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://ur_description/meshes/ur3/visual/shoulder.dae\"/>\n      </geometry>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://ur_description/meshes/ur3/collision/shoulder.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"2.0\"/>\n      <origin rpy=\"0 0 0\" xyz=\"0.0 0.0 0.0\"/>\n      <inertia ixx=\"0.0080931634294\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.0080931634294\" iyz=\"0.0\" izz=\"0.005625\"/>\n    </inertial>\n  </link>\n  <joint name=\"shoulder_lift_joint\" type=\"revolute\">\n    <parent link=\"shoulder_link\"/>\n    <child link=\"upper_arm_link\"/>\n    <origin rpy=\"0.0 1.57079632679 0.0\" xyz=\"0.0 0.1198 0.0\"/>\n    <axis xyz=\"0 1 0\"/>\n    <limit effort=\"330.0\" lower=\"-3.14159265359\" upper=\"3.14159265359\" velocity=\"2.16\"/>\n    <dynamics damping=\"0.5\" friction=\"0.0\"/>\n  </joint>\n  <link name=\"upper_arm_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://ur_description/meshes/ur3/visual/upperarm.dae\"/>\n      </geometry>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://ur_description/meshes/ur3/collision/upperarm.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"3.42\"/>\n      <origin rpy=\"0 0 0\" xyz=\"0.0 0.0 0.121825\"/>\n      <inertia ixx=\"0.0217284832211\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.0217284832211\" iyz=\"0.0\" izz=\"0.00961875\"/>\n    </inertial>\n  </link>\n  <joint name=\"elbow_joint\" type=\"revolute\">\n    <parent link=\"upper_arm_link\"/>\n    <child link=\"forearm_link\"/>\n    <origin rpy=\"0.0 0.0 0.0\" xyz=\"0.0 -0.0925 0.24365\"/>\n    <axis xyz=\"0 1 0\"/>\n    <limit effort=\"150.0\" lower=\"-3.14159265359\" upper=\"3.14159265359\" velocity=\"3.15\"/>\n    <dynamics damping=\"0.5\" friction=\"0.0\"/>\n  </joint>\n  <link name=\"forearm_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://ur_description/meshes/ur3/visual/forearm.dae\"/>\n      </geometry>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://ur_description/meshes/ur3/collision/forearm.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"1.26\"/>\n      <origin rpy=\"0 0 0\" xyz=\"0.0 0.0 0.106625\"/>\n      <inertia ixx=\"0.00654680644378\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.00654680644378\" iyz=\"0.0\" izz=\"0.00354375\"/>\n    </inertial>\n  </link>\n  <joint name=\"wrist_1_joint\" type=\"revolute\">\n    <parent link=\"forearm_link\"/>\n    <child link=\"wrist_1_link\"/>\n    <origin rpy=\"0.0 1.57079632679 0.0\" xyz=\"0.0 0.0 0.21325\"/>\n    <axis xyz=\"0 1 0\"/>\n    <limit effort=\"54.0\" lower=\"-3.14159265359\" upper=\"3.14159265359\" velocity=\"3.2\"/>\n    <dynamics damping=\"0.5\" friction=\"0.0\"/>\n  </joint>\n  <link name=\"wrist_1_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://ur_description/meshes/ur3/visual/wrist1.dae\"/>\n      </geometry>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://ur_description/meshes/ur3/collision/wrist1.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"0.8\"/>\n      <origin rpy=\"0 0 0\" xyz=\"0.0 0.0 0.0\"/>\n      <inertia ixx=\"0.002084999166\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.002084999166\" iyz=\"0.0\" izz=\"0.00225\"/>\n    </inertial>\n  </link>\n  <joint name=\"wrist_2_joint\" type=\"revolute\">\n    <parent link=\"wrist_1_link\"/>\n    <child link=\"wrist_2_link\"/>\n    <origin rpy=\"0.0 0.0 0.0\" xyz=\"0.0 0.08505 0.0\"/>\n    <axis xyz=\"0 0 1\"/>\n    <limit effort=\"54.0\" lower=\"-3.14159265359\" upper=\"3.14159265359\" velocity=\"3.2\"/>\n    <dynamics damping=\"0.5\" friction=\"0.0\"/>\n  </joint>\n  <link name=\"wrist_2_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://ur_description/meshes/ur3/visual/wrist2.dae\"/>\n      </geometry>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://ur_description/meshes/ur3/collision/wrist2.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"0.8\"/>\n      <origin rpy=\"0 0 0\" xyz=\"0.0 0.0 0.0\"/>\n      <inertia ixx=\"0.002084999166\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.002084999166\" iyz=\"0.0\" izz=\"0.00225\"/>\n    </inertial>\n  </link>\n  <joint name=\"wrist_3_joint\" type=\"revolute\">\n    <parent link=\"wrist_2_link\"/>\n    <child link=\"wrist_3_link\"/>\n    <origin rpy=\"0.0 0.0 0.0\" xyz=\"0.0 0.0 0.08535\"/>\n    <axis xyz=\"0 1 0\"/>\n    <limit effort=\"54.0\" lower=\"-3.14159265359\" upper=\"3.14159265359\" velocity=\"3.2\"/>\n    <dynamics damping=\"0.5\" friction=\"0.0\"/>\n  </joint>\n  <link name=\"wrist_3_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://ur_description/meshes/ur3/visual/wrist3.dae\"/>\n      </geometry>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://ur_description/meshes/ur3/collision/wrist3.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"0.35\"/>\n      <origin rpy=\"0 0 0\" xyz=\"0.0 0.0 0.0\"/>\n      <inertia ixx=\"0.000912187135125\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.000912187135125\" iyz=\"0.0\" izz=\"0.000984375\"/>\n    </inertial>\n  </link>\n  <joint name=\"ee_fixed_joint\" type=\"fixed\">\n    <parent link=\"wrist_3_link\"/>\n    <child link=\"ee_link\"/>\n    <origin rpy=\"0.0 0.0 1.57079632679\" xyz=\"0.0 0.0819 0.0\"/>\n  </joint>\n  <link name=\"ee_link\">\n    <collision>\n      <geometry>\n        <box size=\"0.01 0.01 0.01\"/>\n      </geometry>\n      <origin rpy=\"0 0 0\" xyz=\"-0.01 0 0\"/>\n    </collision>\n  </link>\n  <!-- ROS base_link to UR 'Base' Coordinates transform -->\n  <link name=\"base\"/>\n  <joint name=\"base_link-base_fixed_joint\" type=\"fixed\">\n    <!-- NOTE: this rotation is only needed as long as base_link itself is\n                 not corrected wrt the real robot (ie: rotated over 180\n                 degrees)\n      -->\n    <origin rpy=\"0 0 -3.14159265359\" xyz=\"0 0 0\"/>\n    <parent link=\"base_link\"/>\n    <child link=\"base\"/>\n  </joint>\n  <!-- Frame coincident with all-zeros TCP on UR controller -->\n  <link name=\"tool0\"/>\n  <joint name=\"wrist_3_link-tool0_fixed_joint\" type=\"fixed\">\n    <origin rpy=\"-1.57079632679 0 0\" xyz=\"0 0.0819 0\"/>\n    <parent link=\"wrist_3_link\"/>\n    <child link=\"tool0\"/>\n  </joint>\n  <link name=\"world\"/>\n  <joint name=\"world_joint\" type=\"fixed\">\n    <parent link=\"world\"/>\n    <child link=\"base_link\"/>\n    <origin rpy=\"0.0 0.0 0.0\" xyz=\"0.0 0.0 0.0\"/>\n  </joint>\n  <!-- Robotiq Coupler -->\n  <!--  + Height added by the coupler: 8mm -->\n  <!--  + Reference frame: at the middle (4mm) -->\n  <link name=\"robotiq_coupler\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/robotiq_85_coupler.stl\"/>\n      </geometry>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/robotiq_85_coupler.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <origin rpy=\"0 0 0\" xyz=\"2.073e-05   1.45286e-03  -1.1049e-03\"/>\n      <mass value=\"0.168\"/>\n      <inertia ixx=\"6.69695624e-05\" ixy=\"5.21511788e-09\" ixz=\"-2.74383009e-08\" iyy=\"7.85088161e-05\" iyz=\"5.41105193e-07\" izz=\"1.41819717e-04\"/>\n    </inertial>\n  </link>\n  <joint name=\"robotiq_coupler_joint\" type=\"fixed\">\n    <origin rpy=\"0 0 -1.57079632679\" xyz=\"0 0 0.004\"/>\n    <parent link=\"tool0\"/>\n    <child link=\"robotiq_coupler\"/>\n  </joint>\n  <!-- Equivalent to the OpenRAVE manipulator denso_robotiq_85_gripper -->\n  <link name=\"ur3_robotiq_85_gripper\"/>\n  <joint name=\"manipulator_dummy_joint\" type=\"fixed\">\n    <origin rpy=\"0 0 0\" xyz=\"0 0 0.1441\"/>\n    <parent link=\"robotiq_coupler\"/>\n    <child link=\"ur3_robotiq_85_gripper\"/>\n  </joint>\n  <joint name=\"robotiq_85_base_joint\" type=\"fixed\">\n    <parent link=\"robotiq_coupler\"/>\n    <child link=\"robotiq_85_base_link\"/>\n    <origin rpy=\"0 -1.57079632679 3.14159265359\" xyz=\"0 0 0.004\"/>\n  </joint>\n  <link name=\"robotiq_85_base_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/visual/robotiq_85_base_link.dae\"/>\n      </geometry>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/collision/robotiq_85_base_link.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"0.636951\"/>\n      <origin xyz=\"0.0 0.0 0.0\"/>\n      <inertia ixx=\"0.000380\" ixy=\"0.000000\" ixz=\"0.000000\" iyy=\"0.001110\" iyz=\"0.000000\" izz=\"0.001171\"/>\n    </inertial>\n  </link>\n  <joint name=\"finger_joint\" type=\"revolute\">\n    <parent link=\"robotiq_85_base_link\"/>\n    <child link=\"robotiq_85_left_knuckle_link\"/>\n    <axis xyz=\"0 0 1\"/>\n    <origin rpy=\"3.14159265359 0.0 0.0\" xyz=\"0.05490451627 0.03060114443 0.0\"/>\n    <limit effort=\"1000\" lower=\"0.0\" upper=\"0.80285\" velocity=\"0.5\"/>\n  </joint>\n  <joint name=\"robotiq_85_right_knuckle_joint\" type=\"continuous\">\n    <parent link=\"robotiq_85_base_link\"/>\n    <child link=\"robotiq_85_right_knuckle_link\"/>\n    <axis xyz=\"0 0 1\"/>\n    <origin rpy=\"0.0 0.0 0.0\" xyz=\"0.05490451627 -0.03060114443 0.0\"/>\n    <limit effort=\"1000\" lower=\"-3.14\" upper=\"3.14\" velocity=\"100.0\"/>\n    <mimic joint=\"finger_joint\"/>\n  </joint>\n  <link name=\"robotiq_85_left_knuckle_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/visual/robotiq_85_knuckle_link.dae\"/>\n      </geometry>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/collision/robotiq_85_knuckle_link.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"0.018491\"/>\n      <origin xyz=\"0.0 0.0 0.0\"/>\n      <inertia ixx=\"0.000009\" ixy=\"-0.000001\" ixz=\"0.000000\" iyy=\"0.000001\" iyz=\"0.000000\" izz=\"0.000010\"/>\n    </inertial>\n  </link>\n  <link name=\"robotiq_85_right_knuckle_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/visual/robotiq_85_knuckle_link.dae\"/>\n      </geometry>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/collision/robotiq_85_knuckle_link.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"0.018491\"/>\n      <origin xyz=\"0.0 0.0 0.0\"/>\n      <inertia ixx=\"0.000009\" ixy=\"-0.000001\" ixz=\"0.000000\" iyy=\"0.000001\" iyz=\"0.000000\" izz=\"0.000010\"/>\n    </inertial>\n  </link>\n  <joint name=\"robotiq_85_left_finger_joint\" type=\"fixed\">\n    <parent link=\"robotiq_85_left_knuckle_link\"/>\n    <child link=\"robotiq_85_left_finger_link\"/>\n    <origin rpy=\"0 0 0\" xyz=\"-0.00408552455 -0.03148604435 0.0\"/>\n  </joint>\n  <joint name=\"robotiq_85_right_finger_joint\" type=\"fixed\">\n    <parent link=\"robotiq_85_right_knuckle_link\"/>\n    <child link=\"robotiq_85_right_finger_link\"/>\n    <origin rpy=\"0 0 0\" xyz=\"-0.00408552455 -0.03148604435 0.0\"/>\n  </joint>\n  <link name=\"robotiq_85_left_finger_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/visual/robotiq_85_finger_link.dae\"/>\n      </geometry>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/collision/robotiq_85_finger_link.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"0.027309\"/>\n      <origin xyz=\"0.0 0.0 0.0\"/>\n      <inertia ixx=\"0.000003\" ixy=\"-0.000002\" ixz=\"0.000000\" iyy=\"0.000021\" iyz=\"0.000000\" izz=\"0.000020\"/>\n    </inertial>\n  </link>\n  <link name=\"robotiq_85_right_finger_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/visual/robotiq_85_finger_link.dae\"/>\n      </geometry>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/collision/robotiq_85_finger_link.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"0.027309\"/>\n      <origin xyz=\"0.0 0.0 0.0\"/>\n      <inertia ixx=\"0.000003\" ixy=\"-0.000002\" ixz=\"0.000000\" iyy=\"0.000021\" iyz=\"0.000000\" izz=\"0.000020\"/>\n    </inertial>\n  </link>\n  <joint name=\"robotiq_85_left_inner_knuckle_joint\" type=\"continuous\">\n    <parent link=\"robotiq_85_base_link\"/>\n    <child link=\"robotiq_85_left_inner_knuckle_link\"/>\n    <axis xyz=\"0 0 1\"/>\n    <origin rpy=\"3.14159265359 0.0 0.0\" xyz=\"0.06142 0.0127 0\"/>\n    <limit effort=\"0.1\" lower=\"-3.14\" upper=\"3.14\" velocity=\"100.0\"/>\n    <mimic joint=\"finger_joint\" offset=\"0\"/>\n  </joint>\n  <joint name=\"robotiq_85_right_inner_knuckle_joint\" type=\"continuous\">\n    <parent link=\"robotiq_85_base_link\"/>\n    <child link=\"robotiq_85_right_inner_knuckle_link\"/>\n    <axis xyz=\"0 0 1\"/>\n    <origin rpy=\"0 0 0\" xyz=\"0.06142 -0.0127 0\"/>\n    <limit effort=\"0.1\" lower=\"-3.14\" upper=\"3.14\" velocity=\"100.0\"/>\n    <mimic joint=\"finger_joint\" offset=\"0\"/>\n  </joint>\n  <link name=\"robotiq_85_left_inner_knuckle_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/visual/robotiq_85_inner_knuckle_link.dae\"/>\n      </geometry>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/collision/robotiq_85_inner_knuckle_link.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"0.029951\"/>\n      <origin xyz=\"0.0 0.0 0.0\"/>\n      <inertia ixx=\"0.000039\" ixy=\"0.000000\" ixz=\"0.000000\" iyy=\"0.000005\" iyz=\"0.000000\" izz=\"0.000035\"/>\n    </inertial>\n  </link>\n  <link name=\"robotiq_85_right_inner_knuckle_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/visual/robotiq_85_inner_knuckle_link.dae\"/>\n      </geometry>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/collision/robotiq_85_inner_knuckle_link.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"0.029951\"/>\n      <origin xyz=\"0.0 0.0 0.0\"/>\n      <inertia ixx=\"0.000039\" ixy=\"0.000000\" ixz=\"0.000000\" iyy=\"0.000005\" iyz=\"0.000000\" izz=\"0.000035\"/>\n    </inertial>\n  </link>\n  <joint name=\"robotiq_85_left_finger_tip_joint\" type=\"continuous\">\n    <parent link=\"robotiq_85_left_inner_knuckle_link\"/>\n    <child link=\"robotiq_85_left_finger_tip_link\"/>\n    <axis xyz=\"0 0 1\"/>\n    <origin rpy=\"0.0 0.0 0.0\" xyz=\"0.04303959807 -0.03759940821 0.0\"/>\n    <limit effort=\"0.1\" lower=\"-3.14\" upper=\"3.14\" velocity=\"100.0\"/>\n    <mimic joint=\"finger_joint\" multiplier=\"-1\"/>\n  </joint>\n  <joint name=\"robotiq_85_right_finger_tip_joint\" type=\"continuous\">\n    <parent link=\"robotiq_85_right_inner_knuckle_link\"/>\n    <child link=\"robotiq_85_right_finger_tip_link\"/>\n    <axis xyz=\"0 0 1\"/>\n    <origin rpy=\"0.0 0.0 0.0\" xyz=\"0.04303959807 -0.03759940821  0.0\"/>\n    <limit effort=\"0.1\" lower=\"-3.14\" upper=\"3.14\" velocity=\"100.0\"/>\n    <mimic joint=\"finger_joint\" multiplier=\"-1\"/>\n  </joint>\n  <link name=\"robotiq_85_left_finger_tip_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/visual/robotiq_85_finger_tip_link.dae\"/>\n      </geometry>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/collision/robotiq_85_finger_tip_link.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"0.019555\"/>\n      <origin xyz=\"0.0 0.0 0.0\"/>\n      <inertia ixx=\"0.000002\" ixy=\"0.000000\" ixz=\"0.000000\" iyy=\"0.000005\" iyz=\"0.000000\" izz=\"0.000006\"/>\n    </inertial>\n  </link>\n  <link name=\"robotiq_85_right_finger_tip_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/visual/robotiq_85_finger_tip_link.dae\"/>\n      </geometry>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://robotiq_description/meshes/collision/robotiq_85_finger_tip_link.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"0.019555\"/>\n      <origin xyz=\"0.0 0.0 0.0\"/>\n      <inertia ixx=\"0.000002\" ixy=\"0.000000\" ixz=\"0.000000\" iyy=\"0.000005\" iyz=\"0.000000\" izz=\"0.000006\"/>\n    </inertial>\n  </link>\n</robot>\n"
  },
  {
    "path": "ur_pykdl/urdf/ur3e.urdf",
    "content": "<?xml version=\"1.0\" ?>\n<!-- =================================================================================== -->\n<!-- |    This document was autogenerated by xacro from ur3e_joint_limited_robot.urdf.xacro | -->\n<!-- |    EDITING THIS FILE BY HAND IS NOT RECOMMENDED                                 | -->\n<!-- =================================================================================== -->\n<robot name=\"ur3e\" xmlns:xacro=\"http://ros.org/wiki/xacro\">\n  <!--\n  Author: Felix Messmer\n-->\n  <!-- measured from model -->\n  <link name=\"base_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/visual/base.dae\"/>\n      </geometry>\n      <material name=\"LightGrey\">\n        <color rgba=\"0.7 0.7 0.7 1.0\"/>\n      </material>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/collision/base.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"2.0\"/>\n      <origin rpy=\"0 0 0\" xyz=\"0.0 0.0 0.0\"/>\n      <inertia ixx=\"0.0030531654454\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.0030531654454\" iyz=\"0.0\" izz=\"0.005625\"/>\n    </inertial>\n  </link>\n  <joint name=\"shoulder_pan_joint\" type=\"revolute\">\n    <parent link=\"base_link\"/>\n    <child link=\"shoulder_link\"/>\n    <origin rpy=\"0.0 0.0 0.0\" xyz=\"0.0 0.0 0.152\"/>\n    <axis xyz=\"0 0 1\"/>\n    <limit effort=\"330.0\" lower=\"-3.14159265359\" upper=\"3.14159265359\" velocity=\"3.14\"/>\n    <dynamics damping=\"0.0\" friction=\"0.0\"/>\n  </joint>\n  <link name=\"shoulder_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/visual/shoulder.dae\"/>\n      </geometry>\n      <material name=\"LightGrey\">\n        <color rgba=\"0.7 0.7 0.7 1.0\"/>\n      </material>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/collision/shoulder.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"2.0\"/>\n      <origin rpy=\"0 0 0\" xyz=\"0.0 0.0 0.0\"/>\n      <inertia ixx=\"0.0080931634294\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.0080931634294\" iyz=\"0.0\" izz=\"0.005625\"/>\n    </inertial>\n  </link>\n  <joint name=\"shoulder_lift_joint\" type=\"revolute\">\n    <parent link=\"shoulder_link\"/>\n    <child link=\"upper_arm_link\"/>\n    <origin rpy=\"0.0 1.57079632679 0.0\" xyz=\"0.0 0.12 0.0\"/>\n    <axis xyz=\"0 1 0\"/>\n    <limit effort=\"330.0\" lower=\"-3.14159265359\" upper=\"3.14159265359\" velocity=\"3.14\"/>\n    <dynamics damping=\"0.0\" friction=\"0.0\"/>\n  </joint>\n  <link name=\"upper_arm_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/visual/upperarm.dae\"/>\n      </geometry>\n      <material name=\"LightGrey\">\n        <color rgba=\"0.7 0.7 0.7 1.0\"/>\n      </material>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/collision/upperarm.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"3.42\"/>\n      <origin rpy=\"0 0 0\" xyz=\"0.0 0.0 0.122\"/>\n      <inertia ixx=\"0.0217771262891\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.0217771262891\" iyz=\"0.0\" izz=\"0.00961875\"/>\n    </inertial>\n  </link>\n  <joint name=\"elbow_joint\" type=\"revolute\">\n    <parent link=\"upper_arm_link\"/>\n    <child link=\"forearm_link\"/>\n    <origin rpy=\"0.0 0.0 0.0\" xyz=\"0.0 -0.093 0.244\"/>\n    <axis xyz=\"0 1 0\"/>\n    <limit effort=\"150.0\" lower=\"-3.14159265359\" upper=\"3.14159265359\" velocity=\"3.14\"/>\n    <dynamics damping=\"0.0\" friction=\"0.0\"/>\n  </joint>\n  <link name=\"forearm_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/visual/forearm.dae\"/>\n      </geometry>\n      <material name=\"LightGrey\">\n        <color rgba=\"0.7 0.7 0.7 1.0\"/>\n      </material>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/collision/forearm.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"1.26\"/>\n      <origin rpy=\"0 0 0\" xyz=\"0.0 0.0 0.1065\"/>\n      <inertia ixx=\"0.00653561738575\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.00653561738575\" iyz=\"0.0\" izz=\"0.00354375\"/>\n    </inertial>\n  </link>\n  <joint name=\"wrist_1_joint\" type=\"revolute\">\n    <parent link=\"forearm_link\"/>\n    <child link=\"wrist_1_link\"/>\n    <origin rpy=\"0.0 1.57079632679 0.0\" xyz=\"0.0 0.0 0.213\"/>\n    <axis xyz=\"0 1 0\"/>\n    <limit effort=\"54.0\" lower=\"-3.14159265359\" upper=\"3.14159265359\" velocity=\"6.28\"/>\n    <dynamics damping=\"0.0\" friction=\"0.0\"/>\n  </joint>\n  <link name=\"wrist_1_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/visual/wrist1.dae\"/>\n      </geometry>\n      <material name=\"LightGrey\">\n        <color rgba=\"0.7 0.7 0.7 1.0\"/>\n      </material>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/collision/wrist1.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"0.8\"/>\n      <origin rpy=\"0 0 0\" xyz=\"0.0 0.104 0.0\"/>\n      <inertia ixx=\"0.002084999166\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.002084999166\" iyz=\"0.0\" izz=\"0.00225\"/>\n    </inertial>\n  </link>\n  <joint name=\"wrist_2_joint\" type=\"revolute\">\n    <parent link=\"wrist_1_link\"/>\n    <child link=\"wrist_2_link\"/>\n    <origin rpy=\"0.0 0.0 0.0\" xyz=\"0.0 0.104 0.0\"/>\n    <axis xyz=\"0 0 1\"/>\n    <limit effort=\"54.0\" lower=\"-3.14159265359\" upper=\"3.14159265359\" velocity=\"6.28\"/>\n    <dynamics damping=\"0.0\" friction=\"0.0\"/>\n  </joint>\n  <link name=\"wrist_2_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/visual/wrist2.dae\"/>\n      </geometry>\n      <material name=\"LightGrey\">\n        <color rgba=\"0.7 0.7 0.7 1.0\"/>\n      </material>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/collision/wrist2.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"0.8\"/>\n      <origin rpy=\"0 0 0\" xyz=\"0.0 0.0 0.085\"/>\n      <inertia ixx=\"0.002084999166\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.002084999166\" iyz=\"0.0\" izz=\"0.00225\"/>\n    </inertial>\n  </link>\n  <joint name=\"wrist_3_joint\" type=\"revolute\">\n    <parent link=\"wrist_2_link\"/>\n    <child link=\"wrist_3_link\"/>\n    <origin rpy=\"0.0 0.0 0.0\" xyz=\"0.0 0.0 0.085\"/>\n    <axis xyz=\"0 1 0\"/>\n    <limit effort=\"54.0\" lower=\"-3.14159265359\" upper=\"3.14159265359\" velocity=\"6.28\"/>\n    <dynamics damping=\"0.0\" friction=\"0.0\"/>\n  </joint>\n  <link name=\"wrist_3_link\">\n    <visual>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/visual/wrist3.dae\"/>\n      </geometry>\n      <material name=\"LightGrey\">\n        <color rgba=\"0.7 0.7 0.7 1.0\"/>\n      </material>\n    </visual>\n    <collision>\n      <geometry>\n        <mesh filename=\"package://ur_e_description/meshes/ur3e/collision/wrist3.stl\"/>\n      </geometry>\n    </collision>\n    <inertial>\n      <mass value=\"0.35\"/>\n      <origin rpy=\"1.57079632679 0 0\" xyz=\"0.0 0.071 0.0\"/>\n      <inertia ixx=\"0.00014104994358\" ixy=\"0.0\" ixz=\"0.0\" iyy=\"0.00014104994358\" iyz=\"0.0\" izz=\"0.0001792\"/>\n    </inertial>\n  </link>\n  <joint name=\"ee_fixed_joint\" type=\"fixed\">\n    <parent link=\"wrist_3_link\"/>\n    <child link=\"ee_link\"/>\n    <origin rpy=\"0.0 0.0 1.57079632679\" xyz=\"0.0 0.092 0.0\"/>\n  </joint>\n  <link name=\"ee_link\">\n    <collision>\n      <geometry>\n        <box size=\"0.01 0.01 0.01\"/>\n      </geometry>\n      <origin rpy=\"0 0 0\" xyz=\"-0.01 0 0\"/>\n    </collision>\n  </link>\n  <!-- ROS base_link to UR 'Base' Coordinates transform -->\n  <link name=\"base\"/>\n  <joint name=\"base_link-base_fixed_joint\" type=\"fixed\">\n    <!-- NOTE: this rotation is only needed as long as base_link itself is\n                 not corrected wrt the real robot (ie: rotated over 180\n                 degrees)\n      -->\n    <origin rpy=\"0 0 -3.14159265359\" xyz=\"0 0 0\"/>\n    <parent link=\"base_link\"/>\n    <child link=\"base\"/>\n  </joint>\n  <!-- Frame coincident with all-zeros TCP on UR controller -->\n  <link name=\"tool0\"/>\n  <joint name=\"wrist_3_link-tool0_fixed_joint\" type=\"fixed\">\n    <origin rpy=\"-1.57079632679 0 0\" xyz=\"0 0.092 0\"/>\n    <parent link=\"wrist_3_link\"/>\n    <child link=\"tool0\"/>\n  </joint>\n  <link name=\"world\"/>\n  <joint name=\"world_joint\" type=\"fixed\">\n    <parent link=\"world\"/>\n    <child link=\"base_link\"/>\n    <origin rpy=\"0.0 0.0 0.0\" xyz=\"0.0 0.0 0.0\"/>\n  </joint>\n</robot>\n"
  }
]